├── .editorconfig ├── .gitattributes ├── .gitignore ├── .vscode └── settings.json ├── Gemfile ├── LICENSE.txt ├── Rakefile ├── _config.yml ├── _data ├── navigation │ ├── af_ZA.yml │ ├── ar_SA.yml │ ├── ca_ES.yml │ ├── cs_CZ.yml │ ├── da_DK.yml │ ├── de_DE.yml │ ├── el_GR.yml │ ├── en_PT.yml │ ├── en_US.yml │ ├── es_ES.yml │ ├── fi_FI.yml │ ├── fr_FR.yml │ ├── he_IL.yml │ ├── hu_HU.yml │ ├── id_ID.yml │ ├── it_IT.yml │ ├── ja_JP.yml │ ├── ko_KR.yml │ ├── ms_MY.yml │ ├── nl_NL.yml │ ├── no_NO.yml │ ├── pl_PL.yml │ ├── pt_BR.yml │ ├── pt_PT.yml │ ├── ro_RO.yml │ ├── ru_RU.yml │ ├── sr_SP.yml │ ├── sv_SE.yml │ ├── th_TH.yml │ ├── tr_TR.yml │ ├── uk_UA.yml │ ├── vi_VN.yml │ ├── zh_CN.yml │ └── zh_TW.yml └── ui-text.yml ├── _includes ├── analytics-providers │ ├── custom.html │ ├── google-universal.html │ └── google.html ├── analytics.html ├── archive-single.html ├── author-profile-custom-links.html ├── author-profile.html ├── base_path ├── breadcrumbs.html ├── browser-upgrade.html ├── category-list.html ├── comment.html ├── comments-providers │ ├── custom.html │ ├── discourse.html │ ├── disqus.html │ ├── facebook.html │ ├── google-plus.html │ ├── scripts.html │ └── staticman.html ├── comments.html ├── feature_row ├── figure ├── footer.html ├── footer │ └── custom.html ├── gallery ├── group-by-array ├── head.html ├── head │ └── custom.html ├── masthead.html ├── nav_list ├── page__hero.html ├── page__hero_video.html ├── page__taxonomy.html ├── paginator.html ├── post_pagination.html ├── read-time.html ├── scripts.html ├── seo.html ├── sidebar.html ├── social-share.html ├── tag-list.html ├── toc └── video ├── _layouts ├── archive-taxonomy.html ├── archive.html ├── compress.html ├── default.html ├── home.html ├── single-no-ads.html ├── single.html └── splash.html ├── _pages ├── af_ZA │ ├── 404.txt │ ├── coldboot-haxchi.txt │ ├── credits.txt │ ├── disc2app.txt │ ├── donations.txt │ ├── f3-(linux).txt │ ├── f3x-(mac).txt │ ├── faq.txt │ ├── get-started.txt │ ├── h2testw-(windows).txt │ ├── haxchi.txt │ ├── home.txt │ ├── homebrew-launcher-(channel).txt │ ├── homebrew-launcher.txt │ ├── mocha-cfw.txt │ ├── nand-backup.txt │ ├── privacy-policy.txt │ ├── site-navigation.txt │ ├── uninstall-cfw.txt │ ├── vwii-modding.txt │ └── why-ads.txt ├── ar_SA │ ├── 404.txt │ ├── coldboot-haxchi.txt │ ├── credits.txt │ ├── disc2app.txt │ ├── donations.txt │ ├── f3-(linux).txt │ ├── f3x-(mac).txt │ ├── faq.txt │ ├── get-started.txt │ ├── h2testw-(windows).txt │ ├── haxchi.txt │ ├── home.txt │ ├── homebrew-launcher-(channel).txt │ ├── homebrew-launcher.txt │ ├── mocha-cfw.txt │ ├── nand-backup.txt │ ├── privacy-policy.txt │ ├── site-navigation.txt │ ├── uninstall-cfw.txt │ ├── vwii-modding.txt │ └── why-ads.txt ├── ca_ES │ ├── 404.txt │ ├── coldboot-haxchi.txt │ ├── credits.txt │ ├── disc2app.txt │ ├── donations.txt │ ├── f3-(linux).txt │ ├── f3x-(mac).txt │ ├── faq.txt │ ├── get-started.txt │ ├── h2testw-(windows).txt │ ├── haxchi.txt │ ├── home.txt │ ├── homebrew-launcher-(channel).txt │ ├── homebrew-launcher.txt │ ├── mocha-cfw.txt │ ├── nand-backup.txt │ ├── privacy-policy.txt │ ├── site-navigation.txt │ ├── uninstall-cfw.txt │ ├── vwii-modding.txt │ └── why-ads.txt ├── cs_CZ │ ├── 404.txt │ ├── coldboot-haxchi.txt │ ├── credits.txt │ ├── disc2app.txt │ ├── donations.txt │ ├── f3-(linux).txt │ ├── f3x-(mac).txt │ ├── faq.txt │ ├── get-started.txt │ ├── h2testw-(windows).txt │ ├── haxchi.txt │ ├── home.txt │ ├── homebrew-launcher-(channel).txt │ ├── homebrew-launcher.txt │ ├── mocha-cfw.txt │ ├── nand-backup.txt │ ├── privacy-policy.txt │ ├── site-navigation.txt │ ├── uninstall-cfw.txt │ ├── vwii-modding.txt │ └── why-ads.txt ├── da_DK │ ├── 404.txt │ ├── coldboot-haxchi.txt │ ├── credits.txt │ ├── disc2app.txt │ ├── donations.txt │ ├── f3-(linux).txt │ ├── f3x-(mac).txt │ ├── faq.txt │ ├── get-started.txt │ ├── h2testw-(windows).txt │ ├── haxchi.txt │ ├── home.txt │ ├── homebrew-launcher-(channel).txt │ ├── homebrew-launcher.txt │ ├── mocha-cfw.txt │ ├── nand-backup.txt │ ├── privacy-policy.txt │ ├── site-navigation.txt │ ├── uninstall-cfw.txt │ ├── vwii-modding.txt │ └── why-ads.txt ├── de_DE │ ├── 404.txt │ ├── coldboot-haxchi.txt │ ├── credits.txt │ ├── disc2app.txt │ ├── donations.txt │ ├── f3-(linux).txt │ ├── f3x-(mac).txt │ ├── faq.txt │ ├── get-started.txt │ ├── h2testw-(windows).txt │ ├── haxchi.txt │ ├── home.txt │ ├── homebrew-launcher-(channel).txt │ ├── homebrew-launcher.txt │ ├── mocha-cfw.txt │ ├── nand-backup.txt │ ├── privacy-policy.txt │ ├── site-navigation.txt │ ├── uninstall-cfw.txt │ ├── vwii-modding.txt │ └── why-ads.txt ├── el_GR │ ├── 404.txt │ ├── coldboot-haxchi.txt │ ├── credits.txt │ ├── disc2app.txt │ ├── donations.txt │ ├── f3-(linux).txt │ ├── f3x-(mac).txt │ ├── faq.txt │ ├── get-started.txt │ ├── h2testw-(windows).txt │ ├── haxchi.txt │ ├── home.txt │ ├── homebrew-launcher-(channel).txt │ ├── homebrew-launcher.txt │ ├── mocha-cfw.txt │ ├── nand-backup.txt │ ├── privacy-policy.txt │ ├── site-navigation.txt │ ├── uninstall-cfw.txt │ ├── vwii-modding.txt │ └── why-ads.txt ├── en_PT │ ├── 404.txt │ ├── coldboot-haxchi.txt │ ├── credits.txt │ ├── disc2app.txt │ ├── donations.txt │ ├── f3-(linux).txt │ ├── f3x-(mac).txt │ ├── faq.txt │ ├── get-started.txt │ ├── h2testw-(windows).txt │ ├── haxchi.txt │ ├── home.txt │ ├── homebrew-launcher-(channel).txt │ ├── homebrew-launcher.txt │ ├── mocha-cfw.txt │ ├── nand-backup.txt │ ├── privacy-policy.txt │ ├── site-navigation.txt │ ├── uninstall-cfw.txt │ ├── vwii-modding.txt │ └── why-ads.txt ├── en_US │ ├── 404.txt │ ├── coldboot-haxchi.txt │ ├── credits.txt │ ├── disc2app.txt │ ├── donations.txt │ ├── f3-(linux).txt │ ├── f3x-(mac).txt │ ├── faq.txt │ ├── get-started.txt │ ├── h2testw-(windows).txt │ ├── haxchi.txt │ ├── home.txt │ ├── homebrew-launcher-(channel).txt │ ├── homebrew-launcher.txt │ ├── mocha-cfw.txt │ ├── nand-backup.txt │ ├── privacy-policy.txt │ ├── site-navigation.txt │ ├── uninstall-cfw.txt │ └── vwii-modding.txt ├── es_ES │ ├── 404.txt │ ├── coldboot-haxchi.txt │ ├── credits.txt │ ├── disc2app.txt │ ├── donations.txt │ ├── f3-(linux).txt │ ├── f3x-(mac).txt │ ├── faq.txt │ ├── get-started.txt │ ├── h2testw-(windows).txt │ ├── haxchi.txt │ ├── home.txt │ ├── homebrew-launcher-(channel).txt │ ├── homebrew-launcher.txt │ ├── mocha-cfw.txt │ ├── nand-backup.txt │ ├── privacy-policy.txt │ ├── site-navigation.txt │ ├── uninstall-cfw.txt │ ├── vwii-modding.txt │ └── why-ads.txt ├── fi_FI │ ├── 404.txt │ ├── coldboot-haxchi.txt │ ├── credits.txt │ ├── disc2app.txt │ ├── donations.txt │ ├── f3-(linux).txt │ ├── f3x-(mac).txt │ ├── faq.txt │ ├── get-started.txt │ ├── h2testw-(windows).txt │ ├── haxchi.txt │ ├── home.txt │ ├── homebrew-launcher-(channel).txt │ ├── homebrew-launcher.txt │ ├── mocha-cfw.txt │ ├── nand-backup.txt │ ├── privacy-policy.txt │ ├── site-navigation.txt │ ├── uninstall-cfw.txt │ ├── vwii-modding.txt │ └── why-ads.txt ├── fr_FR │ ├── 404.txt │ ├── coldboot-haxchi.txt │ ├── credits.txt │ ├── disc2app.txt │ ├── donations.txt │ ├── f3-(linux).txt │ ├── f3x-(mac).txt │ ├── faq.txt │ ├── get-started.txt │ ├── h2testw-(windows).txt │ ├── haxchi.txt │ ├── home.txt │ ├── homebrew-launcher-(channel).txt │ ├── homebrew-launcher.txt │ ├── mocha-cfw.txt │ ├── nand-backup.txt │ ├── privacy-policy.txt │ ├── site-navigation.txt │ ├── uninstall-cfw.txt │ ├── vwii-modding.txt │ └── why-ads.txt ├── he_IL │ ├── 404.txt │ ├── coldboot-haxchi.txt │ ├── credits.txt │ ├── disc2app.txt │ ├── donations.txt │ ├── f3-(linux).txt │ ├── f3x-(mac).txt │ ├── faq.txt │ ├── get-started.txt │ ├── h2testw-(windows).txt │ ├── haxchi.txt │ ├── home.txt │ ├── homebrew-launcher-(channel).txt │ ├── homebrew-launcher.txt │ ├── mocha-cfw.txt │ ├── nand-backup.txt │ ├── privacy-policy.txt │ ├── site-navigation.txt │ ├── uninstall-cfw.txt │ ├── vwii-modding.txt │ └── why-ads.txt ├── hu_HU │ ├── 404.txt │ ├── coldboot-haxchi.txt │ ├── credits.txt │ ├── disc2app.txt │ ├── donations.txt │ ├── f3-(linux).txt │ ├── f3x-(mac).txt │ ├── faq.txt │ ├── get-started.txt │ ├── h2testw-(windows).txt │ ├── haxchi.txt │ ├── home.txt │ ├── homebrew-launcher-(channel).txt │ ├── homebrew-launcher.txt │ ├── mocha-cfw.txt │ ├── nand-backup.txt │ ├── privacy-policy.txt │ ├── site-navigation.txt │ ├── uninstall-cfw.txt │ ├── vwii-modding.txt │ └── why-ads.txt ├── id_ID │ ├── 404.txt │ ├── coldboot-haxchi.txt │ ├── credits.txt │ ├── disc2app.txt │ ├── donations.txt │ ├── f3-(linux).txt │ ├── f3x-(mac).txt │ ├── faq.txt │ ├── get-started.txt │ ├── h2testw-(windows).txt │ ├── haxchi.txt │ ├── home.txt │ ├── homebrew-launcher-(channel).txt │ ├── homebrew-launcher.txt │ ├── mocha-cfw.txt │ ├── nand-backup.txt │ ├── privacy-policy.txt │ ├── site-navigation.txt │ ├── uninstall-cfw.txt │ ├── vwii-modding.txt │ └── why-ads.txt ├── it_IT │ ├── 404.txt │ ├── coldboot-haxchi.txt │ ├── credits.txt │ ├── disc2app.txt │ ├── donations.txt │ ├── f3-(linux).txt │ ├── f3x-(mac).txt │ ├── faq.txt │ ├── get-started.txt │ ├── h2testw-(windows).txt │ ├── haxchi.txt │ ├── home.txt │ ├── homebrew-launcher-(channel).txt │ ├── homebrew-launcher.txt │ ├── mocha-cfw.txt │ ├── nand-backup.txt │ ├── privacy-policy.txt │ ├── site-navigation.txt │ ├── uninstall-cfw.txt │ ├── vwii-modding.txt │ └── why-ads.txt ├── ja_JP │ ├── 404.txt │ ├── coldboot-haxchi.txt │ ├── credits.txt │ ├── disc2app.txt │ ├── donations.txt │ ├── f3-(linux).txt │ ├── f3x-(mac).txt │ ├── faq.txt │ ├── get-started.txt │ ├── h2testw-(windows).txt │ ├── haxchi.txt │ ├── home.txt │ ├── homebrew-launcher-(channel).txt │ ├── homebrew-launcher.txt │ ├── mocha-cfw.txt │ ├── nand-backup.txt │ ├── privacy-policy.txt │ ├── site-navigation.txt │ ├── uninstall-cfw.txt │ ├── vwii-modding.txt │ └── why-ads.txt ├── ko_KR │ ├── 404.txt │ ├── coldboot-haxchi.txt │ ├── credits.txt │ ├── disc2app.txt │ ├── donations.txt │ ├── f3-(linux).txt │ ├── f3x-(mac).txt │ ├── faq.txt │ ├── get-started.txt │ ├── h2testw-(windows).txt │ ├── haxchi.txt │ ├── home.txt │ ├── homebrew-launcher-(channel).txt │ ├── homebrew-launcher.txt │ ├── mocha-cfw.txt │ ├── nand-backup.txt │ ├── privacy-policy.txt │ ├── site-navigation.txt │ ├── uninstall-cfw.txt │ ├── vwii-modding.txt │ └── why-ads.txt ├── ms_MY │ ├── 404.txt │ ├── coldboot-haxchi.txt │ ├── credits.txt │ ├── disc2app.txt │ ├── donations.txt │ ├── f3-(linux).txt │ ├── f3x-(mac).txt │ ├── faq.txt │ ├── get-started.txt │ ├── h2testw-(windows).txt │ ├── haxchi.txt │ ├── home.txt │ ├── homebrew-launcher-(channel).txt │ ├── homebrew-launcher.txt │ ├── mocha-cfw.txt │ ├── nand-backup.txt │ ├── privacy-policy.txt │ ├── site-navigation.txt │ ├── uninstall-cfw.txt │ ├── vwii-modding.txt │ └── why-ads.txt ├── nl_NL │ ├── 404.txt │ ├── coldboot-haxchi.txt │ ├── credits.txt │ ├── disc2app.txt │ ├── donations.txt │ ├── f3-(linux).txt │ ├── f3x-(mac).txt │ ├── faq.txt │ ├── get-started.txt │ ├── h2testw-(windows).txt │ ├── haxchi.txt │ ├── home.txt │ ├── homebrew-launcher-(channel).txt │ ├── homebrew-launcher.txt │ ├── mocha-cfw.txt │ ├── nand-backup.txt │ ├── privacy-policy.txt │ ├── site-navigation.txt │ ├── uninstall-cfw.txt │ ├── vwii-modding.txt │ └── why-ads.txt ├── no_NO │ ├── 404.txt │ ├── coldboot-haxchi.txt │ ├── credits.txt │ ├── disc2app.txt │ ├── donations.txt │ ├── f3-(linux).txt │ ├── f3x-(mac).txt │ ├── faq.txt │ ├── get-started.txt │ ├── h2testw-(windows).txt │ ├── haxchi.txt │ ├── home.txt │ ├── homebrew-launcher-(channel).txt │ ├── homebrew-launcher.txt │ ├── mocha-cfw.txt │ ├── nand-backup.txt │ ├── privacy-policy.txt │ ├── site-navigation.txt │ ├── uninstall-cfw.txt │ ├── vwii-modding.txt │ └── why-ads.txt ├── pl_PL │ ├── 404.txt │ ├── coldboot-haxchi.txt │ ├── credits.txt │ ├── disc2app.txt │ ├── donations.txt │ ├── f3-(linux).txt │ ├── f3x-(mac).txt │ ├── faq.txt │ ├── get-started.txt │ ├── h2testw-(windows).txt │ ├── haxchi.txt │ ├── home.txt │ ├── homebrew-launcher-(channel).txt │ ├── homebrew-launcher.txt │ ├── mocha-cfw.txt │ ├── nand-backup.txt │ ├── privacy-policy.txt │ ├── site-navigation.txt │ ├── uninstall-cfw.txt │ ├── vwii-modding.txt │ └── why-ads.txt ├── pt_BR │ ├── 404.txt │ ├── coldboot-haxchi.txt │ ├── credits.txt │ ├── disc2app.txt │ ├── donations.txt │ ├── f3-(linux).txt │ ├── f3x-(mac).txt │ ├── faq.txt │ ├── get-started.txt │ ├── h2testw-(windows).txt │ ├── haxchi.txt │ ├── home.txt │ ├── homebrew-launcher-(channel).txt │ ├── homebrew-launcher.txt │ ├── mocha-cfw.txt │ ├── nand-backup.txt │ ├── privacy-policy.txt │ ├── site-navigation.txt │ ├── uninstall-cfw.txt │ ├── vwii-modding.txt │ └── why-ads.txt ├── pt_PT │ ├── 404.txt │ ├── coldboot-haxchi.txt │ ├── credits.txt │ ├── disc2app.txt │ ├── donations.txt │ ├── f3-(linux).txt │ ├── f3x-(mac).txt │ ├── faq.txt │ ├── get-started.txt │ ├── h2testw-(windows).txt │ ├── haxchi.txt │ ├── home.txt │ ├── homebrew-launcher-(channel).txt │ ├── homebrew-launcher.txt │ ├── mocha-cfw.txt │ ├── nand-backup.txt │ ├── privacy-policy.txt │ ├── site-navigation.txt │ ├── uninstall-cfw.txt │ ├── vwii-modding.txt │ └── why-ads.txt ├── ro_RO │ ├── 404.txt │ ├── coldboot-haxchi.txt │ ├── credits.txt │ ├── disc2app.txt │ ├── donations.txt │ ├── f3-(linux).txt │ ├── f3x-(mac).txt │ ├── faq.txt │ ├── get-started.txt │ ├── h2testw-(windows).txt │ ├── haxchi.txt │ ├── home.txt │ ├── homebrew-launcher-(channel).txt │ ├── homebrew-launcher.txt │ ├── mocha-cfw.txt │ ├── nand-backup.txt │ ├── privacy-policy.txt │ ├── site-navigation.txt │ ├── uninstall-cfw.txt │ ├── vwii-modding.txt │ └── why-ads.txt ├── ru_RU │ ├── 404.txt │ ├── coldboot-haxchi.txt │ ├── credits.txt │ ├── disc2app.txt │ ├── donations.txt │ ├── f3-(linux).txt │ ├── f3x-(mac).txt │ ├── faq.txt │ ├── get-started.txt │ ├── h2testw-(windows).txt │ ├── haxchi.txt │ ├── home.txt │ ├── homebrew-launcher-(channel).txt │ ├── homebrew-launcher.txt │ ├── mocha-cfw.txt │ ├── nand-backup.txt │ ├── privacy-policy.txt │ ├── site-navigation.txt │ ├── uninstall-cfw.txt │ ├── vwii-modding.txt │ └── why-ads.txt ├── sr_SP │ ├── 404.txt │ ├── coldboot-haxchi.txt │ ├── credits.txt │ ├── disc2app.txt │ ├── donations.txt │ ├── f3-(linux).txt │ ├── f3x-(mac).txt │ ├── faq.txt │ ├── get-started.txt │ ├── h2testw-(windows).txt │ ├── haxchi.txt │ ├── home.txt │ ├── homebrew-launcher-(channel).txt │ ├── homebrew-launcher.txt │ ├── mocha-cfw.txt │ ├── nand-backup.txt │ ├── privacy-policy.txt │ ├── site-navigation.txt │ ├── uninstall-cfw.txt │ ├── vwii-modding.txt │ └── why-ads.txt ├── sv_SE │ ├── 404.txt │ ├── coldboot-haxchi.txt │ ├── credits.txt │ ├── disc2app.txt │ ├── donations.txt │ ├── f3-(linux).txt │ ├── f3x-(mac).txt │ ├── faq.txt │ ├── get-started.txt │ ├── h2testw-(windows).txt │ ├── haxchi.txt │ ├── home.txt │ ├── homebrew-launcher-(channel).txt │ ├── homebrew-launcher.txt │ ├── mocha-cfw.txt │ ├── nand-backup.txt │ ├── privacy-policy.txt │ ├── site-navigation.txt │ ├── uninstall-cfw.txt │ ├── vwii-modding.txt │ └── why-ads.txt ├── th_TH │ ├── 404.txt │ ├── coldboot-haxchi.txt │ ├── credits.txt │ ├── disc2app.txt │ ├── donations.txt │ ├── f3-(linux).txt │ ├── f3x-(mac).txt │ ├── faq.txt │ ├── get-started.txt │ ├── h2testw-(windows).txt │ ├── haxchi.txt │ ├── home.txt │ ├── homebrew-launcher-(channel).txt │ ├── homebrew-launcher.txt │ ├── mocha-cfw.txt │ ├── nand-backup.txt │ ├── privacy-policy.txt │ ├── site-navigation.txt │ ├── uninstall-cfw.txt │ ├── vwii-modding.txt │ └── why-ads.txt ├── tr_TR │ ├── 404.txt │ ├── coldboot-haxchi.txt │ ├── credits.txt │ ├── disc2app.txt │ ├── donations.txt │ ├── f3-(linux).txt │ ├── f3x-(mac).txt │ ├── faq.txt │ ├── get-started.txt │ ├── h2testw-(windows).txt │ ├── haxchi.txt │ ├── home.txt │ ├── homebrew-launcher-(channel).txt │ ├── homebrew-launcher.txt │ ├── mocha-cfw.txt │ ├── nand-backup.txt │ ├── privacy-policy.txt │ ├── site-navigation.txt │ ├── uninstall-cfw.txt │ ├── vwii-modding.txt │ └── why-ads.txt ├── uk_UA │ ├── 404.txt │ ├── coldboot-haxchi.txt │ ├── credits.txt │ ├── disc2app.txt │ ├── donations.txt │ ├── f3-(linux).txt │ ├── f3x-(mac).txt │ ├── faq.txt │ ├── get-started.txt │ ├── h2testw-(windows).txt │ ├── haxchi.txt │ ├── home.txt │ ├── homebrew-launcher-(channel).txt │ ├── homebrew-launcher.txt │ ├── mocha-cfw.txt │ ├── nand-backup.txt │ ├── privacy-policy.txt │ ├── site-navigation.txt │ ├── uninstall-cfw.txt │ ├── vwii-modding.txt │ └── why-ads.txt ├── vi_VN │ ├── 404.txt │ ├── coldboot-haxchi.txt │ ├── credits.txt │ ├── disc2app.txt │ ├── donations.txt │ ├── f3-(linux).txt │ ├── f3x-(mac).txt │ ├── faq.txt │ ├── get-started.txt │ ├── h2testw-(windows).txt │ ├── haxchi.txt │ ├── home.txt │ ├── homebrew-launcher-(channel).txt │ ├── homebrew-launcher.txt │ ├── mocha-cfw.txt │ ├── nand-backup.txt │ ├── privacy-policy.txt │ ├── site-navigation.txt │ ├── uninstall-cfw.txt │ ├── vwii-modding.txt │ └── why-ads.txt ├── zh_CN │ ├── 404.txt │ ├── coldboot-haxchi.txt │ ├── credits.txt │ ├── disc2app.txt │ ├── donations.txt │ ├── f3-(linux).txt │ ├── f3x-(mac).txt │ ├── faq.txt │ ├── get-started.txt │ ├── h2testw-(windows).txt │ ├── haxchi.txt │ ├── home.txt │ ├── homebrew-launcher-(channel).txt │ ├── homebrew-launcher.txt │ ├── mocha-cfw.txt │ ├── nand-backup.txt │ ├── privacy-policy.txt │ ├── site-navigation.txt │ ├── uninstall-cfw.txt │ ├── vwii-modding.txt │ └── why-ads.txt └── zh_TW │ ├── 404.txt │ ├── coldboot-haxchi.txt │ ├── credits.txt │ ├── disc2app.txt │ ├── donations.txt │ ├── f3-(linux).txt │ ├── f3x-(mac).txt │ ├── faq.txt │ ├── get-started.txt │ ├── h2testw-(windows).txt │ ├── haxchi.txt │ ├── home.txt │ ├── homebrew-launcher-(channel).txt │ ├── homebrew-launcher.txt │ ├── mocha-cfw.txt │ ├── nand-backup.txt │ ├── privacy-policy.txt │ ├── site-navigation.txt │ ├── uninstall-cfw.txt │ ├── vwii-modding.txt │ └── why-ads.txt ├── _sass ├── minimal-mistakes.scss └── minimal-mistakes │ ├── _animations.scss │ ├── _archive.scss │ ├── _base.scss │ ├── _buttons.scss │ ├── _footer.scss │ ├── _forms.scss │ ├── _masthead.scss │ ├── _mixins.scss │ ├── _navigation.scss │ ├── _notices.scss │ ├── _page.scss │ ├── _print.scss │ ├── _reset.scss │ ├── _sidebar.scss │ ├── _syntax.scss │ ├── _tables.scss │ ├── _utilities.scss │ ├── _variables.scss │ ├── skins │ ├── _air.scss │ ├── _contrast.scss │ ├── _dark.scss │ ├── _default.scss │ ├── _dirt.scss │ ├── _mint.scss │ ├── _nord.scss │ └── _sunrise.scss │ └── vendor │ ├── breakpoint │ ├── _breakpoint.scss │ ├── _context.scss │ ├── _helpers.scss │ ├── _legacy-settings.scss │ ├── _no-query.scss │ ├── _parsers.scss │ ├── _respond-to.scss │ ├── _settings.scss │ └── parsers │ │ ├── _double.scss │ │ ├── _query.scss │ │ ├── _resolution.scss │ │ ├── _single.scss │ │ ├── _triple.scss │ │ ├── double │ │ ├── _default-pair.scss │ │ ├── _default.scss │ │ └── _double-string.scss │ │ ├── resolution │ │ └── _resolution.scss │ │ ├── single │ │ └── _default.scss │ │ └── triple │ │ └── _default.scss │ ├── font-awesome │ ├── _animated.scss │ ├── _bordered-pulled.scss │ ├── _core.scss │ ├── _fixed-width.scss │ ├── _font-awesome.scss │ ├── _icons.scss │ ├── _larger.scss │ ├── _list.scss │ ├── _mixins.scss │ ├── _path.scss │ ├── _rotated-flipped.scss │ ├── _screen-reader.scss │ ├── _stacked.scss │ └── _variables.scss │ ├── magnific-popup │ ├── _magnific-popup.scss │ └── _settings.scss │ └── susy │ ├── _su.scss │ ├── _susy-prefix.scss │ ├── _susy.scss │ ├── plugins │ ├── _svg-grid.scss │ └── svg-grid │ │ ├── _prefix.scss │ │ ├── _svg-api.scss │ │ ├── _svg-grid-math.scss │ │ ├── _svg-settings.scss │ │ ├── _svg-unprefix.scss │ │ └── _svg-utilities.scss │ └── susy │ ├── _api.scss │ ├── _normalize.scss │ ├── _parse.scss │ ├── _settings.scss │ ├── _su-math.scss │ ├── _su-validate.scss │ ├── _syntax-helpers.scss │ ├── _unprefix.scss │ └── _utilities.scss ├── assets ├── css │ └── main.scss ├── files │ ├── Patched_IOS80_Installer_for_vWii.zip │ ├── config.ini │ ├── config.txt │ └── vWii_cIOS_apps_20131218.zip ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 └── js │ ├── _main.js │ ├── main.min.js │ ├── plugins │ ├── jquery.fitvids.js │ ├── jquery.greedy-navigation.js │ ├── jquery.magnific-popup.js │ ├── jquery.smooth-scroll.min.js │ └── stickyfill.min.js │ └── vendor │ └── jquery │ ├── jquery-1.12.4.min.js │ └── jquery-3.2.1.min.js ├── banner.js ├── crowdin.yaml ├── images ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── bio-photo.png ├── bitcoin_white.png ├── browserconfig.xml ├── ethereum_white.png ├── favicon-16x16.png ├── favicon-194x194.png ├── favicon-32x32.png ├── favicon.ico ├── home-page-feature.jpg ├── manifest.json ├── mstile-144x144.png ├── mstile-150x150.png ├── paypal_white.png └── safari-pinned-tab.svg ├── minimal-mistakes-jekyll.gemspec └── package.json /.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | root = true 3 | 4 | [*] 5 | indent_style = space 6 | indent_size = 2 7 | end_of_line = lf 8 | charset = utf-8 9 | trim_trailing_whitespace = true 10 | insert_final_newline = false 11 | 12 | [*.md] 13 | trim_trailing_whitespace = false 14 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | _assets/css/vendor/* linguist-vendored 2 | _assets/js/plugins/* linguist-vendored 3 | _assets/js/vendor/* linguist-vendored 4 | assets/fonts/* linguist-vendored 5 | assets/js/vendor/* linguist-vendored -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | *.sublime-project 3 | *.sublime-workspace 4 | .bundle 5 | .DS_Store 6 | .jekyll-metadata 7 | .sass-cache 8 | _asset_bundler_cache 9 | _site 10 | codekit-config.json 11 | example/_site 12 | node_modules 13 | npm-debug.log* 14 | /vendor 15 | torrents 16 | Gemfile.lock -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | // Place your settings in this file to overwrite default and user settings. 2 | { 3 | "files.associations": {"*.txt": "markdown"} 4 | } -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | gem 'jekyll-redirect-from' 3 | gemspec 4 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2017 Michael Rose 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /_includes/analytics-providers/custom.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /_includes/analytics-providers/google-universal.html: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /_includes/analytics-providers/google.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/analytics.html: -------------------------------------------------------------------------------- 1 | {% if site.analytics.provider and page.analytics != false %} 2 | 3 | {% case site.analytics.provider %} 4 | {% when "google" %} 5 | {% include /analytics-providers/google.html %} 6 | {% when "google-universal" %} 7 | {% include /analytics-providers/google-universal.html %} 8 | {% when "custom" %} 9 | {% include /analytics-providers/custom.html %} 10 | {% endcase %} 11 | 12 | {% endif %} -------------------------------------------------------------------------------- /_includes/author-profile-custom-links.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/base_path: -------------------------------------------------------------------------------- 1 | {% if site.url %} 2 | {% assign base_path = site.url | append: site.baseurl %} 3 | {% else %} 4 | {% assign base_path = site.github.url %} 5 | {% endif %} -------------------------------------------------------------------------------- /_includes/browser-upgrade.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/comments-providers/custom.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /_includes/comments-providers/discourse.html: -------------------------------------------------------------------------------- 1 | {% if site.comments.discourse.server %} 2 | {% capture canonical %}{% if site.permalink contains '.html' %}{{ page.url | absolute_url }}{% else %}{{ page.url | absolute_url | remove:'index.html' | strip_slash }}{% endif %}{% endcapture %} 3 | 12 | 13 | {% endif %} 14 | -------------------------------------------------------------------------------- /_includes/comments-providers/disqus.html: -------------------------------------------------------------------------------- 1 | {% if site.comments.disqus.shortname %} 2 | 14 | 15 | {% endif %} 16 | -------------------------------------------------------------------------------- /_includes/comments-providers/facebook.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /_includes/comments-providers/google-plus.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_includes/comments-providers/scripts.html: -------------------------------------------------------------------------------- 1 | {% if site.comments.provider and page.comments %} 2 | {% case site.comments.provider %} 3 | {% when "disqus" %} 4 | {% include /comments-providers/disqus.html %} 5 | {% when "discourse" %} 6 | {% include /comments-providers/discourse.html %} 7 | {% when "facebook" %} 8 | {% include /comments-providers/facebook.html %} 9 | {% when "google-plus" %} 10 | {% include /comments-providers/google-plus.html %} 11 | {% when "staticman" %} 12 | {% include /comments-providers/staticman.html %} 13 | {% when "custom" %} 14 | {% include /comments-providers/custom.html %} 15 | {% endcase %} 16 | {% endif %} 17 | -------------------------------------------------------------------------------- /_includes/figure: -------------------------------------------------------------------------------- 1 |
2 | {% if include.alt %}{{ include.alt }}{% endif %} 9 | {% if include.caption %} 10 |
{{ include.caption | markdownify | remove: "

" | remove: "

" }}
11 | {% endif %} 12 |
13 | -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- 1 | {% include base_path %} 2 | {% assign split_path = page.path | split: "/" %} 3 | {% assign locale = split_path[1] %} 4 | {% assign titles = site.data.navigation[locale].footer %} 5 | 6 | -------------------------------------------------------------------------------- /_includes/footer/custom.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /_includes/page__hero_video.html: -------------------------------------------------------------------------------- 1 | {% capture video_id %}{{ page.header.video.id }}{% endcapture %} 2 | {% capture video_provider %}{{ page.header.video.provider }}{% endcapture %} 3 | 4 | {% include video id=video_id provider=video_provider %} 5 | -------------------------------------------------------------------------------- /_includes/page__taxonomy.html: -------------------------------------------------------------------------------- 1 | {% if site.tag_archive.type and page.tags[0] %} 2 | {% include tag-list.html %} 3 | {% endif %} 4 | 5 | {% if site.category_archive.type and page.categories[0] %} 6 | {% include category-list.html %} 7 | {% endif %} 8 | -------------------------------------------------------------------------------- /_includes/post_pagination.html: -------------------------------------------------------------------------------- 1 | {% if page.previous or page.next %} 2 | 14 | {% endif %} 15 | -------------------------------------------------------------------------------- /_includes/read-time.html: -------------------------------------------------------------------------------- 1 | {% assign words_per_minute = site.words_per_minute | default: 200 %} 2 | 3 | {% if post.read_time %} 4 | {% assign words = post.content | strip_html | number_of_words %} 5 | {% elsif page.read_time %} 6 | {% assign words = page.content | strip_html | number_of_words %} 7 | {% endif %} 8 | 9 | {% if words < words_per_minute %} 10 | {{ site.data.ui-text[site.locale].less_than | default: "less than" }} 1 {{ site.data.ui-text[site.locale].minute_read | default: "minute read" }} 11 | {% elsif words == words_per_minute %} 12 | 1 {{ site.data.ui-text[site.locale].minute_read | default: "minute read" }} 13 | {% else %} 14 | {{ words | divided_by:words_per_minute }} {{ site.data.ui-text[site.locale].minute_read | default: "minute read" }} 15 | {% endif %} 16 | -------------------------------------------------------------------------------- /_includes/scripts.html: -------------------------------------------------------------------------------- 1 | {% if site.footer_scripts %} 2 | {% for script in site.footer_scripts %} 3 | {% if script contains "://" %} 4 | {% capture script_path %}{{ script }}{% endcapture %} 5 | {% else %} 6 | {% capture script_path %}{{ script | absolute_url }}{% endcapture %} 7 | {% endif %} 8 | 9 | {% endfor %} 10 | {% else %} 11 | 12 | {% endif %} 13 | 14 | {% include analytics.html %} 15 | {% include /comments-providers/scripts.html %} 16 | -------------------------------------------------------------------------------- /_includes/sidebar.html: -------------------------------------------------------------------------------- 1 | {% if page.sidebar %} 2 | 3 | 6 | 7 | {% endif %} -------------------------------------------------------------------------------- /_includes/toc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_includes/video: -------------------------------------------------------------------------------- 1 | {% capture video_id %}{{ include.id }}{% endcapture %} 2 | {% capture video_provider %}{{ include.provider }}{% endcapture %} 3 | 4 | 5 |
6 | {% if video_provider == "vimeo" %} 7 | 8 | {% elsif video_provider == "youtube" %} 9 | 10 | {% endif %} 11 |
12 | -------------------------------------------------------------------------------- /_layouts/archive-taxonomy.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | author_profile: false 4 | --- 5 | 6 |
7 | {% include sidebar.html %} 8 | 9 |
10 |

{{ page.title }}

11 | {% for post in page.posts %} 12 | {% include archive-single.html %} 13 | {% endfor %} 14 |
15 |
16 | -------------------------------------------------------------------------------- /_layouts/archive.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | {% if page.header.overlay_color or page.header.overlay_image or page.header.image %} 6 | {% include page__hero.html %} 7 | {% elsif page.header.video.id and page.header.video.provider %} 8 | {% include page__hero_video.html %} 9 | {% endif %} 10 | 11 | {% if page.url != "/" and site.breadcrumbs %} 12 | {% unless paginator %} 13 | {% include breadcrumbs.html %} 14 | {% endunless %} 15 | {% endif %} 16 | 17 |
18 | {% include sidebar.html %} 19 | 20 |
21 | {% unless page.header.overlay_color or page.header.overlay_image %} 22 |

{{ page.title }}

23 | {% endunless %} 24 | {{ content }} 25 |
26 |
27 | -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | 5 | 11 | 12 | 13 | {% include head.html %} 14 | {% include head/custom.html %} 15 | 16 | 17 | 18 | 19 | {% include browser-upgrade.html %} 20 | {% include masthead.html %} 21 | 22 | {{ content }} 23 | 24 | 30 | 31 | {% include scripts.html %} 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /_layouts/home.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: archive 3 | --- 4 | 5 |

{{ site.data.ui-text[site.locale].recent_posts | default: "Recent Posts" }}

6 | 7 | {% for post in paginator.posts %} 8 | {% include archive-single.html %} 9 | {% endfor %} 10 | 11 | {% include paginator.html %} 12 | -------------------------------------------------------------------------------- /_pages/af_ZA/404.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Page Not Found" # 3 | layout: single-no-ads 4 | excerpt: "Page not found. Your pixels are in another canvas." # 5 | sitemap: false 6 | --- 7 | 8 | Sorry, but the page you were trying to view does not exist. 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/af_ZA/credits.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Credits" 3 | --- 4 | 5 | **Special thanks to all of [the translators](https://crowdin.com/project/wii-u-guide) for being awesome!** 6 | {: .notice--primary} 7 | 8 | If I forgot you here, contact me and I'll add your name. 9 | 10 | {% capture notice-1 %} 11 | 12 | + damysteryman 13 | + derrek 14 | + dimok789 15 | + FIX94 16 | + FlimFlam69 17 | + koolkdev 18 | + plutooo 19 | + smea 20 | + [Truth] 21 | + vgmoose 22 | + Yardape8000 23 | + yellows8 24 | 25 | {% endcapture %} 26 | 27 |
{{ notice-1 | markdownify }}
-------------------------------------------------------------------------------- /_pages/af_ZA/donations.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Donations" # 3 | layout: single-no-ads 4 | --- 5 | 6 | [![Paypal]({{ "/images/paypal_white.png" | absolute_url }}){:height="72px" width="256px"}{: style="padding-bottom: .35em"}](https://www.paypal.me/NintendoHomebrew/15){: .align-center} 7 | [https://paypal.me/NintendoHomebrew](https://paypal.me/NintendoHomebrew) 8 | {: .text-center} 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/af_ZA/homebrew-launcher.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Homebrew Launcher" 3 | --- 4 | 5 | {% include toc title="Table of Contents" %} 6 | 7 | ### Required Reading 8 | 9 | The Homebrew Launcher is a homebrew application that lists and allows the launching of other homebrew applications from the SD card. 10 | 11 | We launch this using the Wii U's built in browser, so your Wii U will need to be able to access the internet. 12 | 13 | ### Instructions 14 | 15 | 1. Go to `wiiuexploit.xyz` 16 | + You may want to bookmark this address to save time on typing in the future 17 | 1. Select "Run Homebrew Launcher" for the first exploit attempt 18 | + If it freezes, just force the console to power off by holding the power button, then try again 19 | 1. Your console should load the Homebrew Launcher 20 | 21 | ___ 22 | 23 | ### Continue to [Creating a NAND backup](nand-backup) 24 | {: .notice--primary} 25 | -------------------------------------------------------------------------------- /_pages/af_ZA/mocha-cfw.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Mocha CFW" 3 | --- 4 | 5 | {% include toc title="Table of Contents" %} 6 | 7 | ### Required Reading 8 | 9 | Mocha CFW is a custom firmware that patches signature checks, region checks, and enables other custom firmware features. 10 | 11 | In order to use Mocha CFW, you will need to enter the Homebrew Launcher through the browser and launch Mocha CFW every time your device reboots. 12 | 13 | ### What You Need 14 | 15 | + The custom `config.ini` provided in [Get Started](get-started) should already be in the `/wiiu/apps/mocha/` folder on your SD card 16 | 17 | ### Instructions 18 | 19 | 1. Launch Mocha CFW 20 | 1. The console will return to the Homebrew Launcher and enable custom firmware features 21 | + This will allow unsigned titles (such as the Homebrew Launcher) to be launched directly from the system menu until the next reboot 22 | 23 | ___ 24 | 25 | Note that you will need to launch Mocha CFW from the Homebrew Launcher every time you reboot in order to re-enable custom firmware features. 26 | {: .notice--info} 27 | 28 | ### Continue to [Homebrew Launcher (Channel)](homebrew-launcher-(channel)). 29 | {: .notice--primary} 30 | -------------------------------------------------------------------------------- /_pages/af_ZA/site-navigation.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Site Navigation" # 3 | layout: single-no-ads 4 | sitemap: false 5 | --- 6 | 7 | {% capture notice-2 %} 8 | **All** 9 | 10 | + [Coldboot Haxchi](coldboot-haxchi) 11 | + [Credits](credits) 12 | + [disc2app](disc2app) 13 | + [Donations](donations) 14 | + [F3 (Linux)](f3-(linux)) 15 | + [F3X (Mac)](f3x-(mac)) 16 | + [FAQ](faq) 17 | + [Get Started](get-started) 18 | + [H2testw (Windows)](h2testw-(windows)) 19 | + [Home](/) 20 | + [Haxchi](haxchi) 21 | + [Homebrew Launcher (Channel)](homebrew-launcher-(channel)) 22 | + [Homebrew Launcher](homebrew-launcher) 23 | + [Mocha CFW](mocha-cfw) 24 | + [NAND Backup](nand-backup) 25 | + [Uninstall Mocha CFW](uninstall-cfw) 26 | + [vWii Modding](vwii-modding) 27 | {% endcapture %} 28 |
{{ notice-2 | markdownify }}
29 | -------------------------------------------------------------------------------- /_pages/af_ZA/why-ads.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Why Ads?" # 3 | layout: single-no-ads 4 | --- 5 | 6 | This project is the culmination of thousands of hours of constant work. 7 | 8 | I maintain this guide, for free, and ensure it is always up to date. Because of this effort, I feel that it is fair for me to attempt to gain a meager income from my work. 9 | 10 | This site costs you nothing to use, and all that I display are non-intrusive ads. If you still have a problem with this, feel free to block these ads. 11 | 12 | If you do block ads, I would like to also remind you of the [Donations](donations) page, but once again that is optional too. 13 | 14 | Thanks,
15 | Plailect 16 | -------------------------------------------------------------------------------- /_pages/ar_SA/404.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Page Not Found" # 3 | layout: single-no-ads 4 | excerpt: "Page not found. Your pixels are in another canvas." # 5 | sitemap: false 6 | --- 7 | 8 | Sorry, but the page you were trying to view does not exist. 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/ar_SA/credits.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Credits" 3 | --- 4 | 5 | **Special thanks to all of [the translators](https://crowdin.com/project/wii-u-guide) for being awesome!** 6 | {: .notice--primary} 7 | 8 | If I forgot you here, contact me and I'll add your name. 9 | 10 | {% capture notice-1 %} 11 | 12 | + damysteryman 13 | + derrek 14 | + dimok789 15 | + FIX94 16 | + FlimFlam69 17 | + koolkdev 18 | + plutooo 19 | + smea 20 | + [Truth] 21 | + vgmoose 22 | + Yardape8000 23 | + yellows8 24 | 25 | {% endcapture %} 26 | 27 |
{{ notice-1 | markdownify }}
-------------------------------------------------------------------------------- /_pages/ar_SA/donations.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Donations" # 3 | layout: single-no-ads 4 | --- 5 | 6 | [![Paypal]({{ "/images/paypal_white.png" | absolute_url }}){:height="72px" width="256px"}{: style="padding-bottom: .35em"}](https://www.paypal.me/NintendoHomebrew/15){: .align-center} 7 | [https://paypal.me/NintendoHomebrew](https://paypal.me/NintendoHomebrew) 8 | {: .text-center} 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/ar_SA/homebrew-launcher.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Homebrew Launcher" 3 | --- 4 | 5 | {% include toc title="Table of Contents" %} 6 | 7 | ### Required Reading 8 | 9 | The Homebrew Launcher is a homebrew application that lists and allows the launching of other homebrew applications from the SD card. 10 | 11 | We launch this using the Wii U's built in browser, so your Wii U will need to be able to access the internet. 12 | 13 | ### Instructions 14 | 15 | 1. Go to `wiiuexploit.xyz` 16 | + You may want to bookmark this address to save time on typing in the future 17 | 1. Select "Run Homebrew Launcher" for the first exploit attempt 18 | + If it freezes, just force the console to power off by holding the power button, then try again 19 | 1. Your console should load the Homebrew Launcher 20 | 21 | ___ 22 | 23 | ### Continue to [Creating a NAND backup](nand-backup) 24 | {: .notice--primary} 25 | -------------------------------------------------------------------------------- /_pages/ar_SA/mocha-cfw.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Mocha CFW" 3 | --- 4 | 5 | {% include toc title="Table of Contents" %} 6 | 7 | ### Required Reading 8 | 9 | Mocha CFW is a custom firmware that patches signature checks, region checks, and enables other custom firmware features. 10 | 11 | In order to use Mocha CFW, you will need to enter the Homebrew Launcher through the browser and launch Mocha CFW every time your device reboots. 12 | 13 | ### What You Need 14 | 15 | + The custom `config.ini` provided in [Get Started](get-started) should already be in the `/wiiu/apps/mocha/` folder on your SD card 16 | 17 | ### Instructions 18 | 19 | 1. Launch Mocha CFW 20 | 1. The console will return to the Homebrew Launcher and enable custom firmware features 21 | + This will allow unsigned titles (such as the Homebrew Launcher) to be launched directly from the system menu until the next reboot 22 | 23 | ___ 24 | 25 | Note that you will need to launch Mocha CFW from the Homebrew Launcher every time you reboot in order to re-enable custom firmware features. 26 | {: .notice--info} 27 | 28 | ### Continue to [Homebrew Launcher (Channel)](homebrew-launcher-(channel)). 29 | {: .notice--primary} 30 | -------------------------------------------------------------------------------- /_pages/ar_SA/site-navigation.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Site Navigation" # 3 | layout: single-no-ads 4 | sitemap: false 5 | --- 6 | 7 | {% capture notice-2 %} 8 | **All** 9 | 10 | + [Coldboot Haxchi](coldboot-haxchi) 11 | + [Credits](credits) 12 | + [disc2app](disc2app) 13 | + [Donations](donations) 14 | + [F3 (Linux)](f3-(linux)) 15 | + [F3X (Mac)](f3x-(mac)) 16 | + [FAQ](faq) 17 | + [Get Started](get-started) 18 | + [H2testw (Windows)](h2testw-(windows)) 19 | + [Home](/) 20 | + [Haxchi](haxchi) 21 | + [Homebrew Launcher (Channel)](homebrew-launcher-(channel)) 22 | + [Homebrew Launcher](homebrew-launcher) 23 | + [Mocha CFW](mocha-cfw) 24 | + [NAND Backup](nand-backup) 25 | + [Uninstall Mocha CFW](uninstall-cfw) 26 | + [vWii Modding](vwii-modding) 27 | {% endcapture %} 28 |
{{ notice-2 | markdownify }}
29 | -------------------------------------------------------------------------------- /_pages/ar_SA/why-ads.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Why Ads?" # 3 | layout: single-no-ads 4 | --- 5 | 6 | This project is the culmination of thousands of hours of constant work. 7 | 8 | I maintain this guide, for free, and ensure it is always up to date. Because of this effort, I feel that it is fair for me to attempt to gain a meager income from my work. 9 | 10 | This site costs you nothing to use, and all that I display are non-intrusive ads. If you still have a problem with this, feel free to block these ads. 11 | 12 | If you do block ads, I would like to also remind you of the [Donations](donations) page, but once again that is optional too. 13 | 14 | Thanks,
15 | Plailect 16 | -------------------------------------------------------------------------------- /_pages/ca_ES/404.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Page Not Found" # 3 | layout: single-no-ads 4 | excerpt: "Page not found. Your pixels are in another canvas." # 5 | sitemap: false 6 | --- 7 | 8 | Sorry, but the page you were trying to view does not exist. 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/ca_ES/credits.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Credits" 3 | --- 4 | 5 | **Special thanks to all of [the translators](https://crowdin.com/project/wii-u-guide) for being awesome!** 6 | {: .notice--primary} 7 | 8 | If I forgot you here, contact me and I'll add your name. 9 | 10 | {% capture notice-1 %} 11 | 12 | + damysteryman 13 | + derrek 14 | + dimok789 15 | + FIX94 16 | + FlimFlam69 17 | + koolkdev 18 | + plutooo 19 | + smea 20 | + [Truth] 21 | + vgmoose 22 | + Yardape8000 23 | + yellows8 24 | 25 | {% endcapture %} 26 | 27 |
{{ notice-1 | markdownify }}
-------------------------------------------------------------------------------- /_pages/ca_ES/donations.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Donations" # 3 | layout: single-no-ads 4 | --- 5 | 6 | [![Paypal]({{ "/images/paypal_white.png" | absolute_url }}){:height="72px" width="256px"}{: style="padding-bottom: .35em"}](https://www.paypal.me/NintendoHomebrew/15){: .align-center} 7 | [https://paypal.me/NintendoHomebrew](https://paypal.me/NintendoHomebrew) 8 | {: .text-center} 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/ca_ES/homebrew-launcher.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Homebrew Launcher" 3 | --- 4 | 5 | {% include toc title="Table of Contents" %} 6 | 7 | ### Required Reading 8 | 9 | The Homebrew Launcher is a homebrew application that lists and allows the launching of other homebrew applications from the SD card. 10 | 11 | We launch this using the Wii U's built in browser, so your Wii U will need to be able to access the internet. 12 | 13 | ### Instructions 14 | 15 | 1. Go to `wiiuexploit.xyz` 16 | + You may want to bookmark this address to save time on typing in the future 17 | 1. Select "Run Homebrew Launcher" for the first exploit attempt 18 | + If it freezes, just force the console to power off by holding the power button, then try again 19 | 1. Your console should load the Homebrew Launcher 20 | 21 | ___ 22 | 23 | ### Continue to [Creating a NAND backup](nand-backup) 24 | {: .notice--primary} 25 | -------------------------------------------------------------------------------- /_pages/ca_ES/mocha-cfw.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Mocha CFW" 3 | --- 4 | 5 | {% include toc title="Table of Contents" %} 6 | 7 | ### Required Reading 8 | 9 | Mocha CFW is a custom firmware that patches signature checks, region checks, and enables other custom firmware features. 10 | 11 | In order to use Mocha CFW, you will need to enter the Homebrew Launcher through the browser and launch Mocha CFW every time your device reboots. 12 | 13 | ### What You Need 14 | 15 | + The custom `config.ini` provided in [Get Started](get-started) should already be in the `/wiiu/apps/mocha/` folder on your SD card 16 | 17 | ### Instructions 18 | 19 | 1. Launch Mocha CFW 20 | 1. The console will return to the Homebrew Launcher and enable custom firmware features 21 | + This will allow unsigned titles (such as the Homebrew Launcher) to be launched directly from the system menu until the next reboot 22 | 23 | ___ 24 | 25 | Note that you will need to launch Mocha CFW from the Homebrew Launcher every time you reboot in order to re-enable custom firmware features. 26 | {: .notice--info} 27 | 28 | ### Continue to [Homebrew Launcher (Channel)](homebrew-launcher-(channel)). 29 | {: .notice--primary} 30 | -------------------------------------------------------------------------------- /_pages/ca_ES/site-navigation.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Site Navigation" # 3 | layout: single-no-ads 4 | sitemap: false 5 | --- 6 | 7 | {% capture notice-2 %} 8 | **All** 9 | 10 | + [Coldboot Haxchi](coldboot-haxchi) 11 | + [Credits](credits) 12 | + [disc2app](disc2app) 13 | + [Donations](donations) 14 | + [F3 (Linux)](f3-(linux)) 15 | + [F3X (Mac)](f3x-(mac)) 16 | + [FAQ](faq) 17 | + [Get Started](get-started) 18 | + [H2testw (Windows)](h2testw-(windows)) 19 | + [Home](/) 20 | + [Haxchi](haxchi) 21 | + [Homebrew Launcher (Channel)](homebrew-launcher-(channel)) 22 | + [Homebrew Launcher](homebrew-launcher) 23 | + [Mocha CFW](mocha-cfw) 24 | + [NAND Backup](nand-backup) 25 | + [Uninstall Mocha CFW](uninstall-cfw) 26 | + [vWii Modding](vwii-modding) 27 | {% endcapture %} 28 |
{{ notice-2 | markdownify }}
29 | -------------------------------------------------------------------------------- /_pages/ca_ES/why-ads.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Why Ads?" # 3 | layout: single-no-ads 4 | --- 5 | 6 | This project is the culmination of thousands of hours of constant work. 7 | 8 | I maintain this guide, for free, and ensure it is always up to date. Because of this effort, I feel that it is fair for me to attempt to gain a meager income from my work. 9 | 10 | This site costs you nothing to use, and all that I display are non-intrusive ads. If you still have a problem with this, feel free to block these ads. 11 | 12 | If you do block ads, I would like to also remind you of the [Donations](donations) page, but once again that is optional too. 13 | 14 | Thanks,
15 | Plailect 16 | -------------------------------------------------------------------------------- /_pages/cs_CZ/404.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Page Not Found" # 3 | layout: single-no-ads 4 | excerpt: "Page not found. Your pixels are in another canvas." # 5 | sitemap: false 6 | --- 7 | 8 | Sorry, but the page you were trying to view does not exist. 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/cs_CZ/credits.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Credits" 3 | --- 4 | 5 | **Special thanks to all of [the translators](https://crowdin.com/project/wii-u-guide) for being awesome!** 6 | {: .notice--primary} 7 | 8 | If I forgot you here, contact me and I'll add your name. 9 | 10 | {% capture notice-1 %} 11 | 12 | + damysteryman 13 | + derrek 14 | + dimok789 15 | + FIX94 16 | + FlimFlam69 17 | + koolkdev 18 | + plutooo 19 | + smea 20 | + [Truth] 21 | + vgmoose 22 | + Yardape8000 23 | + yellows8 24 | 25 | {% endcapture %} 26 | 27 |
{{ notice-1 | markdownify }}
-------------------------------------------------------------------------------- /_pages/cs_CZ/donations.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Donations" # 3 | layout: single-no-ads 4 | --- 5 | 6 | [![Paypal]({{ "/images/paypal_white.png" | absolute_url }}){:height="72px" width="256px"}{: style="padding-bottom: .35em"}](https://www.paypal.me/NintendoHomebrew/15){: .align-center} 7 | [https://paypal.me/NintendoHomebrew](https://paypal.me/NintendoHomebrew) 8 | {: .text-center} 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/cs_CZ/homebrew-launcher.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Homebrew Launcher" 3 | --- 4 | 5 | {% include toc title="Table of Contents" %} 6 | 7 | ### Required Reading 8 | 9 | The Homebrew Launcher is a homebrew application that lists and allows the launching of other homebrew applications from the SD card. 10 | 11 | We launch this using the Wii U's built in browser, so your Wii U will need to be able to access the internet. 12 | 13 | ### Instructions 14 | 15 | 1. Go to `wiiuexploit.xyz` 16 | + You may want to bookmark this address to save time on typing in the future 17 | 1. Select "Run Homebrew Launcher" for the first exploit attempt 18 | + If it freezes, just force the console to power off by holding the power button, then try again 19 | 1. Your console should load the Homebrew Launcher 20 | 21 | ___ 22 | 23 | ### Continue to [Creating a NAND backup](nand-backup) 24 | {: .notice--primary} 25 | -------------------------------------------------------------------------------- /_pages/cs_CZ/mocha-cfw.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Mocha CFW" 3 | --- 4 | 5 | {% include toc title="Table of Contents" %} 6 | 7 | ### Required Reading 8 | 9 | Mocha CFW is a custom firmware that patches signature checks, region checks, and enables other custom firmware features. 10 | 11 | In order to use Mocha CFW, you will need to enter the Homebrew Launcher through the browser and launch Mocha CFW every time your device reboots. 12 | 13 | ### What You Need 14 | 15 | + The custom `config.ini` provided in [Get Started](get-started) should already be in the `/wiiu/apps/mocha/` folder on your SD card 16 | 17 | ### Instructions 18 | 19 | 1. Launch Mocha CFW 20 | 1. The console will return to the Homebrew Launcher and enable custom firmware features 21 | + This will allow unsigned titles (such as the Homebrew Launcher) to be launched directly from the system menu until the next reboot 22 | 23 | ___ 24 | 25 | Note that you will need to launch Mocha CFW from the Homebrew Launcher every time you reboot in order to re-enable custom firmware features. 26 | {: .notice--info} 27 | 28 | ### Continue to [Homebrew Launcher (Channel)](homebrew-launcher-(channel)). 29 | {: .notice--primary} 30 | -------------------------------------------------------------------------------- /_pages/cs_CZ/site-navigation.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Site Navigation" # 3 | layout: single-no-ads 4 | sitemap: false 5 | --- 6 | 7 | {% capture notice-2 %} 8 | **All** 9 | 10 | + [Coldboot Haxchi](coldboot-haxchi) 11 | + [Credits](credits) 12 | + [disc2app](disc2app) 13 | + [Donations](donations) 14 | + [F3 (Linux)](f3-(linux)) 15 | + [F3X (Mac)](f3x-(mac)) 16 | + [FAQ](faq) 17 | + [Get Started](get-started) 18 | + [H2testw (Windows)](h2testw-(windows)) 19 | + [Home](/) 20 | + [Haxchi](haxchi) 21 | + [Homebrew Launcher (Channel)](homebrew-launcher-(channel)) 22 | + [Homebrew Launcher](homebrew-launcher) 23 | + [Mocha CFW](mocha-cfw) 24 | + [NAND Backup](nand-backup) 25 | + [Uninstall Mocha CFW](uninstall-cfw) 26 | + [vWii Modding](vwii-modding) 27 | {% endcapture %} 28 |
{{ notice-2 | markdownify }}
29 | -------------------------------------------------------------------------------- /_pages/cs_CZ/why-ads.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Why Ads?" # 3 | layout: single-no-ads 4 | --- 5 | 6 | This project is the culmination of thousands of hours of constant work. 7 | 8 | I maintain this guide, for free, and ensure it is always up to date. Because of this effort, I feel that it is fair for me to attempt to gain a meager income from my work. 9 | 10 | This site costs you nothing to use, and all that I display are non-intrusive ads. If you still have a problem with this, feel free to block these ads. 11 | 12 | If you do block ads, I would like to also remind you of the [Donations](donations) page, but once again that is optional too. 13 | 14 | Thanks,
15 | Plailect 16 | -------------------------------------------------------------------------------- /_pages/da_DK/404.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Page Not Found" # 3 | layout: single-no-ads 4 | excerpt: "Page not found. Your pixels are in another canvas." # 5 | sitemap: false 6 | --- 7 | 8 | Sorry, but the page you were trying to view does not exist. 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/da_DK/credits.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Credits" 3 | --- 4 | 5 | **Special thanks to all of [the translators](https://crowdin.com/project/wii-u-guide) for being awesome!** 6 | {: .notice--primary} 7 | 8 | If I forgot you here, contact me and I'll add your name. 9 | 10 | {% capture notice-1 %} 11 | 12 | + damysteryman 13 | + derrek 14 | + dimok789 15 | + FIX94 16 | + FlimFlam69 17 | + koolkdev 18 | + plutooo 19 | + smea 20 | + [Truth] 21 | + vgmoose 22 | + Yardape8000 23 | + yellows8 24 | 25 | {% endcapture %} 26 | 27 |
{{ notice-1 | markdownify }}
-------------------------------------------------------------------------------- /_pages/da_DK/donations.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Donations" # 3 | layout: single-no-ads 4 | --- 5 | 6 | [![Paypal]({{ "/images/paypal_white.png" | absolute_url }}){:height="72px" width="256px"}{: style="padding-bottom: .35em"}](https://www.paypal.me/NintendoHomebrew/15){: .align-center} 7 | [https://paypal.me/NintendoHomebrew](https://paypal.me/NintendoHomebrew) 8 | {: .text-center} 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/da_DK/homebrew-launcher.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Homebrew Launcher" 3 | --- 4 | 5 | {% include toc title="Table of Contents" %} 6 | 7 | ### Required Reading 8 | 9 | The Homebrew Launcher is a homebrew application that lists and allows the launching of other homebrew applications from the SD card. 10 | 11 | We launch this using the Wii U's built in browser, so your Wii U will need to be able to access the internet. 12 | 13 | ### Instructions 14 | 15 | 1. Go to `wiiuexploit.xyz` 16 | + You may want to bookmark this address to save time on typing in the future 17 | 1. Select "Run Homebrew Launcher" for the first exploit attempt 18 | + If it freezes, just force the console to power off by holding the power button, then try again 19 | 1. Your console should load the Homebrew Launcher 20 | 21 | ___ 22 | 23 | ### Continue to [Creating a NAND backup](nand-backup) 24 | {: .notice--primary} 25 | -------------------------------------------------------------------------------- /_pages/da_DK/mocha-cfw.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Mocha CFW" 3 | --- 4 | 5 | {% include toc title="Table of Contents" %} 6 | 7 | ### Required Reading 8 | 9 | Mocha CFW is a custom firmware that patches signature checks, region checks, and enables other custom firmware features. 10 | 11 | In order to use Mocha CFW, you will need to enter the Homebrew Launcher through the browser and launch Mocha CFW every time your device reboots. 12 | 13 | ### What You Need 14 | 15 | + The custom `config.ini` provided in [Get Started](get-started) should already be in the `/wiiu/apps/mocha/` folder on your SD card 16 | 17 | ### Instructions 18 | 19 | 1. Launch Mocha CFW 20 | 1. The console will return to the Homebrew Launcher and enable custom firmware features 21 | + This will allow unsigned titles (such as the Homebrew Launcher) to be launched directly from the system menu until the next reboot 22 | 23 | ___ 24 | 25 | Note that you will need to launch Mocha CFW from the Homebrew Launcher every time you reboot in order to re-enable custom firmware features. 26 | {: .notice--info} 27 | 28 | ### Continue to [Homebrew Launcher (Channel)](homebrew-launcher-(channel)). 29 | {: .notice--primary} 30 | -------------------------------------------------------------------------------- /_pages/da_DK/site-navigation.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Site Navigation" # 3 | layout: single-no-ads 4 | sitemap: false 5 | --- 6 | 7 | {% capture notice-2 %} 8 | **All** 9 | 10 | + [Coldboot Haxchi](coldboot-haxchi) 11 | + [Credits](credits) 12 | + [disc2app](disc2app) 13 | + [Donations](donations) 14 | + [F3 (Linux)](f3-(linux)) 15 | + [F3X (Mac)](f3x-(mac)) 16 | + [FAQ](faq) 17 | + [Get Started](get-started) 18 | + [H2testw (Windows)](h2testw-(windows)) 19 | + [Home](/) 20 | + [Haxchi](haxchi) 21 | + [Homebrew Launcher (Channel)](homebrew-launcher-(channel)) 22 | + [Homebrew Launcher](homebrew-launcher) 23 | + [Mocha CFW](mocha-cfw) 24 | + [NAND Backup](nand-backup) 25 | + [Uninstall Mocha CFW](uninstall-cfw) 26 | + [vWii Modding](vwii-modding) 27 | {% endcapture %} 28 |
{{ notice-2 | markdownify }}
29 | -------------------------------------------------------------------------------- /_pages/da_DK/why-ads.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Why Ads?" # 3 | layout: single-no-ads 4 | --- 5 | 6 | This project is the culmination of thousands of hours of constant work. 7 | 8 | I maintain this guide, for free, and ensure it is always up to date. Because of this effort, I feel that it is fair for me to attempt to gain a meager income from my work. 9 | 10 | This site costs you nothing to use, and all that I display are non-intrusive ads. If you still have a problem with this, feel free to block these ads. 11 | 12 | If you do block ads, I would like to also remind you of the [Donations](donations) page, but once again that is optional too. 13 | 14 | Thanks,
15 | Plailect 16 | -------------------------------------------------------------------------------- /_pages/de_DE/404.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Seite nicht gefunden" # 3 | layout: single-no-ads 4 | excerpt: "Seite nicht gefunden. Deine Pixel befinden sich auf einem anderen Canvas." # 5 | sitemap: false 6 | --- 7 | 8 | Es tut uns leid, die gewünschte Seite existiert nicht. 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/de_DE/credits.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Danksagung" 3 | --- 4 | 5 | **Special thanks to all of [the translators](https://crowdin.com/project/wii-u-guide) for being awesome!** 6 | {: .notice--primary} 7 | 8 | If I forgot you here, contact me and I'll add your name. 9 | 10 | {% capture notice-1 %} 11 | 12 | + damysteryman 13 | + derrek 14 | + dimok789 15 | + FIX94 16 | + FlimFlam69 17 | + koolkdev 18 | + plutooo 19 | + smea 20 | + [Truth] 21 | + vgmoose 22 | + Yardape8000 23 | + yellows8 24 | 25 | {% endcapture %} 26 | 27 |
{{ notice-1 | markdownify }}
-------------------------------------------------------------------------------- /_pages/de_DE/donations.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Spenden" # 3 | layout: single-no-ads 4 | --- 5 | 6 | [![Paypal]({{ "/images/paypal_white.png" | absolute_url }}){:height="72px" width="256px"}{: style="padding-bottom: .35em"}](https://www.paypal.me/NintendoHomebrew/15){: .align-center} 7 | [https://paypal.me/NintendoHomebrew](https://paypal.me/NintendoHomebrew) 8 | {: .text-center} 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/de_DE/homebrew-launcher.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Homebrew Launcher" 3 | --- 4 | 5 | {% include toc title="Table of Contents" %} 6 | 7 | ### Required Reading 8 | 9 | Der Homebrew Launcher ist eine Anwendung, welche andere Homebrew Anwendungen auf der SD Karte auflistet und deren Ausführung erlaubt. 10 | 11 | Wir starten dies mithilfe des Wii U Webbrowsers, also muss sich deine Wii U mit dem Internet verbinden können. 12 | 13 | ### Instructions 14 | 15 | 1. Go to `wiiuexploit.xyz` 16 | + Du solltest diese Adresse als Lesezeichen speichern, um Zeit beim Tippen zu sparen 17 | 1. Select "Run Homebrew Launcher" for the first exploit attempt 18 | + If it freezes, just force the console to power off by holding the power button, then try again 19 | 1. Deine Konsole sollte den Homebrew Launcher laden 20 | 21 | ___ 22 | 23 | ### Continue to [Creating a NAND backup](nand-backup) 24 | {: .notice--primary} 25 | -------------------------------------------------------------------------------- /_pages/de_DE/mocha-cfw.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Mocha CFW" 3 | --- 4 | 5 | {% include toc title="Table of Contents" %} 6 | 7 | ### Required Reading 8 | 9 | Mocha CFW is a custom firmware that patches signature checks, region checks, and enables other custom firmware features. 10 | 11 | In order to use Mocha CFW, you will need to enter the Homebrew Launcher through the browser and launch Mocha CFW every time your device reboots. 12 | 13 | ### What You Need 14 | 15 | + The custom `config.ini` provided in [Get Started](get-started) should already be in the `/wiiu/apps/mocha/` folder on your SD card 16 | 17 | ### Instructions 18 | 19 | 1. Starte Mocha CFW 20 | 1. The console will return to the Homebrew Launcher and enable custom firmware features 21 | + This will allow unsigned titles (such as the Homebrew Launcher) to be launched directly from the system menu until the next reboot 22 | 23 | ___ 24 | 25 | Note that you will need to launch Mocha CFW from the Homebrew Launcher every time you reboot in order to re-enable custom firmware features. 26 | {: .notice--info} 27 | 28 | ### Continue to [Homebrew Launcher (Channel)](homebrew-launcher-(channel)). 29 | {: .notice--primary} 30 | -------------------------------------------------------------------------------- /_pages/de_DE/site-navigation.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Seitennavigation" # 3 | layout: single-no-ads 4 | sitemap: false 5 | --- 6 | 7 | {% capture notice-2 %} 8 | **Alles** 9 | 10 | + [Coldboot Haxchi](coldboot-haxchi) 11 | + [Danksagungen](credits) 12 | + [disc2app](disc2app) 13 | + [Spenden](donations) 14 | + [F3 (Linux)](f3-(linux)) 15 | + [F3X (Mac)](f3x-(mac)) 16 | + [FAQ](faq) 17 | + [Los geht's](get-started) 18 | + [H2testw (Windows)](h2testw-(windows)) 19 | + [Startseite](/de_DE/) 20 | + [Haxchi](haxchi) 21 | + [Homebrew Launcher (Channel)](homebrew-launcher-(channel)) 22 | + [Homebrew Launcher](homebrew-launcher) 23 | + [Mocha CFW](mocha-cfw) 24 | + [NAND Backup](nand-backup) 25 | + [Mocha CFW entfernen](uninstall-mocha-cfw) 26 | + [vWii Modding](vwii-modding) 27 | {% endcapture %} 28 |
{{ notice-2 | markdownify }}
29 | -------------------------------------------------------------------------------- /_pages/de_DE/why-ads.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Warum Werbung?" # 3 | layout: single-no-ads 4 | --- 5 | 6 | This project is the culmination of thousands of hours of constant work. 7 | 8 | I maintain this guide, for free, and ensure it is always up to date. Because of this effort, I feel that it is fair for me to attempt to gain a meager income from my work. 9 | 10 | This site costs you nothing to use, and all that I display are non-intrusive ads. Solltest du dennoch ein Problem damit haben, steht es dir frei, die Werbung zu blockieren. 11 | 12 | If you do block ads, I would like to also remind you of the [Donations](donations) page, but once again that is optional too. 13 | 14 | Vielen Dank,
15 | Plailect 16 | -------------------------------------------------------------------------------- /_pages/el_GR/404.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Page Not Found" # 3 | layout: single-no-ads 4 | excerpt: "Page not found. Your pixels are in another canvas." # 5 | sitemap: false 6 | --- 7 | 8 | Sorry, but the page you were trying to view does not exist. 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/el_GR/credits.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Credits" 3 | --- 4 | 5 | **Special thanks to all of [the translators](https://crowdin.com/project/wii-u-guide) for being awesome!** 6 | {: .notice--primary} 7 | 8 | If I forgot you here, contact me and I'll add your name. 9 | 10 | {% capture notice-1 %} 11 | 12 | + damysteryman 13 | + derrek 14 | + dimok789 15 | + FIX94 16 | + FlimFlam69 17 | + koolkdev 18 | + plutooo 19 | + smea 20 | + [Truth] 21 | + vgmoose 22 | + Yardape8000 23 | + yellows8 24 | 25 | {% endcapture %} 26 | 27 |
{{ notice-1 | markdownify }}
-------------------------------------------------------------------------------- /_pages/el_GR/donations.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Donations" # 3 | layout: single-no-ads 4 | --- 5 | 6 | [![Paypal]({{ "/images/paypal_white.png" | absolute_url }}){:height="72px" width="256px"}{: style="padding-bottom: .35em"}](https://www.paypal.me/NintendoHomebrew/15){: .align-center} 7 | [https://paypal.me/NintendoHomebrew](https://paypal.me/NintendoHomebrew) 8 | {: .text-center} 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/el_GR/homebrew-launcher.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Homebrew Launcher" 3 | --- 4 | 5 | {% include toc title="Table of Contents" %} 6 | 7 | ### Required Reading 8 | 9 | The Homebrew Launcher is a homebrew application that lists and allows the launching of other homebrew applications from the SD card. 10 | 11 | We launch this using the Wii U's built in browser, so your Wii U will need to be able to access the internet. 12 | 13 | ### Instructions 14 | 15 | 1. Go to `wiiuexploit.xyz` 16 | + You may want to bookmark this address to save time on typing in the future 17 | 1. Select "Run Homebrew Launcher" for the first exploit attempt 18 | + If it freezes, just force the console to power off by holding the power button, then try again 19 | 1. Your console should load the Homebrew Launcher 20 | 21 | ___ 22 | 23 | ### Continue to [Creating a NAND backup](nand-backup) 24 | {: .notice--primary} 25 | -------------------------------------------------------------------------------- /_pages/el_GR/mocha-cfw.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Mocha CFW" 3 | --- 4 | 5 | {% include toc title="Table of Contents" %} 6 | 7 | ### Required Reading 8 | 9 | Mocha CFW is a custom firmware that patches signature checks, region checks, and enables other custom firmware features. 10 | 11 | In order to use Mocha CFW, you will need to enter the Homebrew Launcher through the browser and launch Mocha CFW every time your device reboots. 12 | 13 | ### What You Need 14 | 15 | + The custom `config.ini` provided in [Get Started](get-started) should already be in the `/wiiu/apps/mocha/` folder on your SD card 16 | 17 | ### Instructions 18 | 19 | 1. Launch Mocha CFW 20 | 1. The console will return to the Homebrew Launcher and enable custom firmware features 21 | + This will allow unsigned titles (such as the Homebrew Launcher) to be launched directly from the system menu until the next reboot 22 | 23 | ___ 24 | 25 | Note that you will need to launch Mocha CFW from the Homebrew Launcher every time you reboot in order to re-enable custom firmware features. 26 | {: .notice--info} 27 | 28 | ### Continue to [Homebrew Launcher (Channel)](homebrew-launcher-(channel)). 29 | {: .notice--primary} 30 | -------------------------------------------------------------------------------- /_pages/el_GR/site-navigation.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Site Navigation" # 3 | layout: single-no-ads 4 | sitemap: false 5 | --- 6 | 7 | {% capture notice-2 %} 8 | **All** 9 | 10 | + [Coldboot Haxchi](coldboot-haxchi) 11 | + [Credits](credits) 12 | + [disc2app](disc2app) 13 | + [Donations](donations) 14 | + [F3 (Linux)](f3-(linux)) 15 | + [F3X (Mac)](f3x-(mac)) 16 | + [FAQ](faq) 17 | + [Get Started](get-started) 18 | + [H2testw (Windows)](h2testw-(windows)) 19 | + [Home](/) 20 | + [Haxchi](haxchi) 21 | + [Homebrew Launcher (Channel)](homebrew-launcher-(channel)) 22 | + [Homebrew Launcher](homebrew-launcher) 23 | + [Mocha CFW](mocha-cfw) 24 | + [NAND Backup](nand-backup) 25 | + [Uninstall Mocha CFW](uninstall-cfw) 26 | + [vWii Modding](vwii-modding) 27 | {% endcapture %} 28 |
{{ notice-2 | markdownify }}
29 | -------------------------------------------------------------------------------- /_pages/el_GR/why-ads.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Why Ads?" # 3 | layout: single-no-ads 4 | --- 5 | 6 | This project is the culmination of thousands of hours of constant work. 7 | 8 | I maintain this guide, for free, and ensure it is always up to date. Because of this effort, I feel that it is fair for me to attempt to gain a meager income from my work. 9 | 10 | This site costs you nothing to use, and all that I display are non-intrusive ads. If you still have a problem with this, feel free to block these ads. 11 | 12 | If you do block ads, I would like to also remind you of the [Donations](donations) page, but once again that is optional too. 13 | 14 | Thanks,
15 | Plailect 16 | -------------------------------------------------------------------------------- /_pages/en_PT/404.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Page Not Found" # 3 | layout: single-no-ads 4 | excerpt: "Page not found. Your pixels are in another canvas." # 5 | sitemap: false 6 | --- 7 | 8 | Sorry, but the page you were trying to view does not exist. 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/en_PT/credits.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Credits" 3 | --- 4 | 5 | **Special thanks to all of [the translators](https://crowdin.com/project/wii-u-guide) for being awesome!** 6 | {: .notice--primary} 7 | 8 | If I forgot you here, contact me and I'll add your name. 9 | 10 | {% capture notice-1 %} 11 | 12 | + damysteryman 13 | + derrek 14 | + dimok789 15 | + FIX94 16 | + FlimFlam69 17 | + koolkdev 18 | + plutooo 19 | + smea 20 | + [Truth] 21 | + vgmoose 22 | + Yardape8000 23 | + yellows8 24 | 25 | {% endcapture %} 26 | 27 |
{{ notice-1 | markdownify }}
-------------------------------------------------------------------------------- /_pages/en_PT/donations.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Donations" # 3 | layout: single-no-ads 4 | --- 5 | 6 | [![Paypal]({{ "/images/paypal_white.png" | absolute_url }}){:height="72px" width="256px"}{: style="padding-bottom: .35em"}](https://www.paypal.me/NintendoHomebrew/15){: .align-center} 7 | [https://paypal.me/NintendoHomebrew](https://paypal.me/NintendoHomebrew) 8 | {: .text-center} 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/en_PT/homebrew-launcher.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Homebrew Launcher" 3 | --- 4 | 5 | {% include toc title="Table of Contents" %} 6 | 7 | ### Required Reading 8 | 9 | The Homebrew Launcher is a homebrew application that lists and allows the launching of other homebrew applications from the SD card. 10 | 11 | We launch this using the Wii U's built in browser, so your Wii U will need to be able to access the internet. 12 | 13 | ### Instructions 14 | 15 | 1. Go to `wiiuexploit.xyz` 16 | + You may want to bookmark this address to save time on typing in the future 17 | 1. Select "Run Homebrew Launcher" for the first exploit attempt 18 | + If it freezes, just force the console to power off by holding the power button, then try again 19 | 1. Your console should load the Homebrew Launcher 20 | 21 | ___ 22 | 23 | ### Continue to [Creating a NAND backup](nand-backup) 24 | {: .notice--primary} 25 | -------------------------------------------------------------------------------- /_pages/en_PT/mocha-cfw.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Mocha CFW" 3 | --- 4 | 5 | {% include toc title="Table of Contents" %} 6 | 7 | ### Required Reading 8 | 9 | Mocha CFW is a custom firmware that patches signature checks, region checks, and enables other custom firmware features. 10 | 11 | In order to use Mocha CFW, you will need to enter the Homebrew Launcher through the browser and launch Mocha CFW every time your device reboots. 12 | 13 | ### What You Need 14 | 15 | + The custom `config.ini` provided in [Get Started](get-started) should already be in the `/wiiu/apps/mocha/` folder on your SD card 16 | 17 | ### Instructions 18 | 19 | 1. Launch Mocha CFW 20 | 1. The console will return to the Homebrew Launcher and enable custom firmware features 21 | + This will allow unsigned titles (such as the Homebrew Launcher) to be launched directly from the system menu until the next reboot 22 | 23 | ___ 24 | 25 | Note that you will need to launch Mocha CFW from the Homebrew Launcher every time you reboot in order to re-enable custom firmware features. 26 | {: .notice--info} 27 | 28 | ### Continue to [Homebrew Launcher (Channel)](homebrew-launcher-(channel)). 29 | {: .notice--primary} 30 | -------------------------------------------------------------------------------- /_pages/en_PT/site-navigation.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Site Navigation" # 3 | layout: single-no-ads 4 | sitemap: false 5 | --- 6 | 7 | {% capture notice-2 %} 8 | **All** 9 | 10 | + [Coldboot Haxchi](coldboot-haxchi) 11 | + [Credits](credits) 12 | + [disc2app](disc2app) 13 | + [Donations](donations) 14 | + [F3 (Linux)](f3-(linux)) 15 | + [F3X (Mac)](f3x-(mac)) 16 | + [FAQ](faq) 17 | + [Get Started](get-started) 18 | + [H2testw (Windows)](h2testw-(windows)) 19 | + [Home](/) 20 | + [Haxchi](haxchi) 21 | + [Homebrew Launcher (Channel)](homebrew-launcher-(channel)) 22 | + [Homebrew Launcher](homebrew-launcher) 23 | + [Mocha CFW](mocha-cfw) 24 | + [NAND Backup](nand-backup) 25 | + [Uninstall Mocha CFW](uninstall-cfw) 26 | + [vWii Modding](vwii-modding) 27 | {% endcapture %} 28 |
{{ notice-2 | markdownify }}
29 | -------------------------------------------------------------------------------- /_pages/en_PT/why-ads.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Why Ads?" # 3 | layout: single-no-ads 4 | --- 5 | 6 | This project is the culmination of thousands of hours of constant work. 7 | 8 | I maintain this guide, for free, and ensure it is always up to date. Because of this effort, I feel that it is fair for me to attempt to gain a meager income from my work. 9 | 10 | This site costs you nothing to use, and all that I display are non-intrusive ads. If you still have a problem with this, feel free to block these ads. 11 | 12 | If you do block ads, I would like to also remind you of the [Donations](donations) page, but once again that is optional too. 13 | 14 | Thanks,
15 | Plailect 16 | -------------------------------------------------------------------------------- /_pages/en_US/404.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Page Not Found" # 3 | layout: single-no-ads 4 | excerpt: "Page not found. Your pixels are in another canvas." # 5 | sitemap: false 6 | --- 7 | 8 | Sorry, but the page you were trying to view does not exist. 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/en_US/credits.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Credits" 3 | --- 4 | 5 | **Special thanks to all of [the translators](https://crowdin.com/project/wii-u-guide) for being awesome!** 6 | {: .notice--primary} 7 | 8 | If I forgot you here, contact me and I'll add your name. 9 | 10 | {% capture notice-1 %} 11 | 12 | + damysteryman 13 | + derrek 14 | + dimok789 15 | + FIX94 16 | + FlimFlam69 17 | + koolkdev 18 | + plutooo 19 | + smea 20 | + [Truth] 21 | + vgmoose 22 | + Yardape8000 23 | + yellows8 24 | 25 | {% endcapture %} 26 | 27 |
{{ notice-1 | markdownify }}
-------------------------------------------------------------------------------- /_pages/en_US/donations.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Donations" # 3 | layout: single-no-ads 4 | --- 5 | 6 | [![Paypal]({{ "/images/paypal_white.png" | absolute_url }}){:height="72px" width="256px"}{: style="padding-bottom: .35em"}](https://www.paypal.me/NintendoHomebrew/15){: .align-center} 7 | [https://paypal.me/NintendoHomebrew](https://paypal.me/NintendoHomebrew) 8 | {: .text-center} 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/en_US/homebrew-launcher.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Homebrew Launcher" 3 | --- 4 | 5 | {% include toc title="Table of Contents" %} 6 | 7 | ### Required Reading 8 | 9 | The Homebrew Launcher is a homebrew application that lists and allows the launching of other homebrew applications from the SD card. 10 | 11 | We launch this using the Wii U's built in browser, so your Wii U will need to be able to access the internet. 12 | 13 | ### Instructions 14 | 15 | 1. Go to `wiiuexploit.xyz` 16 | + You may want to bookmark this address to save time on typing in the future 17 | 1. Select "Run Homebrew Launcher" for the first exploit attempt 18 | + If it freezes, just force the console to power off by holding the power button, then try again 19 | 1. Your console should load the Homebrew Launcher 20 | 21 | ___ 22 | 23 | ### Continue to [Creating a NAND backup](nand-backup) 24 | {: .notice--primary} 25 | -------------------------------------------------------------------------------- /_pages/en_US/mocha-cfw.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Mocha CFW" 3 | --- 4 | 5 | {% include toc title="Table of Contents" %} 6 | 7 | ### Required Reading 8 | 9 | Mocha CFW is a custom firmware that patches signature checks, region checks, and enables other custom firmware features. 10 | 11 | In order to use Mocha CFW, you will need to enter the Homebrew Launcher through the browser and launch Mocha CFW every time your device reboots. 12 | 13 | ### What You Need 14 | 15 | + The custom `config.ini` provided in [Get Started](get-started) should already be in the `/wiiu/apps/mocha/` folder on your SD card 16 | 17 | ### Instructions 18 | 19 | 1. Launch Mocha CFW 20 | 1. The console will return to the Homebrew Launcher and enable custom firmware features 21 | + This will allow unsigned titles (such as the Homebrew Launcher) to be launched directly from the system menu until the next reboot 22 | 23 | ___ 24 | 25 | Note that you will need to launch Mocha CFW from the Homebrew Launcher every time you reboot in order to re-enable custom firmware features. 26 | {: .notice--info} 27 | 28 | ### Continue to [Homebrew Launcher (Channel)](homebrew-launcher-(channel)). 29 | {: .notice--primary} 30 | -------------------------------------------------------------------------------- /_pages/en_US/site-navigation.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Site Navigation" # 3 | layout: single-no-ads 4 | sitemap: false 5 | --- 6 | 7 | {% capture notice-2 %} 8 | **All** 9 | 10 | + [Coldboot Haxchi](coldboot-haxchi) 11 | + [Credits](credits) 12 | + [disc2app](disc2app) 13 | + [Donations](donations) 14 | + [F3 (Linux)](f3-(linux)) 15 | + [F3X (Mac)](f3x-(mac)) 16 | + [FAQ](faq) 17 | + [Get Started](get-started) 18 | + [H2testw (Windows)](h2testw-(windows)) 19 | + [Home](/) 20 | + [Haxchi](haxchi) 21 | + [Homebrew Launcher (Channel)](homebrew-launcher-(channel)) 22 | + [Homebrew Launcher](homebrew-launcher) 23 | + [Mocha CFW](mocha-cfw) 24 | + [NAND Backup](nand-backup) 25 | + [Uninstall Mocha CFW](uninstall-cfw) 26 | + [vWii Modding](vwii-modding) 27 | {% endcapture %} 28 |
{{ notice-2 | markdownify }}
29 | -------------------------------------------------------------------------------- /_pages/es_ES/404.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Página No Encontrada" # 3 | layout: single-no-ads 4 | excerpt: "Página no encontrada. Tus píxeles están en otro lienzo." # 5 | sitemap: false 6 | --- 7 | 8 | Lo sentimos, la página que intentas ver no existe. 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/es_ES/credits.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Créditos" 3 | --- 4 | 5 | **¡Agradecimientos especiales a todos [los traductores](https://crowdin.com/project/wii-u-guide) por ser asombrosos!** 6 | {: .notice--primary} 7 | 8 | Si te olvidé, puedes contactarme para añadir tu nombre. 9 | 10 | {% capture notice-1 %} 11 | 12 | + damysteryman 13 | + derrek 14 | + dimok789 15 | + FIX94 16 | + FlimFlam69 17 | + koolkdev 18 | + plutooo 19 | + smea 20 | + [Truth] 21 | + vgmoose 22 | + Yardape8000 23 | + yellows8 24 | 25 | {% endcapture %} 26 | 27 |
{{ notice-1 | markdownify }}
-------------------------------------------------------------------------------- /_pages/es_ES/donations.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Donaciones" # 3 | layout: single-no-ads 4 | --- 5 | 6 | [![Paypal]({{ "/images/paypal_white.png" | absolute_url }}){:height="72px" width="256px"}{: style="padding-bottom: .35em"}](https://www.paypal.me/NintendoHomebrew/15){: .align-center} 7 | [https://paypal.me/NintendoHomebrew](https://paypal.me/NintendoHomebrew) 8 | {: .text-center} 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/es_ES/homebrew-launcher.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Homebrew Launcher" 3 | --- 4 | 5 | {% include toc title="Tabla de contenidos" %} 6 | 7 | ### Lectura requerida 8 | 9 | El Homebrew Launcher es una aplicación casera que muestra una lista y permite el inicio de otras aplicaciones caseras presentes en la tarjeta SD. 10 | 11 | Para iniciarlo usaremos el navegador de Internet incorporado en la Wii U, por lo cual tu consola Wii U requerirá de acceso a Internet. 12 | 13 | ### Instrucciones 14 | 15 | 1. Ve a `wiiuexploit.xyz` 16 | + Conviene que añadas esta dirección a favoritos para ahorrar el tiempo de escribirla en el futuro 17 | 1. Selecciona "Run Homebrew Launcher" para el primer intento de ejecutar el exploit 18 | + Si se congela, fuerza el apagado de la consola manteniendo presionado el botón de apagado y luego intenta el proceso de nuevo 19 | 1. Tu consola debería cargar el Homebrew Launcher 20 | 21 | ___ 22 | 23 | ### Continúa en [Respaldo de la NAND](nand-backup) 24 | {: .notice--primary} 25 | -------------------------------------------------------------------------------- /_pages/es_ES/site-navigation.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Navegación del Sitio" # 3 | layout: single-no-ads 4 | sitemap: false 5 | --- 6 | 7 | {% capture notice-2 %} 8 | **Todo** 9 | 10 | + [Coldboot Haxchi](coldboot-haxchi) 11 | + [Créditos](credits) 12 | + [disc2app](disc2app) 13 | + [Donaciones](donations) 14 | + [F3 (Linux)](f3-(linux)) 15 | + [F3X (Mac)](f3x-(mac)) 16 | + [FAQ](faq) 17 | + [Comencemos](get-started) 18 | + [H2testw (Windows)](h2testw-(windows)) 19 | + [Inicio](/es_ES/) 20 | + [Haxchi](haxchi) 21 | + [Homebrew Launcher (Canal)](homebrew-launcher-(channel)) 22 | + [Homebrew Launcher](homebrew-launcher) 23 | + [Mocha CFW](mocha-cfw) 24 | + [Respaldo de la NAND](nand-backup) 25 | + [Desinstalar Mocha CFW](uninstall-cfw) 26 | + [Modeo de vWii](vwii-modding) 27 | {% endcapture %} 28 |
{{ notice-2 | markdownify }}
29 | -------------------------------------------------------------------------------- /_pages/es_ES/why-ads.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "¿Por qué anuncios?" # 3 | layout: single-no-ads 4 | --- 5 | 6 | Este proyecto es el resultado de miles de horas de trabajo constante. 7 | 8 | Mantengo esta guía, sin que me paguen, y me aseguro de que siempre esté al día. Por este esfuerzo, siento que es justo intentar ganar un poco de dinero por mi trabajo. 9 | 10 | Este sitio no cuesta nada usarlo, y ningún anuncio que pongo es intrusivo. Si aún así tienes un problema con eso, siéntete libre de bloquear los anuncios. 11 | 12 | Si bloqueas los anuncios, me gustaría recordarte la página de [Donaciones](donations), pero de nuevo, eso también es opcional. 13 | 14 | Gracias,
15 | Plailect 16 | -------------------------------------------------------------------------------- /_pages/fi_FI/404.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Page Not Found" # 3 | layout: single-no-ads 4 | excerpt: "Page not found. Your pixels are in another canvas." # 5 | sitemap: false 6 | --- 7 | 8 | Sorry, but the page you were trying to view does not exist. 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/fi_FI/credits.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Credits" 3 | --- 4 | 5 | **Special thanks to all of [the translators](https://crowdin.com/project/wii-u-guide) for being awesome!** 6 | {: .notice--primary} 7 | 8 | If I forgot you here, contact me and I'll add your name. 9 | 10 | {% capture notice-1 %} 11 | 12 | + damysteryman 13 | + derrek 14 | + dimok789 15 | + FIX94 16 | + FlimFlam69 17 | + koolkdev 18 | + plutooo 19 | + smea 20 | + [Truth] 21 | + vgmoose 22 | + Yardape8000 23 | + yellows8 24 | 25 | {% endcapture %} 26 | 27 |
{{ notice-1 | markdownify }}
-------------------------------------------------------------------------------- /_pages/fi_FI/donations.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Donations" # 3 | layout: single-no-ads 4 | --- 5 | 6 | [![Paypal]({{ "/images/paypal_white.png" | absolute_url }}){:height="72px" width="256px"}{: style="padding-bottom: .35em"}](https://www.paypal.me/NintendoHomebrew/15){: .align-center} 7 | [https://paypal.me/NintendoHomebrew](https://paypal.me/NintendoHomebrew) 8 | {: .text-center} 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/fi_FI/homebrew-launcher.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Homebrew Launcher" 3 | --- 4 | 5 | {% include toc title="Table of Contents" %} 6 | 7 | ### Required Reading 8 | 9 | The Homebrew Launcher is a homebrew application that lists and allows the launching of other homebrew applications from the SD card. 10 | 11 | We launch this using the Wii U's built in browser, so your Wii U will need to be able to access the internet. 12 | 13 | ### Instructions 14 | 15 | 1. Go to `wiiuexploit.xyz` 16 | + You may want to bookmark this address to save time on typing in the future 17 | 1. Select "Run Homebrew Launcher" for the first exploit attempt 18 | + If it freezes, just force the console to power off by holding the power button, then try again 19 | 1. Your console should load the Homebrew Launcher 20 | 21 | ___ 22 | 23 | ### Continue to [Creating a NAND backup](nand-backup) 24 | {: .notice--primary} 25 | -------------------------------------------------------------------------------- /_pages/fi_FI/mocha-cfw.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Mocha CFW" 3 | --- 4 | 5 | {% include toc title="Table of Contents" %} 6 | 7 | ### Required Reading 8 | 9 | Mocha CFW is a custom firmware that patches signature checks, region checks, and enables other custom firmware features. 10 | 11 | In order to use Mocha CFW, you will need to enter the Homebrew Launcher through the browser and launch Mocha CFW every time your device reboots. 12 | 13 | ### What You Need 14 | 15 | + The custom `config.ini` provided in [Get Started](get-started) should already be in the `/wiiu/apps/mocha/` folder on your SD card 16 | 17 | ### Instructions 18 | 19 | 1. Launch Mocha CFW 20 | 1. The console will return to the Homebrew Launcher and enable custom firmware features 21 | + This will allow unsigned titles (such as the Homebrew Launcher) to be launched directly from the system menu until the next reboot 22 | 23 | ___ 24 | 25 | Note that you will need to launch Mocha CFW from the Homebrew Launcher every time you reboot in order to re-enable custom firmware features. 26 | {: .notice--info} 27 | 28 | ### Continue to [Homebrew Launcher (Channel)](homebrew-launcher-(channel)). 29 | {: .notice--primary} 30 | -------------------------------------------------------------------------------- /_pages/fi_FI/site-navigation.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Site Navigation" # 3 | layout: single-no-ads 4 | sitemap: false 5 | --- 6 | 7 | {% capture notice-2 %} 8 | **All** 9 | 10 | + [Coldboot Haxchi](coldboot-haxchi) 11 | + [Credits](credits) 12 | + [disc2app](disc2app) 13 | + [Donations](donations) 14 | + [F3 (Linux)](f3-(linux)) 15 | + [F3X (Mac)](f3x-(mac)) 16 | + [FAQ](faq) 17 | + [Get Started](get-started) 18 | + [H2testw (Windows)](h2testw-(windows)) 19 | + [Home](/) 20 | + [Haxchi](haxchi) 21 | + [Homebrew Launcher (Channel)](homebrew-launcher-(channel)) 22 | + [Homebrew Launcher](homebrew-launcher) 23 | + [Mocha CFW](mocha-cfw) 24 | + [NAND Backup](nand-backup) 25 | + [Uninstall Mocha CFW](uninstall-cfw) 26 | + [vWii Modding](vwii-modding) 27 | {% endcapture %} 28 |
{{ notice-2 | markdownify }}
29 | -------------------------------------------------------------------------------- /_pages/fi_FI/why-ads.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Why Ads?" # 3 | layout: single-no-ads 4 | --- 5 | 6 | This project is the culmination of thousands of hours of constant work. 7 | 8 | I maintain this guide, for free, and ensure it is always up to date. Because of this effort, I feel that it is fair for me to attempt to gain a meager income from my work. 9 | 10 | This site costs you nothing to use, and all that I display are non-intrusive ads. If you still have a problem with this, feel free to block these ads. 11 | 12 | If you do block ads, I would like to also remind you of the [Donations](donations) page, but once again that is optional too. 13 | 14 | Thanks,
15 | Plailect 16 | -------------------------------------------------------------------------------- /_pages/fr_FR/404.txt: -------------------------------------------------------------------------------- 1 | --- 2 | titre: "Page Introuvable" # 3 | layout: single-no-ads 4 | excerpt: "Page introuvable. Vos pixels sont dans un autre canevas." # 5 | sitemap: false 6 | --- 7 | 8 | Désolé, la page que vous essayez d'atteindre n'existe pas. 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/fr_FR/credits.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Crédits" 3 | --- 4 | 5 | **Un grand merci à tous [les traducteurs](https://crowdin.com/project/wii-u-guide), vous êtes géniaux !** 6 | {: .notice--primary} 7 | 8 | Si je vous ai oublié, contactez-moi et j'ajouterai votre nom. 9 | 10 | {% capture notice-1 %} 11 | 12 | + damysteryman 13 | + derrek 14 | + dimok789 15 | + FIX94 16 | + FlimFlam69 17 | + koolkdev 18 | + plutooo 19 | + smea 20 | + [Truth] 21 | + vgmoose 22 | + Yardape8000 23 | + yellows8 24 | 25 | {% endcapture %} 26 | 27 |
{{ notice-1 | markdownify }}
-------------------------------------------------------------------------------- /_pages/fr_FR/donations.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Dons" # 3 | layout: single-no-ads 4 | --- 5 | 6 | [![Paypal]({{ "/images/paypal_white.png" | absolute_url }}){:height="72px" width="256px"}{: style="padding-bottom: .35em"}](https://www.paypal.me/NintendoHomebrew/15){: .align-center} 7 | [https://paypal.me/NintendoHomebrew](https://paypal.me/NintendoHomebrew) 8 | {: .text-center} 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/fr_FR/homebrew-launcher.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Homebrew Launcher" 3 | --- 4 | 5 | {% include toc title="Table des matières" %} 6 | 7 | ### Lecture requise 8 | 9 | Le Homebrew Launcher est une application homebrew qui répertorie et permet le lancement d’autres applications homebrew de la carte SD. 10 | 11 | La méthode de lancement de HBL nécessite que votre Wii U soit raccordée à internet, puisque nous ferons usage du navigateur intégré. 12 | 13 | ### Instructions 14 | 15 | 1. Ouvrez le site `wiiuexploit.xyz` 16 | + Vous pouvez sauvegarder cette adresse dans vos favoris afin de gagner du temps lors des prochaines sessions 17 | 1. Sélectionnez "Run Homebrew Launcher" pour le premier essai d'exploit 18 | + Si la console freeze (ne répond plus), forcez-la simplement à s'éteindre en maintenant le bouton Power, puis réessayez 19 | 1. Votre console devrait maintenant charger le Homebrew Launcher 20 | 21 | ___ 22 | 23 | ### Continuer vers [Sauvegarde de la NAND](nand-backup) 24 | {: .notice--primary} 25 | -------------------------------------------------------------------------------- /_pages/fr_FR/site-navigation.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Index" # 3 | layout: single-no-ads 4 | sitemap: false 5 | --- 6 | 7 | {% capture notice-2 %} 8 | **Toutes** 9 | 10 | + [Coldboot Haxchi](coldboot-haxchi) 11 | + [Crédits](credits) 12 | + [disc2app](disc2app) 13 | + [Dons](donations) 14 | + [F3 (Linux)](f3-(linux)) 15 | + [F3X (Mac)](f3x-(mac)) 16 | + [FAQ](faq) 17 | + [Bien démarrer](get-started) 18 | + [H2testw (Windows)](h2testw-(windows)) 19 | + [Home](/fr_FR/) 20 | + [Haxchi](haxchi) 21 | + [Homebrew Launcher (Channel)](homebrew-launcher-(channel)) 22 | + [Homebrew Launcher](homebrew-launcher) 23 | + [Mocha CFW](mocha-cfw) 24 | + [Sauvegarde de la NAND](nand-backup) 25 | + [Désinstallation du CFW](uninstall-mocha-cfw) 26 | + [vWii Modding](vwii-modding) 27 | {% endcapture %} 28 |
{{ notice-2 | markdownify }}
29 | -------------------------------------------------------------------------------- /_pages/fr_FR/why-ads.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Pourquoi des pubs?" # 3 | layout: single-no-ads 4 | --- 5 | 6 | Ce projet est le fruit de centaines d'heures de travail constant. 7 | 8 | Je maintiens ce guide, gratuitement, et m’assure qu’il est toujours à jour. A cause de cet effort, il me semble juste d'essayer de gagner un peu d'argent a partir de mon travail. 9 | 10 | Ce site ne vous coûte rien, et les publicités affichées ne sont pas intrusives. Mais si cela vous pose quand même problème, vous êtes libre de bloquer ces publicités. 11 | 12 | Si vous bloquez les publicités, j'aimerais vous rappeler que j'accepte les [dons](donations), mais, de nouveau, vous n'êtes bien évidemment pas obligés d'en faire. 13 | 14 | Merci,
15 | Plailect 16 | -------------------------------------------------------------------------------- /_pages/he_IL/404.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Page Not Found" # 3 | layout: single-no-ads 4 | excerpt: "Page not found. Your pixels are in another canvas." # 5 | sitemap: false 6 | --- 7 | 8 | Sorry, but the page you were trying to view does not exist. 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/he_IL/credits.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Credits" 3 | --- 4 | 5 | **Special thanks to all of [the translators](https://crowdin.com/project/wii-u-guide) for being awesome!** 6 | {: .notice--primary} 7 | 8 | If I forgot you here, contact me and I'll add your name. 9 | 10 | {% capture notice-1 %} 11 | 12 | + damysteryman 13 | + derrek 14 | + dimok789 15 | + FIX94 16 | + FlimFlam69 17 | + koolkdev 18 | + plutooo 19 | + smea 20 | + [Truth] 21 | + vgmoose 22 | + Yardape8000 23 | + yellows8 24 | 25 | {% endcapture %} 26 | 27 |
{{ notice-1 | markdownify }}
-------------------------------------------------------------------------------- /_pages/he_IL/donations.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Donations" # 3 | layout: single-no-ads 4 | --- 5 | 6 | [![Paypal]({{ "/images/paypal_white.png" | absolute_url }}){:height="72px" width="256px"}{: style="padding-bottom: .35em"}](https://www.paypal.me/NintendoHomebrew/15){: .align-center} 7 | [https://paypal.me/NintendoHomebrew](https://paypal.me/NintendoHomebrew) 8 | {: .text-center} 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/he_IL/homebrew-launcher.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Homebrew Launcher" 3 | --- 4 | 5 | {% include toc title="Table of Contents" %} 6 | 7 | ### Required Reading 8 | 9 | The Homebrew Launcher is a homebrew application that lists and allows the launching of other homebrew applications from the SD card. 10 | 11 | We launch this using the Wii U's built in browser, so your Wii U will need to be able to access the internet. 12 | 13 | ### Instructions 14 | 15 | 1. Go to `wiiuexploit.xyz` 16 | + You may want to bookmark this address to save time on typing in the future 17 | 1. Select "Run Homebrew Launcher" for the first exploit attempt 18 | + If it freezes, just force the console to power off by holding the power button, then try again 19 | 1. Your console should load the Homebrew Launcher 20 | 21 | ___ 22 | 23 | ### Continue to [Creating a NAND backup](nand-backup) 24 | {: .notice--primary} 25 | -------------------------------------------------------------------------------- /_pages/he_IL/mocha-cfw.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Mocha CFW" 3 | --- 4 | 5 | {% include toc title="Table of Contents" %} 6 | 7 | ### Required Reading 8 | 9 | Mocha CFW is a custom firmware that patches signature checks, region checks, and enables other custom firmware features. 10 | 11 | In order to use Mocha CFW, you will need to enter the Homebrew Launcher through the browser and launch Mocha CFW every time your device reboots. 12 | 13 | ### What You Need 14 | 15 | + The custom `config.ini` provided in [Get Started](get-started) should already be in the `/wiiu/apps/mocha/` folder on your SD card 16 | 17 | ### Instructions 18 | 19 | 1. Launch Mocha CFW 20 | 1. The console will return to the Homebrew Launcher and enable custom firmware features 21 | + This will allow unsigned titles (such as the Homebrew Launcher) to be launched directly from the system menu until the next reboot 22 | 23 | ___ 24 | 25 | Note that you will need to launch Mocha CFW from the Homebrew Launcher every time you reboot in order to re-enable custom firmware features. 26 | {: .notice--info} 27 | 28 | ### Continue to [Homebrew Launcher (Channel)](homebrew-launcher-(channel)). 29 | {: .notice--primary} 30 | -------------------------------------------------------------------------------- /_pages/he_IL/site-navigation.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Site Navigation" # 3 | layout: single-no-ads 4 | sitemap: false 5 | --- 6 | 7 | {% capture notice-2 %} 8 | **All** 9 | 10 | + [Coldboot Haxchi](coldboot-haxchi) 11 | + [Credits](credits) 12 | + [disc2app](disc2app) 13 | + [Donations](donations) 14 | + [F3 (Linux)](f3-(linux)) 15 | + [F3X (Mac)](f3x-(mac)) 16 | + [FAQ](faq) 17 | + [Get Started](get-started) 18 | + [H2testw (Windows)](h2testw-(windows)) 19 | + [Home](/) 20 | + [Haxchi](haxchi) 21 | + [Homebrew Launcher (Channel)](homebrew-launcher-(channel)) 22 | + [Homebrew Launcher](homebrew-launcher) 23 | + [Mocha CFW](mocha-cfw) 24 | + [NAND Backup](nand-backup) 25 | + [Uninstall Mocha CFW](uninstall-cfw) 26 | + [vWii Modding](vwii-modding) 27 | {% endcapture %} 28 |
{{ notice-2 | markdownify }}
29 | -------------------------------------------------------------------------------- /_pages/he_IL/why-ads.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Why Ads?" # 3 | layout: single-no-ads 4 | --- 5 | 6 | This project is the culmination of thousands of hours of constant work. 7 | 8 | I maintain this guide, for free, and ensure it is always up to date. Because of this effort, I feel that it is fair for me to attempt to gain a meager income from my work. 9 | 10 | This site costs you nothing to use, and all that I display are non-intrusive ads. If you still have a problem with this, feel free to block these ads. 11 | 12 | If you do block ads, I would like to also remind you of the [Donations](donations) page, but once again that is optional too. 13 | 14 | Thanks,
15 | Plailect 16 | -------------------------------------------------------------------------------- /_pages/hu_HU/404.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Page Not Found" # 3 | layout: single-no-ads 4 | excerpt: "Page not found. Your pixels are in another canvas." # 5 | sitemap: false 6 | --- 7 | 8 | Sorry, but the page you were trying to view does not exist. 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/hu_HU/credits.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Credits" 3 | --- 4 | 5 | **Special thanks to all of [the translators](https://crowdin.com/project/wii-u-guide) for being awesome!** 6 | {: .notice--primary} 7 | 8 | If I forgot you here, contact me and I'll add your name. 9 | 10 | {% capture notice-1 %} 11 | 12 | + damysteryman 13 | + derrek 14 | + dimok789 15 | + FIX94 16 | + FlimFlam69 17 | + koolkdev 18 | + plutooo 19 | + smea 20 | + [Truth] 21 | + vgmoose 22 | + Yardape8000 23 | + yellows8 24 | 25 | {% endcapture %} 26 | 27 |
{{ notice-1 | markdownify }}
-------------------------------------------------------------------------------- /_pages/hu_HU/donations.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Donations" # 3 | layout: single-no-ads 4 | --- 5 | 6 | [![Paypal]({{ "/images/paypal_white.png" | absolute_url }}){:height="72px" width="256px"}{: style="padding-bottom: .35em"}](https://www.paypal.me/NintendoHomebrew/15){: .align-center} 7 | [https://paypal.me/NintendoHomebrew](https://paypal.me/NintendoHomebrew) 8 | {: .text-center} 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/hu_HU/homebrew-launcher.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Homebrew Launcher" 3 | --- 4 | 5 | {% include toc title="Table of Contents" %} 6 | 7 | ### Required Reading 8 | 9 | The Homebrew Launcher is a homebrew application that lists and allows the launching of other homebrew applications from the SD card. 10 | 11 | We launch this using the Wii U's built in browser, so your Wii U will need to be able to access the internet. 12 | 13 | ### Instructions 14 | 15 | 1. Go to `wiiuexploit.xyz` 16 | + You may want to bookmark this address to save time on typing in the future 17 | 1. Select "Run Homebrew Launcher" for the first exploit attempt 18 | + If it freezes, just force the console to power off by holding the power button, then try again 19 | 1. Your console should load the Homebrew Launcher 20 | 21 | ___ 22 | 23 | ### Continue to [Creating a NAND backup](nand-backup) 24 | {: .notice--primary} 25 | -------------------------------------------------------------------------------- /_pages/hu_HU/mocha-cfw.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Mocha CFW" 3 | --- 4 | 5 | {% include toc title="Table of Contents" %} 6 | 7 | ### Required Reading 8 | 9 | Mocha CFW is a custom firmware that patches signature checks, region checks, and enables other custom firmware features. 10 | 11 | In order to use Mocha CFW, you will need to enter the Homebrew Launcher through the browser and launch Mocha CFW every time your device reboots. 12 | 13 | ### What You Need 14 | 15 | + The custom `config.ini` provided in [Get Started](get-started) should already be in the `/wiiu/apps/mocha/` folder on your SD card 16 | 17 | ### Instructions 18 | 19 | 1. Launch Mocha CFW 20 | 1. The console will return to the Homebrew Launcher and enable custom firmware features 21 | + This will allow unsigned titles (such as the Homebrew Launcher) to be launched directly from the system menu until the next reboot 22 | 23 | ___ 24 | 25 | Note that you will need to launch Mocha CFW from the Homebrew Launcher every time you reboot in order to re-enable custom firmware features. 26 | {: .notice--info} 27 | 28 | ### Continue to [Homebrew Launcher (Channel)](homebrew-launcher-(channel)). 29 | {: .notice--primary} 30 | -------------------------------------------------------------------------------- /_pages/hu_HU/site-navigation.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Site Navigation" # 3 | layout: single-no-ads 4 | sitemap: false 5 | --- 6 | 7 | {% capture notice-2 %} 8 | **All** 9 | 10 | + [Coldboot Haxchi](coldboot-haxchi) 11 | + [Credits](credits) 12 | + [disc2app](disc2app) 13 | + [Donations](donations) 14 | + [F3 (Linux)](f3-(linux)) 15 | + [F3X (Mac)](f3x-(mac)) 16 | + [FAQ](faq) 17 | + [Get Started](get-started) 18 | + [H2testw (Windows)](h2testw-(windows)) 19 | + [Home](/) 20 | + [Haxchi](haxchi) 21 | + [Homebrew Launcher (Channel)](homebrew-launcher-(channel)) 22 | + [Homebrew Launcher](homebrew-launcher) 23 | + [Mocha CFW](mocha-cfw) 24 | + [NAND Backup](nand-backup) 25 | + [Uninstall Mocha CFW](uninstall-cfw) 26 | + [vWii Modding](vwii-modding) 27 | {% endcapture %} 28 |
{{ notice-2 | markdownify }}
29 | -------------------------------------------------------------------------------- /_pages/hu_HU/why-ads.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Why Ads?" # 3 | layout: single-no-ads 4 | --- 5 | 6 | This project is the culmination of thousands of hours of constant work. 7 | 8 | I maintain this guide, for free, and ensure it is always up to date. Because of this effort, I feel that it is fair for me to attempt to gain a meager income from my work. 9 | 10 | This site costs you nothing to use, and all that I display are non-intrusive ads. If you still have a problem with this, feel free to block these ads. 11 | 12 | If you do block ads, I would like to also remind you of the [Donations](donations) page, but once again that is optional too. 13 | 14 | Thanks,
15 | Plailect 16 | -------------------------------------------------------------------------------- /_pages/id_ID/404.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Page Not Found" # 3 | layout: single-no-ads 4 | excerpt: "Page not found. Your pixels are in another canvas." # 5 | sitemap: false 6 | --- 7 | 8 | Sorry, but the page you were trying to view does not exist. 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/id_ID/credits.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Credits" 3 | --- 4 | 5 | **Special thanks to all of [the translators](https://crowdin.com/project/wii-u-guide) for being awesome!** 6 | {: .notice--primary} 7 | 8 | If I forgot you here, contact me and I'll add your name. 9 | 10 | {% capture notice-1 %} 11 | 12 | + damysteryman 13 | + derrek 14 | + dimok789 15 | + FIX94 16 | + FlimFlam69 17 | + koolkdev 18 | + plutooo 19 | + smea 20 | + [Truth] 21 | + vgmoose 22 | + Yardape8000 23 | + yellows8 24 | 25 | {% endcapture %} 26 | 27 |
{{ notice-1 | markdownify }}
-------------------------------------------------------------------------------- /_pages/id_ID/donations.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Donations" # 3 | layout: single-no-ads 4 | --- 5 | 6 | [![Paypal]({{ "/images/paypal_white.png" | absolute_url }}){:height="72px" width="256px"}{: style="padding-bottom: .35em"}](https://www.paypal.me/NintendoHomebrew/15){: .align-center} 7 | [https://paypal.me/NintendoHomebrew](https://paypal.me/NintendoHomebrew) 8 | {: .text-center} 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/id_ID/homebrew-launcher.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Homebrew Launcher" 3 | --- 4 | 5 | {% include toc title="Table of Contents" %} 6 | 7 | ### Required Reading 8 | 9 | The Homebrew Launcher is a homebrew application that lists and allows the launching of other homebrew applications from the SD card. 10 | 11 | We launch this using the Wii U's built in browser, so your Wii U will need to be able to access the internet. 12 | 13 | ### Instructions 14 | 15 | 1. Go to `wiiuexploit.xyz` 16 | + You may want to bookmark this address to save time on typing in the future 17 | 1. Select "Run Homebrew Launcher" for the first exploit attempt 18 | + If it freezes, just force the console to power off by holding the power button, then try again 19 | 1. Your console should load the Homebrew Launcher 20 | 21 | ___ 22 | 23 | ### Continue to [Creating a NAND backup](nand-backup) 24 | {: .notice--primary} 25 | -------------------------------------------------------------------------------- /_pages/id_ID/site-navigation.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Site Navigation" # 3 | layout: single-no-ads 4 | sitemap: false 5 | --- 6 | 7 | {% capture notice-2 %} 8 | **All** 9 | 10 | + [Coldboot Haxchi](coldboot-haxchi) 11 | + [Credits](credits) 12 | + [disc2app](disc2app) 13 | + [Donations](donations) 14 | + [F3 (Linux)](f3-(linux)) 15 | + [F3X (Mac)](f3x-(mac)) 16 | + [FAQ](faq) 17 | + [Get Started](get-started) 18 | + [H2testw (Windows)](h2testw-(windows)) 19 | + [Home](/) 20 | + [Haxchi](haxchi) 21 | + [Homebrew Launcher (Channel)](homebrew-launcher-(channel)) 22 | + [Homebrew Launcher](homebrew-launcher) 23 | + [Mocha CFW](mocha-cfw) 24 | + [NAND Backup](nand-backup) 25 | + [Uninstall Mocha CFW](uninstall-cfw) 26 | + [vWii Modding](vwii-modding) 27 | {% endcapture %} 28 |
{{ notice-2 | markdownify }}
29 | -------------------------------------------------------------------------------- /_pages/id_ID/why-ads.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Why Ads?" # 3 | layout: single-no-ads 4 | --- 5 | 6 | This project is the culmination of thousands of hours of constant work. 7 | 8 | I maintain this guide, for free, and ensure it is always up to date. Because of this effort, I feel that it is fair for me to attempt to gain a meager income from my work. 9 | 10 | This site costs you nothing to use, and all that I display are non-intrusive ads. If you still have a problem with this, feel free to block these ads. 11 | 12 | If you do block ads, I would like to also remind you of the [Donations](donations) page, but once again that is optional too. 13 | 14 | Thanks,
15 | Plailect 16 | -------------------------------------------------------------------------------- /_pages/it_IT/404.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Pagina non trovata" # 3 | layout: single-no-ads 4 | excerpt: "Pagina non trovata. I tuoi pixel sono in un altro canvas." # 5 | sitemap: false 6 | --- 7 | 8 | Mi dispiace, ma la pagina che stai cercando di raggiungere non esiste. 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/it_IT/credits.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Riconoscimenti" 3 | --- 4 | 5 | **Un ringraziamento speciale a [tutti i traduttori](https://crowdin.com/project/wii-u-guide)! Siete fantastici!** 6 | {: .notice--primary} 7 | 8 | Se ho dimenticato di inserirti in questa lista, contattami e ti aggiungerò. 9 | 10 | {% capture notice-1 %} 11 | 12 | + damysteryman 13 | + derrek 14 | + dimok789 15 | + FIX94 16 | + FlimFlam69 17 | + koolkdev 18 | + plutooo 19 | + smea 20 | + [Truth] 21 | + vgmoose 22 | + Yardape8000 23 | + yellows8 24 | 25 | {% endcapture %} 26 | 27 |
{{ notice-1 | markdownify }}
-------------------------------------------------------------------------------- /_pages/it_IT/donations.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Donazioni" # 3 | layout: single-no-ads 4 | --- 5 | 6 | [![Paypal]({{ "/images/paypal_white.png" | absolute_url }}){:height="72px" width="256px"}{: style="padding-bottom: .35em"}](https://www.paypal.me/NintendoHomebrew/15){: .align-center} 7 | [https://paypal.me/NintendoHomebrew](https://paypal.me/NintendoHomebrew) 8 | {: .text-center} 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/it_IT/homebrew-launcher.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Homebrew Launcher" 3 | --- 4 | 5 | {% include toc title="Indice" %} 6 | 7 | ### Lettura necessaria 8 | 9 | L'Homebrew Launcher è un'applicazione homebrew che ti permette di visualizzare ed avviare altre applicazioni homebrew dalla scheda SD. 10 | 11 | Lo avviamo utilizzando il browser internet della Wii U, quindi quest'ultima dovrà avere accesso ad internet. 12 | 13 | ### Istruzioni 14 | 15 | 1. Vai su `wiiuexploit.xyz` 16 | + Sarebbe meglio mettere questo sito nei preferiti in modo tale da non perdere tempo successivamente 17 | 1. Seleziona "Run Homebrew Launcher" per eseguire il primo tentativo di exploit 18 | + Se la console dovesse bloccarsi, forzane lo spegnimento tenendo premuto il pulsante di accensione, quindi riprova 19 | 1. La console dovrebbe ora avviare l'Homebrew Launcher 20 | 21 | ___ 22 | 23 | ### Continua a [creare un backup della NAND](nand-backup) 24 | {: .notice--primary} 25 | -------------------------------------------------------------------------------- /_pages/it_IT/site-navigation.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Mappa del sito" # 3 | layout: single-no-ads 4 | sitemap: false 5 | --- 6 | 7 | {% capture notice-2 %} 8 | **Tutti** 9 | 10 | + [Coldboot Haxchi](coldboot-haxchi) 11 | + [Riconoscimenti](credits) 12 | + [disc2app](disc2app) 13 | + [Donazioni](donations) 14 | + [F3 (Linux)](f3-(linux)) 15 | + [F3X (Mac)](f3x-(mac)) 16 | + [FAQ](faq) 17 | + [Cominciamo!](get-started) 18 | + [H2testw (Windows)](h2testw-(windows)) 19 | + [Pagina Iniziale](/it_IT) 20 | + [Haxchi](haxchi) 21 | + [Homebrew Launcher (Canale)](homebrew-launcher-(channel)) 22 | + [Homebrew Launcher](homebrew-launcher) 23 | + [Mocha CFW](mocha-cfw) 24 | + [Backup NAND](nand-backup) 25 | + [Disinstallare Mocha CFW](uninstall-cfw) 26 | + [Modifca vWii](vwii-modding) 27 | {% endcapture %} 28 |
{{ notice-2 | markdownify }}
29 | -------------------------------------------------------------------------------- /_pages/it_IT/why-ads.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Perché c'è la pubblicità?" # 3 | layout: single-no-ads 4 | --- 5 | 6 | Questo progetto è il culmine di migliaia di ore di lavoro. 7 | 8 | Mantengo questa guida, gratuitamente, e mi assicuro che rimanga sempre aggiornata. Per questo, mi sembra corretto cercare di ottenere una minima gratificazione per il mio lavoro. 9 | 10 | Usare questo sito non ti costa nulla, e tutto ciò che mostro sono pubblicità non intrusive. Ma se per te è comunque un problema, sentiti libero di bloccarle. 11 | 12 | Se blocchi le pubblicità, ti vorrei anche ricordare della pagina delle [Donations](donations), anch'essa opzionale. 13 | 14 | Grazie,
15 | Plailect 16 | -------------------------------------------------------------------------------- /_pages/ja_JP/404.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Page Not Found" # 3 | layout: single-no-ads 4 | excerpt: "Page not found. Your pixels are in another canvas." # 5 | sitemap: false 6 | --- 7 | 8 | Sorry, but the page you were trying to view does not exist. 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/ja_JP/credits.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Credits" 3 | --- 4 | 5 | **Special thanks to all of [the translators](https://crowdin.com/project/wii-u-guide) for being awesome!** 6 | {: .notice--primary} 7 | 8 | If I forgot you here, contact me and I'll add your name. 9 | 10 | {% capture notice-1 %} 11 | 12 | + damysteryman 13 | + derrek 14 | + dimok789 15 | + FIX94 16 | + FlimFlam69 17 | + koolkdev 18 | + plutooo 19 | + smea 20 | + [Truth] 21 | + vgmoose 22 | + Yardape8000 23 | + yellows8 24 | 25 | {% endcapture %} 26 | 27 |
{{ notice-1 | markdownify }}
-------------------------------------------------------------------------------- /_pages/ja_JP/donations.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Donations" # 3 | layout: single-no-ads 4 | --- 5 | 6 | [![Paypal]({{ "/images/paypal_white.png" | absolute_url }}){:height="72px" width="256px"}{: style="padding-bottom: .35em"}](https://www.paypal.me/NintendoHomebrew/15){: .align-center} 7 | [https://paypal.me/NintendoHomebrew](https://paypal.me/NintendoHomebrew) 8 | {: .text-center} 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/ja_JP/homebrew-launcher.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Homebrew Launcher" 3 | --- 4 | 5 | {% include toc title="Table of Contents" %} 6 | 7 | ### Required Reading 8 | 9 | The Homebrew Launcher is a homebrew application that lists and allows the launching of other homebrew applications from the SD card. 10 | 11 | We launch this using the Wii U's built in browser, so your Wii U will need to be able to access the internet. 12 | 13 | ### Instructions 14 | 15 | 1. Go to `wiiuexploit.xyz` 16 | + You may want to bookmark this address to save time on typing in the future 17 | 1. Select "Run Homebrew Launcher" for the first exploit attempt 18 | + If it freezes, just force the console to power off by holding the power button, then try again 19 | 1. Your console should load the Homebrew Launcher 20 | 21 | ___ 22 | 23 | ### Continue to [Creating a NAND backup](nand-backup) 24 | {: .notice--primary} 25 | -------------------------------------------------------------------------------- /_pages/ja_JP/site-navigation.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Site Navigation" # 3 | layout: single-no-ads 4 | sitemap: false 5 | --- 6 | 7 | {% capture notice-2 %} 8 | **All** 9 | 10 | + [Coldboot Haxchi](coldboot-haxchi) 11 | + [Credits](credits) 12 | + [disc2app](disc2app) 13 | + [Donations](donations) 14 | + [F3 (Linux)](f3-(linux)) 15 | + [F3X (Mac)](f3x-(mac)) 16 | + [FAQ](faq) 17 | + [Get Started](get-started) 18 | + [H2testw (Windows)](h2testw-(windows)) 19 | + [Home](/) 20 | + [Haxchi](haxchi) 21 | + [Homebrew Launcher (Channel)](homebrew-launcher-(channel)) 22 | + [Homebrew Launcher](homebrew-launcher) 23 | + [Mocha CFW](mocha-cfw) 24 | + [NAND Backup](nand-backup) 25 | + [Uninstall Mocha CFW](uninstall-cfw) 26 | + [vWii Modding](vwii-modding) 27 | {% endcapture %} 28 |
{{ notice-2 | markdownify }}
29 | -------------------------------------------------------------------------------- /_pages/ja_JP/why-ads.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Why Ads?" # 3 | layout: single-no-ads 4 | --- 5 | 6 | This project is the culmination of thousands of hours of constant work. 7 | 8 | I maintain this guide, for free, and ensure it is always up to date. Because of this effort, I feel that it is fair for me to attempt to gain a meager income from my work. 9 | 10 | This site costs you nothing to use, and all that I display are non-intrusive ads. If you still have a problem with this, feel free to block these ads. 11 | 12 | If you do block ads, I would like to also remind you of the [Donations](donations) page, but once again that is optional too. 13 | 14 | Thanks,
15 | Plailect 16 | -------------------------------------------------------------------------------- /_pages/ko_KR/404.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Page Not Found" # 3 | layout: single-no-ads 4 | excerpt: "Page not found. Your pixels are in another canvas." # 5 | sitemap: false 6 | --- 7 | 8 | Sorry, but the page you were trying to view does not exist. 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/ko_KR/credits.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Credits" 3 | --- 4 | 5 | **Special thanks to all of [the translators](https://crowdin.com/project/wii-u-guide) for being awesome!** 6 | {: .notice--primary} 7 | 8 | If I forgot you here, contact me and I'll add your name. 9 | 10 | {% capture notice-1 %} 11 | 12 | + damysteryman 13 | + derrek 14 | + dimok789 15 | + FIX94 16 | + FlimFlam69 17 | + koolkdev 18 | + plutooo 19 | + smea 20 | + [Truth] 21 | + vgmoose 22 | + Yardape8000 23 | + yellows8 24 | 25 | {% endcapture %} 26 | 27 |
{{ notice-1 | markdownify }}
-------------------------------------------------------------------------------- /_pages/ko_KR/donations.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Donations" # 3 | layout: single-no-ads 4 | --- 5 | 6 | [![Paypal]({{ "/images/paypal_white.png" | absolute_url }}){:height="72px" width="256px"}{: style="padding-bottom: .35em"}](https://www.paypal.me/NintendoHomebrew/15){: .align-center} 7 | [https://paypal.me/NintendoHomebrew](https://paypal.me/NintendoHomebrew) 8 | {: .text-center} 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/ko_KR/homebrew-launcher.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Homebrew Launcher" 3 | --- 4 | 5 | {% include toc title="Table of Contents" %} 6 | 7 | ### Required Reading 8 | 9 | The Homebrew Launcher is a homebrew application that lists and allows the launching of other homebrew applications from the SD card. 10 | 11 | We launch this using the Wii U's built in browser, so your Wii U will need to be able to access the internet. 12 | 13 | ### Instructions 14 | 15 | 1. Go to `wiiuexploit.xyz` 16 | + You may want to bookmark this address to save time on typing in the future 17 | 1. Select "Run Homebrew Launcher" for the first exploit attempt 18 | + If it freezes, just force the console to power off by holding the power button, then try again 19 | 1. Your console should load the Homebrew Launcher 20 | 21 | ___ 22 | 23 | ### Continue to [Creating a NAND backup](nand-backup) 24 | {: .notice--primary} 25 | -------------------------------------------------------------------------------- /_pages/ko_KR/site-navigation.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Site Navigation" # 3 | layout: single-no-ads 4 | sitemap: false 5 | --- 6 | 7 | {% capture notice-2 %} 8 | **All** 9 | 10 | + [Coldboot Haxchi](coldboot-haxchi) 11 | + [Credits](credits) 12 | + [disc2app](disc2app) 13 | + [Donations](donations) 14 | + [F3 (Linux)](f3-(linux)) 15 | + [F3X (Mac)](f3x-(mac)) 16 | + [FAQ](faq) 17 | + [Get Started](get-started) 18 | + [H2testw (Windows)](h2testw-(windows)) 19 | + [Home](/) 20 | + [Haxchi](haxchi) 21 | + [Homebrew Launcher (Channel)](homebrew-launcher-(channel)) 22 | + [Homebrew Launcher](homebrew-launcher) 23 | + [Mocha CFW](mocha-cfw) 24 | + [NAND Backup](nand-backup) 25 | + [Uninstall Mocha CFW](uninstall-cfw) 26 | + [vWii Modding](vwii-modding) 27 | {% endcapture %} 28 |
{{ notice-2 | markdownify }}
29 | -------------------------------------------------------------------------------- /_pages/ko_KR/why-ads.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Why Ads?" # 3 | layout: single-no-ads 4 | --- 5 | 6 | This project is the culmination of thousands of hours of constant work. 7 | 8 | I maintain this guide, for free, and ensure it is always up to date. Because of this effort, I feel that it is fair for me to attempt to gain a meager income from my work. 9 | 10 | This site costs you nothing to use, and all that I display are non-intrusive ads. If you still have a problem with this, feel free to block these ads. 11 | 12 | If you do block ads, I would like to also remind you of the [Donations](donations) page, but once again that is optional too. 13 | 14 | Thanks,
15 | Plailect 16 | -------------------------------------------------------------------------------- /_pages/ms_MY/404.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Page Not Found" # 3 | layout: single-no-ads 4 | excerpt: "Page not found. Your pixels are in another canvas." # 5 | sitemap: false 6 | --- 7 | 8 | Sorry, but the page you were trying to view does not exist. 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/ms_MY/credits.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Credits" 3 | --- 4 | 5 | **Special thanks to all of [the translators](https://crowdin.com/project/wii-u-guide) for being awesome!** 6 | {: .notice--primary} 7 | 8 | If I forgot you here, contact me and I'll add your name. 9 | 10 | {% capture notice-1 %} 11 | 12 | + damysteryman 13 | + derrek 14 | + dimok789 15 | + FIX94 16 | + FlimFlam69 17 | + koolkdev 18 | + plutooo 19 | + smea 20 | + [Truth] 21 | + vgmoose 22 | + Yardape8000 23 | + yellows8 24 | 25 | {% endcapture %} 26 | 27 |
{{ notice-1 | markdownify }}
-------------------------------------------------------------------------------- /_pages/ms_MY/donations.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Donations" # 3 | layout: single-no-ads 4 | --- 5 | 6 | [![Paypal]({{ "/images/paypal_white.png" | absolute_url }}){:height="72px" width="256px"}{: style="padding-bottom: .35em"}](https://www.paypal.me/NintendoHomebrew/15){: .align-center} 7 | [https://paypal.me/NintendoHomebrew](https://paypal.me/NintendoHomebrew) 8 | {: .text-center} 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/ms_MY/homebrew-launcher.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Homebrew Launcher" 3 | --- 4 | 5 | {% include toc title="Table of Contents" %} 6 | 7 | ### Required Reading 8 | 9 | The Homebrew Launcher is a homebrew application that lists and allows the launching of other homebrew applications from the SD card. 10 | 11 | We launch this using the Wii U's built in browser, so your Wii U will need to be able to access the internet. 12 | 13 | ### Instructions 14 | 15 | 1. Go to `wiiuexploit.xyz` 16 | + You may want to bookmark this address to save time on typing in the future 17 | 1. Select "Run Homebrew Launcher" for the first exploit attempt 18 | + If it freezes, just force the console to power off by holding the power button, then try again 19 | 1. Your console should load the Homebrew Launcher 20 | 21 | ___ 22 | 23 | ### Continue to [Creating a NAND backup](nand-backup) 24 | {: .notice--primary} 25 | -------------------------------------------------------------------------------- /_pages/ms_MY/site-navigation.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Site Navigation" # 3 | layout: single-no-ads 4 | sitemap: false 5 | --- 6 | 7 | {% capture notice-2 %} 8 | **All** 9 | 10 | + [Coldboot Haxchi](coldboot-haxchi) 11 | + [Credits](credits) 12 | + [disc2app](disc2app) 13 | + [Donations](donations) 14 | + [F3 (Linux)](f3-(linux)) 15 | + [F3X (Mac)](f3x-(mac)) 16 | + [FAQ](faq) 17 | + [Get Started](get-started) 18 | + [H2testw (Windows)](h2testw-(windows)) 19 | + [Home](/) 20 | + [Haxchi](haxchi) 21 | + [Homebrew Launcher (Channel)](homebrew-launcher-(channel)) 22 | + [Homebrew Launcher](homebrew-launcher) 23 | + [Mocha CFW](mocha-cfw) 24 | + [NAND Backup](nand-backup) 25 | + [Uninstall Mocha CFW](uninstall-cfw) 26 | + [vWii Modding](vwii-modding) 27 | {% endcapture %} 28 |
{{ notice-2 | markdownify }}
29 | -------------------------------------------------------------------------------- /_pages/ms_MY/why-ads.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Why Ads?" # 3 | layout: single-no-ads 4 | --- 5 | 6 | This project is the culmination of thousands of hours of constant work. 7 | 8 | I maintain this guide, for free, and ensure it is always up to date. Because of this effort, I feel that it is fair for me to attempt to gain a meager income from my work. 9 | 10 | This site costs you nothing to use, and all that I display are non-intrusive ads. If you still have a problem with this, feel free to block these ads. 11 | 12 | If you do block ads, I would like to also remind you of the [Donations](donations) page, but once again that is optional too. 13 | 14 | Thanks,
15 | Plailect 16 | -------------------------------------------------------------------------------- /_pages/nl_NL/404.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Page Not Found" # 3 | layout: single-no-ads 4 | excerpt: "Page not found. Your pixels are in another canvas." # 5 | sitemap: false 6 | --- 7 | 8 | Sorry, but the page you were trying to view does not exist. 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/nl_NL/credits.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Credits" 3 | --- 4 | 5 | **Special thanks to all of [the translators](https://crowdin.com/project/wii-u-guide) for being awesome!** 6 | {: .notice--primary} 7 | 8 | If I forgot you here, contact me and I'll add your name. 9 | 10 | {% capture notice-1 %} 11 | 12 | + damysteryman 13 | + derrek 14 | + dimok789 15 | + FIX94 16 | + FlimFlam69 17 | + koolkdev 18 | + plutooo 19 | + smea 20 | + [Truth] 21 | + vgmoose 22 | + Yardape8000 23 | + yellows8 24 | 25 | {% endcapture %} 26 | 27 |
{{ notice-1 | markdownify }}
-------------------------------------------------------------------------------- /_pages/nl_NL/donations.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Donations" # 3 | layout: single-no-ads 4 | --- 5 | 6 | [![Paypal]({{ "/images/paypal_white.png" | absolute_url }}){:height="72px" width="256px"}{: style="padding-bottom: .35em"}](https://www.paypal.me/NintendoHomebrew/15){: .align-center} 7 | [https://paypal.me/NintendoHomebrew](https://paypal.me/NintendoHomebrew) 8 | {: .text-center} 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/nl_NL/homebrew-launcher.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Homebrew Launcher" 3 | --- 4 | 5 | {% include toc title="Table of Contents" %} 6 | 7 | ### Required Reading 8 | 9 | The Homebrew Launcher is a homebrew application that lists and allows the launching of other homebrew applications from the SD card. 10 | 11 | We launch this using the Wii U's built in browser, so your Wii U will need to be able to access the internet. 12 | 13 | ### Instructions 14 | 15 | 1. Go to `wiiuexploit.xyz` 16 | + You may want to bookmark this address to save time on typing in the future 17 | 1. Select "Run Homebrew Launcher" for the first exploit attempt 18 | + If it freezes, just force the console to power off by holding the power button, then try again 19 | 1. Your console should load the Homebrew Launcher 20 | 21 | ___ 22 | 23 | ### Continue to [Creating a NAND backup](nand-backup) 24 | {: .notice--primary} 25 | -------------------------------------------------------------------------------- /_pages/nl_NL/site-navigation.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Site Navigation" # 3 | layout: single-no-ads 4 | sitemap: false 5 | --- 6 | 7 | {% capture notice-2 %} 8 | **All** 9 | 10 | + [Coldboot Haxchi](coldboot-haxchi) 11 | + [Credits](credits) 12 | + [disc2app](disc2app) 13 | + [Donations](donations) 14 | + [F3 (Linux)](f3-(linux)) 15 | + [F3X (Mac)](f3x-(mac)) 16 | + [FAQ](faq) 17 | + [Get Started](get-started) 18 | + [H2testw (Windows)](h2testw-(windows)) 19 | + [Home](/) 20 | + [Haxchi](haxchi) 21 | + [Homebrew Launcher (Channel)](homebrew-launcher-(channel)) 22 | + [Homebrew Launcher](homebrew-launcher) 23 | + [Mocha CFW](mocha-cfw) 24 | + [NAND Backup](nand-backup) 25 | + [Uninstall Mocha CFW](uninstall-cfw) 26 | + [vWii Modding](vwii-modding) 27 | {% endcapture %} 28 |
{{ notice-2 | markdownify }}
29 | -------------------------------------------------------------------------------- /_pages/nl_NL/why-ads.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Why Ads?" # 3 | layout: single-no-ads 4 | --- 5 | 6 | This project is the culmination of thousands of hours of constant work. 7 | 8 | I maintain this guide, for free, and ensure it is always up to date. Because of this effort, I feel that it is fair for me to attempt to gain a meager income from my work. 9 | 10 | This site costs you nothing to use, and all that I display are non-intrusive ads. If you still have a problem with this, feel free to block these ads. 11 | 12 | If you do block ads, I would like to also remind you of the [Donations](donations) page, but once again that is optional too. 13 | 14 | Thanks,
15 | Plailect 16 | -------------------------------------------------------------------------------- /_pages/no_NO/404.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Page Not Found" # 3 | layout: single-no-ads 4 | excerpt: "Page not found. Your pixels are in another canvas." # 5 | sitemap: false 6 | --- 7 | 8 | Sorry, but the page you were trying to view does not exist. 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/no_NO/credits.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Credits" 3 | --- 4 | 5 | **Special thanks to all of [the translators](https://crowdin.com/project/wii-u-guide) for being awesome!** 6 | {: .notice--primary} 7 | 8 | If I forgot you here, contact me and I'll add your name. 9 | 10 | {% capture notice-1 %} 11 | 12 | + damysteryman 13 | + derrek 14 | + dimok789 15 | + FIX94 16 | + FlimFlam69 17 | + koolkdev 18 | + plutooo 19 | + smea 20 | + [Truth] 21 | + vgmoose 22 | + Yardape8000 23 | + yellows8 24 | 25 | {% endcapture %} 26 | 27 |
{{ notice-1 | markdownify }}
-------------------------------------------------------------------------------- /_pages/no_NO/donations.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Donations" # 3 | layout: single-no-ads 4 | --- 5 | 6 | [![Paypal]({{ "/images/paypal_white.png" | absolute_url }}){:height="72px" width="256px"}{: style="padding-bottom: .35em"}](https://www.paypal.me/NintendoHomebrew/15){: .align-center} 7 | [https://paypal.me/NintendoHomebrew](https://paypal.me/NintendoHomebrew) 8 | {: .text-center} 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/no_NO/homebrew-launcher.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Homebrew Launcher" 3 | --- 4 | 5 | {% include toc title="Table of Contents" %} 6 | 7 | ### Required Reading 8 | 9 | The Homebrew Launcher is a homebrew application that lists and allows the launching of other homebrew applications from the SD card. 10 | 11 | We launch this using the Wii U's built in browser, so your Wii U will need to be able to access the internet. 12 | 13 | ### Instructions 14 | 15 | 1. Go to `wiiuexploit.xyz` 16 | + You may want to bookmark this address to save time on typing in the future 17 | 1. Select "Run Homebrew Launcher" for the first exploit attempt 18 | + If it freezes, just force the console to power off by holding the power button, then try again 19 | 1. Your console should load the Homebrew Launcher 20 | 21 | ___ 22 | 23 | ### Continue to [Creating a NAND backup](nand-backup) 24 | {: .notice--primary} 25 | -------------------------------------------------------------------------------- /_pages/no_NO/site-navigation.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Site Navigation" # 3 | layout: single-no-ads 4 | sitemap: false 5 | --- 6 | 7 | {% capture notice-2 %} 8 | **All** 9 | 10 | + [Coldboot Haxchi](coldboot-haxchi) 11 | + [Credits](credits) 12 | + [disc2app](disc2app) 13 | + [Donations](donations) 14 | + [F3 (Linux)](f3-(linux)) 15 | + [F3X (Mac)](f3x-(mac)) 16 | + [FAQ](faq) 17 | + [Get Started](get-started) 18 | + [H2testw (Windows)](h2testw-(windows)) 19 | + [Home](/) 20 | + [Haxchi](haxchi) 21 | + [Homebrew Launcher (Channel)](homebrew-launcher-(channel)) 22 | + [Homebrew Launcher](homebrew-launcher) 23 | + [Mocha CFW](mocha-cfw) 24 | + [NAND Backup](nand-backup) 25 | + [Uninstall Mocha CFW](uninstall-cfw) 26 | + [vWii Modding](vwii-modding) 27 | {% endcapture %} 28 |
{{ notice-2 | markdownify }}
29 | -------------------------------------------------------------------------------- /_pages/no_NO/why-ads.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Why Ads?" # 3 | layout: single-no-ads 4 | --- 5 | 6 | This project is the culmination of thousands of hours of constant work. 7 | 8 | I maintain this guide, for free, and ensure it is always up to date. Because of this effort, I feel that it is fair for me to attempt to gain a meager income from my work. 9 | 10 | This site costs you nothing to use, and all that I display are non-intrusive ads. If you still have a problem with this, feel free to block these ads. 11 | 12 | If you do block ads, I would like to also remind you of the [Donations](donations) page, but once again that is optional too. 13 | 14 | Thanks,
15 | Plailect 16 | -------------------------------------------------------------------------------- /_pages/pl_PL/404.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Page Not Found" # 3 | layout: single-no-ads 4 | excerpt: "Page not found. Your pixels are in another canvas." # 5 | sitemap: false 6 | --- 7 | 8 | Sorry, but the page you were trying to view does not exist. 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/pl_PL/credits.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Credits" 3 | --- 4 | 5 | **Special thanks to all of [the translators](https://crowdin.com/project/wii-u-guide) for being awesome!** 6 | {: .notice--primary} 7 | 8 | If I forgot you here, contact me and I'll add your name. 9 | 10 | {% capture notice-1 %} 11 | 12 | + damysteryman 13 | + derrek 14 | + dimok789 15 | + FIX94 16 | + FlimFlam69 17 | + koolkdev 18 | + plutooo 19 | + smea 20 | + [Truth] 21 | + vgmoose 22 | + Yardape8000 23 | + yellows8 24 | 25 | {% endcapture %} 26 | 27 |
{{ notice-1 | markdownify }}
-------------------------------------------------------------------------------- /_pages/pl_PL/donations.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Donations" # 3 | layout: single-no-ads 4 | --- 5 | 6 | [![Paypal]({{ "/images/paypal_white.png" | absolute_url }}){:height="72px" width="256px"}{: style="padding-bottom: .35em"}](https://www.paypal.me/NintendoHomebrew/15){: .align-center} 7 | [https://paypal.me/NintendoHomebrew](https://paypal.me/NintendoHomebrew) 8 | {: .text-center} 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/pl_PL/homebrew-launcher.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Homebrew Launcher" 3 | --- 4 | 5 | {% include toc title="Table of Contents" %} 6 | 7 | ### Required Reading 8 | 9 | The Homebrew Launcher is a homebrew application that lists and allows the launching of other homebrew applications from the SD card. 10 | 11 | We launch this using the Wii U's built in browser, so your Wii U will need to be able to access the internet. 12 | 13 | ### Instructions 14 | 15 | 1. Go to `wiiuexploit.xyz` 16 | + You may want to bookmark this address to save time on typing in the future 17 | 1. Select "Run Homebrew Launcher" for the first exploit attempt 18 | + If it freezes, just force the console to power off by holding the power button, then try again 19 | 1. Your console should load the Homebrew Launcher 20 | 21 | ___ 22 | 23 | ### Continue to [Creating a NAND backup](nand-backup) 24 | {: .notice--primary} 25 | -------------------------------------------------------------------------------- /_pages/pl_PL/site-navigation.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Site Navigation" # 3 | layout: single-no-ads 4 | sitemap: false 5 | --- 6 | 7 | {% capture notice-2 %} 8 | **All** 9 | 10 | + [Coldboot Haxchi](coldboot-haxchi) 11 | + [Credits](credits) 12 | + [disc2app](disc2app) 13 | + [Donations](donations) 14 | + [F3 (Linux)](f3-(linux)) 15 | + [F3X (Mac)](f3x-(mac)) 16 | + [FAQ](faq) 17 | + [Get Started](get-started) 18 | + [H2testw (Windows)](h2testw-(windows)) 19 | + [Home](/) 20 | + [Haxchi](haxchi) 21 | + [Homebrew Launcher (Channel)](homebrew-launcher-(channel)) 22 | + [Homebrew Launcher](homebrew-launcher) 23 | + [Mocha CFW](mocha-cfw) 24 | + [NAND Backup](nand-backup) 25 | + [Uninstall Mocha CFW](uninstall-cfw) 26 | + [vWii Modding](vwii-modding) 27 | {% endcapture %} 28 |
{{ notice-2 | markdownify }}
29 | -------------------------------------------------------------------------------- /_pages/pl_PL/why-ads.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Why Ads?" # 3 | layout: single-no-ads 4 | --- 5 | 6 | This project is the culmination of thousands of hours of constant work. 7 | 8 | I maintain this guide, for free, and ensure it is always up to date. Because of this effort, I feel that it is fair for me to attempt to gain a meager income from my work. 9 | 10 | This site costs you nothing to use, and all that I display are non-intrusive ads. If you still have a problem with this, feel free to block these ads. 11 | 12 | If you do block ads, I would like to also remind you of the [Donations](donations) page, but once again that is optional too. 13 | 14 | Thanks,
15 | Plailect 16 | -------------------------------------------------------------------------------- /_pages/pt_BR/404.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Página não encontrada" # 3 | layout: single-no-ads 4 | excerpt: "Página não encontrada. Seu pixels estão em outra tela." # 5 | sitemap: false 6 | --- 7 | 8 | Desculpe, mas a página que você estava tentando acessar não existe. 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/pt_BR/credits.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Créditos" 3 | --- 4 | 5 | **Special thanks to all of [the translators](https://crowdin.com/project/wii-u-guide) for being awesome!** 6 | {: .notice--primary} 7 | 8 | If I forgot you here, contact me and I'll add your name. 9 | 10 | {% capture notice-1 %} 11 | 12 | + damysteryman 13 | + derrek 14 | + dimok789 15 | + FIX94 16 | + FlimFlam69 17 | + koolkdev 18 | + plutooo 19 | + smea 20 | + [Truth] 21 | + vgmoose 22 | + Yardape8000 23 | + yellows8 24 | 25 | {% endcapture %} 26 | 27 |
{{ notice-1 | markdownify }}
-------------------------------------------------------------------------------- /_pages/pt_BR/donations.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Doações" # 3 | layout: single-no-ads 4 | --- 5 | 6 | [![Paypal]({{ "/images/paypal_white.png" | absolute_url }}){:height="72px" width="256px"}{: style="padding-bottom: .35em"}](https://www.paypal.me/NintendoHomebrew/15){: .align-center} 7 | [https://paypal.me/NintendoHomebrew](https://paypal.me/NintendoHomebrew) 8 | {: .text-center} 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/pt_BR/homebrew-launcher.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Homebrew Launcher" 3 | --- 4 | 5 | {% include toc title="Table of Contents" %} 6 | 7 | ### Required Reading 8 | 9 | O Homebrew Launcher é um aplicativo homebrew que lista e permite a execução de outros aplicativos homebrew do cartão SD. 10 | 11 | Nós o executamos utilizando o navegador de internet do Wii U, então seu Wii U precisará ser capaz de acessar a internet. 12 | 13 | ### Instructions 14 | 15 | 1. Go to `wiiuexploit.xyz` 16 | + Você pode querer adicionar este endereço à lista de favoritos, para poupar tempo na digitação no futuro 17 | 1. Select "Run Homebrew Launcher" for the first exploit attempt 18 | + If it freezes, just force the console to power off by holding the power button, then try again 19 | 1. Seu console deve carregar o Homebrew Launcher 20 | 21 | ___ 22 | 23 | ### Continue to [Creating a NAND backup](nand-backup) 24 | {: .notice--primary} 25 | -------------------------------------------------------------------------------- /_pages/pt_BR/site-navigation.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Navegação do Site" # 3 | layout: single-no-ads 4 | sitemap: false 5 | --- 6 | 7 | {% capture notice-2 %} 8 | **Tudo** 9 | 10 | + [Coldboot Haxchi](coldboot-haxchi) 11 | + [Créditos](credits) 12 | + [disc2app](disc2app) 13 | + [Doações](donations) 14 | + [F3 (Linux)](f3-(linux)) 15 | + [F3X (Mac)](f3x-(mac)) 16 | + [FAQ](faq) 17 | + [Começar](get-started) 18 | + [H2testw (Windows)](h2testw-(windows)) 19 | + [Home](/pt_BR/) 20 | + [Haxchi](haxchi) 21 | + [Homebrew Launcher (Channel)](homebrew-launcher-(channel)) 22 | + [Homebrew Launcher](homebrew-launcher) 23 | + [Mocha CFW](mocha-cfw) 24 | + [NAND Backup](nand-backup) 25 | + [Desinstalar o Mocha CFW](uninstall-cfw) 26 | + [Modding do vWii](vwii-modding) 27 | {% endcapture %} 28 |
{{ notice-2 | markdownify }}
29 | -------------------------------------------------------------------------------- /_pages/pt_BR/why-ads.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Por que anúncios?" # 3 | layout: single-no-ads 4 | --- 5 | 6 | This project is the culmination of thousands of hours of constant work. 7 | 8 | I maintain this guide, for free, and ensure it is always up to date. Because of this effort, I feel that it is fair for me to attempt to gain a meager income from my work. 9 | 10 | This site costs you nothing to use, and all that I display are non-intrusive ads. Se você ainda tem problemas com isso, sinta-se livre para bloquear esses anúncios. 11 | 12 | If you do block ads, I would like to also remind you of the [Donations](donations) page, but once again that is optional too. 13 | 14 | Obrigado,
15 | Plailect 16 | -------------------------------------------------------------------------------- /_pages/pt_PT/404.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Page Not Found" # 3 | layout: single-no-ads 4 | excerpt: "Page not found. Your pixels are in another canvas." # 5 | sitemap: false 6 | --- 7 | 8 | Sorry, but the page you were trying to view does not exist. 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/pt_PT/credits.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Credits" 3 | --- 4 | 5 | **Special thanks to all of [the translators](https://crowdin.com/project/wii-u-guide) for being awesome!** 6 | {: .notice--primary} 7 | 8 | If I forgot you here, contact me and I'll add your name. 9 | 10 | {% capture notice-1 %} 11 | 12 | + damysteryman 13 | + derrek 14 | + dimok789 15 | + FIX94 16 | + FlimFlam69 17 | + koolkdev 18 | + plutooo 19 | + smea 20 | + [Truth] 21 | + vgmoose 22 | + Yardape8000 23 | + yellows8 24 | 25 | {% endcapture %} 26 | 27 |
{{ notice-1 | markdownify }}
-------------------------------------------------------------------------------- /_pages/pt_PT/donations.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Donations" # 3 | layout: single-no-ads 4 | --- 5 | 6 | [![Paypal]({{ "/images/paypal_white.png" | absolute_url }}){:height="72px" width="256px"}{: style="padding-bottom: .35em"}](https://www.paypal.me/NintendoHomebrew/15){: .align-center} 7 | [https://paypal.me/NintendoHomebrew](https://paypal.me/NintendoHomebrew) 8 | {: .text-center} 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/pt_PT/homebrew-launcher.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Homebrew Launcher" 3 | --- 4 | 5 | {% include toc title="Table of Contents" %} 6 | 7 | ### Required Reading 8 | 9 | The Homebrew Launcher is a homebrew application that lists and allows the launching of other homebrew applications from the SD card. 10 | 11 | We launch this using the Wii U's built in browser, so your Wii U will need to be able to access the internet. 12 | 13 | ### Instructions 14 | 15 | 1. Go to `wiiuexploit.xyz` 16 | + You may want to bookmark this address to save time on typing in the future 17 | 1. Select "Run Homebrew Launcher" for the first exploit attempt 18 | + If it freezes, just force the console to power off by holding the power button, then try again 19 | 1. Your console should load the Homebrew Launcher 20 | 21 | ___ 22 | 23 | ### Continue to [Creating a NAND backup](nand-backup) 24 | {: .notice--primary} 25 | -------------------------------------------------------------------------------- /_pages/pt_PT/site-navigation.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Site Navigation" # 3 | layout: single-no-ads 4 | sitemap: false 5 | --- 6 | 7 | {% capture notice-2 %} 8 | **All** 9 | 10 | + [Coldboot Haxchi](coldboot-haxchi) 11 | + [Credits](credits) 12 | + [disc2app](disc2app) 13 | + [Donations](donations) 14 | + [F3 (Linux)](f3-(linux)) 15 | + [F3X (Mac)](f3x-(mac)) 16 | + [FAQ](faq) 17 | + [Get Started](get-started) 18 | + [H2testw (Windows)](h2testw-(windows)) 19 | + [Home](/) 20 | + [Haxchi](haxchi) 21 | + [Homebrew Launcher (Channel)](homebrew-launcher-(channel)) 22 | + [Homebrew Launcher](homebrew-launcher) 23 | + [Mocha CFW](mocha-cfw) 24 | + [NAND Backup](nand-backup) 25 | + [Uninstall Mocha CFW](uninstall-cfw) 26 | + [vWii Modding](vwii-modding) 27 | {% endcapture %} 28 |
{{ notice-2 | markdownify }}
29 | -------------------------------------------------------------------------------- /_pages/pt_PT/why-ads.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Why Ads?" # 3 | layout: single-no-ads 4 | --- 5 | 6 | This project is the culmination of thousands of hours of constant work. 7 | 8 | I maintain this guide, for free, and ensure it is always up to date. Because of this effort, I feel that it is fair for me to attempt to gain a meager income from my work. 9 | 10 | This site costs you nothing to use, and all that I display are non-intrusive ads. If you still have a problem with this, feel free to block these ads. 11 | 12 | If you do block ads, I would like to also remind you of the [Donations](donations) page, but once again that is optional too. 13 | 14 | Thanks,
15 | Plailect 16 | -------------------------------------------------------------------------------- /_pages/ro_RO/404.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Pagina nu a fost găsită" # 3 | layout: single-no-ads 4 | excerpt: "Pagina nu a fost găsita. Pixeli voștri sunt într-o altă pânză." # 5 | sitemap: false 6 | --- 7 | 8 | Scuze, dar pagina pe care încercați să o accesați nu există. 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/ro_RO/credits.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Contribuții" 3 | --- 4 | 5 | **Mulțumiri speciale tuturor [traducătorilor](https://crowdin.com/project/wii-u-guide) pentru că sunt minunați!** 6 | {: .notice--primary} 7 | 8 | Dacă te-am uitat, contactează-mă și îți voi adaugă numele. 9 | 10 | {% capture notice-1 %} 11 | 12 | + damysteryman 13 | + derrek 14 | + dimok789 15 | + FIX94 16 | + FlimFlam69 17 | + koolkdev 18 | + plutooo 19 | + smea 20 | + [Truth] 21 | + vgmoose 22 | + Yardape8000 23 | + yellows8 24 | 25 | {% endcapture %} 26 | 27 |
{{ notice-1 | markdownify }}
-------------------------------------------------------------------------------- /_pages/ro_RO/donations.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Donaţii" 3 | layout: single-no-ads 4 | --- 5 | 6 | [![Paypal]({{ "/images/paypal_white.png" | absolute_url }}){:height="72px" width="256px"}{: style="padding-bottom: .35em"}](https://www.paypal.me/NintendoHomebrew/15){: .align-center} 7 | [https://paypal.me/NintendoHomebrew](https://paypal.me/NintendoHomebrew) 8 | {: .text-center} 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/ro_RO/homebrew-launcher.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Homebrew Launcher" 3 | --- 4 | 5 | {% include toc title="Cuprins" %} 6 | 7 | ### Lectură obligatorie 8 | 9 | Homebrew Launcher este o aplicație homebrew care afișează o listă și permite pornirea altor aplicații homebrew de pe cardul SD. 10 | 11 | Pentru a-l porni vom folosi browserul de internet incorporat în Wii U, așa că Wii U-ul va avea nevoie de acces la Internet. 12 | 13 | ### Instrucțiuni 14 | 15 | 1. Mergeți la `wiiuexploit.xyz` 16 | + Ar fi mai convenavil să adăugați această adreasă la favoriți și să economisiți timpul de a-l mai scrie pe viitor 17 | 1. Selectați "Run Homebrew Launcher" pentru prina încercare de pornire de exploit 18 | + Dacă se blochează, închideți consola forțat ținând apăsat butonul POWER și încercați din nou 19 | 1. Consola dumneavoastră ar trebui să încarce meniul homebrew 20 | 21 | ___ 22 | 23 | ### Continuați la [Creând o copie de rezervă NAND](nand-backup) 24 | {: .notice--primary} 25 | -------------------------------------------------------------------------------- /_pages/ro_RO/site-navigation.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Navigarea pe site" # 3 | layout: single-no-ads 4 | sitemap: false 5 | --- 6 | 7 | {% capture notice-2 %} 8 | **Toate** 9 | 10 | + [Coldboot Haxchi](coldboot-haxchi) 11 | + [Contribuții](credits) 12 | + [disc2app](disc2app) 13 | + [Donaţii](donations) 14 | + [F3 (Linux)](f3-(linux)) 15 | + [F3X (Mac)](f3x-(mac)) 16 | + [Întrebări frecvente](faq) 17 | + [Începeți](get-started) 18 | + [H2testw (Windows)](h2testw-(windows)) 19 | + [Acasă](/) 20 | + [Haxchi](haxchi) 21 | + [Homebrew Launcher (Canal)](homebrew-launcher-(soundhax)) 22 | + [Homebrew Launcher](homebrew-launcher) 23 | + [Mocha CFW](mocha-cfw) 24 | + [Copie de reezervă NAND](nand-backup) 25 | + [Dezinstalând Mocha CFW](uninstall-cfw) 26 | + [Modare vWii](vwii-modding) 27 | {% endcapture %} 28 |
{{ notice-2 | markdownify }}
29 | -------------------------------------------------------------------------------- /_pages/ro_RO/why-ads.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "De ce sunt reclame?" # 3 | layout: single-no-ads 4 | --- 5 | 6 | Acest proiect este rezultatul a miilor de ore de muncă constantă. 7 | 8 | Mențin acest ghid, gratis, și mă asigur că e mereu de actualitate. Din cauza acestui efort, eu simt că este drept pentru mine să încerc să câștig un venit din munca mea. 9 | 10 | Acest site nu vă costă nimic să-l folosiți, și tot ce afișez sunt reclame non-intruzive. Dacă încă mai aveți o problemă cu acestea, nu ezitați să blocați aceste reclame. 11 | 12 | Dacă blocați anunturile, aș dori să vă reamintesc de pagina de [Donații](donations), dar încă o data acest lucru este opțional de asemenea. 13 | 14 | Mulţumim
15 | Plailect 16 | -------------------------------------------------------------------------------- /_pages/ru_RU/404.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Страница не найдена" # 3 | layout: single-no-ads 4 | excerpt: "Страница не найдена. Your pixels are in another canvas." # 5 | sitemap: false 6 | --- 7 | 8 | Извините, но страница, которую вы ищете, не существует. 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/ru_RU/credits.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Благодарности" 3 | --- 4 | 5 | **Отдельное спасибо всем [переводчикам](https://crowdin.com/project/wii-u-guide) за их работу!** 6 | {: .notice--primary} 7 | 8 | Если я кого-то забыл, свяжитесь со мной, и я добавлю ваше имя. 9 | 10 | {% capture notice-1 %} 11 | 12 | + damysteryman 13 | + derrek 14 | + dimok789 15 | + FIX94 16 | + FlimFlam69 17 | + koolkdev 18 | + plutooo 19 | + smea 20 | + [Truth] 21 | + vgmoose 22 | + Yardape8000 23 | + yellows8 24 | 25 | {% endcapture %} 26 | 27 |
{{ notice-1 | markdownify }}
-------------------------------------------------------------------------------- /_pages/ru_RU/donations.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Пожертвования" # 3 | layout: single-no-ads 4 | --- 5 | 6 | [![Paypal]({{ "/images/paypal_white.png" | absolute_url }}){:height="72px" width="256px"}{: style="padding-bottom: .35em"}](https://www.paypal.me/NintendoHomebrew/15){: .align-center} 7 | [https://paypal.me/NintendoHomebrew](https://paypal.me/NintendoHomebrew) 8 | {: .text-center} 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/ru_RU/homebrew-launcher.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Homebrew Launcher" 3 | --- 4 | 5 | {% include toc title="Содержание" %} 6 | 7 | ### Обязательно к прочтению 8 | 9 | Homebrew Launcher - приложение, выводящее в виде списка и позволяющее запускать другие хоумбрю приложения прямо с SD-карты. 10 | 11 | Поскольку мы запускаем его из встроенного браузера Wii U, нам понадобится доступ в интернет на консоли. 12 | 13 | ### Инструкция 14 | 15 | 1. Перейдите на сайт `wiiuexploit.xyz` 16 | + Можете добавить этот сайт в закладки, чтобы не вводить адрес каждый раз заново 17 | 1. Выберите "Run Homebrew Launcher" для первой попытки запуска эксплойта 18 | + При зависании принудительно выключите консоль, зажав кнопку питания, и попробуйте снова 19 | 1. Консоль должна загрузиться в Homebrew Launcher 20 | 21 | ___ 22 | 23 | ### Следующий шаг: [Резервная копия NAND](nand-backup) 24 | {: .notice--primary} 25 | -------------------------------------------------------------------------------- /_pages/ru_RU/site-navigation.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Навигация по сайту" # 3 | layout: single-no-ads 4 | sitemap: false 5 | --- 6 | 7 | {% capture notice-2 %} 8 | **Все** 9 | 10 | + [Coldboot Haxchi](coldboot-haxchi) 11 | + [Благодарности](credits) 12 | + [disc2app](disc2app) 13 | + [Пожертвования](donations) 14 | + [F3 (Linux)](f3-(linux)) 15 | + [F3X (Mac)](f3x-(mac)) 16 | + [Вопросы и ответы](faq) 17 | + [Начало](get-started) 18 | + [H2testw (Windows)](h2testw-(windows)) 19 | + [Главная](/) 20 | + [Haxchi](haxchi) 21 | + [Homebrew Launcher (Channel)](homebrew-launcher-(channel)) 22 | + [Homebrew Launcher](homebrew-launcher) 23 | + [Mocha CFW](mocha-cfw) 24 | + [Резервная копия NAND](nand-backup) 25 | + [Удаление кастомной прошивки](uninstall-cfw) 26 | + [Модификация vWii](vwii-modding) 27 | {% endcapture %} 28 |
{{ notice-2 | markdownify }}
29 | -------------------------------------------------------------------------------- /_pages/ru_RU/why-ads.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Зачем реклама?" # 3 | layout: single-no-ads 4 | --- 5 | 6 | Этот проект - результат тысяч часов непрерывной работы. 7 | 8 | Я бесплатно поддерживаю это руководство в актуальном состоянии. Из-за этого я считаю, что это справедливо пытаться получить скудный доход от моей работы. 9 | 10 | Использование этого сайта бесплатно для вас, и вся реклама на сайте не мешает его использовать. Если она вам мешает, можете смело её блокировать. 11 | 12 | Если вы блокируете рекламу, то не забывайте про пожертвования на этой странице: [Donations](donations); впрочем, и это необязательно. 13 | 14 | С уважением,
15 | Plailect 16 | -------------------------------------------------------------------------------- /_pages/sr_SP/404.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Page Not Found" # 3 | layout: single-no-ads 4 | excerpt: "Page not found. Your pixels are in another canvas." # 5 | sitemap: false 6 | --- 7 | 8 | Sorry, but the page you were trying to view does not exist. 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/sr_SP/credits.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Credits" 3 | --- 4 | 5 | **Special thanks to all of [the translators](https://crowdin.com/project/wii-u-guide) for being awesome!** 6 | {: .notice--primary} 7 | 8 | If I forgot you here, contact me and I'll add your name. 9 | 10 | {% capture notice-1 %} 11 | 12 | + damysteryman 13 | + derrek 14 | + dimok789 15 | + FIX94 16 | + FlimFlam69 17 | + koolkdev 18 | + plutooo 19 | + smea 20 | + [Truth] 21 | + vgmoose 22 | + Yardape8000 23 | + yellows8 24 | 25 | {% endcapture %} 26 | 27 |
{{ notice-1 | markdownify }}
-------------------------------------------------------------------------------- /_pages/sr_SP/donations.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Donations" # 3 | layout: single-no-ads 4 | --- 5 | 6 | [![Paypal]({{ "/images/paypal_white.png" | absolute_url }}){:height="72px" width="256px"}{: style="padding-bottom: .35em"}](https://www.paypal.me/NintendoHomebrew/15){: .align-center} 7 | [https://paypal.me/NintendoHomebrew](https://paypal.me/NintendoHomebrew) 8 | {: .text-center} 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/sr_SP/homebrew-launcher.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Homebrew Launcher" 3 | --- 4 | 5 | {% include toc title="Table of Contents" %} 6 | 7 | ### Required Reading 8 | 9 | The Homebrew Launcher is a homebrew application that lists and allows the launching of other homebrew applications from the SD card. 10 | 11 | We launch this using the Wii U's built in browser, so your Wii U will need to be able to access the internet. 12 | 13 | ### Instructions 14 | 15 | 1. Go to `wiiuexploit.xyz` 16 | + You may want to bookmark this address to save time on typing in the future 17 | 1. Select "Run Homebrew Launcher" for the first exploit attempt 18 | + If it freezes, just force the console to power off by holding the power button, then try again 19 | 1. Your console should load the Homebrew Launcher 20 | 21 | ___ 22 | 23 | ### Continue to [Creating a NAND backup](nand-backup) 24 | {: .notice--primary} 25 | -------------------------------------------------------------------------------- /_pages/sr_SP/site-navigation.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Site Navigation" # 3 | layout: single-no-ads 4 | sitemap: false 5 | --- 6 | 7 | {% capture notice-2 %} 8 | **All** 9 | 10 | + [Coldboot Haxchi](coldboot-haxchi) 11 | + [Credits](credits) 12 | + [disc2app](disc2app) 13 | + [Donations](donations) 14 | + [F3 (Linux)](f3-(linux)) 15 | + [F3X (Mac)](f3x-(mac)) 16 | + [FAQ](faq) 17 | + [Get Started](get-started) 18 | + [H2testw (Windows)](h2testw-(windows)) 19 | + [Home](/) 20 | + [Haxchi](haxchi) 21 | + [Homebrew Launcher (Channel)](homebrew-launcher-(channel)) 22 | + [Homebrew Launcher](homebrew-launcher) 23 | + [Mocha CFW](mocha-cfw) 24 | + [NAND Backup](nand-backup) 25 | + [Uninstall Mocha CFW](uninstall-cfw) 26 | + [vWii Modding](vwii-modding) 27 | {% endcapture %} 28 |
{{ notice-2 | markdownify }}
29 | -------------------------------------------------------------------------------- /_pages/sr_SP/why-ads.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Why Ads?" # 3 | layout: single-no-ads 4 | --- 5 | 6 | This project is the culmination of thousands of hours of constant work. 7 | 8 | I maintain this guide, for free, and ensure it is always up to date. Because of this effort, I feel that it is fair for me to attempt to gain a meager income from my work. 9 | 10 | This site costs you nothing to use, and all that I display are non-intrusive ads. If you still have a problem with this, feel free to block these ads. 11 | 12 | If you do block ads, I would like to also remind you of the [Donations](donations) page, but once again that is optional too. 13 | 14 | Thanks,
15 | Plailect 16 | -------------------------------------------------------------------------------- /_pages/sv_SE/404.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Sidan hittades inte" # 3 | layout: single-no-ads 4 | excerpt: "Sidan hittades inte. Dina pixlar finns på en annan monitor." # 5 | sitemap: false 6 | --- 7 | 8 | Tyvärr, men sidan du försökte visa finns inte. 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/sv_SE/credits.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Tack till" 3 | --- 4 | 5 | **Speciellt tack till alla [översättare](https://crowdin.com/project/wii-u-guide) för att ni är supergrymma!** 6 | {: .notice--primary} 7 | 8 | Om jag glömt dig i listan, kontakta mig så lägger jag till ditt namn. 9 | 10 | {% capture notice-1 %} 11 | 12 | + damysteryman 13 | + derrek 14 | + dimok789 15 | + FIX94 16 | + FlimFlam69 17 | + koolkdev 18 | + plutooo 19 | + smea 20 | + [Truth] 21 | + vgmoose 22 | + Yardape8000 23 | + yellows8 24 | 25 | {% endcapture %} 26 | 27 |
{{ notice-1 | markdownify }}
-------------------------------------------------------------------------------- /_pages/sv_SE/donations.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Bidrag" # 3 | layout: single-no-ads 4 | --- 5 | 6 | [![Paypal]({{ "/images/paypal_white.png" | absolute_url }}){:height="72px" width="256px"}{: style="padding-bottom: .35em"}](https://www.paypal.me/NintendoHomebrew/15){: .align-center} 7 | [https://paypal.me/NintendoHomebrew](https://paypal.me/NintendoHomebrew) 8 | {: .text-center} 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/sv_SE/homebrew-launcher.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Homebrew Launcher" 3 | --- 4 | 5 | {% include toc title="Innehåll" %} 6 | 7 | ### Obligatorisk läsning 8 | 9 | Homebrew Launcher är en homebrew-applikation som listar och möjliggör att starta andra homebrew-applikationer lagrade på SD-kortet. 10 | 11 | Vi startar den genom Wii U:s inbyggda webbläsare, så ditt Wii U kommer behöva tillgång till internet. 12 | 13 | ### Instruktioner 14 | 15 | 1. Gå till `wiiuexploit.xyz` 16 | + Du vill förmodligen göra ett bokmärke för att slippa skriva in adressen när du behöver den igen 17 | 1. Välj "Run Homebrew Launcher" första gången du försöker nyttja säkerhetshålet 18 | + Om det fryser, tvinga konsolen att stänga av sig genom att hålla inne strömknappen och försök sen igen 19 | 1. Din konsol ska nu ha laddat Homebrew Launcher 20 | 21 | ___ 22 | 23 | ### Continue to [Creating a NAND backup](nand-backup) 24 | {: .notice--primary} 25 | -------------------------------------------------------------------------------- /_pages/sv_SE/site-navigation.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Navigering på webbplatsen" # 3 | layout: single-no-ads 4 | sitemap: false 5 | --- 6 | 7 | {% capture notice-2 %} 8 | **Allt** 9 | 10 | + [Coldboot Haxchi](coldboot-haxchi) 11 | + [Tack till](credits) 12 | + [disc2app](disc2app) 13 | + [Bidrag](donations) 14 | + [F3 (Linux)](f3-(linux)) 15 | + [F3X (Mac)](f3x-(mac)) 16 | + [Vanliga Frågor](faq) 17 | + [Kom igång](get-started) 18 | + [H2testw (Windows)](h2testw-(windows)) 19 | + [Hem](/) 20 | + [Haxchi](haxchi) 21 | + [Homebrew Launcher (Channel)](homebrew-launcher-(channel)) 22 | + [Homebrew Launcher](homebrew-launcher) 23 | + [Mocha CFW](mocha-cfw) 24 | + [NAND Backup](nand-backup) 25 | + [Avinstallera Mocha CFW](uninstall-cfw) 26 | + [vWii Modding](vwii-modding) 27 | {% endcapture %} 28 |
{{ notice-2 | markdownify }}
29 | -------------------------------------------------------------------------------- /_pages/sv_SE/why-ads.txt: -------------------------------------------------------------------------------- 1 | --- 2 | titel: "Varför reklam?" # 3 | layout: single-no-ads 4 | --- 5 | 6 | Detta projekt är kulmen av tusentals timmar av konstant arbete. 7 | 8 | Jag underhåller denna guide, gratis, och ser till att den alltid är uppdaterad. På grund av detta slit känner jag att det är rättvist för mig att försöka få en liten inkomst från mitt arbete. 9 | 10 | Denna webbplats kostar ingenting att använda, och alla annonser jag visar är icke-påträngande. Om du fortfarande har problem med detta, tveka inte att blockera dessa annonser. 11 | 12 | Om du blockerar annonser, vill jag bara påminna om sidan för [Bidrag](donations), men återigen är det valfritt att bidra. 13 | 14 | Tack,
15 | Plailect 16 | -------------------------------------------------------------------------------- /_pages/th_TH/404.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Page Not Found" # 3 | layout: single-no-ads 4 | excerpt: "Page not found. Your pixels are in another canvas." # 5 | sitemap: false 6 | --- 7 | 8 | Sorry, but the page you were trying to view does not exist. 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/th_TH/credits.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Credits" 3 | --- 4 | 5 | **Special thanks to all of [the translators](https://crowdin.com/project/wii-u-guide) for being awesome!** 6 | {: .notice--primary} 7 | 8 | If I forgot you here, contact me and I'll add your name. 9 | 10 | {% capture notice-1 %} 11 | 12 | + damysteryman 13 | + derrek 14 | + dimok789 15 | + FIX94 16 | + FlimFlam69 17 | + koolkdev 18 | + plutooo 19 | + smea 20 | + [Truth] 21 | + vgmoose 22 | + Yardape8000 23 | + yellows8 24 | 25 | {% endcapture %} 26 | 27 |
{{ notice-1 | markdownify }}
-------------------------------------------------------------------------------- /_pages/th_TH/donations.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Donations" # 3 | layout: single-no-ads 4 | --- 5 | 6 | [![Paypal]({{ "/images/paypal_white.png" | absolute_url }}){:height="72px" width="256px"}{: style="padding-bottom: .35em"}](https://www.paypal.me/NintendoHomebrew/15){: .align-center} 7 | [https://paypal.me/NintendoHomebrew](https://paypal.me/NintendoHomebrew) 8 | {: .text-center} 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/th_TH/homebrew-launcher.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Homebrew Launcher" 3 | --- 4 | 5 | {% include toc title="Table of Contents" %} 6 | 7 | ### Required Reading 8 | 9 | The Homebrew Launcher is a homebrew application that lists and allows the launching of other homebrew applications from the SD card. 10 | 11 | We launch this using the Wii U's built in browser, so your Wii U will need to be able to access the internet. 12 | 13 | ### Instructions 14 | 15 | 1. Go to `wiiuexploit.xyz` 16 | + You may want to bookmark this address to save time on typing in the future 17 | 1. Select "Run Homebrew Launcher" for the first exploit attempt 18 | + If it freezes, just force the console to power off by holding the power button, then try again 19 | 1. Your console should load the Homebrew Launcher 20 | 21 | ___ 22 | 23 | ### Continue to [Creating a NAND backup](nand-backup) 24 | {: .notice--primary} 25 | -------------------------------------------------------------------------------- /_pages/th_TH/site-navigation.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Site Navigation" # 3 | layout: single-no-ads 4 | sitemap: false 5 | --- 6 | 7 | {% capture notice-2 %} 8 | **All** 9 | 10 | + [Coldboot Haxchi](coldboot-haxchi) 11 | + [Credits](credits) 12 | + [disc2app](disc2app) 13 | + [Donations](donations) 14 | + [F3 (Linux)](f3-(linux)) 15 | + [F3X (Mac)](f3x-(mac)) 16 | + [FAQ](faq) 17 | + [Get Started](get-started) 18 | + [H2testw (Windows)](h2testw-(windows)) 19 | + [Home](/) 20 | + [Haxchi](haxchi) 21 | + [Homebrew Launcher (Channel)](homebrew-launcher-(channel)) 22 | + [Homebrew Launcher](homebrew-launcher) 23 | + [Mocha CFW](mocha-cfw) 24 | + [NAND Backup](nand-backup) 25 | + [Uninstall Mocha CFW](uninstall-cfw) 26 | + [vWii Modding](vwii-modding) 27 | {% endcapture %} 28 |
{{ notice-2 | markdownify }}
29 | -------------------------------------------------------------------------------- /_pages/th_TH/why-ads.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Why Ads?" # 3 | layout: single-no-ads 4 | --- 5 | 6 | This project is the culmination of thousands of hours of constant work. 7 | 8 | I maintain this guide, for free, and ensure it is always up to date. Because of this effort, I feel that it is fair for me to attempt to gain a meager income from my work. 9 | 10 | This site costs you nothing to use, and all that I display are non-intrusive ads. If you still have a problem with this, feel free to block these ads. 11 | 12 | If you do block ads, I would like to also remind you of the [Donations](donations) page, but once again that is optional too. 13 | 14 | Thanks,
15 | Plailect 16 | -------------------------------------------------------------------------------- /_pages/tr_TR/404.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Page Not Found" # 3 | layout: single-no-ads 4 | excerpt: "Page not found. Your pixels are in another canvas." # 5 | sitemap: false 6 | --- 7 | 8 | Sorry, but the page you were trying to view does not exist. 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/tr_TR/credits.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Credits" 3 | --- 4 | 5 | **Special thanks to all of [the translators](https://crowdin.com/project/wii-u-guide) for being awesome!** 6 | {: .notice--primary} 7 | 8 | If I forgot you here, contact me and I'll add your name. 9 | 10 | {% capture notice-1 %} 11 | 12 | + damysteryman 13 | + derrek 14 | + dimok789 15 | + FIX94 16 | + FlimFlam69 17 | + koolkdev 18 | + plutooo 19 | + smea 20 | + [Truth] 21 | + vgmoose 22 | + Yardape8000 23 | + yellows8 24 | 25 | {% endcapture %} 26 | 27 |
{{ notice-1 | markdownify }}
-------------------------------------------------------------------------------- /_pages/tr_TR/donations.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Donations" # 3 | layout: single-no-ads 4 | --- 5 | 6 | [![Paypal]({{ "/images/paypal_white.png" | absolute_url }}){:height="72px" width="256px"}{: style="padding-bottom: .35em"}](https://www.paypal.me/NintendoHomebrew/15){: .align-center} 7 | [https://paypal.me/NintendoHomebrew](https://paypal.me/NintendoHomebrew) 8 | {: .text-center} 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/tr_TR/homebrew-launcher.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Homebrew Launcher" 3 | --- 4 | 5 | {% include toc title="Table of Contents" %} 6 | 7 | ### Required Reading 8 | 9 | The Homebrew Launcher is a homebrew application that lists and allows the launching of other homebrew applications from the SD card. 10 | 11 | We launch this using the Wii U's built in browser, so your Wii U will need to be able to access the internet. 12 | 13 | ### Instructions 14 | 15 | 1. Go to `wiiuexploit.xyz` 16 | + You may want to bookmark this address to save time on typing in the future 17 | 1. Select "Run Homebrew Launcher" for the first exploit attempt 18 | + If it freezes, just force the console to power off by holding the power button, then try again 19 | 1. Your console should load the Homebrew Launcher 20 | 21 | ___ 22 | 23 | ### Continue to [Creating a NAND backup](nand-backup) 24 | {: .notice--primary} 25 | -------------------------------------------------------------------------------- /_pages/tr_TR/site-navigation.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Site Navigation" # 3 | layout: single-no-ads 4 | sitemap: false 5 | --- 6 | 7 | {% capture notice-2 %} 8 | **All** 9 | 10 | + [Coldboot Haxchi](coldboot-haxchi) 11 | + [Credits](credits) 12 | + [disc2app](disc2app) 13 | + [Donations](donations) 14 | + [F3 (Linux)](f3-(linux)) 15 | + [F3X (Mac)](f3x-(mac)) 16 | + [FAQ](faq) 17 | + [Get Started](get-started) 18 | + [H2testw (Windows)](h2testw-(windows)) 19 | + [Home](/) 20 | + [Haxchi](haxchi) 21 | + [Homebrew Launcher (Channel)](homebrew-launcher-(channel)) 22 | + [Homebrew Launcher](homebrew-launcher) 23 | + [Mocha CFW](mocha-cfw) 24 | + [NAND Backup](nand-backup) 25 | + [Uninstall Mocha CFW](uninstall-cfw) 26 | + [vWii Modding](vwii-modding) 27 | {% endcapture %} 28 |
{{ notice-2 | markdownify }}
29 | -------------------------------------------------------------------------------- /_pages/tr_TR/why-ads.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Why Ads?" # 3 | layout: single-no-ads 4 | --- 5 | 6 | This project is the culmination of thousands of hours of constant work. 7 | 8 | I maintain this guide, for free, and ensure it is always up to date. Because of this effort, I feel that it is fair for me to attempt to gain a meager income from my work. 9 | 10 | This site costs you nothing to use, and all that I display are non-intrusive ads. If you still have a problem with this, feel free to block these ads. 11 | 12 | If you do block ads, I would like to also remind you of the [Donations](donations) page, but once again that is optional too. 13 | 14 | Thanks,
15 | Plailect 16 | -------------------------------------------------------------------------------- /_pages/uk_UA/404.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Page Not Found" # 3 | layout: single-no-ads 4 | excerpt: "Page not found. Your pixels are in another canvas." # 5 | sitemap: false 6 | --- 7 | 8 | Sorry, but the page you were trying to view does not exist. 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/uk_UA/credits.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Credits" 3 | --- 4 | 5 | **Special thanks to all of [the translators](https://crowdin.com/project/wii-u-guide) for being awesome!** 6 | {: .notice--primary} 7 | 8 | If I forgot you here, contact me and I'll add your name. 9 | 10 | {% capture notice-1 %} 11 | 12 | + damysteryman 13 | + derrek 14 | + dimok789 15 | + FIX94 16 | + FlimFlam69 17 | + koolkdev 18 | + plutooo 19 | + smea 20 | + [Truth] 21 | + vgmoose 22 | + Yardape8000 23 | + yellows8 24 | 25 | {% endcapture %} 26 | 27 |
{{ notice-1 | markdownify }}
-------------------------------------------------------------------------------- /_pages/uk_UA/donations.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Donations" # 3 | layout: single-no-ads 4 | --- 5 | 6 | [![Paypal]({{ "/images/paypal_white.png" | absolute_url }}){:height="72px" width="256px"}{: style="padding-bottom: .35em"}](https://www.paypal.me/NintendoHomebrew/15){: .align-center} 7 | [https://paypal.me/NintendoHomebrew](https://paypal.me/NintendoHomebrew) 8 | {: .text-center} 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/uk_UA/homebrew-launcher.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Homebrew Launcher" 3 | --- 4 | 5 | {% include toc title="Table of Contents" %} 6 | 7 | ### Required Reading 8 | 9 | The Homebrew Launcher is a homebrew application that lists and allows the launching of other homebrew applications from the SD card. 10 | 11 | We launch this using the Wii U's built in browser, so your Wii U will need to be able to access the internet. 12 | 13 | ### Instructions 14 | 15 | 1. Go to `wiiuexploit.xyz` 16 | + You may want to bookmark this address to save time on typing in the future 17 | 1. Select "Run Homebrew Launcher" for the first exploit attempt 18 | + If it freezes, just force the console to power off by holding the power button, then try again 19 | 1. Your console should load the Homebrew Launcher 20 | 21 | ___ 22 | 23 | ### Continue to [Creating a NAND backup](nand-backup) 24 | {: .notice--primary} 25 | -------------------------------------------------------------------------------- /_pages/uk_UA/site-navigation.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Site Navigation" # 3 | layout: single-no-ads 4 | sitemap: false 5 | --- 6 | 7 | {% capture notice-2 %} 8 | **All** 9 | 10 | + [Coldboot Haxchi](coldboot-haxchi) 11 | + [Credits](credits) 12 | + [disc2app](disc2app) 13 | + [Donations](donations) 14 | + [F3 (Linux)](f3-(linux)) 15 | + [F3X (Mac)](f3x-(mac)) 16 | + [FAQ](faq) 17 | + [Get Started](get-started) 18 | + [H2testw (Windows)](h2testw-(windows)) 19 | + [Home](/) 20 | + [Haxchi](haxchi) 21 | + [Homebrew Launcher (Channel)](homebrew-launcher-(channel)) 22 | + [Homebrew Launcher](homebrew-launcher) 23 | + [Mocha CFW](mocha-cfw) 24 | + [NAND Backup](nand-backup) 25 | + [Uninstall Mocha CFW](uninstall-cfw) 26 | + [vWii Modding](vwii-modding) 27 | {% endcapture %} 28 |
{{ notice-2 | markdownify }}
29 | -------------------------------------------------------------------------------- /_pages/uk_UA/why-ads.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Why Ads?" # 3 | layout: single-no-ads 4 | --- 5 | 6 | This project is the culmination of thousands of hours of constant work. 7 | 8 | I maintain this guide, for free, and ensure it is always up to date. Because of this effort, I feel that it is fair for me to attempt to gain a meager income from my work. 9 | 10 | This site costs you nothing to use, and all that I display are non-intrusive ads. If you still have a problem with this, feel free to block these ads. 11 | 12 | If you do block ads, I would like to also remind you of the [Donations](donations) page, but once again that is optional too. 13 | 14 | Thanks,
15 | Plailect 16 | -------------------------------------------------------------------------------- /_pages/vi_VN/404.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Không tìm thấy trang" # 3 | layout: single-no-ads 4 | excerpt: "Không tìm thấy trang. Điểm ảnh của bạn đang nằm ở bức tranh khác."# 5 | sitemap: false 6 | --- 7 | 8 | Xin lỗi, trang bạn muốn xem không tồn tại. 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/vi_VN/credits.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Những người đã đóng góp" 3 | --- 4 | 5 | **Chân thành cảm ơn các [Dịch giả](https://crowdin.com/project/wii-u-guide) vì đã giúp đỡ rất nhiều!** 6 | {: .notice--primary} 7 | 8 | Nếu thiếu tên ai, vui lòng liên hệ tôi và tôi sẽ thêm tên bạn vào. 9 | 10 | {% capture notice-1 %} 11 | 12 | + damysteryman 13 | + derrek 14 | + dimok789 15 | + FIX94 16 | + FlimFlam69 17 | + koolkdev 18 | + plutooo 19 | + smea 20 | + [Truth] 21 | + vgmoose 22 | + Yardape8000 23 | + yellows8 24 | 25 | {% endcapture %} 26 | 27 |
{{ notice-1 | markdownify }}
-------------------------------------------------------------------------------- /_pages/vi_VN/donations.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Ủng hộ" # 3 | layout: single-no-ads 4 | --- 5 | 6 | [![Paypal]({{ "/images/paypal_white.png" | absolute_url }}){:height="72px" width="256px"}{: style="padding-bottom: .35em"}](https://www.paypal.me/NintendoHomebrew/15){: .align-center} 7 | [https://paypal.me/NintendoHomebrew](https://paypal.me/NintendoHomebrew) 8 | {: .text-center} 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/vi_VN/homebrew-launcher.txt: -------------------------------------------------------------------------------- 1 | --- 2 | Tựa: "Homebrew Launcher" 3 | --- 4 | 5 | {% include toc title="Table of Contents" %} 6 | 7 | ### Điều cần đọc 8 | 9 | Homebrew Launcher là một ứng dụng homebrew liệt kê và chạy được các ứng dụng homebrew khác có trên thẻ SD. 10 | 11 | Khi hack lần đầu, ứng dụng này sẽ chạy trên trình duyệt web có sẵn của Wii U, nên máy bạn phải đang kết nối với internet. 12 | 13 | ### Hướng dẫn 14 | 15 | 1. Vào trang `wiiuexploit.xyz` 16 | + Có thể bookmark lại địa chỉ trên để lần sau không phải gõ lại 17 | 1. Chọn "Run Homebrew Launcher" để cài exploit 18 | + Nếu máy treo, tắt máy bằng cách giữ nút nguồn, rồi thử lại 19 | 1. Lúc này máy sẽ hiện giao diện của Homebrew Launcher 20 | 21 | ___ 22 | 23 | ### Continue to [Creating a NAND backup](nand-backup) 24 | {: .notice--primary} 25 | -------------------------------------------------------------------------------- /_pages/vi_VN/mocha-cfw.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Mocha CFW" 3 | --- 4 | 5 | {% include toc title="Mục lục" %} 6 | 7 | ### Điều cần đọc 8 | 9 | Mocha CFW là bản CFW đánh lừa được kiểm tra chữ ký ứng dụng, kiểm tra phân vùng, có thể chạy nền code tùy biến. 10 | 11 | Để dùng hack này, bạn phải vào Homebrew Launcher và chạy Mocha CFW mỗi khi khởi động lại máy. 12 | 13 | ### Cần chuẩn bị gì 14 | 15 | + File 'config.ini' được cung cấp trong [Get Started](get-started) phải bỏ vào thư mục `/wiiu/apps/mocha/` trên thẻ SD 16 | 17 | ### Hướng dẫn 18 | 19 | 1. Chạy Mocha CFW 20 | 1. Máy sẽ quay lại giao diện Homebrew Launcher và dùng được các tính năng của CFW 21 | + Cho phép chạy trực tiếp các ứng dụng không phép (ví dụ như Homebrew Launcher) từ giao diện hệ thống, miễn là không tắt máy 22 | 23 | ___ 24 | 25 | Bạn sẽ cần phải chạy Mocha CFW từ Homebrew Launcher mỗi lần khởi động lại máy. 26 | {: .notice--info} 27 | 28 | ### Tiếp tục đến [Homebrew Launcher (Channel)](homebrew-launcher-(channel)). 29 | {: .notice--primary} 30 | -------------------------------------------------------------------------------- /_pages/vi_VN/site-navigation.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Chỉ Mục Trang Web" # 3 | layout: single-no-ads 4 | sitemap: false 5 | --- 6 | 7 | {% capture notice-2 %} 8 | **Tất cả** 9 | 10 | + [Coldboot Haxchi](coldboot-haxchi) 11 | + [Đóng góp](credits) 12 | + [disc2app](disc2app) 13 | + [Ủng hộ](donations) 14 | + [F3 (Linux)](f3-(linux)) 15 | + [F3X (Mac)](f3x-(mac)) 16 | + [Câu hỏi thường gặp](faq) 17 | + [Bắt Đầu](get-started) 18 | + [H2testw (Windows)](h2testw-(windows)) 19 | + [Trang chủ](/) 20 | + [Haxchi](haxchi) 21 | + [Homebrew Launcher (Channel)](homebrew-launcher-(channel)) 22 | + [Homebrew Launcher](homebrew-launcher) 23 | + [Mocha CFW](mocha-cfw) 24 | + [NAND Backup](nand-backup) 25 | + [Gỡ Mocha CFW](uninstall-cfw) 26 | + [Hack vWii](vwii-modding) 27 | {% endcapture %} 28 |
{{ notice-2 | markdownify }}
29 | -------------------------------------------------------------------------------- /_pages/vi_VN/why-ads.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Tại sao có quảng cáo?" # 3 | layout: single-no-ads 4 | --- 5 | 6 | Dự án này là thành quả của hàng ngàn giờ làm việc liên tục. 7 | 8 | Chúng tôi duy trì hướng dẫn này miễn phí, và đảm bảo rằng nó luôn được cập nhật. Vì công sức đã bỏ ra, tôi cảm thấy nó công bằng khi tôi kiếm thêm một chút từ công trình này. 9 | 10 | Các bạn có thể sử dụng trang web miễn phí, và tất cả các trang đều không có quảng cáo gây khó chịu. Nếu bạn không vừa ý, bạn vẫn có thể chặn những quảng cáo đó. 11 | 12 | Nếu bạn chặn những quảng cáo đó, vẫn còn trang web cho việc [Ủng hộ](donations), và nó là tùy ý bạn. 13 | 14 | Xin cảm ơn,
15 | Plailect 16 | -------------------------------------------------------------------------------- /_pages/zh_CN/404.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "找不到页面" # 3 | layout: single-no-ads 4 | excerpt: "找不到页面。 你的画在另一张画布上哦!"# 5 | sitemap: false 6 | --- 7 | 8 | 对不起,该页面不存在。 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/zh_CN/credits.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "致谢" 3 | --- 4 | 5 | **特别感谢所有[翻译人员](https://crowdin.com/project/wii-u-guide)的无私贡献!** 6 | {: .notice--primary} 7 | 8 | 如果我忘记列出你的名字,请联系我。我会把你加上。 9 | 10 | {% capture notice-1 %} 11 | 12 | + damysteryman 13 | + derrek 14 | + dimok789 15 | + FIX94 16 | + FlimFlam69 17 | + koolkdev 18 | + plutooo 19 | + smea 20 | + [Truth] 21 | + vgmoose 22 | + Yardape8000 23 | + yellows8 24 | 25 | {% endcapture %} 26 | 27 |
{{ notice-1 | markdownify }}
-------------------------------------------------------------------------------- /_pages/zh_CN/donations.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "捐赠" # 3 | layout: single-no-ads 4 | --- 5 | 6 | [![Paypal]({{ "/images/paypal_white.png" | absolute_url }}){:height="72px" width="256px"}{: style="padding-bottom: .35em"}](https://www.paypal.me/NintendoHomebrew/15){: .align-center} 7 | [https://paypal.me/NintendoHomebrew](https://paypal.me/NintendoHomebrew) 8 | {: .text-center} 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/zh_CN/f3x-(mac).txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "F3X (Mac)" 3 | --- 4 | 5 | {% include toc title="内容目录" %} 6 | 7 | ### 必读事项 8 | 9 | 本节教程将带你使用F3X检查SD卡错误。 10 | 11 | 这个操作的耗时取决于你的 SD 卡的容量大小和电脑的速度,可能将耗费数个小时完成! 12 | 13 | 本节教程仅限Mac用户。 如果你的操作系统不是Mac,参见[H2testw (Windows)](h2testw-(windows))或[F3 (Linux)](f3-(linux))页面。 14 | 15 | ### 你需要准备点啥? 16 | 17 | * 最新版[F3X](https://github.com/insidegui/F3X/releases/latest) 18 | 19 | ### 操作步骤 20 | 21 | 1. 解压缩 F3X`.zip` 压缩包 22 | 1. 将 SD 卡插入电脑 23 | 1. 运行F3X 24 | 1. 选择你的SD卡 25 | 1. 点击“开始测试(Start Test)” 26 | 1. 等待,直到该过程执行完毕。 27 | 28 | ___ 29 | 30 | 如果测试结果显示 `Success! Your card is ok!`(成功,你的SD卡没有问题!),代表你的SD卡完好,之后请删除SD卡上所有的 `.h2w` 文件 31 | {: .notice--success} 32 | 33 | 如果测试显示任何其他结果,你的 SD 卡可能已经出错或损坏,你可能需要更换一张 SD卡 ! 34 | {: .notice--danger} 35 | 36 | ### 返回到[新手入门](get-started) 37 | {: .notice--primary} 38 | -------------------------------------------------------------------------------- /_pages/zh_CN/h2testw-(windows).txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "H2testw (Windows)" 3 | --- 4 | 5 | {% include toc title="目录内容" %} 6 | 7 | ### 必读事项 8 | 9 | 本节教程将带你使用h2testw检查SD卡错误。 10 | 11 | 这个操作的耗时取决于你的 SD 卡的容量大小和电脑的速度,可能将耗费数个小时完成! 12 | 13 | 本节教程仅限 Windows 用户。 如果你的操作系统不是 Windows,请参见[F3X (Mac)](f3x-(mac))或[F3 (Linux)](f3-(linux))页面。 14 | 15 | ### 你需要准备点啥? 16 | 17 | * 最新版 [h2testw](http://www.heise.de/ct/Redaktion/bo/downloads/h2testw_1.4.zip) 18 | 19 | ### 操作步骤 20 | 21 | 1. 解压缩 `h2testw `压缩包,复制 `h2testw.exe` 文件到桌面 22 | 1. 将 SD 卡插入电脑 23 | 1. 运行 `h2testw.exe` 24 | 1. 选择 “English” 25 | 1. 点击 “Select target” 26 | 1. 选择 SD 卡对应的盘符 27 | 1. 确保 “all available space” 已勾选 28 | 1. 点击 “Write + Verify” 29 | 1. 等待检查完成 30 | 31 | ___ 32 | 33 | 如果测试结果显示 `Test finished without errors`(测试完成,没有错误),则你的 SD 卡没有问题,接着请删除 SD 卡上所有的 `.h2w` 文件 34 | {: .notice--success} 35 | 36 | 如果测试显示任何其他结果,你的 SD 卡可能已经出错或损坏,你可能需要更换一张 SD卡 ! 37 | {: .notice--danger} 38 | 39 | ### 返回至[新手入门](get-started) 40 | {: .notice--primary} 41 | -------------------------------------------------------------------------------- /_pages/zh_CN/homebrew-launcher.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "启动 Homebrew Launcher" 3 | --- 4 | 5 | {% include toc title="目录内容" %} 6 | 7 | ### 必读事项 8 | 9 | Homebrew Launcher 是一个可以列出 SD 卡中的自制程序并启动它们的工具。 10 | 11 | 我们将通过Wii U的内置浏览器来启动 Homebrew Launcher,所以请确保Wii U可以连接互联网。 12 | 13 | ### 操作步骤 14 | 15 | 1. 访问 `wiiuexploit.xyz` 16 | + 你可以将此地址加入收藏夹,将来可以更便捷的地访问 17 | 1. 选择 “Run Homebrew Launcher” 来尝试第一次漏洞触发 18 | + 如果设备死机了,请长按电源键关闭设备,然后再试一次 19 | 1. 此时你的主机应该进入到 Homebrew Launcher了 20 | 21 | ___ 22 | 23 | ### 接着请继续 [进行 NAND 备份](nand-backup) 24 | {: .notice--primary} 25 | -------------------------------------------------------------------------------- /_pages/zh_CN/mocha-cfw.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Mocha 自制系统" 3 | --- 4 | 5 | {% include toc title="目录内容" %} 6 | 7 | ### 必读事项 8 | 9 | Mocha是用于写入跳过签名检查补丁、区域补丁以及在后台运行其他自定义程序的自制系统。 10 | 11 | 如果要使用 Mocha 自制系统,则你需要在每次重启主机时通过浏览器进入 Homebrew Launcher 并启动 Mocha 自制系统。 12 | 13 | ### 你需要准备点啥? 14 | 15 | + 你的 SD 卡中的 `/wiiu/apps/mocha/` 文件夹中应该有在[新手入门](get-started)中下载的 `config.ini` 16 | 17 | ### 操作步骤 18 | 19 | 1. 启动 Mocha 自制系统 20 | 1. 主机将会自动重启至 Homebrew Launcher 并启动自制固件的相关功能 21 | + 它将允许我们通过系统菜单直接进入任何没有签名的程序(比如 Homebrew Launcher)直到重启为止 22 | 23 | ___ 24 | 25 | 请注意,你每次开机时都得从 Homebrew Launcher 启动 Mocha 自制系统才能重新开启自制固件的相关功能。 26 | {: .notice--info} 27 | 28 | ### 继续至 [Homebrew Launcher (通过频道)](homebrew-launcher-(channel))。 29 | {: .notice--primary} 30 | -------------------------------------------------------------------------------- /_pages/zh_CN/privacy-policy.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "隐私政策" # 3 | layout: single-no-ads 4 | --- 5 | 6 | ### Cookies 7 | 8 | 本站点使用 cookies 来方便手册指导用户。 Cookies 允许通过站点的侧边栏显示当前的进度,帮助用户更容易找到指示。 9 | 10 | ### 从其他网站嵌入内容 11 | 12 | 本站点可能包含一部分的嵌入内容 (例如, 视频、图片、文章等)。 来自其他网站的嵌入内容就像用户访问了那个网站一样。 13 | 14 | 这些网站可以使用 cookies 收集有关你的数据,并嵌入额外的第三方跟踪来监测你与该嵌入内容的互动,跟踪你与内容的互动(只要你先前在该网站登录过)。 15 | 16 | ### 分析 17 | 18 | 此网站使用 Google Analytics 提供的分析来监测和分析流量。 此网站由 Github Pages 托管,它也可以使用cookies收集有关你的数据并嵌入额外的第三方跟踪,监测你与这个网站的互动。 关于 Github Pages 与用户隐私有关的更多信息,请参见[GitHub 隐私声明](https://help.github.com/en/articles/github-privacy-statement)。 19 | 20 | ### 收集的信息 21 | 22 | 此站点不会收集任何的个人信息。 但会收集使用信息,以便分析内容的兴趣并综合向广告商提供信息。 我们不会与第三方广告公司分享任何的个人身份信息。 23 | 24 | ### 第三方网站 25 | 26 | 此站点可以链接到用户使用或用于参考的其他站点。 本站点没有负责其他网站的隐私政策。 用户应当知道,其他网站的隐私政策可能不同于我们的政策。 27 | 28 | ### 对隐私政策的更改 29 | 30 | 隐私政策的内容可以在任何时候并以任何理由加以修改。 31 | -------------------------------------------------------------------------------- /_pages/zh_CN/site-navigation.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "网站导航" # 3 | layout: single-no-ads 4 | sitemap: false 5 | --- 6 | 7 | {% capture notice-2 %} 8 | **全部** 9 | 10 | + [冷启动 Haxchi](coldboot-haxchi) 11 | + [致谢](credits) 12 | + [disc2app](disc2app) 13 | + [捐赠](donations) 14 | + [F3 (Linux)](f3-(linux)) 15 | + [F3X (Mac)](f3x-(mac)) 16 | + [常见问题](faq) 17 | + [新手入门](get-started) 18 | + [H2testw (Windows)](h2testw-(windows)) 19 | + [首页](/zh_CN/) 20 | + [Haxchi](haxchi) 21 | + [启动 Homebrew Launcher(通过频道)](homebrew-launcher-(channel)) 22 | + [启动 Homebrew Launcher](homebrew-launcher) 23 | + [Mocha 自制系统](mocha-cfw) 24 | + [NAND 备份](nand-backup) 25 | + [卸载 Mocha 自制系统](uninstall-cfw) 26 | + [vWii模式破解](vwii-modding) 27 | {% endcapture %} 28 |
{{ notice-2 | markdownify }}
29 | -------------------------------------------------------------------------------- /_pages/zh_CN/why-ads.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "为什么有广告?" # 3 | layout: single-no-ads 4 | --- 5 | 6 | 此项目包含我们数千小时持续工作的心血。 7 | 8 | 我将持续免费地维护本指南,以确保这一切都是最新版的。 因此,我加入了一些广告,为我增加了一些微薄的收入是再公平不过的了。 9 | 10 | 本网站所显示的广告都是非侵入式的,加上指南内的工具完全免费。 如果你还是不大喜欢,没关系,尽管挡我的广告。 11 | 12 | 如果你屏蔽了这些广告,记得我们有一个[捐赠](donations) 页面。当然了,这也是自愿的。 13 | 14 | 谢谢,
15 | Plailect 16 | -------------------------------------------------------------------------------- /_pages/zh_TW/404.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "找不到此頁面" # 3 | layout: single-no-ads 4 | excerpt: "耶,未找到此頁面欸。 您的畫在其他的畫布上噢!" # 5 | sitemap: false 6 | --- 7 | 8 | 對不起, 此頁面並不存在。 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/zh_TW/credits.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "製作群" 3 | --- 4 | 5 | **感謝所有的超讚的[翻譯人員](https://crowdin.com/project/wii-u-guide)!** 6 | {: .notice--primary} 7 | 8 | If I forgot you here, contact me and I'll add your name. 9 | 10 | {% capture notice-1 %} 11 | 12 | + damysteryman 13 | + derrek 14 | + dimok789 15 | + FIX94 16 | + FlimFlam69 17 | + koolkdev 18 | + plutooo 19 | + smea 20 | + [Truth] 21 | + vgmoose 22 | + Yardape8000 23 | + yellows8 24 | 25 | {% endcapture %} 26 | 27 |
{{ notice-1 | markdownify }}
-------------------------------------------------------------------------------- /_pages/zh_TW/donations.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "贊助" # 3 | layout: single-no-ads 4 | --- 5 | 6 | [![Paypal]({{ "/images/paypal_white.png" | absolute_url }}){:height="72px" width="256px"}{: style="padding-bottom: .35em"}](https://www.paypal.me/NintendoHomebrew/15){: .align-center} 7 | [https://paypal.me/NintendoHomebrew](https://paypal.me/NintendoHomebrew) 8 | {: .text-center} 9 | {: .notice--info} 10 | -------------------------------------------------------------------------------- /_pages/zh_TW/f3x-(mac).txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "F3X (Mac)" 3 | --- 4 | 5 | {% include toc title="條目內容" %} 6 | 7 | ### 必讀事項 8 | 9 | 本頁將教您如何透過 F3X 檢查您的 SD 卡。 10 | 11 | 根據您的 SD 卡的大小和電腦的速度,本過程可能將花費數小時才能完成 ! 12 | 13 | 本教學僅適用於 Mac 使用者。 如果您不在 Mac 平台上,請參閱 [H2testw (Windows)](h2testw-(windows)) 或 [F3 (Linux)](f3-(linux))。 14 | 15 | ### 必備項目 16 | 17 | * 最新版的 [F3X](https://github.com/insidegui/F3X/releases/latest) 18 | 19 | ### 操作說明 20 | 21 | 1. 解壓 F3X `.zip` 壓縮檔 22 | 1. 將 SD 卡插入至電腦中 23 | 1. 開啟 F3X 24 | 1. 選擇您的 SD 卡 25 | 1. 按下『開始測試 (Start Test)』 26 | 1. 等到檢查完畢為止。 27 | 28 | ___ 29 | 30 | 如果測試顯示的結果『成功 ! 您的卡一切正常!(Success! Your card is ok!)』表示您的 SD 卡是正常的,然後您可以刪除上面所有的 `.h2w` 檔案 31 | {: .notice--success} 32 | 33 | 如果出現任何其他結果,您的 SD 卡可能是有問題且需要更換的! 34 | {: .notice--danger} 35 | 36 | ### 回到[新手入門](get-started) 37 | {: .notice--primary} 38 | -------------------------------------------------------------------------------- /_pages/zh_TW/h2testw-(windows).txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "H2testw (Windows)" 3 | --- 4 | 5 | {% include toc title="條目內容" %} 6 | 7 | ### 必讀事項 8 | 9 | 本頁將教您如何透過 h2testw 檢查您的 SD 卡。 10 | 11 | 根據您的 SD 卡的大小和電腦的速度,本過程可能將花費數小時才能完成 ! 12 | 13 | 本教學僅適用於 Windows 使用者。 如果您不在 Windows 平台上,請參閱 [F3 (linux)](f3-(linux)) 或 [F3X (mac)](f3x-(mac))。 14 | 15 | ### 必備項目 16 | 17 | * 最新版的 [h2testw](http://www.heise.de/ct/Redaktion/bo/downloads/h2testw_1.4.zip) 18 | 19 | ### 操作說明 20 | 21 | 1. 從 h2testw `.zip` 中解壓 `h2testw.exe` 22 | 1. 將 SD 卡插入至電腦中 23 | 1. 開啟 `h2testw.exe` 24 | 1. 選擇『英語 (English)』 25 | 1. 按下『Select target』 26 | 1. 選擇您的 SD 卡磁碟代號 27 | 1. 確保『all available space』為以勾選狀態 28 | 1. 點下『Write + Verify』 29 | 1. 等到檢查完畢為止。 30 | 31 | ___ 32 | 33 | 如果結果顯示 `Test finished without errors`,則表示您的 SD 卡是沒問題的,接著就可以刪除 SD 卡上所有的 `.h2w` 檔案了 34 | {: .notice--success} 35 | 36 | 如果出現任何其他結果,您的 SD 卡可能是有問題且需要更換的! 37 | {: .notice--danger} 38 | 39 | ### 回到[新手入門](get-started) 40 | {: .notice--primary} 41 | -------------------------------------------------------------------------------- /_pages/zh_TW/homebrew-launcher.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Homebrew Launcher" 3 | --- 4 | 5 | {% include toc title="條目內容" %} 6 | 7 | ### 必讀事項 8 | 9 | Homebrew Launcher 是個用來啟動 SD 卡上其他自製程式的啟動器。 10 | 11 | 我們將透過 Wii U 的內建網頁瀏覽器啟動它,也就是說您的 Wii U 需要可以連網才能繼續。 12 | 13 | ### 操作說明 14 | 15 | 1. Go to `wiiuexploit.xyz` 16 | + 您可以將本網址設為書籤,這樣未來要使用時較方便 17 | 1. 於第一次嘗試時選擇『Run Homebrew Launcher』 18 | + 如果當機的話,透過電源按鈕將您的主機強制關機,並再試一次 19 | 1. 您的主機應該就會啟動 Homebrew Launcher 了 20 | 21 | ___ 22 | 23 | ### Continue to [Creating a NAND backup](nand-backup) 24 | {: .notice--primary} 25 | -------------------------------------------------------------------------------- /_pages/zh_TW/mocha-cfw.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Mocha CFW" 3 | --- 4 | 5 | {% include toc title="條目內容" %} 6 | 7 | ### 必讀事項 8 | 9 | Mocha CFW 是個用來跳過簽證檢查、區域檢查並啟用其他自製韌體功能的一套自製韌體。 10 | 11 | 若要使用 Mocha CFW,您需要在每次主機重新啟動時,透過瀏覽器進入 Homebrew Launcher,並重新啟用 Mocha CFW。 12 | 13 | ### 必備項目 14 | 15 | + 您 SD 卡中的 `/wiiu/apps/mocha/` 資料夾中應有在[新手入門](get-started)中取得的 `config.ini` 16 | 17 | ### 操作說明 18 | 19 | 1. 啟動 Mocha CFW 20 | 1. 您的主機應該會退回至 Homebrew Launcher 中並啟用了自製韌體功能 21 | + 這將允許我們透過系統主選單直接啟動任何未簽證的程式 (比如 Homebrew Launcher) 直到下次重啟為止 22 | 23 | ___ 24 | 25 | 請注意當您每次重啟主機時,您都得先進入至 Homebrew Launcher 中啟動 Mocha 自製韌體才能重新啟用所有自製韌體相關的功能。 26 | {: .notice--info} 27 | 28 | ### 回到 [Homebrew Launcher (透過頻道)](homebrew-launcher-(channel))。 29 | {: .notice--primary} 30 | -------------------------------------------------------------------------------- /_pages/zh_TW/privacy-policy.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "隱私權政策" # 3 | layout: single-no-ads 4 | --- 5 | 6 | ### Cookies 7 | 8 | 本站透過 Cookies 引導用戶使用此手冊。 Cookies 讓手冊能在側欄顯示當前的進度,幫助用戶更容易的找到下一步指示。 9 | 10 | ### 來自其他網站的嵌入內容 11 | 12 | 本網站可能包含嵌入內容 (例如, 影片、圖案、文章等)。 打個比方,來自其他網站的嵌入內容就像您造訪其他網站一樣。 13 | 14 | 這些網站可能會透過 Cookies 收集有關您的資料,嵌入其他第三方追蹤器並監視您與嵌入內容的互動,這包括追蹤您與此嵌入內容的互動 (如果您於該網站已登入過您的帳戶)。 15 | 16 | ### 分析 17 | 18 | 本網站使用 Google Analytics 來監控和分析流量。 本網站由 GitHub Pages 托管,因此該網站也可能透過 Cookies 收集有關您的資料並嵌入其他第三方追蹤以及監控您與本網站的互動。 有關 GitHub 與用戶隱私有關的更多訊息,請查閱 [GitHub 隱私權聲明](https://help.github.com/en/articles/github-privacy-statement)。 19 | 20 | ### 收集的訊息 21 | 22 | 本網站不會收集任何個人資訊。 但本網站可能會收集使用相關資訊以分析用戶對內容的興趣並向廣告商提供彙總資訊。 我們不會與第三方廣告公司分享任何可識別用戶的資訊。 23 | 24 | ### 第三方網站 25 | 26 | 本網站可能會提及其他網站以供用戶使用或參考。 本站無權負責其他網站的隱私權政策。 用戶需知其他網站的隱私權政策可能與此網站的不同。 27 | 28 | ### 對隱私權原則的更改 29 | 30 | 我們有權隨時更改隱私權政策中的內容。 31 | -------------------------------------------------------------------------------- /_pages/zh_TW/site-navigation.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "網站導覽" # 3 | layout: single-no-ads 4 | sitemap: false 5 | --- 6 | 7 | {% capture notice-2 %} 8 | **所有** 9 | 10 | + [冷啟動 Haxchi](coldboot-haxchi) 11 | + [製作群](credits) 12 | + [disc2app](disc2app) 13 | + [贊助](donations) 14 | + [F3 (Linux)](f3-(linux)) 15 | + [F3X (Mac)](f3x-(mac)) 16 | + [常見問題 FAQ](faq) 17 | + [新手入門](get-started) 18 | + [H2testw (Windows)](h2testw-(windows)) 19 | + [首頁](/zh_TW/) 20 | + [Haxchi](haxchi) 21 | + [Homebrew Launcher (頻道)](homebrew-launcher-(channel)) 22 | + [Homebrew Launcher](homebrew-launcher) 23 | + [Mocha CFW](mocha-cfw) 24 | + [NAND Backup](nand-backup) 25 | + [卸載 Mocha CFW](uninstall-cfw) 26 | + [vWii 改機](vwii-modding) 27 | {% endcapture %} 28 |
{{ notice-2 | markdownify }}
29 | -------------------------------------------------------------------------------- /_pages/zh_TW/why-ads.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: "為什麼有廣告?" # 3 | layout: single-no-ads 4 | --- 5 | 6 | This project is the culmination of thousands of hours of constant work. 7 | 8 | I maintain this guide, for free, and ensure it is always up to date. Because of this effort, I feel that it is fair for me to attempt to gain a meager income from my work. 9 | 10 | This site costs you nothing to use, and all that I display are non-intrusive ads. 如果您還是不大喜歡,沒關係,盡管擋我的廣告。 11 | 12 | If you do block ads, I would like to also remind you of the [Donations](donations) page, but once again that is optional too. 13 | 14 | 謝啦,
15 | Plailect 16 | -------------------------------------------------------------------------------- /_sass/minimal-mistakes/_animations.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | ANIMATIONS 3 | ========================================================================== */ 4 | 5 | @-webkit-keyframes intro { 6 | 0% { 7 | opacity: 0; 8 | } 9 | 100% { 10 | opacity: 1; 11 | } 12 | } 13 | 14 | @keyframes intro { 15 | 0% { 16 | opacity: 0; 17 | } 18 | 100% { 19 | opacity: 1; 20 | } 21 | } -------------------------------------------------------------------------------- /_sass/minimal-mistakes/_tables.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | TABLES 3 | ========================================================================== */ 4 | 5 | table { 6 | margin-bottom: 1em; 7 | width: 100%; 8 | font-family: $global-font-family; 9 | font-size: $type-size-6; 10 | border-collapse: collapse; 11 | border: 1px solid $light-gray; 12 | 13 | & + table { 14 | margin-top: 1em; 15 | } 16 | } 17 | 18 | thead { 19 | background-color: mix($background-color, $dark-gray, 45%);; 20 | border-bottom: 1px solid $light-gray; 21 | color: $primary-color; 22 | } 23 | 24 | th { 25 | padding: 0.5em; 26 | font-weight: bold; 27 | text-align: left; 28 | border-right: 1px solid $light-gray; 29 | } 30 | 31 | td { 32 | padding: 0.5em; 33 | border-bottom: 1px solid $light-gray; 34 | border-right: 1px solid $light-gray; 35 | } 36 | 37 | tr, td, th { 38 | vertical-align: middle; 39 | } -------------------------------------------------------------------------------- /_sass/minimal-mistakes/skins/_air.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Air skin 3 | ========================================================================== */ 4 | 5 | /* Colors */ 6 | $background-color: #eeeeee !default; 7 | $text-color: #222831 !default; 8 | $muted-text-color: #393e46 !default; 9 | $primary-color: #0092ca !default; 10 | $border-color: mix(#fff, #393e46, 75%) !default; 11 | $footer-background-color: $primary-color !default; 12 | $link-color: #393e46 !default; 13 | $masthead-link-color: $text-color !default; 14 | $masthead-link-color-hover: $text-color !default; 15 | $navicon-link-color-hover: mix(#fff, $text-color, 80%) !default; 16 | 17 | .page__footer { 18 | color: #fff !important; // override 19 | } 20 | 21 | .page__footer-follow .social-icons .fa { 22 | color: inherit; 23 | } -------------------------------------------------------------------------------- /_sass/minimal-mistakes/skins/_contrast.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Contrast skin 3 | ========================================================================== */ 4 | 5 | /* Colors */ 6 | $text-color: #000 !default; 7 | $muted-text-color: $text-color !default; 8 | $primary-color: #ff0000 !default; 9 | $border-color: mix(#fff, $text-color, 75%) !default; 10 | $footer-background-color: #000 !default; 11 | $link-color: #0000ff !default; 12 | $masthead-link-color: $text-color !default; 13 | $masthead-link-color-hover: $text-color !default; 14 | $navicon-link-color-hover: mix(#fff, $text-color, 80%) !default; 15 | 16 | .page__content { 17 | 18 | .notice, 19 | .notice--primary, 20 | .notice--info, 21 | .notice--warning, 22 | .notice--success, 23 | .notice--danger { 24 | color: $text-color; 25 | } 26 | } 27 | 28 | .page__footer { 29 | color: #fff !important; // override 30 | } 31 | 32 | .page__footer-follow .social-icons .fa { 33 | color: inherit; 34 | } -------------------------------------------------------------------------------- /_sass/minimal-mistakes/skins/_default.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Default skin 3 | ========================================================================== */ 4 | 5 | // Intentionally left blank 6 | -------------------------------------------------------------------------------- /_sass/minimal-mistakes/skins/_dirt.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Dirt skin 3 | ========================================================================== */ 4 | 5 | /* Colors */ 6 | $background-color: #f3f3f3 !default; 7 | $text-color: #343434 !default; 8 | $muted-text-color: #8e8b82 !default; 9 | $primary-color: #343434 !default; 10 | $border-color: #e9dcbe !default; 11 | $footer-background-color: #e9dcbe !default; 12 | $link-color: #343434 !default; 13 | $masthead-link-color: $text-color !default; 14 | $masthead-link-color-hover: $text-color !default; 15 | $navicon-link-color-hover: mix(#fff, $text-color, 80%) !default; -------------------------------------------------------------------------------- /_sass/minimal-mistakes/skins/_mint.scss: -------------------------------------------------------------------------------- 1 | /* ========================================================================== 2 | Mint skin 3 | ========================================================================== */ 4 | 5 | /* Colors */ 6 | $background-color: #f3f6f6 !default; 7 | $text-color: #40514e !default; 8 | $muted-text-color: #40514e !default; 9 | $primary-color: #11999e !default; 10 | $border-color: mix(#fff, #40514e, 75%) !default; 11 | $footer-background-color: #30e3ca !default; 12 | $link-color: #11999e !default; 13 | $masthead-link-color: $text-color !default; 14 | $masthead-link-color-hover: $text-color !default; 15 | $navicon-link-color-hover: mix(#fff, $text-color, 80%) !default; 16 | 17 | .page__footer { 18 | color: #fff !important; // override 19 | } 20 | 21 | .page__footer-follow .social-icons .fa { 22 | color: inherit; 23 | } -------------------------------------------------------------------------------- /_sass/minimal-mistakes/vendor/breakpoint/_no-query.scss: -------------------------------------------------------------------------------- 1 | @function breakpoint-no-query($query) { 2 | @if type-of($query) == 'list' { 3 | $keyword: nth($query, 1); 4 | 5 | @if type-of($keyword) == 'string' and ($keyword == 'no-query' or $keyword == 'no query' or $keyword == 'fallback') { 6 | @return nth($query, 2); 7 | } 8 | @else { 9 | @return false; 10 | } 11 | } 12 | @else { 13 | @return false; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /_sass/minimal-mistakes/vendor/breakpoint/parsers/_resolution.scss: -------------------------------------------------------------------------------- 1 | @import "resolution/resolution"; 2 | 3 | @function breakpoint-build-resolution($query-print, $query-resolution, $empty-media, $first) { 4 | $leader: ''; 5 | // If we're forcing 6 | @if not ($empty-media) or not ($first) { 7 | $leader: 'and '; 8 | } 9 | 10 | @if breakpoint-get('transform resolutions') and $query-resolution { 11 | $resolutions: breakpoint-make-resolutions($query-resolution); 12 | $length: length($resolutions); 13 | $query-holder: ''; 14 | 15 | @for $i from 1 through $length { 16 | $query: '#{$query-print} #{$leader}#{nth($resolutions, $i)}'; 17 | @if $i == 1 { 18 | $query-holder: $query; 19 | } 20 | @else { 21 | $query-holder: '#{$query-holder}, #{$query}'; 22 | } 23 | } 24 | 25 | @return $query-holder; 26 | } 27 | @else { 28 | // Return with attached resolution 29 | @return $query-print; 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /_sass/minimal-mistakes/vendor/breakpoint/parsers/_single.scss: -------------------------------------------------------------------------------- 1 | ////////////////////////////// 2 | // Import Pieces 3 | ////////////////////////////// 4 | @import "single/default"; 5 | 6 | @function breakpoint-parse-single($feature, $empty-media, $first) { 7 | $parsed: ''; 8 | $leader: ''; 9 | // If we're forcing 10 | @if not ($empty-media) or not ($first) { 11 | $leader: 'and '; 12 | } 13 | 14 | // If it's a single feature that can stand alone, we let it 15 | @if (breakpoint-single-string($feature)) { 16 | $parsed: $feature; 17 | // Set Context 18 | $context-setter: private-breakpoint-set-context($feature, $feature); 19 | } 20 | // If it's not a stand alone feature, we pass it off to the default handler. 21 | @else { 22 | $parsed: breakpoint-parse-default($feature); 23 | } 24 | 25 | @return $leader + '(' + $parsed + ')'; 26 | } 27 | -------------------------------------------------------------------------------- /_sass/minimal-mistakes/vendor/breakpoint/parsers/_triple.scss: -------------------------------------------------------------------------------- 1 | ////////////////////////////// 2 | // Import Pieces 3 | ////////////////////////////// 4 | @import "triple/default"; 5 | 6 | @function breakpoint-parse-triple($feature, $empty-media, $first) { 7 | $parsed: ''; 8 | $leader: ''; 9 | 10 | // If we're forcing 11 | @if not ($empty-media) or not ($first) { 12 | $leader: 'and '; 13 | } 14 | 15 | // separate the string features from the value numbers 16 | $string: null; 17 | $numbers: null; 18 | @each $val in $feature { 19 | @if type-of($val) == string { 20 | $string: $val; 21 | } 22 | @else { 23 | @if type-of($numbers) == 'null' { 24 | $numbers: $val; 25 | } 26 | @else { 27 | $numbers: append($numbers, $val); 28 | } 29 | } 30 | } 31 | 32 | $parsed: breakpoint-parse-triple-default($string, nth($numbers, 1), nth($numbers, 2)); 33 | 34 | @return $leader + $parsed; 35 | 36 | } 37 | -------------------------------------------------------------------------------- /_sass/minimal-mistakes/vendor/breakpoint/parsers/double/_default-pair.scss: -------------------------------------------------------------------------------- 1 | @function breakpoint-parse-default-pair($first, $second) { 2 | $default: breakpoint-get('default pair'); 3 | $min: ''; 4 | $max: ''; 5 | 6 | // Sort into min and max 7 | $min: min($first, $second); 8 | $max: max($first, $second); 9 | 10 | // Set Context 11 | $context-setter: private-breakpoint-set-context(min-#{$default}, $min); 12 | $context-setter: private-breakpoint-set-context(max-#{$default}, $max); 13 | 14 | // Make them EMs if need be 15 | @if (breakpoint-get('to ems') == true) { 16 | $min: breakpoint-to-base-em($min); 17 | $max: breakpoint-to-base-em($max); 18 | } 19 | 20 | @return '(min-#{$default}: #{$min}) and (max-#{$default}: #{$max})'; 21 | } 22 | -------------------------------------------------------------------------------- /_sass/minimal-mistakes/vendor/breakpoint/parsers/double/_default.scss: -------------------------------------------------------------------------------- 1 | @function breakpoint-parse-double-default($first, $second) { 2 | $feature: ''; 3 | $value: ''; 4 | 5 | @if type-of($first) == 'string' { 6 | $feature: $first; 7 | $value: $second; 8 | } 9 | @else { 10 | $feature: $second; 11 | $value: $first; 12 | } 13 | 14 | // Set Context 15 | $context-setter: private-breakpoint-set-context($feature, $value); 16 | 17 | @if (breakpoint-get('to ems') == true) { 18 | $value: breakpoint-to-base-em($value); 19 | } 20 | 21 | @return '(#{$feature}: #{$value})' 22 | } 23 | -------------------------------------------------------------------------------- /_sass/minimal-mistakes/vendor/breakpoint/parsers/double/_double-string.scss: -------------------------------------------------------------------------------- 1 | @function breakpoint-parse-double-string($first, $second) { 2 | $feature: ''; 3 | $value: ''; 4 | 5 | // Test to see which is the feature and which is the value 6 | @if (breakpoint-string-value($first) == true) { 7 | $feature: $first; 8 | $value: $second; 9 | } 10 | @else if (breakpoint-string-value($second) == true) { 11 | $feature: $second; 12 | $value: $first; 13 | } 14 | @else { 15 | @warn "Neither #{$first} nor #{$second} is a valid media query name."; 16 | } 17 | 18 | // Set Context 19 | $context-setter: private-breakpoint-set-context($feature, $value); 20 | 21 | @return '(#{$feature}: #{$value})'; 22 | } -------------------------------------------------------------------------------- /_sass/minimal-mistakes/vendor/breakpoint/parsers/single/_default.scss: -------------------------------------------------------------------------------- 1 | @function breakpoint-parse-default($feature) { 2 | $default: breakpoint-get('default feature'); 3 | 4 | // Set Context 5 | $context-setter: private-breakpoint-set-context($default, $feature); 6 | 7 | @if (breakpoint-get('to ems') == true) and (type-of($feature) == 'number') { 8 | @return '#{$default}: #{breakpoint-to-base-em($feature)}'; 9 | } 10 | @else { 11 | @return '#{$default}: #{$feature}'; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /_sass/minimal-mistakes/vendor/breakpoint/parsers/triple/_default.scss: -------------------------------------------------------------------------------- 1 | @function breakpoint-parse-triple-default($feature, $first, $second) { 2 | 3 | // Sort into min and max 4 | $min: min($first, $second); 5 | $max: max($first, $second); 6 | 7 | // Set Context 8 | $context-setter: private-breakpoint-set-context(min-#{$feature}, $min); 9 | $context-setter: private-breakpoint-set-context(max-#{$feature}, $max); 10 | 11 | // Make them EMs if need be 12 | @if (breakpoint-get('to ems') == true) { 13 | $min: breakpoint-to-base-em($min); 14 | $max: breakpoint-to-base-em($max); 15 | } 16 | 17 | @return '(min-#{$feature}: #{$min}) and (max-#{$feature}: #{$max})'; 18 | } 19 | -------------------------------------------------------------------------------- /_sass/minimal-mistakes/vendor/font-awesome/_animated.scss: -------------------------------------------------------------------------------- 1 | // Spinning Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | .#{$fa-css-prefix}-pulse { 10 | -webkit-animation: fa-spin 1s infinite steps(8); 11 | animation: fa-spin 1s infinite steps(8); 12 | } 13 | 14 | @-webkit-keyframes fa-spin { 15 | 0% { 16 | -webkit-transform: rotate(0deg); 17 | transform: rotate(0deg); 18 | } 19 | 100% { 20 | -webkit-transform: rotate(359deg); 21 | transform: rotate(359deg); 22 | } 23 | } 24 | 25 | @keyframes fa-spin { 26 | 0% { 27 | -webkit-transform: rotate(0deg); 28 | transform: rotate(0deg); 29 | } 30 | 100% { 31 | -webkit-transform: rotate(359deg); 32 | transform: rotate(359deg); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /_sass/minimal-mistakes/vendor/font-awesome/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .#{$fa-css-prefix}-pull-left { float: left; } 11 | .#{$fa-css-prefix}-pull-right { float: right; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.#{$fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.#{$fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .#{$fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /_sass/minimal-mistakes/vendor/font-awesome/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /_sass/minimal-mistakes/vendor/font-awesome/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /_sass/minimal-mistakes/vendor/font-awesome/_font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "animated"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | @import "screen-reader"; 19 | -------------------------------------------------------------------------------- /_sass/minimal-mistakes/vendor/font-awesome/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /_sass/minimal-mistakes/vendor/font-awesome/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /_sass/minimal-mistakes/vendor/font-awesome/_path.scss: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}'); 7 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'), 8 | url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'), 9 | url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'), 10 | url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'), 11 | url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /_sass/minimal-mistakes/vendor/font-awesome/_rotated-flipped.scss: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } 5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } 6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } 7 | 8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } 9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .#{$fa-css-prefix}-rotate-90, 15 | :root .#{$fa-css-prefix}-rotate-180, 16 | :root .#{$fa-css-prefix}-rotate-270, 17 | :root .#{$fa-css-prefix}-flip-horizontal, 18 | :root .#{$fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /_sass/minimal-mistakes/vendor/font-awesome/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only(); } 5 | .sr-only-focusable { @include sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /_sass/minimal-mistakes/vendor/font-awesome/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /_sass/minimal-mistakes/vendor/susy/_su.scss: -------------------------------------------------------------------------------- 1 | // Su 2 | // == 3 | 4 | @import 'susy/su'; 5 | -------------------------------------------------------------------------------- /_sass/minimal-mistakes/vendor/susy/_susy-prefix.scss: -------------------------------------------------------------------------------- 1 | // Susy (Prefixed) 2 | // =============== 3 | 4 | $susy-version: 3; 5 | 6 | @import 'susy/utilities'; 7 | @import 'susy/su-validate'; 8 | @import 'susy/su-math'; 9 | @import 'susy/settings'; 10 | @import 'susy/normalize'; 11 | @import 'susy/parse'; 12 | @import 'susy/syntax-helpers'; 13 | @import 'susy/api'; 14 | -------------------------------------------------------------------------------- /_sass/minimal-mistakes/vendor/susy/_susy.scss: -------------------------------------------------------------------------------- 1 | // Susy (Un-Prefixed) 2 | // ================== 3 | 4 | @import 'susy-prefix'; 5 | @import 'susy/unprefix'; 6 | -------------------------------------------------------------------------------- /_sass/minimal-mistakes/vendor/susy/plugins/_svg-grid.scss: -------------------------------------------------------------------------------- 1 | // SVG Grid Background 2 | // =================== 3 | 4 | @import 'svg-grid/prefix'; 5 | @import 'svg-grid/svg-unprefix'; 6 | -------------------------------------------------------------------------------- /_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_prefix.scss: -------------------------------------------------------------------------------- 1 | // Prefixed SVG Plugin 2 | // =================== 3 | 4 | @import 'svg-settings'; 5 | @import 'svg-utilities'; 6 | @import 'svg-grid-math'; 7 | @import 'svg-api'; 8 | -------------------------------------------------------------------------------- /_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-settings.scss: -------------------------------------------------------------------------------- 1 | // SVG Settings 2 | // ============ 3 | 4 | 5 | // Susy SVG Defaults 6 | // ================= 7 | /// This plugin adds the `svg-grid-colors` property 8 | /// and default value to `$_susy-defaults` — 9 | /// you can override that value in `$susy` 10 | /// or any other grid settings map. 11 | /// @group plugin_svg-grid 12 | $_susy-defaults: map-merge(( 13 | 'svg-grid-colors': hsla(120, 50%, 50%, 0.5) hsla(120, 50%, 75%, 0.5), 14 | ), $_susy-defaults); 15 | -------------------------------------------------------------------------------- /_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-unprefix.scss: -------------------------------------------------------------------------------- 1 | // Unprefix Susy SVG Grid 2 | // ====================== 3 | 4 | 5 | 6 | // SVG Grid 7 | // -------- 8 | /// Un-prefixed alias for `susy-svg-grid` 9 | /// 10 | /// @group plugin_svg-grid 11 | /// @alias susy-svg-grid 12 | @function svg-grid( 13 | $grid: $susy, 14 | $colors: susy-get('svg-grid-colors'), 15 | $offset: null 16 | ) { 17 | @return susy-svg-grid($grid, $colors, $offset); 18 | } 19 | -------------------------------------------------------------------------------- /assets/css/main.scss: -------------------------------------------------------------------------------- 1 | --- 2 | # Only the main Sass file needs front matter (the dashes are enough) 3 | --- 4 | 5 | @charset "utf-8"; 6 | 7 | @import "minimal-mistakes/skins/{{ site.minimal_mistakes_skin | default: 'default' }}"; // skin 8 | @import "minimal-mistakes"; // main partials 9 | -------------------------------------------------------------------------------- /assets/files/Patched_IOS80_Installer_for_vWii.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacks-guide/Guide_WiiU-OLD/26a149d7f2b15acb7ef6f20ccba2a58381ead5ae/assets/files/Patched_IOS80_Installer_for_vWii.zip -------------------------------------------------------------------------------- /assets/files/config.ini: -------------------------------------------------------------------------------- 1 | [MOCHA] 2 | viewMode=0 3 | directLaunch=1 4 | launchImage=0 5 | noIosReload=1 6 | launchSysMenu=0 7 | redNAND=0 8 | seeprom_red=0 9 | otp_red=0 10 | syshaxXml=0 11 | -------------------------------------------------------------------------------- /assets/files/config.txt: -------------------------------------------------------------------------------- 1 | a=wiiu/apps/homebrew_launcher/homebrew_launcher.elf 2 | default=sysmenu -------------------------------------------------------------------------------- /assets/files/vWii_cIOS_apps_20131218.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacks-guide/Guide_WiiU-OLD/26a149d7f2b15acb7ef6f20ccba2a58381ead5ae/assets/files/vWii_cIOS_apps_20131218.zip -------------------------------------------------------------------------------- /assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacks-guide/Guide_WiiU-OLD/26a149d7f2b15acb7ef6f20ccba2a58381ead5ae/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacks-guide/Guide_WiiU-OLD/26a149d7f2b15acb7ef6f20ccba2a58381ead5ae/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacks-guide/Guide_WiiU-OLD/26a149d7f2b15acb7ef6f20ccba2a58381ead5ae/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacks-guide/Guide_WiiU-OLD/26a149d7f2b15acb7ef6f20ccba2a58381ead5ae/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacks-guide/Guide_WiiU-OLD/26a149d7f2b15acb7ef6f20ccba2a58381ead5ae/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /banner.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs'); 2 | const pkg = require('./package.json'); 3 | const filename = 'assets/js/main.min.js'; 4 | const script = fs.readFileSync(filename); 5 | const padStart = str => ('0' + str).slice(-2) 6 | const dateObj = new Date; 7 | const date = `${dateObj.getFullYear()}-${padStart(dateObj.getMonth() + 1)}-${padStart(dateObj.getDate())}`; 8 | const banner = `/*! 9 | * Minimal Mistakes Jekyll Theme ${pkg.version} by ${pkg.author} 10 | * Copyright ${dateObj.getFullYear()} Michael Rose - mademistakes.com | @mmistakes 11 | * Licensed under ${pkg.license} 12 | */ 13 | `; 14 | 15 | if (script.slice(0, 3) != '/**') { 16 | fs.writeFileSync(filename, banner + script); 17 | } -------------------------------------------------------------------------------- /crowdin.yaml: -------------------------------------------------------------------------------- 1 | files: 2 | - source: /_pages/en_US/*.txt 3 | translation: /_pages/%locale_with_underscore%/%original_file_name% 4 | - source: /_data/navigation/en_US.yml 5 | translation: /_data/navigation/%locale_with_underscore%.yml 6 | -------------------------------------------------------------------------------- /images/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacks-guide/Guide_WiiU-OLD/26a149d7f2b15acb7ef6f20ccba2a58381ead5ae/images/android-chrome-192x192.png -------------------------------------------------------------------------------- /images/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacks-guide/Guide_WiiU-OLD/26a149d7f2b15acb7ef6f20ccba2a58381ead5ae/images/android-chrome-512x512.png -------------------------------------------------------------------------------- /images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacks-guide/Guide_WiiU-OLD/26a149d7f2b15acb7ef6f20ccba2a58381ead5ae/images/apple-touch-icon.png -------------------------------------------------------------------------------- /images/bio-photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacks-guide/Guide_WiiU-OLD/26a149d7f2b15acb7ef6f20ccba2a58381ead5ae/images/bio-photo.png -------------------------------------------------------------------------------- /images/bitcoin_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacks-guide/Guide_WiiU-OLD/26a149d7f2b15acb7ef6f20ccba2a58381ead5ae/images/bitcoin_white.png -------------------------------------------------------------------------------- /images/browserconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | #2E3440 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /images/ethereum_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacks-guide/Guide_WiiU-OLD/26a149d7f2b15acb7ef6f20ccba2a58381ead5ae/images/ethereum_white.png -------------------------------------------------------------------------------- /images/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacks-guide/Guide_WiiU-OLD/26a149d7f2b15acb7ef6f20ccba2a58381ead5ae/images/favicon-16x16.png -------------------------------------------------------------------------------- /images/favicon-194x194.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacks-guide/Guide_WiiU-OLD/26a149d7f2b15acb7ef6f20ccba2a58381ead5ae/images/favicon-194x194.png -------------------------------------------------------------------------------- /images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacks-guide/Guide_WiiU-OLD/26a149d7f2b15acb7ef6f20ccba2a58381ead5ae/images/favicon-32x32.png -------------------------------------------------------------------------------- /images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacks-guide/Guide_WiiU-OLD/26a149d7f2b15acb7ef6f20ccba2a58381ead5ae/images/favicon.ico -------------------------------------------------------------------------------- /images/home-page-feature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacks-guide/Guide_WiiU-OLD/26a149d7f2b15acb7ef6f20ccba2a58381ead5ae/images/home-page-feature.jpg -------------------------------------------------------------------------------- /images/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Guide", 3 | "icons": [ 4 | { 5 | "src": "images\/android-chrome-192x192.png?v=PYEmwKvQAx", 6 | "sizes": "192x192", 7 | "type": "image\/png" 8 | }, 9 | { 10 | "src": "images\/android-chrome-512x512.png?v=PYEmwKvQAx", 11 | "sizes": "512x512", 12 | "type": "image\/png" 13 | } 14 | ], 15 | "theme_color": "#000000", 16 | "display": "standalone" 17 | } 18 | -------------------------------------------------------------------------------- /images/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacks-guide/Guide_WiiU-OLD/26a149d7f2b15acb7ef6f20ccba2a58381ead5ae/images/mstile-144x144.png -------------------------------------------------------------------------------- /images/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacks-guide/Guide_WiiU-OLD/26a149d7f2b15acb7ef6f20ccba2a58381ead5ae/images/mstile-150x150.png -------------------------------------------------------------------------------- /images/paypal_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacks-guide/Guide_WiiU-OLD/26a149d7f2b15acb7ef6f20ccba2a58381ead5ae/images/paypal_white.png --------------------------------------------------------------------------------