diff --git a/.editorconfig b/.editorconfig deleted file mode 100644 index 3a287c451..000000000 --- a/.editorconfig +++ /dev/null @@ -1,13 +0,0 @@ -# editorconfig.org -root = true - -[*] -indent_style = space -indent_size = 2 -end_of_line = lf -charset = utf-8 -trim_trailing_whitespace = true -insert_final_newline = false - -[*.md] -trim_trailing_whitespace = false diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 013151d3a..ac68a9ba8 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -13,6 +13,7 @@ jobs: - uses: actions/checkout@v3 with: persist-credentials: false + submodules: recursive - uses: ruby/setup-ruby@v1 with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 81da3f00e..35a79d4a9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,6 +12,7 @@ jobs: - uses: actions/checkout@v3 with: persist-credentials: false + submodules: recursive - uses: ruby/setup-ruby@v1 with: diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 000000000..7f9b25887 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,4 @@ +[submodule "_theme"] + path = _theme + url = https://github.com/hacks-guide/minimal-mistakes + branch = hacks-guide diff --git a/Gemfile b/Gemfile index 30db2b4a0..f7b0751d1 100644 --- a/Gemfile +++ b/Gemfile @@ -1,6 +1,4 @@ source "https://rubygems.org" -gem "webrick", "~>1.7" -gem "kramdown-parser-gfm", "~>1.1" gem "jekyll-sass-converter", "~>2.2" gem "wdm", "~> 0.1.0" if Gem.win_platform? -gemspec +gem 'minimal-mistakes-hacks-guide', :path => '_theme' diff --git a/README.md b/README.md index 2aab20639..13cf61ebc 100644 --- a/README.md +++ b/README.md @@ -10,10 +10,19 @@ This requires the following installed on your system: - ruby(-dev) - bundler -To test the website locally, simply run the following commands: +To test the website locally, clone the source code: + +```sh +git clone https://github.com/hacks-guide/Guide_Wii --recurse-submodules +cd Guide_Wii +``` + +Then simply run the following commands: + ```sh bundle config set --local path vendor/bundle bundle install -bundle exec jekyll serve --incremental +bundle exec jekyll serve ``` + The website should now be running on http://127.0.0.1:4000/. diff --git a/Rakefile b/Rakefile deleted file mode 100644 index 921330e6a..000000000 --- a/Rakefile +++ /dev/null @@ -1,76 +0,0 @@ -require "bundler/gem_tasks" -require "jekyll" -require "listen" - -def listen_ignore_paths(base, options) - [ - /_config\.ya?ml/, - /_site/, - /\.jekyll-metadata/ - ] -end - -def listen_handler(base, options) - site = Jekyll::Site.new(options) - Jekyll::Command.process_site(site) - proc do |modified, added, removed| - t = Time.now - c = modified + added + removed - n = c.length - relative_paths = c.map{ |p| Pathname.new(p).relative_path_from(base).to_s } - print Jekyll.logger.message("Regenerating:", "#{relative_paths.join(", ")} changed... ") - begin - Jekyll::Command.process_site(site) - puts "regenerated in #{Time.now - t} seconds." - rescue => e - puts "error:" - Jekyll.logger.warn "Error:", e.message - Jekyll.logger.warn "Error:", "Run jekyll build --trace for more information." - end - end -end - -task :preview do - base = Pathname.new('.').expand_path - options = { - "source" => base.join('test').to_s, - "destination" => base.join('test/_site').to_s, - "force_polling" => false, - "serving" => true, - "theme" => "minimal-mistakes-jekyll" - } - - options = Jekyll.configuration(options) - - ENV["LISTEN_GEM_DEBUGGING"] = "1" - listener = Listen.to( - base.join("_data"), - base.join("_includes"), - base.join("_layouts"), - base.join("_sass"), - base.join("assets"), - options["source"], - :ignore => listen_ignore_paths(base, options), - :force_polling => options['force_polling'], - &(listen_handler(base, options)) - ) - - begin - listener.start - Jekyll.logger.info "Auto-regeneration:", "enabled for '#{options["source"]}'" - - unless options['serving'] - trap("INT") do - listener.stop - puts " Halting auto-regeneration." - exit 0 - end - - loop { sleep 1000 } - end - rescue ThreadError - # You pressed Ctrl-C, oh my! - end - - Jekyll::Commands::Serve.process(options) -end diff --git a/_config.yml b/_config.yml index 9181a8fb2..df8358415 100755 --- a/_config.yml +++ b/_config.yml @@ -10,145 +10,32 @@ # Review documentation to determine if you should use `theme` or `remote_theme` # https://mmistakes.github.io/minimal-mistakes/docs/quick-start-guide/#installing-the-theme -# theme : "minimal-mistakes-jekyll" -# remote_theme : "mmistakes/minimal-mistakes" -minimal_mistakes_skin : "dark" # "default" # "air", "aqua", "contrast", "dark", "dirt", "neon", "mint", "plum", "sunrise" +theme : "minimal-mistakes-hacks-guide" # Site Settings -locale : "en-US" title : "Wii Hacks Guide" -title_separator : "-" -subtitle : # site tagline that appears below site title in masthead name : "Nintendo Homebrew" description : "The complete guide to modding your Wii (and Wii mini)" url : "https://wii.hacks.guide" # the base hostname & protocol for your site e.g. "https://mmistakes.github.io" enforce_ssl : "wii.hacks.guide" -baseurl : # the subpath of your site, e.g. "/blog" repository : "hacks-guide/Guide_Wii" # GitHub username/repo-name e.g. "mmistakes/minimal-mistakes" -teaser : # path of fallback teaser image, e.g. "/assets/images/500x300.png" -logo : # path of logo image to display in the masthead, e.g. "/assets/images/88x88.png" -masthead_title : # overrides the website title displayed in the masthead, use " " for no title -# breadcrumbs : false # true, false (default) -words_per_minute : 200 -comments: - provider : # false (default), "disqus", "discourse", "facebook", "staticman", "staticman_v2", "utterances", "giscus", "custom" - disqus: - shortname : # https://help.disqus.com/customer/portal/articles/466208-what-s-a-shortname- - discourse: - server : # https://meta.discourse.org/t/embedding-discourse-comments-via-javascript/31963 , e.g.: meta.discourse.org - facebook: - # https://developers.facebook.com/docs/plugins/comments - appid : - num_posts : # 5 (default) - colorscheme : # "light" (default), "dark" - utterances: - theme : # "github-light" (default), "github-dark" - issue_term : # "pathname" (default) - giscus: - repo_id : # Shown during giscus setup at https://giscus.app - category_name : # Full text name of the category - category_id : # Shown during giscus setup at https://giscus.app - discussion_term : # "pathname" (default), "url", "title", "og:title" - reactions_enabled : # '1' for enabled (default), '0' for disabled - theme : # "light" (default), "dark", "dark_dimmed", "transparent_dark", "preferred_color_scheme" - staticman: - branch : # "master" - endpoint : # "https://{your Staticman v3 API}/v3/entry/github/" -reCaptcha: - siteKey : - secret : -atom_feed: - path : # blank (default) uses feed.xml - hide : # true, false (default) -search : # true, false (default) -search_full_content : # true, false (default) -search_provider : # lunr (default), algolia, google -algolia: - application_id : # YOUR_APPLICATION_ID - index_name : # YOUR_INDEX_NAME - search_only_api_key : # YOUR_SEARCH_ONLY_API_KEY - powered_by : # true (default), false -google: - search_engine_id : # YOUR_SEARCH_ENGINE_ID - instant_search : # false (default), true -# SEO Related -google_site_verification : -bing_site_verification : -yandex_site_verification : -naver_site_verification : - -# Social Sharing -twitter: - username : -facebook: - username : - app_id : - publisher : -og_image : # Open Graph/Twitter default site image -# For specifying social profiles -# - https://developers.google.com/structured-data/customize/social-profiles -social: - type : # Person or Organization (defaults to Person) - name : # If the user or organization name differs from the site's name - links: # An array of links to social media profiles - -# Analytics -analytics: - provider : # false (default), "google", "google-universal", "google-gtag", "custom" - google: - tracking_id : - anonymize_ip : # true, false (default) - # Site Author author: name : "Nintendo Homebrew" - avatar : # path of avatar image, e.g. "/assets/images/site-config/bio-photo.jpg" bio : "Nintendo Homebrew Community" location : "Nullsec" - email : links: - # - label: "Email" - # icon: "fas fa-fw fa-envelope-square" - # url: "mailto:your.name@email.com" - # - label: "Website" - # icon: "fas fa-fw fa-link" - # url: "https://your-website.com" - # - label: "Twitter" - # icon: "fab fa-fw fa-twitter-square" - # url: "https://twitter.com/" - # - label: "Facebook" - # icon: "fab fa-fw fa-facebook-square" - # url: "https://facebook.com/" - label: "GitHub" icon: "fab fa-fw fa-github" url: "https://github.com/hacks-guide/Guide_Wii" - # - label: "Instagram" - # icon: "fab fa-fw fa-instagram" - # url: "https://instagram.com/" # Site Footer footer: links: - # - label: "Twitter" - # icon: "fab fa-fw fa-twitter-square" - # url: - # - label: "Facebook" - # icon: "fab fa-fw fa-facebook-square" - # url: - label: "GitHub" icon: "fab fa-fw fa-github" url: "https://github.com/hacks-guide/Guide_Wii" - # - label: "GitLab" - # icon: "fab fa-fw fa-gitlab" - # url: - # - label: "Bitbucket" - # icon: "fab fa-fw fa-bitbucket" - # url: - # - label: "Instagram" - # icon: "fab fa-fw fa-instagram" - # url: - # Reading Files include: @@ -216,100 +103,6 @@ exclude: [ _pages/zh_TW ] -keep_files: - - .git - - .svn -encoding: "utf-8" -markdown_ext: "markdown,mkdown,mkdn,mkd,md,txt" - - -# Conversion -markdown: kramdown -highlighter: rouge -lsi: false -excerpt_separator: "\n\n" -incremental: false - - -# Markdown Processing -kramdown: - input: GFM - hard_wrap: false - auto_ids: true - footnote_nr: 1 - entity_output: as_char - toc_levels: 1..6 - smart_quotes: lsquo,rsquo,ldquo,rdquo - enable_coderay: false - - -# Sass/SCSS -sass: - sass_dir: _sass - style: compressed # https://sass-lang.com/documentation/file.SASS_REFERENCE.html#output_style - - -# Outputting -# permalink: /:categories/:title/ -# paginate: 5 # amount of posts to show -# paginate_path: /page:num/ -# timezone: # https://en.wikipedia.org/wiki/List_of_tz_database_time_zones - - -# Plugins (previously gems:) -plugins: - - jekyll-paginate - - jekyll-sitemap - - jekyll-gist - - jekyll-feed - - jekyll-include-cache - -# mimic GitHub Pages with --safe -whitelist: - - jekyll-paginate - - jekyll-sitemap - - jekyll-gist - - jekyll-feed - - jekyll-include-cache - - -# Archives -# Type -# - GitHub Pages compatible archive pages built with Liquid ~> type: liquid (default) -# - Jekyll Archives plugin archive pages ~> type: jekyll-archives -# Path (examples) -# - Archive page should exist at path when using Liquid method or you can -# expect broken links (especially with breadcrumbs enabled) -# - /tags/my-awesome-tag/index.html ~> path: /tags/ -# - /categories/my-awesome-category/index.html ~> path: /categories/ -# - /my-awesome-category/index.html ~> path: / -category_archive: - type: liquid - path: /categories/ -tag_archive: - type: liquid - path: /tags/ -# https://github.com/jekyll/jekyll-archives -# jekyll-archives: -# enabled: -# - categories -# - tags -# layouts: -# category: archive-taxonomy -# tag: archive-taxonomy -# permalinks: -# category: /categories/:name/ -# tag: /tags/:name/ - - -# HTML Compression -# - https://jch.penibelst.de/ -compress_html: - clippings: all - ignore: - envs: development - - # Defaults defaults: # _pages diff --git a/_data/navigation.yml b/_data/navigation.yml deleted file mode 100755 index 6f30866f3..000000000 --- a/_data/navigation.yml +++ /dev/null @@ -1,12 +0,0 @@ -# main links -main: - - title: "Quick-Start Guide" - url: https://mmistakes.github.io/minimal-mistakes/docs/quick-start-guide/ - # - title: "About" - # url: https://mmistakes.github.io/minimal-mistakes/about/ - # - title: "Sample Posts" - # url: /year-archive/ - # - title: "Sample Collections" - # url: /collection-archive/ - # - title: "Sitemap" - # url: /sitemap/ \ No newline at end of file diff --git a/_data/navigation/zh_CN.yml b/_data/navigation/zh_CN.yml index 22a3cb3a1..7ef8cdbea 100644 --- a/_data/navigation/zh_CN.yml +++ b/_data/navigation/zh_CN.yml @@ -10,14 +10,14 @@ main: title: 网站导航 url: site-navigation - - title: FAQ + title: 常见问题指南 url: faq top: - title: 本网站使用 cookie 来在侧边栏显示当前指南进度,并提升网站的其它功能。 bottom: - - title: For support in English, ask for help at Nintendo Homebrew on Discord. + title: 若要寻求支持,请在 Nintendo Homebrew Discord 频道上使用英语寻求帮助。 footer: - title: 来源 @@ -29,7 +29,7 @@ footer: title: 捐赠 url: privacy-policy - - title: Donations + title: 捐赠 url: donations sidebar_title: - @@ -57,16 +57,16 @@ sidebar_pages: title: Wilbrand url: wilbrand - - title: Multiple Options + title: 多选项 url: multiple-options - - title: Homebrew Channel and BootMii Installation + title: 安装Homebrew Channel和BootMii url: hbc - - title: Homebrew Channel - for Wii mini only + title: Homebrew Channel - 仅适用于Wii mini url: hbc-mini - - title: BootMii Backup + title: BootMii 备份 url: bootmii - title: Priiloader @@ -75,7 +75,7 @@ sidebar_pages: title: Open Shop Channel url: osc - - title: d2xl cIOS for Wii mini (experimental) + title: 供Wii mini安装的d2xl cIOS (实验性功能) url: cios-mini - title: Wii mini NAND Dumper diff --git a/_data/ui-text.yml b/_data/ui-text.yml deleted file mode 100755 index 3f4271cbe..000000000 --- a/_data/ui-text.yml +++ /dev/null @@ -1,502 +0,0 @@ -# User interface text and labels - -# English (default) -# ----------------- -en: &DEFAULT_EN - page : "Page" - pagination_previous : "Previous" - pagination_next : "Next" - breadcrumb_home_label : "Home" - breadcrumb_separator : "/" - menu_label : "Toggle Menu" - toc_label : "On This Page" - ext_link_label : "Direct Link" - less_than : "less than" - minute_read : "minute read" - share_on_label : "Share on" - meta_label : - tags_label : "Tags:" - categories_label : "Categories:" - date_label : "Updated:" - comments_label : "Leave a Comment" - comments_title : "Comments" - more_label : "Learn More" - related_label : "You May Also Enjoy" - follow_label : "Follow:" - feed_label : "Feed" - powered_by : "Powered by" - website_label : "Website" - email_label : "Email" - recent_posts : "Recent Posts" - undefined_wpm : "Undefined parameter words_per_minute at _config.yml" - comment_form_info : "Your email address will not be published. Required fields are marked" - comment_form_comment_label : "Comment" - comment_form_md_info : "Markdown is supported." - comment_form_name_label : "Name" - comment_form_email_label : "Email address" - comment_form_website_label : "Website (optional)" - comment_btn_submit : "Submit Comment" - comment_btn_submitted : "Submitted" - comment_success_msg : "Thanks for your comment! It will show on the site once it has been approved." - comment_error_msg : "Sorry, there was an error with your submission. Please make sure all required fields have been completed and try again." - loading_label : "Loading..." -en-US: - <<: *DEFAULT_EN -en-CA: - <<: *DEFAULT_EN -en-GB: - <<: *DEFAULT_EN -en-AU: - <<: *DEFAULT_EN - -# Spanish -# -------------- -es: &DEFAULT_ES - page : "Página" - pagination_previous : "Anterior" - pagination_next : "Siguiente" - breadcrumb_home_label : "Inicio" - breadcrumb_separator : "/" - menu_label : - toc_label : "Contenidos" - ext_link_label : "Enlace" - less_than : "menos de" - minute_read : "minuto de lectura" - share_on_label : "Compartir" - meta_label : - tags_label : "Etiquetas:" - categories_label : "Categorías:" - date_label : "Actualizado:" - comments_label : "Comentar" - comments_title : - more_label : "Ver más" - related_label : "Podrías ver también" - follow_label : "Seguir:" - feed_label : "Feed" - powered_by : "Powered by" - website_label : "Sitio web" - email_label : "Email" - recent_posts : "Entradas recientes" - undefined_wpm : "Parametro words_per_minute (Palabras por minuto) no definido en _config.yml" - comment_form_info : - comment_form_comment_label : - comment_form_md_info : - comment_form_name_label : - comment_form_email_label : - comment_form_website_label : - comment_btn_submit : - comment_btn_submitted : - comment_success_msg : - comment_error_msg : - loading_label : -es-ES: - <<: *DEFAULT_ES -es-MX: - <<: *DEFAULT_ES -es-CO: - <<: *DEFAULT_ES - -# French -# ----------------- -fr: &DEFAULT_FR - page : "Page" - pagination_previous : "Précédent" - pagination_next : "Suivant" - breadcrumb_home_label : "Accueil" - breadcrumb_separator : "/" - menu_label : - toc_label : "Sur cette page" - ext_link_label : "Lien direct" - less_than : "plus petit que" - minute_read : "minute de lecture" - share_on_label : "Partager sur" - meta_label : - tags_label : "Tags :" - categories_label : "Catégories :" - date_label : "Mis à jour :" - comments_label : "Laisser un commentaire" - comments_title : - more_label : "Lire plus" - related_label : "Vous pourriez aimer" - follow_label : "Suivez moi" - feed_label : "Flux" - powered_by : "Propulsé par" - website_label : "Site" - email_label : "Email" - recent_posts : "Posts récents" - undefined_wpm : "Le paramètre words_per_minute n'est pas défini dans _config.yml" - comments_title : "Commentaires" - comment_form_info : "Votre adresse email ne sera pas visible. Les champs obligatoires sont marqués" - comment_form_comment_label : "Commentaire" - comment_form_md_info : "Markdown est supporté." - comment_form_name_label : "Nom" - comment_form_email_label : "Adresse mail" - comment_form_website_label : "Site web (optionnel)" - comment_btn_submit : "Envoyer" - comment_btn_submitted : "Envoyé" - comment_success_msg : "Merci pour votre comentaire, il sera visible sur le site une fois approuvé." - comment_error_msg : "Désolé, une erreur est survenue lors de la soumission. Vérifiez que les champs obligatoires ont été remplis et réessayez." - loading_label : "Chargement..." -fr-FR: - <<: *DEFAULT_FR -fr-BE: - <<: *DEFAULT_FR -fr-CH: - <<: *DEFAULT_FR - -# Turkish -# ----------------- -tr: &DEFAULT_TR - page : "Sayfa" - pagination_previous : "Önceki" - pagination_next : "Sonraki" - breadcrumb_home_label : "Ana Sayfa" - breadcrumb_separator : "/" - menu_label : - toc_label : "İçindekiler" - ext_link_label : "Doğrudan Bağlantı" - less_than : "Şu süreden az: " - minute_read : "dakika tahmini okuma süresi" - share_on_label : "Paylaş" - meta_label : - tags_label : "Etiketler:" - categories_label : "Kategoriler:" - date_label : "Güncelleme tarihi:" - comments_label : "Yorum yapın" - comments_title : "Yorumlar" - more_label : "Daha fazlasını öğrenin" - related_label : "Bunlar ilginizi çekebilir:" - follow_label : "Takip et:" - feed_label : "RSS" - powered_by : "Emeği geçenler: " - website_label : "Web sayfası" - email_label : "E-posta" - recent_posts : "Son yazılar" - undefined_wpm : "_config.yml dosyasında tanımlanmamış words_per_minute parametresi" - comment_form_info : "Email adresiniz gösterilmeyecektir. Zorunlu alanlar işaretlenmiştir" - comment_form_comment_label : "Yorumunuz" - comment_form_md_info : "Markdown desteklenmektedir." - comment_form_name_label : "Adınız" - comment_form_email_label : "Email adresiniz" - comment_form_website_label : "Websiteniz (opsiyonel)" - comment_btn_submit : "Yorum Yap" - comment_btn_submitted : "Gönderildi" - comment_success_msg : "Yorumunuz için teşekkürler! Yorumunuz onaylandıktan sonra sitede gösterilecektir." - comment_error_msg : "Maalesef bir hata oluştu. Lütfen zorunlu olan tüm alanları doldurduğunuzdan emin olun ve sonrasında tekrar deneyin." - loading_label : "Yükleniyor..." -tr-TR: - <<: *DEFAULT_TR - -# Portuguese -# ----------------- -pt: &DEFAULT_PT - page : "Página" - pagination_previous : "Anterior" - pagination_next : "Seguinte" - breadcrumb_home_label : "Início" - breadcrumb_separator : "/" - menu_label : - toc_label : "Nesta Página" - ext_link_label : "Link Direto" - less_than : "menos de" - minute_read : "minutos de leitura" - share_on_label : "Partilhar no" - meta_label : - tags_label : "Etiquetas:" - categories_label : "Categorias:" - date_label : "Atualizado:" - comments_label : "Deixe um Comentário" - comments_title : "Comentários" - more_label : "Saber mais" - related_label : "Também pode gostar de" - follow_label : "Siga:" - feed_label : "Feed" - powered_by : "Feito com" - website_label : "Site" - email_label : "Email" - recent_posts : "Artigos Recentes" - undefined_wpm : "Parâmetro words_per_minute não definido em _config.yml" - comment_form_info : "O seu endereço email não será publicado. Os campos obrigatórios estão assinalados" - comment_form_comment_label : "Comentário" - comment_form_md_info : "Markdown é suportado." - comment_form_name_label : "Nome" - comment_form_email_label : "Endereço Email" - comment_form_website_label : "Site (opcional)" - comment_btn_submit : "Sumbeter Comentário" - comment_btn_submitted : "Submetido" - comment_success_msg : "Obrigado pelo seu comentário! Será visível no site logo que aprovado." - comment_error_msg : "Lamento, ocorreu um erro na sua submissão. Por favor verifique se todos os campos obrigatórios estão corretamente preenchidos e tente novamente." - loading_label : "A carregar..." -# Brazilian Portuguese -pt-BR: - page : "Página" - pagination_previous : "Anterior" - pagination_next : "Próxima" - breadcrumb_home_label : "Home" - breadcrumb_separator : "/" - menu_label : - toc_label : "Nesta página" - ext_link_label : "Link direto" - less_than : "meno que" - minute_read : "minutos de leitura" - share_on_label : "Compartilhe em" - meta_label : - tags_label : "Tags:" - categories_label : "Categorias:" - date_label : "Atualizado em:" - comments_label : "Deixe um comentário" - comments_title : - more_label : "Aprenda Mais" - related_label : "Você Talvez Goste Também" - follow_label : "Acompanhe em" - feed_label : "Feed" - powered_by : "Feito com" - website_label : "Site" - email_label : "Email" - recent_posts : "Postagens recentes" - undefined_wpm : "Parâmetro indefinido em word_per_minute no _config.yml" - comment_form_info : - comment_form_comment_label : - comment_form_md_info : - comment_form_name_label : - comment_form_email_label : - comment_form_website_label : - comment_btn_submit : - comment_btn_submitted : - comment_success_msg : - comment_error_msg : - loading_label : -pt-BR: - <<: *DEFAULT_PT - -# Italian -# ----------------- -it: &DEFAULT_IT - page : "Pagina" - pagination_previous : "Precedente" - pagination_next : "Prossima" - breadcrumb_home_label : "Home" - breadcrumb_separator : "/" - menu_label : - toc_label : "Indice della pagina" - ext_link_label : "Link" - less_than : "meno di" - minute_read : "minuto/i di lettura" - share_on_label : "Condividi" - meta_label : - tags_label : "Tags:" - categories_label : "Categorie:" - date_label : "Aggiornato:" - comments_label : "Scrivi un commento" - comments_title : - more_label : "Scopri di più" - related_label : "Potrebbe Piacerti Anche" - follow_label : "Segui:" - feed_label : "Feed" - powered_by : "Powered by" - website_label : "Website" - email_label : "Email" - recent_posts : "Articoli Recenti" - undefined_wpm : "Parametro words_per_minute non definito in _config.yml" - comment_form_info : "Il tuo indirizzo email non sarà pubblicato. Sono segnati i campi obbligatori" - comment_form_comment_label : "Commenta" - comment_form_md_info : "Il linguaggio Markdown è supportato" - comment_form_name_label : "Nome" - comment_form_email_label : "Indirizzo email" - comment_form_website_label : "Sito Web (opzionale)" - comment_btn_submit : "Invia commento" - comment_btn_submitted : "Inviato" - comment_success_msg : "Grazie per il tuo commento! Verrà visualizzato nel sito una volta che sarà approvato." - comment_error_msg : "C'è stato un errore con il tuo invio. Assicurati che tutti i campi richiesti siano stati completati e riprova." - loading_label : "Caricamento..." -it-IT: - <<: *DEFAULT_IT - -# Chinese (zh-CN Chinese - China) -# ----------------- -zh: &DEFAULT_ZH - page : "页面" - pagination_previous : "向前" - pagination_next : "向后" - breadcrumb_home_label : "首页" - breadcrumb_separator : "/" - menu_label : - toc_label : "在本页上" - ext_link_label : "直接链接" - less_than : "少于" - minute_read : "分钟 阅读" - share_on_label : "分享" - meta_label : - tags_label : "标签:" - categories_label : "分类:" - date_label : "最新的:" - comments_label : "留下评论" - comments_title : "评论" - more_label : "了解更多" - related_label : "猜您还喜欢" - follow_label : "关注:" - feed_label : "Feed" - powered_by : "Powered by" - website_label : "网站" - email_label : "Email" - recent_posts : "最新文章" - undefined_wpm : "Undefined parameter words_per_minute at _config.yml" - comment_form_info : "Your email address will not be published. Required fields are marked" - comment_form_comment_label : "Comment" - comment_form_md_info : "Markdown is supported." - comment_form_name_label : "Name" - comment_form_email_label : "Email address" - comment_form_website_label : "Website (optional)" - comment_btn_submit : "Submit Comment" - comment_btn_submitted : "Submitted" - comment_success_msg : "Thanks for your comment! It will show on the site once it has been approved." - comment_error_msg : "Sorry, there was an error with your submission. Please make sure all required fields have been completed and try again." - loading_label : "Loading..." -zh-CN: - <<: *DEFAULT_ZH -zh-HK: - <<: *DEFAULT_ZH -zh-SG: - <<: *DEFAULT_ZH -zh-TW: - <<: *DEFAULT_ZH - -# German / Deutsch -# ----------------- -de: &DEFAULT_DE - page : "Seite" - pagination_previous : "Vorherige" - pagination_next : "Nächste" - breadcrumb_home_label : "Home" - breadcrumb_separator : "/" - menu_label : - toc_label : "Auf dieser Seite" - ext_link_label : "Direkter Link" - less_than : "weniger als" - minute_read : "Minuten zum lesen" - share_on_label : "Teilen auf" - meta_label : - tags_label : "Tags:" - categories_label : "Kategorien:" - date_label : "Aktualisiert:" - comments_label : "Hinterlassen sie einen Kommentar" - comments_title : "Kommentare" - more_label : "Mehr anzeigen" - related_label : "Ihnen gefällt vielleicht auch" - follow_label : "Folgen:" - feed_label : "Feed" - powered_by : "Powered by" - website_label : "Webseite" - email_label : "E-Mail" - recent_posts : "Aktuelle Beiträge" - undefined_wpm : "Undefinierter Parameter words_per_minute in _config.yml" - comment_form_info : "Ihre E-Mail Adresse wird nicht veröffentlicht. Benötigte Felder sind markiert" - comment_form_comment_label : "Kommentar" - comment_form_md_info : "Markdown wird unterstützt." - comment_form_name_label : "Name" - comment_form_email_label : "E-Mail Addresse" - comment_form_website_label : "Webseite (optional)" - comment_btn_submit : "Kommentar absenden" - comment_btn_submitted : "Versendet" - comment_success_msg : "Danke für ihren Kommentar! Er wird auf der Seite angezeigt, nachdem er geprüft wurde." - comment_error_msg : "Entschuldigung, es gab einen Fehler. Bitte füllen sie alle benötigten Felder aus und versuchen sie es erneut." - loading_label : "Lade..." -de-DE: - <<: *DEFAULT_DE -de-AT: - <<: *DEFAULT_DE -de-CH: - <<: *DEFAULT_DE -de-BE: - <<: *DEFAULT_DE -de-LI: - <<: *DEFAULT_DE -de-LU: - <<: *DEFAULT_DE - -# Dutch / Nederlands -# ----------------- -nl: &DEFAULT_NL - page : "Pagina" - pagination_previous : "Vorige" - pagination_next : "Volgende" - breadcrumb_home_label : "Home" - breadcrumb_separator : "/" - menu_label : "Toggle Menu" - toc_label : "Op Deze Pagina" - ext_link_label : "Directe Link" - less_than : "minder dan" - minute_read : "minuten lezen" - share_on_label : "Deel op" - meta_label : - tags_label : "Tags:" - categories_label : "Categorieën:" - date_label : "Geüpdate:" - comments_label : "Laat een reactie achter:" - comments_title : "Reacties" - more_label : "Kom Meer Te Weten" - related_label : "Ook Interessant Voor Jou" - follow_label : "Volg:" - feed_label : "Feed" - powered_by : "Aangedreven door" - website_label : "Website" - email_label : "E-mail" - recent_posts : "Recente Berichten" - undefined_wpm : "Parameter words_per_minute in _config.yml niet gedefinieerd" - comment_form_info : "Je e-mailadres zal niet openbaar gemaakt worden. Vereiste velden zijn gemarkeerd" - comment_form_comment_label : "Commentaar" - comment_form_md_info : "Markdown wordt ondersteund." - comment_form_name_label : "Naam" - comment_form_email_label : "E-mailadres" - comment_form_website_label : "Website (optioneel)" - comment_btn_submit : "Verstuur Commentaar" - comment_btn_submitted : "Verstuurd" - comment_success_msg : "Bedankt voor je commentaar! Nadat het goedgekeurd is, zal het op deze site weergeven worden." - comment_error_msg : "Helaas, er is een probleem opgetreden met het versturen van je commentaar. Zorg dat alle vereiste velden ingevuld zijn en probeer opnieuw." - loading_label : "Laden..." - -# Polish / Polski -# ----------------- -pl: &DEFAULT_PL - page : "Strona" - pagination_previous : "Poprzedni" - pagination_next : "Następny" - breadcrumb_home_label : "Home" - breadcrumb_separator : "/" - menu_label : "Otwórz menu" - toc_label : "Na tej stronie" - ext_link_label : "Link bezpośredni" - less_than : "mniej niż" - minute_read : "minuta czytania" - share_on_label : "Udostępnij na" - meta_label : - tags_label : "Tagi:" - categories_label : "Kategorie:" - date_label : "Zaktualizowanie:" - comments_label : "Zostaw komentarz" - comments_title : "Komentarze" - more_label : "Dowiedz się więcej" - related_label : "Również może Ci się spodobać" - follow_label : "Obserwuj:" - feed_label : "Kanał" - powered_by : "Powered by" - website_label : "Strona" - email_label : "Email" - recent_posts : "Ostatnie posty" - undefined_wpm : "Undefined parameter words_per_minute at _config.yml" - comment_form_info : "Twój adres email nie zostanie upubliczniony. Wymagane pola zostały podkreślone." - comment_form_comment_label : "Komentarz" - comment_form_md_info : "Markdown is supported." - comment_form_name_label : "Imię" - comment_form_email_label : "Adres email" - comment_form_website_label : "Strona (opcjonalne)" - comment_btn_submit : "Zatwierdź komentarz" - comment_btn_submitted : "Zatwierdzone" - comment_success_msg : "Dziękujemy za komentarz! Pojawi się on na stronie gdy zostanie on zatweirdzony." - comment_error_msg : "Przepraszamy, wystąpił błąd z twoim zgłoszeniem. Upewnij się żę wszystki pola zostały zapełnione i spróbuj ponownie." - loading_label : "Ładowanie..." -pl_PL: - <<: *DEFAULT_PL - -# Another locale -# -------------- \ No newline at end of file diff --git a/_includes/analytics-providers/custom.html b/_includes/analytics-providers/custom.html deleted file mode 100644 index c34b97ad9..000000000 --- a/_includes/analytics-providers/custom.html +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/_includes/analytics-providers/google-gtag.html b/_includes/analytics-providers/google-gtag.html deleted file mode 100644 index 16d0cf176..000000000 --- a/_includes/analytics-providers/google-gtag.html +++ /dev/null @@ -1,9 +0,0 @@ - - - diff --git a/_includes/analytics-providers/google-universal.html b/_includes/analytics-providers/google-universal.html deleted file mode 100644 index 68c2674ba..000000000 --- a/_includes/analytics-providers/google-universal.html +++ /dev/null @@ -1,7 +0,0 @@ - - diff --git a/_includes/analytics-providers/google.html b/_includes/analytics-providers/google.html deleted file mode 100644 index c5742b981..000000000 --- a/_includes/analytics-providers/google.html +++ /dev/null @@ -1,14 +0,0 @@ - diff --git a/_includes/analytics.html b/_includes/analytics.html deleted file mode 100644 index 371469f0a..000000000 --- a/_includes/analytics.html +++ /dev/null @@ -1,14 +0,0 @@ -{% if jekyll.environment == 'production' and site.analytics.provider and page.analytics != false %} - -{% case site.analytics.provider %} -{% when "google" %} - {% include /analytics-providers/google.html %} -{% when "google-universal" %} - {% include /analytics-providers/google-universal.html %} -{% when "google-gtag" %} - {% include /analytics-providers/google-gtag.html %} -{% when "custom" %} - {% include /analytics-providers/custom.html %} -{% endcase %} - -{% endif %} \ No newline at end of file diff --git a/_includes/archive-single.html b/_includes/archive-single.html deleted file mode 100644 index 68174807e..000000000 --- a/_includes/archive-single.html +++ /dev/null @@ -1,30 +0,0 @@ -{% if post.header.teaser %} - {% capture teaser %}{{ post.header.teaser }}{% endcapture %} -{% else %} - {% assign teaser = site.teaser %} -{% endif %} - -{% if post.id %} - {% assign title = post.title | markdownify | remove: "

" | remove: "

" %} -{% else %} - {% assign title = post.title %} -{% endif %} - -
- -
diff --git a/_includes/author-profile-custom-links.html b/_includes/author-profile-custom-links.html deleted file mode 100644 index b89ffcb7d..000000000 --- a/_includes/author-profile-custom-links.html +++ /dev/null @@ -1,7 +0,0 @@ - \ No newline at end of file diff --git a/_includes/author-profile.html b/_includes/author-profile.html deleted file mode 100644 index d384ee734..000000000 --- a/_includes/author-profile.html +++ /dev/null @@ -1,252 +0,0 @@ -{% assign author = page.author | default: page.authors[0] | default: site.author %} -{% assign author = site.data.authors[author] | default: author %} - -
- - {% if author.avatar %} -
- {% if author.home %} - - {{ author.name }} - - {% else %} - {{ author.name }} - {% endif %} -
- {% endif %} - -
- {% if author.home %} -

{{ author.name }}

- {% else %} -

{{ author.name }}

- {% endif %} - {% if author.bio %} -
- {{ author.bio | markdownify }} -
- {% endif %} -
- -
- - -
-
diff --git a/_includes/breadcrumbs.html b/_includes/breadcrumbs.html deleted file mode 100644 index cba3d415f..000000000 --- a/_includes/breadcrumbs.html +++ /dev/null @@ -1,39 +0,0 @@ -{% case site.category_archive.type %} - {% when "liquid" %} - {% assign path_type = "#" %} - {% when "jekyll-archives" %} - {% assign path_type = nil %} -{% endcase %} - -{% if page.collection != 'posts' %} - {% assign path_type = nil %} - {% assign crumb_path = '/' %} -{% else %} - {% assign crumb_path = site.category_archive.path %} -{% endif %} - - diff --git a/_includes/browser-upgrade.html b/_includes/browser-upgrade.html deleted file mode 100644 index ec6ad0acc..000000000 --- a/_includes/browser-upgrade.html +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/_includes/category-list.html b/_includes/category-list.html deleted file mode 100644 index 1439f14fc..000000000 --- a/_includes/category-list.html +++ /dev/null @@ -1,19 +0,0 @@ -{% case site.category_archive.type %} - {% when "liquid" %} - {% assign path_type = "#" %} - {% when "jekyll-archives" %} - {% assign path_type = nil %} -{% endcase %} - -{% if site.category_archive.path %} - {% assign categories_sorted = page.categories | sort_natural %} - -

- {{ site.data.ui-text[site.locale].categories_label | default: "Categories:" }} - - {% for category_word in categories_sorted %} - {% unless forloop.last %}, {% endunless %} - {% endfor %} - -

-{% endif %} \ No newline at end of file diff --git a/_includes/comment.html b/_includes/comment.html deleted file mode 100644 index 2e3013ee2..000000000 --- a/_includes/comment.html +++ /dev/null @@ -1,22 +0,0 @@ - diff --git a/_includes/comments-providers/custom.html b/_includes/comments-providers/custom.html deleted file mode 100644 index 90993691e..000000000 --- a/_includes/comments-providers/custom.html +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/_includes/comments-providers/custom_scripts.html b/_includes/comments-providers/custom_scripts.html deleted file mode 100644 index 6947946a7..000000000 --- a/_includes/comments-providers/custom_scripts.html +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/_includes/comments-providers/discourse.html b/_includes/comments-providers/discourse.html deleted file mode 100644 index aca62cc84..000000000 --- a/_includes/comments-providers/discourse.html +++ /dev/null @@ -1,13 +0,0 @@ -{% if site.comments.discourse.server %} -{% capture canonical %}{% if site.permalink contains '.html' %}{{ page.url | absolute_url }}{% else %}{{ page.url | absolute_url | remove:'index.html' | strip_slash }}{% endif %}{% endcapture %} - - -{% endif %} diff --git a/_includes/comments-providers/disqus.html b/_includes/comments-providers/disqus.html deleted file mode 100644 index 16a6027c7..000000000 --- a/_includes/comments-providers/disqus.html +++ /dev/null @@ -1,15 +0,0 @@ -{% if site.comments.disqus.shortname %} - - -{% endif %} diff --git a/_includes/comments-providers/facebook.html b/_includes/comments-providers/facebook.html deleted file mode 100644 index 009dc1c6c..000000000 --- a/_includes/comments-providers/facebook.html +++ /dev/null @@ -1,8 +0,0 @@ -
- \ No newline at end of file diff --git a/_includes/comments-providers/giscus.html b/_includes/comments-providers/giscus.html deleted file mode 100644 index e89d41cea..000000000 --- a/_includes/comments-providers/giscus.html +++ /dev/null @@ -1,24 +0,0 @@ - \ No newline at end of file diff --git a/_includes/comments-providers/scripts.html b/_includes/comments-providers/scripts.html deleted file mode 100644 index e87badabd..000000000 --- a/_includes/comments-providers/scripts.html +++ /dev/null @@ -1,20 +0,0 @@ -{% if site.comments.provider and page.comments %} -{% case site.comments.provider %} - {% when "disqus" %} - {% include /comments-providers/disqus.html %} - {% when "discourse" %} - {% include /comments-providers/discourse.html %} - {% when "facebook" %} - {% include /comments-providers/facebook.html %} - {% when "staticman" %} - {% include /comments-providers/staticman.html %} - {% when "staticman_v2" %} - {% include /comments-providers/staticman_v2.html %} - {% when "utterances" %} - {% include /comments-providers/utterances.html %} - {% when "giscus" %} - {% include /comments-providers/giscus.html %} - {% when "custom" %} - {% include /comments-providers/custom_scripts.html %} -{% endcase %} -{% endif %} \ No newline at end of file diff --git a/_includes/comments-providers/staticman.html b/_includes/comments-providers/staticman.html deleted file mode 100644 index ae3991d9d..000000000 --- a/_includes/comments-providers/staticman.html +++ /dev/null @@ -1,40 +0,0 @@ -{% if site.repository and site.staticman.branch %} - -{% endif %} diff --git a/_includes/comments-providers/staticman_v2.html b/_includes/comments-providers/staticman_v2.html deleted file mode 100644 index 3d8ba1112..000000000 --- a/_includes/comments-providers/staticman_v2.html +++ /dev/null @@ -1,40 +0,0 @@ -{% if site.repository and site.comments.staticman.branch %} - -{% endif %} diff --git a/_includes/comments-providers/utterances.html b/_includes/comments-providers/utterances.html deleted file mode 100644 index 129ab7791..000000000 --- a/_includes/comments-providers/utterances.html +++ /dev/null @@ -1,20 +0,0 @@ - diff --git a/_includes/comments.html b/_includes/comments.html deleted file mode 100644 index 4ff59e270..000000000 --- a/_includes/comments.html +++ /dev/null @@ -1,162 +0,0 @@ -
- {% capture comments_label %}{{ site.data.ui-text[site.locale].comments_label | default: "Comments" }}{% endcapture %} - {% case site.comments.provider %} - {% when "discourse" %} -

{{ comments_label }}

-
- {% when "disqus" %} -

{{ comments_label }}

-
- {% when "facebook" %} -

{{ comments_label }}

-
- {% when "staticman_v2" %} -
- {% if site.repository and site.comments.staticman.branch %} - -
- {% if site.data.comments[page.slug] %} -

{{ site.data.ui-text[site.locale].comments_title | default: "Comments" }}

- {% assign comments = site.data.comments[page.slug] | sort %} - - {% for comment in comments %} - {% assign email = comment[1].email %} - {% assign name = comment[1].name %} - {% assign url = comment[1].url %} - {% assign date = comment[1].date %} - {% assign message = comment[1].message %} - {% include comment.html index=forloop.index email=email name=name url=url date=date message=message %} - {% endfor %} - {% endif %} -
- - - -
-

{{ site.data.ui-text[site.locale].comments_label | default: "Leave a Comment" }}

-

{{ site.data.ui-text[site.locale].comment_form_info | default: "Your email address will not be published. Required fields are marked" }} *

-
-
- - {{ site.data.ui-text[site.locale].loading_label | default: "Loading..." }} -
- -
- - - -
-
- - -
-
- - -
-
- - -
- - - - - {% if site.reCaptcha.siteKey %} -
-
-
- {% endif %} -
- -
-
-
- - {% if site.reCaptcha.siteKey %}{% endif %} - {% endif %} -
- {% when "staticman" %} -
- {% if site.repository and site.staticman.branch %} - -
- {% if site.data.comments[page.slug] %} -

{{ site.data.ui-text[site.locale].comments_title | default: "Comments" }}

- {% assign comments = site.data.comments[page.slug] | sort %} - - {% for comment in comments %} - {% assign email = comment[1].email %} - {% assign name = comment[1].name %} - {% assign url = comment[1].url %} - {% assign date = comment[1].date %} - {% assign message = comment[1].message %} - {% include comment.html index=forloop.index email=email name=name url=url date=date message=message %} - {% endfor %} - {% endif %} -
- - - -
-

{{ site.data.ui-text[site.locale].comments_label | default: "Leave a Comment" }}

-

{{ site.data.ui-text[site.locale].comment_form_info | default: "Your email address will not be published. Required fields are marked" }} *

-
-
- - {{ site.data.ui-text[site.locale].loading_label | default: "Loading..." }} -
- -
- - - -
-
- - -
-
- - -
-
- - -
- - - - -
- -
-
-
- - {% endif %} -
- {% when "utterances" %} -

{{ comments_label }}

-
- {% when "giscus" %} -

{{ comments_label }}

-
- {% when "custom" %} - {% include /comments-providers/custom.html %} - {% endcase %} -
diff --git a/_includes/documents-collection.html b/_includes/documents-collection.html deleted file mode 100644 index e88d8c4c4..000000000 --- a/_includes/documents-collection.html +++ /dev/null @@ -1,15 +0,0 @@ -{% assign entries = site[include.collection] %} - -{% if include.sort_by %} - {% assign entries = entries | sort: include.sort_by %} -{% endif %} - -{% if include.sort_order == 'reverse' %} - {% assign entries = entries | reverse %} -{% endif %} - -{%- for post in entries -%} - {%- unless post.hidden -%} - {% include archive-single.html %} - {%- endunless -%} -{%- endfor -%} diff --git a/_includes/feature_row b/_includes/feature_row deleted file mode 100644 index 03f09c15c..000000000 --- a/_includes/feature_row +++ /dev/null @@ -1,41 +0,0 @@ -{% if include.id %} - {% assign feature_row = page[include.id] %} -{% else %} - {% assign feature_row = page.feature_row %} -{% endif %} - -
- - {% for f in feature_row %} -
-
- {% if f.image_path %} -
- {% if f.alt %}{{ f.alt }}{% endif %} - {% if f.image_caption %} - {{ f.image_caption | markdownify | remove: "

" | remove: "

" }}
- {% endif %} -
- {% endif %} - -
- {% if f.title %} -

{{ f.title }}

- {% endif %} - - {% if f.excerpt %} -
- {{ f.excerpt | markdownify }} -
- {% endif %} - - {% if f.url %} -

{{ f.btn_label | default: site.data.ui-text[site.locale].more_label | default: "Learn More" }}

- {% endif %} -
-
-
- {% endfor %} - -
diff --git a/_includes/figure b/_includes/figure deleted file mode 100644 index dacc668d1..000000000 --- a/_includes/figure +++ /dev/null @@ -1,9 +0,0 @@ -
- {% if include.alt %}{{ include.alt }}{% endif %} - {%- if include.caption -%} -
- {{ include.caption | markdownify | remove: "

" | remove: "

" }} -
- {%- endif -%} -
diff --git a/_includes/footer.html b/_includes/footer.html deleted file mode 100644 index e210c1a97..000000000 --- a/_includes/footer.html +++ /dev/null @@ -1,31 +0,0 @@ - - - -{% assign split_path = page.path | split: "/" %} -{% assign locale = split_path[1] %} -{% assign titles = site.data.navigation[locale].footer %} - - diff --git a/_includes/footer/custom.html b/_includes/footer/custom.html deleted file mode 100644 index d512599d1..000000000 --- a/_includes/footer/custom.html +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/_includes/gallery b/_includes/gallery deleted file mode 100644 index 71a9e1e1b..000000000 --- a/_includes/gallery +++ /dev/null @@ -1,35 +0,0 @@ -{% if include.id %} - {% assign gallery = page[include.id] %} -{% else %} - {% assign gallery = page.gallery %} -{% endif %} - -{% if include.layout %} - {% assign gallery_layout = include.layout %} -{% else %} - {% if gallery.size == 2 %} - {% assign gallery_layout = 'half' %} - {% elsif gallery.size >= 3 %} - {% assign gallery_layout = 'third' %} - {% else %} - {% assign gallery_layout = '' %} - {% endif %} -{% endif %} - - diff --git a/_includes/group-by-array b/_includes/group-by-array deleted file mode 100644 index 708de41ae..000000000 --- a/_includes/group-by-array +++ /dev/null @@ -1,47 +0,0 @@ - - - -{% assign __empty_array = '' | split: ',' %} -{% assign group_names = __empty_array %} -{% assign group_items = __empty_array %} - - -{% assign __names = include.collection | map: include.field %} - - -{% assign __names = __names | join: ',' | join: ',' | split: ',' %} - - -{% assign __names = __names | sort %} -{% for name in __names %} - - -{% unless name == previous %} - - -{% assign group_names = group_names | push: name %} -{% endunless %} - -{% assign previous = name %} -{% endfor %} - - - -{% for name in group_names %} - - -{% assign __item = __empty_array %} -{% for __element in include.collection %} -{% if __element[include.field] contains name %} -{% assign __item = __item | push: __element %} -{% endif %} -{% endfor %} - - -{% assign group_items = group_items | push: __item %} -{% endfor %} \ No newline at end of file diff --git a/_includes/head.html b/_includes/head.html deleted file mode 100644 index 73e563797..000000000 --- a/_includes/head.html +++ /dev/null @@ -1,25 +0,0 @@ - - -{% include seo.html %} - -{% unless site.atom_feed.hide %} - -{% endunless %} - - - - - - - - - - - -{% if site.head_scripts %} - {% for script in site.head_scripts %} - - {% endfor %} -{% endif %} diff --git a/_includes/head/custom.html b/_includes/head/custom.html deleted file mode 100644 index ec6f7a39d..000000000 --- a/_includes/head/custom.html +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - -{% assign split_path = page.path | split: "/" %} -{% assign locale = split_path[1] %} -{% if locale == 'en_US' %} - {% assign locale_var = '/' %} -{% else %} - {% assign locale_var = locale | prepend:'/' | append:'/' %} -{% endif %} -{% assign top = site.data.navigation[locale].top %} - - - - - - - diff --git a/_includes/nav_list b/_includes/nav_list deleted file mode 100644 index 220c9bdd7..000000000 --- a/_includes/nav_list +++ /dev/null @@ -1,34 +0,0 @@ - -{% assign split_path = page.path | split: "/" %} -{% assign locale = split_path[1] %} -{% if locale == 'en_US' %} - {% assign locale_var = '/' %} -{% else %} - {% assign locale_var = locale | prepend:'/' | append:'/' %} -{% endif %} - -{% assign title = site.data.navigation[locale].sidebar_title %} -{% assign navigation = site.data.navigation[locale].sidebar_pages %} - - - diff --git a/_includes/page__date.html b/_includes/page__date.html deleted file mode 100644 index 4f995ed0a..000000000 --- a/_includes/page__date.html +++ /dev/null @@ -1,6 +0,0 @@ -{% assign date_format = site.date_format | default: "%B %-d, %Y" %} -{% if page.last_modified_at %} -

{{ site.data.ui-text[site.locale].date_label | default: "Updated:" }}

-{% elsif page.date %} -

{{ site.data.ui-text[site.locale].date_label | default: "Updated:" }}

-{% endif %} diff --git a/_includes/page__hero.html b/_includes/page__hero.html deleted file mode 100644 index dd1c26fbf..000000000 --- a/_includes/page__hero.html +++ /dev/null @@ -1,55 +0,0 @@ -{% capture overlay_img_path %}{{ page.header.overlay_image | relative_url }}{% endcapture %} - -{% if page.header.overlay_filter contains "gradient" %} - {% capture overlay_filter %}{{ page.header.overlay_filter }}{% endcapture %} -{% elsif page.header.overlay_filter contains "rgba" %} - {% capture overlay_filter %}{{ page.header.overlay_filter }}{% endcapture %} - {% capture overlay_filter %}linear-gradient({{ overlay_filter }}, {{ overlay_filter }}){% endcapture %} -{% elsif page.header.overlay_filter %} - {% capture overlay_filter %}rgba(0, 0, 0, {{ page.header.overlay_filter }}){% endcapture %} - {% capture overlay_filter %}linear-gradient({{ overlay_filter }}, {{ overlay_filter }}){% endcapture %} -{% endif %} - -{% if page.header.image_description %} - {% assign image_description = page.header.image_description %} -{% else %} - {% assign image_description = page.title %} -{% endif %} - -{% assign image_description = image_description | markdownify | strip_html | strip_newlines | escape_once %} - -
- {% if page.header.overlay_color or page.header.overlay_image %} -
-

- {% if paginator and site.paginate_show_page_num %} - {{ site.title }}{% unless paginator.page == 1 %} {{ site.data.ui-text[site.locale].page | default: "Page" }} {{ paginator.page }}{% endunless %} - {% else %} - {{ page.title | default: site.title | markdownify | remove: "

" | remove: "

" }} - {% endif %} -

- {% if page.tagline %} -

{{ page.tagline | markdownify | remove: "

" | remove: "

" }}

- {% elsif page.header.show_overlay_excerpt != false and page.excerpt %} -

{{ page.excerpt | markdownify | remove: "

" | remove: "

" }}

- {% endif %} - {% include page__meta.html %} - {% if page.header.cta_url %} -

{{ page.header.cta_label | default: site.data.ui-text[site.locale].more_label | default: "Learn More" }}

- {% endif %} - {% if page.header.actions %} -

- {% for action in page.header.actions %} - {{ action.label | default: site.data.ui-text[site.locale].more_label | default: "Learn More" }} - {% endfor %} - {% endif %} -

- {% else %} - {{ image_description }} - {% endif %} - {% if page.header.caption %} - {{ page.header.caption | markdownify | remove: "

" | remove: "

" }}
- {% endif %} -
diff --git a/_includes/page__hero_video.html b/_includes/page__hero_video.html deleted file mode 100644 index a313a23d4..000000000 --- a/_includes/page__hero_video.html +++ /dev/null @@ -1,2 +0,0 @@ -{% assign video = page.header.video %} -{% include video id=video.id provider=video.provider danmaku=video.danmaku %} diff --git a/_includes/page__meta.html b/_includes/page__meta.html deleted file mode 100644 index 3d228c921..000000000 --- a/_includes/page__meta.html +++ /dev/null @@ -1,31 +0,0 @@ -{% assign document = post | default: page %} -{% if document.read_time or document.show_date %} -

- {% if document.show_date and document.date %} - {% assign date = document.date %} - - - {% assign date_format = site.date_format | default: "%B %-d, %Y" %} - - - {% endif %} - - {% if document.read_time and document.show_date %}{% endif %} - - {% if document.read_time %} - {% assign words_per_minute = document.words_per_minute | default: site.words_per_minute | default: 200 %} - {% assign words = document.content | strip_html | number_of_words %} - - - - {% if words < words_per_minute %} - {{ site.data.ui-text[site.locale].less_than | default: "less than" }} 1 {{ site.data.ui-text[site.locale].minute_read | default: "minute read" }} - {% elsif words == words_per_minute %} - 1 {{ site.data.ui-text[site.locale].minute_read | default: "minute read" }} - {% else %} - {{ words | divided_by: words_per_minute }} {{ site.data.ui-text[site.locale].minute_read | default: "minute read" }} - {% endif %} - - {% endif %} -

-{% endif %} diff --git a/_includes/page__taxonomy.html b/_includes/page__taxonomy.html deleted file mode 100644 index 75c76c81d..000000000 --- a/_includes/page__taxonomy.html +++ /dev/null @@ -1,7 +0,0 @@ -{% if site.tag_archive.type and page.tags[0] %} - {% include tag-list.html %} -{% endif %} - -{% if site.category_archive.type and page.categories[0] %} - {% include category-list.html %} -{% endif %} \ No newline at end of file diff --git a/_includes/paginator.html b/_includes/paginator.html deleted file mode 100644 index bffa07946..000000000 --- a/_includes/paginator.html +++ /dev/null @@ -1,69 +0,0 @@ -{% if paginator.total_pages > 1 %} - -{% endif %} diff --git a/_includes/post_pagination.html b/_includes/post_pagination.html deleted file mode 100644 index a93c62797..000000000 --- a/_includes/post_pagination.html +++ /dev/null @@ -1,14 +0,0 @@ -{% if page.previous or page.next %} - -{% endif %} \ No newline at end of file diff --git a/_includes/posts-category.html b/_includes/posts-category.html deleted file mode 100644 index b364f30e9..000000000 --- a/_includes/posts-category.html +++ /dev/null @@ -1,5 +0,0 @@ -{%- for post in site.categories[include.taxonomy] -%} - {%- unless post.hidden -%} - {% include archive-single.html %} - {%- endunless -%} -{%- endfor -%} diff --git a/_includes/posts-tag.html b/_includes/posts-tag.html deleted file mode 100644 index 46fade02a..000000000 --- a/_includes/posts-tag.html +++ /dev/null @@ -1,5 +0,0 @@ -{%- for post in site.tags[include.taxonomy] -%} - {%- unless post.hidden -%} - {% include archive-single.html %} - {%- endunless -%} -{%- endfor -%} diff --git a/_includes/redirect.html b/_includes/redirect.html new file mode 100644 index 000000000..6baf872e1 --- /dev/null +++ b/_includes/redirect.html @@ -0,0 +1,2 @@ + + diff --git a/_includes/scripts.html b/_includes/scripts.html deleted file mode 100644 index a6639b1cd..000000000 --- a/_includes/scripts.html +++ /dev/null @@ -1,30 +0,0 @@ -{% if site.footer_scripts %} - {% for script in site.footer_scripts %} - - {% endfor %} -{% else %} - -{% endif %} - - -{% if site.search == true or page.layout == "search" %} - {%- assign search_provider = site.search_provider | default: "lunr" -%} - {%- case search_provider -%} - {%- when "lunr" -%} - {% include search/lunr-search-scripts.html %} - {%- when "google" -%} - {% include search/google-search-scripts.html %} - {%- when "algolia" -%} - {% include search/algolia-search-scripts.html %} - {%- endcase -%} -{% endif %} - - -{% include analytics.html %} -{% include /comments-providers/scripts.html %} - -{% if site.after_footer_scripts %} - {% for script in site.after_footer_scripts %} - - {% endfor %} -{% endif %} diff --git a/_includes/search/algolia-search-scripts.html b/_includes/search/algolia-search-scripts.html deleted file mode 100644 index 2728d290e..000000000 --- a/_includes/search/algolia-search-scripts.html +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - diff --git a/_includes/search/google-search-scripts.html b/_includes/search/google-search-scripts.html deleted file mode 100644 index 4af7423bb..000000000 --- a/_includes/search/google-search-scripts.html +++ /dev/null @@ -1,30 +0,0 @@ - \ No newline at end of file diff --git a/_includes/search/lunr-search-scripts.html b/_includes/search/lunr-search-scripts.html deleted file mode 100644 index 574c39009..000000000 --- a/_includes/search/lunr-search-scripts.html +++ /dev/null @@ -1,10 +0,0 @@ -{% assign lang = site.locale | slice: 0,2 | default: "en" %} -{% case lang %} -{% when "gr" %} - {% assign lang = "gr" %} -{% else %} - {% assign lang = "en" %} -{% endcase %} - - - \ No newline at end of file diff --git a/_includes/search/search_form.html b/_includes/search/search_form.html deleted file mode 100644 index c34637984..000000000 --- a/_includes/search/search_form.html +++ /dev/null @@ -1,26 +0,0 @@ -
- {%- assign search_provider = site.search_provider | default: "lunr" -%} - {%- case search_provider -%} - {%- when "lunr" -%} -
- - -
-
- {%- when "google" -%} -
- - -
-
- -
- {%- when "algolia" -%} - -
- {%- endcase -%} -
diff --git a/_includes/seo.html b/_includes/seo.html deleted file mode 100644 index c9d01e946..000000000 --- a/_includes/seo.html +++ /dev/null @@ -1,158 +0,0 @@ - -{%- if site.url -%} - {%- assign seo_url = site.url | append: site.baseurl -%} -{%- endif -%} -{%- assign seo_url = seo_url | default: site.github.url -%} - -{% assign title_separator = site.title_separator | default: '-' | replace: '|', '|' %} - -{%- if page.title -%} - {%- assign seo_title = page.title | append: " " | append: title_separator | append: " " | append: site.title -%} -{%- endif -%} - -{%- if seo_title -%} - {%- assign seo_title = seo_title | markdownify | strip_html | strip_newlines | escape_once -%} -{%- endif -%} - -{% if page.canonical_url %} - {%- assign canonical_url = page.canonical_url %} -{% else %} - {%- assign canonical_url = page.url | replace: "index.html", "" | absolute_url %} -{% endif %} - -{%- assign seo_description = page.description | default: page.excerpt | default: site.description -%} -{%- if seo_description -%} - {%- assign seo_description = seo_description | markdownify | strip_html | newline_to_br | strip_newlines | replace: '
', ' ' | escape_once | strip -%} -{%- endif -%} - -{%- assign author = page.author | default: page.authors[0] | default: site.author -%} -{%- assign author = site.data.authors[author] | default: author -%} - -{%- if author.twitter -%} - {%- assign author_twitter = author.twitter | replace: "@", "" -%} -{%- endif -%} - -{%- assign page_large_image = page.header.og_image | default: page.header.overlay_image | default: page.header.image | absolute_url -%} -{%- assign page_large_image = page_large_image | escape -%} - -{%- assign page_teaser_image = page.header.teaser | default: site.og_image | absolute_url -%} -{%- assign page_teaser_image = page_teaser_image | escape -%} - -{%- assign site_og_image = site.og_image | absolute_url -%} -{%- assign site_og_image = site_og_image | escape -%} - -{%- if page.date -%} - {%- assign og_type = "article" -%} -{%- else -%} - {%- assign og_type = "website" -%} -{%- endif -%} - -{{ seo_title | default: site.title }}{% if paginator %}{% unless paginator.page == 1 %} {{ title_separator }} {{ site.data.ui-text[site.locale].page | default: "Page" }} {{ paginator.page }}{% endunless %}{% endif %} - - -{% if author.name %} - - {% if og_type == "article" %} - - {% endif %} -{% endif %} - - - - - - - -{% if seo_description %} - -{% endif %} - -{% if page_large_image %} - -{% elsif page_teaser_image %} - -{% endif %} - -{% if site.twitter.username %} - - - - - - {% if page_large_image %} - - - {% else %} - - {% if page_teaser_image %} - - {% endif %} - {% endif %} - - {% if author_twitter %} - - {% endif %} -{% endif %} - -{% if page.date %} - -{% endif %} - -{% if og_type == "article" and page.last_modified_at %} - -{% endif %} - -{% if site.facebook %} - {% if site.facebook.publisher %} - - {% endif %} - - {% if site.facebook.app_id %} - - {% endif %} -{% endif %} - - - -{% if paginator.previous_page %} - -{% endif %} -{% if paginator.next_page %} - -{% endif %} - - - -{% if site.google_site_verification %} - -{% endif %} -{% if site.bing_site_verification %} - -{% endif %} -{% if site.alexa_site_verification %} - -{% endif %} -{% if site.yandex_site_verification %} - -{% endif %} -{% if site.naver_site_verification %} - -{% endif %} -{% if site.baidu_site_verification %} - -{% endif %} - diff --git a/_includes/sidebar.html b/_includes/sidebar.html deleted file mode 100644 index 7808af033..000000000 --- a/_includes/sidebar.html +++ /dev/null @@ -1,31 +0,0 @@ - - - -{% if page.sidebar %} - - - -{% endif %} - diff --git a/_includes/skip-links.html b/_includes/skip-links.html deleted file mode 100644 index c2d52235e..000000000 --- a/_includes/skip-links.html +++ /dev/null @@ -1,7 +0,0 @@ - diff --git a/_includes/social-share.html b/_includes/social-share.html deleted file mode 100644 index 0b377982b..000000000 --- a/_includes/social-share.html +++ /dev/null @@ -1,11 +0,0 @@ - diff --git a/_includes/tag-list.html b/_includes/tag-list.html deleted file mode 100644 index b16eca2e7..000000000 --- a/_includes/tag-list.html +++ /dev/null @@ -1,19 +0,0 @@ -{% case site.tag_archive.type %} - {% when "liquid" %} - {% assign path_type = "#" %} - {% when "jekyll-archives" %} - {% assign path_type = nil %} -{% endcase %} - -{% if site.tag_archive.path %} - {% assign tags_sorted = page.tags | sort_natural %} - -

- {{ site.data.ui-text[site.locale].tags_label | default: "Tags:" }} - - {% for tag_word in tags_sorted %} - {% unless forloop.last %}, {% endunless %} - {% endfor %} - -

-{% endif %} \ No newline at end of file diff --git a/_includes/toc b/_includes/toc deleted file mode 100644 index 6423ccdc7..000000000 --- a/_includes/toc +++ /dev/null @@ -1,7 +0,0 @@ - \ No newline at end of file diff --git a/_includes/toc.html b/_includes/toc.html deleted file mode 100644 index 8c7100722..000000000 --- a/_includes/toc.html +++ /dev/null @@ -1,182 +0,0 @@ -{% capture tocWorkspace %} - {% comment %} - Copyright (c) 2017 Vladimir "allejo" Jimenez - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation - files (the "Software"), to deal in the Software without - restriction, including without limitation the rights to use, - copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the - Software is furnished to do so, subject to the following - conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES - OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT - HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, - WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR - OTHER DEALINGS IN THE SOFTWARE. - {% endcomment %} - {% comment %} - Version 1.1.0 - https://github.com/allejo/jekyll-toc - - "...like all things liquid - where there's a will, and ~36 hours to spare, there's usually a/some way" ~jaybe - - Usage: - {% include toc.html html=content sanitize=true class="inline_toc" id="my_toc" h_min=2 h_max=3 %} - - Parameters: - * html (string) - the HTML of compiled markdown generated by kramdown in Jekyll - - Optional Parameters: - * sanitize (bool) : false - when set to true, the headers will be stripped of any HTML in the TOC - * class (string) : '' - a CSS class assigned to the TOC - * id (string) : '' - an ID to assigned to the TOC - * h_min (int) : 1 - the minimum TOC header level to use; any header lower than this value will be ignored - * h_max (int) : 6 - the maximum TOC header level to use; any header greater than this value will be ignored - * ordered (bool) : false - when set to true, an ordered list will be outputted instead of an unordered list - * item_class (string) : '' - add custom class(es) for each list item; has support for '%level%' placeholder, which is the current heading level - * submenu_class (string) : '' - add custom class(es) for each child group of headings; has support for '%level%' placeholder which is the current "submenu" heading level - * base_url (string) : '' - add a base url to the TOC links for when your TOC is on another page than the actual content - * anchor_class (string) : '' - add custom class(es) for each anchor element - * skip_no_ids (bool) : false - skip headers that do not have an `id` attribute - - Output: - An ordered or unordered list representing the table of contents of a markdown block. This snippet will only - generate the table of contents and will NOT output the markdown given to it - {% endcomment %} - - {% capture newline %} - {% endcapture %} - {% assign newline = newline | rstrip %} - - {% capture deprecation_warnings %}{% endcapture %} - - {% if include.baseurl %} - {% capture deprecation_warnings %}{{ deprecation_warnings }}{{ newline }}{% endcapture %} - {% endif %} - - {% if include.skipNoIDs %} - {% capture deprecation_warnings %}{{ deprecation_warnings }}{{ newline }}{% endcapture %} - {% endif %} - - {% capture jekyll_toc %}{% endcapture %} - {% assign orderedList = include.ordered | default: false %} - {% assign baseURL = include.base_url | default: include.baseurl | default: '' %} - {% assign skipNoIDs = include.skip_no_ids | default: include.skipNoIDs | default: false %} - {% assign minHeader = include.h_min | default: 1 %} - {% assign maxHeader = include.h_max | default: 6 %} - {% assign nodes = include.html | strip | split: ' maxHeader %} - {% continue %} - {% endif %} - - {% assign _workspace = node | split: '' | first }}>{% endcapture %} - {% assign header = _workspace[0] | replace: _hAttrToStrip, '' %} - - {% if include.item_class and include.item_class != blank %} - {% capture listItemClass %} class="{{ include.item_class | replace: '%level%', currLevel | split: '.' | join: ' ' }}"{% endcapture %} - {% endif %} - - {% if include.submenu_class and include.submenu_class != blank %} - {% assign subMenuLevel = currLevel | minus: 1 %} - {% capture subMenuClass %} class="{{ include.submenu_class | replace: '%level%', subMenuLevel | split: '.' | join: ' ' }}"{% endcapture %} - {% endif %} - - {% capture anchorBody %}{% if include.sanitize %}{{ header | strip_html }}{% else %}{{ header }}{% endif %}{% endcapture %} - - {% if htmlID %} - {% capture anchorAttributes %} href="{% if baseURL %}{{ baseURL }}{% endif %}#{{ htmlID }}"{% endcapture %} - - {% if include.anchor_class %} - {% capture anchorAttributes %}{{ anchorAttributes }} class="{{ include.anchor_class | split: '.' | join: ' ' }}"{% endcapture %} - {% endif %} - - {% capture listItem %}{{ anchorBody }}{% endcapture %} - {% elsif skipNoIDs == true %} - {% continue %} - {% else %} - {% capture listItem %}{{ anchorBody }}{% endcapture %} - {% endif %} - - {% if currLevel > lastLevel %} - {% capture jekyll_toc %}{{ jekyll_toc }}<{{ listModifier }}{{ subMenuClass }}>{% endcapture %} - {% elsif currLevel < lastLevel %} - {% assign repeatCount = lastLevel | minus: currLevel %} - - {% for i in (1..repeatCount) %} - {% capture jekyll_toc %}{{ jekyll_toc }}{% endcapture %} - {% endfor %} - - {% capture jekyll_toc %}{{ jekyll_toc }}{% endcapture %} - {% else %} - {% capture jekyll_toc %}{{ jekyll_toc }}{% endcapture %} - {% endif %} - - {% capture jekyll_toc %}{{ jekyll_toc }}{{ listItem }}{% endcapture %} - - {% assign lastLevel = currLevel %} - {% assign firstHeader = false %} - {% endfor %} - - {% assign repeatCount = minHeader | minus: 1 %} - {% assign repeatCount = lastLevel | minus: repeatCount %} - {% for i in (1..repeatCount) %} - {% capture jekyll_toc %}{{ jekyll_toc }}{% endcapture %} - {% endfor %} - - {% if jekyll_toc != '' %} - {% assign rootAttributes = '' %} - {% if include.class and include.class != blank %} - {% capture rootAttributes %} class="{{ include.class | split: '.' | join: ' ' }}"{% endcapture %} - {% endif %} - - {% if include.id and include.id != blank %} - {% capture rootAttributes %}{{ rootAttributes }} id="{{ include.id }}"{% endcapture %} - {% endif %} - - {% if rootAttributes %} - {% assign nodes = jekyll_toc | split: '>' %} - {% capture jekyll_toc %}<{{ listModifier }}{{ rootAttributes }}>{{ nodes | shift | join: '>' }}>{% endcapture %} - {% endif %} - {% endif %} -{% endcapture %}{% assign tocWorkspace = '' %}{{ deprecation_warnings }}{{ jekyll_toc }} diff --git a/_includes/video b/_includes/video deleted file mode 100644 index d653fd641..000000000 --- a/_includes/video +++ /dev/null @@ -1,24 +0,0 @@ -{% capture video_id %}{{ include.id }}{% endcapture %} -{% capture video_provider %}{{ include.provider }}{% endcapture %} -{% capture video_danmaku %}{{ include.danmaku | default: 0 }}{% endcapture %} - -{% capture video_src %} - {% case video_provider %} - {% when "vimeo" %} - https://player.vimeo.com/video/{{ video_id }}?dnt=true - {% when "youtube" %} - https://www.youtube-nocookie.com/embed/{{ video_id }} - {% when "google-drive" %} - https://drive.google.com/file/d/{{ video_id }}/preview - {% when "bilibili" %} - https://player.bilibili.com/player.html?bvid={{ video_id }}&page=1&as_wide=1&high_quality=1&danmaku={{ video_danmaku }} - {% endcase %} -{% endcapture %} -{% assign video_src = video_src | strip %} - - -{% unless video_src == "" %} -
- -
-{% endunless %} diff --git a/_layouts/archive-taxonomy.html b/_layouts/archive-taxonomy.html deleted file mode 100644 index eb62a874d..000000000 --- a/_layouts/archive-taxonomy.html +++ /dev/null @@ -1,29 +0,0 @@ ---- -layout: default -author_profile: false ---- - -{% if page.header.overlay_color or page.header.overlay_image or page.header.image %} - {% include page__hero.html %} -{% elsif page.header.video.id and page.header.video.provider %} - {% include page__hero_video.html %} -{% endif %} - -{% if page.url != "/" and site.breadcrumbs %} - {% unless paginator %} - {% include breadcrumbs.html %} - {% endunless %} -{% endif %} - -
- {% include sidebar.html %} - -
- {% unless page.header.overlay_color or page.header.overlay_image %} -

{{ page.title }}

- {% endunless %} - {% for post in page.posts %} - {% include archive-single.html %} - {% endfor %} -
-
diff --git a/_layouts/archive.html b/_layouts/archive.html deleted file mode 100644 index 08beb89af..000000000 --- a/_layouts/archive.html +++ /dev/null @@ -1,26 +0,0 @@ ---- -layout: default ---- - -{% if page.header.overlay_color or page.header.overlay_image or page.header.image %} - {% include page__hero.html %} -{% elsif page.header.video.id and page.header.video.provider %} - {% include page__hero_video.html %} -{% endif %} - -{% if page.url != "/" and site.breadcrumbs %} - {% unless paginator %} - {% include breadcrumbs.html %} - {% endunless %} -{% endif %} - -
- {% include sidebar.html %} - -
- {% unless page.header.overlay_color or page.header.overlay_image %} -

{{ page.title }}

- {% endunless %} - {{ content }} -
-
\ No newline at end of file diff --git a/_layouts/categories.html b/_layouts/categories.html deleted file mode 100644 index f5448a293..000000000 --- a/_layouts/categories.html +++ /dev/null @@ -1,43 +0,0 @@ ---- -layout: archive ---- - -{{ content }} - -{% assign categories_max = 0 %} -{% for category in site.categories %} - {% if category[1].size > categories_max %} - {% assign categories_max = category[1].size %} - {% endif %} -{% endfor %} - -
    - {% for i in (1..categories_max) reversed %} - {% for category in site.categories %} - {% if category[1].size == i %} -
  • - - {{ category[0] }} {{ i }} - -
  • - {% endif %} - {% endfor %} - {% endfor %} -
- -{% assign entries_layout = page.entries_layout | default: 'list' %} -{% for i in (1..categories_max) reversed %} - {% for category in site.categories %} - {% if category[1].size == i %} -
-

{{ category[0] }}

-
- {% for post in category.last %} - {% include archive-single.html type=entries_layout %} - {% endfor %} -
- {{ site.data.ui-text[site.locale].back_to_top | default: 'Back to Top' }} ↑ -
- {% endif %} - {% endfor %} -{% endfor %} diff --git a/_layouts/category.html b/_layouts/category.html deleted file mode 100644 index b281c8560..000000000 --- a/_layouts/category.html +++ /dev/null @@ -1,10 +0,0 @@ ---- -layout: archive ---- - -{{ content }} - -{% assign entries_layout = page.entries_layout | default: 'list' %} -
- {% include posts-category.html taxonomy=page.taxonomy type=entries_layout %} -
diff --git a/_layouts/collection.html b/_layouts/collection.html deleted file mode 100644 index d23d0c723..000000000 --- a/_layouts/collection.html +++ /dev/null @@ -1,10 +0,0 @@ ---- -layout: archive ---- - -{{ content }} - -{% assign entries_layout = page.entries_layout | default: 'list' %} -
- {% include documents-collection.html collection=page.collection sort_by=page.sort_by sort_order=page.sort_order type=entries_layout %} -
diff --git a/_layouts/compress.html b/_layouts/compress.html deleted file mode 100644 index bb34487d2..000000000 --- a/_layouts/compress.html +++ /dev/null @@ -1,10 +0,0 @@ ---- -# Jekyll layout that compresses HTML -# v3.1.0 -# http://jch.penibelst.de/ -# © 2014–2015 Anatol Broder -# MIT License ---- - -{% capture _LINE_FEED %} -{% endcapture %}{% if site.compress_html.ignore.envs contains jekyll.environment or site.compress_html.ignore.envs == "all" %}{{ content }}{% else %}{% capture _content %}{{ content }}{% endcapture %}{% assign _profile = site.compress_html.profile %}{% if site.compress_html.endings == "all" %}{% assign _endings = "html head body li dt dd optgroup option colgroup caption thead tbody tfoot tr td th" | split: " " %}{% else %}{% assign _endings = site.compress_html.endings %}{% endif %}{% for _element in _endings %}{% capture _end %}{% endcapture %}{% assign _content = _content | remove: _end %}{% endfor %}{% if _profile and _endings %}{% assign _profile_endings = _content | size | plus: 1 %}{% endif %}{% for _element in site.compress_html.startings %}{% capture _start %}<{{ _element }}>{% endcapture %}{% assign _content = _content | remove: _start %}{% endfor %}{% if _profile and site.compress_html.startings %}{% assign _profile_startings = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.comments == "all" %}{% assign _comments = "" | split: " " %}{% else %}{% assign _comments = site.compress_html.comments %}{% endif %}{% if _comments.size == 2 %}{% capture _comment_befores %}.{{ _content }}{% endcapture %}{% assign _comment_befores = _comment_befores | split: _comments.first %}{% for _comment_before in _comment_befores %}{% if forloop.first %}{% continue %}{% endif %}{% capture _comment_outside %}{% if _carry %}{{ _comments.first }}{% endif %}{{ _comment_before }}{% endcapture %}{% capture _comment %}{% unless _carry %}{{ _comments.first }}{% endunless %}{{ _comment_outside | split: _comments.last | first }}{% if _comment_outside contains _comments.last %}{{ _comments.last }}{% assign _carry = false %}{% else %}{% assign _carry = true %}{% endif %}{% endcapture %}{% assign _content = _content | remove_first: _comment %}{% endfor %}{% if _profile %}{% assign _profile_comments = _content | size | plus: 1 %}{% endif %}{% endif %}{% assign _pre_befores = _content | split: "" %}{% assign _pres_after = "" %}{% if _pres.size != 0 %}{% if site.compress_html.blanklines %}{% assign _lines = _pres.last | split: _LINE_FEED %}{% capture _pres_after %}{% for _line in _lines %}{% assign _trimmed = _line | split: " " | join: " " %}{% if _trimmed != empty or forloop.last %}{% unless forloop.first %}{{ _LINE_FEED }}{% endunless %}{{ _line }}{% endif %}{% endfor %}{% endcapture %}{% else %}{% assign _pres_after = _pres.last | split: " " | join: " " %}{% endif %}{% endif %}{% capture _content %}{{ _content }}{% if _pre_before contains "" %}{% endif %}{% unless _pre_before contains "" and _pres.size == 1 %}{{ _pres_after }}{% endunless %}{% endcapture %}{% endfor %}{% if _profile %}{% assign _profile_collapse = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.clippings == "all" %}{% assign _clippings = "html head title base link meta style body article section nav aside h1 h2 h3 h4 h5 h6 hgroup header footer address p hr blockquote ol ul li dl dt dd figure figcaption main div table caption colgroup col tbody thead tfoot tr td th" | split: " " %}{% else %}{% assign _clippings = site.compress_html.clippings %}{% endif %}{% for _element in _clippings %}{% assign _edges = " ;; ;" | replace: "e", _element | split: ";" %}{% assign _content = _content | replace: _edges[0], _edges[1] | replace: _edges[2], _edges[3] | replace: _edges[4], _edges[5] %}{% endfor %}{% if _profile and _clippings %}{% assign _profile_clippings = _content | size | plus: 1 %}{% endif %}{{ _content }}{% if _profile %}
Step Bytes
raw {{ content | size }}{% if _profile_endings %}
endings {{ _profile_endings }}{% endif %}{% if _profile_startings %}
startings {{ _profile_startings }}{% endif %}{% if _profile_comments %}
comments {{ _profile_comments }}{% endif %}{% if _profile_collapse %}
collapse {{ _profile_collapse }}{% endif %}{% if _profile_clippings %}
clippings {{ _profile_clippings }}{% endif %}
{% endif %}{% endif %} diff --git a/_layouts/default.html b/_layouts/default.html deleted file mode 100644 index bd841b6bd..000000000 --- a/_layouts/default.html +++ /dev/null @@ -1,45 +0,0 @@ ---- ---- - - - - - - - {% include head.html %} - {% include head/custom.html %} - - - - - {% include skip-links.html %} - {% include browser-upgrade.html %} - {% include masthead.html %} - -
- {{ content }} -
- - {% if site.search == true %} -
- {% include search/search_form.html %} -
- {% endif %} - - - - - {% include scripts.html %} - - - diff --git a/_layouts/home.html b/_layouts/home.html deleted file mode 100644 index 02e96eb81..000000000 --- a/_layouts/home.html +++ /dev/null @@ -1,22 +0,0 @@ ---- -layout: archive ---- - -{{ content }} - -

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

- -{% if paginator %} - {% assign posts = paginator.posts %} -{% else %} - {% assign posts = site.posts %} -{% endif %} - -{% assign entries_layout = page.entries_layout | default: 'list' %} -
- {% for post in posts %} - {% include archive-single.html type=entries_layout %} - {% endfor %} -
- -{% include paginator.html %} diff --git a/_layouts/posts.html b/_layouts/posts.html deleted file mode 100644 index 13fc707cf..000000000 --- a/_layouts/posts.html +++ /dev/null @@ -1,30 +0,0 @@ ---- -layout: archive ---- - -{{ content }} - -
    - {% assign postsInYear = site.posts | where_exp: "item", "item.hidden != true" | group_by_exp: 'post', 'post.date | date: "%Y"' %} - {% for year in postsInYear %} -
  • - - {{ year.name }} {{ year.items | size }} - -
  • - {% endfor %} -
- -{% assign entries_layout = page.entries_layout | default: 'list' %} -{% assign postsByYear = site.posts | where_exp: "item", "item.hidden != true" | group_by_exp: 'post', 'post.date | date: "%Y"' %} -{% for year in postsByYear %} -
-

{{ year.name }}

-
- {% for post in year.items %} - {% include archive-single.html type=entries_layout %} - {% endfor %} -
- {{ site.data.ui-text[site.locale].back_to_top | default: 'Back to Top' }} ↑ -
-{% endfor %} diff --git a/_layouts/search.html b/_layouts/search.html deleted file mode 100644 index 9e661a364..000000000 --- a/_layouts/search.html +++ /dev/null @@ -1,42 +0,0 @@ ---- -layout: default ---- - -{% if page.header.overlay_color or page.header.overlay_image or page.header.image %} - {% include page__hero.html %} -{% endif %} - -{% if page.url != "/" and site.breadcrumbs %} - {% unless paginator %} - {% include breadcrumbs.html %} - {% endunless %} -{% endif %} - -
- {% include sidebar.html %} - -
- {% unless page.header.overlay_color or page.header.overlay_image %} -

{{ page.title }}

- {% endunless %} - - {{ content }} - - {%- assign search_provider = site.search_provider | default: "lunr" -%} - {%- case search_provider -%} - {%- when "lunr" -%} - -
- {%- when "google" -%} -
- -
-
- -
- {%- when "algolia" -%} - -
- {%- endcase -%} -
-
diff --git a/_layouts/single.html b/_layouts/single.html deleted file mode 100644 index 94ac87aca..000000000 --- a/_layouts/single.html +++ /dev/null @@ -1,108 +0,0 @@ ---- -layout: default ---- - -{% if page.header.overlay_color or page.header.overlay_image or page.header.image %} - {% include page__hero.html %} -{% elsif page.header.video.id and page.header.video.provider %} - {% include page__hero_video.html %} -{% endif %} - -{% if page.url != "/" and site.breadcrumbs %} - {% unless paginator %} - {% include breadcrumbs.html %} - {% endunless %} -{% endif %} - -
- {% include sidebar.html %} - -
- {% if page.title %}{% endif %} - {% if page.excerpt %}{% endif %} - {% if page.date %}{% endif %} - {% if page.last_modified_at %}{% endif %} - -
- {% unless page.header.overlay_color or page.header.overlay_image %} -
- {% if page.title %}

{{ page.title | markdownify | remove: "

" | remove: "

" }}

{% endif %} - {% include page__meta.html %} -
- {% endunless %} - -
- {% if page.toc %} - - {% endif %} - - -
- - {% assign split_path = page.path | split: "/" %} - {% assign locale = split_path[1] %} - - {% for link in site.data.navigation[locale].bottom %} - {% if link.url contains 'http' %} - {% assign domain = '' %} - {% else %} - {% assign domain = site.url | append: site.baseurl %} - {% endif %} -
{{ link.title }}
- {% endfor %} - -
- - - {{ content }} - {% if page.link %}{% endif %} -
- -
- {% if site.data.ui-text[site.locale].meta_label %} -

{{ site.data.ui-text[site.locale].meta_label }}

- {% endif %} - {% include page__taxonomy.html %} - {% include page__date.html %} -
- - {% if page.share %}{% include social-share.html %}{% endif %} - - {% include post_pagination.html %} -
- - {% if jekyll.environment == 'production' and site.comments.provider and page.comments %} - {% include comments.html %} - {% endif %} -
- - {% comment %}{% endcomment %} - {% if page.id and page.related and site.related_posts.size > 0 %} - - {% comment %}{% endcomment %} - {% elsif page.id and page.related %} - - {% endif %} -
diff --git a/_layouts/splash.html b/_layouts/splash.html deleted file mode 100644 index 12fed2dc2..000000000 --- a/_layouts/splash.html +++ /dev/null @@ -1,41 +0,0 @@ ---- -layout: default ---- - -{% if page.header.overlay_color or page.header.overlay_image or page.header.image %} - {% include page__hero.html %} -{% elsif page.header.video.id and page.header.video.provider %} - {% include page__hero_video.html %} -{% endif %} - -
-
- {% if page.title %}{% endif %} - {% if page.excerpt %}{% endif %} - {% if page.date %}{% endif %} - {% if page.last_modified_at %}{% endif %} - -
- - -
- - {% assign split_path = page.path | split: "/" %} - {% assign locale = split_path[1] %} - - {% for link in site.data.navigation[locale].bottom %} - {% if link.url contains 'http' %} - {% assign domain = '' %} - {% else %} - {% assign domain = site.url | append: site.baseurl %} - {% endif %} -
{{ link.title }}
- {% endfor %} - -
- - - {{ content }} -
-
-
diff --git a/_layouts/tag.html b/_layouts/tag.html deleted file mode 100644 index 8b1c18850..000000000 --- a/_layouts/tag.html +++ /dev/null @@ -1,10 +0,0 @@ ---- -layout: archive ---- - -{{ content }} - -{% assign entries_layout = page.entries_layout | default: 'list' %} -
- {% include posts-tag.html taxonomy=page.taxonomy type=entries_layout %} -
diff --git a/_layouts/tags.html b/_layouts/tags.html deleted file mode 100644 index daa11828f..000000000 --- a/_layouts/tags.html +++ /dev/null @@ -1,43 +0,0 @@ ---- -layout: archive ---- - -{{ content }} - -{% assign tags_max = 0 %} -{% for tag in site.tags %} - {% if tag[1].size > tags_max %} - {% assign tags_max = tag[1].size %} - {% endif %} -{% endfor %} - -
    - {% for i in (1..tags_max) reversed %} - {% for tag in site.tags %} - {% if tag[1].size == i %} -
  • - - {{ tag[0] }} {{ i }} - -
  • - {% endif %} - {% endfor %} - {% endfor %} -
- -{% assign entries_layout = page.entries_layout | default: 'list' %} -{% for i in (1..tags_max) reversed %} - {% for tag in site.tags %} - {% if tag[1].size == i %} -
-

{{ tag[0] }}

-
- {% for post in tag.last %} - {% include archive-single.html type=entries_layout %} - {% endfor %} -
- {{ site.data.ui-text[site.locale].back_to_top | default: 'Back to Top' }} ↑ -
- {% endif %} - {% endfor %} -{% endfor %} diff --git a/_pages/ca_ES/410.md b/_pages/ca_ES/410.md new file mode 100644 index 000000000..21f077b23 --- /dev/null +++ b/_pages/ca_ES/410.md @@ -0,0 +1,12 @@ +--- +title: Page no longer exists +sitemap: false +--- + +The page you are trying to view used to exist, but it has since been removed. Maybe the instructions you are following are outdated? (If you got here from a link on this guide, [let us know](https://github.com/hacks-guide/Guide_Wii/issues)) + +[Click here to go back to the site index.](site-navigation) +{: .notice--info} + +![](https://http.cat/410) +{: .notice--info} diff --git a/_pages/ca_ES/bootmii.md b/_pages/ca_ES/bootmii.md index bdafb277a..eac3d9e07 100644 --- a/_pages/ca_ES/bootmii.md +++ b/_pages/ca_ES/bootmii.md @@ -6,21 +6,9 @@ title: "BootMii Backup" BootMii allows for backing up and restoring your Wii's NAND storage. This page will guide you in backing up your Wii's NAND to an SD Card, which you can then use however you like. -Family edition Wiis (Wiis without GameCube ports) CANNOT restore NAND backups. This is because of the lack of GameCube ports which are required on non-boot2 Wiis to enter the restoration confirmation code. Regardless, it is still recommended to make one on these consoles. -{: .notice--danger} - You need an **SD card** to use BootMii at all, but especially to create a NAND backup. If you do not have an SD card on hand right now, you can skip this page, but it is HIGHLY RECOMMENDED to return to this page later to back up your NAND. {: .notice--warning} -Navigating BootMii is not possible using a Wii Remote. You must use the POWER and RESET buttons on your console, or a GameCube controller plugged into port 1. To navigate between options, press POWER on your Wii (or left/right on the +Control Pad on a GameCube controller). To select an option, press RESET on your Wii or A on your GameCube controller. You will NEED to use a GameCube controller to restore a NAND backup in the future if BootMii is installed as IOS. -{: .notice--info} - -If the `Launch BootMii` button does not appear in the Homebrew Channel, [re-launch the HackMii Installer](hackmii) and install BootMii. -{: .notice--warning} - -If the screen stays black and the blue disc drive light is blinking upon launching BootMii, you are missing the BootMii files on your SD card. Download [this zip file](/assets/files/bootmii_sd_files.zip) and extract it to the root of your SD card, then try again. -{: .notice--warning} - ### Requirements * An SD card with at least 512MB of free space @@ -36,10 +24,19 @@ If you have BootMii installed as boot2, you will need to launch BootMii by resta ![](/images/bootmii/BootMii_HBC.png) + If the `Launch BootMii` button does not appear in the Homebrew Channel, [re-launch the HackMii Installer](hackmii) and install BootMii. + {: .notice--warning} + + If the screen stays black and the blue disc drive light is blinking upon launching BootMii, you are missing the BootMii files on your SD card. Download [this zip file](/assets/files/bootmii_sd_files.zip) and extract it to the root of your SD card, then try again. + {: .notice--warning} + 1. You should see an image similar to the below now on your screen: ![](/images/bootmii/BootMii_Main.png) + Navigating BootMii is not possible using a Wii Remote. You must use the POWER and RESET buttons on your console, or a GameCube controller plugged into port 1. To navigate between options, press POWER. To select an option, press RESET. + {: .notice--info} + 1. Select the Options button (the icon with the gears). ![](/images/bootmii/BootMii_Gears.png) @@ -65,7 +62,7 @@ If you have BootMii installed as boot2, you will need to launch BootMii by resta
Note: **restoring a NAND backup is usually a last resort**. There often better ways to unbrick your console. Try your best to [identify your brick condition](bricks) and reverse the action that caused it in the first place. -To restore from a NAND backup on your SD card, you can follow the instructions for [RestoreMii](bootmiirecover) (Original Wii only). +To restore from a NAND backup on your SD card, you can follow the instructions for [RestoreMii](bootmiirecover). **Family edition Wiis (Wiis without GameCube ports) CANNOT restore NAND backups.**
As stated earlier, if you have BootMii installed as boot2, it will launch every time you start your console. If you would like to change this, you can use the app [BootMii Config Editor](https://oscwii.org/library/app/BootMiiConfigurationEditor). Or, you can edit `sd:/bootmii/bootmii.ini` manually. diff --git a/_pages/ca_ES/bricks.md b/_pages/ca_ES/bricks.md index 094b9b176..ab5039ded 100644 --- a/_pages/ca_ES/bricks.md +++ b/_pages/ca_ES/bricks.md @@ -111,7 +111,7 @@ Attempt to start the Wii - warning/press A screen shows up, and when A is presse A theme brick occurs when a wrongly formatted theme is installed. #### Solutions -To resolve this issue, open HBC through Priiloader or BootMii as boot2 and access MyMenuifyMod to install a default theme such as the base Wii Menu theme. Alternatively, go into [YAWM ModMii Edition](yawmme) and install the CORRECT default Wii Menu WAD for your region and version. +To resolve this issue, open HBC through Priiloader or BootMii as boot2 and access csm-installer to install a default theme such as the base Wii Menu theme. Alternatively, go into [YAWM ModMii Edition](yawmme) and install the CORRECT default Wii Menu WAD for your region and version. ## Mail brick diff --git a/_pages/ca_ES/cios.md b/_pages/ca_ES/cios.md index 8ae6c5a94..1746dd528 100644 --- a/_pages/ca_ES/cios.md +++ b/_pages/ca_ES/cios.md @@ -65,6 +65,12 @@ The WAD files should be on your SD card like this: ![](/images/cios/d2x_offline_ ![](/images/cios/d2x_v11_248.png) + The warning "`(c)IOS detected in slot ### will be overwriitten`" can be safely ignored. + {: .notice--info} + + If you are seeing "`Slot ### already used in batch settings`" or "`cIOS already added in batch with revision ##### and slot ###`", press `-` to disable batch mode.
(If you are trying to exit the installer, the button is B, not Home.) + {: .notice--info} + 1. Press `A`. This will bring you to the slot map: ![](/images/cios/d2x_summary.png) diff --git a/_pages/ca_ES/dosanddonts.md b/_pages/ca_ES/dosanddonts.md new file mode 100644 index 000000000..6ceed5bee --- /dev/null +++ b/_pages/ca_ES/dosanddonts.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="faq.html" %} diff --git a/_pages/ca_ES/hbc.md b/_pages/ca_ES/hbc.md index ae605ec3f..b0b89779d 100644 --- a/_pages/ca_ES/hbc.md +++ b/_pages/ca_ES/hbc.md @@ -6,7 +6,7 @@ title: "Homebrew Channel and BootMii Installation" The Homebrew Channel is where you will go to launch homebrew applications. BootMii is a piece of software that can backup and restore your Wii's NAND storage, and if installed in boot2, provide brick protection. -BootMii can be installed in two ways: directly to a part of the Wii bootloader called boot2, and via an IOS. BootMii under boot2 is preferred as it provides extended brick protection, but Wiis with a vulnerable boot2 are considerably rarer, having been manufactured before 2009. In most cases, installing BootMii as IOS should be fine, as long as you also install [Priiloader](priiloader). +BootMii can be installed in two ways: directly to a part of the Wii bootloader called boot2, and via an IOS. BootMii under boot2 is preferred as it provides extended brick protection, but Wiis with a vulnerable boot1 that allows this installation are considerably rarer, having been manufactured before 2009. In most cases, installing BootMii as IOS should be fine, as long as you also install [Priiloader](priiloader). {: .notice--info} If you do not have an SD card, you cannot install nor use BootMii, regardless of whether you install it as IOS or boot2. You can always [install it later](hackmii). diff --git a/_pages/ca_ES/modmii.md b/_pages/ca_ES/modmii.md index 6f2a4c50d..373dafacf 100644 --- a/_pages/ca_ES/modmii.md +++ b/_pages/ca_ES/modmii.md @@ -4,116 +4,190 @@ title: "ModMii" {% include toc title="Table of Contents" %} -If you need help for anything regarding this tutorial, please join [the ModMii Discord server](https://discord.gg/cMnBRACQwQ). -{: .notice--info} - This Program does NOT come with a warranty, so you are responsible for any potential damage done to your Wii. {: .notice--warning} This program is NOT intended to be used for the vWii or the Wii mini. Any usage on vWii or Wii mini is untested. {: .notice--warning} -ModMii is a PC program for Windows created by XFlak that has various helpful tools for modding, including some tutorials that may not be currently available on this website.
You can choose to launch in ModMii skin, which has a more user-friendly interface, or launch in ModMii Classic, which uses a command-line (Command Prompt/Terminal) interface. +ModMii is an all-in-one Wii hacking tool for Windows created by XFlak that has various helpful tools for modding. It can accomplish the following: -Some advanced options may not be accessible in ModMii Skin. A list of the features available in ModMii Classic can be found at the bottom of the page. -{: .notice--info} ++ Hacking the console for the first time, or re-hacking it ++ Check for and update outdated softmods ++ Fix upside-down Homebrew Channel problems ++ Run homebrew without making any changes to your Wii's NAND ++ Download homebrew ++ And more! -### Requirements +### ModMii Overview + +There are two different ways to use ModMii. There is ModMii Classic, which uses a command line interface, but has all of the features available to the program. ModMii Skin has a graphical user interface, on the other hand, but has less options available to the user. If you're looking to simply mod your Wii for the first time, ModMii Skin should suffice. Otherwise, we reccomend using ModMii Classic where possible.
The chart below will help you determine what can be done in either interface. + +| Tools | ModMii Classic | ModMii Skin | +| -------------------------- | -------------- | ----------- | +| ModMii Wizard | ✅ | ✅ | +| SysCheck Updater Wizard | ✅ | ⛔ | +| USB Loader Setup Wizard | ✅ | ✅ | +| HackMii Solutions Wizard | ✅ | ✅ | +| Abstinence Wizard | ✅ | ✅ | +| Region Change Wizard | ✅ | ✅ | +| SNEEK/EmuNAND Installation | ✅ | ✅ | +| Open File Function | ✅ | ⛔ | +| Load Download Queue | ✅ | ✅ | +| Download Page 1/2/3/4 | ✅ | ⛔ | +| Advanced Downloads | ✅ | ⛔ | +| Load Download Queue | ✅ | ⛔ | +| Build Config Files | ✅ | ⛔ | +| File Cleanup & App Updater | ✅ | ⛔ | + +
+Click here for a detailed explanation of each tool. + +| Tool | Description | +| --------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| W = ModMii Wizard <-- Start Here to Mod Your Wii! | This option can be used to hack your Wii for the first time or re-hack a Wii that has been previously modded. | +| SU = SysCheck Updater Wizard (update only your outdated softmods) | This option checks for and updates old modifications installed to their wii such as DarkCorp/CIOSSPAGHETTI that can potentially cause problems for the latest homebrew custom firmware. | +| U = USB-Loader Setup Wizard | This option will properly set up your USB loader to be able to load your disk backups from an SD or USB hard drive. This option is not necessary if using the ModMii Wizard. | +| H = HackMii Solutions Wizard (Upside-Down HBC\No Vulnerable IOS Fix) | This option is useful for people who are having trouble getting the HackMii Installer to work or have an upside down homebrew channel. | +| AW = Abstinence Wizard (Non-permanent Wii Hacks) | This option allows you to run homebrew on your Wii without making any permanent modifications to the system NAND. | +| RC = Region Change Wizard | This option can be used to change the region of your Wii without bricking it, and is arguably the best region changing wizard on the internet. | +| S = SNEEK Installation, EmuNAND Builder\Modifier, Game Bulk Extractor | This option will help you properly set up an EmuNAND (aka neek2o) onto your SD or USB. Benefits for EmuNAND include extra storage space for save games or channels, as well as running homebrew without making any permanent modifications to the system NAND. | +| F = open a File or Folder with ModMii for many more functions! | This option is an advanced tool especially helpful for developers. | +| 1 = Download Page 1 (System Menus, IOSs, MIOSs, Channels, etc.) | This option opens the first download page that includes most of the key parts of the Wii System Menu (downloaded from NUS). | +| 2 = Download Page 2 (Apps, USB-Loader Files, CheatCodes, etc.) | This option opens the second download page that includes exploits and useful apps for your Wii including some PC programs. | +| 3 = Download Page 3 (System Menu Themes) | This option opens the third download page that includes some system menu themes and items required to install system menu themes (base apps are downloaded from NUS). | +| 4 = Download Page 4 (cIOSs and cMIOSs) | This option opens the fourth download page that includes cIOSes and cMIOSes for use in USB loaders. | +| A = Advanced Downloads and Forwarder DOL\ISO Builder | This option allows you to download any IOS and cIOS and build custom DOL/ISO forwarders. Intended for advanced users only. | +| L = Load Download Queue | This option loads bundled or previously saved download queues. | +| C = Build Config Files for Bootmii, Wad Manager or Multi-Mod Manager | This option allows you to build customized config files for BootMii, Wad Manager, and Multi-Mod Manager. | +| FC = File Cleanup & App Updater: Update Apps and\or remove un-needed files | This option removes unnessecary files from your SD Card or Hard Drive after finishing softmodding your Wii. | + +

+ +When using ModMii, it is important to note that it will generate a custom guide for you depending on the options that you select. For this reason, this guide will not be focused on how to mod your Wii, as ModMii handles that function. Instead, it will be a quick start guide show you how to effectively use it with the most common options. + +### Installing ModMii + +#### Requirements * A Wii * A USB drive or SD Card * A Windows PC (a Virtual Machine will work) * [ModMii](https://modmii.github.io/) -This is a quick start guide on using ModMii on your Windows PC. +#### Installation -### ModMii Wizard +1. Go to the [ModMii website](https://modmii.github.io) and scroll down to the Download section. Here, select the `Installer` option. Your browser may flag the installer as malware, but it is a **false positive**. -You can use the ModMii wizard to softmod any Wii.
Even if the Wii has been softmodded in the past, you can have ModMii overwrite existing softmods by telling ModMii that this is the first time you're modding your Wii (even if it isn't). + ![](/images/modmii/modmii-download.png) -You can also use this wizard to set up a USB loader at the same time, instead of having to use the USB Loader setup wizard later on. +2. Open the `ModMiiInstaller.exe` file and go through the setup process. + + ![](/images/modmii/modmii-install.png) + +### Using the ModMii Wizard + +The ModMii Wizard is tool that can softmod your Wii from start to finish, downloading all necessary files and then generating a guide that you can use to implement the softmod. This tool can also be used to overwrite existing softmods on a previously softmodded Wii. + +1. Open ModMii Skin or ModMii Classic and select the ModMii Wizard option at the top of the list. + + ![](/images/modmii/modmii-wizard-1.png) + +1. Answer `Yes` to the first question, unless you have a very specific idea of what you would like to do or update to your Wii. + + ![](/images/modmii/modmii-wizard-2.png) + +1. Select your current System Menu version, followed by the System Menu Region, following the instructions in the program. If you are still confused, check the bottom option on each screen for an instructional video. + + ![](/images/modmii/modmii-wizard-3.png) + +1. Select the exploit you would like to use to mod your Wii. The exploits below are outlined throughout this website, but in most cases we would reccommend using Wilbrand if you have an SD card on hand. + + ![](/images/modmii/modmii-wizard-4.png) + +1. If you selected the Wilbrand option in the previous step, enter your Wii's MAC address. If you don't know how to check your Wii's MAC address, enter `Help` in the text box for an instructional video. + + ![](/images/modmii/modmii-wizard-5.png) + +1. Select your desired System Menu version from the list. + + ![](/images/modmii/modmii-wizard-6.png) + +1. Select whether or not you would like to install any of the listed channels - this is an optional step. + + ![](/images/modmii/modmii-wizard-7.png) + +1. Select whether or not you would like to install a custom Wii theme, with the choice of three theme effects. Each effect deals with how much the outline when hovering over a Wii Channel spins. + + ![](/images/modmii/modmii-wizard-8.png) + +1. Select whether or not you would like to set up a USB Loader for use with your Wii. + + ![](/images/modmii/modmii-wizard-9.png) + +1. If you selected `Yes` in the USB Loader menu, select which USB Loader you would like to use. If you choose an individual one, we reccomend either USB Loader GX or WiiFlow as both are covered on this website, or you may optionally download each option. + + ![](/images/modmii/modmii-wizard-10.png) + +1. If you selected `Yes` in the USB Loader menu, select where you would like to save your USB Loader files at. + + ![](/images/modmii/modmii-wizard-11.png) + +1. Verify where you would like to save files for your SD Card and/or USB Drive. + + ![](/images/modmii/modmii-wizard-12.png) + +1. Confirm your settings are correct, and then press `Finish`. Once you press the button, ModMii will begin to process and download files in the background, and will automatically generate and open a guide for you. From here, you should follow the guide generated by ModMii. + + ![](/images/modmii/modmii-wizard-13.png) ### SysCheck Updater Wizard -[SysCheck](syscheck) is a homebrew application that analyzes the modifications on a Wii.
You can give a SysCheck report to ModMii to help identify & update outdated mods. +The SysCheck Updater Wizard is a tool that utilizes the homebrew app [SysCheck](syscheck) to analyze any modifications on your Wii, especially IOS and cIOS. It accepts a `syscheck.csv` file generated by the app, and then provides any nessecary updates as needed. -You can have ModMii analyze a SysCheck by dragging the `syscheck.csv` file onto ModMii.exe. Alternatively, you can launch the SysCheck Updater Wizard (`SU`) from ModMii's main menu and manually browse for the file. +1. Open ModMii Classic and enter in `SU` to open the SysCheck Updater Wizard. + + ![](/images/modmii/syscheck-wizard-1.png) + +1. Follow the instructions in the window if you don't already have a SysCheck log, and then drag and drop the `syscheck.csv` file from Windows Explorer into the window. This will paste the location of the file, from which you can press Enter. + + ![](/images/modmii/syscheck-wizard-2.png) + +1. The program will analyze your SysCheck file, and will provide options for you depending on what it sees. In this example instance, the mods on the Wii were up-to-date, but there were several unnecessary IOSes that could be stubbed. If you want to make these changes to your Wii, simply enter in `Y` and press Enter. From here, you should follow the guide generated by ModMii. + + ![](/images/modmii/syscheck-wizard-3.png) ### HackMii Solutions Wizard -The HackMii Solutions wizard can help fix symptoms like these: +The HackMii Solutions Wizard is a tool that fixes problems that may arise from things like Darkcorp/CIOSSPAGHETTI by installing clean IOSes. Examples of problems that may arise because of this are listed below: + HackMii Installer not prompting "Press (1) to continue" -+ HackMii Installer says "no vulnerable IOS found!" -+ Homebrew Channel is displaying upside-down ++ HackMii Installer saying "no vulnerable IOS found!" ++ Homebrew Channel displaying upside-down -It will install clean IOSs to allow for the HackMii Installer to operate properly. +1. Open ModMii Skin or ModMii Classic and select the HackMii Solutions option. -### Abstinence Wizard + ![](/images/modmii/hackmii-wizard-1.png) -This wizard requires an SD card. -{: .notice--warning} +1. Select your current System Menu version, followed by the System Menu Region, following the instructions in the program. If you are still confused, check the bottom option on each screen for an instructional video. -This wizard allows you to enjoy many of the benefits of a softmodded Wii without installing any permanent modifications to your Wii. It will allow you to launch an exploit to boot an from emulated NAND from external storage, rather than use your Wii's internal NAND. + ![](/images/modmii/hackmii-wizard-2.png) -You can also make a NAND backup without modifying your Wii at all by navigating to ModMii's "Support" folder and launching `Casper2BootMii.bat`.
It will save some files to a folder named `COPY_TO_SD`; copy the files inside it to your SD card and launch an exploit like [Wilbrand](wilbrand). +1. Select the exploit you would like to use to mod your Wii. The exploits below are outlined throughout this website, but in most cases we would reccommend using Wilbrand if you have an SD card on hand. -When following one of the exploit guides above, avoid replacing the `boot.elf` file. -{: .notice--warning} + ![](/images/modmii/hackmii-wizard-3.png) +1. If you selected the Wilbrand option in the previous step, enter your Wii's MAC address. If you don't know how to check your Wii's MAC address, enter `Help` in the text box for an instructional video. -
-Click here for a full list of available tools. + ![](/images/modmii/hackmii-wizard-4.png) -| Tool | Description | -| --------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| W = ModMii Wizard <-- Start Here to Mod Your Wii! | This option can be used to mod your Wii for the first time or re-mod a Wii that has been previously modded. | -| SU = SysCheck Updater Wizard (update only your outdated softmods) | This option is useful for people who have old modifications installed to their wii such as DarkCorp/Ciosspaghetti that can potetially cause problems for the latest homebrew custom firmware. | -| U = USB-Loader Setup Wizard | This option will help you properly set up your USB loader to be able to load your disk backups from an SD or USB hard drive. | -| H = HackMii Solutions Wizard (Upside-Down HBC\No Vulnerable IOS Fix) | This option is useful for people who are having trouble getting the HackMii Installer to work, or if they just simply have an upside down homebrew channel, or if DarkCorp/Ciosspaghetti was installed and there was no homebrew channel. | -| AW = Abstinence Wizard (Non-permanent Wii Hacks) | This option is useful for people who dont want to make any permanent modifications to their Wii but still want to have some of the benefits that homebrew can offer. | -| RC = Region Change Wizard | This option can be used to change the region of your Wii without bricking it (this is the best region changer tutorial available on the internet!). | -| S = SNEEK Installation, EmuNAND Builder\Modifier, Game Bulk Extractor | This option will help you properly set up an EmuNAND (aka neek2o) onto your SD or USB. benefits for emunand include extra storage space for save games or channels. and the benefit of not making any permanent modifications to your Wii. | -| F = open a File or Folder with ModMii for many more functions! | This option is an advanced tool especially helpful for developers. | -| 1 = Download Page 1 (System Menus, IOSs, MIOSs, Channels, etc.) | This option opens the first download page that includes most of the key parts for the system menu (downloaded from NUS). | -| 2 = Download Page 2 (Apps, USB-Loader Files, CheatCodes, etc.) | This option opens the second download page that includes exploits and useful apps for your Wii including some PC programs. | -| 3 = Download Page 3 (System Menu Themes) | This option opens the third download page that includes some system menu themes and items required to install system menu themes (base apps are downloaded from NUS). | -| 4 = Download Page 4 (cIOSs and cMIOSs) | This option opens the fourth download page that includes cIOSes and cMIOSes for use in USB loaders. It is recommended to just install the recommended cioses unless you plan to do some testing. | -| A = Advanced Downloads and Forwarder DOL\ISO Builder | This option is an advanced tool used to better customize downloads or allow you to build a dol executable useful for fowarders (channels on the system menu to access Wii applications). | -| L = Load Download Queue | This option will download all of the required titles need for the Wii system menu (titles are downloaded from NUS) | -| C = Build Config Files for Bootmii, Wad Manager or Multi-Mod Manager | This option will help you build configuration files required for certain applications. | -| FC = File Cleanup & App Updater: Update Apps and\or remove un-needed files | This option is useful for people who want to clean out their SD or USB of apps deemed outdated, useless, or otherwise depreciated. | -| M = ModMii Skin Mode: use your mouse instead of your keyboard! | This option will launch ModMii skin mode. Some advanced options may not be available in this view. | +1. Verify where you would like to save files for your SD Card and/or USB Drive. -
+ ![](/images/modmii/modmii-wizard-12.png) -
-Click here for a full list of available options. +1. Confirm your settings are correct, and then press `Finish`. Once you press the button, ModMii will begin to process and download files in the background, and will automatically generate and open a guide for you. From here, you should follow the guide generated by ModMii. After finishing this guide, it is recommended that you use the [SysCheck Updater Wizard](#syscheck-updater-wizard) to undo any other problematic modifications on your Wii. -| Option | Description | -| ---------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| D = Change Drive letter: | Changes where your SD files are saved to. | -| DU = Change Drive letter for USB: | Changes where your USB files are saved to. | -| d2x = change d2x cIOS version built: | Changes the cios version ModMii downloads. | -| H = Hermes cIOSs (202 & 222-224) will also be recommended | Enables Hermes IOS to be recommended and downloaded in the syscheck updater (will be stubbed if disabled). | -| CM = cMIOS included in recommended cIOSs | Enables cMIOS to be recommended and downloaded in the syscheck updater (will install stock MIOS if disabled). | -| E = Extra Brick Protection in ModMii Wizard Guides | Enables ModMiis Extra Brick Protection IOSes to be recommended and used in the syscheck updater tool. | -| U = Update IOSs. Wizard/SysCheck-Updater to update Active IOSs | Updates Existing IOSes to the latest version available on NUS. | -| AU = Auto-Updating downloads will skip update check if cached | Will skip downloading the files if already in the queue. | -| FWD = Install USB-Loader Forwarder in ModMii Wizard Guides | Will include the USB loader forwarder wad file in the USB loader wizard guides. | -| PC = PC Programs Save Location | Changes the save location for the downloadable PC programs. | -| RS = Root Save: Save IOSs\MIOSs to Root instead of WAD Folder | Saves IOSs\MIOSs to Root instead of WAD Folder. | -| 1 = Do not Keep 00000001 or NUS Folders for IOSs\MIOSs\SMs etc | Deletes the folder used for compiling the wad file and just gives you the wad file. | -| n2o = neek2o - build mod of s\uneek instead of original | Uses a better modified version of neek2o in the EmuNAND builder. | -| SSD = SNEEK and SNEEK+DI SD Access | Allows for SNEEK and SNEEK+DI access on the SD card. | -| F = Font.bin Colour for SNEEK/UNEEK | Changes the font color for neek2o. | -| SV = SNEEK Verbose Output | Displays extra information regarding EmuNAND. | -| V = Verbose for ModMii Skin & nandBinCheck | Displays another window with extra information regarding a nand check. | -| SO = Play sound at Finish | Plays a fun jingle after a successful download. | -| A = Auto-Update ModMii at program start | Will automatically check for updates when ModMii is launched. | -| N = Check for New versions of ModMii right now | Will check online for a ModMii update. | - -
+ ![](/images/modmii/hackmii-wizard-5.png) [Click here to view all of our tutorials that you can find on this website!](site-navigation) {: .notice--info} diff --git a/_pages/ca_ES/nintendont.md b/_pages/ca_ES/nintendont.md new file mode 100644 index 000000000..d7eef1b3f --- /dev/null +++ b/_pages/ca_ES/nintendont.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="410.html" %} diff --git a/_pages/ca_ES/recommended-homebrew.md b/_pages/ca_ES/recommended-homebrew.md index b2bada15a..2d3869c77 100644 --- a/_pages/ca_ES/recommended-homebrew.md +++ b/_pages/ca_ES/recommended-homebrew.md @@ -16,7 +16,7 @@ Homebrew that has the ability to make permanant changes to your Wii are highligh + [**AnyRegion Changer ME**](https://oscwii.org/library/app/ARCME) - ModMii edition of AnyRegion Changer. While a powerful tool for changing region settings, it can also lead to severe bricks like [Korean Kii/Error 003](bricks#korean-kiierror-003-brick) so **only use this app if you know what you are doing**. + [**WiiXplorer-SS**](https://oscwii.org/library/app/wiixplorer-ss) - A modified and updated version of WiiXplorer. A file manager for the Wii, it allows you to view and customize files both on an SD card, a USB device, and the internal Wii memory. For this reason it is a very powerful but also dangerous tool - don't modify files on the system NAND unless you know what you are doing, as it can lead to various types of [bricks](bricks). + [**SaveGame Manager GX**](https://oscwii.org/library/app/SaveGame_Manager_GX) - A savegame/Mii extractor for the Wii. It supports GameCube memory cards (physical and virtual), emuNANDs, normal and protected saves, themes, and more. -+ [**MyMenuifyMod**](https://oscwii.org/library/app/mymenuifymod) - An application that allows you to theme the Wii Menu. While quite useful to make your Wii unique, it also has the ability to cause a [minor brick](bricks#theme-brick), so make sure to read our [theme guide](themes) for safe usage instructions. ++ [**csm-installer**](https://oscwii.org/library/app/csm-installer) - An application that allows you to theme the Wii Menu. While quite useful to make your Wii unique, it also has the ability to cause a [minor brick](bricks#theme-brick), so make sure to read our [theme guide](themes) for safe usage instructions. + [CleanRip](https://oscwii.org/library/app/CleanRip) - A tool to backup GameCube and Wii discs. Further information can be found in our [disc dumping guide](dump-games). + [**d2x cIOS installer**](https://oscwii.org/library/app/d2x-cios-installer) - A custom installer for Wii IOS, some of which is required for the functioning of certain software like USB loaders. You can see the guide [here](cios). + [FTPii](https://oscwii.org/library/app/ftpii) - An FTP server for your Wii, allowing you to transfer files across the network. diff --git a/_pages/ca_ES/riiconnect24.md b/_pages/ca_ES/riiconnect24.md index 0c3b78918..d1e91b7e8 100644 --- a/_pages/ca_ES/riiconnect24.md +++ b/_pages/ca_ES/riiconnect24.md @@ -1,138 +1,5 @@ --- -title: "RiiConnect24" +title: Redirecting... --- -{% include toc title="Table of Contents" %} - -If you need help with anything regarding this tutorial, please join [the RiiConnect24 Discord server](https://discord.gg/rc24) (recommended) or [e-mail us at support@riiconnect24.net](mailto:support@riiconnect24.net). -{: .notice--primary} - -[RiiConnect24](https://rc24.xyz/) allows you to use discontinued services from WiiConnect24, which include the News, Forecast, Everybody Votes, Nintendo and Check Mii Out Channel, along with Wii Mail. - -It's recommended to set your Wii to the current time before proceeding. Follow [this tutorial](wiiconnect24#updating-rtc-clock) in order to set it. -{: .notice--warning} - -DO NOT INSTALL RIICONNECT24 ON A WII MINI! It will not work and it will brick the system. -{: .notice--danger} - -### Requirements - -If you are on vWii, you will also need [Priiloader](priiloader) installed with the WC24 hacks. -{: .notice--primary} - -+ An SD card or USB drive -+ A Wii with an Internet connection -+ A PC with an Internet connection -+ [RiiConnect24 Patcher (Windows, Mac and Linux)](https://github.com/riiconnect24/RiiConnect24-Patcher/releases) -+ [YAWM ModMii Edition](https://oscwii.org/library/app/yawmme) - -### Instructions - -#### Section I - Using RiiConnect24 Patcher - -1. Click the link above to go to the GitHub page where the patcher is. -1. Download `RiiConnect24Patcher.bat` if you are on Windows, and `RiiConnect24Patcher.sh` if you are on a Unix system -1. Run the RiiConnect24 patcher. - + On Windows run `RiiConnect24Patcher.bat`. - + On macOS/Linux systems, open Terminal and type `bash`, then drag `RiiConnect24Patcher.sh` into the terminal then press enter. It should look like this: `bash //RiiConnect24Patcher.sh`. -1. Press 1 to choose "`Start`" and confirm your selection by pressing `ENTER`. - - ![](/images/riiconnect24/patcher/1.JPG) - -1. Select the device you're patching for. - - ![](/images/riiconnect24/patcher/2.JPG) - -1. For this guide, choose "`Install RiiConnect24 on your Wii`" - - ![](/images/riiconnect24/patcher/3.JPG) - -1. Choose "`Express (Recommended)`". It will give you everything you need. - - ![](/images/riiconnect24/patcher/4.JPG) - -1. Select your region. - - ![](/images/riiconnect24/patcher/5.JPG) - -1. While you're at it, RiiConnect24 Patcher can additionally download some other optional channels that do not use RiiConnect24. `[X]` represents the options that selected. Just press 5 and `ENTER` if you're not interested. - - ![](/images/riiconnect24/patcher/6.JPG) - -1. Connect your SD Card or USB Drive to your computer and select "`1`". - - ![](/images/riiconnect24/patcher/7.JPG) - -1. If your device was detected successfully, select "`1`". If not, make sure there's a folder called `apps` on your SD Card or USB Drive and try again. - - ![](/images/riiconnect24/patcher/8.JPG) - -1. The patcher will download apps now - please be patient. - - ![](/images/riiconnect24/patcher/9.JPG) - -1. Once you reach the screen that says `Patching done`, you can exit the patcher. All the files should already be on your SD card. - - ![](/images/riiconnect24/patcher/10.JPG) - - ![](/images/riiconnect24/patcher/11.PNG) - -1. If it did not copy everything automatically to your SD Card or USB Device, copy the `WAD` and `apps` folder next to `RiiConnect24Patcher.bat` or `RiiConnect24Patcher.sh` to your SD Card or USB Device. - -#### Section II - Installing WADs - -If you are using Dolphin, you have finished the guide. Install the WADs by going to `Tools -> Install WAD` within Dolphin. -{: .notice--primary} - -You will now install the patched IOS and Channel WADs that are required to use RiiConnect24. - -1. Extract the YAWM ModMii Edition `.zip` file, and copy the `apps` folder to your SD card or USB drive. -1. Put your SD card or USB drive in your Wii. -1. Launch the Homebrew Channel on your Wii. -1. Launch YAWM ModMii Edition. -1. Select the device you have put the RiiConnect24 files on. -1. Highlight all the WADs in the `wad` folder by pressing the + Button to select them. When all of the WADs are selected, press A twice to install the WADs. -1. After they are successfully installed, press the HOME Button to exit back to the Homebrew Channel. - -#### Section III - Patching nwc24msg.cfg - -You will now patch your `nwc24msg.cfg` file which is required in order to use Wii Mail. - -1. Launch RiiConnect24 Mail Patcher. -1. It should only take a few seconds to patch your nwc24msg.cfg. When it's done, press the HOME Button to exit. - -#### Section IV - Connecting to RiiConnect24 - -The old DNS server `164.132.44.106` has been deprecated as of `June 1st, 2023` and is no longer available to use. -{: .notice--warning} - -If you're getting errors such as `WiiConnect24 and Wii Shop Channel currently not being offered in your country`, go to Wii Settings -> Last Page -> Country and change it to United Kingdom. You will get this error when using a country that RiiConnect24 does not support. -{: .notice--warning} - -If you get error 107245, you did not install the patched IOS.
If you get error 220602, see [this](faq#for-riiconnect24-users) page.
If you get error 107304, see [this](faq#for-riiconnect24-users-1) page.
-{: .notice--warning} - -You will now set your DNS to RiiConnect24 servers. This is optional but recommended, because it enhances the use of RiiConnect24 and Wiimmfi by making some other features available. - -1. Go to `Wii Options`. -1. Go to `Wii Settings`. -1. Go to `Page 2`, then click on `Internet`. -1. Go to `Connection Settings`. -1. Select your current connection. -1. Go to `Change Settings`. -1. Go to `Auto-Obtain DNS` (Not IP Address), then select `No`, then `Advanced Settings`. -1. Type in `167.86.108.126` as the primary DNS. -1. Type in `1.1.1.1` as the secondary DNS. -1. Select `Confirm`, then select `Save`. -1. Select `OK` to perform a connection test. -1. If the connection test was successful, select `No` to skip the Wii System Update. -1. Go to `WiiConnect24`, then `WiiConnect24` again, and make sure it is enabled. -1. Back on the WiiConnect24 menu, go to `Standby Connection` and make sure it is enabled. -1. At `Slot Illumination`, we recommend you set the disc light to `Dim` or `Bright`, but this is optional. -1. Finally, go to the `Internet` section, then `User Agreements` or `Agreement/Contact`, then `Yes`. Please read through this. - -[Return to WiiConnect24](wiiconnect24) -{: .notice--info} - -[Click here to view all of our tutorials that you can find on this website!](site-navigation) -{: .notice--info} +{% include redirect.html redirect_to="https\://www\.wiilink24.com/guide/install/" %} diff --git a/_pages/ca_ES/riitag.md b/_pages/ca_ES/riitag.md new file mode 100644 index 000000000..e6b6bc322 --- /dev/null +++ b/_pages/ca_ES/riitag.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="https\://wiki.hacks.guide/wiki/RiiTag" %} diff --git a/_pages/ca_ES/riivolution.md b/_pages/ca_ES/riivolution.md new file mode 100644 index 000000000..d7eef1b3f --- /dev/null +++ b/_pages/ca_ES/riivolution.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="410.html" %} diff --git a/_pages/ca_ES/themes.md b/_pages/ca_ES/themes.md index e66d34e85..cff33ce4f 100644 --- a/_pages/ca_ES/themes.md +++ b/_pages/ca_ES/themes.md @@ -4,13 +4,16 @@ title: "Installing Wii Menu Themes" {% include toc title="Table of Contents" %} -This guide is intended to be the last you will ever need when it comes to theming on the Wii, not only providing instructions for the Wii Menu through MyMenuifyMod, but also with themes on WiiFlow Lite, USB Loader GX, and The Homebrew Channel. Additionally, forwarders are covered. +This guide is intended to be the last you will ever need when it comes to theming on the Wii, not only providing instructions for the Wii Menu through csm-installer, but also with themes on WiiFlow Lite, USB Loader GX, and The Homebrew Channel. Additionally, forwarders are covered. ### Wii Menu Theming DO NOT CONTINUE WITH THIS GUIDE UNLESS YOU HAVE ADEQUATE BRICK PROTECTION, SPECIFICALLY [BOOTMII](bootmii) AND [PRIILOADER](priiloader)! {: .notice--danger} +This tutorial does not work on the Wii mini. Do not attempt this tutorial on the Wii mini or it will cause a [brick](bricks#theme-brick). +{: .notice--warning} + csm-installer has built in safety features to prevent from installing bad or corrupt Wii Menu themes, so please opt to use it instead of other theme installation homebrew. {: .notice--warning} diff --git a/_pages/ca_ES/usbloadergx.md b/_pages/ca_ES/usbloadergx.md new file mode 100644 index 000000000..00a63864a --- /dev/null +++ b/_pages/ca_ES/usbloadergx.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-loaders.html" %} diff --git a/_pages/ca_ES/wiibackupmanager.md b/_pages/ca_ES/wiibackupmanager.md new file mode 100644 index 000000000..063d7bba0 --- /dev/null +++ b/_pages/ca_ES/wiibackupmanager.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-backups.html" %} diff --git a/_pages/ca_ES/wiiconnect24.md b/_pages/ca_ES/wiiconnect24.md index 894f24c37..ad0a4b6fc 100644 --- a/_pages/ca_ES/wiiconnect24.md +++ b/_pages/ca_ES/wiiconnect24.md @@ -3,44 +3,21 @@ title: "WiiConnect24" --- {% include toc title="Table of Contents" %} + -This guide provides different means of regaining WiiConnect24 functionality on your console. Although not at all nessecary, it is a "nice to have" feature that was originally used for online connectivity in certain applications on the console. These apps include the Forecast/News Channel, Nintendo Channel, Check Mii Out Channel, some Japan-exclusive channels, and more. Please bear in mind, the functionality you gain depends entirely on what service(s) you use. +[WiiConnect24](https://wikipedia.org/wiki/WiiConnect24) was a service that allowed users with Internet connected Wiis to view the weather & local news, send messages to friends, participate in Mii contest, and more. WiiConnect24 was discontinued on June 27th, 2013. -### Service Overview +## RiiConnect24 + WiiLink +[RiiConnect24](https://rc24.xyz) is a revival service for WiiConnect24 that started in 2015, which allows you to regain its functionality on your console. As of late 2023, the service is now owned by WiiLink, a project that started in 2020 that was previously aiming at the Japanese-exclusive channels. -#### Note about service compatibility: -Both services listed below are compatible with one another and can be loaded on the same console. With this said, it should be noted that when installing one channel over the other (WiiLink's Forecast Channel over RiiConnect24's Forecast Channel for example), the channel you are installing will overwrite the old one. - - -#### Service Support Status -✅ - In support
⚠️ - In development
⛔ - No support - -| Service Name | WiiLink | RiiConnect24 | -| ----------------------- | ------- | ------------ | -| Forecast Channel | ✅ | ✅ | -| News Channel | ⚠️ | ✅ | -| Wii Mail | ✅ | ✅ | -| Everybody Votes Channel | ✅ | ✅ | -| Nintendo Channel | ✅ | ✅ | -| Check Mii Out Channel | ⚠️ | ✅ | -| Wii Room | ✅ | ⛔ | -| Food Channel | ✅ | ⛔ | -| Photo Prints Channel | ✅ | ⛔ | -| Kirby TV Channel | ✅ | ⛔ | -| TV Guide Channel | ⚠️ | ⛔ | - -#### WiiLink -A newer WC24/Japanese channel revival service that started in 2020, but is rapidly regaining functionality in many different channels. - -Service support status can be found [here](https://www.wiilink24.com/status).
Their guide can be found [here](https://www.wiilink24.com/guide). - -#### RiiConnect24 -The longest lasting WC24 revival service, currently only with support for the worldwide WC24 channels as well as mail services. - -Service support status can be found [here](https://rc24.xyz/stats/).
RiiConnect24 currently does not have a self-hosted guide, however you can find ours [here](riiconnect24). +There is a patcher that ships both of these services together as one - meaning you get all of the international and Japanese-only channels in one package. The guide on how to install these services can be found [on WiiLink's website.](https://www.wiilink24.com/guide/) + ### Updating RTC Clock -If you choose to install either of these services on your Wii, it is advised to synchronize its external clock in order to prevent various issues (such as inability to use said services) that may arise otherwise. The steps to do so can be found below: #### What you need + A working Internet connection on your Wii diff --git a/_pages/ca_ES/wiiflow.md b/_pages/ca_ES/wiiflow.md new file mode 100644 index 000000000..00a63864a --- /dev/null +++ b/_pages/ca_ES/wiiflow.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-loaders.html" %} diff --git a/_pages/de_DE/410.md b/_pages/de_DE/410.md new file mode 100644 index 000000000..21f077b23 --- /dev/null +++ b/_pages/de_DE/410.md @@ -0,0 +1,12 @@ +--- +title: Page no longer exists +sitemap: false +--- + +The page you are trying to view used to exist, but it has since been removed. Maybe the instructions you are following are outdated? (If you got here from a link on this guide, [let us know](https://github.com/hacks-guide/Guide_Wii/issues)) + +[Click here to go back to the site index.](site-navigation) +{: .notice--info} + +![](https://http.cat/410) +{: .notice--info} diff --git a/_pages/de_DE/bootmii.md b/_pages/de_DE/bootmii.md index 535e54aa6..64a55c6b8 100644 --- a/_pages/de_DE/bootmii.md +++ b/_pages/de_DE/bootmii.md @@ -6,21 +6,9 @@ title: "BootMii Backup" One of BootMii's most important features is the ability to backup and restore your Wii's NAND storage. We will be going over how to perform a NAND backup. You can then restore from that backup for any reason. This page will guide you in backing up your Wii's NAND to an SD Card, which you can then use however you like. -Family edition Wiis (Wiis without GameCube ports) CANNOT restore NAND backups. This is because of the lack of GameCube ports which are required on non-boot2 Wiis to enter the restoration confirmation code. Regardless, it is still recommended to make one on these consoles. -{: .notice--danger} - Du brauchst eine **SD-Karte** um eine NAND-Sicherung mittels BootMii zu erstellen. If you do not have one, you can skip this page, although it is highly recommended to make a NAND backup if you can. {: .notice--warning} -Navigating BootMii is not possible using a Wii Remote. You must use the POWER and RESET buttons on your console, or a GameCube controller plugged into port 1. To navigate between options, press POWER on your Wii (or left/right on the +Control Pad on a GameCube controller). To select an option, press RESET on your Wii or A on your GameCube controller. You will NEED to use a GameCube controller to restore a NAND backup in the future if BootMii is installed as IOS. -{: .notice--info} - -If the `Launch BootMii` button does not appear, please [re-launch the HackMii Installer](hackmii) and install BootMii. -{: .notice--warning} - -If the screen stays black and the blue disc drive light is blinking, you are missing the BootMii files on your SD card. Download [this zip file](https://static.hackmii.com/bootmii_sd_files.zip) and extract it to the root of your SD card, then try again. -{: .notice--warning} - ### Voraussetzungen * An SD card with at least 512MB of free space @@ -36,10 +24,19 @@ If you have BootMii installed as boot2 you will need to launch BootMii by restar ![](/images/bootmii/BootMii_HBC.png) + If the `Launch BootMii` button does not appear, please [re-launch the HackMii Installer](hackmii) and install BootMii. + {: .notice--warning} + + If the screen stays black and the blue disc drive light is blinking, you are missing the BootMii files on your SD card. Download [this zip file](https://static.hackmii.com/bootmii_sd_files.zip) and extract it to the root of your SD card, then try again. + {: .notice--warning} + 1. You should see an image similar to the below now on your screen: ![](/images/bootmii/BootMii_Main.png) + Navigating BootMii is not possible using a Wii Remote. You must use the POWER and RESET buttons on your console, or a GameCube controller plugged into port 1. To navigate between options, press POWER. To select an option, press RESET. + {: .notice--info} + 1. Select the Options button (the icon with the gears). ![](/images/bootmii/BootMii_Gears.png) @@ -65,7 +62,7 @@ If you have BootMii installed as boot2 you will need to launch BootMii by restar
Please be reminded that restoring a NAND backup is usually a last resort, and that there often better ways to fix your brick. Es gibt oft bessere Möglichkeiten, deine Konsole zu entbricken. Versuche dein Bestes um [deinen Brick-Zustand](bricks) zu identifizieren und die Aktion umzukehren, die es ursprünglich verursacht hat. -To restore from a NAND backup on your SD card, you can follow the instructions for [RestoreMii](bootmiirecover). +To restore from a NAND backup on your SD card, you can follow the instructions for [RestoreMii](bootmiirecover). **Family edition Wiis (Wiis without GameCube ports) CANNOT restore NAND backups.**
BootMii as boot2 is recommended, but only available to install on early Wii consoles. Otherwise, it can only be installed as an IOS. If you would like to change this, you can use the app [BootMii Config Editor](https://oscwii.org/library/app/BootMiiConfigurationEditor). Or, you can edit `sd:/bootmii/bootmii.ini` manually. diff --git a/_pages/de_DE/bricks.md b/_pages/de_DE/bricks.md index d7c4d830c..21bee8f7b 100644 --- a/_pages/de_DE/bricks.md +++ b/_pages/de_DE/bricks.md @@ -111,7 +111,7 @@ Attempt to start the Wii - warning/press A screen shows up, and when A is presse A theme brick occurs when a wrongly formatted theme is installed. #### Solutions -To resolve this issue, open HBC through Priiloader and access MyMenuifyMod to install a default theme. Alternatively, go into [YAWM ModMii Edition](yawmme) and install the CORRECT default Wii Menu WAD for your region and version. +To resolve this issue, open HBC through Priiloader or BootMii as boot2 and access csm-installer to install a default theme such as the base Wii Menu theme. Alternatively, go into [YAWM ModMii Edition](yawmme) and install the CORRECT default Wii Menu WAD for your region and version. ## Mail brick diff --git a/_pages/de_DE/cios.md b/_pages/de_DE/cios.md index 45d2894f4..1ad9d84ca 100644 --- a/_pages/de_DE/cios.md +++ b/_pages/de_DE/cios.md @@ -65,6 +65,12 @@ Select cIOS version: 65535 ![](/images/cios/d2x_v11_248.png) + The warning "`(c)IOS detected in slot ### will be overwriitten`" can be safely ignored. + {: .notice--info} + + If you are seeing "`Slot ### already used in batch settings`" or "`cIOS already added in batch with revision ##### and slot ###`", press `-` to disable batch mode.
(If you are trying to exit the installer, the button is B, not Home.) + {: .notice--info} + 1. Press `A`. This will bring you to the slot map: ![](/images/cios/d2x_summary.png) diff --git a/_pages/de_DE/dosanddonts.md b/_pages/de_DE/dosanddonts.md new file mode 100644 index 000000000..6ceed5bee --- /dev/null +++ b/_pages/de_DE/dosanddonts.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="faq.html" %} diff --git a/_pages/de_DE/hbc.md b/_pages/de_DE/hbc.md index 10d03821e..983aa93f2 100644 --- a/_pages/de_DE/hbc.md +++ b/_pages/de_DE/hbc.md @@ -6,7 +6,7 @@ title: "Homebrew-Kanal und BootMii-Installation" Mit dem Homebrew-Kanal kannst du Homebrew-Anwendungen ausführen. BootMii ist eine Software durch die der NAND-Speicher deiner Wii gesichert und wiederhergestellt werden kann, und die zusätzlichen Brick-Schutz bietet, wenn sie als boot2 installiert wird. -BootMii can be installed in two ways: directly to a part of the Wii bootloader called boot2, and via an IOS. BootMii under boot2 is preferred as it provides extended brick protection, but Wiis with a vulnerable boot2 are considerably rarer, having been manufactured before 2009. In most cases, installing BootMii as IOS should be fine, as long as you also install [Priiloader](priiloader). +BootMii can be installed in two ways: directly to a part of the Wii bootloader called boot2, and via an IOS. BootMii under boot2 is preferred as it provides extended brick protection, but Wiis with a vulnerable boot1 that allows this installation are considerably rarer, having been manufactured before 2009. In most cases, installing BootMii as IOS should be fine, as long as you also install [Priiloader](priiloader). {: .notice--info} If you do not have an SD card, you cannot install nor use BootMii, and therefore will not be able to utilize any of the mentioned benefits.
You can always [install it at a later date](hackmii). diff --git a/_pages/de_DE/modmii.md b/_pages/de_DE/modmii.md index 10dfcfb00..b915971c4 100644 --- a/_pages/de_DE/modmii.md +++ b/_pages/de_DE/modmii.md @@ -4,116 +4,190 @@ title: "ModMii" {% include toc title="Inhaltsverzeichnis" %} -If you need help for anything regarding this tutorial, please join [the ModMii Discord server](https://discord.gg/cMnBRACQwQ). -{: .notice--info} - This Program does NOT come with a warranty, so you are responsible for any potential damage done to your Wii. {: .notice--warning} This program is NOT intended to be used for the vWii or the Wii mini. Some tools may or may not work for these platforms. {: .notice--warning} -/images/Modmii/modmii.png +ModMii is an all-in-one Wii hacking tool for Windows created by XFlak that has various helpful tools for modding. It can accomplish the following: -Some advanced options may not be accessible in ModMii Skin. A list of the various activities for ModMii Classic can be found at the bottom of the page. -{: .notice--info} ++ Hacking the console for the first time, or re-hacking it ++ Check for and update outdated softmods ++ Fix upside-down Homebrew Channel problems ++ Run homebrew without making any changes to your Wii's NAND ++ Download homebrew ++ And more! -### Voraussetzungen +### ModMii Overview + +There are two different ways to use ModMii. There is ModMii Classic, which uses a command line interface, but has all of the features available to the program. ModMii Skin has a graphical user interface, on the other hand, but has less options available to the user. If you're looking to simply mod your Wii for the first time, ModMii Skin should suffice. Otherwise, we reccomend using ModMii Classic where possible.
The chart below will help you determine what can be done in either interface. + +| Tools | ModMii Classic | ModMii Skin | +| -------------------------- | -------------- | ----------- | +| ModMii Wizard | ✅ | ✅ | +| SysCheck Updater Wizard | ✅ | ⛔ | +| USB Loader Setup Wizard | ✅ | ✅ | +| HackMii Solutions Wizard | ✅ | ✅ | +| Abstinence Wizard | ✅ | ✅ | +| Region Change Wizard | ✅ | ✅ | +| SNEEK/EmuNAND Installation | ✅ | ✅ | +| Open File Function | ✅ | ⛔ | +| Load Download Queue | ✅ | ✅ | +| Download Page 1/2/3/4 | ✅ | ⛔ | +| Advanced Downloads | ✅ | ⛔ | +| Load Download Queue | ✅ | ⛔ | +| Build Config Files | ✅ | ⛔ | +| File Cleanup & App Updater | ✅ | ⛔ | + +
+Click here for a detailed explanation of each tool. + +| Tool | Beschreibung | +| --------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| W = ModMii Wizard <-- Start Here to Mod Your Wii! | This option can be used to hack your Wii for the first time or re-hack a Wii that has been previously modded. | +| SU = SysCheck Updater Wizard (update only your outdated softmods) | This option checks for and updates old modifications installed to their wii such as DarkCorp/CIOSSPAGHETTI that can potentially cause problems for the latest homebrew custom firmware. | +| U = USB-Loader Setup Wizard | This option will properly set up your USB loader to be able to load your disk backups from an SD or USB hard drive. This option is not necessary if using the ModMii Wizard. | +| H = HackMii Solutions Wizard (Upside-Down HBC\No Vulnerable IOS Fix) | This option is useful for people who are having trouble getting the HackMii Installer to work or have an upside down homebrew channel. | +| AW = Abstinence Wizard (Non-permanent Wii Hacks) | This option allows you to run homebrew on your Wii without making any permanent modifications to the system NAND. | +| RC = Region Change Wizard | This option can be used to change the region of your Wii without bricking it, and is arguably the best region changing wizard on the internet. | +| S = SNEEK Installation, EmuNAND Builder\Modifier, Game Bulk Extractor | This option will help you properly set up an EmuNAND (aka neek2o) onto your SD or USB. Benefits for EmuNAND include extra storage space for save games or channels, as well as running homebrew without making any permanent modifications to the system NAND. | +| F = open a File or Folder with ModMii for many more functions! | This option is an advanced tool especially helpful for developers. | +| 1 = Download Page 1 (System Menus, IOSs, MIOSs, Channels, etc.) | This option opens the first download page that includes most of the key parts of the Wii System Menu (downloaded from NUS). | +| 2 = Download Page 2 (Apps, USB-Loader Files, CheatCodes, etc.) | This option opens the second download page that includes exploits and useful apps for your Wii including some PC programs. | +| 3 = Download Page 3 (System Menu Themes) | This option opens the third download page that includes some system menu themes and items required to install system menu themes (base apps are downloaded from NUS). | +| 4 = Download Page 4 (cIOSs and cMIOSs) | This option opens the fourth download page that includes cIOSes and cMIOSes for use in USB loaders. | +| A = Advanced Downloads and Forwarder DOL\ISO Builder | This option allows you to download any IOS and cIOS and build custom DOL/ISO forwarders. Intended for advanced users only. | +| L = Load Download Queue | This option loads bundled or previously saved download queues. | +| C = Build Config Files for Bootmii, Wad Manager or Multi-Mod Manager | This option allows you to build customized config files for BootMii, Wad Manager, and Multi-Mod Manager. | +| FC = File Cleanup & App Updater: Update Apps and\or remove un-needed files | This option removes unnessecary files from your SD Card or Hard Drive after finishing softmodding your Wii. | + +

+ +When using ModMii, it is important to note that it will generate a custom guide for you depending on the options that you select. For this reason, this guide will not be focused on how to mod your Wii, as ModMii handles that function. Instead, it will be a quick start guide show you how to effectively use it with the most common options. + +### Installing ModMii + +#### Voraussetzungen * Eine Wii * A USB drive or SD Card * A Windows PC (a Virtual Machine will work) * [ModMii](https://modmii.github.io/) -This is a quick start guide on how to use ModMii on your Windows PC. +#### Installation -### ModMii Wizard +1. Go to the [ModMii website](https://modmii.github.io) and scroll down to the Download section. Here, select the `Installer` option. Your browser may flag the installer as malware, but it is a **false positive**. -You can use the ModMii wizard to softmod any Wii.
Even if the Wii has been softmodded in the past, you can have ModMii overwrite existing softmods by telling ModMii that this is the first time you're modding your Wii (even though it's not). + ![](/images/modmii/modmii-download.png) -You can also use this wizard to set up a USB loader at the same time, instead of having to use the USB Loader setup wizard later on. +2. Open the `ModMiiInstaller.exe` file and go through the setup process. + + ![](/images/modmii/modmii-install.png) + +### Using the ModMii Wizard + +The ModMii Wizard is tool that can softmod your Wii from start to finish, downloading all necessary files and then generating a guide that you can use to implement the softmod. This tool can also be used to overwrite existing softmods on a previously softmodded Wii. + +1. Open ModMii Skin or ModMii Classic and select the ModMii Wizard option at the top of the list. + + ![](/images/modmii/modmii-wizard-1.png) + +1. Answer `Yes` to the first question, unless you have a very specific idea of what you would like to do or update to your Wii. + + ![](/images/modmii/modmii-wizard-2.png) + +1. Select your current System Menu version, followed by the System Menu Region, following the instructions in the program. If you are still confused, check the bottom option on each screen for an instructional video. + + ![](/images/modmii/modmii-wizard-3.png) + +1. Select the exploit you would like to use to mod your Wii. The exploits below are outlined throughout this website, but in most cases we would reccommend using Wilbrand if you have an SD card on hand. + + ![](/images/modmii/modmii-wizard-4.png) + +1. If you selected the Wilbrand option in the previous step, enter your Wii's MAC address. If you don't know how to check your Wii's MAC address, enter `Help` in the text box for an instructional video. + + ![](/images/modmii/modmii-wizard-5.png) + +1. Select your desired System Menu version from the list. + + ![](/images/modmii/modmii-wizard-6.png) + +1. Select whether or not you would like to install any of the listed channels - this is an optional step. + + ![](/images/modmii/modmii-wizard-7.png) + +1. Select whether or not you would like to install a custom Wii theme, with the choice of three theme effects. Each effect deals with how much the outline when hovering over a Wii Channel spins. + + ![](/images/modmii/modmii-wizard-8.png) + +1. Select whether or not you would like to set up a USB Loader for use with your Wii. + + ![](/images/modmii/modmii-wizard-9.png) + +1. If you selected `Yes` in the USB Loader menu, select which USB Loader you would like to use. If you choose an individual one, we reccomend either USB Loader GX or WiiFlow as both are covered on this website, or you may optionally download each option. + + ![](/images/modmii/modmii-wizard-10.png) + +1. If you selected `Yes` in the USB Loader menu, select where you would like to save your USB Loader files at. + + ![](/images/modmii/modmii-wizard-11.png) + +1. Verify where you would like to save files for your SD Card and/or USB Drive. + + ![](/images/modmii/modmii-wizard-12.png) + +1. Confirm your settings are correct, and then press `Finish`. Once you press the button, ModMii will begin to process and download files in the background, and will automatically generate and open a guide for you. From here, you should follow the guide generated by ModMii. + + ![](/images/modmii/modmii-wizard-13.png) ### SysCheck Updater Wizard -[SysCheck](syscheck) is a homebrew application that analyzes the modifications on a Wii.
You can give a SysCheck report to ModMii to help identify & update outdated mods. +The SysCheck Updater Wizard is a tool that utilizes the homebrew app [SysCheck](syscheck) to analyze any modifications on your Wii, especially IOS and cIOS. It accepts a `syscheck.csv` file generated by the app, and then provides any nessecary updates as needed. -You can have ModMii analyze a SysCheck by dragging the `syscheck.csv` file onto ModMii.exe. Or, you can launch the SysCheck Updater Wizard (`SU`) from ModMii's main menu and manually browse for the file. +1. Open ModMii Classic and enter in `SU` to open the SysCheck Updater Wizard. + + ![](/images/modmii/syscheck-wizard-1.png) + +1. Follow the instructions in the window if you don't already have a SysCheck log, and then drag and drop the `syscheck.csv` file from Windows Explorer into the window. This will paste the location of the file, from which you can press Enter. + + ![](/images/modmii/syscheck-wizard-2.png) + +1. The program will analyze your SysCheck file, and will provide options for you depending on what it sees. In this example instance, the mods on the Wii were up-to-date, but there were several unnecessary IOSes that could be stubbed. If you want to make these changes to your Wii, simply enter in `Y` and press Enter. From here, you should follow the guide generated by ModMii. + + ![](/images/modmii/syscheck-wizard-3.png) ### HackMii Solutions Wizard -The HackMii Solutions wizard can help fix symptoms like these: +The HackMii Solutions Wizard is a tool that fixes problems that may arise from things like Darkcorp/CIOSSPAGHETTI by installing clean IOSes. Examples of problems that may arise because of this are listed below: + HackMii Installer not prompting "Press (1) to continue" -+ HackMii Installer says "no vulnerable IOS found!" -+ Homebrew Channel is displaying upside-down ++ HackMii Installer saying "no vulnerable IOS found!" ++ Homebrew Channel displaying upside-down -It will install clean IOSs to allow for the HackMii Installer to operate properly. +1. Open ModMii Skin or ModMii Classic and select the HackMii Solutions option. -### Abstinence Wizard + ![](/images/modmii/hackmii-wizard-1.png) -This wizard requires an SD card. -{: .notice--warning} +1. Select your current System Menu version, followed by the System Menu Region, following the instructions in the program. If you are still confused, check the bottom option on each screen for an instructional video. -This wizard allows you to enjoy many of the benefits of a softmodded Wii without installing any permanent modifications to your Wii. It will allow you to launch an exploit to boot an from emulated NAND from external storage, instead of your Wii's internal NAND. + ![](/images/modmii/hackmii-wizard-2.png) -On a related note, you can also make a NAND backup without modifying your Wii at all. Find ModMii's "Support" folder and launch `Casper2BootMii.bat`.
It will save some files to a folder named `COPY_TO_SD`, copy the files inside it to your SD card and [launch an exploit](get-started). +1. Select the exploit you would like to use to mod your Wii. The exploits below are outlined throughout this website, but in most cases we would reccommend using Wilbrand if you have an SD card on hand. -When following one of the exploit guides above, please avoid replacing the `boot.elf` file. -{: .notice--warning} + ![](/images/modmii/hackmii-wizard-3.png) +1. If you selected the Wilbrand option in the previous step, enter your Wii's MAC address. If you don't know how to check your Wii's MAC address, enter `Help` in the text box for an instructional video. -
-Click here for a full list of available tools. + ![](/images/modmii/hackmii-wizard-4.png) -| Tool | Beschreibung | -| --------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| W = ModMii Wizard <-- Start Here to Mod Your Wii! | This option can be used to mod your Wii for the first time or re-mod a Wii that has been previously modded. | -| SU = SysCheck Updater Wizard (update only your outdated softmods) | This option is useful for people who have old modifications installed to their wii such as DarkCorp/Ciosspaghetti that can potetially cause problems for the latest homebrew custom firmware. | -| U = USB-Loader Setup Wizard | This option will help you properly set up your USB loader to be able to load your disk backups from an SD or USB hard drive. | -| H = HackMii Solutions Wizard (Upside-Down HBC\No Vulnerable IOS Fix) | This option is useful for people who are having trouble getting the HackMii Installer to work, or if they just simply have an upside down homebrew channel, or if DarkCorp/Ciosspaghetti was installed and there was no homebrew channel. | -| AW = Abstinence Wizard (Non-permanent Wii Hacks) | This option is useful for people who dont want to make any permanent modifications to their Wii but still want to have some of the benefits that homebrew can offer. | -| RC = Region Change Wizard | This option can be used to change the region of your Wii without bricking it (this is the best region changer tutorial available on the internet!). | -| S = SNEEK Installation, EmuNAND Builder\Modifier, Game Bulk Extractor | This option will help you properly set up an EmuNAND (aka neek2o) onto your SD or USB. benefits for emunand include extra storage space for save games or channels. and the benefit of not making any permanent modifications to your Wii. | -| F = open a File or Folder with ModMii for many more functions! | This option is an advanced tool especially helpful for developers. | -| 1 = Download Page 1 (System Menus, IOSs, MIOSs, Channels, etc.) | This option opens the first download page that includes most of the key parts for the system menu (downloaded from NUS). | -| 2 = Download Page 2 (Apps, USB-Loader Files, CheatCodes, etc.) | This option opens the second download page that includes exploits and useful apps for your Wii including some PC programs. | -| 3 = Download Page 3 (System Menu Themes) | This option opens the third download page that includes some system menu themes and items required to install system menu themes (base apps are downloaded from NUS). | -| 4 = Download Page 4 (cIOSs and cMIOSs) | This option opens the fourth download page that includes cIOSes and cMIOSes for use in USB loaders. It is recommended to just install the recommended cioses unless you plan to do some testing. | -| A = Advanced Downloads and Forwarder DOL\ISO Builder | This option is an advanced tool used to better customize downloads or allow you to build a dol executable useful for fowarders (channels on the system menu to access Wii applications). | -| L = Load Download Queue | This option will download all of the required titles need for the Wii system menu (titles are downloaded from NUS) | -| C = Build Config Files for Bootmii, Wad Manager or Multi-Mod Manager | This option will help you build configuration files required for certain applications. | -| FC = File Cleanup & App Updater: Update Apps and\or remove un-needed files | This option is useful for people who want to clean out their SD or USB of apps deemed outdated, useless, or otherwise depreciated. | -| M = ModMii Skin Mode: use your mouse instead of your keyboard! | This option will launch ModMii skin mode. Some advanced options may not be available in this view. | +1. Verify where you would like to save files for your SD Card and/or USB Drive. -
+ ![](/images/modmii/modmii-wizard-12.png) -
-Click here for a full list of available options. +1. Confirm your settings are correct, and then press `Finish`. Once you press the button, ModMii will begin to process and download files in the background, and will automatically generate and open a guide for you. From here, you should follow the guide generated by ModMii. After finishing this guide, it is recommended that you use the [SysCheck Updater Wizard](#syscheck-updater-wizard) to undo any other problematic modifications on your Wii. -| Option | Beschreibung | -| ---------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| D = Change Drive letter: | Changes where your SD files are saved to. | -| DU = Change Drive letter for USB: | Changes where your USB files are saved to. | -| d2x = change d2x cIOS version built: | Changes the cios version ModMii downloads. | -| H = Hermes cIOSs (202 & 222-224) will also be recommended | Enables Hermes IOS to be recommended and downloaded in the syscheck updater (will be stubbed if disabled). | -| CM = cMIOS included in recommended cIOSs | Enables cMIOS to be recommended and downloaded in the syscheck updater (will install stock MIOS if disabled). | -| E = Extra Brick Protection in ModMii Wizard Guides | Enables ModMiis Extra Brick Protection IOSes to be recommended and used in the syscheck updater tool. | -| U = Update IOSs. Wizard/SysCheck-Updater to update Active IOSs | Updates Existing IOSes to the latest version available on NUS. | -| AU = Auto-Updating downloads will skip update check if cached | Will skip downloading the files if already in the queue. | -| FWD = Install USB-Loader Forwarder in ModMii Wizard Guides | Will include the USB loader forwarder wad file in the USB loader wizard guides. | -| PC = PC Programs Save Location | Changes the save location for the downloadable PC programs. | -| RS = Root Save: Save IOSs\MIOSs to Root instead of WAD Folder | Saves IOSs\MIOSs to Root instead of WAD Folder. | -| 1 = Do not Keep 00000001 or NUS Folders for IOSs\MIOSs\SMs etc | Deletes the folder used for compiling the wad file and just gives you the wad file. | -| n2o = neek2o - build mod of s\uneek instead of original | Uses a better modified version of neek2o in the EmuNAND builder. | -| SSD = SNEEK and SNEEK+DI SD Access | Allows for SNEEK and SNEEK+DI access on the SD card. | -| F = Font.bin Colour for SNEEK/UNEEK | Changes the font color for neek2o. | -| SV = SNEEK Verbose Output | Displays extra information regarding EmuNAND. | -| V = Verbose for ModMii Skin & nandBinCheck | Displays another window with extra information regarding a nand check. | -| SO = Play sound at Finish | Plays a fun jingle after a successful download. | -| A = Auto-Update ModMii at program start | Will automatically check for updates when ModMii is launched. | -| N = Check for New versions of ModMii right now | Will check online for a ModMii update. | - -
+ ![](/images/modmii/hackmii-wizard-5.png) [Klicke hier, um zum Seitenindex zurückzukehren.](site-navigation) {: .notice--info} diff --git a/_pages/de_DE/nintendont.md b/_pages/de_DE/nintendont.md new file mode 100644 index 000000000..d7eef1b3f --- /dev/null +++ b/_pages/de_DE/nintendont.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="410.html" %} diff --git a/_pages/de_DE/recommended-homebrew.md b/_pages/de_DE/recommended-homebrew.md index 3bfeefbb3..bd74e8b68 100644 --- a/_pages/de_DE/recommended-homebrew.md +++ b/_pages/de_DE/recommended-homebrew.md @@ -16,7 +16,7 @@ Homebrew that has the ability to make permanant changes to your Wii are highligh + [**AnyRegion Changer ME**](https://oscwii.org/library/app/ARCME) - ModMii edition of AnyRegion Changer. While a powerful tool for changing region settings, it can also lead to severe bricks like [Korean Kii/Error 003](bricks#korean-kiierror-003-brick) so **only use this app if you know what you are doing**. + [**WiiXplorer-SS**](https://oscwii.org/library/app/wiixplorer-ss) - A modified and updated version of WiiXplorer. A file manager for the Wii, it allows you to view and customize files both on an SD card, a USB device, and the internal Wii memory. For this reason it is a very powerful but also dangerous tool - don't modify files on the system NAND unless you know what you are doing, as it can lead to various types of [bricks](bricks). + [**SaveGame Manager GX**](https://oscwii.org/library/app/SaveGame_Manager_GX) - A savegame/Mii extractor for the Wii. It supports GameCube memory cards (physical and virtual), emuNANDs, normal and protected saves, themes, and more. -+ [**MyMenuifyMod**](https://oscwii.org/library/app/mymenuifymod) - An application that allows you to theme the Wii Menu. While quite useful to make your Wii unique, it also has the ability to cause a [minor brick](bricks#theme-brick), so make sure to read our [theme guide](themes) for safe usage instructions. ++ [**csm-installer**](https://oscwii.org/library/app/csm-installer) - An application that allows you to theme the Wii Menu. While quite useful to make your Wii unique, it also has the ability to cause a [minor brick](bricks#theme-brick), so make sure to read our [theme guide](themes) for safe usage instructions. + [CleanRip](https://oscwii.org/library/app/CleanRip) - A tool to backup GameCube and Wii discs. Further information can be found in our [disc dumping guide](dump-games). + [**d2x cIOS installer**](https://oscwii.org/library/app/d2x-cios-installer) - A custom installer for Wii IOS, some of which is required for the functioning of certain software like USB loaders. You can see the guide [here](cios). + [FTPii](https://oscwii.org/library/app/ftpii) - An FTP server for your Wii, allowing you to transfer files across the network. diff --git a/_pages/de_DE/riiconnect24.md b/_pages/de_DE/riiconnect24.md index 2ebba1c70..d1e91b7e8 100644 --- a/_pages/de_DE/riiconnect24.md +++ b/_pages/de_DE/riiconnect24.md @@ -1,138 +1,5 @@ --- -title: "RiiConnect24" +title: Redirecting... --- -{% include toc title="Inhaltsverzeichnis" %} - -If you need help with anything regarding this tutorial, please join [the RiiConnect24 Discord server](https://discord.gg/rc24) (recommended) or [e-mail us at support@riiconnect24.net](mailto:support@riiconnect24.net). -{: .notice--primary} - -[RiiConnect24](https://rc24.xyz/) allows you to use discontinued services from WiiConnect24, which include the News, Forecast, Everybody Votes, Nintendo and Check Mii Out Channel, along with Wii Mail. - -It's recommended to set your Wii to the current time before proceeding. Follow [this tutorial](rtc) in order to set it. -{: .notice--warning} - -DO NOT INSTALL RIICONNECT24 ON A WII MINI! It will not work and it will brick the system. -{: .notice--danger} - -### Anforderungen - -Follow [this tutorial](riiconnect24-vwii) if you'd like to install RiiConnect24 on vWii (Wii Mode on Wii U). -{: .notice--primary} - -+ Eine SD-Karte oder ein USB-Laufwerk -+ A Wii with an Internet connection -+ A PC with an Internet connection -+ [RiiConnect24 Patcher (Windows, Mac and Linux)](https://github.com/riiconnect24/RiiConnect24-Patcher/releases) -+ [YAWM ModMii Edition](https://oscwii.org/library/app/yawmme) - -### Anleitung - -#### Section I - Using RiiConnect24 Patcher - -1. Click the link above to go to the GitHub page where the patcher is. -1. Download `RiiConnect24Patcher.bat` if you are on Windows, and `RiiConnect24Patcher.sh` if you are on a Unix system -1. RiiConnect24 Patcher Main Screen - + On Windows run `RiiConnect24Patcher.bat`. - + On Unix systems, open Terminal and type `bash`, then drag `RiiConnect24Patcher.sh` into the terminal then press enter. It should look like this: `bash RiiConnect24Patcher.sh`. -1. Press 1 to choose "`Start`" and confirm your selection by pressing `ENTER`. - - ![](/images/riiconnect24/patcher/1.JPG) - -1. Select the device you're patching for. - - ![](/images/riiconnect24/patcher/2.JPG) - -1. For this guide, choose "`Install RiiConnect24 on your Wii`" - - ![](/images/riiconnect24/patcher/3.JPG) - -1. Choose "`Express (Recommended)`". It will give you everything you need. - - ![](/images/riiconnect24/patcher/4.JPG) - -1. Wähle deine Region. - - ![](/images/riiconnect24/patcher/5.JPG) - -1. While you're at it, RiiConnect24 Patcher can additionally download some other optional channels that do not use RiiConnect24. `[X]` represents the options that selected. Just press 5 and `ENTER` if you're not interested. - - ![](/images/riiconnect24/patcher/6.JPG) - -1. Connect your SD Card or USB Drive to your computer and select "`1`". - - ![](/images/riiconnect24/patcher/7.JPG) - -1. If your device was detected successfully, select "`1`". If not, make sure there's a folder called `apps` on your SD Card or USB Drive and try again. - - ![](/images/riiconnect24/patcher/8.JPG) - -1. The patcher will download apps now - please be patient. - - ![](/images/riiconnect24/patcher/9.JPG) - -1. Once you reach the screen that says `Patching done`, you can exit the patcher. All the files should already be on your SD Card. - - ![](/images/riiconnect24/patcher/10.JPG) - - ![](/images/riiconnect24/patcher/11.PNG) - -1. If it did not copy everything automatically to your SD Card or USB Device, copy the `WAD` and `apps` folder next to `RiiConnect24Patcher.bat` to your SD Card or USB Device. - -#### Abschnitt 2 - WADs Installieren - -If you are using Dolphin, you have finished the guide. Install the WADs by going to `Tools -> Install WAD` within Dolphin. -{: .notice--primary} - -You will now install the patched IOS and Channel WADs that are required to use RiiConnect24. - -1. Extract the YAWM ModMii Edition `.zip` file, and copy the `apps` folder to your SD card or USB drive. -1. Put your SD card or USB drive in your Wii. -1. Starte den Homebrew-Kanal auf deiner Wii. -1. Launch YAWM ModMii Edition. -1. Select the device you have put the RiiConnect24 files on. -1. Highlight all the WADs in the `wad` folder by pressing the + Button to select them. When all of the WADs are selected, press A twice to install the WADs. -1. After they are successfully installed, press the HOME Button to exit back to the Homebrew Channel. - -#### Section III - Patching nwc24msg.cfg - -You will now patch your `nwc24msg.cfg` file which is required in order to use Wii Mail. - -1. Launch RiiConnect24 Mail Patcher. -1. It should only take a few seconds to patch your nwc24msg.cfg. When it's done, press the HOME Button to exit. - -#### Abschnitt 4 - Verbindung - -The old DNS server `164.132.44.106` has been deprecated as of `June 1st, 2023` and is no longer available to use. -{: .notice--warning} - -If you're getting errors such as `WiiConnect24 and Wii Shop Channel currently not being offered in your country`, go to Wii Settings -> Last Page -> Country and change it to United Kingdom. You will get this error when using a country that we don't support. Contact us at [support@riiconnect24.net](mailto:support@riiconnect24.net) if you need more help. -{: .notice--warning} - -If you get error 107245, then you have not installed the patched IOS.
-{: .notice--warning} - -You will now set your DNS to our servers. This is optional but it's recommended, because it enhances the use of RiiConnect24 and Wiimmfi by making some other features available. - -1. Go to `Wii Options`. -1. Go to `Wii Settings`. -1. Go to `Page 2`, then click on `Internet`. -1. Go to `Connection Settings`. -1. Select your current connection. -1. Go to `Change Settings`. -1. Go to `Auto-Obtain DNS` (Not IP Address), then select `No`, then `Advanced Settings`. -1. Type in `167.86.108.126` as the primary DNS. -1. Type in `1.1.1.1` as the secondary DNS. -1. Select `Confirm`, then select `Save`. -1. Select `OK` to perform a connection test. -1. If the connection test was successful, select `No` to skip the Wii System Update. -1. Go to `WiiConnect24`, then `WiiConnect24` again, and make sure it is enabled. -1. Back on the WiiConnect24 menu, go to `Standby Connection` and make sure it is enabled. -1. At `Slot Illumination`, we recommend you set the disc light to `Dim` or `Bright`, but this is optional. -1. Finally, go to the `Internet` section, then `User Agreements` or `Agreement/Contact`, then `Yes`. Please read through this. - -[Return to WiiConnect24](wiiconnect24) -{: .notice--info} - -[Klicke hier, um zum Seitenindex zurückzukehren.](site-navigation) -{: .notice--info} +{% include redirect.html redirect_to="https\://www\.wiilink24.com/guide/install/" %} diff --git a/_pages/de_DE/riitag.md b/_pages/de_DE/riitag.md new file mode 100644 index 000000000..e6b6bc322 --- /dev/null +++ b/_pages/de_DE/riitag.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="https\://wiki.hacks.guide/wiki/RiiTag" %} diff --git a/_pages/de_DE/riivolution.md b/_pages/de_DE/riivolution.md new file mode 100644 index 000000000..d7eef1b3f --- /dev/null +++ b/_pages/de_DE/riivolution.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="410.html" %} diff --git a/_pages/de_DE/themes.md b/_pages/de_DE/themes.md index fed4eab03..5e80a087e 100644 --- a/_pages/de_DE/themes.md +++ b/_pages/de_DE/themes.md @@ -4,13 +4,16 @@ title: "RiiConnect24 Themes Page" {% include toc title="Inhaltsverzeichnis" %} -This guide is intended for regular Wiis only. For installing themes on vWii (Wii U), follow [this page](themes-vwii). Additionally, forwarders are covered. +This guide is intended to be the last you will ever need when it comes to theming on the Wii, not only providing instructions for the Wii Menu through csm-installer, but also with themes on WiiFlow Lite, USB Loader GX, and The Homebrew Channel. Additionally, forwarders are covered. ### Wii-Menü-Designs installieren DO NOT CONTINUE WITH THIS GUIDE UNLESS YOU HAVE ADEQUATE BRICK PROTECTION, SPECIFICALLY [BOOTMII](bootmii) AND [PRIILOADER](priiloader)! {: .notice--danger} +This tutorial does not work on the Wii mini. Do not attempt this tutorial on the Wii mini or it will cause a [brick](bricks#theme-brick). +{: .notice--warning} + csm-installer has built in safety features to prevent from installing bad or corrupt Wii Menu themes, so please opt to use it instead of other theme installation homebrew. {: .notice--warning} diff --git a/_pages/de_DE/usbloadergx.md b/_pages/de_DE/usbloadergx.md new file mode 100644 index 000000000..00a63864a --- /dev/null +++ b/_pages/de_DE/usbloadergx.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-loaders.html" %} diff --git a/_pages/de_DE/wiibackupmanager.md b/_pages/de_DE/wiibackupmanager.md new file mode 100644 index 000000000..063d7bba0 --- /dev/null +++ b/_pages/de_DE/wiibackupmanager.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-backups.html" %} diff --git a/_pages/de_DE/wiiconnect24.md b/_pages/de_DE/wiiconnect24.md index 72fc9150d..702b24c45 100644 --- a/_pages/de_DE/wiiconnect24.md +++ b/_pages/de_DE/wiiconnect24.md @@ -3,44 +3,21 @@ title: "WiiConnect24" --- {% include toc title="Inhaltsverzeichnis" %} + -This guide provides different means of regaining WiiConnect24 functionality on your console. Although not at all nessecary, it is a "nice to have" feature that was originally used for online connectivity in certain applications on the console. These apps include the Forecast/News Channel, Nintendo Channel, Check Mii Out Channel, some Japan-exclusive channels, and more. Please bear in mind, the functionality you gain depends entirely on what service(s) you use. +[WiiConnect24](https://wikipedia.org/wiki/WiiConnect24) was a service that allowed users with Internet connected Wiis to view the weather & local news, send messages to friends, participate in Mii contest, and more. WiiConnect24 was discontinued on June 27th, 2013. -### Service Overview +## RiiConnect24 + WiiLink +[RiiConnect24](https://rc24.xyz) is a revival service for WiiConnect24 that started in 2015, which allows you to regain its functionality on your console. As of late 2023, the service is now owned by WiiLink, a project that started in 2020 that was previously aiming at the Japanese-exclusive channels. -#### Note about service compatibility: -Both services listed below are compatible with one another and can be loaded on the same console. With this said, it should be noted that when installing one channel over the other (WiiLink's Forecast Channel over RiiConnect24's Forecast Channel for example), the channel you are installing will overwrite the old one. - - -#### Service Support Status -✅ - In support
⚠️ - In development
⛔ - No support - -| Service Name | WiiLink | RiiConnect24 | -| ----------------------- | ------- | ------------ | -| Forecast Channel | ✅ | ✅ | -| News Channel | ⚠️ | ✅ | -| Wii Mail | ✅ | ✅ | -| Everybody Votes Channel | ✅ | ✅ | -| Nintendo Channel | ✅ | ✅ | -| Check Mii Out Channel | ⚠️ | ✅ | -| Wii Room | ✅ | ⛔ | -| Food Channel | ✅ | ⛔ | -| Photo Prints Channel | ✅ | ⛔ | -| Kirby TV Channel | ✅ | ⛔ | -| TV Guide Channel | ⚠️ | ⛔ | - -#### WiiLink -A newer WC24/Japanese channel revival service that started in 2020, but is rapidly regaining functionality in many different channels. - -Service support status can be found [here](https://www.wiilink24.com/status).
Their guide can be found [here](https://www.wiilink24.com/guide). - -#### RiiConnect24 -The longest lasting WC24 revival service, currently only with support for the worldwide WC24 channels as well as mail services. - -Service support status can be found [here](https://rc24.xyz/stats/).
RiiConnect24 currently does not have a self-hosted guide, however you can find ours [here](riiconnect24). +There is a patcher that ships both of these services together as one - meaning you get all of the international and Japanese-only channels in one package. The guide on how to install these services can be found [on WiiLink's website.](https://www.wiilink24.com/guide/) + ### Updating RTC Clock -If you choose to install either of these services on your Wii, it is advised to synchronize its external clock in order to prevent various issues (such as inability to use said services) that may arise otherwise. The steps to do so can be found below: #### What you need + A working Internet connection on your Wii diff --git a/_pages/de_DE/wiiflow.md b/_pages/de_DE/wiiflow.md new file mode 100644 index 000000000..00a63864a --- /dev/null +++ b/_pages/de_DE/wiiflow.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-loaders.html" %} diff --git a/_pages/en_US/410.md b/_pages/en_US/410.md new file mode 100644 index 000000000..149c74830 --- /dev/null +++ b/_pages/en_US/410.md @@ -0,0 +1,12 @@ +--- +title: "Page no longer exists" # +sitemap: false +--- + +The page you are trying to view used to exist, but it has since been removed. Maybe the instructions you are following are outdated? (If you got here from a link on this guide, [let us know](https://github.com/hacks-guide/Guide_Wii/issues)) + +[Click here to go back to the site index.](site-navigation) +{: .notice--info} + +![](https://http.cat/410) +{: .notice--info} diff --git a/_pages/en_US/bootmii.md b/_pages/en_US/bootmii.md index df1b1b4c8..f5e5ec054 100644 --- a/_pages/en_US/bootmii.md +++ b/_pages/en_US/bootmii.md @@ -4,23 +4,12 @@ title: "BootMii Backup" {% include toc title="Table of Contents" %} -BootMii allows for backing up and restoring your Wii's NAND storage. This page will guide you in backing up your Wii's NAND to an SD Card, which you can then use however you like. - -Family edition Wiis (Wiis without GameCube ports) CANNOT restore NAND backups. This is because of the lack of GameCube ports which are required on non-boot2 Wiis to enter the restoration confirmation code. Regardless, it is still recommended to make one on these consoles. -{: .notice--danger} +BootMii allows for backing up and restoring your Wii's NAND storage. +This page will guide you in backing up your Wii's NAND to an SD Card, which you can then use however you like. You need an **SD card** to use BootMii at all, but especially to create a NAND backup. If you do not have an SD card on hand right now, you can skip this page, but it is HIGHLY RECOMMENDED to return to this page later to back up your NAND. {: .notice--warning} -Navigating BootMii is not possible using a Wii Remote. You must use the POWER and RESET buttons on your console, or a GameCube controller plugged into port 1. To navigate between options, press POWER on your Wii (or left/right on the +Control Pad on a GameCube controller). To select an option, press RESET on your Wii or A on your GameCube controller. You will NEED to use a GameCube controller to restore a NAND backup in the future if BootMii is installed as IOS. -{: .notice--info} - -If the `Launch BootMii` button does not appear in the Homebrew Channel, [re-launch the HackMii Installer](hackmii) and install BootMii. -{: .notice--warning} - -If the screen stays black and the blue disc drive light is blinking upon launching BootMii, you are missing the BootMii files on your SD card. Download [this zip file](/assets/files/bootmii_sd_files.zip) and extract it to the root of your SD card, then try again. -{: .notice--warning} - ### Requirements * An SD card with a minimum 512MB of free space (1GB or more recommended) @@ -35,10 +24,21 @@ If you have BootMii installed as boot2, you will need to launch BootMii by resta 1. Press the HOME Button, then select "Launch BootMii". ![](/images/bootmii/BootMii_HBC.png) + + If the `Launch BootMii` button does not appear in the Homebrew Channel, [re-launch the HackMii Installer](hackmii) and install BootMii. + {: .notice--warning} + + If the screen stays black and the blue disc drive light is blinking upon launching BootMii, you are missing the BootMii files on your SD card. Download [this zip file](/assets/files/bootmii_sd_files.zip) and extract it to the root of your SD card, then try again. + {: .notice--warning} 1. You should see an image similar to the below now on your screen: ![](/images/bootmii/BootMii_Main.png) + + Navigating BootMii is not possible using a Wii Remote. + You must use the POWER and RESET buttons on your console, or a GameCube controller plugged into port 1. + To navigate between options, press POWER. To select an option, press RESET. + {: .notice--info} 1. Select the Options button (the icon with the gears). @@ -63,18 +63,19 @@ If you have BootMii installed as boot2, you will need to launch BootMii by resta ![](/images/bootmii/BootMii_Return.png)
-Note: **restoring a NAND backup is usually a last resort**. There often better ways to unbrick your console. +Note: **restoring a NAND backup is usually a last resort**. There are often better ways to unbrick your console. Try your best to [identify your brick condition](bricks) and reverse the action that caused it in the first place. -To restore from a NAND backup on your SD card, you can follow the instructions for [RestoreMii](bootmiirecover) (Original Wii only). +To restore from a NAND backup on your SD card, you can follow the instructions for [RestoreMii](bootmiirecover). +**Family edition Wiis (Wiis without GameCube ports) CANNOT restore NAND backups.**
As stated earlier, if you have BootMii installed as boot2, it will launch every time you start your console. If you would like to change this, you can use the app [BootMii Config Editor](https://oscwii.org/library/app/BootMiiConfigurationEditor). Or, you can edit `sd:/bootmii/bootmii.ini` manually. {: .notice--info} -Two files will have been created on the root of your SD Card: `nand.bin` and `keys.bin`. `nand.bin` is your Wii's internal memory, while `keys.bin` are your console's keys. +Two files will have been created on the root of your SD Card: `nand.bin` and `keys.bin`. `nand.bin` is a backup of your console's internal memory, while `keys.bin` are your console's keys. {: .notice--info} [Continue to Priiloader Installation](priiloader)
diff --git a/_pages/en_US/bricks.md b/_pages/en_US/bricks.md index ed7d49d71..bec1260f0 100644 --- a/_pages/en_US/bricks.md +++ b/_pages/en_US/bricks.md @@ -14,7 +14,7 @@ Preventing a brick involves many rules that range between common sense and fail- + **Do NOT follow old Wii modding tutorials, use old homebrew, or use video guides on the Internet unless it is EXPLICITLY RECOMMENDED by the homebrew developer.** + **Do NOT, under ANY CIRCUMSTANCES, USE THE HOMEBREW APP `Pimp My Wii`. It is DANGEROUS and does things that have the ability to BRICK YOUR WII!** + **Do NOT restore NAND backups from other consoles!** -+ **Do NOT use a Nintendo Wi-Fi Connection service unless it is known to be RCE patched (such as [Wiimmfi](wiimmfi). Doing otherwise could allow a malicious actor to BRICK your Wii!** ++ **Do NOT use a Nintendo Wi-Fi Connection service unless it is known to be RCE patched (such as [Wiimmfi](wiimmfi)). Doing otherwise could allow a malicious actor to BRICK your Wii!** + **Only install updates for your own region!**. + Installing updates from another region could have no effect at best, but result in a [Korean Kii/Error 003](bricks#korean-kiierror-003-brick) brick at worst. To prevent this from happening if you bought a pre-owned Wii, run [SysCheck](syscheck) to verify the original region of your console. If it is Korean, be EXTREMELY careful with applying system updates to your console, and consider seeking support for further assistance. + **Do NOT delete or modify system files, and do NOT install any system file mods unless you know what you are doing!** @@ -43,7 +43,7 @@ In any case, you should absolutely: Here is a small section that lists out steps similar to the Wii boot process, and links to the likely corresponding brick if something fails. -+ Turn on Wii. ++ Turn on your Wii. + Nothing happens, black screen. Wii cannot be turned on with a Wiimote, Recovery Mode cannot be started, and BootMii as boot2 is not accessible. See [low-level brick](bricks#low-level-brick). + Nothing happens, black screen, BUT Wii can be turned on with a Wiimote/Recovery Mode can be accessed. See [Wi-Fi brick](bricks#wi-fi-brick). + Nothing happens, black screen, BUT BootMii as boot2 is accessible. See [IOS brick](bricks#ios-brick). @@ -133,7 +133,7 @@ From here, the Homebrew Channel can be loaded and the brick can be fixed by dele When starting the Wii, you instead get an error from the Opera web browser along the lines of `You tried to access the address (URL), which is currently unavailable.` This will happen every time you start the Wii, and cannot be bypassed by any other means. #### Cause -This brick is a more fatal version of a [Semibrick](#semibrick). If your SYSCONF gets corrupt or damaged, the Wii will regenerate it and start the setup phase. +This brick is a more fatal version of a [Semibrick](#semibrick). If your SYSCONF (system configuration file) gets corrupt or damaged, the Wii will regenerate it and start the setup phase. However, the setup pages are in a similar location to the Wii settings pages. If you have an incorrect region Wii Menu or theme, the Wii cannot find them. @@ -147,7 +147,7 @@ In case you do not have Priiloader or your Wii is not modded, you can try [BlueB Alternatively, [Recovery Mode](recovery-mode) can be used to attempt a fix. -## Korean Kii/Error 003 Brick +## KoreanKii/Error 003 Brick #### Symptoms Screen shows up as listed below on normal boot. diff --git a/_pages/en_US/dosanddonts.md b/_pages/en_US/dosanddonts.md new file mode 100644 index 000000000..6ceed5bee --- /dev/null +++ b/_pages/en_US/dosanddonts.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="faq.html" %} diff --git a/_pages/en_US/faq.md b/_pages/en_US/faq.md index b5a802b91..eb0b534e8 100644 --- a/_pages/en_US/faq.md +++ b/_pages/en_US/faq.md @@ -53,10 +53,10 @@ For the [BlueBomb](bluebomb), [str2hax](str2hax), or [FlashHax](flashhax) exploi {: .notice--info} FAT32 is the recommended file system for SD cards, see [this guide](https://wiki.hacks.guide/wiki/Formatting_an_SD_card) on formatting instructions.
-For USB devices, FAT32 is also recommended, although users should be aware of FAT32 limitations which only allow volumes up to 2TB in size. WBFS was a previously used file system for Wii game backups - today, it is outdated and should not be used. +For USB devices, FAT32 is also recommended, although users should be aware of FAT32 limitations which only allow volumes up to 2TB in size. WBFS was a previously used file system for Wii game backups (not to be confused with WBFS files) - today, it is outdated and should not be used. {: .notice--info} -For stock Wii Menu versions lower than 4.0, a limitation in the Wii System Software prevents SD cards bigger than 2GB from being used.
+For stock Wii Menu versions lower than 4.0, a limitation in the Wii system software prevents SD cards bigger than 2GB from being used.
For stock Wii Menu versions 4.0 or higher, this limitation is removed and SD cards of various sizes can be used.
Your highest chance of getting a working SD card on any Wii is at sizes 32GB or lower, but success has been reported various times on cards ranging up to 256GB. {: .notice--warning} @@ -68,9 +68,9 @@ For USB devices, flash drives have a high rate of not working on Wii consoles. I When considering buying or using an SD card or USB device, it is worth considering the things that you will be using either storage medium for. Different uses can take up varying amounts of space, some common examples of which are shown below: -+ Wii Backups: The largest Wii games (dual-layer DVD) are up to sizes of 9GB, more normal games are closer to sizes of 4GB or lower. The average user for a Wii backup device would probably want 128GB or more of space. ++ Wii Backups: The largest Wii games (dual-layer DVD) are up to sizes of 8.5GB, more normal games are closer to sizes of 4.7GB or lower. The average user for a Wii backup device would probably want 128GB or more of space. + GameCube Backups: The largest GameCube games reach sizes of up to 1.3GB. ISO sizes are normally this size regardless of the game, but can be considerably lower if NKIT is used as a format instead. The average user for a GameCube backup device would probably want 64GB or more of space. -+ General Emulation: There are a wide variety of emulators available on the Wii. Because the size of different game ROMs differ dramatically, the average user for an emulation drive would probably want 32GB or more of space. ++ General Emulation: There are a wide variety of emulators available on the Wii. Because the size of different game ROMs differ dramatically, the average user wanting to emulate games would probably want 32GB or more of space. + General Homebrew: For homebrew, the average user would want 2GB or more of space. + NAND Backups: For backing up your NAND with BootMii, the average user would need a minimum of 512MB of free space, but sizes of 1GB or more are recommended. + Bare minimum, exploit only: The minimum amount of space to run an SD-card compatible exploit on a Wii is 128MB. diff --git a/_pages/en_US/hbc.md b/_pages/en_US/hbc.md index 7e3b2e6f6..5bbbbc263 100644 --- a/_pages/en_US/hbc.md +++ b/_pages/en_US/hbc.md @@ -7,7 +7,7 @@ title: "Homebrew Channel and BootMii Installation" The Homebrew Channel is where you will go to launch homebrew applications. BootMii is a piece of software that can backup and restore your Wii's NAND storage, and if installed in boot2, provide brick protection. -BootMii can be installed in two ways: directly to a part of the Wii bootloader called boot2, and via an IOS. BootMii under boot2 is preferred as it provides extended brick protection, but Wiis with a vulnerable boot2 are considerably rarer, having been manufactured before 2009. In most cases, installing BootMii as IOS should be fine, as long as you also install [Priiloader](priiloader). +BootMii can be installed in two ways: directly to a part of the Wii bootloader called boot2, and via an IOS. BootMii under boot2 is preferred as it provides extended brick protection, but Wiis with a vulnerable boot1 that allows this installation are considerably rarer, having been manufactured before 2009. In most cases, installing BootMii as IOS should be fine, as long as you also install [Priiloader](priiloader). {: .notice--info} If you do not have an SD card, you cannot install nor use BootMii, regardless of whether you install it as IOS or boot2. diff --git a/_pages/en_US/legacy-exploits.md b/_pages/en_US/legacy-exploits.md index d055927f8..145b8f977 100644 --- a/_pages/en_US/legacy-exploits.md +++ b/_pages/en_US/legacy-exploits.md @@ -98,3 +98,4 @@ Note for vWii: if one of these exploits is planned to be used, it is recommended + Works on all vWii system menu versions. + Superceded by the Compat Title Installer, which does not require modifying the Mii Channel. + [WiiUbrew Page](https://wiiubrew.org/wiki/Wuphax) + diff --git a/_pages/en_US/modmii.md b/_pages/en_US/modmii.md index a0abf6f63..747423e0f 100644 --- a/_pages/en_US/modmii.md +++ b/_pages/en_US/modmii.md @@ -4,122 +4,191 @@ title: "ModMii" {% include toc title="Table of Contents" %} -If you need help for anything regarding this tutorial, please join [the ModMii Discord server](https://discord.gg/cMnBRACQwQ). -{: .notice--info} - This Program does NOT come with a warranty, so you are responsible for any potential damage done to your Wii. {: .notice--warning} This program is NOT intended to be used for the vWii or the Wii mini. Any usage on vWii or Wii mini is untested. {: .notice--warning} -ModMii is a PC program for Windows created by XFlak that has various helpful tools for modding, including some tutorials that may not be currently available on this website.
-You can choose to launch in ModMii skin, which has a more user-friendly interface, or launch in ModMii Classic, which uses a command-line (Command Prompt/Terminal) interface. +ModMii is an all-in-one Wii hacking tool for Windows created by XFlak that has various helpful tools for modding. It can accomplish the following: -Some advanced options may not be accessible in ModMii Skin. A list of the features available in ModMii Classic can be found at the bottom of the page. -{: .notice--info} ++ Hacking the console for the first time, or re-hacking it ++ Check for and update outdated softmods ++ Fix upside-down Homebrew Channel problems ++ Run homebrew without making any changes to your Wii's NAND ++ Download homebrew ++ And more! -### Requirements +### ModMii Overview + +There are two different ways to use ModMii. There is ModMii Classic, which uses a command line interface, but has all of the features available to the program. ModMii Skin has a graphical user interface, on the other hand, but has less options available to the user. If you're looking to simply mod your Wii for the first time, ModMii Skin should suffice. Otherwise, we reccomend using ModMii Classic where possible.
+The chart below will help you determine what can be done in either interface. + +| Tools | ModMii Classic | ModMii Skin | +| ----- | -------------- | ----------- | +| ModMii Wizard | ✅ | ✅ | +| SysCheck Updater Wizard | ✅ | ⛔ | +| USB Loader Setup Wizard | ✅ | ✅ | +| HackMii Solutions Wizard | ✅ | ✅ | +| Abstinence Wizard | ✅ | ✅ | +| Region Change Wizard | ✅ | ✅ | +| SNEEK/EmuNAND Installation | ✅ | ✅ | +| Open File Function | ✅ | ⛔ | +| Load Download Queue | ✅ | ✅ | +| Download Page 1/2/3/4 | ✅ | ⛔ | +| Advanced Downloads | ✅ | ⛔ | +| Load Download Queue | ✅ | ⛔ | +| Build Config Files | ✅ | ⛔ | +| File Cleanup & App Updater | ✅ | ⛔ | + +
+Click here for a detailed explanation of each tool. + +| Tool | Description | +| ---- | ----------- | +| W = ModMii Wizard <-- Start Here to Mod Your Wii! | This option can be used to hack your Wii for the first time or re-hack a Wii that has been previously modded. | +| SU = SysCheck Updater Wizard (update only your outdated softmods) | This option checks for and updates old modifications installed to their wii such as DarkCorp/CIOSSPAGHETTI that can potentially cause problems for the latest homebrew custom firmware. | +| U = USB-Loader Setup Wizard | This option will properly set up your USB loader to be able to load your disk backups from an SD or USB hard drive. This option is not necessary if using the ModMii Wizard. | +| H = HackMii Solutions Wizard (Upside-Down HBC\No Vulnerable IOS Fix) | This option is useful for people who are having trouble getting the HackMii Installer to work or have an upside down homebrew channel. | +| AW = Abstinence Wizard (Non-permanent Wii Hacks) | This option allows you to run homebrew on your Wii without making any permanent modifications to the system NAND. | +| RC = Region Change Wizard | This option can be used to change the region of your Wii without bricking it, and is arguably the best region changing wizard on the internet. | +| S = SNEEK Installation, EmuNAND Builder\Modifier, Game Bulk Extractor | This option will help you properly set up an EmuNAND (aka neek2o) onto your SD or USB. Benefits for EmuNAND include extra storage space for save games or channels, as well as running homebrew without making any permanent modifications to the system NAND. | +| F = open a File or Folder with ModMii for many more functions! | This option is an advanced tool especially helpful for developers. | +| 1 = Download Page 1 (System Menus, IOSs, MIOSs, Channels, etc.) | This option opens the first download page that includes most of the key parts of the Wii System Menu (downloaded from NUS). | +| 2 = Download Page 2 (Apps, USB-Loader Files, CheatCodes, etc.) | This option opens the second download page that includes exploits and useful apps for your Wii including some PC programs. | +| 3 = Download Page 3 (System Menu Themes) | This option opens the third download page that includes some system menu themes and items required to install system menu themes (base apps are downloaded from NUS). | +| 4 = Download Page 4 (cIOSs and cMIOSs) | This option opens the fourth download page that includes cIOSes and cMIOSes for use in USB loaders. | +| A = Advanced Downloads and Forwarder DOL\ISO Builder | This option allows you to download any IOS and cIOS and build custom DOL/ISO forwarders. Intended for advanced users only. | +| L = Load Download Queue | This option loads bundled or previously saved download queues. | +| C = Build Config Files for Bootmii, Wad Manager or Multi-Mod Manager | This option allows you to build customized config files for BootMii, Wad Manager, and Multi-Mod Manager. | +| FC = File Cleanup & App Updater: Update Apps and\or remove un-needed files | This option removes unnessecary files from your SD Card or Hard Drive after finishing softmodding your Wii. | + +

+ +When using ModMii, it is important to note that it will generate a custom guide for you depending on the options that you select. For this reason, this guide will not be focused on how to mod your Wii, as ModMii handles that function. Instead, it will be a quick start guide show you how to effectively use it with the most common options. + +### Installing ModMii + +#### Requirements * A Wii * A USB drive or SD Card * A Windows PC (a Virtual Machine will work) * [ModMii](https://modmii.github.io/) -This is a quick start guide on using ModMii on your Windows PC. +#### Installation -### ModMii Wizard +1. Go to the [ModMii website](https://modmii.github.io) and scroll down to the Download section. Here, select the `Installer` option. Your browser may flag the installer as malware, but it is a **false positive**. -You can use the ModMii wizard to softmod any Wii.
-Even if the Wii has been softmodded in the past, you can have ModMii overwrite existing softmods by telling ModMii that this is the first time you're modding your Wii (even if it isn't). + ![](/images/modmii/modmii-download.png) -You can also use this wizard to set up a USB loader at the same time, instead of having to use the USB Loader setup wizard later on. +2. Open the `ModMiiInstaller.exe` file and go through the setup process. + + ![](/images/modmii/modmii-install.png) + +### Using the ModMii Wizard + +The ModMii Wizard is tool that can softmod your Wii from start to finish, downloading all necessary files and then generating a guide that you can use to implement the softmod. This tool can also be used to overwrite existing softmods on a previously softmodded Wii. + +1. Open ModMii Skin or ModMii Classic and select the ModMii Wizard option at the top of the list. + + ![](/images/modmii/modmii-wizard-1.png) + +1. Answer `Yes` to the first question, unless you have a very specific idea of what you would like to do or update to your Wii. + + ![](/images/modmii/modmii-wizard-2.png) + +1. Select your current System Menu version, followed by the System Menu Region, following the instructions in the program. If you are still confused, check the bottom option on each screen for an instructional video. + + ![](/images/modmii/modmii-wizard-3.png) + +1. Select the exploit you would like to use to mod your Wii. The exploits below are outlined throughout this website, but in most cases we would reccommend using Wilbrand if you have an SD card on hand. + + ![](/images/modmii/modmii-wizard-4.png) + +1. If you selected the Wilbrand option in the previous step, enter your Wii's MAC address. If you don't know how to check your Wii's MAC address, enter `Help` in the text box for an instructional video. + + ![](/images/modmii/modmii-wizard-5.png) + +1. Select your desired System Menu version from the list. + + ![](/images/modmii/modmii-wizard-6.png) + +1. Select whether or not you would like to install any of the listed channels - this is an optional step. + + ![](/images/modmii/modmii-wizard-7.png) + +1. Select whether or not you would like to install a custom Wii theme, with the choice of three theme effects. Each effect deals with how much the outline when hovering over a Wii Channel spins. + + ![](/images/modmii/modmii-wizard-8.png) + +1. Select whether or not you would like to set up a USB Loader for use with your Wii. + + ![](/images/modmii/modmii-wizard-9.png) + +1. If you selected `Yes` in the USB Loader menu, select which USB Loader you would like to use. If you choose an individual one, we reccomend either USB Loader GX or WiiFlow as both are covered on this website, or you may optionally download each option. + + ![](/images/modmii/modmii-wizard-10.png) + +1. If you selected `Yes` in the USB Loader menu, select where you would like to save your USB Loader files at. + + ![](/images/modmii/modmii-wizard-11.png) + +1. Verify where you would like to save files for your SD Card and/or USB Drive. + + ![](/images/modmii/modmii-wizard-12.png) + +1. Confirm your settings are correct, and then press `Finish`. Once you press the button, ModMii will begin to process and download files in the background, and will automatically generate and open a guide for you. From here, you should follow the guide generated by ModMii. + + ![](/images/modmii/modmii-wizard-13.png) ### SysCheck Updater Wizard -[SysCheck](syscheck) is a homebrew application that analyzes the modifications on a Wii.
-You can give a SysCheck report to ModMii to help identify & update outdated mods. +The SysCheck Updater Wizard is a tool that utilizes the homebrew app [SysCheck](syscheck) to analyze any modifications on your Wii, especially IOS and cIOS. It accepts a `syscheck.csv` file generated by the app, and then provides any nessecary updates as needed. -You can have ModMii analyze a SysCheck by dragging the `syscheck.csv` file onto ModMii.exe. -Alternatively, you can launch the SysCheck Updater Wizard (`SU`) from ModMii's main menu and manually browse for the file. +1. Open ModMii Classic and enter in `SU` to open the SysCheck Updater Wizard. + + ![](/images/modmii/syscheck-wizard-1.png) + +1. Follow the instructions in the window if you don't already have a SysCheck log, and then drag and drop the `syscheck.csv` file from Windows Explorer into the window. This will paste the location of the file, from which you can press Enter. + + ![](/images/modmii/syscheck-wizard-2.png) + +1. The program will analyze your SysCheck file, and will provide options for you depending on what it sees. In this example instance, the mods on the Wii were up-to-date, but there were several unnecessary IOSes that could be stubbed. If you want to make these changes to your Wii, simply enter in `Y` and press Enter. From here, you should follow the guide generated by ModMii. + + ![](/images/modmii/syscheck-wizard-3.png) ### HackMii Solutions Wizard -The HackMii Solutions wizard can help fix symptoms like these: +The HackMii Solutions Wizard is a tool that fixes problems that may arise from things like Darkcorp/CIOSSPAGHETTI by installing clean IOSes. Examples of problems that may arise because of this are listed below: + HackMii Installer not prompting "Press (1) to continue" -+ HackMii Installer says "no vulnerable IOS found!" -+ Homebrew Channel is displaying upside-down ++ HackMii Installer saying "no vulnerable IOS found!" ++ Homebrew Channel displaying upside-down -It will install clean IOSs to allow for the HackMii Installer to operate properly. +1. Open ModMii Skin or ModMii Classic and select the HackMii Solutions option. -### Abstinence Wizard + ![](/images/modmii/hackmii-wizard-1.png) -This wizard requires an SD card. -{: .notice--warning} +1. Select your current System Menu version, followed by the System Menu Region, following the instructions in the program. If you are still confused, check the bottom option on each screen for an instructional video. -This wizard allows you to enjoy many of the benefits of a softmodded Wii without installing any permanent modifications to your Wii. -It will allow you to launch an exploit to boot an from emulated NAND from external storage, rather than use your Wii's internal NAND. + ![](/images/modmii/hackmii-wizard-2.png) -You can also make a NAND backup without modifying your Wii at all by navigating to ModMii's "Support" folder and launching `Casper2BootMii.bat`.
-It will save some files to a folder named `COPY_TO_SD`; copy the files inside it to your SD card and launch an exploit like [Wilbrand](wilbrand). +1. Select the exploit you would like to use to mod your Wii. The exploits below are outlined throughout this website, but in most cases we would reccommend using Wilbrand if you have an SD card on hand. -When following one of the exploit guides above, avoid replacing the `boot.elf` file. -{: .notice--warning} + ![](/images/modmii/hackmii-wizard-3.png) +1. If you selected the Wilbrand option in the previous step, enter your Wii's MAC address. If you don't know how to check your Wii's MAC address, enter `Help` in the text box for an instructional video. -
-Click here for a full list of available tools. + ![](/images/modmii/hackmii-wizard-4.png) -| Tool | Description | -| -------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| W = ModMii Wizard <-- Start Here to Mod Your Wii! | This option can be used to mod your Wii for the first time or re-mod a Wii that has been previously modded. | -| SU = SysCheck Updater Wizard (update only your outdated softmods) | This option is useful for people who have old modifications installed to their wii such as DarkCorp/Ciosspaghetti that can potetially cause problems for the latest homebrew custom firmware. | -| U = USB-Loader Setup Wizard | This option will help you properly set up your USB loader to be able to load your disk backups from an SD or USB hard drive. | -| H = HackMii Solutions Wizard (Upside-Down HBC\No Vulnerable IOS Fix) | This option is useful for people who are having trouble getting the HackMii Installer to work, or if they just simply have an upside down homebrew channel, or if DarkCorp/Ciosspaghetti was installed and there was no homebrew channel. | -| AW = Abstinence Wizard (Non-permanent Wii Hacks) | This option is useful for people who dont want to make any permanent modifications to their Wii but still want to have some of the benefits that homebrew can offer. | -| RC = Region Change Wizard | This option can be used to change the region of your Wii without bricking it (this is the best region changer tutorial available on the internet!). | -| S = SNEEK Installation, EmuNAND Builder\Modifier, Game Bulk Extractor | This option will help you properly set up an EmuNAND (aka neek2o) onto your SD or USB. benefits for emunand include extra storage space for save games or channels. and the benefit of not making any permanent modifications to your Wii. | -| F = open a File or Folder with ModMii for many more functions! | This option is an advanced tool especially helpful for developers. | -| 1 = Download Page 1 (System Menus, IOSs, MIOSs, Channels, etc.) | This option opens the first download page that includes most of the key parts for the system menu (downloaded from NUS). | -| 2 = Download Page 2 (Apps, USB-Loader Files, CheatCodes, etc.) | This option opens the second download page that includes exploits and useful apps for your Wii including some PC programs. | -| 3 = Download Page 3 (System Menu Themes) | This option opens the third download page that includes some system menu themes and items required to install system menu themes (base apps are downloaded from NUS). | -| 4 = Download Page 4 (cIOSs and cMIOSs) | This option opens the fourth download page that includes cIOSes and cMIOSes for use in USB loaders. It is recommended to just install the recommended cioses unless you plan to do some testing. | -| A = Advanced Downloads and Forwarder DOL\ISO Builder | This option is an advanced tool used to better customize downloads or allow you to build a dol executable useful for fowarders (channels on the system menu to access Wii applications). | -| L = Load Download Queue | This option will download all of the required titles need for the Wii system menu (titles are downloaded from NUS) | -| C = Build Config Files for Bootmii, Wad Manager or Multi-Mod Manager | This option will help you build configuration files required for certain applications. | -| FC = File Cleanup & App Updater: Update Apps and\or remove un-needed files | This option is useful for people who want to clean out their SD or USB of apps deemed outdated, useless, or otherwise depreciated. | -| M = ModMii Skin Mode: use your mouse instead of your keyboard! | This option will launch ModMii skin mode. Some advanced options may not be available in this view. | +1. Verify where you would like to save files for your SD Card and/or USB Drive. -
+ ![](/images/modmii/modmii-wizard-12.png) -
-Click here for a full list of available options. +1. Confirm your settings are correct, and then press `Finish`. Once you press the button, ModMii will begin to process and download files in the background, and will automatically generate and open a guide for you. From here, you should follow the guide generated by ModMii. After finishing this guide, it is recommended that you use the [SysCheck Updater Wizard](#syscheck-updater-wizard) to undo any other problematic modifications on your Wii. -| Option | Description | -| ------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- | -| D = Change Drive letter: | Changes where your SD files are saved to. | -| DU = Change Drive letter for USB: | Changes where your USB files are saved to. | -| d2x = change d2x cIOS version built: | Changes the cios version ModMii downloads. | -| H = Hermes cIOSs (202 & 222-224) will also be recommended | Enables Hermes IOS to be recommended and downloaded in the syscheck updater (will be stubbed if disabled). | -| CM = cMIOS included in recommended cIOSs | Enables cMIOS to be recommended and downloaded in the syscheck updater (will install stock MIOS if disabled). | -| E = Extra Brick Protection in ModMii Wizard Guides | Enables ModMiis Extra Brick Protection IOSes to be recommended and used in the syscheck updater tool. | -| U = Update IOSs. Wizard/SysCheck-Updater to update Active IOSs | Updates Existing IOSes to the latest version available on NUS. | -| AU = Auto-Updating downloads will skip update check if cached | Will skip downloading the files if already in the queue. | -| FWD = Install USB-Loader Forwarder in ModMii Wizard Guides | Will include the USB loader forwarder wad file in the USB loader wizard guides. | -| PC = PC Programs Save Location | Changes the save location for the downloadable PC programs. | -| RS = Root Save: Save IOSs\MIOSs to Root instead of WAD Folder | Saves IOSs\MIOSs to Root instead of WAD Folder. | -| 1 = Do not Keep 00000001 or NUS Folders for IOSs\MIOSs\SMs etc | Deletes the folder used for compiling the wad file and just gives you the wad file. | -| n2o = neek2o - build mod of s\uneek instead of original | Uses a better modified version of neek2o in the EmuNAND builder. | -| SSD = SNEEK and SNEEK+DI SD Access | Allows for SNEEK and SNEEK+DI access on the SD card. | -| F = Font.bin Colour for SNEEK/UNEEK | Changes the font color for neek2o. | -| SV = SNEEK Verbose Output | Displays extra information regarding EmuNAND. | -| V = Verbose for ModMii Skin & nandBinCheck | Displays another window with extra information regarding a nand check. | -| SO = Play sound at Finish | Plays a fun jingle after a successful download. | -| A = Auto-Update ModMii at program start | Will automatically check for updates when ModMii is launched. | -| N = Check for New versions of ModMii right now | Will check online for a ModMii update. | - -
+ ![](/images/modmii/hackmii-wizard-5.png) [Click here to go back to the site index.](site-navigation) {: .notice--info} diff --git a/_pages/en_US/nintendont.md b/_pages/en_US/nintendont.md new file mode 100644 index 000000000..d7eef1b3f --- /dev/null +++ b/_pages/en_US/nintendont.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="410.html" %} diff --git a/_pages/en_US/osc.md b/_pages/en_US/osc.md index c6c6391b9..3c31e181f 100644 --- a/_pages/en_US/osc.md +++ b/_pages/en_US/osc.md @@ -9,7 +9,7 @@ For support (in English) with the Open Shop Channel, join [Open Shop Channel on The [Open Shop Channel](https://oscwii.org/) is a homebrew app repository created by dhtdht020, and is currently the preferred way to download homebrew. Not only is it more convenient due to having the most commonly used homebrew in one place, but it is also safer as apps are manually added to the repository. You can see where an app is being obtained from by checking its [manifest](https://github.com/OpenShopChannel/Apps/tree/master/contents). -There are two methods to use the Open Shop Channel: on your Wii through the Homebrew Browser, or outside of your Wii through OSCDL. +There are two methods to use the Open Shop Channel: on your Wii through Homebrew Browser, or outside of your Wii through OSCDL. ### Method I - Homebrew Browser @@ -17,16 +17,16 @@ There are two methods to use the Open Shop Channel: on your Wii through the Home + A homebrewed Wii with an active Internet connection + An SD card or USB drive -+ [The Homebrew Browser](https://oscwii.org/library/app/homebrew_browser) ++ [Homebrew Browser](https://oscwii.org/library/app/homebrew_browser) #### Instructions -1. Download the reccomended `.zip` file from the Open Shop Channel website. +1. Download the recommended `.zip` file from the Open Shop Channel website. ![](/images/osc/zip-download-HBB.png) 1. Extract the `apps` folder in the archive to the root of your SD card or USB drive. Optionally, the archive also comes with a guide on how to use the Homebrew Browser. -1. Insert your SD card or USB drive into your Wii, and go to the Homebrew Channel. The Homebrew Browser should now display. +1. Insert your SD card or USB drive into your Wii, and go to the Homebrew Channel. Homebrew Browser should now display. ### Method II - OSCDL diff --git a/_pages/en_US/recommended-homebrew.md b/_pages/en_US/recommended-homebrew.md index 4fd356975..c6ad555ab 100644 --- a/_pages/en_US/recommended-homebrew.md +++ b/_pages/en_US/recommended-homebrew.md @@ -30,15 +30,15 @@ Homebrew that has the ability to make permanant changes to your Wii are highligh + [CavEX](https://oscwii.org/library/app/cavex) - A project aiming to recreate the core survival experience of your favorite block game on the Wii up to Beta 1.7.3. + [Sonic CD](https://oscwii.org/library/app/SonicCDWii) - A port of the Sonic CD 2011 re-release from the RSDKv3 decompilation. **The app requires assets from the official release in order to run**. + [CTGP-R](https://www.chadsoft.co.uk/download/) - A hefty mod of Mario Kart Wii that adds over **200** new tracks to the game. Requires a retail Mario Kart Wii game disc to run, independent of Riivolution. -+ [Newer Super Mario Bros. Wii](https://newerteam.com/wii/download.html) - A significant NSMBW mod that adds **128** brand new levels to the game. Requires a retail NSMBW disc and Riivolution to run. ++ [Newer Super Mario Bros. Wii](https://newerteam.com/wii/download.html) - A significant New Super Mario Bros. Wii mod that adds **128** brand new levels to the game. Requires a retail New Super Mario Bros. Wii disc and Riivolution to run. ### Emulators -+ [FCE Ultra GX](https://oscwii.org/library/app/fceugx) - A port of FCE Ultra, a Nintendo Entertainment System/Famicom emulator, to the Wii. ++ [FCE Ultra RX](https://oscwii.org/library/app/fceurx) - A fork of FCE Ultra GX, a Nintendo Entertainment System/Famicom emulator, with extra features and speed improvements. + [Snex9x RX](https://oscwii.org/library/app/Snes9xRX) - A fork of Snes9x GX, a Super Nintendo Entertainment System/Super Famicom emulator, with extra features and speed improvements. -+ [Wii64](https://oscwii.org/library/app/wii64) - A port of Mupen64 0.5, a Nintendo 64 emulator, to the Wii. ++ [Not64](https://oscwii.org/library/app/not64) - A port of Mupen64 0.5, a Nintendo 64 emulator, to the Wii. + [Genesis Plus GX](https://oscwii.org/library/app/genplus-gx) - An emulator with support for the Sega SG-1000, Sega Master System, Sega Genesis/Mega Drive, Sega Game Gear, and Sega/Mega CD consoles. + [mGBA](https://oscwii.org/library/app/mgba) - A port of mGBA, a Game Boy/Game Boy Color/Game Boy Advance emulator, to the Wii. + [WiiMednafen](https://oscwii.org/library/app/wiimednafen) - A port of Mednafen, a multi-system emulator, to the Wii. This version supports more obscure consoles such as the Neo Geo Pocket, TurboGrafx 16/PC Engine (CD), and Bandai Wonderswan. @@ -49,8 +49,7 @@ Homebrew that has the ability to make permanant changes to your Wii are highligh + [WiiMC-SS](https://oscwii.org/library/app/WiiMC-SS) - A modified and updated verison of WiiMC. Turns your Wii into a fully fledged media center, with the ability to listen to music, watch videos, play DVDs, and more. + [Schism Tracker](https://oscwii.org/library/app/schismtracker) - A editor and player for tracked music (IT, XM, S3M, MOD, etc.). You can find music to try out [here](https://modarchive.org/). -+ [Danbo](https://oscwii.org/library/app/danbo) - Danbo [Continue to WiiConnect24](wiiconnect24)
-WiiConnect24 was originally discontinued in June of 2013, but as of the present, there are now two different services that restore its functionality in several different applications. +WiiConnect24 was originally discontinued in June 2013, but as of the present, there's now a service that restores its functionality. {: .notice--info} diff --git a/_pages/en_US/riiconnect24.md b/_pages/en_US/riiconnect24.md index 51d6269d2..8b24cb4dc 100644 --- a/_pages/en_US/riiconnect24.md +++ b/_pages/en_US/riiconnect24.md @@ -1,140 +1,5 @@ --- -title: "RiiConnect24" +title: Redirecting... --- -{% include toc title="Table of Contents" %} - -For support (in English) with RiiConnect24, as well as RiiTag, join [RiiConnect24 on Discord](https://discord.gg/rc24). -{: .notice--primary} - -[RiiConnect24](https://rc24.xyz/) allows you to use discontinued services from WiiConnect24, which include the News, Forecast, Everybody Votes, Nintendo and Check Mii Out Channel, along with Wii Mail. - -It's recommended to set your Wii to the current time before proceeding. Follow [this tutorial](wiiconnect24#updating-rtc-clock) in order to set it. -{: .notice--warning} - -DO NOT INSTALL RIICONNECT24 ON A WII MINI! It will not work and it will brick the system. -{: .notice--danger} - -### Requirements - -If you are on vWii, you will also need [Priiloader](priiloader) installed with the WC24 hacks. -{: .notice--primary} - -+ An SD card or USB drive -+ A Wii with an Internet connection -+ A PC with an Internet connection -+ [RiiConnect24 Patcher (Windows, Mac and Linux)](https://github.com/riiconnect24/RiiConnect24-Patcher/releases) -+ [YAWM ModMii Edition](https://oscwii.org/library/app/yawmme) - -### Instructions - -#### Section I - Using RiiConnect24 Patcher - -1. Click the link above to go to the GitHub page where the patcher is. -1. Download `RiiConnect24Patcher.bat` if you are on Windows, and `RiiConnect24Patcher.sh` if you are on a macOS/Linux system. -1. Run the RiiConnect24 patcher. - + On Windows run `RiiConnect24Patcher.bat`. - + On macOS/Linux systems, open Terminal and type `bash`, then drag `RiiConnect24Patcher.sh` into the terminal then press enter. It should look like this: `bash //RiiConnect24Patcher.sh`. -1. Press 1 to choose "`Start`" and confirm your selection by pressing `ENTER`. - - ![](/images/riiconnect24/patcher/1.JPG) - -1. Select the device you're patching for. - - ![](/images/riiconnect24/patcher/2.JPG) - -1. For this guide, choose "`Install RiiConnect24 on your Wii`" - - ![](/images/riiconnect24/patcher/3.JPG) - -1. Choose "`Express (Recommended)`". It will give you everything you need. - - ![](/images/riiconnect24/patcher/4.JPG) - -1. Select your region. - - ![](/images/riiconnect24/patcher/5.JPG) - -1. While you're at it, RiiConnect24 Patcher can additionally download some other optional channels that do not use RiiConnect24. `[X]` represents the options that selected. Just press 5 and `ENTER` if you're not interested. - - ![](/images/riiconnect24/patcher/6.JPG) - -1. Connect your SD Card or USB Drive to your computer and select "`1`". - - ![](/images/riiconnect24/patcher/7.JPG) - -1. If your device was detected successfully, select "`1`". If not, make sure there's a folder called `apps` on your SD Card or USB Drive and try again. - - ![](/images/riiconnect24/patcher/8.JPG) - -1. The patcher will download apps now - please be patient. - - ![](/images/riiconnect24/patcher/9.JPG) - -1. Once you reach the screen that says `Patching done`, you can exit the patcher. All the files should already be on your SD card. - - ![](/images/riiconnect24/patcher/10.JPG) - - ![](/images/riiconnect24/patcher/11.PNG) - -1. If it did not copy everything automatically to your SD Card or USB Device, copy the `WAD` and `apps` folder next to `RiiConnect24Patcher.bat` or `RiiConnect24Patcher.sh` to your SD Card or USB Device. - -#### Section II - Installing WADs - -If you are using Dolphin, you have finished the guide. Install the WADs by going to `Tools -> Install WAD` within Dolphin. -{: .notice--primary} - -You will now install the patched IOS and Channel WADs that are required to use RiiConnect24. - -1. Extract the YAWM ModMii Edition `.zip` file, and copy the `apps` folder to your SD card or USB drive. -1. Put your SD card or USB drive in your Wii. -1. Launch the Homebrew Channel on your Wii. -1. Launch YAWM ModMii Edition. -1. Select the device you have put the RiiConnect24 files on. -1. Highlight all the WADs in the `wad` folder by pressing the + Button to select them. When all of the WADs are selected, press A twice to install the WADs. -1. After they are successfully installed, press the HOME Button to exit back to the Homebrew Channel. - -#### Section III - Patching nwc24msg.cfg - -You will now patch your `nwc24msg.cfg` file which is required in order to use Wii Mail. - -1. Launch RiiConnect24 Mail Patcher. -1. It should only take a few seconds to patch your nwc24msg.cfg. When it's done, press the HOME Button to exit. - -#### Section IV - Connecting to RiiConnect24 - -The old DNS server `164.132.44.106` has been deprecated as of `June 1st, 2023` and is no longer available to use. -{: .notice--warning} - -If you're getting errors such as `WiiConnect24 and Wii Shop Channel currently not being offered in your country`, go to Wii Settings -> Last Page -> Country and change it to United Kingdom. You will get this error when using a country that RiiConnect24 does not support. -{: .notice--warning} - -If you get error 107245, you did not install the patched IOS.
-If you get error 220602, see [this](faq#for-riiconnect24-users) page.
-If you get error 107304, see [this](faq#for-riiconnect24-users-1) page.
-{: .notice--warning} - -You will now set your DNS to RiiConnect24 servers. This is optional but recommended, because it enhances the use of RiiConnect24 and Wiimmfi by making some other features available. - -1. Go to `Wii Options`. -1. Go to `Wii Settings`. -1. Go to `Page 2`, then click on `Internet`. -1. Go to `Connection Settings`. -1. Select your current connection. -1. Go to `Change Settings`. -1. Go to `Auto-Obtain DNS` (Not IP Address), then select `No`, then `Advanced Settings`. -1. Type in `167.86.108.126` as the primary DNS. -1. Type in `1.1.1.1` as the secondary DNS. -1. Select `Confirm`, then select `Save`. -1. Select `OK` to perform a connection test. -1. If the connection test was successful, select `No` to skip the Wii System Update. -1. Go to `WiiConnect24`, then `WiiConnect24` again, and make sure it is enabled. -1. Back on the WiiConnect24 menu, go to `Standby Connection` and make sure it is enabled. -1. At `Slot Illumination`, it is recommend you set the disc light to `Dim` or `Bright`, but this is optional. -1. Finally, go to the `Internet` section, then `User Agreements` or `Agreement/Contact`, then `Yes`. Please read through this. - -[Return to WiiConnect24](wiiconnect24) -{: .notice--info} - -[Click here to go back to the site index.](site-navigation) -{: .notice--info} +{% include redirect.html redirect_to="https://www.wiilink24.com/guide/install/" %} diff --git a/_pages/en_US/riitag.md b/_pages/en_US/riitag.md new file mode 100644 index 000000000..c2a1a2724 --- /dev/null +++ b/_pages/en_US/riitag.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="https://wiki.hacks.guide/wiki/RiiTag" %} diff --git a/_pages/en_US/riivolution.md b/_pages/en_US/riivolution.md new file mode 100644 index 000000000..d7eef1b3f --- /dev/null +++ b/_pages/en_US/riivolution.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="410.html" %} diff --git a/_pages/en_US/themes.md b/_pages/en_US/themes.md index 812994120..80ef78772 100644 --- a/_pages/en_US/themes.md +++ b/_pages/en_US/themes.md @@ -11,6 +11,9 @@ This guide is intended to be the last you will ever need when it comes to themin DO NOT CONTINUE WITH THIS GUIDE UNLESS YOU HAVE ADEQUATE BRICK PROTECTION, SPECIFICALLY [BOOTMII](bootmii) (Wii only) AND [PRIILOADER](priiloader)! {: .notice--danger} +This tutorial does not work on the Wii mini. Do not attempt this tutorial on the Wii mini or it will cause a [brick](bricks#theme-brick). +{: .notice--warning} + csm-installer has built in safety features to prevent from installing bad or corrupt Wii Menu themes, so please opt to use it instead of other theme installation homebrew. {: .notice--warning} diff --git a/_pages/en_US/transfer-saves.md b/_pages/en_US/transfer-saves.md index 99e27a884..762cd2477 100644 --- a/_pages/en_US/transfer-saves.md +++ b/_pages/en_US/transfer-saves.md @@ -1,8 +1,8 @@ --- -title: "Transferring Save games" +title: "Transferring Game Saves" --- -This guide will explain how to transfer save games between: +This guide will explain how to transfer game saves between: + a Wii/Wii U(vWii), + Dolphin Emulator, diff --git a/_pages/en_US/usbloadergx.md b/_pages/en_US/usbloadergx.md new file mode 100644 index 000000000..00a63864a --- /dev/null +++ b/_pages/en_US/usbloadergx.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-loaders.html" %} diff --git a/_pages/en_US/wii-backups.md b/_pages/en_US/wii-backups.md index b2bb91930..8dde06718 100644 --- a/_pages/en_US/wii-backups.md +++ b/_pages/en_US/wii-backups.md @@ -13,7 +13,7 @@ A flash drive is not recommended, as they are small and may vary in behavior eve As an alternative, you may simply use an SD card, however the Wii's SD card slot will be slow. {: .notice--info} -Make sure your USB drive is formatted as FAT32. Do not format it as other types such as exFAT, extFS.
+Make sure your USB drive is formatted as FAT32. Do not format it as other types such as exFAT or extFS.
You may format it as NTFS, but it won't work with a majority of apps (eg. The Homebrew Channel, Nintendont) {: .notice--info} diff --git a/_pages/en_US/wii-factory-reset.md b/_pages/en_US/wii-factory-reset.md index 99c1c8cd5..345315d25 100644 --- a/_pages/en_US/wii-factory-reset.md +++ b/_pages/en_US/wii-factory-reset.md @@ -1,5 +1,5 @@ --- -title: "Restoring The Wii NAND to Stock" +title: "Restoring the Wii NAND to Stock" --- {% include toc title="Table of Contents" %} diff --git a/_pages/en_US/wii-loaders.md b/_pages/en_US/wii-loaders.md index 32b93c1b0..68673dce4 100644 --- a/_pages/en_US/wii-loaders.md +++ b/_pages/en_US/wii-loaders.md @@ -12,7 +12,7 @@ In order for Wii loader to function properly, you must have the latest cIOS inst To play games, you are advised to use a large SD card or an external hard drive, flash drives are not recommended and very sporadic in functionality. See [storage FAQ](faq). {: .notice--info} -The official Wii menu forwarder installer for Wiiflow Lite can be found on the [Open Shop Channel](https://oscwii.org/library/app/wiiflow_channel_installer). Run the app in the Homebrew Channel to install the forwarder. The USB Loader GX official forwarder can be found on the [GitHub](https://github.com/wiidev/usbloadergx/raw/updates/USBLoaderGX_forwarder%5BUNEO%5D_Wii.wad) page. You can install it with [YAWM ModMii Edition](yawmme). +The official Wii Menu forwarder installer for WiiFlow Lite can be found on the [Open Shop Channel](https://oscwii.org/library/app/wiiflow_channel_installer). Run the app in the Homebrew Channel to install the forwarder. The USB Loader GX official forwarder can be found on the [GitHub](https://github.com/wiidev/usbloadergx/raw/updates/USBLoaderGX_forwarder%5BUNEO%5D_Wii.wad) page. You can install it with [YAWM ModMii Edition](yawmme). {: .notice--info} ### Differences between WiiFlow Lite and USB Loader GX @@ -27,13 +27,13 @@ The official Wii menu forwarder installer for Wiiflow Lite can be found on the [ + USB Loader GX is primarily modeled after the Wii Menu, and supports themes. + While SD cards were previously unsupported for loading Wii games on USB Loader GX, recent updates have introduced support into the loader. + USB Loader GX has no plugin system. - + USB Loader GX still recieves regular updates. + + USB Loader GX still receives regular updates. ![](/images/usb-loaders/usbloadergx-ui.png) ### Game Directory Structure -Below is a single WBFS example, and a split WBFS example. +Below is a single WBFS example, and a split WBFS example. A WBFS needs to be split if your storage device is formatted as FAT32 and is over 4 GB. ``` 💾SD card or USB: @@ -61,7 +61,7 @@ Below is a single WBFS example, and a split WBFS example. ##### General + WiiFlow by default is set to only find games on the SD card. This can be changed by going to `Settings > Startup Settings` to then turn off `Mount SD Only`. -+ You can toggle the current view in Wiiflow between plugins, games, homebrew, and Wii channels by clicking the button to the left of `Home`, on the bottom right. ++ You can toggle the current view in WiiFlow between plugins, games, homebrew, and Wii channels by clicking the button to the left of `Home`, on the bottom right. + You can download game covers by going to `Settings` > `Download Covers and Banners`. ##### User Interface @@ -150,7 +150,7 @@ Examples include: A more comprehensive (although still incomplete) list can be found [here](https://wiki.gbatemp.net/wiki/Wii_cIOS_base_Compatibility_List). -Both USB Loader GX and Wiiflow Lite are programmed to automatically find the best cIOS to use and load the game with it using the default settings. However, if for whatever reason these loaders pick the wrong cios to use, you have the option to change it yourself. +Both USB Loader GX and WiiFlow Lite are programmed to automatically find the best cIOS to use and load the game with it using the default settings. However, if for whatever reason these loaders pick the wrong cios to use, you have the option to change it yourself. To change the cIOS used for a specific game, follow the instructions specific to your USB loader: diff --git a/_pages/en_US/wiibackupmanager.md b/_pages/en_US/wiibackupmanager.md new file mode 100644 index 000000000..063d7bba0 --- /dev/null +++ b/_pages/en_US/wiibackupmanager.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-backups.html" %} diff --git a/_pages/en_US/wiiflow.md b/_pages/en_US/wiiflow.md new file mode 100644 index 000000000..00a63864a --- /dev/null +++ b/_pages/en_US/wiiflow.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-loaders.html" %} diff --git a/_pages/es_419/410.md b/_pages/es_419/410.md new file mode 100644 index 000000000..21f077b23 --- /dev/null +++ b/_pages/es_419/410.md @@ -0,0 +1,12 @@ +--- +title: Page no longer exists +sitemap: false +--- + +The page you are trying to view used to exist, but it has since been removed. Maybe the instructions you are following are outdated? (If you got here from a link on this guide, [let us know](https://github.com/hacks-guide/Guide_Wii/issues)) + +[Click here to go back to the site index.](site-navigation) +{: .notice--info} + +![](https://http.cat/410) +{: .notice--info} diff --git a/_pages/es_419/bootmii.md b/_pages/es_419/bootmii.md index b21fd4eac..1cf60b5ae 100644 --- a/_pages/es_419/bootmii.md +++ b/_pages/es_419/bootmii.md @@ -6,21 +6,9 @@ title: "BootMii Backup" You need an **SD card** to create a NAND backup using BootMii. If you do not have one, you can skip this page, although it is highly recommended to make a NAND backup if you can. -Family edition Wiis (Wiis without GameCube ports) CANNOT restore NAND backups. This is because of the lack of GameCube ports which are required on non-boot2 Wiis to enter the restoration confirmation code. Regardless, it is still recommended to make one on these consoles. -{: .notice--danger} - You need an **SD card** to use BootMii at all, but especially to create a NAND backup. If you do not have an SD card on hand right now, you can skip this page, but it is HIGHLY RECOMMENDED to return to this page later to back up your NAND. {: .notice--warning} -Navigating BootMii is not possible using a Wii Remote. You must use the POWER and RESET buttons on your console, or a GameCube controller plugged into port 1. To navigate between options, press POWER on your Wii (or left/right on the +Control Pad on a GameCube controller). To select an option, press RESET on your Wii or A on your GameCube controller. One of BootMii's most important features is the ability to backup and restore your Wii's NAND storage. We will be going over how to perform a NAND backup. You can then restore from that backup for any reason. -{: .notice--info} - -If the `Launch BootMii` button does not appear in the Homebrew Channel, [re-launch the HackMii Installer](hackmii) and install BootMii. -{: .notice--warning} - -If the screen stays black and the blue disc drive light is blinking, you are missing the BootMii files on your SD card. Download [this zip file](https://static.hackmii.com/bootmii_sd_files.zip) and extract it to the root of your SD card, then try again. -{: .notice--warning} - ### Requirements * An SD card with at least 512MB of free space @@ -36,10 +24,19 @@ If you have BootMii installed as boot2 you will need to launch BootMii by restar ![](/images/bootmii/BootMii_HBC.png) + If the `Launch BootMii` button does not appear in the Homebrew Channel, [re-launch the HackMii Installer](hackmii) and install BootMii. + {: .notice--warning} + + If the screen stays black and the blue disc drive light is blinking, you are missing the BootMii files on your SD card. Download [this zip file](https://static.hackmii.com/bootmii_sd_files.zip) and extract it to the root of your SD card, then try again. + {: .notice--warning} + 1. You should see an image similar to the below now on your screen: ![](/images/bootmii/BootMii_Main.png) + Navigating BootMii is not possible using a Wii Remote. You must use the POWER and RESET buttons on your console, or a GameCube controller plugged into port 1. To navigate between options, press POWER. To select an option, press RESET. + {: .notice--info} + 1. Select the Options button (the icon with the gears). ![](/images/bootmii/BootMii_Gears.png) @@ -65,7 +62,7 @@ If you have BootMii installed as boot2 you will need to launch BootMii by restar
Note: **restoring a NAND backup is usually a last resort**. There often better ways to unbrick your console. Try your best to [identify your brick condition](bricks) and reverse the action that caused it in the first place. -To restore from a NAND backup on your SD card, you can follow these instructions using RestoreMii (the icon with the red arrow, aka the second icon on your left). This is useful in the unlikely case you brick your Wii. +To restore from a NAND backup on your SD card, you can follow the instructions for [RestoreMii](bootmiirecover). **Family edition Wiis (Wiis without GameCube ports) CANNOT restore NAND backups.**
As stated earlier, if you have BootMii installed as boot2, it will launch every time you start your console. If you would like to change this, you can use the app [BootMii Config Editor](https://oscwii.org/library/app/BootMiiConfigurationEditor). Or, you can edit `sd:/bootmii/bootmii.ini` manually. diff --git a/_pages/es_419/bricks.md b/_pages/es_419/bricks.md index ae40465dd..cbc8ea457 100644 --- a/_pages/es_419/bricks.md +++ b/_pages/es_419/bricks.md @@ -111,7 +111,7 @@ Attempt to start the Wii - warning/press A screen shows up, and when A is presse A theme brick occurs when a wrongly formatted theme is installed. #### Solutions -To resolve this issue, open HBC through Priiloader or BootMii as boot2 and access MyMenuifyMod to install a default theme such as the base Wii Menu theme. Alternatively, go into [YAWM ModMii Edition](yawmme) and install the CORRECT default Wii Menu WAD for your region and version. +To resolve this issue, open HBC through Priiloader or BootMii as boot2 and access csm-installer to install a default theme such as the base Wii Menu theme. Alternatively, go into [YAWM ModMii Edition](yawmme) and install the CORRECT default Wii Menu WAD for your region and version. ## Mail brick diff --git a/_pages/es_419/cios.md b/_pages/es_419/cios.md index 89ebf4f88..6cd616f87 100644 --- a/_pages/es_419/cios.md +++ b/_pages/es_419/cios.md @@ -65,6 +65,12 @@ Select cIOS version: 65535 ![](/images/cios/d2x_v11_248.png) + The warning "`(c)IOS detected in slot ### will be overwriitten`" can be safely ignored. + {: .notice--info} + + If you are seeing "`Slot ### already used in batch settings`" or "`cIOS already added in batch with revision ##### and slot ###`", press `-` to disable batch mode.
(If you are trying to exit the installer, the button is B, not Home.) + {: .notice--info} + 1. Press `A`. This will bring you to the slot map: ![](/images/cios/d2x_summary.png) diff --git a/_pages/es_419/dosanddonts.md b/_pages/es_419/dosanddonts.md new file mode 100644 index 000000000..6ceed5bee --- /dev/null +++ b/_pages/es_419/dosanddonts.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="faq.html" %} diff --git a/_pages/es_419/hbc.md b/_pages/es_419/hbc.md index 48691a7d5..30ce8c8f5 100644 --- a/_pages/es_419/hbc.md +++ b/_pages/es_419/hbc.md @@ -6,7 +6,7 @@ title: "Homebrew Channel and BootMii Installation" The Homebrew Channel is where you will go to launch homebrew applications. BootMii is a piece of software that can backup and restore your Wii's NAND storage, and if installed in boot2, provides brick protection. -BootMii can be installed in two ways: directly to a part of the Wii bootloader called boot2, and via an IOS. BootMii under boot2 is preferred as it provides extended brick protection, but Wiis with a vulnerable boot2 are considerably rarer, having been manufactured before 2009. Install BootMii as IOS, even if you already installed BootMii as boot2 in the previous step. +BootMii can be installed in two ways: directly to a part of the Wii bootloader called boot2, and via an IOS. BootMii under boot2 is preferred as it provides extended brick protection, but Wiis with a vulnerable boot1 that allows this installation are considerably rarer, having been manufactured before 2009. Install BootMii as IOS, even if you already installed BootMii as boot2 in the previous step. {: .notice--info} If you do not have an SD card, you cannot install nor use BootMii, and therefore will not be able to utilize any of the mentioned benefits. You can always install it at a later date. diff --git a/_pages/es_419/modmii.md b/_pages/es_419/modmii.md index 1f45140d2..84ded775a 100644 --- a/_pages/es_419/modmii.md +++ b/_pages/es_419/modmii.md @@ -4,116 +4,190 @@ title: "ModMii" {% include toc title="Table of Contents" %} -If you need help for anything regarding this tutorial, please join [the ModMii Discord server](https://discord.gg/cMnBRACQwQ). -{: .notice--info} - This Program does NOT come with a warranty, so you are responsible for any potential damage done to your Wii. {: .notice--warning} This program is NOT intended to be used for the vWii or the Wii mini. Any usage on vWii or Wii mini is untested. {: .notice--warning} -ModMii is a PC program for Windows created by XFlak that has various helpful tools for modding, including some tutorials that may not be currently available on this website.
You can choose to launch in ModMii skin, which has a more user-friendly interface, or launch in ModMii Classic, which uses a command-line (Command Prompt/Terminal) interface. +ModMii is an all-in-one Wii hacking tool for Windows created by XFlak that has various helpful tools for modding. It can accomplish the following: -Some advanced options may not be accessible in ModMii Skin. A list of the features available in ModMii Classic can be found at the bottom of the page. -{: .notice--info} ++ Hacking the console for the first time, or re-hacking it ++ Check for and update outdated softmods ++ Fix upside-down Homebrew Channel problems ++ Run homebrew without making any changes to your Wii's NAND ++ Download homebrew ++ And more! -### Requirements +### ModMii Overview + +There are two different ways to use ModMii. There is ModMii Classic, which uses a command line interface, but has all of the features available to the program. ModMii Skin has a graphical user interface, on the other hand, but has less options available to the user. If you're looking to simply mod your Wii for the first time, ModMii Skin should suffice. Otherwise, we reccomend using ModMii Classic where possible.
The chart below will help you determine what can be done in either interface. + +| Tools | ModMii Classic | ModMii Skin | +| -------------------------- | -------------- | ----------- | +| ModMii Wizard | ✅ | ✅ | +| SysCheck Updater Wizard | ✅ | ⛔ | +| USB Loader Setup Wizard | ✅ | ✅ | +| HackMii Solutions Wizard | ✅ | ✅ | +| Abstinence Wizard | ✅ | ✅ | +| Region Change Wizard | ✅ | ✅ | +| SNEEK/EmuNAND Installation | ✅ | ✅ | +| Open File Function | ✅ | ⛔ | +| Load Download Queue | ✅ | ✅ | +| Download Page 1/2/3/4 | ✅ | ⛔ | +| Advanced Downloads | ✅ | ⛔ | +| Load Download Queue | ✅ | ⛔ | +| Build Config Files | ✅ | ⛔ | +| File Cleanup & App Updater | ✅ | ⛔ | + +
+Click here for a detailed explanation of each tool. + +| Tool | Description | +| --------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| W = ModMii Wizard <-- Start Here to Mod Your Wii! | This option can be used to hack your Wii for the first time or re-hack a Wii that has been previously modded. | +| SU = SysCheck Updater Wizard (update only your outdated softmods) | This option checks for and updates old modifications installed to their wii such as DarkCorp/CIOSSPAGHETTI that can potentially cause problems for the latest homebrew custom firmware. | +| U = USB-Loader Setup Wizard | This option will properly set up your USB loader to be able to load your disk backups from an SD or USB hard drive. This option is not necessary if using the ModMii Wizard. | +| H = HackMii Solutions Wizard (Upside-Down HBC\No Vulnerable IOS Fix) | This option is useful for people who are having trouble getting the HackMii Installer to work or have an upside down homebrew channel. | +| AW = Abstinence Wizard (Non-permanent Wii Hacks) | This option allows you to run homebrew on your Wii without making any permanent modifications to the system NAND. | +| RC = Region Change Wizard | This option can be used to change the region of your Wii without bricking it, and is arguably the best region changing wizard on the internet. | +| S = SNEEK Installation, EmuNAND Builder\Modifier, Game Bulk Extractor | This option will help you properly set up an EmuNAND (aka neek2o) onto your SD or USB. Benefits for EmuNAND include extra storage space for save games or channels, as well as running homebrew without making any permanent modifications to the system NAND. | +| F = open a File or Folder with ModMii for many more functions! | This option is an advanced tool especially helpful for developers. | +| 1 = Download Page 1 (System Menus, IOSs, MIOSs, Channels, etc.) | This option opens the first download page that includes most of the key parts of the Wii System Menu (downloaded from NUS). | +| 2 = Download Page 2 (Apps, USB-Loader Files, CheatCodes, etc.) | This option opens the second download page that includes exploits and useful apps for your Wii including some PC programs. | +| 3 = Download Page 3 (System Menu Themes) | This option opens the third download page that includes some system menu themes and items required to install system menu themes (base apps are downloaded from NUS). | +| 4 = Download Page 4 (cIOSs and cMIOSs) | This option opens the fourth download page that includes cIOSes and cMIOSes for use in USB loaders. | +| A = Advanced Downloads and Forwarder DOL\ISO Builder | This option allows you to download any IOS and cIOS and build custom DOL/ISO forwarders. Intended for advanced users only. | +| L = Load Download Queue | This option loads bundled or previously saved download queues. | +| C = Build Config Files for Bootmii, Wad Manager or Multi-Mod Manager | This option allows you to build customized config files for BootMii, Wad Manager, and Multi-Mod Manager. | +| FC = File Cleanup & App Updater: Update Apps and\or remove un-needed files | This option removes unnessecary files from your SD Card or Hard Drive after finishing softmodding your Wii. | + +

+ +When using ModMii, it is important to note that it will generate a custom guide for you depending on the options that you select. For this reason, this guide will not be focused on how to mod your Wii, as ModMii handles that function. Instead, it will be a quick start guide show you how to effectively use it with the most common options. + +### Installing ModMii + +#### Requirements * A Wii * A USB drive or SD Card * A Windows PC (a Virtual Machine will work) * [ModMii](https://modmii.github.io/) -This is a quick start guide on using ModMii on your Windows PC. +#### Installation -### ModMii Wizard +1. Go to the [ModMii website](https://modmii.github.io) and scroll down to the Download section. Here, select the `Installer` option. Your browser may flag the installer as malware, but it is a **false positive**. -You can use the ModMii wizard to softmod any Wii.
Even if the Wii has been softmodded in the past, you can have ModMii overwrite existing softmods by telling ModMii that this is the first time you're modding your Wii (even if it isn't). + ![](/images/modmii/modmii-download.png) -You can also use this wizard to set up a USB loader at the same time, instead of having to use the USB Loader setup wizard later on. +2. Open the `ModMiiInstaller.exe` file and go through the setup process. + + ![](/images/modmii/modmii-install.png) + +### Using the ModMii Wizard + +The ModMii Wizard is tool that can softmod your Wii from start to finish, downloading all necessary files and then generating a guide that you can use to implement the softmod. This tool can also be used to overwrite existing softmods on a previously softmodded Wii. + +1. Open ModMii Skin or ModMii Classic and select the ModMii Wizard option at the top of the list. + + ![](/images/modmii/modmii-wizard-1.png) + +1. Answer `Yes` to the first question, unless you have a very specific idea of what you would like to do or update to your Wii. + + ![](/images/modmii/modmii-wizard-2.png) + +1. Select your current System Menu version, followed by the System Menu Region, following the instructions in the program. If you are still confused, check the bottom option on each screen for an instructional video. + + ![](/images/modmii/modmii-wizard-3.png) + +1. Select the exploit you would like to use to mod your Wii. The exploits below are outlined throughout this website, but in most cases we would reccommend using Wilbrand if you have an SD card on hand. + + ![](/images/modmii/modmii-wizard-4.png) + +1. If you selected the Wilbrand option in the previous step, enter your Wii's MAC address. If you don't know how to check your Wii's MAC address, enter `Help` in the text box for an instructional video. + + ![](/images/modmii/modmii-wizard-5.png) + +1. Select your desired System Menu version from the list. + + ![](/images/modmii/modmii-wizard-6.png) + +1. Select whether or not you would like to install any of the listed channels - this is an optional step. + + ![](/images/modmii/modmii-wizard-7.png) + +1. Select whether or not you would like to install a custom Wii theme, with the choice of three theme effects. Each effect deals with how much the outline when hovering over a Wii Channel spins. + + ![](/images/modmii/modmii-wizard-8.png) + +1. Select whether or not you would like to set up a USB Loader for use with your Wii. + + ![](/images/modmii/modmii-wizard-9.png) + +1. If you selected `Yes` in the USB Loader menu, select which USB Loader you would like to use. If you choose an individual one, we reccomend either USB Loader GX or WiiFlow as both are covered on this website, or you may optionally download each option. + + ![](/images/modmii/modmii-wizard-10.png) + +1. If you selected `Yes` in the USB Loader menu, select where you would like to save your USB Loader files at. + + ![](/images/modmii/modmii-wizard-11.png) + +1. Verify where you would like to save files for your SD Card and/or USB Drive. + + ![](/images/modmii/modmii-wizard-12.png) + +1. Confirm your settings are correct, and then press `Finish`. Once you press the button, ModMii will begin to process and download files in the background, and will automatically generate and open a guide for you. From here, you should follow the guide generated by ModMii. + + ![](/images/modmii/modmii-wizard-13.png) ### SysCheck Updater Wizard -[SysCheck](syscheck) is a homebrew application that analyzes the modifications on a Wii.
You can give a SysCheck report to ModMii to help identify & update outdated mods. +The SysCheck Updater Wizard is a tool that utilizes the homebrew app [SysCheck](syscheck) to analyze any modifications on your Wii, especially IOS and cIOS. It accepts a `syscheck.csv` file generated by the app, and then provides any nessecary updates as needed. -You can have ModMii analyze a SysCheck by dragging the `syscheck.csv` file onto ModMii.exe. Alternatively, you can launch the SysCheck Updater Wizard (`SU`) from ModMii's main menu and manually browse for the file. +1. Open ModMii Classic and enter in `SU` to open the SysCheck Updater Wizard. + + ![](/images/modmii/syscheck-wizard-1.png) + +1. Follow the instructions in the window if you don't already have a SysCheck log, and then drag and drop the `syscheck.csv` file from Windows Explorer into the window. This will paste the location of the file, from which you can press Enter. + + ![](/images/modmii/syscheck-wizard-2.png) + +1. The program will analyze your SysCheck file, and will provide options for you depending on what it sees. In this example instance, the mods on the Wii were up-to-date, but there were several unnecessary IOSes that could be stubbed. If you want to make these changes to your Wii, simply enter in `Y` and press Enter. From here, you should follow the guide generated by ModMii. + + ![](/images/modmii/syscheck-wizard-3.png) ### HackMii Solutions Wizard -The HackMii Solutions wizard can help fix symptoms like these: +The HackMii Solutions Wizard is a tool that fixes problems that may arise from things like Darkcorp/CIOSSPAGHETTI by installing clean IOSes. Examples of problems that may arise because of this are listed below: + HackMii Installer not prompting "Press (1) to continue" -+ HackMii Installer says "no vulnerable IOS found!" -+ Homebrew Channel is displaying upside-down ++ HackMii Installer saying "no vulnerable IOS found!" ++ Homebrew Channel displaying upside-down -It will install clean IOSs to allow for the HackMii Installer to operate properly. +1. Open ModMii Skin or ModMii Classic and select the HackMii Solutions option. -### Abstinence Wizard + ![](/images/modmii/hackmii-wizard-1.png) -This wizard requires an SD card. -{: .notice--warning} +1. Select your current System Menu version, followed by the System Menu Region, following the instructions in the program. If you are still confused, check the bottom option on each screen for an instructional video. -This wizard allows you to enjoy many of the benefits of a softmodded Wii without installing any permanent modifications to your Wii. It will allow you to launch an exploit to boot an from emulated NAND from external storage, rather than use your Wii's internal NAND. + ![](/images/modmii/hackmii-wizard-2.png) -You can also make a NAND backup without modifying your Wii at all by navigating to ModMii's "Support" folder and launching `Casper2BootMii.bat`.
It will save some files to a folder named `COPY_TO_SD`; copy the files inside it to your SD card and launch an exploit like [Wilbrand](wilbrand). +1. Select the exploit you would like to use to mod your Wii. The exploits below are outlined throughout this website, but in most cases we would reccommend using Wilbrand if you have an SD card on hand. -When following one of the exploit guides above, avoid replacing the `boot.elf` file. -{: .notice--warning} + ![](/images/modmii/hackmii-wizard-3.png) +1. If you selected the Wilbrand option in the previous step, enter your Wii's MAC address. If you don't know how to check your Wii's MAC address, enter `Help` in the text box for an instructional video. -
-Click here for a full list of available tools. + ![](/images/modmii/hackmii-wizard-4.png) -| Tool | Description | -| --------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| W = ModMii Wizard <-- Start Here to Mod Your Wii! | This option can be used to mod your Wii for the first time or re-mod a Wii that has been previously modded. | -| SU = SysCheck Updater Wizard (update only your outdated softmods) | This option is useful for people who have old modifications installed to their wii such as DarkCorp/Ciosspaghetti that can potetially cause problems for the latest homebrew custom firmware. | -| U = USB-Loader Setup Wizard | This option will help you properly set up your USB loader to be able to load your disk backups from an SD or USB hard drive. | -| H = HackMii Solutions Wizard (Upside-Down HBC\No Vulnerable IOS Fix) | This option is useful for people who are having trouble getting the HackMii Installer to work, or if they just simply have an upside down homebrew channel, or if DarkCorp/Ciosspaghetti was installed and there was no homebrew channel. | -| AW = Abstinence Wizard (Non-permanent Wii Hacks) | This option is useful for people who dont want to make any permanent modifications to their Wii but still want to have some of the benefits that homebrew can offer. | -| RC = Region Change Wizard | This option can be used to change the region of your Wii without bricking it (this is the best region changer tutorial available on the internet!). | -| S = SNEEK Installation, EmuNAND Builder\Modifier, Game Bulk Extractor | This option will help you properly set up an EmuNAND (aka neek2o) onto your SD or USB. benefits for emunand include extra storage space for save games or channels. and the benefit of not making any permanent modifications to your Wii. | -| F = open a File or Folder with ModMii for many more functions! | This option is an advanced tool especially helpful for developers. | -| 1 = Download Page 1 (System Menus, IOSs, MIOSs, Channels, etc.) | This option opens the first download page that includes most of the key parts for the system menu (downloaded from NUS). | -| 2 = Download Page 2 (Apps, USB-Loader Files, CheatCodes, etc.) | This option opens the second download page that includes exploits and useful apps for your Wii including some PC programs. | -| 3 = Download Page 3 (System Menu Themes) | This option opens the third download page that includes some system menu themes and items required to install system menu themes (base apps are downloaded from NUS). | -| 4 = Download Page 4 (cIOSs and cMIOSs) | This option opens the fourth download page that includes cIOSes and cMIOSes for use in USB loaders. It is recommended to just install the recommended cioses unless you plan to do some testing. | -| A = Advanced Downloads and Forwarder DOL\ISO Builder | This option is an advanced tool used to better customize downloads or allow you to build a dol executable useful for fowarders (channels on the system menu to access Wii applications). | -| L = Load Download Queue | This option will download all of the required titles need for the Wii system menu (titles are downloaded from NUS) | -| C = Build Config Files for Bootmii, Wad Manager or Multi-Mod Manager | This option will help you build configuration files required for certain applications. | -| FC = File Cleanup & App Updater: Update Apps and\or remove un-needed files | This option is useful for people who want to clean out their SD or USB of apps deemed outdated, useless, or otherwise depreciated. | -| M = ModMii Skin Mode: use your mouse instead of your keyboard! | This option will launch ModMii skin mode. Some advanced options may not be available in this view. | +1. Verify where you would like to save files for your SD Card and/or USB Drive. -
+ ![](/images/modmii/modmii-wizard-12.png) -
-Click here for a full list of available options. +1. Confirm your settings are correct, and then press `Finish`. Once you press the button, ModMii will begin to process and download files in the background, and will automatically generate and open a guide for you. From here, you should follow the guide generated by ModMii. After finishing this guide, it is recommended that you use the [SysCheck Updater Wizard](#syscheck-updater-wizard) to undo any other problematic modifications on your Wii. -| Option | Description | -| ---------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| D = Change Drive letter: | Changes where your SD files are saved to. | -| DU = Change Drive letter for USB: | Changes where your USB files are saved to. | -| d2x = change d2x cIOS version built: | Changes the cios version ModMii downloads. | -| H = Hermes cIOSs (202 & 222-224) will also be recommended | Enables Hermes IOS to be recommended and downloaded in the syscheck updater (will be stubbed if disabled). | -| CM = cMIOS included in recommended cIOSs | Enables cMIOS to be recommended and downloaded in the syscheck updater (will install stock MIOS if disabled). | -| E = Extra Brick Protection in ModMii Wizard Guides | Enables ModMiis Extra Brick Protection IOSes to be recommended and used in the syscheck updater tool. | -| U = Update IOSs. Wizard/SysCheck-Updater to update Active IOSs | Updates Existing IOSes to the latest version available on NUS. | -| AU = Auto-Updating downloads will skip update check if cached | Will skip downloading the files if already in the queue. | -| FWD = Install USB-Loader Forwarder in ModMii Wizard Guides | Will include the USB loader forwarder wad file in the USB loader wizard guides. | -| PC = PC Programs Save Location | Changes the save location for the downloadable PC programs. | -| RS = Root Save: Save IOSs\MIOSs to Root instead of WAD Folder | Saves IOSs\MIOSs to Root instead of WAD Folder. | -| 1 = Do not Keep 00000001 or NUS Folders for IOSs\MIOSs\SMs etc | Deletes the folder used for compiling the wad file and just gives you the wad file. | -| n2o = neek2o - build mod of s\uneek instead of original | Uses a better modified version of neek2o in the EmuNAND builder. | -| SSD = SNEEK and SNEEK+DI SD Access | Allows for SNEEK and SNEEK+DI access on the SD card. | -| F = Font.bin Colour for SNEEK/UNEEK | Changes the font color for neek2o. | -| SV = SNEEK Verbose Output | Displays extra information regarding EmuNAND. | -| V = Verbose for ModMii Skin & nandBinCheck | Displays another window with extra information regarding a nand check. | -| SO = Play sound at Finish | Plays a fun jingle after a successful download. | -| A = Auto-Update ModMii at program start | Will automatically check for updates when ModMii is launched. | -| N = Check for New versions of ModMii right now | Will check online for a ModMii update. | - -
+ ![](/images/modmii/hackmii-wizard-5.png) [Click here to go back to the site index.](site-navigation) {: .notice--info} diff --git a/_pages/es_419/nintendont.md b/_pages/es_419/nintendont.md new file mode 100644 index 000000000..d7eef1b3f --- /dev/null +++ b/_pages/es_419/nintendont.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="410.html" %} diff --git a/_pages/es_419/recommended-homebrew.md b/_pages/es_419/recommended-homebrew.md index b2bada15a..2d3869c77 100644 --- a/_pages/es_419/recommended-homebrew.md +++ b/_pages/es_419/recommended-homebrew.md @@ -16,7 +16,7 @@ Homebrew that has the ability to make permanant changes to your Wii are highligh + [**AnyRegion Changer ME**](https://oscwii.org/library/app/ARCME) - ModMii edition of AnyRegion Changer. While a powerful tool for changing region settings, it can also lead to severe bricks like [Korean Kii/Error 003](bricks#korean-kiierror-003-brick) so **only use this app if you know what you are doing**. + [**WiiXplorer-SS**](https://oscwii.org/library/app/wiixplorer-ss) - A modified and updated version of WiiXplorer. A file manager for the Wii, it allows you to view and customize files both on an SD card, a USB device, and the internal Wii memory. For this reason it is a very powerful but also dangerous tool - don't modify files on the system NAND unless you know what you are doing, as it can lead to various types of [bricks](bricks). + [**SaveGame Manager GX**](https://oscwii.org/library/app/SaveGame_Manager_GX) - A savegame/Mii extractor for the Wii. It supports GameCube memory cards (physical and virtual), emuNANDs, normal and protected saves, themes, and more. -+ [**MyMenuifyMod**](https://oscwii.org/library/app/mymenuifymod) - An application that allows you to theme the Wii Menu. While quite useful to make your Wii unique, it also has the ability to cause a [minor brick](bricks#theme-brick), so make sure to read our [theme guide](themes) for safe usage instructions. ++ [**csm-installer**](https://oscwii.org/library/app/csm-installer) - An application that allows you to theme the Wii Menu. While quite useful to make your Wii unique, it also has the ability to cause a [minor brick](bricks#theme-brick), so make sure to read our [theme guide](themes) for safe usage instructions. + [CleanRip](https://oscwii.org/library/app/CleanRip) - A tool to backup GameCube and Wii discs. Further information can be found in our [disc dumping guide](dump-games). + [**d2x cIOS installer**](https://oscwii.org/library/app/d2x-cios-installer) - A custom installer for Wii IOS, some of which is required for the functioning of certain software like USB loaders. You can see the guide [here](cios). + [FTPii](https://oscwii.org/library/app/ftpii) - An FTP server for your Wii, allowing you to transfer files across the network. diff --git a/_pages/es_419/riiconnect24.md b/_pages/es_419/riiconnect24.md index a99a4fe6a..d1e91b7e8 100644 --- a/_pages/es_419/riiconnect24.md +++ b/_pages/es_419/riiconnect24.md @@ -1,138 +1,5 @@ --- -title: "Install RiiConnect24" +title: Redirecting... --- -{% include toc title="Tabla de contenido" %} - -If you need help with anything regarding this tutorial, please join [the RiiConnect24 Discord server](https://discord.gg/rc24) (recommended) or [e-mail us at support@riiconnect24.net](mailto:support@riiconnect24.net). -{: .notice--primary} - -[RiiConnect24](https://rc24.xyz/) allows you to use discontinued services from WiiConnect24, which include the News, Forecast, Everybody Votes, Nintendo and Check Mii Out Channel, along with Wii Mail. - -It's recommended to set your Wii to the current time before proceeding. Follow [this tutorial](rtc) in order to set it. -{: .notice--warning} - -DO NOT INSTALL RIICONNECT24 ON A WII MINI! It will not work and it will brick the system. -{: .notice--danger} - -### Requirements - -Follow [this tutorial](riiconnect24-vwii) if you'd like to install RiiConnect24 on vWii (Wii Mode on Wii U). -{: .notice--primary} - -+ An SD card or USB drive -+ A Wii with an Internet connection -+ A PC with an Internet connection -+ [RiiConnect24 Patcher (Windows, Mac and Linux)](https://github.com/riiconnect24/RiiConnect24-Patcher/releases) -+ [YAWM ModMii Edition](https://oscwii.org/library/app/yawmme) - -### Instrucciones - -#### Section I - Using RiiConnect24 Patcher - -1. Click the link above to go to the GitHub page where the patcher is. -1. Download `RiiConnect24Patcher.bat` if you are on Windows, and `RiiConnect24Patcher.sh` if you are on a Unix system -1. RiiConnect24 Patcher Main Screen - + On Windows run `RiiConnect24Patcher.bat`. - + On Unix systems, open Terminal and type `bash`, then drag `RiiConnect24Patcher.sh` into the terminal then press enter. It should look like this: `bash RiiConnect24Patcher.sh`. -1. Press 1 to choose "`Start`" and confirm your selection by pressing `ENTER`. - - ![](/images/riiconnect24/patcher/1.JPG) - -1. Select the device you're patching for. - - ![](/images/riiconnect24/patcher/2.JPG) - -1. For this guide, choose "`Install RiiConnect24 on your Wii`" - - ![](/images/riiconnect24/patcher/3.JPG) - -1. Choose "`Express (Recommended)`". It will give you everything you need. - - ![](/images/riiconnect24/patcher/4.JPG) - -1. Select your region. - - ![](/images/riiconnect24/patcher/5.JPG) - -1. While you're at it, RiiConnect24 Patcher can additionally download some other optional channels that do not use RiiConnect24. `[X]` represents the options that selected. Just press 5 and `ENTER` if you're not interested. - - ![](/images/riiconnect24/patcher/6.JPG) - -1. Connect your SD Card or USB Drive to your computer and select "`1`". - - ![](/images/riiconnect24/patcher/7.JPG) - -1. If your device was detected successfully, select "`1`". If not, make sure there's a folder called `apps` on your SD Card or USB Drive and try again. - - ![](/images/riiconnect24/patcher/8.JPG) - -1. The patcher will download apps now - please be patient. - - ![](/images/riiconnect24/patcher/9.JPG) - -1. Once you reach the screen that says `Patching done`, you can exit the patcher. All the files should already be on your SD Card. - - ![](/images/riiconnect24/patcher/10.JPG) - - ![](/images/riiconnect24/patcher/11.PNG) - -1. If it did not copy everything automatically to your SD Card or USB Device, copy the `WAD` and `apps` folder next to `RiiConnect24Patcher.bat` to your SD Card or USB Device. - -#### Section II - Installing WADs - -If you are using Dolphin, you have finished the guide. Install the WADs by going to `Tools -> Install WAD` within Dolphin. -{: .notice--primary} - -You will now install the patched IOS and Channel WADs that are required to use RiiConnect24. - -1. Using the +Control Pad on your Wii Remote, navigate to `WAD Manager`, and then navigate to the `wad` folder. -1. Put your SD card or USB drive in your Wii. -1. Launch the Homebrew Channel on your Wii. -1. Launch Wii Mod Lite. -1. Select the device you have put the RiiConnect24 files on. -1. Highlight all the WADs in the folder by pressing the + Button to select them. When all of the WADs are selected, press A twice to install the WADs. -1. After they are successfully installed, press the HOME Button to exit back to the Homebrew Channel. - -#### Section III - Patching nwc24msg.cfg - -You will now patch your `nwc24msg.cfg` file which is required in order to use Wii Mail. - -1. Launch RiiConnect24 Mail Patcher. -1. It should only take a few seconds to patch your nwc24msg.cfg. When it's done, press the HOME Button to exit. - -#### Section IV - Connecting - -The old DNS server `164.132.44.106` has been deprecated as of `June 1st, 2023` and is no longer available to use. -{: .notice--warning} - -If you're getting errors such as `WiiConnect24 and Wii Shop Channel currently not being offered in your country`, go to Wii Settings -> Last Page -> Country and change it to United Kingdom. You will get this error when using a country that we don't support. Contact us at [support@riiconnect24.net](mailto:support@riiconnect24.net) if you need more help. -{: .notice--warning} - -If you get error 107245, then you have not installed the patched IOS.
-{: .notice--warning} - -You will now set your DNS to our servers. This is optional but it's recommended, because it enhances the use of RiiConnect24 and Wiimmfi by making some other features available. - -1. Go to `Wii Options`. -1. Go to `Wii Settings`. -1. Go to `Page 2`, then click on `Internet`. -1. Go to `Connection Settings`. -1. Select your current connection. -1. Go to `Change Settings`. -1. Go to `Auto-Obtain DNS` (Not IP Address), then select `No`, then `Advanced Settings`. -1. Type in `167.86.108.126` as the primary DNS. -1. Type in `1.1.1.1` as the secondary DNS. -1. Select `Confirm`, then select `Save`. -1. Select `OK` to perform a connection test. -1. If the connection test was successful, select `No` to skip the Wii System Update. -1. Go to `WiiConnect24`, then `WiiConnect24` again, and make sure it is enabled. -1. Back on the WiiConnect24 menu, go to `Standby Connection` and make sure it is enabled. -1. At `Slot Illumination`, we recommend you set the disc light to `Dim` or `Bright`, but this is optional. -1. Finally, go to the `Internet` section, then `User Agreements` or `Agreement/Contact`, then `Yes`. Please read through this. - -[Return to WiiConnect24](wiiconnect24) -{: .notice--info} - -[Click here to go back to the site index.](site-navigation) -{: .notice--info} +{% include redirect.html redirect_to="https\://www\.wiilink24.com/guide/install/" %} diff --git a/_pages/es_419/riitag.md b/_pages/es_419/riitag.md new file mode 100644 index 000000000..e6b6bc322 --- /dev/null +++ b/_pages/es_419/riitag.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="https\://wiki.hacks.guide/wiki/RiiTag" %} diff --git a/_pages/es_419/riivolution.md b/_pages/es_419/riivolution.md new file mode 100644 index 000000000..d7eef1b3f --- /dev/null +++ b/_pages/es_419/riivolution.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="410.html" %} diff --git a/_pages/es_419/themes.md b/_pages/es_419/themes.md index cd02734ea..38ca2eaca 100644 --- a/_pages/es_419/themes.md +++ b/_pages/es_419/themes.md @@ -4,13 +4,16 @@ title: "Installing Wii Menu Themes" {% include toc title="Tabla de contenido" %} -This guide is intended for regular Wiis only. For installing themes on vWii (Wii U), follow [this page](themes-vwii). Additionally, forwarders are covered. +This guide is intended to be the last you will ever need when it comes to theming on the Wii, not only providing instructions for the Wii Menu through csm-installer, but also with themes on WiiFlow Lite, USB Loader GX, and The Homebrew Channel. Additionally, forwarders are covered. ### Section I - Finding a Theme DO NOT CONTINUE WITH THIS GUIDE UNLESS YOU HAVE ADEQUATE BRICK PROTECTION, SPECIFICALLY [BOOTMII](bootmii) AND [PRIILOADER](priiloader)! {: .notice--danger} +This tutorial does not work on the Wii mini. Do not attempt this tutorial on the Wii mini or it will cause a [brick](bricks#theme-brick). +{: .notice--warning} + csm-installer has built in safety features to prevent from installing bad or corrupt Wii Menu themes, so please opt to use it instead of other theme installation homebrew. {: .notice--warning} diff --git a/_pages/es_419/usbloadergx.md b/_pages/es_419/usbloadergx.md new file mode 100644 index 000000000..00a63864a --- /dev/null +++ b/_pages/es_419/usbloadergx.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-loaders.html" %} diff --git a/_pages/es_419/wiibackupmanager.md b/_pages/es_419/wiibackupmanager.md new file mode 100644 index 000000000..063d7bba0 --- /dev/null +++ b/_pages/es_419/wiibackupmanager.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-backups.html" %} diff --git a/_pages/es_419/wiiconnect24.md b/_pages/es_419/wiiconnect24.md index 3f5edea30..ad0a4b6fc 100644 --- a/_pages/es_419/wiiconnect24.md +++ b/_pages/es_419/wiiconnect24.md @@ -3,44 +3,21 @@ title: "WiiConnect24" --- {% include toc title="Table of Contents" %} + -This guide provides different means of regaining WiiConnect24 functionality on your console. Although not at all nessecary, it is a "nice to have" feature that was originally used for online connectivity in certain applications on the console. These apps include the Forecast/News Channel, Nintendo Channel, Check Mii Out Channel, some Japan-exclusive channels, and more. Please bear in mind, the functionality you gain depends entirely on what service(s) you use. +[WiiConnect24](https://wikipedia.org/wiki/WiiConnect24) was a service that allowed users with Internet connected Wiis to view the weather & local news, send messages to friends, participate in Mii contest, and more. WiiConnect24 was discontinued on June 27th, 2013. -### Service Overview +## RiiConnect24 + WiiLink +[RiiConnect24](https://rc24.xyz) is a revival service for WiiConnect24 that started in 2015, which allows you to regain its functionality on your console. As of late 2023, the service is now owned by WiiLink, a project that started in 2020 that was previously aiming at the Japanese-exclusive channels. -#### Note about service compatibility: -Both services listed below are compatible with one another and can be loaded on the same console. With this said, it should be noted that when installing one channel over the other (WiiLink's Forecast Channel over RiiConnect24's Forecast Channel for example), the channel you are installing will overwrite the old one. - - -#### Service Support Status -✅ - In support
⚠️ - In development
⛔ - No support - -| Service Name | WiiLink | Install RiiConnect24 | -| ----------------------- | ------- | -------------------- | -| Forecast Channel | ✅ | ✅ | -| News Channel | ⚠️ | ✅ | -| Wii Mail | ✅ | ✅ | -| Everybody Votes Channel | ✅ | ✅ | -| Nintendo Channel | ✅ | ✅ | -| Check Mii Out Channel | ⚠️ | ✅ | -| Wii Room | ✅ | ⛔ | -| Food Channel | ✅ | ⛔ | -| Photo Prints Channel | ✅ | ⛔ | -| Kirby TV Channel | ✅ | ⛔ | -| TV Guide Channel | ⚠️ | ⛔ | - -#### WiiLink -A newer WC24/Japanese channel revival service that started in 2020, but is rapidly regaining functionality in many different channels. - -Service support status can be found [here](https://www.wiilink24.com/status).
Their guide can be found [here](https://www.wiilink24.com/guide). - -#### Install RiiConnect24 -The longest lasting WC24 revival service, currently only with support for the worldwide WC24 channels as well as mail services. - -Service support status can be found [here](https://rc24.xyz/stats/).
RiiConnect24 currently does not have a self-hosted guide, however you can find ours [here](riiconnect24). +There is a patcher that ships both of these services together as one - meaning you get all of the international and Japanese-only channels in one package. The guide on how to install these services can be found [on WiiLink's website.](https://www.wiilink24.com/guide/) + ### Updating RTC Clock -If you choose to install either of these services on your Wii, it is advised to synchronize its external clock in order to prevent various issues (such as inability to use said services) that may arise otherwise. The steps to do so can be found below: #### What you need + A working Internet connection on your Wii diff --git a/_pages/es_419/wiiflow.md b/_pages/es_419/wiiflow.md new file mode 100644 index 000000000..00a63864a --- /dev/null +++ b/_pages/es_419/wiiflow.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-loaders.html" %} diff --git a/_pages/es_ES/410.md b/_pages/es_ES/410.md new file mode 100644 index 000000000..21f077b23 --- /dev/null +++ b/_pages/es_ES/410.md @@ -0,0 +1,12 @@ +--- +title: Page no longer exists +sitemap: false +--- + +The page you are trying to view used to exist, but it has since been removed. Maybe the instructions you are following are outdated? (If you got here from a link on this guide, [let us know](https://github.com/hacks-guide/Guide_Wii/issues)) + +[Click here to go back to the site index.](site-navigation) +{: .notice--info} + +![](https://http.cat/410) +{: .notice--info} diff --git a/_pages/es_ES/bootmii.md b/_pages/es_ES/bootmii.md index 25530f6a1..1ba9a01cd 100644 --- a/_pages/es_ES/bootmii.md +++ b/_pages/es_ES/bootmii.md @@ -6,21 +6,9 @@ title: "Crear respaldo de NAND con BootMii" Una de las funciones más importantes de BootMii es la capacidad de copiar y restaurar los contenidos de la memoria interna (NAND) de tu consola. Esta página te guiará para hacer una copia de seguridad de la NAND de tu Wii a una tarjeta SD, que luego podrás usar de cualquier manera. -Las consolas Wii Family Edition (sin puertos de GameCube) NO PUEDEN restaurar las copias de la NAND. Esto se debe a la falta de puertos de GameCube que son necesarios en las consolas Wii sin compatibilidad Boot2 para introducir el código de confirmación. En cualquier caso, sigue siendo recomendable hacer una en estas consolas. -{: .notice--danger} - Necesitarás una **tarjeta SD** para crear un respaldo de la NAND usando BootMii. Puedes saltar esta guía en caso de que no cuentes con una, aunque es muy recomendable seguir este proceso antes de continuar modificando tu consola. {: .notice--warning} -BootMii no es compatible con el Wii Remote. Para controlar la interfaz, deberás usar los botones POWER y RESET de la consola, o un control de GameCube conectado en el puerto del jugador 1. Para navegar entre las opciones, oprime POWER en tu Wii, o lzquierda/derecha en el botón cruz de un control de GameCube. Para elegir una opción, pulsa RESET en la Wii, o el botón A en el control de GameCube. Necesitarás usar un mando de GameCube para restaurar una copia de seguridad de NAND en el futuro si BootMii está instalado como IOS. -{: .notice--info} - -Si la opción `Lanzar BootMii` no aparece, por favor [vuelve a iniciar el HackMii Installer](hackmii) e instala BootMii. -{: .notice--warning} - -Si después de seguir los pasos anteriores, la pantalla se queda en negro y la luz de la ranura para discos comienza a parpadear, significa que faltan los archivos de BootMii que van en la tarjeta SD, o están dañados. Para solucionar este problema, descarga [este archivo ZIP](https://static.hackmii.com/bootmii_sd_files.zip), extrae su contenido a la raíz de la tarjeta SD, y luego vuelve a intentarlo. -{: .notice--warning} - ### Requisitos * Una tarjeta SD con al menos 512 MB de espacio libre @@ -36,10 +24,19 @@ Si has instalado BootMii como boot2, apaga y vuelve a encender la consola para i ![](/images/bootmii/BootMii_HBC.png) + Si la opción `Lanzar BootMii` no aparece, por favor [vuelve a iniciar el HackMii Installer](hackmii) e instala BootMii. + {: .notice--warning} + + Si después de seguir los pasos anteriores, la pantalla se queda en negro y la luz de la ranura para discos comienza a parpadear, significa que faltan los archivos de BootMii que van en la tarjeta SD, o están dañados. Para solucionar este problema, descarga [este archivo ZIP](https://static.hackmii.com/bootmii_sd_files.zip), extrae su contenido a la raíz de la tarjeta SD, y luego vuelve a intentarlo. + {: .notice--warning} + 1. You should see an image similar to the below now on your screen: ![](/images/bootmii/BootMii_Main.png) + BootMii no es compatible con el Wii Remote. Para controlar la interfaz, deberás usar los botones POWER y RESET de la consola, o un control de GameCube conectado en el puerto del jugador 1. To navigate between options, press POWER. To select an option, press RESET. + {: .notice--info} + 1. Selecciona el botón de opciones (el que tiene dos engranajes). ![](/images/bootmii/BootMii_Gears.png) @@ -65,7 +62,7 @@ Si has instalado BootMii como boot2, apaga y vuelve a encender la consola para i
Nota: **restaurar una copia de seguridad de la NAND suele ser una solución extrema**. Normalmente hay mejores formas de desbloquear la consola. Puedes intentar [identificar la causa del brick](bricks) y revertir la acción que lo haya provocado. -Para restaurar un respaldo de la NAND desde la tarjeta SD, puedes seguir [esta guía](bootmiirecover). +To restore from a NAND backup on your SD card, you can follow the instructions for [RestoreMii](bootmiirecover). **Family edition Wiis (Wiis without GameCube ports) CANNOT restore NAND backups.**
As stated earlier, if you have BootMii installed as boot2, it will launch every time you start your console. If you would like to change this, you can use the app [BootMii Config Editor](https://oscwii.org/library/app/BootMiiConfigurationEditor). Or, you can edit `sd:/bootmii/bootmii.ini` manually. diff --git a/_pages/es_ES/bricks.md b/_pages/es_ES/bricks.md index 5a33ef7ef..2e8572cae 100644 --- a/_pages/es_ES/bricks.md +++ b/_pages/es_ES/bricks.md @@ -111,7 +111,7 @@ Al intentar arrancar la Wii, aparece la pantalla de salud y seguridad y, al puls El bloqueo de tema se produce cuando se instala un tema con un formato incorrecto. #### Soluciones -To resolve this issue, open HBC through Priiloader and access MyMenuifyMod to install a default theme. Como alternativa, entra en [YAWM ModMii Edition](yawmme) e instala la WAD del menú de Wii por defecto CORRECTO para tu región y versión. +To resolve this issue, open HBC through Priiloader or BootMii as boot2 and access csm-installer to install a default theme such as the base Wii Menu theme. Como alternativa, entra en [YAWM ModMii Edition](yawmme) e instala la WAD del menú de Wii por defecto CORRECTO para tu región y versión. ## Bloqueo de correo diff --git a/_pages/es_ES/cios.md b/_pages/es_ES/cios.md index 00da30bb7..6241f555f 100644 --- a/_pages/es_ES/cios.md +++ b/_pages/es_ES/cios.md @@ -65,6 +65,12 @@ Select cIOS version: 65535 ![](/images/cios/d2x_v11_248.png) + The warning "`(c)IOS detected in slot ### will be overwriitten`" can be safely ignored. + {: .notice--info} + + If you are seeing "`Slot ### already used in batch settings`" or "`cIOS already added in batch with revision ##### and slot ###`", press `-` to disable batch mode.
(If you are trying to exit the installer, the button is B, not Home.) + {: .notice--info} + 1. Press `A`. This will bring you to the slot map: ![](/images/cios/d2x_summary.png) diff --git a/_pages/es_ES/dosanddonts.md b/_pages/es_ES/dosanddonts.md new file mode 100644 index 000000000..6ceed5bee --- /dev/null +++ b/_pages/es_ES/dosanddonts.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="faq.html" %} diff --git a/_pages/es_ES/hbc.md b/_pages/es_ES/hbc.md index 9207c2a55..e105fcc48 100644 --- a/_pages/es_ES/hbc.md +++ b/_pages/es_ES/hbc.md @@ -6,7 +6,7 @@ title: "Instalar el Canal Homebrew y BootMii" El Canal Homebrew te permite utilizar las aplicaciones homebrew que descargues. BootMii es un software que te permite copiar y restaurar los contenidos de la memoria interna (NAND) de tu consola, y en caso de estar instalado como boot2, también brinda protección contra bricks. -BootMii can be installed in two ways: directly to a part of the Wii bootloader called boot2, and via an IOS. BootMii under boot2 is preferred as it provides extended brick protection, but Wiis with a vulnerable boot2 are considerably rarer, having been manufactured before 2009. In most cases, installing BootMii as IOS should be fine, as long as you also install [Priiloader](priiloader). +BootMii can be installed in two ways: directly to a part of the Wii bootloader called boot2, and via an IOS. BootMii under boot2 is preferred as it provides extended brick protection, but Wiis with a vulnerable boot1 that allows this installation are considerably rarer, having been manufactured before 2009. In most cases, installing BootMii as IOS should be fine, as long as you also install [Priiloader](priiloader). {: .notice--info} Si no dispones de una tarjeta SD, no serás capaz de instalar ni utilizar BootMii, y por tanto tampoco podrás aprovechar ninguna de las ventajas que ofrece.
Aunque siempre puedes [instalarlo más adelante](hackmii). diff --git a/_pages/es_ES/modmii.md b/_pages/es_ES/modmii.md index 54c344520..9c3691764 100644 --- a/_pages/es_ES/modmii.md +++ b/_pages/es_ES/modmii.md @@ -4,116 +4,190 @@ title: "ModMii" {% include toc title="Tabla de contenido" %} -If you need help for anything regarding this tutorial, please join [the ModMii Discord server](https://discord.gg/cMnBRACQwQ). -{: .notice--info} - This Program does NOT come with a warranty, so you are responsible for any potential damage done to your Wii. {: .notice--warning} This program is NOT intended to be used for the vWii or the Wii mini. Some tools may or may not work for these platforms. {: .notice--warning} -/images/Modmii/modmii.png +ModMii is an all-in-one Wii hacking tool for Windows created by XFlak that has various helpful tools for modding. It can accomplish the following: -Some advanced options may not be accessible in ModMii Skin. A list of the various activities for ModMii Classic can be found at the bottom of the page. -{: .notice--info} ++ Hacking the console for the first time, or re-hacking it ++ Check for and update outdated softmods ++ Fix upside-down Homebrew Channel problems ++ Run homebrew without making any changes to your Wii's NAND ++ Download homebrew ++ And more! -### Requisitos +### ModMii Overview + +There are two different ways to use ModMii. There is ModMii Classic, which uses a command line interface, but has all of the features available to the program. ModMii Skin has a graphical user interface, on the other hand, but has less options available to the user. If you're looking to simply mod your Wii for the first time, ModMii Skin should suffice. Otherwise, we reccomend using ModMii Classic where possible.
The chart below will help you determine what can be done in either interface. + +| Tools | ModMii Classic | ModMii Skin | +| -------------------------- | -------------- | ----------- | +| ModMii Wizard | ✅ | ✅ | +| SysCheck Updater Wizard | ✅ | ⛔ | +| USB Loader Setup Wizard | ✅ | ✅ | +| HackMii Solutions Wizard | ✅ | ✅ | +| Abstinence Wizard | ✅ | ✅ | +| Region Change Wizard | ✅ | ✅ | +| SNEEK/EmuNAND Installation | ✅ | ✅ | +| Open File Function | ✅ | ⛔ | +| Load Download Queue | ✅ | ✅ | +| Download Page 1/2/3/4 | ✅ | ⛔ | +| Advanced Downloads | ✅ | ⛔ | +| Load Download Queue | ✅ | ⛔ | +| Build Config Files | ✅ | ⛔ | +| File Cleanup & App Updater | ✅ | ⛔ | + +
+Click here for a detailed explanation of each tool. + +| Tool | Descripción | +| --------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| W = ModMii Wizard <-- Start Here to Mod Your Wii! | This option can be used to hack your Wii for the first time or re-hack a Wii that has been previously modded. | +| SU = SysCheck Updater Wizard (update only your outdated softmods) | This option checks for and updates old modifications installed to their wii such as DarkCorp/CIOSSPAGHETTI that can potentially cause problems for the latest homebrew custom firmware. | +| U = USB-Loader Setup Wizard | This option will properly set up your USB loader to be able to load your disk backups from an SD or USB hard drive. This option is not necessary if using the ModMii Wizard. | +| H = HackMii Solutions Wizard (Upside-Down HBC\No Vulnerable IOS Fix) | This option is useful for people who are having trouble getting the HackMii Installer to work or have an upside down homebrew channel. | +| AW = Abstinence Wizard (Non-permanent Wii Hacks) | This option allows you to run homebrew on your Wii without making any permanent modifications to the system NAND. | +| RC = Region Change Wizard | This option can be used to change the region of your Wii without bricking it, and is arguably the best region changing wizard on the internet. | +| S = SNEEK Installation, EmuNAND Builder\Modifier, Game Bulk Extractor | This option will help you properly set up an EmuNAND (aka neek2o) onto your SD or USB. Benefits for EmuNAND include extra storage space for save games or channels, as well as running homebrew without making any permanent modifications to the system NAND. | +| F = open a File or Folder with ModMii for many more functions! | This option is an advanced tool especially helpful for developers. | +| 1 = Download Page 1 (System Menus, IOSs, MIOSs, Channels, etc.) | This option opens the first download page that includes most of the key parts of the Wii System Menu (downloaded from NUS). | +| 2 = Download Page 2 (Apps, USB-Loader Files, CheatCodes, etc.) | This option opens the second download page that includes exploits and useful apps for your Wii including some PC programs. | +| 3 = Download Page 3 (System Menu Themes) | This option opens the third download page that includes some system menu themes and items required to install system menu themes (base apps are downloaded from NUS). | +| 4 = Download Page 4 (cIOSs and cMIOSs) | This option opens the fourth download page that includes cIOSes and cMIOSes for use in USB loaders. | +| A = Advanced Downloads and Forwarder DOL\ISO Builder | This option allows you to download any IOS and cIOS and build custom DOL/ISO forwarders. Intended for advanced users only. | +| L = Load Download Queue | This option loads bundled or previously saved download queues. | +| C = Build Config Files for Bootmii, Wad Manager or Multi-Mod Manager | This option allows you to build customized config files for BootMii, Wad Manager, and Multi-Mod Manager. | +| FC = File Cleanup & App Updater: Update Apps and\or remove un-needed files | This option removes unnessecary files from your SD Card or Hard Drive after finishing softmodding your Wii. | + +

+ +When using ModMii, it is important to note that it will generate a custom guide for you depending on the options that you select. For this reason, this guide will not be focused on how to mod your Wii, as ModMii handles that function. Instead, it will be a quick start guide show you how to effectively use it with the most common options. + +### Installing ModMii + +#### Requisitos * Una consola Wii * Una unidad USB o tarjeta SD * A Windows PC (a Virtual Machine will work) * [ModMii](https://modmii.github.io/) -This is a quick start guide on how to use ModMii on your Windows PC. +#### Installation -### ModMii Wizard +1. Go to the [ModMii website](https://modmii.github.io) and scroll down to the Download section. Here, select the `Installer` option. Your browser may flag the installer as malware, but it is a **false positive**. -You can use the ModMii wizard to softmod any Wii.
Even if the Wii has been softmodded in the past, you can have ModMii overwrite existing softmods by telling ModMii that this is the first time you're modding your Wii (even though it's not). + ![](/images/modmii/modmii-download.png) -You can also use this wizard to set up a USB loader at the same time, instead of having to use the USB Loader setup wizard later on. +2. Open the `ModMiiInstaller.exe` file and go through the setup process. + + ![](/images/modmii/modmii-install.png) + +### Using the ModMii Wizard + +The ModMii Wizard is tool that can softmod your Wii from start to finish, downloading all necessary files and then generating a guide that you can use to implement the softmod. This tool can also be used to overwrite existing softmods on a previously softmodded Wii. + +1. Open ModMii Skin or ModMii Classic and select the ModMii Wizard option at the top of the list. + + ![](/images/modmii/modmii-wizard-1.png) + +1. Answer `Yes` to the first question, unless you have a very specific idea of what you would like to do or update to your Wii. + + ![](/images/modmii/modmii-wizard-2.png) + +1. Select your current System Menu version, followed by the System Menu Region, following the instructions in the program. If you are still confused, check the bottom option on each screen for an instructional video. + + ![](/images/modmii/modmii-wizard-3.png) + +1. Select the exploit you would like to use to mod your Wii. The exploits below are outlined throughout this website, but in most cases we would reccommend using Wilbrand if you have an SD card on hand. + + ![](/images/modmii/modmii-wizard-4.png) + +1. If you selected the Wilbrand option in the previous step, enter your Wii's MAC address. If you don't know how to check your Wii's MAC address, enter `Help` in the text box for an instructional video. + + ![](/images/modmii/modmii-wizard-5.png) + +1. Select your desired System Menu version from the list. + + ![](/images/modmii/modmii-wizard-6.png) + +1. Select whether or not you would like to install any of the listed channels - this is an optional step. + + ![](/images/modmii/modmii-wizard-7.png) + +1. Select whether or not you would like to install a custom Wii theme, with the choice of three theme effects. Each effect deals with how much the outline when hovering over a Wii Channel spins. + + ![](/images/modmii/modmii-wizard-8.png) + +1. Select whether or not you would like to set up a USB Loader for use with your Wii. + + ![](/images/modmii/modmii-wizard-9.png) + +1. If you selected `Yes` in the USB Loader menu, select which USB Loader you would like to use. If you choose an individual one, we reccomend either USB Loader GX or WiiFlow as both are covered on this website, or you may optionally download each option. + + ![](/images/modmii/modmii-wizard-10.png) + +1. If you selected `Yes` in the USB Loader menu, select where you would like to save your USB Loader files at. + + ![](/images/modmii/modmii-wizard-11.png) + +1. Verify where you would like to save files for your SD Card and/or USB Drive. + + ![](/images/modmii/modmii-wizard-12.png) + +1. Confirm your settings are correct, and then press `Finish`. Once you press the button, ModMii will begin to process and download files in the background, and will automatically generate and open a guide for you. From here, you should follow the guide generated by ModMii. + + ![](/images/modmii/modmii-wizard-13.png) ### SysCheck Updater Wizard -[SysCheck](syscheck) is a homebrew application that analyzes the modifications on a Wii.
You can give a SysCheck report to ModMii to help identify & update outdated mods. +The SysCheck Updater Wizard is a tool that utilizes the homebrew app [SysCheck](syscheck) to analyze any modifications on your Wii, especially IOS and cIOS. It accepts a `syscheck.csv` file generated by the app, and then provides any nessecary updates as needed. -You can have ModMii analyze a SysCheck by dragging the `syscheck.csv` file onto ModMii.exe. Or, you can launch the SysCheck Updater Wizard (`SU`) from ModMii's main menu and manually browse for the file. +1. Open ModMii Classic and enter in `SU` to open the SysCheck Updater Wizard. + + ![](/images/modmii/syscheck-wizard-1.png) + +1. Follow the instructions in the window if you don't already have a SysCheck log, and then drag and drop the `syscheck.csv` file from Windows Explorer into the window. This will paste the location of the file, from which you can press Enter. + + ![](/images/modmii/syscheck-wizard-2.png) + +1. The program will analyze your SysCheck file, and will provide options for you depending on what it sees. In this example instance, the mods on the Wii were up-to-date, but there were several unnecessary IOSes that could be stubbed. If you want to make these changes to your Wii, simply enter in `Y` and press Enter. From here, you should follow the guide generated by ModMii. + + ![](/images/modmii/syscheck-wizard-3.png) ### HackMii Solutions Wizard -The HackMii Solutions wizard can help fix symptoms like these: +The HackMii Solutions Wizard is a tool that fixes problems that may arise from things like Darkcorp/CIOSSPAGHETTI by installing clean IOSes. Examples of problems that may arise because of this are listed below: + HackMii Installer not prompting "Press (1) to continue" -+ HackMii Installer says "no vulnerable IOS found!" -+ Homebrew Channel is displaying upside-down ++ HackMii Installer saying "no vulnerable IOS found!" ++ Homebrew Channel displaying upside-down -It will install clean IOSs to allow for the HackMii Installer to operate properly. +1. Open ModMii Skin or ModMii Classic and select the HackMii Solutions option. -### Abstinence Wizard + ![](/images/modmii/hackmii-wizard-1.png) -This wizard requires an SD card. -{: .notice--warning} +1. Select your current System Menu version, followed by the System Menu Region, following the instructions in the program. If you are still confused, check the bottom option on each screen for an instructional video. -This wizard allows you to enjoy many of the benefits of a softmodded Wii without installing any permanent modifications to your Wii. It will allow you to launch an exploit to boot an from emulated NAND from external storage, instead of your Wii's internal NAND. + ![](/images/modmii/hackmii-wizard-2.png) -On a related note, you can also make a NAND backup without modifying your Wii at all. Find ModMii's "Support" folder and launch `Casper2BootMii.bat`.
It will save some files to a folder named `COPY_TO_SD`, copy the files inside it to your SD card and [launch an exploit](get-started). +1. Select the exploit you would like to use to mod your Wii. The exploits below are outlined throughout this website, but in most cases we would reccommend using Wilbrand if you have an SD card on hand. -When following one of the exploit guides above, please avoid replacing the `boot.elf` file. -{: .notice--warning} + ![](/images/modmii/hackmii-wizard-3.png) +1. If you selected the Wilbrand option in the previous step, enter your Wii's MAC address. If you don't know how to check your Wii's MAC address, enter `Help` in the text box for an instructional video. -
-Click here for a full list of available tools. + ![](/images/modmii/hackmii-wizard-4.png) -| Tool | Descripción | -| --------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| W = ModMii Wizard <-- Start Here to Mod Your Wii! | This option can be used to mod your Wii for the first time or re-mod a Wii that has been previously modded. | -| SU = SysCheck Updater Wizard (update only your outdated softmods) | This option is useful for people who have old modifications installed to their wii such as DarkCorp/Ciosspaghetti that can potetially cause problems for the latest homebrew custom firmware. | -| U = USB-Loader Setup Wizard | This option will help you properly set up your USB loader to be able to load your disk backups from an SD or USB hard drive. | -| H = HackMii Solutions Wizard (Upside-Down HBC\No Vulnerable IOS Fix) | This option is useful for people who are having trouble getting the HackMii Installer to work, or if they just simply have an upside down homebrew channel, or if DarkCorp/Ciosspaghetti was installed and there was no homebrew channel. | -| AW = Abstinence Wizard (Non-permanent Wii Hacks) | This option is useful for people who dont want to make any permanent modifications to their Wii but still want to have some of the benefits that homebrew can offer. | -| RC = Region Change Wizard | This option can be used to change the region of your Wii without bricking it (this is the best region changer tutorial available on the internet!). | -| S = SNEEK Installation, EmuNAND Builder\Modifier, Game Bulk Extractor | This option will help you properly set up an EmuNAND (aka neek2o) onto your SD or USB. benefits for emunand include extra storage space for save games or channels. and the benefit of not making any permanent modifications to your Wii. | -| F = open a File or Folder with ModMii for many more functions! | This option is an advanced tool especially helpful for developers. | -| 1 = Download Page 1 (System Menus, IOSs, MIOSs, Channels, etc.) | This option opens the first download page that includes most of the key parts for the system menu (downloaded from NUS). | -| 2 = Download Page 2 (Apps, USB-Loader Files, CheatCodes, etc.) | This option opens the second download page that includes exploits and useful apps for your Wii including some PC programs. | -| 3 = Download Page 3 (System Menu Themes) | This option opens the third download page that includes some system menu themes and items required to install system menu themes (base apps are downloaded from NUS). | -| 4 = Download Page 4 (cIOSs and cMIOSs) | This option opens the fourth download page that includes cIOSes and cMIOSes for use in USB loaders. It is recommended to just install the recommended cioses unless you plan to do some testing. | -| A = Advanced Downloads and Forwarder DOL\ISO Builder | This option is an advanced tool used to better customize downloads or allow you to build a dol executable useful for fowarders (channels on the system menu to access Wii applications). | -| L = Load Download Queue | This option will download all of the required titles need for the Wii system menu (titles are downloaded from NUS) | -| C = Build Config Files for Bootmii, Wad Manager or Multi-Mod Manager | This option will help you build configuration files required for certain applications. | -| FC = File Cleanup & App Updater: Update Apps and\or remove un-needed files | This option is useful for people who want to clean out their SD or USB of apps deemed outdated, useless, or otherwise depreciated. | -| M = ModMii Skin Mode: use your mouse instead of your keyboard! | This option will launch ModMii skin mode. Some advanced options may not be available in this view. | +1. Verify where you would like to save files for your SD Card and/or USB Drive. -
+ ![](/images/modmii/modmii-wizard-12.png) -
-Click here for a full list of available options. +1. Confirm your settings are correct, and then press `Finish`. Once you press the button, ModMii will begin to process and download files in the background, and will automatically generate and open a guide for you. From here, you should follow the guide generated by ModMii. After finishing this guide, it is recommended that you use the [SysCheck Updater Wizard](#syscheck-updater-wizard) to undo any other problematic modifications on your Wii. -| Option | Descripción | -| ---------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| D = Change Drive letter: | Changes where your SD files are saved to. | -| DU = Change Drive letter for USB: | Changes where your USB files are saved to. | -| d2x = change d2x cIOS version built: | Changes the cios version ModMii downloads. | -| H = Hermes cIOSs (202 & 222-224) will also be recommended | Enables Hermes IOS to be recommended and downloaded in the syscheck updater (will be stubbed if disabled). | -| CM = cMIOS included in recommended cIOSs | Enables cMIOS to be recommended and downloaded in the syscheck updater (will install stock MIOS if disabled). | -| E = Extra Brick Protection in ModMii Wizard Guides | Enables ModMiis Extra Brick Protection IOSes to be recommended and used in the syscheck updater tool. | -| U = Update IOSs. Wizard/SysCheck-Updater to update Active IOSs | Updates Existing IOSes to the latest version available on NUS. | -| AU = Auto-Updating downloads will skip update check if cached | Will skip downloading the files if already in the queue. | -| FWD = Install USB-Loader Forwarder in ModMii Wizard Guides | Will include the USB loader forwarder wad file in the USB loader wizard guides. | -| PC = PC Programs Save Location | Changes the save location for the downloadable PC programs. | -| RS = Root Save: Save IOSs\MIOSs to Root instead of WAD Folder | Saves IOSs\MIOSs to Root instead of WAD Folder. | -| 1 = Do not Keep 00000001 or NUS Folders for IOSs\MIOSs\SMs etc | Deletes the folder used for compiling the wad file and just gives you the wad file. | -| n2o = neek2o - build mod of s\uneek instead of original | Uses a better modified version of neek2o in the EmuNAND builder. | -| SSD = SNEEK and SNEEK+DI SD Access | Allows for SNEEK and SNEEK+DI access on the SD card. | -| F = Font.bin Colour for SNEEK/UNEEK | Changes the font color for neek2o. | -| SV = SNEEK Verbose Output | Displays extra information regarding EmuNAND. | -| V = Verbose for ModMii Skin & nandBinCheck | Displays another window with extra information regarding a nand check. | -| SO = Play sound at Finish | Plays a fun jingle after a successful download. | -| A = Auto-Update ModMii at program start | Will automatically check for updates when ModMii is launched. | -| N = Check for New versions of ModMii right now | Will check online for a ModMii update. | - -
+ ![](/images/modmii/hackmii-wizard-5.png) [Haz clic aquí para volver al índice del sitio.](site-navigation) {: .notice--info} diff --git a/_pages/es_ES/nintendont.md b/_pages/es_ES/nintendont.md new file mode 100644 index 000000000..d7eef1b3f --- /dev/null +++ b/_pages/es_ES/nintendont.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="410.html" %} diff --git a/_pages/es_ES/recommended-homebrew.md b/_pages/es_ES/recommended-homebrew.md index 5905d676e..2453fffcf 100644 --- a/_pages/es_ES/recommended-homebrew.md +++ b/_pages/es_ES/recommended-homebrew.md @@ -16,7 +16,7 @@ Homebrew that has the ability to make permanant changes to your Wii are highligh + [**AnyRegion Changer ME**](https://oscwii.org/library/app/ARCME) - ModMii edition of AnyRegion Changer. While a powerful tool for changing region settings, it can also lead to severe bricks like [Korean Kii/Error 003](bricks#korean-kiierror-003-brick) so **only use this app if you know what you are doing**. + [**WiiXplorer-SS**](https://oscwii.org/library/app/wiixplorer-ss) - A modified and updated version of WiiXplorer. A file manager for the Wii, it allows you to view and customize files both on an SD card, a USB device, and the internal Wii memory. For this reason it is a very powerful but also dangerous tool - don't modify files on the system NAND unless you know what you are doing, as it can lead to various types of [bricks](bricks). + [**SaveGame Manager GX**](https://oscwii.org/library/app/SaveGame_Manager_GX) - A savegame/Mii extractor for the Wii. It supports GameCube memory cards (physical and virtual), emuNANDs, normal and protected saves, themes, and more. -+ [**MyMenuifyMod**](https://oscwii.org/library/app/mymenuifymod) - An application that allows you to theme the Wii Menu. While quite useful to make your Wii unique, it also has the ability to cause a [minor brick](bricks#theme-brick), so make sure to read our [theme guide](themes) for safe usage instructions. ++ [**csm-installer**](https://oscwii.org/library/app/csm-installer) - An application that allows you to theme the Wii Menu. While quite useful to make your Wii unique, it also has the ability to cause a [minor brick](bricks#theme-brick), so make sure to read our [theme guide](themes) for safe usage instructions. + [CleanRip](https://oscwii.org/library/app/CleanRip) - A tool to backup GameCube and Wii discs. Further information can be found in our [disc dumping guide](dump-games). + [**d2x cIOS installer**](https://oscwii.org/library/app/d2x-cios-installer) - A custom installer for Wii IOS, some of which is required for the functioning of certain software like USB loaders. You can see the guide [here](cios). + [FTPii](https://oscwii.org/library/app/ftpii) - An FTP server for your Wii, allowing you to transfer files across the network. diff --git a/_pages/es_ES/riiconnect24.md b/_pages/es_ES/riiconnect24.md index 28694dae3..d1e91b7e8 100644 --- a/_pages/es_ES/riiconnect24.md +++ b/_pages/es_ES/riiconnect24.md @@ -1,138 +1,5 @@ --- -title: "Install RiiConnect24" +title: Redirecting... --- -{% include toc title="Tabla de contenido" %} - -If you need help with anything regarding this tutorial, please join [the RiiConnect24 Discord server](https://discord.gg/rc24) (recommended) or [e-mail us at support@riiconnect24.net](mailto:support@riiconnect24.net). -{: .notice--primary} - -[RiiConnect24](https://rc24.xyz/) te permite utilizar nuevamente el servicio WiiConnect24, que incluye el Canal Noticias, Tiempo, Opiniones, Miirame y Nintendo, además del intercambio de mensajes y otros contenidos entre amigos Wii (mejor conocido como correo Wii). - -It's recommended to set your Wii to the current time before proceeding. Follow [this tutorial](rtc) in order to set it. -{: .notice--warning} - -DO NOT INSTALL RIICONNECT24 ON A WII MINI! It will not work and it will brick the system. -{: .notice--danger} - -### Requisitos - -Follow [this tutorial](riiconnect24-vwii) if you'd like to install RiiConnect24 on vWii (Wii Mode on Wii U). -{: .notice--primary} - -+ Una tarjeta SD o unidad USB -+ Una consola Wii con conexión a internet -+ Una computadora -+ [RiiConnect24 Patcher (Windows, Mac and Linux)](https://github.com/riiconnect24/RiiConnect24-Patcher/releases) -+ [Instalar WADs con YAWM ModMii Edition](https://oscwii.org/library/app/yawmme) - -### Instrucciones - -#### Section I - Using RiiConnect24 Patcher - -1. Click the link above to go to the GitHub page where the patcher is. -1. Descarga `RiiConnect24Patcher.bat` si usas Windows, o `RiiConnect24Patcher.sh` en el caso de macOS y Linux. -1. RiiConnect24 Patcher Main Screen - + On Windows run `RiiConnect24Patcher.bat`. - + On Unix systems, open Terminal and type `bash`, then drag `RiiConnect24Patcher.sh` into the terminal then press enter. It should look like this: `bash RiiConnect24Patcher.sh`. -1. Press 1 to choose "`Start`" and confirm your selection by pressing `ENTER`. - - ![](/images/riiconnect24/patcher/1.JPG) - -1. Select the device you're patching for. - - ![](/images/riiconnect24/patcher/2.JPG) - -1. For this guide, choose "`Install RiiConnect24 on your Wii`" - - ![](/images/riiconnect24/patcher/3.JPG) - -1. Choose "`Express (Recommended)`". It will give you everything you need. - - ![](/images/riiconnect24/patcher/4.JPG) - -1. Select your region. - - ![](/images/riiconnect24/patcher/5.JPG) - -1. While you're at it, RiiConnect24 Patcher can additionally download some other optional channels that do not use RiiConnect24. `[X]` represents the options that selected. Just press 5 and `ENTER` if you're not interested. - - ![](/images/riiconnect24/patcher/6.JPG) - -1. Connect your SD Card or USB Drive to your computer and select "`1`". - - ![](/images/riiconnect24/patcher/7.JPG) - -1. If your device was detected successfully, select "`1`". If not, make sure there's a folder called `apps` on your SD Card or USB Drive and try again. - - ![](/images/riiconnect24/patcher/8.JPG) - -1. The patcher will download apps now - please be patient. - - ![](/images/riiconnect24/patcher/9.JPG) - -1. Once you reach the screen that says `Patching done`, you can exit the patcher. All the files should already be on your SD Card. - - ![](/images/riiconnect24/patcher/10.JPG) - - ![](/images/riiconnect24/patcher/11.PNG) - -1. If it did not copy everything automatically to your SD Card or USB Device, copy the `WAD` and `apps` folder next to `RiiConnect24Patcher.bat` to your SD Card or USB Device. - -#### Section II - Installing WADs - -If you are using Dolphin, you have finished the guide. Install the WADs by going to `Tools -> Install WAD` within Dolphin. -{: .notice--primary} - -You will now install the patched IOS and Channel WADs that are required to use RiiConnect24. - -1. Extract the YAWM ModMii Edition `.zip` file, and copy the `apps` folder to your SD card or USB drive. -1. Put your SD card or USB drive in your Wii. -1. Inicia el Canal Homebrew en tu Wii. -1. Launch YAWM ModMii Edition. -1. Select the device you have put the RiiConnect24 files on. -1. Highlight all the WADs in the `wad` folder by pressing the + Button to select them. When all of the WADs are selected, press A twice to install the WADs. -1. After they are successfully installed, press the HOME Button to exit back to the Homebrew Channel. - -#### Sección III - Parcheando el archivo nwc24msg.cfg - -You will now patch your `nwc24msg.cfg` file which is required in order to use Wii Mail. - -1. Lanza el RiiConnect24 Mail Patcher. -1. En unos segundos deberías tener parcheado tu archivo nwc24msg.cfg. When it's done, press the HOME Button to exit. - -#### Sección IV - Conectándose - -The old DNS server `164.132.44.106` has been deprecated as of `June 1st, 2023` and is no longer available to use. -{: .notice--warning} - -If you're getting errors such as `WiiConnect24 and Wii Shop Channel currently not being offered in your country`, go to Wii Settings -> Last Page -> Country and change it to United Kingdom. You will get this error when using a country that we don't support. Contact us at [support@riiconnect24.net](mailto:support@riiconnect24.net) if you need more help. -{: .notice--warning} - -If you get error 107245, then you have not installed the patched IOS.
-{: .notice--warning} - -You will now set your DNS to our servers. This is optional but it's recommended, because it enhances the use of RiiConnect24 and Wiimmfi by making some other features available. - -1. Selecciona `Opciones de Wii` en el menú de Wii. -1. Selecciona `Configuración de Wii`. -1. Pasa a la segunda página y después selecciona `Internet`. -1. Selecciona `Ajustes de conexión`. -1. Selecciona tu conexión actual. -1. Selecciona `Modificar`. -1. Pasa hasta la cuarta página, donde está la opción `Obtener DNS automáticamente` (no es en Obtener drección IP automáticamente), elige `No` y después selecciona `Configuración avanzada`. -1. Type in `167.86.108.126` as the primary DNS. -1. Type in `1.1.1.1` as the secondary DNS. -1. Select `Confirm`, then select `Save`. -1. Selecciona `Aceptar` para realizar una prueba de conexión. -1. Si la prueba de conexión ha sido exitosa, elige `No` para saltar la actualización de la consola Wii. -1. Ve hacia `WiiConnect24`, luego `WiiConnect24` de nuevo, y asegúrate de que esté activado. -1. Vuelve al menú de ajustes de WiiConnect24, selecciona `Conexión (modo de espera)`, y asegúrate de que también esté activado. -1. En `Indicador de disco`, recomendamos que ajustes la luz de la ranura de disco en `Normal` o `Intenso`, pero esto es opcional. -1. Finalmente, ve hacia la sección `Internet`, selecciona `Acuerdos de uso` o `Documentos legales/Contacto` y elige `Sí`. Por favor lee todo el contrato. - -[Return to WiiConnect24](wiiconnect24) -{: .notice--info} - -[Haz clic aquí para volver al índice del sitio.](site-navigation) -{: .notice--info} +{% include redirect.html redirect_to="https\://www\.wiilink24.com/guide/install/" %} diff --git a/_pages/es_ES/riitag.md b/_pages/es_ES/riitag.md new file mode 100644 index 000000000..e6b6bc322 --- /dev/null +++ b/_pages/es_ES/riitag.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="https\://wiki.hacks.guide/wiki/RiiTag" %} diff --git a/_pages/es_ES/riivolution.md b/_pages/es_ES/riivolution.md new file mode 100644 index 000000000..d7eef1b3f --- /dev/null +++ b/_pages/es_ES/riivolution.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="410.html" %} diff --git a/_pages/es_ES/themes.md b/_pages/es_ES/themes.md index 17a7c3f88..2a2e4d4cc 100644 --- a/_pages/es_ES/themes.md +++ b/_pages/es_ES/themes.md @@ -4,13 +4,16 @@ title: "Instalar temas para el menú de Wii" {% include toc title="Tabla de contenido" %} -This guide is intended for regular Wiis only. For installing themes on vWii (Wii U), follow [this page](themes-vwii). Additionally, forwarders are covered. +This guide is intended to be the last you will ever need when it comes to theming on the Wii, not only providing instructions for the Wii Menu through csm-installer, but also with themes on WiiFlow Lite, USB Loader GX, and The Homebrew Channel. Additionally, forwarders are covered. ### Haz clic en `Options` > `Standard System Menu` > Versión de sistema de tu Wii > Región de tu Wii DO NOT CONTINUE WITH THIS GUIDE UNLESS YOU HAVE ADEQUATE BRICK PROTECTION, SPECIFICALLY [BOOTMII](bootmii) AND [PRIILOADER](priiloader)! {: .notice--danger} +This tutorial does not work on the Wii mini. Do not attempt this tutorial on the Wii mini or it will cause a [brick](bricks#theme-brick). +{: .notice--warning} + csm-installer has built in safety features to prevent from installing bad or corrupt Wii Menu themes, so please opt to use it instead of other theme installation homebrew. {: .notice--warning} diff --git a/_pages/es_ES/usbloadergx.md b/_pages/es_ES/usbloadergx.md new file mode 100644 index 000000000..00a63864a --- /dev/null +++ b/_pages/es_ES/usbloadergx.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-loaders.html" %} diff --git a/_pages/es_ES/wiibackupmanager.md b/_pages/es_ES/wiibackupmanager.md new file mode 100644 index 000000000..063d7bba0 --- /dev/null +++ b/_pages/es_ES/wiibackupmanager.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-backups.html" %} diff --git a/_pages/es_ES/wiiconnect24.md b/_pages/es_ES/wiiconnect24.md index 1458037cb..71b099355 100644 --- a/_pages/es_ES/wiiconnect24.md +++ b/_pages/es_ES/wiiconnect24.md @@ -3,44 +3,21 @@ title: "WiiConnect24" --- {% include toc title="Tabla de contenido" %} + -This guide provides different means of regaining WiiConnect24 functionality on your console. Although not at all nessecary, it is a "nice to have" feature that was originally used for online connectivity in certain applications on the console. These apps include the Forecast/News Channel, Nintendo Channel, Check Mii Out Channel, some Japan-exclusive channels, and more. Please bear in mind, the functionality you gain depends entirely on what service(s) you use. +[WiiConnect24](https://wikipedia.org/wiki/WiiConnect24) was a service that allowed users with Internet connected Wiis to view the weather & local news, send messages to friends, participate in Mii contest, and more. WiiConnect24 was discontinued on June 27th, 2013. -### Service Overview +## RiiConnect24 + WiiLink +[RiiConnect24](https://rc24.xyz) is a revival service for WiiConnect24 that started in 2015, which allows you to regain its functionality on your console. As of late 2023, the service is now owned by WiiLink, a project that started in 2020 that was previously aiming at the Japanese-exclusive channels. -#### Note about service compatibility: -Both services listed below are compatible with one another and can be loaded on the same console. With this said, it should be noted that when installing one channel over the other (WiiLink's Forecast Channel over RiiConnect24's Forecast Channel for example), the channel you are installing will overwrite the old one. - - -#### Service Support Status -✅ - In support
⚠️ - In development
⛔ - No support - -| Service Name | WiiLink | Install RiiConnect24 | -| ----------------------- | ------- | -------------------- | -| Forecast Channel | ✅ | ✅ | -| News Channel | ⚠️ | ✅ | -| Wii Mail | ✅ | ✅ | -| Everybody Votes Channel | ✅ | ✅ | -| Nintendo Channel | ✅ | ✅ | -| Check Mii Out Channel | ⚠️ | ✅ | -| Wii Room | ✅ | ⛔ | -| Food Channel | ✅ | ⛔ | -| Photo Prints Channel | ✅ | ⛔ | -| Kirby TV Channel | ✅ | ⛔ | -| TV Guide Channel | ⚠️ | ⛔ | - -#### WiiLink -A newer WC24/Japanese channel revival service that started in 2020, but is rapidly regaining functionality in many different channels. - -Service support status can be found [here](https://www.wiilink24.com/status).
Their guide can be found [here](https://www.wiilink24.com/guide). - -#### Install RiiConnect24 -The longest lasting WC24 revival service, currently only with support for the worldwide WC24 channels as well as mail services. - -Service support status can be found [here](https://rc24.xyz/stats/).
RiiConnect24 currently does not have a self-hosted guide, however you can find ours [here](riiconnect24). +There is a patcher that ships both of these services together as one - meaning you get all of the international and Japanese-only channels in one package. The guide on how to install these services can be found [on WiiLink's website.](https://www.wiilink24.com/guide/) + ### Updating RTC Clock -If you choose to install either of these services on your Wii, it is advised to synchronize its external clock in order to prevent various issues (such as inability to use said services) that may arise otherwise. The steps to do so can be found below: #### What you need + A working Internet connection on your Wii diff --git a/_pages/es_ES/wiiflow.md b/_pages/es_ES/wiiflow.md new file mode 100644 index 000000000..00a63864a --- /dev/null +++ b/_pages/es_ES/wiiflow.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-loaders.html" %} diff --git a/_pages/fr_FR/410.md b/_pages/fr_FR/410.md new file mode 100644 index 000000000..21f077b23 --- /dev/null +++ b/_pages/fr_FR/410.md @@ -0,0 +1,12 @@ +--- +title: Page no longer exists +sitemap: false +--- + +The page you are trying to view used to exist, but it has since been removed. Maybe the instructions you are following are outdated? (If you got here from a link on this guide, [let us know](https://github.com/hacks-guide/Guide_Wii/issues)) + +[Click here to go back to the site index.](site-navigation) +{: .notice--info} + +![](https://http.cat/410) +{: .notice--info} diff --git a/_pages/fr_FR/bootmii.md b/_pages/fr_FR/bootmii.md index 67ef7fc02..b61d61d7c 100644 --- a/_pages/fr_FR/bootmii.md +++ b/_pages/fr_FR/bootmii.md @@ -6,21 +6,9 @@ title: "Sauvegarde avec Bootmii" You need an **SD card** to create a NAND backup using BootMii. If you do not have one, you can skip this page, although it is highly recommended to make a NAND backup if you can. -Les Wii édition familiale (sans ports pour manettes GameCube) **NE PEUVENT PAS** restaurer une sauvegarde de la NAND. Ceci est dû à l'absence de ports GameCube qui sont requis sur les Wii non-boot2 pour entrer le code de confirmation de restauration. Quoi qu'il en soit, il est toujours recommandé d'en faire une sur ces consoles. -{: .notice--danger} - Vous avez besoin d'une carte **SD** pour utiliser BootMii, mais surtout pour créer une sauvegarde de la NAND. Si vous n'avez pas de carte SD à portée de main maintenant, vous pouvez sauter cette page, mais il est **FORTEMENT RECOMMANDÉ** de revenir à cette page plus tard pour sauvegarder votre NAND. {: .notice--warning} -Naviguer sur BootMii n'est pas possible avec une manette Wii. Vous devez utiliser les boutons POWER et RESET de votre console, ou une manette GameCube connecté au port 1. Pour naviguer entre les options, appuyez le bouton POWER sur la Wii (ou à gauche/droite sur la croix directionnelle sur une manette GameCube). Pour sélectionner une option, appuyez sur RESET sur la Wii ou A sur votre manette GameCube. One of BootMii's most important features is the ability to backup and restore your Wii's NAND storage. We will be going over how to perform a NAND backup. You can then restore from that backup for any reason. -{: .notice--info} - -If the `Launch BootMii` button does not appear, please [re-launch the HackMii Installer](hackmii) and install BootMii. -{: .notice--warning} - -If the screen stays black and the blue disc drive light is blinking, you are missing the BootMii files on your SD card. Download [this zip file](https://static.hackmii.com/bootmii_sd_files.zip) and extract it to the root of your SD card, then try again. -{: .notice--warning} - ### Prérequis * An SD card with at least 512MB of free space @@ -36,10 +24,19 @@ If you have BootMii installed as boot2 you will need to launch BootMii by restar ![](/images/bootmii/BootMii_HBC.png) + If the `Launch BootMii` button does not appear, please [re-launch the HackMii Installer](hackmii) and install BootMii. + {: .notice--warning} + + If the screen stays black and the blue disc drive light is blinking, you are missing the BootMii files on your SD card. Download [this zip file](https://static.hackmii.com/bootmii_sd_files.zip) and extract it to the root of your SD card, then try again. + {: .notice--warning} + 1. Vous devriez voir une image similaire à ce qui suit maintenant sur votre écran : ![](/images/bootmii/BootMii_Main.png) + Naviguer sur BootMii n'est pas possible avec une manette Wii. Vous devez utiliser les boutons POWER et RESET de votre console, ou une manette GameCube connecté au port 1. To navigate between options, press POWER. To select an option, press RESET. + {: .notice--info} + 1. Select the Options button (the icon with the gears). ![](/images/bootmii/BootMii_Gears.png) @@ -65,7 +62,7 @@ If you have BootMii installed as boot2 you will need to launch BootMii by restar
Please be reminded that restoring a NAND backup is usually a last resort, and that there often better ways to fix your brick. Il y a souvent de meilleures façons de débriquer votre console. Essayez de faire de votre mieux pour [comprendre pourquoi/comment votre console est briqué](bricks) et inverser l'action qui l'a causé en premier lieu. -To restore from a NAND backup on your SD card, you can follow the instructions for [RestoreMii](bootmiirecover). +To restore from a NAND backup on your SD card, you can follow the instructions for [RestoreMii](bootmiirecover). **Family edition Wiis (Wiis without GameCube ports) CANNOT restore NAND backups.**
BootMii as boot2 is recommended, but only available to install on early Wii consoles. Otherwise, it can only be installed as an IOS. If you would like to change this, you can use the app [BootMii Config Editor](https://oscwii.org/library/app/BootMiiConfigurationEditor). Or, you can edit `sd:/bootmii/bootmii.ini` manually. diff --git a/_pages/fr_FR/bricks.md b/_pages/fr_FR/bricks.md index 30c5ba9f8..955ef5cb7 100644 --- a/_pages/fr_FR/bricks.md +++ b/_pages/fr_FR/bricks.md @@ -111,7 +111,7 @@ Attempt to start the Wii - warning/press A screen shows up, and when A is presse A theme brick occurs when a wrongly formatted theme is installed. #### Solutions -To resolve this issue, open HBC through Priiloader and access MyMenuifyMod to install a default theme. Alternatively, go into [YAWM ModMii Edition](yawmme) and install the CORRECT default Wii Menu WAD for your region and version. +To resolve this issue, open HBC through Priiloader or BootMii as boot2 and access csm-installer to install a default theme such as the base Wii Menu theme. Alternatively, go into [YAWM ModMii Edition](yawmme) and install the CORRECT default Wii Menu WAD for your region and version. ## Mail brick diff --git a/_pages/fr_FR/cios.md b/_pages/fr_FR/cios.md index 8f209d03e..c2027313a 100644 --- a/_pages/fr_FR/cios.md +++ b/_pages/fr_FR/cios.md @@ -65,6 +65,12 @@ Select cIOS version: 65535 ![](/images/cios/d2x_v11_248.png) + The warning "`(c)IOS detected in slot ### will be overwriitten`" can be safely ignored. + {: .notice--info} + + If you are seeing "`Slot ### already used in batch settings`" or "`cIOS already added in batch with revision ##### and slot ###`", press `-` to disable batch mode.
(If you are trying to exit the installer, the button is B, not Home.) + {: .notice--info} + 1. Press `A`. This will bring you to the slot map: ![](/images/cios/d2x_summary.png) diff --git a/_pages/fr_FR/dosanddonts.md b/_pages/fr_FR/dosanddonts.md new file mode 100644 index 000000000..6ceed5bee --- /dev/null +++ b/_pages/fr_FR/dosanddonts.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="faq.html" %} diff --git a/_pages/fr_FR/hbc.md b/_pages/fr_FR/hbc.md index e1007437a..934bebeb5 100644 --- a/_pages/fr_FR/hbc.md +++ b/_pages/fr_FR/hbc.md @@ -6,7 +6,7 @@ title: "Installation de la chaine Homebrew et BootMii" La Chaîne Homebrew vous permet de lancer des applications Homebrew. BootMii is a piece of software that can backup and restore your Wii's NAND storage, and if installed in boot2, provides brick protection. -BootMii can be installed in two ways: directly to a part of the Wii bootloader called boot2, and via an IOS. BootMii under boot2 is preferred as it provides extended brick protection, but Wiis with a vulnerable boot2 are considerably rarer, having been manufactured before 2009. In most cases, installing BootMii as IOS should be fine, as long as you also install [Priiloader](priiloader). +BootMii can be installed in two ways: directly to a part of the Wii bootloader called boot2, and via an IOS. BootMii under boot2 is preferred as it provides extended brick protection, but Wiis with a vulnerable boot1 that allows this installation are considerably rarer, having been manufactured before 2009. In most cases, installing BootMii as IOS should be fine, as long as you also install [Priiloader](priiloader). {: .notice--info} If you do not have an SD card, you cannot install nor use BootMii, and therefore will not be able to utilize any of the mentioned benefits.
You can always [install it at a later date](hackmii). diff --git a/_pages/fr_FR/modmii.md b/_pages/fr_FR/modmii.md index 014cf10f1..f239cc752 100644 --- a/_pages/fr_FR/modmii.md +++ b/_pages/fr_FR/modmii.md @@ -4,116 +4,190 @@ title: "ModMii" {% include toc title="Table of Contents" %} -If you need help for anything regarding this tutorial, please join [the ModMii Discord server](https://discord.gg/cMnBRACQwQ). -{: .notice--info} - This Program does NOT come with a warranty, so you are responsible for any potential damage done to your Wii. {: .notice--warning} This program is NOT intended to be used for the vWii or the Wii mini. Some tools may or may not work for these platforms. {: .notice--warning} -/images/Modmii/modmii.png +ModMii is an all-in-one Wii hacking tool for Windows created by XFlak that has various helpful tools for modding. It can accomplish the following: -Some advanced options may not be accessible in ModMii Skin. A list of the various activities for ModMii Classic can be found at the bottom of the page. -{: .notice--info} ++ Hacking the console for the first time, or re-hacking it ++ Check for and update outdated softmods ++ Fix upside-down Homebrew Channel problems ++ Run homebrew without making any changes to your Wii's NAND ++ Download homebrew ++ And more! -### Prérequis +### ModMii Overview + +There are two different ways to use ModMii. There is ModMii Classic, which uses a command line interface, but has all of the features available to the program. ModMii Skin has a graphical user interface, on the other hand, but has less options available to the user. If you're looking to simply mod your Wii for the first time, ModMii Skin should suffice. Otherwise, we reccomend using ModMii Classic where possible.
The chart below will help you determine what can be done in either interface. + +| Tools | ModMii Classic | ModMii Skin | +| -------------------------- | -------------- | ----------- | +| ModMii Wizard | ✅ | ✅ | +| SysCheck Updater Wizard | ✅ | ⛔ | +| USB Loader Setup Wizard | ✅ | ✅ | +| HackMii Solutions Wizard | ✅ | ✅ | +| Abstinence Wizard | ✅ | ✅ | +| Region Change Wizard | ✅ | ✅ | +| SNEEK/EmuNAND Installation | ✅ | ✅ | +| Open File Function | ✅ | ⛔ | +| Load Download Queue | ✅ | ✅ | +| Download Page 1/2/3/4 | ✅ | ⛔ | +| Advanced Downloads | ✅ | ⛔ | +| Load Download Queue | ✅ | ⛔ | +| Build Config Files | ✅ | ⛔ | +| File Cleanup & App Updater | ✅ | ⛔ | + +
+Click here for a detailed explanation of each tool. + +| Tool | Description | +| --------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| W = ModMii Wizard <-- Start Here to Mod Your Wii! | This option can be used to hack your Wii for the first time or re-hack a Wii that has been previously modded. | +| SU = SysCheck Updater Wizard (update only your outdated softmods) | This option checks for and updates old modifications installed to their wii such as DarkCorp/CIOSSPAGHETTI that can potentially cause problems for the latest homebrew custom firmware. | +| U = USB-Loader Setup Wizard | This option will properly set up your USB loader to be able to load your disk backups from an SD or USB hard drive. This option is not necessary if using the ModMii Wizard. | +| H = HackMii Solutions Wizard (Upside-Down HBC\No Vulnerable IOS Fix) | This option is useful for people who are having trouble getting the HackMii Installer to work or have an upside down homebrew channel. | +| AW = Abstinence Wizard (Non-permanent Wii Hacks) | This option allows you to run homebrew on your Wii without making any permanent modifications to the system NAND. | +| RC = Region Change Wizard | This option can be used to change the region of your Wii without bricking it, and is arguably the best region changing wizard on the internet. | +| S = SNEEK Installation, EmuNAND Builder\Modifier, Game Bulk Extractor | This option will help you properly set up an EmuNAND (aka neek2o) onto your SD or USB. Benefits for EmuNAND include extra storage space for save games or channels, as well as running homebrew without making any permanent modifications to the system NAND. | +| F = open a File or Folder with ModMii for many more functions! | This option is an advanced tool especially helpful for developers. | +| 1 = Download Page 1 (System Menus, IOSs, MIOSs, Channels, etc.) | This option opens the first download page that includes most of the key parts of the Wii System Menu (downloaded from NUS). | +| 2 = Download Page 2 (Apps, USB-Loader Files, CheatCodes, etc.) | This option opens the second download page that includes exploits and useful apps for your Wii including some PC programs. | +| 3 = Download Page 3 (System Menu Themes) | This option opens the third download page that includes some system menu themes and items required to install system menu themes (base apps are downloaded from NUS). | +| 4 = Download Page 4 (cIOSs and cMIOSs) | This option opens the fourth download page that includes cIOSes and cMIOSes for use in USB loaders. | +| A = Advanced Downloads and Forwarder DOL\ISO Builder | This option allows you to download any IOS and cIOS and build custom DOL/ISO forwarders. Intended for advanced users only. | +| L = Load Download Queue | This option loads bundled or previously saved download queues. | +| C = Build Config Files for Bootmii, Wad Manager or Multi-Mod Manager | This option allows you to build customized config files for BootMii, Wad Manager, and Multi-Mod Manager. | +| FC = File Cleanup & App Updater: Update Apps and\or remove un-needed files | This option removes unnessecary files from your SD Card or Hard Drive after finishing softmodding your Wii. | + +

+ +When using ModMii, it is important to note that it will generate a custom guide for you depending on the options that you select. For this reason, this guide will not be focused on how to mod your Wii, as ModMii handles that function. Instead, it will be a quick start guide show you how to effectively use it with the most common options. + +### Installing ModMii + +#### Prérequis * Une Wii * A USB drive or SD Card * A Windows PC (a Virtual Machine will work) * [ModMii](https://modmii.github.io/) -This is a quick start guide on how to use ModMii on your Windows PC. +#### Installation -### ModMii Wizard +1. Go to the [ModMii website](https://modmii.github.io) and scroll down to the Download section. Here, select the `Installer` option. Your browser may flag the installer as malware, but it is a **false positive**. -You can use the ModMii wizard to softmod any Wii.
Even if the Wii has been softmodded in the past, you can have ModMii overwrite existing softmods by telling ModMii that this is the first time you're modding your Wii (even though it's not). + ![](/images/modmii/modmii-download.png) -You can also use this wizard to set up a USB loader at the same time, instead of having to use the USB Loader setup wizard later on. +2. Open the `ModMiiInstaller.exe` file and go through the setup process. + + ![](/images/modmii/modmii-install.png) + +### Using the ModMii Wizard + +The ModMii Wizard is tool that can softmod your Wii from start to finish, downloading all necessary files and then generating a guide that you can use to implement the softmod. This tool can also be used to overwrite existing softmods on a previously softmodded Wii. + +1. Open ModMii Skin or ModMii Classic and select the ModMii Wizard option at the top of the list. + + ![](/images/modmii/modmii-wizard-1.png) + +1. Answer `Yes` to the first question, unless you have a very specific idea of what you would like to do or update to your Wii. + + ![](/images/modmii/modmii-wizard-2.png) + +1. Select your current System Menu version, followed by the System Menu Region, following the instructions in the program. If you are still confused, check the bottom option on each screen for an instructional video. + + ![](/images/modmii/modmii-wizard-3.png) + +1. Select the exploit you would like to use to mod your Wii. The exploits below are outlined throughout this website, but in most cases we would reccommend using Wilbrand if you have an SD card on hand. + + ![](/images/modmii/modmii-wizard-4.png) + +1. If you selected the Wilbrand option in the previous step, enter your Wii's MAC address. If you don't know how to check your Wii's MAC address, enter `Help` in the text box for an instructional video. + + ![](/images/modmii/modmii-wizard-5.png) + +1. Select your desired System Menu version from the list. + + ![](/images/modmii/modmii-wizard-6.png) + +1. Select whether or not you would like to install any of the listed channels - this is an optional step. + + ![](/images/modmii/modmii-wizard-7.png) + +1. Select whether or not you would like to install a custom Wii theme, with the choice of three theme effects. Each effect deals with how much the outline when hovering over a Wii Channel spins. + + ![](/images/modmii/modmii-wizard-8.png) + +1. Select whether or not you would like to set up a USB Loader for use with your Wii. + + ![](/images/modmii/modmii-wizard-9.png) + +1. If you selected `Yes` in the USB Loader menu, select which USB Loader you would like to use. If you choose an individual one, we reccomend either USB Loader GX or WiiFlow as both are covered on this website, or you may optionally download each option. + + ![](/images/modmii/modmii-wizard-10.png) + +1. If you selected `Yes` in the USB Loader menu, select where you would like to save your USB Loader files at. + + ![](/images/modmii/modmii-wizard-11.png) + +1. Verify where you would like to save files for your SD Card and/or USB Drive. + + ![](/images/modmii/modmii-wizard-12.png) + +1. Confirm your settings are correct, and then press `Finish`. Once you press the button, ModMii will begin to process and download files in the background, and will automatically generate and open a guide for you. From here, you should follow the guide generated by ModMii. + + ![](/images/modmii/modmii-wizard-13.png) ### SysCheck Updater Wizard -[SysCheck](syscheck) is a homebrew application that analyzes the modifications on a Wii.
You can give a SysCheck report to ModMii to help identify & update outdated mods. +The SysCheck Updater Wizard is a tool that utilizes the homebrew app [SysCheck](syscheck) to analyze any modifications on your Wii, especially IOS and cIOS. It accepts a `syscheck.csv` file generated by the app, and then provides any nessecary updates as needed. -You can have ModMii analyze a SysCheck by dragging the `syscheck.csv` file onto ModMii.exe. Or, you can launch the SysCheck Updater Wizard (`SU`) from ModMii's main menu and manually browse for the file. +1. Open ModMii Classic and enter in `SU` to open the SysCheck Updater Wizard. + + ![](/images/modmii/syscheck-wizard-1.png) + +1. Follow the instructions in the window if you don't already have a SysCheck log, and then drag and drop the `syscheck.csv` file from Windows Explorer into the window. This will paste the location of the file, from which you can press Enter. + + ![](/images/modmii/syscheck-wizard-2.png) + +1. The program will analyze your SysCheck file, and will provide options for you depending on what it sees. In this example instance, the mods on the Wii were up-to-date, but there were several unnecessary IOSes that could be stubbed. If you want to make these changes to your Wii, simply enter in `Y` and press Enter. From here, you should follow the guide generated by ModMii. + + ![](/images/modmii/syscheck-wizard-3.png) ### HackMii Solutions Wizard -The HackMii Solutions wizard can help fix symptoms like these: +The HackMii Solutions Wizard is a tool that fixes problems that may arise from things like Darkcorp/CIOSSPAGHETTI by installing clean IOSes. Examples of problems that may arise because of this are listed below: + HackMii Installer not prompting "Press (1) to continue" -+ HackMii Installer says "no vulnerable IOS found!" -+ Homebrew Channel is displaying upside-down ++ HackMii Installer saying "no vulnerable IOS found!" ++ Homebrew Channel displaying upside-down -It will install clean IOSs to allow for the HackMii Installer to operate properly. +1. Open ModMii Skin or ModMii Classic and select the HackMii Solutions option. -### Abstinence Wizard + ![](/images/modmii/hackmii-wizard-1.png) -This wizard requires an SD card. -{: .notice--warning} +1. Select your current System Menu version, followed by the System Menu Region, following the instructions in the program. If you are still confused, check the bottom option on each screen for an instructional video. -This wizard allows you to enjoy many of the benefits of a softmodded Wii without installing any permanent modifications to your Wii. It will allow you to launch an exploit to boot an from emulated NAND from external storage, instead of your Wii's internal NAND. + ![](/images/modmii/hackmii-wizard-2.png) -On a related note, you can also make a NAND backup without modifying your Wii at all. Find ModMii's "Support" folder and launch `Casper2BootMii.bat`.
It will save some files to a folder named `COPY_TO_SD`, copy the files inside it to your SD card and [launch an exploit](get-started). +1. Select the exploit you would like to use to mod your Wii. The exploits below are outlined throughout this website, but in most cases we would reccommend using Wilbrand if you have an SD card on hand. -When following one of the exploit guides above, please avoid replacing the `boot.elf` file. -{: .notice--warning} + ![](/images/modmii/hackmii-wizard-3.png) +1. If you selected the Wilbrand option in the previous step, enter your Wii's MAC address. If you don't know how to check your Wii's MAC address, enter `Help` in the text box for an instructional video. -
-Click here for a full list of available tools. + ![](/images/modmii/hackmii-wizard-4.png) -| Tool | Description | -| --------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| W = ModMii Wizard <-- Start Here to Mod Your Wii! | This option can be used to mod your Wii for the first time or re-mod a Wii that has been previously modded. | -| SU = SysCheck Updater Wizard (update only your outdated softmods) | This option is useful for people who have old modifications installed to their wii such as DarkCorp/Ciosspaghetti that can potetially cause problems for the latest homebrew custom firmware. | -| U = USB-Loader Setup Wizard | This option will help you properly set up your USB loader to be able to load your disk backups from an SD or USB hard drive. | -| H = HackMii Solutions Wizard (Upside-Down HBC\No Vulnerable IOS Fix) | This option is useful for people who are having trouble getting the HackMii Installer to work, or if they just simply have an upside down homebrew channel, or if DarkCorp/Ciosspaghetti was installed and there was no homebrew channel. | -| AW = Abstinence Wizard (Non-permanent Wii Hacks) | This option is useful for people who dont want to make any permanent modifications to their Wii but still want to have some of the benefits that homebrew can offer. | -| RC = Region Change Wizard | This option can be used to change the region of your Wii without bricking it (this is the best region changer tutorial available on the internet!). | -| S = SNEEK Installation, EmuNAND Builder\Modifier, Game Bulk Extractor | This option will help you properly set up an EmuNAND (aka neek2o) onto your SD or USB. benefits for emunand include extra storage space for save games or channels. and the benefit of not making any permanent modifications to your Wii. | -| F = open a File or Folder with ModMii for many more functions! | This option is an advanced tool especially helpful for developers. | -| 1 = Download Page 1 (System Menus, IOSs, MIOSs, Channels, etc.) | This option opens the first download page that includes most of the key parts for the system menu (downloaded from NUS). | -| 2 = Download Page 2 (Apps, USB-Loader Files, CheatCodes, etc.) | This option opens the second download page that includes exploits and useful apps for your Wii including some PC programs. | -| 3 = Download Page 3 (System Menu Themes) | This option opens the third download page that includes some system menu themes and items required to install system menu themes (base apps are downloaded from NUS). | -| 4 = Download Page 4 (cIOSs and cMIOSs) | This option opens the fourth download page that includes cIOSes and cMIOSes for use in USB loaders. It is recommended to just install the recommended cioses unless you plan to do some testing. | -| A = Advanced Downloads and Forwarder DOL\ISO Builder | This option is an advanced tool used to better customize downloads or allow you to build a dol executable useful for fowarders (channels on the system menu to access Wii applications). | -| L = Load Download Queue | This option will download all of the required titles need for the Wii system menu (titles are downloaded from NUS) | -| C = Build Config Files for Bootmii, Wad Manager or Multi-Mod Manager | This option will help you build configuration files required for certain applications. | -| FC = File Cleanup & App Updater: Update Apps and\or remove un-needed files | This option is useful for people who want to clean out their SD or USB of apps deemed outdated, useless, or otherwise depreciated. | -| M = ModMii Skin Mode: use your mouse instead of your keyboard! | This option will launch ModMii skin mode. Some advanced options may not be available in this view. | +1. Verify where you would like to save files for your SD Card and/or USB Drive. -
+ ![](/images/modmii/modmii-wizard-12.png) -
-Click here for a full list of available options. +1. Confirm your settings are correct, and then press `Finish`. Once you press the button, ModMii will begin to process and download files in the background, and will automatically generate and open a guide for you. From here, you should follow the guide generated by ModMii. After finishing this guide, it is recommended that you use the [SysCheck Updater Wizard](#syscheck-updater-wizard) to undo any other problematic modifications on your Wii. -| Option | Description | -| ---------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| D = Change Drive letter: | Changes where your SD files are saved to. | -| DU = Change Drive letter for USB: | Changes where your USB files are saved to. | -| d2x = change d2x cIOS version built: | Changes the cios version ModMii downloads. | -| H = Hermes cIOSs (202 & 222-224) will also be recommended | Enables Hermes IOS to be recommended and downloaded in the syscheck updater (will be stubbed if disabled). | -| CM = cMIOS included in recommended cIOSs | Enables cMIOS to be recommended and downloaded in the syscheck updater (will install stock MIOS if disabled). | -| E = Extra Brick Protection in ModMii Wizard Guides | Enables ModMiis Extra Brick Protection IOSes to be recommended and used in the syscheck updater tool. | -| U = Update IOSs. Wizard/SysCheck-Updater to update Active IOSs | Updates Existing IOSes to the latest version available on NUS. | -| AU = Auto-Updating downloads will skip update check if cached | Will skip downloading the files if already in the queue. | -| FWD = Install USB-Loader Forwarder in ModMii Wizard Guides | Will include the USB loader forwarder wad file in the USB loader wizard guides. | -| PC = PC Programs Save Location | Changes the save location for the downloadable PC programs. | -| RS = Root Save: Save IOSs\MIOSs to Root instead of WAD Folder | Saves IOSs\MIOSs to Root instead of WAD Folder. | -| 1 = Do not Keep 00000001 or NUS Folders for IOSs\MIOSs\SMs etc | Deletes the folder used for compiling the wad file and just gives you the wad file. | -| n2o = neek2o - build mod of s\uneek instead of original | Uses a better modified version of neek2o in the EmuNAND builder. | -| SSD = SNEEK and SNEEK+DI SD Access | Allows for SNEEK and SNEEK+DI access on the SD card. | -| F = Font.bin Colour for SNEEK/UNEEK | Changes the font color for neek2o. | -| SV = SNEEK Verbose Output | Displays extra information regarding EmuNAND. | -| V = Verbose for ModMii Skin & nandBinCheck | Displays another window with extra information regarding a nand check. | -| SO = Play sound at Finish | Plays a fun jingle after a successful download. | -| A = Auto-Update ModMii at program start | Will automatically check for updates when ModMii is launched. | -| N = Check for New versions of ModMii right now | Will check online for a ModMii update. | - -
+ ![](/images/modmii/hackmii-wizard-5.png) [Cliquez ici pour revenir à l'index du site.](site-navigation) {: .notice--info} diff --git a/_pages/fr_FR/nintendont.md b/_pages/fr_FR/nintendont.md new file mode 100644 index 000000000..d7eef1b3f --- /dev/null +++ b/_pages/fr_FR/nintendont.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="410.html" %} diff --git a/_pages/fr_FR/recommended-homebrew.md b/_pages/fr_FR/recommended-homebrew.md index b2bada15a..2d3869c77 100644 --- a/_pages/fr_FR/recommended-homebrew.md +++ b/_pages/fr_FR/recommended-homebrew.md @@ -16,7 +16,7 @@ Homebrew that has the ability to make permanant changes to your Wii are highligh + [**AnyRegion Changer ME**](https://oscwii.org/library/app/ARCME) - ModMii edition of AnyRegion Changer. While a powerful tool for changing region settings, it can also lead to severe bricks like [Korean Kii/Error 003](bricks#korean-kiierror-003-brick) so **only use this app if you know what you are doing**. + [**WiiXplorer-SS**](https://oscwii.org/library/app/wiixplorer-ss) - A modified and updated version of WiiXplorer. A file manager for the Wii, it allows you to view and customize files both on an SD card, a USB device, and the internal Wii memory. For this reason it is a very powerful but also dangerous tool - don't modify files on the system NAND unless you know what you are doing, as it can lead to various types of [bricks](bricks). + [**SaveGame Manager GX**](https://oscwii.org/library/app/SaveGame_Manager_GX) - A savegame/Mii extractor for the Wii. It supports GameCube memory cards (physical and virtual), emuNANDs, normal and protected saves, themes, and more. -+ [**MyMenuifyMod**](https://oscwii.org/library/app/mymenuifymod) - An application that allows you to theme the Wii Menu. While quite useful to make your Wii unique, it also has the ability to cause a [minor brick](bricks#theme-brick), so make sure to read our [theme guide](themes) for safe usage instructions. ++ [**csm-installer**](https://oscwii.org/library/app/csm-installer) - An application that allows you to theme the Wii Menu. While quite useful to make your Wii unique, it also has the ability to cause a [minor brick](bricks#theme-brick), so make sure to read our [theme guide](themes) for safe usage instructions. + [CleanRip](https://oscwii.org/library/app/CleanRip) - A tool to backup GameCube and Wii discs. Further information can be found in our [disc dumping guide](dump-games). + [**d2x cIOS installer**](https://oscwii.org/library/app/d2x-cios-installer) - A custom installer for Wii IOS, some of which is required for the functioning of certain software like USB loaders. You can see the guide [here](cios). + [FTPii](https://oscwii.org/library/app/ftpii) - An FTP server for your Wii, allowing you to transfer files across the network. diff --git a/_pages/fr_FR/riiconnect24.md b/_pages/fr_FR/riiconnect24.md index 514728da1..d1e91b7e8 100644 --- a/_pages/fr_FR/riiconnect24.md +++ b/_pages/fr_FR/riiconnect24.md @@ -1,138 +1,5 @@ --- -title: "RiiConnect24" +title: Redirecting... --- -{% include toc title="Table of Contents" %} - -If you need help with anything regarding this tutorial, please join [the RiiConnect24 Discord server](https://discord.gg/rc24) (recommended) or [e-mail us at support@riiconnect24.net](mailto:support@riiconnect24.net). -{: .notice--primary} - -[RiiConnect24](https://rc24.xyz/) allows you to use discontinued services from WiiConnect24, which include the News, Forecast, Everybody Votes, Nintendo and Check Mii Out Channel, along with Wii Mail. - -It's recommended to set your Wii to the current time before proceeding. Follow [this tutorial](rtc) in order to set it. -{: .notice--warning} - -DO NOT INSTALL RIICONNECT24 ON A WII MINI! It will not work and it will brick the system. -{: .notice--danger} - -### Prérequis - -Follow [this tutorial](riiconnect24-vwii) if you'd like to install RiiConnect24 on vWii (Wii Mode on Wii U). -{: .notice--primary} - -+ Une carte SD ou une clé USB -+ Une Wii avec une connexion Internet -+ A PC with an Internet connection -+ [RiiConnect24 Patcher (Windows, Mac and Linux)](https://github.com/riiconnect24/RiiConnect24-Patcher/releases) -+ [YAWM ModMii Edition](https://oscwii.org/library/app/yawmme) - -### Instructions - -#### Section I - Using RiiConnect24 Patcher - -1. Click the link above to go to the GitHub page where the patcher is. -1. Download `RiiConnect24Patcher.bat` if you are on Windows, and `RiiConnect24Patcher.sh` if you are on a Unix system -1. RiiConnect24 Patcher Main Screen - + On Windows run `RiiConnect24Patcher.bat`. - + On Unix systems, open Terminal and type `bash`, then drag `RiiConnect24Patcher.sh` into the terminal then press enter. It should look like this: `bash RiiConnect24Patcher.sh`. -1. Press 1 to choose "`Start`" and confirm your selection by pressing `ENTER`. - - ![](/images/riiconnect24/patcher/1.JPG) - -1. Select the device you're patching for. - - ![](/images/riiconnect24/patcher/2.JPG) - -1. For this guide, choose "`Install RiiConnect24 on your Wii`" - - ![](/images/riiconnect24/patcher/3.JPG) - -1. Choose "`Express (Recommended)`". It will give you everything you need. - - ![](/images/riiconnect24/patcher/4.JPG) - -1. Select your region. - - ![](/images/riiconnect24/patcher/5.JPG) - -1. While you're at it, RiiConnect24 Patcher can additionally download some other optional channels that do not use RiiConnect24. `[X]` represents the options that selected. Just press 5 and `ENTER` if you're not interested. - - ![](/images/riiconnect24/patcher/6.JPG) - -1. Connect your SD Card or USB Drive to your computer and select "`1`". - - ![](/images/riiconnect24/patcher/7.JPG) - -1. If your device was detected successfully, select "`1`". If not, make sure there's a folder called `apps` on your SD Card or USB Drive and try again. - - ![](/images/riiconnect24/patcher/8.JPG) - -1. The patcher will download apps now - please be patient. - - ![](/images/riiconnect24/patcher/9.JPG) - -1. Once you reach the screen that says `Patching done`, you can exit the patcher. All the files should already be on your SD Card. - - ![](/images/riiconnect24/patcher/10.JPG) - - ![](/images/riiconnect24/patcher/11.PNG) - -1. If it did not copy everything automatically to your SD Card or USB Device, copy the `WAD` and `apps` folder next to `RiiConnect24Patcher.bat` to your SD Card or USB Device. - -#### Section II - Installing WADs - -If you are using Dolphin, you have finished the guide. Install the WADs by going to `Tools -> Install WAD` within Dolphin. -{: .notice--primary} - -You will now install the patched IOS and Channel WADs that are required to use RiiConnect24. - -1. Extract the YAWM ModMii Edition `.zip` file, and copy the `apps` folder to your SD card or USB drive. -1. Put your SD card or USB drive in your Wii. -1. Launch the Homebrew Channel on your Wii. -1. Launch YAWM ModMii Edition. -1. Select the device you have put the RiiConnect24 files on. -1. Highlight all the WADs in the `wad` folder by pressing the + Button to select them. When all of the WADs are selected, press A twice to install the WADs. -1. After they are successfully installed, press the HOME Button to exit back to the Homebrew Channel. - -#### Section III - Patching nwc24msg.cfg - -You will now patch your `nwc24msg.cfg` file which is required in order to use Wii Mail. - -1. Launch RiiConnect24 Mail Patcher. -1. It should only take a few seconds to patch your nwc24msg.cfg. When it's done, press the HOME Button to exit. - -#### Section IV - Connecting - -The old DNS server `164.132.44.106` has been deprecated as of `June 1st, 2023` and is no longer available to use. -{: .notice--warning} - -If you're getting errors such as `WiiConnect24 and Wii Shop Channel currently not being offered in your country`, go to Wii Settings -> Last Page -> Country and change it to United Kingdom. You will get this error when using a country that we don't support. Contact us at [support@riiconnect24.net](mailto:support@riiconnect24.net) if you need more help. -{: .notice--warning} - -If you get error 107245, then you have not installed the patched IOS.
-{: .notice--warning} - -You will now set your DNS to our servers. This is optional but it's recommended, because it enhances the use of RiiConnect24 and Wiimmfi by making some other features available. - -1. Go to `Wii Options`. -1. Allez sur `Paramètres Wii`. -1. Go to `Page 2`, then click on `Internet`. -1. Go to `Connection Settings`. -1. Select your current connection. -1. Go to `Change Settings`. -1. Go to `Auto-Obtain DNS` (Not IP Address), then select `No`, then `Advanced Settings`. -1. Type in `167.86.108.126` as the primary DNS. -1. Type in `1.1.1.1` as the secondary DNS. -1. Select `Confirm`, then select `Save`. -1. Select `OK` to perform a connection test. -1. If the connection test was successful, select `No` to skip the Wii System Update. -1. Go to `WiiConnect24`, then `WiiConnect24` again, and make sure it is enabled. -1. Back on the WiiConnect24 menu, go to `Standby Connection` and make sure it is enabled. -1. At `Slot Illumination`, we recommend you set the disc light to `Dim` or `Bright`, but this is optional. -1. Finally, go to the `Internet` section, then `User Agreements` or `Agreement/Contact`, then `Yes`. Please read through this. - -[Return to WiiConnect24](wiiconnect24) -{: .notice--info} - -[Cliquez ici pour revenir à l'index du site.](site-navigation) -{: .notice--info} +{% include redirect.html redirect_to="https\://www\.wiilink24.com/guide/install/" %} diff --git a/_pages/fr_FR/riitag.md b/_pages/fr_FR/riitag.md new file mode 100644 index 000000000..e6b6bc322 --- /dev/null +++ b/_pages/fr_FR/riitag.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="https\://wiki.hacks.guide/wiki/RiiTag" %} diff --git a/_pages/fr_FR/riivolution.md b/_pages/fr_FR/riivolution.md new file mode 100644 index 000000000..d7eef1b3f --- /dev/null +++ b/_pages/fr_FR/riivolution.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="410.html" %} diff --git a/_pages/fr_FR/themes.md b/_pages/fr_FR/themes.md index 322ab9c45..f8d483bc1 100644 --- a/_pages/fr_FR/themes.md +++ b/_pages/fr_FR/themes.md @@ -4,13 +4,16 @@ title: "Installing Wii Menu Themes" {% include toc title="Table of Contents" %} -This guide is intended for regular Wiis only. For installing themes on vWii (Wii U), follow [this page](themes-vwii). Additionally, forwarders are covered. +This guide is intended to be the last you will ever need when it comes to theming on the Wii, not only providing instructions for the Wii Menu through csm-installer, but also with themes on WiiFlow Lite, USB Loader GX, and The Homebrew Channel. Additionally, forwarders are covered. ### Section I - Finding a Theme DO NOT CONTINUE WITH THIS GUIDE UNLESS YOU HAVE ADEQUATE BRICK PROTECTION, SPECIFICALLY [BOOTMII](bootmii) AND [PRIILOADER](priiloader)! {: .notice--danger} +This tutorial does not work on the Wii mini. Do not attempt this tutorial on the Wii mini or it will cause a [brick](bricks#theme-brick). +{: .notice--warning} + csm-installer has built in safety features to prevent from installing bad or corrupt Wii Menu themes, so please opt to use it instead of other theme installation homebrew. {: .notice--warning} diff --git a/_pages/fr_FR/usbloadergx.md b/_pages/fr_FR/usbloadergx.md new file mode 100644 index 000000000..00a63864a --- /dev/null +++ b/_pages/fr_FR/usbloadergx.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-loaders.html" %} diff --git a/_pages/fr_FR/wiibackupmanager.md b/_pages/fr_FR/wiibackupmanager.md new file mode 100644 index 000000000..063d7bba0 --- /dev/null +++ b/_pages/fr_FR/wiibackupmanager.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-backups.html" %} diff --git a/_pages/fr_FR/wiiconnect24.md b/_pages/fr_FR/wiiconnect24.md index d46353c4d..2f3ad937f 100644 --- a/_pages/fr_FR/wiiconnect24.md +++ b/_pages/fr_FR/wiiconnect24.md @@ -3,44 +3,21 @@ title: "WiiConnect24" --- {% include toc title="Table of Contents" %} + -Ce guide fournit différents moyens de retrouver les fonctionnalités de WiiConnect24 sur votre console. Bien que pas nécessaire, c'est une fonctionnalité "agréable à avoir" qui a été utilisée à l'origine pour la connectivité en ligne de certaines applications sur la console. Ces applications incluent la Chaîne météo/infos, la Chaîne Nintendo, la Chaîne concours Mii, certaines chaînes exclusives au Japon et plus encore. N'oubliez pas que les fonctionnalités dont vous profiterez dépendent entièrement du ou des services que vous utilisez. +[WiiConnect24](https://wikipedia.org/wiki/WiiConnect24) was a service that allowed users with Internet connected Wiis to view the weather & local news, send messages to friends, participate in Mii contest, and more. WiiConnect24 was discontinued on June 27th, 2013. -### Aperçu des services +## RiiConnect24 + WiiLink +[RiiConnect24](https://rc24.xyz) is a revival service for WiiConnect24 that started in 2015, which allows you to regain its functionality on your console. As of late 2023, the service is now owned by WiiLink, a project that started in 2020 that was previously aiming at the Japanese-exclusive channels. -#### Note sur la compatibilité des services : -Les deux services ci-dessous sont compatibles l'un avec l'autre et peuvent être installés sur la même console. Ceci étant dit, il convient de noter que lors de l'installation d'une chaîne sur l'autre (la Chaîne météo de WiiLink au lieu de la Chaîne météo de RiiConnect24 par exemple), la chaîne que vous installez remplacera l'ancienne. - - -#### Service Support Status -✅ - Supporté
⚠️ - En développement
⛔ - Pas de support - -| Nom du service | WiiLink | RiiConnect24 | -| ----------------------- | ------- | ------------ | -| Chaîne météo | ✅ | ✅ | -| Chaîne infos | ⚠️ | ✅ | -| Bureau Wii | ✅ | ✅ | -| Chaîne votes | ✅ | ✅ | -| Chaîne Nintendo | ✅ | ✅ | -| Chaîne concours Mii | ⚠️ | ✅ | -| Wii Room | ✅ | ⛔ | -| Food Channel | ✅ | ⛔ | -| Chaîne impression photo | ✅ | ⛔ | -| Chaîne TV Kirby | ✅ | ⛔ | -| TV Guide Channel | ⚠️ | ⛔ | - -#### WiiLink -A newer WC24/Japanese channel revival service that started in 2020, but is rapidly regaining functionality in many different channels. - -Service support status can be found [here](https://www.wiilink24.com/status).
Their guide can be found [here](https://www.wiilink24.com/guide). - -#### RiiConnect24 -Le service de relance WC24 le plus ancien, qui ne prend actuellement en charge que les chaînes WC24 mondiales ainsi que le service de messagerie. - -Service support status can be found [here](https://rc24.xyz/stats/).
RiiConnect24 currently does not have a self-hosted guide, however you can find ours [here](riiconnect24). +There is a patcher that ships both of these services together as one - meaning you get all of the international and Japanese-only channels in one package. The guide on how to install these services can be found [on WiiLink's website.](https://www.wiilink24.com/guide/) + ### Updating RTC Clock -If you choose to install either of these services on your Wii, it is advised to synchronize its external clock in order to prevent various issues (such as inability to use said services) that may arise otherwise. The steps to do so can be found below: #### What you need + Une connexion Internet fonctionnelle sur votre Wii diff --git a/_pages/fr_FR/wiiflow.md b/_pages/fr_FR/wiiflow.md new file mode 100644 index 000000000..00a63864a --- /dev/null +++ b/_pages/fr_FR/wiiflow.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-loaders.html" %} diff --git a/_pages/it_IT/410.md b/_pages/it_IT/410.md new file mode 100644 index 000000000..77d7fab42 --- /dev/null +++ b/_pages/it_IT/410.md @@ -0,0 +1,12 @@ +--- +title: La pagina non esiste più +sitemap: false +--- + +La pagina che stai cercando di visualizzare esisteva, ma da allora è stata rimossa. Che le istruzioni che stai seguendo siano obsolete? (Se ti sei ritrovato qui da un link in questa guida, [faccelo sapere](https://github.com/hacks-guide/Guide_Wii/issues)) + +[Clicca qui per tornare all'indice del sito.](site-navigation) +{: .notice--info} + +![](https://http.cat/410) +{: .notice--info} diff --git a/_pages/it_IT/bootmii.md b/_pages/it_IT/bootmii.md index 1cd39731d..0eaee0735 100644 --- a/_pages/it_IT/bootmii.md +++ b/_pages/it_IT/bootmii.md @@ -6,21 +6,9 @@ title: "Backup BootMii" BootMii permette di eseguire il backup e il ripristino della memoria NAND del tuo Wii. Questa pagina ti guiderà su come eseguire il backup della NAND del tuo Wii su una scheda SD, che potrai usare come vuoi. -I Wii Family Edition (senza le porte GameCube) NON POSSONO ripristinare backup della NAND. Questo è dovuto alla mancanza di porte GameCube che servono su Wii non-boot2 per inserire il codice di conferma per il ripristino. In ogni caso, è sempre consigliato farne uno su queste console. -{: .notice--danger} - Hai bisogno di una **scheda SD** per usare BootMii, ma specialmente per creare backup della NAND. Se non hai una scheda SD a portata di mano in questo momento, puoi saltare questa pagina, ma è FORTEMENTE CONSIGLIATO di tornare su questa pagina dopo per eseguire il backup della tua NAND. {: .notice--warning} -Navigare in BootMii è impossibile usando un Wii Remote. Devi usare i tasti POWER e RESET sulla tua console, o un controller GameCube inserito nella porta 1. Per navigare tra le opzioni, premi power sul tuo Wii (o i tasti sinistra/destra sul +Control Pad del controller GameCube). Per selezionare un'opzione, premi RESET sul tuo Wii o A sul tuo controller GameCube. TI SERVIRÀ un controller GameCube per ripristinare un backup della NAND in futuro se BootMii è installato come IOS. -{: .notice--info} - -Se il pulsante `Launch BootMii` non appare nell'Homebrew Channel, [rilancia l'HackMii Installer](hackmii) e installa BootMii. -{: .notice--warning} - -Se lo schermo rimane nero e l'unità del disco blu lampeggia mentre provi ad avviare BootMii, ti mandano i file di BootMii sulla scheda SD. Scarica [questo file zip](/assets/files/bootmii_sd_files.zip) ed estrailo nella root della tua scheda SD, poi riprova. -{: .notice--warning} - ### Requisiti * Una scheda SD con un spazio disponibile minimo di 512MB (1GB o più sono consigliati) @@ -36,10 +24,19 @@ Se hai BootMii installato come boot2, dovrai riavviare la console per eseguierlo ![](/images/bootmii/BootMii_HBC.png) + Se il pulsante `Launch BootMii` non appare nell'Homebrew Channel, [rilancia l'HackMii Installer](hackmii) e installa BootMii. + {: .notice--warning} + + Se lo schermo rimane nero e l'unità del disco blu lampeggia mentre provi ad avviare BootMii, ti mandano i file di BootMii sulla scheda SD. Scarica [questo file zip](/assets/files/bootmii_sd_files.zip) ed estrailo nella root della tua scheda SD, poi riprova. + {: .notice--warning} + 1. Dovresti vedere un'immagine a schermo simile a questa qui sotto: ![](/images/bootmii/BootMii_Main.png) + Navigare in BootMii è impossibile usando un Wii Remote. Devi usare i tasti POWER e RESET sulla tua console, o un controller GameCube inserito nella porta 1. Per navigare tra le opzioni, premi POWER. Per selezionare un'opzione, premi RESET. + {: .notice--info} + 1. Seleziona il pulsante delle opzioni (con l'icona delle rotelle). ![](/images/bootmii/BootMii_Gears.png) @@ -65,7 +62,7 @@ Se hai BootMii installato come boot2, dovrai riavviare la console per eseguierlo
Nota: **ripristinare un backup della NAND è di solito l'ultima spiaggia**. Ci sono spesso dei modi migliori di ubrickare la tua console. Fai del tuo meglio per [identificare la tua condizione di brick](bricks) e annullare l'azione che lo ha causato in primo luogo. -Per ripristinare un backup della NAND dalla tua scheda SD, puoi seguire le istruzioni per [RestoreMii](bootmiirecover) (solo Wii Originali). +Per ripristinare un backup della NAND dalla tua scheda SD, puoi seguire le istruzioni per [RestoreMii](bootmiirecover). **I Wii Family Edition (Wii senza le porte GameCube) NON POSSONO ripristinare backup della NAND.**
Come detto in precedenza, se hai BootMii installato in boot2, si avvierà ogni volta che accenderai la console. Se vuoi modificare questa feature, puoi usare l'app [BootMii Config Editor](https://oscwii.org/library/app/BootMiiConfigurationEditor). Altrimenti, puoi editare il file `sd:/bootmii/bootmii.ini` manualmente. diff --git a/_pages/it_IT/bricks.md b/_pages/it_IT/bricks.md index e45fca077..e4677910f 100644 --- a/_pages/it_IT/bricks.md +++ b/_pages/it_IT/bricks.md @@ -75,7 +75,7 @@ Un semibrick si verifica quando il Menu Wii o un tema personalizzato di una regi #### Soluzioni Verifica in AnyRegion Changer che la regione della tua console sia la stessa del Menu Wii installato. -If this was caused by a theme you installed, use csm-installer to reinstall the original theme. +Se questo brick è causato da un tema che hai installato, usa csm-installer per reinstallare il tema originale. Se questo era causato da un WAD del menu Wii che avevi installato, usa [NUS Downloader](https://wiibrew.org/wiki/NUSD) per riottenere il Menu Wii originale. @@ -111,7 +111,7 @@ Prova ad accendere il Wii - viene mostrato l'avviso di salute e sicurezza, quand Un brick del tema si verifica quando un tema malformato viene installato. #### Soluzioni -Per risolvere questo problema, apri HBC tramite Priiloader o BootMii su boot2 e avvia MyMenuifyMod per installare un tema predefinito come quello del Menu Wii. Alternativamente, entra in [YAWM ModMii Edition](yawmme) e installa il WAD del menu Wii predefinito CORRETTO per la tua regione e versione. +Per risolvere questo problema, apri HBC tramite Priiloader o BootMii su boot2 e avvia csm-installer per installare un tema predefinito come quello del Menu Wii. Alternativamente, entra in [YAWM ModMii Edition](yawmme) e installa il WAD del menu Wii predefinito CORRETTO per la tua regione e versione. ## Brick mail diff --git a/_pages/it_IT/cios.md b/_pages/it_IT/cios.md index f6f502677..2b682a26f 100644 --- a/_pages/it_IT/cios.md +++ b/_pages/it_IT/cios.md @@ -54,7 +54,7 @@ I file WAD dovrebbe essere sulla scheda SD in questo modo: ![](/images/cios/d2x_ 1. Accendi la console. 1. Avvia l'Homebrew Channel. 1. Avvia d2x cIOS Installer dalla lista degli homebrew. -1. Set everything to match the following: +1. Imposta le opzioni in modo che corrispondano a quanto segue: ``` Select cIOS @@ -65,23 +65,29 @@ I file WAD dovrebbe essere sulla scheda SD in questo modo: ![](/images/cios/d2x_ ![](/images/cios/d2x_v11_248.png) -1. Press `A`. This will bring you to the slot map: + L'avviso "`(c)IOS detected in slot ### will be overwriitten`" può essere ignorato. + {: .notice--info} + + Se stai vedendo "`Slot ### already used in batch settings`" oppure "`cIOS already added in batch with revision ##### and slot ###`", premi `-` per disabilitare la modalità batch.
(Se stai cercando di uscire dall'installer, il pulsante è B, non Home.) + {: .notice--info} + +1. Premi `A`. Questo ti porterà alla mappa degli slot: ![](/images/cios/d2x_summary.png) -1. Press `A` again. +1. Premi `A` nuovamente. ![](/images/cios/d2x_installation.png) -1. After the installation has finished, you will be brought back to the slot map. Ensure that the slot that was just installed is highlighted green. +1. Appena terminata l'installazione, tornerai alla mappa degli slot. Assicurati che lo slot appena installato sia evidenziato in verde. ![](/images/cios/d2x_log.png) - If the slot is highlighted red, try install the cIOS again.
If you are getting an error before/during the downloading stages, press B to exit and continue from [Section I](#section-i---downloading). + Se lo slot è evidenziato in rosso, ritenta l'installazione del cIOS.
Se stai riscontrando un errore prima/durante le fasi di download, premi B per uscire e continua dalla [Sezione I](#section-i---downloading). {: .notice--info} -1. Press `A`. This will return you to the configuration screen. -1. Repeat the previous 5 steps with the following configurations: +1. Premi `A`. Questo ti riporterà alla schermata di configurazione. +1. Ripeti i 5 passaggi precedenti con le seguenti configurazioni: + Installazione del cIOS 249 @@ -116,7 +122,7 @@ I file WAD dovrebbe essere sulla scheda SD in questo modo: ![](/images/cios/d2x_ ![](/images/cios/d2x_v11_251.png) -1. Once you have finished with all 4 cIOSes, press B to return to the Homebrew Channel. +1. Una volta finito con tutti i 4 cIOS, premi B per tornare all'Homebrew Channel. Continue to [Open Shop Channel Installation](osc)
Now that your Wii has adequate brick protection, you can install the Open Shop Channel, a trusted repository for homebrew that can be accessed both on and off the Wii. {: .notice--info} diff --git a/_pages/it_IT/dosanddonts.md b/_pages/it_IT/dosanddonts.md new file mode 100644 index 000000000..499b9c5c6 --- /dev/null +++ b/_pages/it_IT/dosanddonts.md @@ -0,0 +1,5 @@ +--- +title: Reindirizzamento... +--- + +{% include redirect.html redirect_to="faq.html" %} diff --git a/_pages/it_IT/dump-games.md b/_pages/it_IT/dump-games.md index d5f57cce2..861abc870 100644 --- a/_pages/it_IT/dump-games.md +++ b/_pages/it_IT/dump-games.md @@ -4,7 +4,7 @@ title: "Dump di Giochi Wii/GameCube" {% include toc title="Table of Contents" %} -This guide covers dumping GameCube or Wii game discs to a local SD card or USB drive on your Wii. +Questa guida tratta il dumping dei dischi di gioco GameCube o Wii su una scheda SD locale o unità USB sul tuo Wii. ### Dump di un Disco su SD/USB (CleanRip) @@ -22,7 +22,7 @@ This guide covers dumping GameCube or Wii game discs to a local SD card or USB d 1. Accendi la console. 1. Avvia l'Homebrew Channel. 1. Avvia CleanRip dalla lista degli homebrew. -1. When prompted, select `Yes` to calculate disc checksums. +1. Quando richiesto, seleziona `Yes` per calcolare i checksum del disco. ![](/images/homebrew/CleanRip/checksum.png) @@ -41,18 +41,18 @@ This guide covers dumping GameCube or Wii game discs to a local SD card or USB d 1. Quando richiesto, seleziona `Yes` per scaricare i file DAT di redump.org. + Questo è richiesto per assicurarsi che i dump siano puliti/accurati. - Potresti ottenere un errore se lo fai. If so, restart your Wii and try again - but if you continue to get exception errors, dump the disc and verify the checksum in Dolphin instead if needed. + Potresti ottenere un errore se lo fai. In tal caso, riavvia il Wii e riprova - ma se gli errori di errore di eccezzione persistono, effettua il dump del disco e verifica il checksum su Dolphin se necessario. {: .notice--warning} ![](/images/homebrew/CleanRip/redump.png) -1. Insert the game disc you would like to dump, and press A to continue. +1. Inserisci il disco di gioco da cui effettuare il dump e premi A per continuare. ![](/images/homebrew/CleanRip/insertdisc.png) -### Dumping a Wii Disc +### Dump di un Disco Wii -As of v2.1.2 of CleanRip, there is an option to auto-detect whether or not the disc you have is dual layer. If you are on an earlier version, or just want to verify that the correct option is being selected, you can check [this list](https://wiki.dolphin-emu.org/index.php?title=Category:Dual_Layer_Disc_games) to see if your game is a dual layer disc. +A partire dalla v2.1.2 di CleanRip, c'è un'opzione che rileva automaticamente se il disco è a doppio strato o meno. Se si è su una versione precedente, o semplicemente desider verificare che l'opzione selezionata sia corretta, puoi controllare [questa lista](https://wiki.dolphin-emu.org/index.php?title=Category:Dual_Layer_Disc_games) per vedere se il tuo gioco è un disco a doppio strato. {: .notice--info} If you get an unrecovered read error, ensure that the disc you are attempting to dump is clean and can be properly read by the console. Even though you may be able to play the game disc normally, you may still get this error. If the error persists, try to dump another disc and see if the same error happens. @@ -67,29 +67,29 @@ If you get an unrecovered read error, ensure that the disc you are attempting to ![](/images/homebrew/CleanRip/wiisettings.png) 1. Premi A per iniziare il dump del disco. - + This process can take quite some time, since it will dump all 4.7 GB of the DVD (8.5 GB for dual layer discs). + + Questo processo può metterci un bel po' di tempo, siccome farà il dump di tutti i 4.7 GB del disco (8.5 GB per i dischi a doppio strato). ![](/images/homebrew/CleanRip/wiiprogress.png) -1. When the dump finishes, you should see a screen with the MD5 checksum of your disc, compared to the Redump DAT if you enabled it. +1. Una volta finito il dump, dovresti vedere una schermata con il checksum MD5 del disco, in confronto al DAT di Redump se è stato attivato. ![](/images/homebrew/CleanRip/wiidumpcomplete.png) Proceed to [Managing Wii Backups](wii-backups) to join the PART files that are output, and manage your dumped games. {: .notice--info} -### Dumping a GameCube Disc +### Dump di un Disco GameCube 1. When prompted, select if your disc is an unlicensed Datel disc. If unsure, select `No`. ![](/images/homebrew/CleanRip/dateldisc.png) 1. Premi A per iniziare il dump del disco. - + This process can take some time, since it will dump all 1.3 GB of the Mini DVD. + + Questo processo può richiedere un po' di tempo, siccome farà il dump di tutti i 1.3 GB del Mini DVD. ![](/images/homebrew/CleanRip/gcprogress.png) -1. When the dump finishes, you should see a screen with the MD5 checksum of your disc, compared to the Redump DAT if you enabled it. +1. Una volta finito il dump, dovresti vedere una schermata con il checksum MD5 del disco, in confronto al DAT di Redump se è stato attivato. ![](/images/homebrew/CleanRip/gcdumpcomplete.png) diff --git a/_pages/it_IT/hbc.md b/_pages/it_IT/hbc.md index ed48d49de..fc5772447 100644 --- a/_pages/it_IT/hbc.md +++ b/_pages/it_IT/hbc.md @@ -6,7 +6,7 @@ title: "Installazione dell'Homebrew Channel e di BootMii" L'Homebrew Channel è dove andrai ad avviare applicazioni homebrew. BootMii è un software che può effettuare il backup e ripristino della memoria NAND del tuo Wii, e se installato su boot2, aggiungere la protezione ai brick. -BootMii può essere installato in due modi: direttamente in una parte del bootloader del Wii chiamata boot2 e tramite un IOS. BootMii come boot2 è preferibile in quanto fornisce una protezione migliore ai brick, ma Wii con un boot2 vulnerabile stanno diventando più rari poiché sono stati prodotti prima del 2009. Nella maggior parte dei casi, l'installazione di BootMii come IOS dovrebbe andare bene purché venga anche installato [Priiloader](priiloader). +BootMii può essere installato in due modi: direttamente in una parte del bootloader del Wii chiamata boot2 e tramite un IOS. BootMii come boot2 è preferibile in quanto fornisce una protezione migliore ai brick, ma Wii con un boot1 vulnerabile stanno diventando più rari poiché sono stati prodotti prima del 2009. Nella maggior parte dei casi, l'installazione di BootMii come IOS dovrebbe andare bene purché venga anche installato [Priiloader](priiloader). {: .notice--info} Se non hai una scheda SD, non potrai né installare né utilizzare BootMii, indipendentemente da che sia installato come IOS o boot2. Puoi sempre [installarlo in seguito](hackmii). diff --git a/_pages/it_IT/modmii.md b/_pages/it_IT/modmii.md index 9d9524057..7eb6a4137 100644 --- a/_pages/it_IT/modmii.md +++ b/_pages/it_IT/modmii.md @@ -4,116 +4,190 @@ title: "ModMii" {% include toc title="Table of Contents" %} -Se hai bisogno di aiuto riguardo qualsiasi parte di questa guida, per favore entra nel [server Discord di ModMii](https://discord.gg/cMnBRACQwQ). -{: .notice--info} - Questo programma NON viene fornito con una garanzia, sei responsabile per ogni potenziale danno al tuo Wii. {: .notice--warning} Questo programma NON è destinato all'uso per il vWii o per il Wii mini. Qualsiasi utilizzo sul vWii o sul Wi mini non è stato testato. {: .notice--warning} -ModMii è un programma per Windows creato da XFlak che possiede vari strumenti utili per il modding, inclusi dei tutorial che potrebbe non essere attualmente disponibili su questo sito.
Puoi scegliere di lanciare ModMii skin, che ha un'interfaccia più user-friendly, oppure lanciare ModMii Classic, che usa un'interfaccia a linea di comando (Prompt dei Comandi/Terminale). +ModMii is an all-in-one Wii hacking tool for Windows created by XFlak that has various helpful tools for modding. It can accomplish the following: -Alcuni opzioni avanzate potrebbero non essere accessibili in ModMii Skin. Una lista di funzionalità disponibili in ModMii Classic può essere trovata in fondo a questa pagina. -{: .notice--info} ++ Hacking the console for the first time, or re-hacking it ++ Check for and update outdated softmods ++ Fix upside-down Homebrew Channel problems ++ Run homebrew without making any changes to your Wii's NAND ++ Download homebrew ++ And more! -### Requisiti +### ModMii Overview + +There are two different ways to use ModMii. There is ModMii Classic, which uses a command line interface, but has all of the features available to the program. ModMii Skin has a graphical user interface, on the other hand, but has less options available to the user. If you're looking to simply mod your Wii for the first time, ModMii Skin should suffice. Otherwise, we reccomend using ModMii Classic where possible.
The chart below will help you determine what can be done in either interface. + +| Tools | ModMii Classic | ModMii Skin | +| --------------------------- | -------------- | ----------- | +| Wizard di ModMii | ✅ | ✅ | +| Wizard di SysCheck Updater | ✅ | ⛔ | +| USB Loader Setup Wizard | ✅ | ✅ | +| Wizard di HackMii Solutions | ✅ | ✅ | +| Wizard di Astinenza | ✅ | ✅ | +| Region Change Wizard | ✅ | ✅ | +| SNEEK/EmuNAND Installation | ✅ | ✅ | +| Open File Function | ✅ | ⛔ | +| Load Download Queue | ✅ | ✅ | +| Download Page 1/2/3/4 | ✅ | ⛔ | +| Advanced Downloads | ✅ | ⛔ | +| Load Download Queue | ✅ | ⛔ | +| Build Config Files | ✅ | ⛔ | +| File Cleanup & App Updater | ✅ | ⛔ | + +
+Click here for a detailed explanation of each tool. + +| Strumento | Descrizione | +| -------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| W = Wizard di ModMii <-- Inizia qui per modificare il tuo Wii! | This option can be used to hack your Wii for the first time or re-hack a Wii that has been previously modded. | +| SU = Wizard di SysCheck Updater (aggiorna solo le modifiche obsolete) | This option checks for and updates old modifications installed to their wii such as DarkCorp/CIOSSPAGHETTI that can potentially cause problems for the latest homebrew custom firmware. | +| U = Wizard di Configuratione di USB-Loader | This option will properly set up your USB loader to be able to load your disk backups from an SD or USB hard drive. This option is not necessary if using the ModMii Wizard. | +| H = Wizard di HackMii Solutions (HBC a testa in giù\Soluzione No Vulnerable IOS) | This option is useful for people who are having trouble getting the HackMii Installer to work or have an upside down homebrew channel. | +| AW = Wizard di Astinenza (Modifiche Wii non permanenti) | This option allows you to run homebrew on your Wii without making any permanent modifications to the system NAND. | +| RC = Wizard del Cambio di Regione | This option can be used to change the region of your Wii without bricking it, and is arguably the best region changing wizard on the internet. | +| S = Installazione di SNEEK, Creatore\Modificatore di EmuNAND, Estrattore di Massa di Giochi | Questa opzione ti aiuterà a configurare correttamente un EmuNAND (cioè neek2o) sulla tua scheda SD o unità USB. Benefits for EmuNAND include extra storage space for save games or channels, as well as running homebrew without making any permanent modifications to the system NAND. | +| F = apri un File o Cartella con ModMii per molte altre funzioni! | Questa opzione è uno strumento avanzato specialmente utile per gli sviluppatori. | +| 1 = Scarica Pagina 1 (Menu di Sistema, IOS, MIOS, Canali etc.) | This option opens the first download page that includes most of the key parts of the Wii System Menu (downloaded from NUS). | +| 2 = Scarica Pagina 2 (Applicazioni, File USB-Loader, CheatCodes etc.) | Questa opzione apre la seconda pagina di download che include exploit utili e applicazioni per il tuo Wii che includono anche applicazioni per il PC. | +| 3 = Scarica Pagina 3 (Temi del Menu di Sistema) | Questa opzione apre la terza pagina di download che include alcuni temi del menu di sistema ed elementi richiesti per installare un tema del menu sistema (le applicazioni di base sono scaricate dal NUS). | +| 4 = Scarica Pagina 4 (cIOS e cMIOS) | Questa opzione apre la quarta pagina di download che include cIOS e cMIOS per l'uso di USB loaders. | +| A = Download Avanazati e Creatore di Forwarder DOL\ISO | This option allows you to download any IOS and cIOS and build custom DOL/ISO forwarders. Intended for advanced users only. | +| L = Carica Coda di Download | This option loads bundled or previously saved download queues. | +| C = Crea File di Configurazione per BootMii, Wad Manager o Multi-Mod Manager | This option allows you to build customized config files for BootMii, Wad Manager, and Multi-Mod Manager. | +| FC = File Cleanup & App Updater: aggiorna applcazioni e/o rimuovi file non necessari | This option removes unnessecary files from your SD Card or Hard Drive after finishing softmodding your Wii. | + +

+ +When using ModMii, it is important to note that it will generate a custom guide for you depending on the options that you select. For this reason, this guide will not be focused on how to mod your Wii, as ModMii handles that function. Instead, it will be a quick start guide show you how to effectively use it with the most common options. + +### Installing ModMii + +#### Requisiti * Un Wii * Un'unità USB o una scheda SD * Un PC Windows (una macchina virtuale funzionerà) * [ModMii](https://modmii.github.io/) -Questa è una veloce guida per usare ModMii sul tuo PC Windows. +#### Installazione -### Wizard di ModMii +1. Go to the [ModMii website](https://modmii.github.io) and scroll down to the Download section. Here, select the `Installer` option. Your browser may flag the installer as malware, but it is a **false positive**. -Puoi usare il wizard di ModMii per modificare qualsiasi Wii.
Anche se il Wii è stato modificato in passato, puoi far sovrascrivere a ModMii qualsiasi modifica precedente dicendogli che è la prima modifica che si sta effettuando al Wii (anche se non la è). + ![](/images/modmii/modmii-download.png) -Puoi anche usare questo wizard per configurare un USB loader allo stesso tempo, invece di dover usare il wizard per configurare l'USB Loader successivamente. +2. Open the `ModMiiInstaller.exe` file and go through the setup process. + + ![](/images/modmii/modmii-install.png) + +### Using the ModMii Wizard + +The ModMii Wizard is tool that can softmod your Wii from start to finish, downloading all necessary files and then generating a guide that you can use to implement the softmod. This tool can also be used to overwrite existing softmods on a previously softmodded Wii. + +1. Open ModMii Skin or ModMii Classic and select the ModMii Wizard option at the top of the list. + + ![](/images/modmii/modmii-wizard-1.png) + +1. Answer `Yes` to the first question, unless you have a very specific idea of what you would like to do or update to your Wii. + + ![](/images/modmii/modmii-wizard-2.png) + +1. Select your current System Menu version, followed by the System Menu Region, following the instructions in the program. If you are still confused, check the bottom option on each screen for an instructional video. + + ![](/images/modmii/modmii-wizard-3.png) + +1. Select the exploit you would like to use to mod your Wii. The exploits below are outlined throughout this website, but in most cases we would reccommend using Wilbrand if you have an SD card on hand. + + ![](/images/modmii/modmii-wizard-4.png) + +1. If you selected the Wilbrand option in the previous step, enter your Wii's MAC address. If you don't know how to check your Wii's MAC address, enter `Help` in the text box for an instructional video. + + ![](/images/modmii/modmii-wizard-5.png) + +1. Select your desired System Menu version from the list. + + ![](/images/modmii/modmii-wizard-6.png) + +1. Select whether or not you would like to install any of the listed channels - this is an optional step. + + ![](/images/modmii/modmii-wizard-7.png) + +1. Select whether or not you would like to install a custom Wii theme, with the choice of three theme effects. Each effect deals with how much the outline when hovering over a Wii Channel spins. + + ![](/images/modmii/modmii-wizard-8.png) + +1. Select whether or not you would like to set up a USB Loader for use with your Wii. + + ![](/images/modmii/modmii-wizard-9.png) + +1. If you selected `Yes` in the USB Loader menu, select which USB Loader you would like to use. If you choose an individual one, we reccomend either USB Loader GX or WiiFlow as both are covered on this website, or you may optionally download each option. + + ![](/images/modmii/modmii-wizard-10.png) + +1. If you selected `Yes` in the USB Loader menu, select where you would like to save your USB Loader files at. + + ![](/images/modmii/modmii-wizard-11.png) + +1. Verify where you would like to save files for your SD Card and/or USB Drive. + + ![](/images/modmii/modmii-wizard-12.png) + +1. Confirm your settings are correct, and then press `Finish`. Once you press the button, ModMii will begin to process and download files in the background, and will automatically generate and open a guide for you. From here, you should follow the guide generated by ModMii. + + ![](/images/modmii/modmii-wizard-13.png) ### Wizard di SysCheck Updater -[SysCheck](syscheck) è un'applicazione homebrew che analizza le modifiche di un Wii.
Puoi fornire a ModMii un report di SysCheck per aiutarlo a identificare & aggiornare le mod obsolete. +The SysCheck Updater Wizard is a tool that utilizes the homebrew app [SysCheck](syscheck) to analyze any modifications on your Wii, especially IOS and cIOS. It accepts a `syscheck.csv` file generated by the app, and then provides any nessecary updates as needed. -Puoi far analizzare a ModMii un SysCheck trascinando il file `syscheck.csv` su ModMii.exe. In alternativa, puoi lanciare il wizard di SysCheck Updater (`SU`) dal menu principale di ModMii e cercare il file manualmente. +1. Open ModMii Classic and enter in `SU` to open the SysCheck Updater Wizard. + + ![](/images/modmii/syscheck-wizard-1.png) + +1. Follow the instructions in the window if you don't already have a SysCheck log, and then drag and drop the `syscheck.csv` file from Windows Explorer into the window. This will paste the location of the file, from which you can press Enter. + + ![](/images/modmii/syscheck-wizard-2.png) + +1. The program will analyze your SysCheck file, and will provide options for you depending on what it sees. In this example instance, the mods on the Wii were up-to-date, but there were several unnecessary IOSes that could be stubbed. If you want to make these changes to your Wii, simply enter in `Y` and press Enter. From here, you should follow the guide generated by ModMii. + + ![](/images/modmii/syscheck-wizard-3.png) ### Wizard di HackMii Solutions -Il wizard di HackMii Solutions può aiutarti a risolvere sintomi come questi: +The HackMii Solutions Wizard is a tool that fixes problems that may arise from things like Darkcorp/CIOSSPAGHETTI by installing clean IOSes. Examples of problems that may arise because of this are listed below: + HackMii Installer non chiede "Press (1) to continue" -+ HackMii Installer dice "no vulnerable IOS found!" -+ L'Homebrew Channel viene mostrato a testa in giù ++ HackMii Installer saying "no vulnerable IOS found!" ++ Homebrew Channel displaying upside-down -Installerà gli IOS puliti per permettere all'HackMii Installer di operare correttamente. +1. Open ModMii Skin or ModMii Classic and select the HackMii Solutions option. -### Wizard di Astinenza + ![](/images/modmii/hackmii-wizard-1.png) -Questo wizard richiede una scheda SD. -{: .notice--warning} +1. Select your current System Menu version, followed by the System Menu Region, following the instructions in the program. If you are still confused, check the bottom option on each screen for an instructional video. -Questo wizard ti permette di goderti i molti benefici di un Wii modificato senza dover installare delle modifiche permanenti al tuo Wii. Ti permette di lanciare un exploit per avviare la console da una NAND emulata da una memoria esterna, invece che usare la NAND della memoria interna del Wii. + ![](/images/modmii/hackmii-wizard-2.png) -Puoi anche fare un backup della NAND senza modificare affatto la tua console navigando nella cartella "Support" di ModMii e lanciando `Casper2BootMii.bat`.
Salverà alcuni file in una cartella chiamata `COPY_TO_SD`; copia i file al suo interno nella tua scheda SD e lancia un exploit tipo [Wilbrand](wilbrand). +1. Select the exploit you would like to use to mod your Wii. The exploits below are outlined throughout this website, but in most cases we would reccommend using Wilbrand if you have an SD card on hand. -Quando segui uno degli exploit elencati sopra, non rimpiazzare il file `boot.elf`. -{: .notice--warning} + ![](/images/modmii/hackmii-wizard-3.png) +1. If you selected the Wilbrand option in the previous step, enter your Wii's MAC address. If you don't know how to check your Wii's MAC address, enter `Help` in the text box for an instructional video. -
-Clicca qui per una lista completa di strumenti disponibili. + ![](/images/modmii/hackmii-wizard-4.png) -| Strumento | Descrizione | -| -------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| W = Wizard di ModMii <-- Inizia qui per modificare il tuo Wii! | Questa opzions può essere usata per modificare il tuo Wii per la prima volta o per modificare un Wii che è già stato modificato in precedenza. | -| SU = Wizard di SysCheck Updater (aggiorna solo le modifiche obsolete) | Questa optione è utile per coloro che hanno vecchia modifiche installate sul loro Wii come DarkCorp/Ciosspaghetti che può potenzialmente causare problemi per il custom firmware homebrew di ultima versione. | -| U = Wizard di Configuratione di USB-Loader | Questa opzione di aiuterà a configurare correttamente il tuo USB loader per essere capace di caricare backup di dischi da una scheda SD o unità USB. | -| H = Wizard di HackMii Solutions (HBC a testa in giù\Soluzione No Vulnerable IOS) | Questa options è utile per coloro che stanno avendo problemi nel far funzionare HackMii Installer, o se hanno semplicemente l'homebrew channel a testa in giù, o se DarkCorp/Ciosspaghetti era installato e non c'era nessun homebrew channel. | -| AW = Wizard di Astinenza (Modifiche Wii non permanenti) | Questa opzione è utile per coloro che non vogliono effettuare delle modifiche permanenti al loro Wii ma vogliono comunque avere alcuni dei benefici offerti dal software homebrew. | -| RC = Wizard del Cambio di Regione | Questa opzione può essere usata per cambiare la regione del tuo Wii senza brickarlo (questa è la miglior guida del cambio di regione internet!). | -| S = Installazione di SNEEK, Creatore\Modificatore di EmuNAND, Estrattore di Massa di Giochi | Questa opzione ti aiuterà a configurare correttamente un EmuNAND (cioè neek2o) sulla tua scheda SD o unità USB. i benefici dell'Emunand includono spazio extra per i salvataggi dei giochi o canali. e il beneficio di non effettuare alcuna modifica permanente al tuo Wii. | -| F = apri un File o Cartella con ModMii per molte altre funzioni! | Questa opzione è uno strumento avanzato specialmente utile per gli sviluppatori. | -| 1 = Scarica Pagina 1 (Menu di Sistema, IOS, MIOS, Canali etc.) | Questa opzione apre la prima pagina di download che include le parti fondamentali del menu di sistema (scaricate dal NUS). | -| 2 = Scarica Pagina 2 (Applicazioni, File USB-Loader, CheatCodes etc.) | Questa opzione apre la seconda pagina di download che include exploit utili e applicazioni per il tuo Wii che includono anche applicazioni per il PC. | -| 3 = Scarica Pagina 3 (Temi del Menu di Sistema) | Questa opzione apre la terza pagina di download che include alcuni temi del menu di sistema ed elementi richiesti per installare un tema del menu sistema (le applicazioni di base sono scaricate dal NUS). | -| 4 = Scarica Pagina 4 (cIOS e cMIOS) | Questa opzione apre la quarta pagina di download che include cIOS e cMIOS per l'uso di USB loaders. È consigliato installare solamente i cIOS a meno che non voglia fare del testing. | -| A = Download Avanazati e Creatore di Forwarder DOL\ISO | Questa opzione è uno strumento avanzato usato per personalizzare ulteriormente i download o per permetterti di creare il tuo file eseguibile dol utile per i forwarder (canali sul menu di sistema per accedere applicazioni del Wii). | -| L = Carica Coda di Download | Questa opzione scaricherò tutti i titoli richiesti per il menu di sistema del Wii (titoli scaricato dal NUS) | -| C = Crea File di Configurazione per BootMii, Wad Manager o Multi-Mod Manager | Questa opzione ti aiuterà a creare i file di configurazione richiesti per certe applicazioni. | -| FC = File Cleanup & App Updater: aggiorna applcazioni e/o rimuovi file non necessari | Questa opzione è utile per coloro che vogliono ripulire la loro scheda SD o unità USB da applicazioni obsolete, inutili, o comunque deprecate. | -| M = Modalità ModMii Skiin: usa il tuo mouse invece della tastiera! | Questa opzione lancerà la versione skin di ModMii. Alcuni opzioni avanzate potrebbero non essere accessibili in ModMii Skin. | +1. Verify where you would like to save files for your SD Card and/or USB Drive. -
+ ![](/images/modmii/modmii-wizard-12.png) -
-Clicca qui per una lista completa di opzioni. +1. Confirm your settings are correct, and then press `Finish`. Once you press the button, ModMii will begin to process and download files in the background, and will automatically generate and open a guide for you. From here, you should follow the guide generated by ModMii. After finishing this guide, it is recommended that you use the [SysCheck Updater Wizard](#syscheck-updater-wizard) to undo any other problematic modifications on your Wii. -| Opzione | Descrizione | -| --------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | -| D = Cambia lettera dell'unità: | Cambia dove i file della tua scheda SD sono salvati. | -| DU = Cambia lettera dell'unità per USB: | Cambia dove i file della tua unità USB sono salvati. | -| d2x = cambia la versione del cIOS d2x generato: | Cambia la versione del cios che ModMii scarica. | -| H = Hermes cIOS (202 & 222-224) sarà anche consigliato | Permette agli IOS di essere consigliati e scaricare nel syscheck updater (starà stubbed se disattivato). | -| CM = cMIOS inclusi nei cIOS consigliati | Permette ai cMIOS di essere consigliati e scaricati nel syscheck updater (installerà i MIOS stock se disabilitato). | -| E = Protezione Brick Extra nelle Guide dei Wizard ModMii | Permette agli IOS della protezione extra dai brick di ModMii essere consigliati e usati nello strumento di syscheck updater. | -| U = Aggiorna IOS. Wizard/SysCheck-Updater aggiorna gli IOS attivi | Aggiorna gli IOS esistenti alla versione più recente disponibile sul NUS. | -| AU = Gli aggiornamenti automatici salteranno il controllo se presenti nella cache | Salterà il download dei file se già nella code. | -| FWD = Installa Forwarder dell'USB-Loader nelle Guide dei Wizard di ModMii | Includerà il file wad del forwarder dell'USB loader nelle guide dei wizard degli USB loader. | -| PC = Posizione di Salvataggio Programmi PC | Cambia la posizione di salvataggio per i programmi PC scaricabili. | -| RS = Root Save: Salva IOS/MIOS sul root invece che nella cartella dei WAD | Salva gli IOS\MIOS nel root invece che nella cartella WAD. | -| 1 = Non mantenere cartelle 00000001 o NUS per IOS\MIOS\SM etc | Elimina le cartelle usate per compilare il file wad e ti dà solamente il file wad. | -| n2o = neek2o - crea mod di s\uneek invece dell'originale | Usa una migliore versione modificata di neek2o nel creatore di EmuNAND. | -| SSD = Accesso SD a SNEEK e SNEEK+DI | Permette a SNEEK e SNEEK+DI di accedere alla scheda SD. | -| F = Colore di Font.bin per SNEEK/UNEEK | Cambia il colore del font per neek2o. | -| SV = Output Verboso di SNEEK | Mostra informazioni extra riguardo l'EmuNAND. | -| V = Modalità verbosa per ModMii Skin & nandBinCheck | Mostra un'altra finestra con informazioni extra riguardanti il controllo della nand. | -| SO = Riproduci suoni alla Fine | Riproduce un jingle divertente dopo un download andato a buon fine. | -| A = Auto-Update di ModMii all'avvio | Controllerà la presenza di aggiornamenti in automatico all'avvio di ModMii. | -| N = Controlla per nuove versioni di ModMii adesso | Verificherè online la presenza di un aggiornamento di ModMii. | - -
+ ![](/images/modmii/hackmii-wizard-5.png) [Clicca qui per tornare alla Navigazione del Sito.](navigazione-sito) {: .notice--info} diff --git a/_pages/it_IT/nintendont.md b/_pages/it_IT/nintendont.md new file mode 100644 index 000000000..575a6e4f6 --- /dev/null +++ b/_pages/it_IT/nintendont.md @@ -0,0 +1,5 @@ +--- +title: Reindirizzamento... +--- + +{% include redirect.html redirect_to="410.html" %} diff --git a/_pages/it_IT/recommended-homebrew.md b/_pages/it_IT/recommended-homebrew.md index 8b82ea544..c48fb782b 100644 --- a/_pages/it_IT/recommended-homebrew.md +++ b/_pages/it_IT/recommended-homebrew.md @@ -16,7 +16,7 @@ Homebrew che hanno la capacità di apportare modifiche permanenti al tuo Wii son + [**AnyRegion Changer ME**](https://oscwii.org/library/app/ARCME) - Edizione ModMii di AnyRegion Changer. Nonostante sia un'utilità potente per cambiare le impostazioni sulla regione, può anche causare brick seri tipo [Korean Wii/Error 003](bricks#korean-kiierror-003-brick), quindi **usa questa app solo se sai cosa stai facendo**. + [**WiiXplorer-SS**](https://oscwii.org/library/app/wiixplorer-ss) - Una versione modificata e migliorata di WiiXplorer. Un gestore file per Wii, ti consente di visualizzare e modificare i file sia su scheda SD, che unità USB, che la memoria interna del Wii. Per questo motivo è uno strumento tanto potente quanto pericoloso - non modificare i file nella NAND del sistema a meno che non sappia quello che stai facendo, poiché può conseguirne vari tipi di [brick](bricks). + [**SaveGame Manager GX**](https://oscwii.org/library/app/SaveGame_Manager_GX) - Un estrattore di dati di salvataggio e di Mii per Wii. Supporta le memory card di GameCube (fisiche e virtuali), EmuNAND, salvataggi normali e protetti, temi e altro ancora. -+ [**MyMenuifyMod**](https://oscwii.org/library/app/mymenuifymod) - Un'applicazione che ti permette di personalizzare il Menu Wii con i temi. Anche se è molto utile nel rendere unico il tuo Wii, ha anche la capacità di causare un [brick minore](bricks#theme-brick), quindi assicurati di leggere la nostra [guida sui temi](themes) per un utilizzo adeguato. ++ [**csm-installer**](https://oscwii.org/library/app/csm-installer) - Un'applicazione che ti permette di personalizzare il Menu Wii con temi. Anche se è molto utile nel rendere unico il tuo Wii, ha anche la capacità di causare un [brick minore](bricks#theme-brick), quindi assicurati di leggere la nostra [guida sui temi](themes) per un utilizzo adeguato. + [CleanRip](https://oscwii.org/library/app/CleanRip) - Un'utilità che crea backup di dischi Wii e GameCube. Ulteriori informazioni sono disponibili nella nostra [guida sui dump di dischi](dump-games). + [**d2x cIOS installer**](https://oscwii.org/library/app/d2x-cios-installer) - Un installer personalizzato per Wii IOS, di cui una parte è necessaria per il funzionamento di certi software tipo loader USB. Puoi vedere la guida [qui](cios). + [FTPii](https://oscwii.org/library/app/ftpii) - Un server FTP per il tuo Wii che ti permette di trasferire file attraverso la rete. diff --git a/_pages/it_IT/riiconnect24.md b/_pages/it_IT/riiconnect24.md index 10806a92d..98b489e1a 100644 --- a/_pages/it_IT/riiconnect24.md +++ b/_pages/it_IT/riiconnect24.md @@ -1,138 +1,5 @@ --- -title: "RiiConnect24" +title: Reindirizzamento... --- -{% include toc title="Table of Contents" %} - -Per il supporto (in inglese) per RiiConnect 24, assieme a RiiTag, entra nel [server Discord di RiiConnect24](https://discord.gg/rc24). -{: .notice--primary} - -[RiiConnect24](https://rc24.xyz/) ti consente di usare i servizi di WiiConnect24 interrotti, che comprendono Canale Meteo, Notizie, Vota Anche Tu, Nintendo, Concorsi Mii e Wii Mail. - -Si consiglia di impostare l'ora del tuo Wii a quella attuale prima di procedere. Per impostarla, segui [questo tutorial](wiiconnect24#updating-rtc-clock). -{: .notice--warning} - -NON INSTALLARE RIICONNECT24 SU UN WII MINI! Non funzionerà e brickerà il sistema. -{: .notice--danger} - -### Requisiti - -Se sei su vWii, avrai anche bisogno di [Priiloader](priiloader) installato con gli hack per WC24. -{: .notice--primary} - -+ Una scheda SD o dispositivo USB -+ Una console Wii con connessione a Internet -+ Un PC con connessione a Internet -+ [RiiConnect24 Patcher (Windows, Mac e Linux)](https://github.com/riiconnect24/RiiConnect24-Patcher/releases) -+ [YAWM ModMii Edition](https://oscwii.org/library/app/yawmme) - -### Istruzioni - -#### Sezione I - Utilizzo di RiiConnect24 Patcher - -1. Fare clic sul link qui sopra per entrare nella pagina GitHub del patcher. -1. Scarica `RiiConnect24Patcher.bat` se sei su Windows e `RiiConnect24Patcher.sh` se sei su un sistema macOS/Linux. -1. Esegui il RiiConnect24 Patcher. - + Su Windows, esegui `RiiConnect24Patcher.bat`. - + Su sistemi macOS/Linux, apri il Terminale e digita `bash`, quindi trascina `RiiConnect24Patcher.sh` nel Terminale e premi Invio. Dovrebbe apparire così: `bash //RiiConnect24Patcher.sh`. -1. Premi 1 per scegliere "`Inizia`" e conferma la tua scelta premento `INVIO`. - - ![](/images/riiconnect24/patcher/1.JPG) - -1. Seleziona il dispositivo che vuoi patchare. - - ![](/images/riiconnect24/patcher/2.JPG) - -1. Per questa guida, scegli "`Installa RiiConnect24 sulla tua Wii`" - - ![](/images/riiconnect24/patcher/3.JPG) - -1. Scegli "`Express (Consigliato)`". Ti scaricherà tutto ciò che hai bisogno. - - ![](/images/riiconnect24/patcher/4.JPG) - -1. Seleziona la tua regione. - - ![](/images/riiconnect24/patcher/5.JPG) - -1. Dato che ci sei, RiiConnect24 Patcher può anche scaricare alcuni canali facoltativi che non utilizzano RiiConnect24. `[X]` rappresenta le opzioni selezionate. Basta premere 5 e `ENTER` se non sei interessato. - - ![](/images/riiconnect24/patcher/6.JPG) - -1. Inserisci la tua scheda SD o unità USB al tuo computer e seleziona "`1`". - - ![](/images/riiconnect24/patcher/7.JPG) - -1. Se il tuo dispositivo è stato rilevato correttamente, premi "`1`". In caso contrario, assicurati che la tua scheda SD o unità USB contenga una cartella chiamata `apps` e riprova. - - ![](/images/riiconnect24/patcher/8.JPG) - -1. Ora il patcher scaricherà le app - si prega di attendere. - - ![](/images/riiconnect24/patcher/9.JPG) - -1. Una volta raggiunta una schermata che dice `Patching finito`, puoi chiudere il patcher. Tutti i file dovrebberero già essere nella scheda SD. - - ![](/images/riiconnect24/patcher/10.JPG) - - ![](/images/riiconnect24/patcher/11.PNG) - -1. Nel caso non abbia copiato tutto nella tua scheda SD o unità USB automaticamente, copia le cartelle `WAD` e `apps` accanto al `RiiConnect24Patcher.bat` o `RiiConnect24Patcher.sh` alla tua scheda SD o unità USB. - -#### Sezione II - Installazione dei file WAD - -Se stai usando Dolphin, hai concluso la guida. Installa i WAD andando su `Strumenti -> Installa WAD` nella finestra di Dolphin. -{: .notice--primary} - -Ora installerai gli IOS e WAD dei canali patchati che sono richiesti per l'utilizzo di RiiConnect24. - -1. Estrai il file YAWM ModMii Edition `.zip` e copia la cartella `apps` nella tua scheda SD o unità USB. -1. Inserisci la scheda SD o unità USB nel tuo Wii. -1. Avvia l'Homebrew Channel sul tuo Wii. -1. Avvia YAWM ModMii Edition. -1. Seleziona il dispositivo su cui hai messo i file di RiiConnect24. -1. Evidenzia tutti i WAD nella cartella `wad` e premi + su ciascuno di loro per selezionarli. Una volta che tutti i WAD sono selezionati, premi A due volte per installare i WAD. -1. Una volta completata la loro installazione, premi il pulsante HOME per ritornare all'Homebrew Channel. - -#### Sezione III - Patching di nwc24msg.cfg - -Ora patcherai il file `nwc24msg.cfg` che è richiesto per l'utilizzo di Wii Mail. - -1. Avvia il RiiConnect24 Mail Patcher. -1. Dovrebbe metterci pochi secondi ad eseguire il patch del tuo nwc24msg.cfg. Una volta finito, premi il pulsante HOME per uscire. - -#### Sezione IV - Connessione a RiiConnect24 - -A partire dall'`1 giugno 2023`, il vecchio server DNS `164.132.44.106` è stato deprecato è non è più possibile utilizzarlo. -{: .notice--warning} - -Se stai ricevendo errori tipo `WiiConnect24 e il Canale Wii Shop attualmente non sono disponibili nel tuo paese`, vai su Impostazioni console Wii -> Ultima pagina -> Paese e cambialo in Regno Unito. Questo errore appare quando si utilizza un paese non supportato da RiiConnect24. -{: .notice--warning} - -Se ottieni l'errore 107245, non hai installato l'IOS patchato.
Se ottieni l'errore 220602, apri [questa](faq#for-riiconnect24-users) pagina.
Se ottieni l'errore 107304, apri [questa](faq#for-riiconnect24-users-1) pagina.
-{: .notice--warning} - -Ora imposterai i tuoi DNS ai server RiiConnect24. Questo è facoltativo ma consigliato, poiché migliora l'utilizzo di RiiConnect24 e Wiimmfi rendendo disponibili alcune altre funzionalità. - -1. Vai su `Opzioni Wii`. -1. Vai sulle `Impostazioni console Wii`. -1. Vai alla `pagina 2`, quindi clicca su `Internet`. -1. Vai sulle `Impostazioni di collegamento`. -1. Seleziona la tua connessione attuale. -1. Vai su `Modifica`. -1. Vai su `Ottieni automaticamente DNS` (non indirizzo IP) e seleziona `No`, poi `Impostazioni avanzate`. -1. Inserisci `167.86.108.126` come DNS primario. -1. Inserisci `1.1.1.1` come DNS secondario. -1. Seleziona `Conferma`, poi seleziona `Salva`. -1. Seleziona `OK` per eseguire la prova di connessione. -1. Se la prova di connessione è andata a buon fine, seleziona `No` per rifiutare l'aggiornamento di sistema. -1. Vai su `WiiConnect24`e poi di nuovo `WiiConnect24` e assicurati che sia abilitato. -1. Tornando al menu di WiiConnect24, vai su `Connessione standby` e assicurati che l'opzione è attivata. -1. Su `Illuminazione slot disco`, si consiglia di impostare la luminosità su `Normale` o `Forte`, ma questo è facoltativo. -1. Infine, vai alla sezione `Internet`, `Accordi utente` o `Accordo/Contatto`, e poi `Sì`. Si prega di leggerlo attentamente. - -[Ritorna a WiiConnect24](wiiconnect24) -{: .notice--info} - -[Clicca qui per tornare alla Navigazione del Sito.](navigazione-sito) -{: .notice--info} +{% include redirect.html redirect_to="https\://www\.wiilink24.com/guide/install/" %} diff --git a/_pages/it_IT/riitag.md b/_pages/it_IT/riitag.md new file mode 100644 index 000000000..7ba92546d --- /dev/null +++ b/_pages/it_IT/riitag.md @@ -0,0 +1,5 @@ +--- +title: Reindirizzamento... +--- + +{% include redirect.html redirect_to="https\://wiki.hacks.guide/wiki/RiiTag" %} diff --git a/_pages/it_IT/riivolution.md b/_pages/it_IT/riivolution.md new file mode 100644 index 000000000..575a6e4f6 --- /dev/null +++ b/_pages/it_IT/riivolution.md @@ -0,0 +1,5 @@ +--- +title: Reindirizzamento... +--- + +{% include redirect.html redirect_to="410.html" %} diff --git a/_pages/it_IT/site-navigation.md b/_pages/it_IT/site-navigation.md index 5468d2ebe..ef3aca774 100644 --- a/_pages/it_IT/site-navigation.md +++ b/_pages/it_IT/site-navigation.md @@ -45,7 +45,7 @@ sitemap: false + [Priiloader](priiloader) + [Come rieseguire l'HackMii Installer](hackmii) + [Aggiornamento del Menu Wii alla versione 4.3](update) -+ [Restoring The Wii NAND to Stock](wii-factory-reset) ++ [Ripristino della NAND Wii a Stock](wii-factory-reset) + [Wii mini NAND Dumper](wnd-mini) + [YAWM ModMii Edition](yawmme) {% endcapture %} diff --git a/_pages/it_IT/themes.md b/_pages/it_IT/themes.md index 13a7b05de..fe28b235e 100644 --- a/_pages/it_IT/themes.md +++ b/_pages/it_IT/themes.md @@ -4,13 +4,16 @@ title: "Temi Wii" {% include toc title="Table of Contents" %} -Questa guida è destinata a essere l'ultima di cui hai bisogno per quanto riguarda la personalizzazione sul Wii, non solo fornendo istruzioni per il Menu Wii con MyMenuifyMod, ma anche i temi su WiiFlow Lite, USB Loader GX e l'Homebrew Channel. Inoltre, tratteremo anche di forwarder. +This guide is intended to be the last you will ever need when it comes to theming on the Wii, not only providing instructions for the Wii Menu through csm-installer, but also with themes on WiiFlow Lite, USB Loader GX, and The Homebrew Channel. Inoltre, tratteremo anche di forwarder. ### Personalizzazione del Menu Wii NON CONTINUARE CON QUESTA GUIDA A MENO CHE TU ABBIA UNA PROTEZIONE DA BRICK ADEGUATA, NELLO SPECIFICO [BOOTMII](bootmii) E [PRIILOADER](priiloader)! {: .notice--danger} +Questo tutorial non funziona su Wii mini. Do not attempt this tutorial on the Wii mini or it will cause a [brick](bricks#theme-brick). +{: .notice--warning} + csm-installer has built in safety features to prevent from installing bad or corrupt Wii Menu themes, so please opt to use it instead of other theme installation homebrew. {: .notice--warning} diff --git a/_pages/it_IT/usbloadergx.md b/_pages/it_IT/usbloadergx.md new file mode 100644 index 000000000..ffdbab328 --- /dev/null +++ b/_pages/it_IT/usbloadergx.md @@ -0,0 +1,5 @@ +--- +title: Reindirizzamento... +--- + +{% include redirect.html redirect_to="wii-loaders.html" %} diff --git a/_pages/it_IT/wiibackupmanager.md b/_pages/it_IT/wiibackupmanager.md new file mode 100644 index 000000000..6074f5395 --- /dev/null +++ b/_pages/it_IT/wiibackupmanager.md @@ -0,0 +1,5 @@ +--- +title: Reindirizzamento... +--- + +{% include redirect.html redirect_to="wii-backups.html" %} diff --git a/_pages/it_IT/wiiconnect24.md b/_pages/it_IT/wiiconnect24.md index cba51676d..d7e98f883 100644 --- a/_pages/it_IT/wiiconnect24.md +++ b/_pages/it_IT/wiiconnect24.md @@ -3,44 +3,21 @@ title: "WiiConnect24" --- {% include toc title="Table of Contents" %} + -Questa guida fornisce diversi metodi per riottenere le funzionalità di WiiConnect24 sulla tua console. Nonostante non sia necessario, è una funzionalità "buona da avere" che è in origine è stata usata per la connessione online di certe applicazioni nella console. Questa app includono i Canali Meteo/Notizie, Canale Nintendo, Canale Consorsi Mii, alcuni canali esclusivi in Giappone, e altro ancora. Si prega di tenere a mente che le funzionalità che ottieni dipendono a quale servizio o quali servizi usi. +[WiiConnect24](https://wikipedia.org/wiki/WiiConnect24) era un servizio che consentiva agli utenti con Wii connessi a Internet di visualizzare il meteo e notizie, inviare messaggi agli amici, partecipare ai concorsi Mii, e altro ancora. WiiConnect24 è stato disattivato il 27 giugno 2013. -### Panoramica dei servizi +## RiiConnect24 + WiiLink +[RiiConnect24](https://rc24.xyz) is a revival service for WiiConnect24 that started in 2015, which allows you to regain its functionality on your console. A partire dalla fine del 2023, il servizio è ora di proprietà di WiiLink, un progetto iniziato nel 2020 che in precedenza si concentrava sui canali esclusivi al Giappone. -#### Note sulla compatibilità del servizio: -Entrami i servizi elencati in basso sono compatibili l'uno con l'altro e possono essere caricati nella stessa console. Detto ciò, dev'essere notato che quando installi un canale al posto dell'altro (il Canale Meteo di WiiLink24 al posto del Canale Meteo di RiiConnect24 per esempio), il canale che installi sovrascriverà il precedente. - - -#### Stato di supporto del servizio -✅ - Supportato
⚠️ - In fase di sviluppo
⛔ - Non supportato - -| Nome servizio | WiiLink | RiiConnect24 | -| -------------------- | ------- | ------------ | -| Canale Meteo | ✅ | ✅ | -| Canale Notizie | ⚠️ | ✅ | -| Wii Mail | ✅ | ✅ | -| Canale Vota Anche Tu | ✅ | ✅ | -| Canale Nintendo | ✅ | ✅ | -| Canale Concorsi Mii | ⚠️ | ✅ | -| Wii Room | ✅ | ⛔ | -| Food Channel | ✅ | ⛔ | -| Photo Prints Channel | ✅ | ⛔ | -| Canale TV Kirby | ✅ | ⛔ | -| TV Guide Channel | ⚠️ | ⛔ | - -#### WiiLink -Un servizio di revival recente per WC24/canali giapponesi che iniziò nel 2020, ma sta rapidamente riottenendo funzionalità in tanti canali diversi. - -Lo stato di supporto del servizio può essere trovato [qui](https://www.wiilink24.com/status).
La loro guida può essere trovata [qui](https://www.wiilink24.com/guide). - -#### RiiConnect24 -Il servizio di revival per WC24 più longevo, attualmente solo supportato con canali WC24 a livello mondiale assieme ai servizi di mail. - -Lo stato di supporto del servizio può essere trovato [qui](https://rc24.xyz/stats/).
Attualmente RiiConnect24 non è previsto di una propria guida, ma puoi trovare la nostra [qui](riiconnect24). +C'è un patcher che fornisce entrambi questi servizi insieme in uno - il che significa che si ottengono tutti i canali internazionali e giapponesi in un'unica soluzione. La guida su come installare questi servizi può essere trovata [sul sito web di WiiLink.](https://www.wiilink24.com/guide/) + ### Aggiornare l'orologio RTC -Se scegli di installare uno di questi due servizi sul tuo Wii, si consiglia di sincronizzare il suo orologio esterno per evitare eventuali problemi (come l'incapacità di usare tali servizi) che altrimenti possono sorgere. I passaggi per farlo possono essere trovati qui sotto: #### Di cosa hai bisogno + Una connessione Internet funzionante sul tuo Wii diff --git a/_pages/it_IT/wiiflow.md b/_pages/it_IT/wiiflow.md new file mode 100644 index 000000000..ffdbab328 --- /dev/null +++ b/_pages/it_IT/wiiflow.md @@ -0,0 +1,5 @@ +--- +title: Reindirizzamento... +--- + +{% include redirect.html redirect_to="wii-loaders.html" %} diff --git a/_pages/ja_JP/410.md b/_pages/ja_JP/410.md new file mode 100644 index 000000000..21f077b23 --- /dev/null +++ b/_pages/ja_JP/410.md @@ -0,0 +1,12 @@ +--- +title: Page no longer exists +sitemap: false +--- + +The page you are trying to view used to exist, but it has since been removed. Maybe the instructions you are following are outdated? (If you got here from a link on this guide, [let us know](https://github.com/hacks-guide/Guide_Wii/issues)) + +[Click here to go back to the site index.](site-navigation) +{: .notice--info} + +![](https://http.cat/410) +{: .notice--info} diff --git a/_pages/ja_JP/bootmii.md b/_pages/ja_JP/bootmii.md index 872c42f30..4bdd003c4 100644 --- a/_pages/ja_JP/bootmii.md +++ b/_pages/ja_JP/bootmii.md @@ -6,21 +6,9 @@ title: "NANDのバックアップ(BootMii)" You need an **SD card** to create a NAND backup using BootMii. If you do not have one, you can skip this page, although it is highly recommended to make a NAND backup if you can. -Wii Family EditionではNANDをリストアすることはできません。 Wii Family EditionではIOS版のBootMiiでNANDをリストアするときに必要となるGCコントローラー挿入口が削除されているからです。 いずれにしても、NANDのバックアップを作成することをお勧めします。 -{: .notice--danger} - BootMiiを使用し、NANDバックアップを作成するには、 **SDカード** が必要です。 SDカードが無い場合、このページをスキップできますが、後で実行することを推奨します。 {: .notice--warning} -Wiiリモコンを使用してBootMiiを操作することはできません。 Wii本体のPOWER(電源)ボタンとRESET(リセット)ボタンか、ポート1に接続しているGCコントローラーで操作できます。 カーソルを移動させるには、WiiのPOWER(電源)ボタンか、GCコントローラーの十字ボタンを押してください。 選択するには、WiiのRESETボタンかGCコントローラーのAボタンを押してください。 One of BootMii's most important features is the ability to backup and restore your Wii's NAND storage. We will be going over how to perform a NAND backup. You can then restore from that backup for any reason. -{: .notice--info} - -If the `Launch BootMii` button does not appear, please [re-launch the HackMii Installer](hackmii) and install BootMii. -{: .notice--warning} - -If the screen stays black and the blue disc drive light is blinking, you are missing the BootMii files on your SD card. Download [this zip file](https://static.hackmii.com/bootmii_sd_files.zip) and extract it to the root of your SD card, then try again. -{: .notice--warning} - ### 必要なもの * An SD card with at least 512MB of free space @@ -36,10 +24,19 @@ If you have BootMii installed as boot2 you will need to launch BootMii by restar ![](/images/bootmii/BootMii_HBC.png) + If the `Launch BootMii` button does not appear, please [re-launch the HackMii Installer](hackmii) and install BootMii. + {: .notice--warning} + + If the screen stays black and the blue disc drive light is blinking, you are missing the BootMii files on your SD card. Download [this zip file](https://static.hackmii.com/bootmii_sd_files.zip) and extract it to the root of your SD card, then try again. + {: .notice--warning} + 1. You should see an image similar to the below now on your screen: ![](/images/bootmii/BootMii_Main.png) + Wiiリモコンを使用してBootMiiを操作することはできません。 Wii本体のPOWER(電源)ボタンとRESET(リセット)ボタンか、ポート1に接続しているGCコントローラーで操作できます。 To navigate between options, press POWER. To select an option, press RESET. + {: .notice--info} + 1. Select the Options button (the icon with the gears). ![](/images/bootmii/BootMii_Gears.png) @@ -65,7 +62,7 @@ If you have BootMii installed as boot2 you will need to launch BootMii by restar
Please be reminded that restoring a NAND backup is usually a last resort, and that there often better ways to fix your brick. ブリックを解決するためにはほかにも方法があることが多いです。 [ブリックの原因を特定](bricks)し、その問題を解決することに注力してください。 -To restore from a NAND backup on your SD card, you can follow the instructions for [RestoreMii](bootmiirecover). +To restore from a NAND backup on your SD card, you can follow the instructions for [RestoreMii](bootmiirecover). **Family edition Wiis (Wiis without GameCube ports) CANNOT restore NAND backups.**
BootMii as boot2 is recommended, but only available to install on early Wii consoles. Otherwise, it can only be installed as an IOS. If you would like to change this, you can use the app [BootMii Config Editor](https://oscwii.org/library/app/BootMiiConfigurationEditor). Or, you can edit `sd:/bootmii/bootmii.ini` manually. diff --git a/_pages/ja_JP/bricks.md b/_pages/ja_JP/bricks.md index ad8138226..2c6d10189 100644 --- a/_pages/ja_JP/bricks.md +++ b/_pages/ja_JP/bricks.md @@ -111,7 +111,7 @@ Attempt to start the Wii - warning/press A screen shows up, and when A is presse A theme brick occurs when a wrongly formatted theme is installed. #### Solutions -To resolve this issue, open HBC through Priiloader and access MyMenuifyMod to install a default theme. Alternatively, go into [YAWM ModMii Edition](yawmme) and install the CORRECT default Wii Menu WAD for your region and version. +To resolve this issue, open HBC through Priiloader or BootMii as boot2 and access csm-installer to install a default theme such as the base Wii Menu theme. Alternatively, go into [YAWM ModMii Edition](yawmme) and install the CORRECT default Wii Menu WAD for your region and version. ## Mail brick diff --git a/_pages/ja_JP/cios.md b/_pages/ja_JP/cios.md index 1304b1561..2baa88457 100644 --- a/_pages/ja_JP/cios.md +++ b/_pages/ja_JP/cios.md @@ -65,6 +65,12 @@ Select cIOS version: 65535 ![](/images/cios/d2x_v11_248.png) + The warning "`(c)IOS detected in slot ### will be overwriitten`" can be safely ignored. + {: .notice--info} + + If you are seeing "`Slot ### already used in batch settings`" or "`cIOS already added in batch with revision ##### and slot ###`", press `-` to disable batch mode.
(If you are trying to exit the installer, the button is B, not Home.) + {: .notice--info} + 1. Press `A`. This will bring you to the slot map: ![](/images/cios/d2x_summary.png) diff --git a/_pages/ja_JP/dosanddonts.md b/_pages/ja_JP/dosanddonts.md new file mode 100644 index 000000000..6ceed5bee --- /dev/null +++ b/_pages/ja_JP/dosanddonts.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="faq.html" %} diff --git a/_pages/ja_JP/hbc.md b/_pages/ja_JP/hbc.md index 627e437d3..ad38477a1 100644 --- a/_pages/ja_JP/hbc.md +++ b/_pages/ja_JP/hbc.md @@ -6,7 +6,7 @@ title: "Homebrew ChannelとBootMiiのインストール" The Homebrew Channel is where you will go to launch homebrew applications. BootMii is a piece of software that can backup and restore your Wii's NAND storage, and if installed in boot2, provides brick protection. -BootMii can be installed in two ways: directly to a part of the Wii bootloader called boot2, and via an IOS. BootMii under boot2 is preferred as it provides extended brick protection, but Wiis with a vulnerable boot2 are considerably rarer, having been manufactured before 2009. In most cases, installing BootMii as IOS should be fine, as long as you also install [Priiloader](priiloader). +BootMii can be installed in two ways: directly to a part of the Wii bootloader called boot2, and via an IOS. BootMii under boot2 is preferred as it provides extended brick protection, but Wiis with a vulnerable boot1 that allows this installation are considerably rarer, having been manufactured before 2009. In most cases, installing BootMii as IOS should be fine, as long as you also install [Priiloader](priiloader). {: .notice--info} If you do not have an SD card, you cannot install nor use BootMii, and therefore will not be able to utilize any of the mentioned benefits.
You can always [install it at a later date](hackmii). diff --git a/_pages/ja_JP/modmii.md b/_pages/ja_JP/modmii.md index caf75976e..609fc6dfd 100644 --- a/_pages/ja_JP/modmii.md +++ b/_pages/ja_JP/modmii.md @@ -4,116 +4,190 @@ title: "ModMii" {% include toc title="Table of Contents" %} -If you need help for anything regarding this tutorial, please join [the ModMii Discord server](https://discord.gg/cMnBRACQwQ). -{: .notice--info} - This Program does NOT come with a warranty, so you are responsible for any potential damage done to your Wii. {: .notice--warning} This program is NOT intended to be used for the vWii or the Wii mini. Some tools may or may not work for these platforms. {: .notice--warning} -/images/Modmii/modmii.png +ModMii is an all-in-one Wii hacking tool for Windows created by XFlak that has various helpful tools for modding. It can accomplish the following: -Some advanced options may not be accessible in ModMii Skin. A list of the various activities for ModMii Classic can be found at the bottom of the page. -{: .notice--info} ++ Hacking the console for the first time, or re-hacking it ++ Check for and update outdated softmods ++ Fix upside-down Homebrew Channel problems ++ Run homebrew without making any changes to your Wii's NAND ++ Download homebrew ++ And more! -### 必要なもの +### ModMii Overview + +There are two different ways to use ModMii. There is ModMii Classic, which uses a command line interface, but has all of the features available to the program. ModMii Skin has a graphical user interface, on the other hand, but has less options available to the user. If you're looking to simply mod your Wii for the first time, ModMii Skin should suffice. Otherwise, we reccomend using ModMii Classic where possible.
The chart below will help you determine what can be done in either interface. + +| Tools | ModMii Classic | ModMii Skin | +| -------------------------- | -------------- | ----------- | +| ModMii Wizard | ✅ | ✅ | +| SysCheck Updater Wizard | ✅ | ⛔ | +| USB Loader Setup Wizard | ✅ | ✅ | +| HackMii Solutions Wizard | ✅ | ✅ | +| Abstinence Wizard | ✅ | ✅ | +| Region Change Wizard | ✅ | ✅ | +| SNEEK/EmuNAND Installation | ✅ | ✅ | +| Open File Function | ✅ | ⛔ | +| Load Download Queue | ✅ | ✅ | +| Download Page 1/2/3/4 | ✅ | ⛔ | +| Advanced Downloads | ✅ | ⛔ | +| Load Download Queue | ✅ | ⛔ | +| Build Config Files | ✅ | ⛔ | +| File Cleanup & App Updater | ✅ | ⛔ | + +
+Click here for a detailed explanation of each tool. + +| Tool | Description | +| --------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| W = ModMii Wizard <-- Start Here to Mod Your Wii! | This option can be used to hack your Wii for the first time or re-hack a Wii that has been previously modded. | +| SU = SysCheck Updater Wizard (update only your outdated softmods) | This option checks for and updates old modifications installed to their wii such as DarkCorp/CIOSSPAGHETTI that can potentially cause problems for the latest homebrew custom firmware. | +| U = USB-Loader Setup Wizard | This option will properly set up your USB loader to be able to load your disk backups from an SD or USB hard drive. This option is not necessary if using the ModMii Wizard. | +| H = HackMii Solutions Wizard (Upside-Down HBC\No Vulnerable IOS Fix) | This option is useful for people who are having trouble getting the HackMii Installer to work or have an upside down homebrew channel. | +| AW = Abstinence Wizard (Non-permanent Wii Hacks) | This option allows you to run homebrew on your Wii without making any permanent modifications to the system NAND. | +| RC = Region Change Wizard | This option can be used to change the region of your Wii without bricking it, and is arguably the best region changing wizard on the internet. | +| S = SNEEK Installation, EmuNAND Builder\Modifier, Game Bulk Extractor | This option will help you properly set up an EmuNAND (aka neek2o) onto your SD or USB. Benefits for EmuNAND include extra storage space for save games or channels, as well as running homebrew without making any permanent modifications to the system NAND. | +| F = open a File or Folder with ModMii for many more functions! | This option is an advanced tool especially helpful for developers. | +| 1 = Download Page 1 (System Menus, IOSs, MIOSs, Channels, etc.) | This option opens the first download page that includes most of the key parts of the Wii System Menu (downloaded from NUS). | +| 2 = Download Page 2 (Apps, USB-Loader Files, CheatCodes, etc.) | This option opens the second download page that includes exploits and useful apps for your Wii including some PC programs. | +| 3 = Download Page 3 (System Menu Themes) | This option opens the third download page that includes some system menu themes and items required to install system menu themes (base apps are downloaded from NUS). | +| 4 = Download Page 4 (cIOSs and cMIOSs) | This option opens the fourth download page that includes cIOSes and cMIOSes for use in USB loaders. | +| A = Advanced Downloads and Forwarder DOL\ISO Builder | This option allows you to download any IOS and cIOS and build custom DOL/ISO forwarders. Intended for advanced users only. | +| L = Load Download Queue | This option loads bundled or previously saved download queues. | +| C = Build Config Files for Bootmii, Wad Manager or Multi-Mod Manager | This option allows you to build customized config files for BootMii, Wad Manager, and Multi-Mod Manager. | +| FC = File Cleanup & App Updater: Update Apps and\or remove un-needed files | This option removes unnessecary files from your SD Card or Hard Drive after finishing softmodding your Wii. | + +

+ +When using ModMii, it is important to note that it will generate a custom guide for you depending on the options that you select. For this reason, this guide will not be focused on how to mod your Wii, as ModMii handles that function. Instead, it will be a quick start guide show you how to effectively use it with the most common options. + +### Installing ModMii + +#### 必要なもの * A Wii * A USB drive or SD Card * A Windows PC (a Virtual Machine will work) * [ModMii](https://modmii.github.io/) -This is a quick start guide on how to use ModMii on your Windows PC. +#### インストールの手順 -### ModMii Wizard +1. Go to the [ModMii website](https://modmii.github.io) and scroll down to the Download section. Here, select the `Installer` option. Your browser may flag the installer as malware, but it is a **false positive**. -You can use the ModMii wizard to softmod any Wii.
Even if the Wii has been softmodded in the past, you can have ModMii overwrite existing softmods by telling ModMii that this is the first time you're modding your Wii (even though it's not). + ![](/images/modmii/modmii-download.png) -You can also use this wizard to set up a USB loader at the same time, instead of having to use the USB Loader setup wizard later on. +2. Open the `ModMiiInstaller.exe` file and go through the setup process. + + ![](/images/modmii/modmii-install.png) + +### Using the ModMii Wizard + +The ModMii Wizard is tool that can softmod your Wii from start to finish, downloading all necessary files and then generating a guide that you can use to implement the softmod. This tool can also be used to overwrite existing softmods on a previously softmodded Wii. + +1. Open ModMii Skin or ModMii Classic and select the ModMii Wizard option at the top of the list. + + ![](/images/modmii/modmii-wizard-1.png) + +1. Answer `Yes` to the first question, unless you have a very specific idea of what you would like to do or update to your Wii. + + ![](/images/modmii/modmii-wizard-2.png) + +1. Select your current System Menu version, followed by the System Menu Region, following the instructions in the program. If you are still confused, check the bottom option on each screen for an instructional video. + + ![](/images/modmii/modmii-wizard-3.png) + +1. Select the exploit you would like to use to mod your Wii. The exploits below are outlined throughout this website, but in most cases we would reccommend using Wilbrand if you have an SD card on hand. + + ![](/images/modmii/modmii-wizard-4.png) + +1. If you selected the Wilbrand option in the previous step, enter your Wii's MAC address. If you don't know how to check your Wii's MAC address, enter `Help` in the text box for an instructional video. + + ![](/images/modmii/modmii-wizard-5.png) + +1. Select your desired System Menu version from the list. + + ![](/images/modmii/modmii-wizard-6.png) + +1. Select whether or not you would like to install any of the listed channels - this is an optional step. + + ![](/images/modmii/modmii-wizard-7.png) + +1. Select whether or not you would like to install a custom Wii theme, with the choice of three theme effects. Each effect deals with how much the outline when hovering over a Wii Channel spins. + + ![](/images/modmii/modmii-wizard-8.png) + +1. Select whether or not you would like to set up a USB Loader for use with your Wii. + + ![](/images/modmii/modmii-wizard-9.png) + +1. If you selected `Yes` in the USB Loader menu, select which USB Loader you would like to use. If you choose an individual one, we reccomend either USB Loader GX or WiiFlow as both are covered on this website, or you may optionally download each option. + + ![](/images/modmii/modmii-wizard-10.png) + +1. If you selected `Yes` in the USB Loader menu, select where you would like to save your USB Loader files at. + + ![](/images/modmii/modmii-wizard-11.png) + +1. Verify where you would like to save files for your SD Card and/or USB Drive. + + ![](/images/modmii/modmii-wizard-12.png) + +1. Confirm your settings are correct, and then press `Finish`. Once you press the button, ModMii will begin to process and download files in the background, and will automatically generate and open a guide for you. From here, you should follow the guide generated by ModMii. + + ![](/images/modmii/modmii-wizard-13.png) ### SysCheck Updater Wizard -[SysCheck](syscheck) is a homebrew application that analyzes the modifications on a Wii.
You can give a SysCheck report to ModMii to help identify & update outdated mods. +The SysCheck Updater Wizard is a tool that utilizes the homebrew app [SysCheck](syscheck) to analyze any modifications on your Wii, especially IOS and cIOS. It accepts a `syscheck.csv` file generated by the app, and then provides any nessecary updates as needed. -You can have ModMii analyze a SysCheck by dragging the `syscheck.csv` file onto ModMii.exe. Or, you can launch the SysCheck Updater Wizard (`SU`) from ModMii's main menu and manually browse for the file. +1. Open ModMii Classic and enter in `SU` to open the SysCheck Updater Wizard. + + ![](/images/modmii/syscheck-wizard-1.png) + +1. Follow the instructions in the window if you don't already have a SysCheck log, and then drag and drop the `syscheck.csv` file from Windows Explorer into the window. This will paste the location of the file, from which you can press Enter. + + ![](/images/modmii/syscheck-wizard-2.png) + +1. The program will analyze your SysCheck file, and will provide options for you depending on what it sees. In this example instance, the mods on the Wii were up-to-date, but there were several unnecessary IOSes that could be stubbed. If you want to make these changes to your Wii, simply enter in `Y` and press Enter. From here, you should follow the guide generated by ModMii. + + ![](/images/modmii/syscheck-wizard-3.png) ### HackMii Solutions Wizard -The HackMii Solutions wizard can help fix symptoms like these: +The HackMii Solutions Wizard is a tool that fixes problems that may arise from things like Darkcorp/CIOSSPAGHETTI by installing clean IOSes. Examples of problems that may arise because of this are listed below: + HackMii Installer not prompting "Press (1) to continue" -+ HackMii Installer says "no vulnerable IOS found!" -+ Homebrew Channel is displaying upside-down ++ HackMii Installer saying "no vulnerable IOS found!" ++ Homebrew Channel displaying upside-down -It will install clean IOSs to allow for the HackMii Installer to operate properly. +1. Open ModMii Skin or ModMii Classic and select the HackMii Solutions option. -### Abstinence Wizard + ![](/images/modmii/hackmii-wizard-1.png) -This wizard requires an SD card. -{: .notice--warning} +1. Select your current System Menu version, followed by the System Menu Region, following the instructions in the program. If you are still confused, check the bottom option on each screen for an instructional video. -This wizard allows you to enjoy many of the benefits of a softmodded Wii without installing any permanent modifications to your Wii. It will allow you to launch an exploit to boot an from emulated NAND from external storage, instead of your Wii's internal NAND. + ![](/images/modmii/hackmii-wizard-2.png) -On a related note, you can also make a NAND backup without modifying your Wii at all. Find ModMii's "Support" folder and launch `Casper2BootMii.bat`.
It will save some files to a folder named `COPY_TO_SD`, copy the files inside it to your SD card and [launch an exploit](get-started). +1. Select the exploit you would like to use to mod your Wii. The exploits below are outlined throughout this website, but in most cases we would reccommend using Wilbrand if you have an SD card on hand. -When following one of the exploit guides above, please avoid replacing the `boot.elf` file. -{: .notice--warning} + ![](/images/modmii/hackmii-wizard-3.png) +1. If you selected the Wilbrand option in the previous step, enter your Wii's MAC address. If you don't know how to check your Wii's MAC address, enter `Help` in the text box for an instructional video. -
-Click here for a full list of available tools. + ![](/images/modmii/hackmii-wizard-4.png) -| Tool | Description | -| --------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| W = ModMii Wizard <-- Start Here to Mod Your Wii! | This option can be used to mod your Wii for the first time or re-mod a Wii that has been previously modded. | -| SU = SysCheck Updater Wizard (update only your outdated softmods) | This option is useful for people who have old modifications installed to their wii such as DarkCorp/Ciosspaghetti that can potetially cause problems for the latest homebrew custom firmware. | -| U = USB-Loader Setup Wizard | This option will help you properly set up your USB loader to be able to load your disk backups from an SD or USB hard drive. | -| H = HackMii Solutions Wizard (Upside-Down HBC\No Vulnerable IOS Fix) | This option is useful for people who are having trouble getting the HackMii Installer to work, or if they just simply have an upside down homebrew channel, or if DarkCorp/Ciosspaghetti was installed and there was no homebrew channel. | -| AW = Abstinence Wizard (Non-permanent Wii Hacks) | This option is useful for people who dont want to make any permanent modifications to their Wii but still want to have some of the benefits that homebrew can offer. | -| RC = Region Change Wizard | This option can be used to change the region of your Wii without bricking it (this is the best region changer tutorial available on the internet!). | -| S = SNEEK Installation, EmuNAND Builder\Modifier, Game Bulk Extractor | This option will help you properly set up an EmuNAND (aka neek2o) onto your SD or USB. benefits for emunand include extra storage space for save games or channels. and the benefit of not making any permanent modifications to your Wii. | -| F = open a File or Folder with ModMii for many more functions! | This option is an advanced tool especially helpful for developers. | -| 1 = Download Page 1 (System Menus, IOSs, MIOSs, Channels, etc.) | This option opens the first download page that includes most of the key parts for the system menu (downloaded from NUS). | -| 2 = Download Page 2 (Apps, USB-Loader Files, CheatCodes, etc.) | This option opens the second download page that includes exploits and useful apps for your Wii including some PC programs. | -| 3 = Download Page 3 (System Menu Themes) | This option opens the third download page that includes some system menu themes and items required to install system menu themes (base apps are downloaded from NUS). | -| 4 = Download Page 4 (cIOSs and cMIOSs) | This option opens the fourth download page that includes cIOSes and cMIOSes for use in USB loaders. It is recommended to just install the recommended cioses unless you plan to do some testing. | -| A = Advanced Downloads and Forwarder DOL\ISO Builder | This option is an advanced tool used to better customize downloads or allow you to build a dol executable useful for fowarders (channels on the system menu to access Wii applications). | -| L = Load Download Queue | This option will download all of the required titles need for the Wii system menu (titles are downloaded from NUS) | -| C = Build Config Files for Bootmii, Wad Manager or Multi-Mod Manager | This option will help you build configuration files required for certain applications. | -| FC = File Cleanup & App Updater: Update Apps and\or remove un-needed files | This option is useful for people who want to clean out their SD or USB of apps deemed outdated, useless, or otherwise depreciated. | -| M = ModMii Skin Mode: use your mouse instead of your keyboard! | This option will launch ModMii skin mode. Some advanced options may not be available in this view. | +1. Verify where you would like to save files for your SD Card and/or USB Drive. -
+ ![](/images/modmii/modmii-wizard-12.png) -
-Click here for a full list of available options. +1. Confirm your settings are correct, and then press `Finish`. Once you press the button, ModMii will begin to process and download files in the background, and will automatically generate and open a guide for you. From here, you should follow the guide generated by ModMii. After finishing this guide, it is recommended that you use the [SysCheck Updater Wizard](#syscheck-updater-wizard) to undo any other problematic modifications on your Wii. -| Option | Description | -| ---------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| D = Change Drive letter: | Changes where your SD files are saved to. | -| DU = Change Drive letter for USB: | Changes where your USB files are saved to. | -| d2x = change d2x cIOS version built: | Changes the cios version ModMii downloads. | -| H = Hermes cIOSs (202 & 222-224) will also be recommended | Enables Hermes IOS to be recommended and downloaded in the syscheck updater (will be stubbed if disabled). | -| CM = cMIOS included in recommended cIOSs | Enables cMIOS to be recommended and downloaded in the syscheck updater (will install stock MIOS if disabled). | -| E = Extra Brick Protection in ModMii Wizard Guides | Enables ModMiis Extra Brick Protection IOSes to be recommended and used in the syscheck updater tool. | -| U = Update IOSs. Wizard/SysCheck-Updater to update Active IOSs | Updates Existing IOSes to the latest version available on NUS. | -| AU = Auto-Updating downloads will skip update check if cached | Will skip downloading the files if already in the queue. | -| FWD = Install USB-Loader Forwarder in ModMii Wizard Guides | Will include the USB loader forwarder wad file in the USB loader wizard guides. | -| PC = PC Programs Save Location | Changes the save location for the downloadable PC programs. | -| RS = Root Save: Save IOSs\MIOSs to Root instead of WAD Folder | Saves IOSs\MIOSs to Root instead of WAD Folder. | -| 1 = Do not Keep 00000001 or NUS Folders for IOSs\MIOSs\SMs etc | Deletes the folder used for compiling the wad file and just gives you the wad file. | -| n2o = neek2o - build mod of s\uneek instead of original | Uses a better modified version of neek2o in the EmuNAND builder. | -| SSD = SNEEK and SNEEK+DI SD Access | Allows for SNEEK and SNEEK+DI access on the SD card. | -| F = Font.bin Colour for SNEEK/UNEEK | Changes the font color for neek2o. | -| SV = SNEEK Verbose Output | Displays extra information regarding EmuNAND. | -| V = Verbose for ModMii Skin & nandBinCheck | Displays another window with extra information regarding a nand check. | -| SO = Play sound at Finish | Plays a fun jingle after a successful download. | -| A = Auto-Update ModMii at program start | Will automatically check for updates when ModMii is launched. | -| N = Check for New versions of ModMii right now | Will check online for a ModMii update. | - -
+ ![](/images/modmii/hackmii-wizard-5.png) [サイトマップに移動する](site-navigation) {: .notice--info} diff --git a/_pages/ja_JP/nintendont.md b/_pages/ja_JP/nintendont.md new file mode 100644 index 000000000..d7eef1b3f --- /dev/null +++ b/_pages/ja_JP/nintendont.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="410.html" %} diff --git a/_pages/ja_JP/recommended-homebrew.md b/_pages/ja_JP/recommended-homebrew.md index b2bada15a..2d3869c77 100644 --- a/_pages/ja_JP/recommended-homebrew.md +++ b/_pages/ja_JP/recommended-homebrew.md @@ -16,7 +16,7 @@ Homebrew that has the ability to make permanant changes to your Wii are highligh + [**AnyRegion Changer ME**](https://oscwii.org/library/app/ARCME) - ModMii edition of AnyRegion Changer. While a powerful tool for changing region settings, it can also lead to severe bricks like [Korean Kii/Error 003](bricks#korean-kiierror-003-brick) so **only use this app if you know what you are doing**. + [**WiiXplorer-SS**](https://oscwii.org/library/app/wiixplorer-ss) - A modified and updated version of WiiXplorer. A file manager for the Wii, it allows you to view and customize files both on an SD card, a USB device, and the internal Wii memory. For this reason it is a very powerful but also dangerous tool - don't modify files on the system NAND unless you know what you are doing, as it can lead to various types of [bricks](bricks). + [**SaveGame Manager GX**](https://oscwii.org/library/app/SaveGame_Manager_GX) - A savegame/Mii extractor for the Wii. It supports GameCube memory cards (physical and virtual), emuNANDs, normal and protected saves, themes, and more. -+ [**MyMenuifyMod**](https://oscwii.org/library/app/mymenuifymod) - An application that allows you to theme the Wii Menu. While quite useful to make your Wii unique, it also has the ability to cause a [minor brick](bricks#theme-brick), so make sure to read our [theme guide](themes) for safe usage instructions. ++ [**csm-installer**](https://oscwii.org/library/app/csm-installer) - An application that allows you to theme the Wii Menu. While quite useful to make your Wii unique, it also has the ability to cause a [minor brick](bricks#theme-brick), so make sure to read our [theme guide](themes) for safe usage instructions. + [CleanRip](https://oscwii.org/library/app/CleanRip) - A tool to backup GameCube and Wii discs. Further information can be found in our [disc dumping guide](dump-games). + [**d2x cIOS installer**](https://oscwii.org/library/app/d2x-cios-installer) - A custom installer for Wii IOS, some of which is required for the functioning of certain software like USB loaders. You can see the guide [here](cios). + [FTPii](https://oscwii.org/library/app/ftpii) - An FTP server for your Wii, allowing you to transfer files across the network. diff --git a/_pages/ja_JP/riiconnect24.md b/_pages/ja_JP/riiconnect24.md index 852ec43a7..d1e91b7e8 100644 --- a/_pages/ja_JP/riiconnect24.md +++ b/_pages/ja_JP/riiconnect24.md @@ -1,138 +1,5 @@ --- -title: "RiiConnect24" +title: Redirecting... --- -{% include toc title="Table of Contents" %} - -If you need help with anything regarding this tutorial, please join [the RiiConnect24 Discord server](https://discord.gg/rc24) (recommended) or [e-mail us at support@riiconnect24.net](mailto:support@riiconnect24.net). -{: .notice--primary} - -[RiiConnect24](https://rc24.xyz/) allows you to use discontinued services from WiiConnect24, which include the News, Forecast, Everybody Votes, Nintendo and Check Mii Out Channel, along with Wii Mail. - -It's recommended to set your Wii to the current time before proceeding. Follow [this tutorial](rtc) in order to set it. -{: .notice--warning} - -DO NOT INSTALL RIICONNECT24 ON A WII MINI! It will not work and it will brick the system. -{: .notice--danger} - -### 必要なもの - -Follow [this tutorial](riiconnect24-vwii) if you'd like to install RiiConnect24 on vWii (Wii Mode on Wii U). -{: .notice--primary} - -+ An SD card or USB drive -+ A Wii with an Internet connection -+ A PC with an Internet connection -+ [RiiConnect24 Patcher (Windows, Mac and Linux)](https://github.com/riiconnect24/RiiConnect24-Patcher/releases) -+ [YAWM ModMii Edition](https://oscwii.org/library/app/yawmme) - -### 実行方法 - -#### Section I - Using RiiConnect24 Patcher - -1. Click the link above to go to the GitHub page where the patcher is. -1. Download `RiiConnect24Patcher.bat` if you are on Windows, and `RiiConnect24Patcher.sh` if you are on a Unix system -1. RiiConnect24 Patcher Main Screen - + On Windows run `RiiConnect24Patcher.bat`. - + On Unix systems, open Terminal and type `bash`, then drag `RiiConnect24Patcher.sh` into the terminal then press enter. It should look like this: `bash RiiConnect24Patcher.sh`. -1. Press 1 to choose "`Start`" and confirm your selection by pressing `ENTER`. - - ![](/images/riiconnect24/patcher/1.JPG) - -1. Select the device you're patching for. - - ![](/images/riiconnect24/patcher/2.JPG) - -1. For this guide, choose "`Install RiiConnect24 on your Wii`" - - ![](/images/riiconnect24/patcher/3.JPG) - -1. Choose "`Express (Recommended)`". It will give you everything you need. - - ![](/images/riiconnect24/patcher/4.JPG) - -1. Select your region. - - ![](/images/riiconnect24/patcher/5.JPG) - -1. While you're at it, RiiConnect24 Patcher can additionally download some other optional channels that do not use RiiConnect24. `[X]` represents the options that selected. Just press 5 and `ENTER` if you're not interested. - - ![](/images/riiconnect24/patcher/6.JPG) - -1. Connect your SD Card or USB Drive to your computer and select "`1`". - - ![](/images/riiconnect24/patcher/7.JPG) - -1. If your device was detected successfully, select "`1`". If not, make sure there's a folder called `apps` on your SD Card or USB Drive and try again. - - ![](/images/riiconnect24/patcher/8.JPG) - -1. The patcher will download apps now - please be patient. - - ![](/images/riiconnect24/patcher/9.JPG) - -1. Once you reach the screen that says `Patching done`, you can exit the patcher. All the files should already be on your SD Card. - - ![](/images/riiconnect24/patcher/10.JPG) - - ![](/images/riiconnect24/patcher/11.PNG) - -1. If it did not copy everything automatically to your SD Card or USB Device, copy the `WAD` and `apps` folder next to `RiiConnect24Patcher.bat` to your SD Card or USB Device. - -#### Section II - Installing WADs - -If you are using Dolphin, you have finished the guide. Install the WADs by going to `Tools -> Install WAD` within Dolphin. -{: .notice--primary} - -You will now install the patched IOS and Channel WADs that are required to use RiiConnect24. - -1. Extract the YAWM ModMii Edition `.zip` file, and copy the `apps` folder to your SD card or USB drive. -1. Put your SD card or USB drive in your Wii. -1. Launch the Homebrew Channel on your Wii. -1. Launch YAWM ModMii Edition. -1. Select the device you have put the RiiConnect24 files on. -1. Highlight all the WADs in the `wad` folder by pressing the + Button to select them. When all of the WADs are selected, press A twice to install the WADs. -1. After they are successfully installed, press the HOME Button to exit back to the Homebrew Channel. - -#### Section III - Patching nwc24msg.cfg - -You will now patch your `nwc24msg.cfg` file which is required in order to use Wii Mail. - -1. Launch RiiConnect24 Mail Patcher. -1. It should only take a few seconds to patch your nwc24msg.cfg. When it's done, press the HOME Button to exit. - -#### Section IV - Connecting - -The old DNS server `164.132.44.106` has been deprecated as of `June 1st, 2023` and is no longer available to use. -{: .notice--warning} - -If you're getting errors such as `WiiConnect24 and Wii Shop Channel currently not being offered in your country`, go to Wii Settings -> Last Page -> Country and change it to United Kingdom. You will get this error when using a country that we don't support. Contact us at [support@riiconnect24.net](mailto:support@riiconnect24.net) if you need more help. -{: .notice--warning} - -If you get error 107245, then you have not installed the patched IOS.
-{: .notice--warning} - -You will now set your DNS to our servers. This is optional but it's recommended, because it enhances the use of RiiConnect24 and Wiimmfi by making some other features available. - -1. Go to `Wii Options`. -1. `Wii設定`に進みます。 -1. Go to `Page 2`, then click on `Internet`. -1. Go to `Connection Settings`. -1. Select your current connection. -1. Go to `Change Settings`. -1. Go to `Auto-Obtain DNS` (Not IP Address), then select `No`, then `Advanced Settings`. -1. Type in `167.86.108.126` as the primary DNS. -1. Type in `1.1.1.1` as the secondary DNS. -1. Select `Confirm`, then select `Save`. -1. Select `OK` to perform a connection test. -1. If the connection test was successful, select `No` to skip the Wii System Update. -1. Go to `WiiConnect24`, then `WiiConnect24` again, and make sure it is enabled. -1. Back on the WiiConnect24 menu, go to `Standby Connection` and make sure it is enabled. -1. At `Slot Illumination`, we recommend you set the disc light to `Dim` or `Bright`, but this is optional. -1. Finally, go to the `Internet` section, then `User Agreements` or `Agreement/Contact`, then `Yes`. Please read through this. - -[Return to WiiConnect24](wiiconnect24) -{: .notice--info} - -[サイトマップに移動する](site-navigation) -{: .notice--info} +{% include redirect.html redirect_to="https\://www\.wiilink24.com/guide/install/" %} diff --git a/_pages/ja_JP/riitag.md b/_pages/ja_JP/riitag.md new file mode 100644 index 000000000..e6b6bc322 --- /dev/null +++ b/_pages/ja_JP/riitag.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="https\://wiki.hacks.guide/wiki/RiiTag" %} diff --git a/_pages/ja_JP/riivolution.md b/_pages/ja_JP/riivolution.md new file mode 100644 index 000000000..d7eef1b3f --- /dev/null +++ b/_pages/ja_JP/riivolution.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="410.html" %} diff --git a/_pages/ja_JP/themes.md b/_pages/ja_JP/themes.md index 525d1939b..56f5f8ba8 100644 --- a/_pages/ja_JP/themes.md +++ b/_pages/ja_JP/themes.md @@ -4,13 +4,16 @@ title: "Installing Wii Menu Themes" {% include toc title="Table of Contents" %} -This guide is intended for regular Wiis only. For installing themes on vWii (Wii U), follow [this page](themes-vwii). Additionally, forwarders are covered. +This guide is intended to be the last you will ever need when it comes to theming on the Wii, not only providing instructions for the Wii Menu through csm-installer, but also with themes on WiiFlow Lite, USB Loader GX, and The Homebrew Channel. Additionally, forwarders are covered. ### Section I - Finding a Theme DO NOT CONTINUE WITH THIS GUIDE UNLESS YOU HAVE ADEQUATE BRICK PROTECTION, SPECIFICALLY [BOOTMII](bootmii) AND [PRIILOADER](priiloader)! {: .notice--danger} +This tutorial does not work on the Wii mini. Do not attempt this tutorial on the Wii mini or it will cause a [brick](bricks#theme-brick). +{: .notice--warning} + csm-installer has built in safety features to prevent from installing bad or corrupt Wii Menu themes, so please opt to use it instead of other theme installation homebrew. {: .notice--warning} diff --git a/_pages/ja_JP/usbloadergx.md b/_pages/ja_JP/usbloadergx.md new file mode 100644 index 000000000..00a63864a --- /dev/null +++ b/_pages/ja_JP/usbloadergx.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-loaders.html" %} diff --git a/_pages/ja_JP/wiibackupmanager.md b/_pages/ja_JP/wiibackupmanager.md new file mode 100644 index 000000000..063d7bba0 --- /dev/null +++ b/_pages/ja_JP/wiibackupmanager.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-backups.html" %} diff --git a/_pages/ja_JP/wiiconnect24.md b/_pages/ja_JP/wiiconnect24.md index 5a5c488ba..366c613af 100644 --- a/_pages/ja_JP/wiiconnect24.md +++ b/_pages/ja_JP/wiiconnect24.md @@ -3,44 +3,21 @@ title: "WiiConnect24" --- {% include toc title="Table of Contents" %} + -This guide provides different means of regaining WiiConnect24 functionality on your console. Although not at all nessecary, it is a "nice to have" feature that was originally used for online connectivity in certain applications on the console. These apps include the Forecast/News Channel, Nintendo Channel, Check Mii Out Channel, some Japan-exclusive channels, and more. Please bear in mind, the functionality you gain depends entirely on what service(s) you use. +[WiiConnect24](https://wikipedia.org/wiki/WiiConnect24) was a service that allowed users with Internet connected Wiis to view the weather & local news, send messages to friends, participate in Mii contest, and more. WiiConnect24 was discontinued on June 27th, 2013. -### Service Overview +## RiiConnect24 + WiiLink +[RiiConnect24](https://rc24.xyz) is a revival service for WiiConnect24 that started in 2015, which allows you to regain its functionality on your console. As of late 2023, the service is now owned by WiiLink, a project that started in 2020 that was previously aiming at the Japanese-exclusive channels. -#### Note about service compatibility: -Both services listed below are compatible with one another and can be loaded on the same console. With this said, it should be noted that when installing one channel over the other (WiiLink's Forecast Channel over RiiConnect24's Forecast Channel for example), the channel you are installing will overwrite the old one. - - -#### Service Support Status -✅ - In support
⚠️ - In development
⛔ - No support - -| Service Name | WiiLink | RiiConnect24 | -| --------------- | ------- | ------------ | -| お天気チャンネル | ✅ | ✅ | -| ニュースチャンネル | ⚠️ | ✅ | -| Wii Mail | ✅ | ✅ | -| みんなで投票チャンネル | ✅ | ✅ | -| 任天度チャンネル | ✅ | ✅ | -| Miiコンテストチャンネル | ⚠️ | ✅ | -| Wiiの間 | ✅ | ⛔ | -| 出前チャンネル | ✅ | ⛔ | -| デジカメプリントチャンネル | ✅ | ⛔ | -| 星のカービィTVチャンネル | ✅ | ⛔ | -| テレビの友チャンネル Gガイド | ⚠️ | ⛔ | - -#### WiiLink -A newer WC24/Japanese channel revival service that started in 2020, but is rapidly regaining functionality in many different channels. - -Service support status can be found [here](https://www.wiilink24.com/status).
Their guide can be found [here](https://www.wiilink24.com/guide). - -#### RiiConnect24 -The longest lasting WC24 revival service, currently only with support for the worldwide WC24 channels as well as mail services. - -Service support status can be found [here](https://rc24.xyz/stats/).
RiiConnect24 currently does not have a self-hosted guide, however you can find ours [here](riiconnect24). +There is a patcher that ships both of these services together as one - meaning you get all of the international and Japanese-only channels in one package. The guide on how to install these services can be found [on WiiLink's website.](https://www.wiilink24.com/guide/) + ### Updating RTC Clock -If you choose to install either of these services on your Wii, it is advised to synchronize its external clock in order to prevent various issues (such as inability to use said services) that may arise otherwise. The steps to do so can be found below: #### What you need + A working Internet connection on your Wii diff --git a/_pages/ja_JP/wiiflow.md b/_pages/ja_JP/wiiflow.md new file mode 100644 index 000000000..00a63864a --- /dev/null +++ b/_pages/ja_JP/wiiflow.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-loaders.html" %} diff --git a/_pages/ko_KR/410.md b/_pages/ko_KR/410.md new file mode 100644 index 000000000..21f077b23 --- /dev/null +++ b/_pages/ko_KR/410.md @@ -0,0 +1,12 @@ +--- +title: Page no longer exists +sitemap: false +--- + +The page you are trying to view used to exist, but it has since been removed. Maybe the instructions you are following are outdated? (If you got here from a link on this guide, [let us know](https://github.com/hacks-guide/Guide_Wii/issues)) + +[Click here to go back to the site index.](site-navigation) +{: .notice--info} + +![](https://http.cat/410) +{: .notice--info} diff --git a/_pages/ko_KR/bootmii.md b/_pages/ko_KR/bootmii.md index c9a1aa758..5b4c8fc74 100644 --- a/_pages/ko_KR/bootmii.md +++ b/_pages/ko_KR/bootmii.md @@ -6,21 +6,9 @@ title: "BootMii 백업" BootMii를 사용하여 NAND 백업을 생성하려면 **SD 카드**가 필요합니다. 백업이 없는 경우 이 페이지를 건너뛰어도 되지만, 가능하면 NAND 백업을 만드는 것이 좋습니다. -Family edition Wiis (Wiis without GameCube ports) CANNOT restore NAND backups. This is because of the lack of GameCube ports which are required on non-boot2 Wiis to enter the restoration confirmation code. Regardless, it is still recommended to make one on these consoles. -{: .notice--danger} - You need an **SD card** to use BootMii at all, but especially to create a NAND backup. If you do not have an SD card on hand right now, you can skip this page, but it is HIGHLY RECOMMENDED to return to this page later to back up your NAND. {: .notice--warning} -Wii 리모컨으로는 BootMii를 탐색할 수 없습니다. 콘솔의 전원 및 재설정 버튼 또는 포트 1에 연결된 게임큐브 컨트롤러를 사용해야 합니다. 옵션 사이를 탐색하려면 Wii에서 전원 버튼을 누릅니다 (또는 게임큐브 컨트롤러의 +컨트롤 패드 의 왼쪽/오른쪽 버튼을 누릅니다.) 옵션을 선택하려면 Wii에서 RESET을 누르거나 게임큐브 컨트롤러에서 A 버튼을 누릅니다. BootMii의 가장 중요한 기능 중 하나는 Wii의 NAND 스토리지를 백업하고 복원하는 기능입니다. NAND 백업을 수행하는 방법을 살펴보겠습니다. -{: .notice--info} - -`BootMii 실행` 버튼이 나타나지 않으면, [HackMii 설치 프로그램을 재실행](hackmii)하고 BootMii를 설치하세요. -{: .notice--warning} - -화면이 검은색으로 유지되고 파란색 디스크 드라이브 표시등이 깜박이면 SD 카드에 BootMii 파일이 누락된 것입니다. [이 zip 파일](https://static.hackmii.com/bootmii_sd_files.zip)을 다운로드하여 SD 카드의 루트에 압축을 푼 다음 다시 시도하세요. -{: .notice--warning} - ### 필요한 것 * 적어도 512MB 이상의 SD 카드 @@ -36,10 +24,19 @@ BootMii를 boot2로 설치한 경우 콘솔을 재시작하여 BootMii를 시작 ![](/images/bootmii/BootMii_HBC.png) + `BootMii 실행` 버튼이 나타나지 않으면, [HackMii 설치 프로그램을 재실행](hackmii)하고 BootMii를 설치하세요. + {: .notice--warning} + + 화면이 검은색으로 유지되고 파란색 디스크 드라이브 표시등이 깜박이면 SD 카드에 BootMii 파일이 누락된 것입니다. [이 zip 파일](https://static.hackmii.com/bootmii_sd_files.zip)을 다운로드하여 SD 카드의 루트에 압축을 푼 다음 다시 시도하세요. + {: .notice--warning} + 1. You should see an image similar to the below now on your screen: ![](/images/bootmii/BootMii_Main.png) + Wii 리모컨으로는 BootMii를 탐색할 수 없습니다. 콘솔의 전원 및 재설정 버튼 또는 포트 1에 연결된 게임큐브 컨트롤러를 사용해야 합니다. To navigate between options, press POWER. To select an option, press RESET. + {: .notice--info} + 1. 옵션 버튼 (톱니바퀴가 있는 아이콘) 을 선택합니다. ![](/images/bootmii/BootMii_Gears.png) @@ -65,7 +62,7 @@ BootMii를 boot2로 설치한 경우 콘솔을 재시작하여 BootMii를 시작
Please be reminded that restoring a NAND backup is usually a last resort, and that there often better ways to fix your brick. There often better ways to unbrick your console. Try your best to [identify your brick condition](bricks) and reverse the action that caused it in the first place. -To restore from a NAND backup on your SD card, you can follow the instructions for [RestoreMii](bootmiirecover). +To restore from a NAND backup on your SD card, you can follow the instructions for [RestoreMii](bootmiirecover). **Family edition Wiis (Wiis without GameCube ports) CANNOT restore NAND backups.**
BootMii를 boot2로 설치하는 것이 좋지만 초기 Wii 콘솔에만 설치할 수 있습니다. If you would like to change this, you can use the app [BootMii Config Editor](https://oscwii.org/library/app/BootMiiConfigurationEditor). Or, you can edit `sd:/bootmii/bootmii.ini` manually. diff --git a/_pages/ko_KR/bricks.md b/_pages/ko_KR/bricks.md index 2307e796b..4f7c73c65 100644 --- a/_pages/ko_KR/bricks.md +++ b/_pages/ko_KR/bricks.md @@ -111,7 +111,7 @@ Attempt to start the Wii - warning/press A screen shows up, and when A is presse A theme brick occurs when a wrongly formatted theme is installed. #### Solutions -To resolve this issue, open HBC through Priiloader and access MyMenuifyMod to install a default theme. Alternatively, go into [YAWM ModMii Edition](yawmme) and install the CORRECT default Wii Menu WAD for your region and version. +To resolve this issue, open HBC through Priiloader or BootMii as boot2 and access csm-installer to install a default theme such as the base Wii Menu theme. Alternatively, go into [YAWM ModMii Edition](yawmme) and install the CORRECT default Wii Menu WAD for your region and version. ## Mail brick diff --git a/_pages/ko_KR/cios.md b/_pages/ko_KR/cios.md index 6246f5d86..d8fdd7b22 100644 --- a/_pages/ko_KR/cios.md +++ b/_pages/ko_KR/cios.md @@ -65,6 +65,12 @@ cIOS 버전 선택: 65535 ![](/images/cios/d2x_v11_248.png) + The warning "`(c)IOS detected in slot ### will be overwriitten`" can be safely ignored. + {: .notice--info} + + If you are seeing "`Slot ### already used in batch settings`" or "`cIOS already added in batch with revision ##### and slot ###`", press `-` to disable batch mode.
(If you are trying to exit the installer, the button is B, not Home.) + {: .notice--info} + 1. Press `A`. This will bring you to the slot map: ![](/images/cios/d2x_summary.png) diff --git a/_pages/ko_KR/dosanddonts.md b/_pages/ko_KR/dosanddonts.md new file mode 100644 index 000000000..6ceed5bee --- /dev/null +++ b/_pages/ko_KR/dosanddonts.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="faq.html" %} diff --git a/_pages/ko_KR/hbc.md b/_pages/ko_KR/hbc.md index a94b63acd..15c5ae0e9 100644 --- a/_pages/ko_KR/hbc.md +++ b/_pages/ko_KR/hbc.md @@ -6,7 +6,7 @@ title: "홈브류 채널과 BootMii 설치" 홈브류 채널은 홈브류 응용 프로그램을 실행할 수 있는 곳입니다. BootMii는 Wii의 NAND 저장소를 백업 및 복원할 수 있는 소프트웨어로, boot2에 설치하면 벽돌 보호 기능을 제공합니다. -BootMii can be installed in two ways: directly to a part of the Wii bootloader called boot2, and via an IOS. BootMii under boot2 is preferred as it provides extended brick protection, but Wiis with a vulnerable boot2 are considerably rarer, having been manufactured before 2009. In most cases, installing BootMii as IOS should be fine, as long as you also install [Priiloader](priiloader). +BootMii can be installed in two ways: directly to a part of the Wii bootloader called boot2, and via an IOS. BootMii under boot2 is preferred as it provides extended brick protection, but Wiis with a vulnerable boot1 that allows this installation are considerably rarer, having been manufactured before 2009. In most cases, installing BootMii as IOS should be fine, as long as you also install [Priiloader](priiloader). {: .notice--info} SD 카드가 없는 경우 BootMii를 설치하거나 사용할 수 없으므로 언급된 혜택을 이용할 수 없습니다.
언제든지 [나중에 설치할 수 있습니다](hackmii). diff --git a/_pages/ko_KR/modmii.md b/_pages/ko_KR/modmii.md index 9045c6e47..7269eb35a 100644 --- a/_pages/ko_KR/modmii.md +++ b/_pages/ko_KR/modmii.md @@ -4,116 +4,190 @@ title: "ModMii" {% include toc title="목차" %} -If you need help for anything regarding this tutorial, please join [the ModMii Discord server](https://discord.gg/cMnBRACQwQ). -{: .notice--info} - This Program does NOT come with a warranty, so you are responsible for any potential damage done to your Wii. {: .notice--warning} This program is NOT intended to be used for the vWii or the Wii mini. Some tools may or may not work for these platforms. {: .notice--warning} -/images/Modmii/modmii.png +ModMii is an all-in-one Wii hacking tool for Windows created by XFlak that has various helpful tools for modding. It can accomplish the following: -Some advanced options may not be accessible in ModMii Skin. A list of the various activities for ModMii Classic can be found at the bottom of the page. -{: .notice--info} ++ Hacking the console for the first time, or re-hacking it ++ Check for and update outdated softmods ++ Fix upside-down Homebrew Channel problems ++ Run homebrew without making any changes to your Wii's NAND ++ Download homebrew ++ And more! -### 필요한 것 +### ModMii Overview + +There are two different ways to use ModMii. There is ModMii Classic, which uses a command line interface, but has all of the features available to the program. ModMii Skin has a graphical user interface, on the other hand, but has less options available to the user. If you're looking to simply mod your Wii for the first time, ModMii Skin should suffice. Otherwise, we reccomend using ModMii Classic where possible.
The chart below will help you determine what can be done in either interface. + +| Tools | ModMii Classic | ModMii Skin | +| -------------------------- | -------------- | ----------- | +| ModMii Wizard | ✅ | ✅ | +| SysCheck Updater Wizard | ✅ | ⛔ | +| USB Loader Setup Wizard | ✅ | ✅ | +| HackMii Solutions Wizard | ✅ | ✅ | +| Abstinence Wizard | ✅ | ✅ | +| Region Change Wizard | ✅ | ✅ | +| SNEEK/EmuNAND Installation | ✅ | ✅ | +| Open File Function | ✅ | ⛔ | +| Load Download Queue | ✅ | ✅ | +| Download Page 1/2/3/4 | ✅ | ⛔ | +| Advanced Downloads | ✅ | ⛔ | +| Load Download Queue | ✅ | ⛔ | +| Build Config Files | ✅ | ⛔ | +| File Cleanup & App Updater | ✅ | ⛔ | + +
+Click here for a detailed explanation of each tool. + +| Tool | 설명 | +| --------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| W = ModMii Wizard <-- Start Here to Mod Your Wii! | This option can be used to hack your Wii for the first time or re-hack a Wii that has been previously modded. | +| SU = SysCheck Updater Wizard (update only your outdated softmods) | This option checks for and updates old modifications installed to their wii such as DarkCorp/CIOSSPAGHETTI that can potentially cause problems for the latest homebrew custom firmware. | +| U = USB-Loader Setup Wizard | This option will properly set up your USB loader to be able to load your disk backups from an SD or USB hard drive. This option is not necessary if using the ModMii Wizard. | +| H = HackMii Solutions Wizard (Upside-Down HBC\No Vulnerable IOS Fix) | This option is useful for people who are having trouble getting the HackMii Installer to work or have an upside down homebrew channel. | +| AW = Abstinence Wizard (Non-permanent Wii Hacks) | This option allows you to run homebrew on your Wii without making any permanent modifications to the system NAND. | +| RC = Region Change Wizard | This option can be used to change the region of your Wii without bricking it, and is arguably the best region changing wizard on the internet. | +| S = SNEEK Installation, EmuNAND Builder\Modifier, Game Bulk Extractor | This option will help you properly set up an EmuNAND (aka neek2o) onto your SD or USB. Benefits for EmuNAND include extra storage space for save games or channels, as well as running homebrew without making any permanent modifications to the system NAND. | +| F = open a File or Folder with ModMii for many more functions! | This option is an advanced tool especially helpful for developers. | +| 1 = Download Page 1 (System Menus, IOSs, MIOSs, Channels, etc.) | This option opens the first download page that includes most of the key parts of the Wii System Menu (downloaded from NUS). | +| 2 = Download Page 2 (Apps, USB-Loader Files, CheatCodes, etc.) | This option opens the second download page that includes exploits and useful apps for your Wii including some PC programs. | +| 3 = Download Page 3 (System Menu Themes) | This option opens the third download page that includes some system menu themes and items required to install system menu themes (base apps are downloaded from NUS). | +| 4 = Download Page 4 (cIOSs and cMIOSs) | This option opens the fourth download page that includes cIOSes and cMIOSes for use in USB loaders. | +| A = Advanced Downloads and Forwarder DOL\ISO Builder | This option allows you to download any IOS and cIOS and build custom DOL/ISO forwarders. Intended for advanced users only. | +| L = Load Download Queue | This option loads bundled or previously saved download queues. | +| C = Build Config Files for Bootmii, Wad Manager or Multi-Mod Manager | This option allows you to build customized config files for BootMii, Wad Manager, and Multi-Mod Manager. | +| FC = File Cleanup & App Updater: Update Apps and\or remove un-needed files | This option removes unnessecary files from your SD Card or Hard Drive after finishing softmodding your Wii. | + +

+ +When using ModMii, it is important to note that it will generate a custom guide for you depending on the options that you select. For this reason, this guide will not be focused on how to mod your Wii, as ModMii handles that function. Instead, it will be a quick start guide show you how to effectively use it with the most common options. + +### Installing ModMii + +#### 필요한 것 * Wii * USB 드라이브 또는 SD 카드 * A Windows PC (a Virtual Machine will work) * [ModMii](https://modmii.github.io/) -This is a quick start guide on how to use ModMii on your Windows PC. +#### Installation -### ModMii Wizard +1. Go to the [ModMii website](https://modmii.github.io) and scroll down to the Download section. Here, select the `Installer` option. Your browser may flag the installer as malware, but it is a **false positive**. -You can use the ModMii wizard to softmod any Wii.
Even if the Wii has been softmodded in the past, you can have ModMii overwrite existing softmods by telling ModMii that this is the first time you're modding your Wii (even though it's not). + ![](/images/modmii/modmii-download.png) -You can also use this wizard to set up a USB loader at the same time, instead of having to use the USB Loader setup wizard later on. +2. Open the `ModMiiInstaller.exe` file and go through the setup process. + + ![](/images/modmii/modmii-install.png) + +### Using the ModMii Wizard + +The ModMii Wizard is tool that can softmod your Wii from start to finish, downloading all necessary files and then generating a guide that you can use to implement the softmod. This tool can also be used to overwrite existing softmods on a previously softmodded Wii. + +1. Open ModMii Skin or ModMii Classic and select the ModMii Wizard option at the top of the list. + + ![](/images/modmii/modmii-wizard-1.png) + +1. Answer `Yes` to the first question, unless you have a very specific idea of what you would like to do or update to your Wii. + + ![](/images/modmii/modmii-wizard-2.png) + +1. Select your current System Menu version, followed by the System Menu Region, following the instructions in the program. If you are still confused, check the bottom option on each screen for an instructional video. + + ![](/images/modmii/modmii-wizard-3.png) + +1. Select the exploit you would like to use to mod your Wii. The exploits below are outlined throughout this website, but in most cases we would reccommend using Wilbrand if you have an SD card on hand. + + ![](/images/modmii/modmii-wizard-4.png) + +1. If you selected the Wilbrand option in the previous step, enter your Wii's MAC address. If you don't know how to check your Wii's MAC address, enter `Help` in the text box for an instructional video. + + ![](/images/modmii/modmii-wizard-5.png) + +1. Select your desired System Menu version from the list. + + ![](/images/modmii/modmii-wizard-6.png) + +1. Select whether or not you would like to install any of the listed channels - this is an optional step. + + ![](/images/modmii/modmii-wizard-7.png) + +1. Select whether or not you would like to install a custom Wii theme, with the choice of three theme effects. Each effect deals with how much the outline when hovering over a Wii Channel spins. + + ![](/images/modmii/modmii-wizard-8.png) + +1. Select whether or not you would like to set up a USB Loader for use with your Wii. + + ![](/images/modmii/modmii-wizard-9.png) + +1. If you selected `Yes` in the USB Loader menu, select which USB Loader you would like to use. If you choose an individual one, we reccomend either USB Loader GX or WiiFlow as both are covered on this website, or you may optionally download each option. + + ![](/images/modmii/modmii-wizard-10.png) + +1. If you selected `Yes` in the USB Loader menu, select where you would like to save your USB Loader files at. + + ![](/images/modmii/modmii-wizard-11.png) + +1. Verify where you would like to save files for your SD Card and/or USB Drive. + + ![](/images/modmii/modmii-wizard-12.png) + +1. Confirm your settings are correct, and then press `Finish`. Once you press the button, ModMii will begin to process and download files in the background, and will automatically generate and open a guide for you. From here, you should follow the guide generated by ModMii. + + ![](/images/modmii/modmii-wizard-13.png) ### SysCheck Updater Wizard -[SysCheck](syscheck) is a homebrew application that analyzes the modifications on a Wii.
You can give a SysCheck report to ModMii to help identify & update outdated mods. +The SysCheck Updater Wizard is a tool that utilizes the homebrew app [SysCheck](syscheck) to analyze any modifications on your Wii, especially IOS and cIOS. It accepts a `syscheck.csv` file generated by the app, and then provides any nessecary updates as needed. -You can have ModMii analyze a SysCheck by dragging the `syscheck.csv` file onto ModMii.exe. Or, you can launch the SysCheck Updater Wizard (`SU`) from ModMii's main menu and manually browse for the file. +1. Open ModMii Classic and enter in `SU` to open the SysCheck Updater Wizard. + + ![](/images/modmii/syscheck-wizard-1.png) + +1. Follow the instructions in the window if you don't already have a SysCheck log, and then drag and drop the `syscheck.csv` file from Windows Explorer into the window. This will paste the location of the file, from which you can press Enter. + + ![](/images/modmii/syscheck-wizard-2.png) + +1. The program will analyze your SysCheck file, and will provide options for you depending on what it sees. In this example instance, the mods on the Wii were up-to-date, but there were several unnecessary IOSes that could be stubbed. If you want to make these changes to your Wii, simply enter in `Y` and press Enter. From here, you should follow the guide generated by ModMii. + + ![](/images/modmii/syscheck-wizard-3.png) ### HackMii Solutions Wizard -The HackMii Solutions wizard can help fix symptoms like these: +The HackMii Solutions Wizard is a tool that fixes problems that may arise from things like Darkcorp/CIOSSPAGHETTI by installing clean IOSes. Examples of problems that may arise because of this are listed below: + HackMii Installer not prompting "Press (1) to continue" -+ HackMii Installer says "no vulnerable IOS found!" -+ Homebrew Channel is displaying upside-down ++ HackMii Installer saying "no vulnerable IOS found!" ++ Homebrew Channel displaying upside-down -It will install clean IOSs to allow for the HackMii Installer to operate properly. +1. Open ModMii Skin or ModMii Classic and select the HackMii Solutions option. -### Abstinence Wizard + ![](/images/modmii/hackmii-wizard-1.png) -This wizard requires an SD card. -{: .notice--warning} +1. Select your current System Menu version, followed by the System Menu Region, following the instructions in the program. If you are still confused, check the bottom option on each screen for an instructional video. -This wizard allows you to enjoy many of the benefits of a softmodded Wii without installing any permanent modifications to your Wii. It will allow you to launch an exploit to boot an from emulated NAND from external storage, instead of your Wii's internal NAND. + ![](/images/modmii/hackmii-wizard-2.png) -On a related note, you can also make a NAND backup without modifying your Wii at all. Find ModMii's "Support" folder and launch `Casper2BootMii.bat`.
It will save some files to a folder named `COPY_TO_SD`, copy the files inside it to your SD card and [launch an exploit](get-started). +1. Select the exploit you would like to use to mod your Wii. The exploits below are outlined throughout this website, but in most cases we would reccommend using Wilbrand if you have an SD card on hand. -When following one of the exploit guides above, please avoid replacing the `boot.elf` file. -{: .notice--warning} + ![](/images/modmii/hackmii-wizard-3.png) +1. If you selected the Wilbrand option in the previous step, enter your Wii's MAC address. If you don't know how to check your Wii's MAC address, enter `Help` in the text box for an instructional video. -
-Click here for a full list of available tools. + ![](/images/modmii/hackmii-wizard-4.png) -| Tool | 설명 | -| --------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| W = ModMii Wizard <-- Start Here to Mod Your Wii! | This option can be used to mod your Wii for the first time or re-mod a Wii that has been previously modded. | -| SU = SysCheck Updater Wizard (update only your outdated softmods) | This option is useful for people who have old modifications installed to their wii such as DarkCorp/Ciosspaghetti that can potetially cause problems for the latest homebrew custom firmware. | -| U = USB-Loader Setup Wizard | This option will help you properly set up your USB loader to be able to load your disk backups from an SD or USB hard drive. | -| H = HackMii Solutions Wizard (Upside-Down HBC\No Vulnerable IOS Fix) | This option is useful for people who are having trouble getting the HackMii Installer to work, or if they just simply have an upside down homebrew channel, or if DarkCorp/Ciosspaghetti was installed and there was no homebrew channel. | -| AW = Abstinence Wizard (Non-permanent Wii Hacks) | This option is useful for people who dont want to make any permanent modifications to their Wii but still want to have some of the benefits that homebrew can offer. | -| RC = Region Change Wizard | This option can be used to change the region of your Wii without bricking it (this is the best region changer tutorial available on the internet!). | -| S = SNEEK Installation, EmuNAND Builder\Modifier, Game Bulk Extractor | This option will help you properly set up an EmuNAND (aka neek2o) onto your SD or USB. benefits for emunand include extra storage space for save games or channels. and the benefit of not making any permanent modifications to your Wii. | -| F = open a File or Folder with ModMii for many more functions! | This option is an advanced tool especially helpful for developers. | -| 1 = Download Page 1 (System Menus, IOSs, MIOSs, Channels, etc.) | This option opens the first download page that includes most of the key parts for the system menu (downloaded from NUS). | -| 2 = Download Page 2 (Apps, USB-Loader Files, CheatCodes, etc.) | This option opens the second download page that includes exploits and useful apps for your Wii including some PC programs. | -| 3 = Download Page 3 (System Menu Themes) | This option opens the third download page that includes some system menu themes and items required to install system menu themes (base apps are downloaded from NUS). | -| 4 = Download Page 4 (cIOSs and cMIOSs) | This option opens the fourth download page that includes cIOSes and cMIOSes for use in USB loaders. It is recommended to just install the recommended cioses unless you plan to do some testing. | -| A = Advanced Downloads and Forwarder DOL\ISO Builder | This option is an advanced tool used to better customize downloads or allow you to build a dol executable useful for fowarders (channels on the system menu to access Wii applications). | -| L = Load Download Queue | This option will download all of the required titles need for the Wii system menu (titles are downloaded from NUS) | -| C = Build Config Files for Bootmii, Wad Manager or Multi-Mod Manager | This option will help you build configuration files required for certain applications. | -| FC = File Cleanup & App Updater: Update Apps and\or remove un-needed files | This option is useful for people who want to clean out their SD or USB of apps deemed outdated, useless, or otherwise depreciated. | -| M = ModMii Skin Mode: use your mouse instead of your keyboard! | This option will launch ModMii skin mode. Some advanced options may not be available in this view. | +1. Verify where you would like to save files for your SD Card and/or USB Drive. -
+ ![](/images/modmii/modmii-wizard-12.png) -
-Click here for a full list of available options. +1. Confirm your settings are correct, and then press `Finish`. Once you press the button, ModMii will begin to process and download files in the background, and will automatically generate and open a guide for you. From here, you should follow the guide generated by ModMii. After finishing this guide, it is recommended that you use the [SysCheck Updater Wizard](#syscheck-updater-wizard) to undo any other problematic modifications on your Wii. -| Option | 설명 | -| ---------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| D = Change Drive letter: | Changes where your SD files are saved to. | -| DU = Change Drive letter for USB: | Changes where your USB files are saved to. | -| d2x = change d2x cIOS version built: | Changes the cios version ModMii downloads. | -| H = Hermes cIOSs (202 & 222-224) will also be recommended | Enables Hermes IOS to be recommended and downloaded in the syscheck updater (will be stubbed if disabled). | -| CM = cMIOS included in recommended cIOSs | Enables cMIOS to be recommended and downloaded in the syscheck updater (will install stock MIOS if disabled). | -| E = Extra Brick Protection in ModMii Wizard Guides | Enables ModMiis Extra Brick Protection IOSes to be recommended and used in the syscheck updater tool. | -| U = Update IOSs. Wizard/SysCheck-Updater to update Active IOSs | Updates Existing IOSes to the latest version available on NUS. | -| AU = Auto-Updating downloads will skip update check if cached | Will skip downloading the files if already in the queue. | -| FWD = Install USB-Loader Forwarder in ModMii Wizard Guides | Will include the USB loader forwarder wad file in the USB loader wizard guides. | -| PC = PC Programs Save Location | Changes the save location for the downloadable PC programs. | -| RS = Root Save: Save IOSs\MIOSs to Root instead of WAD Folder | Saves IOSs\MIOSs to Root instead of WAD Folder. | -| 1 = Do not Keep 00000001 or NUS Folders for IOSs\MIOSs\SMs etc | Deletes the folder used for compiling the wad file and just gives you the wad file. | -| n2o = neek2o - build mod of s\uneek instead of original | Uses a better modified version of neek2o in the EmuNAND builder. | -| SSD = SNEEK and SNEEK+DI SD Access | Allows for SNEEK and SNEEK+DI access on the SD card. | -| F = Font.bin Colour for SNEEK/UNEEK | Changes the font color for neek2o. | -| SV = SNEEK Verbose Output | Displays extra information regarding EmuNAND. | -| V = Verbose for ModMii Skin & nandBinCheck | Displays another window with extra information regarding a nand check. | -| SO = Play sound at Finish | Plays a fun jingle after a successful download. | -| A = Auto-Update ModMii at program start | Will automatically check for updates when ModMii is launched. | -| N = Check for New versions of ModMii right now | Will check online for a ModMii update. | - -
+ ![](/images/modmii/hackmii-wizard-5.png) [여기를 눌러 사이트 탐색으로 돌아갑니다.](site-navigation) {: .notice--info} diff --git a/_pages/ko_KR/nintendont.md b/_pages/ko_KR/nintendont.md new file mode 100644 index 000000000..d7eef1b3f --- /dev/null +++ b/_pages/ko_KR/nintendont.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="410.html" %} diff --git a/_pages/ko_KR/recommended-homebrew.md b/_pages/ko_KR/recommended-homebrew.md index 7f5f77480..236ce5344 100644 --- a/_pages/ko_KR/recommended-homebrew.md +++ b/_pages/ko_KR/recommended-homebrew.md @@ -16,7 +16,7 @@ Homebrew that has the ability to make permanant changes to your Wii are highligh + [**AnyRegion Changer ME**](https://oscwii.org/library/app/ARCME) - ModMii edition of AnyRegion Changer. While a powerful tool for changing region settings, it can also lead to severe bricks like [Korean Kii/Error 003](bricks#korean-kiierror-003-brick) so **only use this app if you know what you are doing**. + [**WiiXplorer-SS**](https://oscwii.org/library/app/wiixplorer-ss) - A modified and updated version of WiiXplorer. A file manager for the Wii, it allows you to view and customize files both on an SD card, a USB device, and the internal Wii memory. For this reason it is a very powerful but also dangerous tool - don't modify files on the system NAND unless you know what you are doing, as it can lead to various types of [bricks](bricks). + [**SaveGame Manager GX**](https://oscwii.org/library/app/SaveGame_Manager_GX) - A savegame/Mii extractor for the Wii. It supports GameCube memory cards (physical and virtual), emuNANDs, normal and protected saves, themes, and more. -+ [**MyMenuifyMod**](https://oscwii.org/library/app/mymenuifymod) - An application that allows you to theme the Wii Menu. While quite useful to make your Wii unique, it also has the ability to cause a [minor brick](bricks#theme-brick), so make sure to read our [theme guide](themes) for safe usage instructions. ++ [**csm-installer**](https://oscwii.org/library/app/csm-installer) - An application that allows you to theme the Wii Menu. While quite useful to make your Wii unique, it also has the ability to cause a [minor brick](bricks#theme-brick), so make sure to read our [theme guide](themes) for safe usage instructions. + [CleanRip](https://oscwii.org/library/app/CleanRip) - A tool to backup GameCube and Wii discs. Further information can be found in our [disc dumping guide](dump-games). + [**d2x cIOS installer**](https://oscwii.org/library/app/d2x-cios-installer) - A custom installer for Wii IOS, some of which is required for the functioning of certain software like USB loaders. You can see the guide [here](cios). + [FTPii](https://oscwii.org/library/app/ftpii) - An FTP server for your Wii, allowing you to transfer files across the network. diff --git a/_pages/ko_KR/riiconnect24.md b/_pages/ko_KR/riiconnect24.md index 6c24a2aec..d1e91b7e8 100644 --- a/_pages/ko_KR/riiconnect24.md +++ b/_pages/ko_KR/riiconnect24.md @@ -1,138 +1,5 @@ --- -title: "RiiConnect24" +title: Redirecting... --- -{% include toc title="목차" %} - -For support (in English) with RiiConnect24, as well as RiiTag, join [RiiConnect24 on Discord](https://discord.gg/rc24). -{: .notice--primary} - -[RiiConnect24](https://rc24.xyz/)에서는 뉴스, 날씨, 모두의 투표, 닌텐도, Check Mii Out 채널, Wii 메일 등 WiiConnect24의 중단된 서비스를 Wii 메일과 함께 이용할 수 있습니다. - -계속하기 전에 Wii를 현재 시간으로 설정하는 것이 좋습니다. 설정하려면 [이 자습서](rtc)를 따릅니다. -{: .notice--warning} - -Wii 미니에 RICONNECT24를 설치하지 마세요! 작동하지 않으며 시스템을 망가뜨릴 수 있습니다. -{: .notice--danger} - -### 필요한 것 - -vWii (Wii U의 Wii 모드) 에 RiiConnect24를 설치하려면 [이 자습서](riiconnect24-vwii)를 따르세요. -{: .notice--primary} - -+ SD 카드 및 USB 드라이브 -+ 인터넷 연결이 있는 Wii -+ A PC with an Internet connection -+ [RiiConnect24 패치 관리자 (윈도우, 맥, 리눅스)](https://github.com/riiconnect24/RiiConnect24-Patcher/releases) -+ [YAWM ModMii Edition](https://oscwii.org/library/app/yawmme) - -### 진행 방법 - -#### 섹션 I - RiiConnect24 패치 관리자 사용 - -1. 위의 링크를 클릭하면 패치 관리자가 있는 GitHub 페이지로 이동합니다. -1. 윈도우즈를 사용하는 경우 `RiiConnect24Patcher.bat`을 다운로드하고, 유닉스 시스템을 사용하는 경우 `RiiConnect24Patcher.sh`을 다운로드합니다. -1. RiiConnect24 설치 - + 윈도우즈에서 `RiiConnect24Patcher.bat`을 실행합니다. - + 유닉스 시스템에서는 터미널을 열고 `bash`를 입력한 다음 `RiiConnect24Patcher.sh`를 터미널에 끌어다 놓고 Enter 키를 누릅니다. 다음과 같이 보일 것입니다: `bash RiiConnect24Patcher.sh`. -1. 1 버튼을 눌러 "`시작`"을 선택한 후 `ENTER`를 눌러 선택을 확인합니다. - - ![](/images/riiconnect24/patcher/1.JPG) - -1. 패치할 장치를 선택합니다. - - ![](/images/riiconnect24/patcher/2.JPG) - -1. 이 가이드에서는 "`Wii에 RiiConnect24 설치하기`"를 선택하세요. - - ![](/images/riiconnect24/patcher/3.JPG) - -1. "`익스프레스 (권장)`"를 선택합니다. 필요한 모든 것을 제공합니다. - - ![](/images/riiconnect24/patcher/4.JPG) - -1. 지역을 선택하세요. - - ![](/images/riiconnect24/patcher/5.JPG) - -1. 그 동안 RiiConnect24 패치 관리자는 RiiConnect24를 사용하지 않는 다른 옵션 채널을 추가로 다운로드할 수 있습니다. `[X]`은 선택한 옵션을 나타냅니다. 관심이 없다면 5와 `ENTER`를 누르면 됩니다. - - ![](/images/riiconnect24/patcher/6.JPG) - -1. SD 카드 또는 USB 드라이브를 컴퓨터에 연결하고 "`1`"을 선택합니다. - - ![](/images/riiconnect24/patcher/7.JPG) - -1. 장치가 성공적으로 감지되면 "`1`"을 선택합니다. 그렇지 않은 경우 SD 카드 또는 USB 드라이브에 `apps` 폴더가 있는지 확인한 후 다시 시도합니다. - - ![](/images/riiconnect24/patcher/8.JPG) - -1. The patcher will download apps now - please be patient. - - ![](/images/riiconnect24/patcher/9.JPG) - -1. Once you reach the screen that says `Patching done`, you can exit the patcher. 모든 파일은 이미 SD 카드에 저장되어 있어야 합니다. - - ![](/images/riiconnect24/patcher/10.JPG) - - ![](/images/riiconnect24/patcher/11.PNG) - -1. SD 카드 또는 USB 장치에 모든 것이 자동으로 복사되지 않았다면, `WAD` 및 `apps` 폴더 옆에 있는 `RiiConnect24Patcher.bat` 폴더를 SD 카드 또는 USB 장치에 복사합니다. - -#### 섹션 II - WAD 설치 - -If you are using Dolphin, you have finished the guide. Install the WADs by going to `Tools -> Install WAD` within Dolphin. -{: .notice--primary} - -이제 RiiConnect24를 사용하는 데 필요한 패치된 IOS 및 채널 WAD를 설치합니다. - -1. Extract the YAWM ModMii Edition `.zip` file, and copy the `apps` folder to your SD card or USB drive. -1. Put your SD card or USB drive in your Wii. -1. Wii에서 홈브류 채널을 실행합니다. -1. Launch YAWM ModMii Edition. -1. Select the device you have put the RiiConnect24 files on. -1. Highlight all the WADs in the `wad` folder by pressing the + Button to select them. When all of the WADs are selected, press A twice to install the WADs. -1. 설치가 완료되면 HOME 버튼을 눌러 홈브류 채널로 돌아갑니다. - -#### 섹션 III - nwc24msg.cfg 패치하기 - -이제 Wii 메일을 사용하기 위해 필요한 `nwc24msg.cfg` 파일을 패치합니다. - -1. RiiConnect24 메일 패치 관리자를 실행합니다. -1. nwc24msg.cfg를 패치하는 데 몇 초 밖에 걸리지 않습니다. 완료되면 HOME 버튼을 눌러 종료합니다. - -#### 섹션 IV - 연결 - -이전 DNS 서버 `164.132.44.106`은 `2023년 6월 1일`부로 사용되지 않으며 더 이상 사용할 수 없습니다. -{: .notice--warning} - -`현재 해당 국가에서 WiiConnect24 및 Wii Shop 채널이 제공되지 않습니다`와 같은 오류가 발생하면 Wii 설정 -> 마지막 페이지 -> 국가로 이동하여 국가를 영국으로 변경하세요. 트위터에서 지원하지 않는 국가를 사용할 때 이 오류가 발생합니다. 도움이 더 필요하면 [support@riiconnect24.net](mailto:support@riiconnect24.net)으로 문의하세요. -{: .notice--warning} - -오류 107245가 발생하면 패치된 IOS를 설치하지 않은 것입니다.
-{: .notice--warning} - -이제 DNS를 당사 서버로 설정합니다. 이 옵션은 선택 사항이지만, 다른 기능을 사용할 수 있게 함으로써 RiiConnect24 및 Wiimmfi의 사용을 향상시키기 때문에 권장됩니다. - -1. `Wii 옵션`으로 이동합니다. -1. `Wii 본체 설정`으로 이동합니다. -1. `페이지 2`로 이동하고, `인터넷`을 클릭합니다. -1. `연결 설정`으로 이동합니다. -1. 현재 연결을 선택하세요. -1. `설정 편집`으로 이동합니다. -1. `DNS 자동 연결` (IP 주소가 아님) 으로 이동해서 `끄기`를 선택하고, `고급 설정`으로 들어갑니다. -1. `167.86.108.126`을 기본 DNS로 입력합니다. -1. 보조 DNS로 `1.1.1.1`을 입력합니다. -1. `결정`을 선택하고, `저장`을 선택합니다. -1. `확인`를 눌러 연결 테스트를 합니다. -1. 연결 테스트가 성공했다면, Wii 업데이트를 `아니요`를 눌러 건너뜁니다. -1. `WiiConnect24`로 이동해서 `WiiConnect24`로 다시 이동한 뒤 활성화 된 것을 확인합니다. -1. WiiConnect24 메뉴로 돌아가서, `항상 연결`이 켜져있는지 확인합니다. -1. `슬롯 조명`에서 디스크 조명을 `어둡게` 또는 `밝게`로 설정하는 것이 좋지만, 이는 선택 사항입니다. -1. 마지막으로 `인터넷` 섹션, `사용자 계약` 또는 `계약/연락처`, `예`로 이동합니다. 이 글을 읽어주세요. - -[Return to WiiConnect24](wiiconnect24) -{: .notice--info} - -[여기를 눌러 사이트 탐색으로 돌아갑니다.](site-navigation) -{: .notice--info} +{% include redirect.html redirect_to="https\://www\.wiilink24.com/guide/install/" %} diff --git a/_pages/ko_KR/riitag.md b/_pages/ko_KR/riitag.md new file mode 100644 index 000000000..e6b6bc322 --- /dev/null +++ b/_pages/ko_KR/riitag.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="https\://wiki.hacks.guide/wiki/RiiTag" %} diff --git a/_pages/ko_KR/riivolution.md b/_pages/ko_KR/riivolution.md new file mode 100644 index 000000000..d7eef1b3f --- /dev/null +++ b/_pages/ko_KR/riivolution.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="410.html" %} diff --git a/_pages/ko_KR/themes.md b/_pages/ko_KR/themes.md index 149cac6c5..b921c7e35 100644 --- a/_pages/ko_KR/themes.md +++ b/_pages/ko_KR/themes.md @@ -4,13 +4,16 @@ title: "Wii 메뉴 테마 설치하기" {% include toc title="목차" %} -Priiloader 메뉴로 부팅하면 Wii 메뉴를 수정할 수 있는 몇 가지 옵션이 있습니다. 옵션 중 하나는 홈브류 채널을 실행하는 것인데, 여기서 MyMenuify Mod를 실행하고 버튼을 눌러 오리지널 Wii 메뉴 테마를 다운로드하고 설치할 수 있습니다. Additionally, forwarders are covered. +This guide is intended to be the last you will ever need when it comes to theming on the Wii, not only providing instructions for the Wii Menu through csm-installer, but also with themes on WiiFlow Lite, USB Loader GX, and The Homebrew Channel. Additionally, forwarders are covered. ### `옵션` > `표준 시스템 메뉴` > Wii 메뉴의 버전 > Wii 메뉴의 지역으로 이동합니다. DO NOT CONTINUE WITH THIS GUIDE UNLESS YOU HAVE ADEQUATE BRICK PROTECTION, SPECIFICALLY [BOOTMII](bootmii) AND [PRIILOADER](priiloader)! {: .notice--danger} +This tutorial does not work on the Wii mini. Do not attempt this tutorial on the Wii mini or it will cause a [brick](bricks#theme-brick). +{: .notice--warning} + csm-installer has built in safety features to prevent from installing bad or corrupt Wii Menu themes, so please opt to use it instead of other theme installation homebrew. {: .notice--warning} diff --git a/_pages/ko_KR/usbloadergx.md b/_pages/ko_KR/usbloadergx.md new file mode 100644 index 000000000..00a63864a --- /dev/null +++ b/_pages/ko_KR/usbloadergx.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-loaders.html" %} diff --git a/_pages/ko_KR/wiibackupmanager.md b/_pages/ko_KR/wiibackupmanager.md new file mode 100644 index 000000000..063d7bba0 --- /dev/null +++ b/_pages/ko_KR/wiibackupmanager.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-backups.html" %} diff --git a/_pages/ko_KR/wiiconnect24.md b/_pages/ko_KR/wiiconnect24.md index 3bf17002a..f28cb5b10 100644 --- a/_pages/ko_KR/wiiconnect24.md +++ b/_pages/ko_KR/wiiconnect24.md @@ -3,44 +3,21 @@ title: "WiiConnect24" --- {% include toc title="목차" %} + -This guide provides different means of regaining WiiConnect24 functionality on your console. Although not at all nessecary, it is a "nice to have" feature that was originally used for online connectivity in certain applications on the console. These apps include the Forecast/News Channel, Nintendo Channel, Check Mii Out Channel, some Japan-exclusive channels, and more. Please bear in mind, the functionality you gain depends entirely on what service(s) you use. +[WiiConnect24](https://wikipedia.org/wiki/WiiConnect24) was a service that allowed users with Internet connected Wiis to view the weather & local news, send messages to friends, participate in Mii contest, and more. WiiConnect24 was discontinued on June 27th, 2013. -### Service Overview +## RiiConnect24 + WiiLink +[RiiConnect24](https://rc24.xyz) is a revival service for WiiConnect24 that started in 2015, which allows you to regain its functionality on your console. As of late 2023, the service is now owned by WiiLink, a project that started in 2020 that was previously aiming at the Japanese-exclusive channels. -#### Note about service compatibility: -Both services listed below are compatible with one another and can be loaded on the same console. With this said, it should be noted that when installing one channel over the other (WiiLink's Forecast Channel over RiiConnect24's Forecast Channel for example), the channel you are installing will overwrite the old one. - - -#### Service Support Status -✅ - In support
⚠️ - In development
⛔ - No support - -| Service Name | WiiLink | RiiConnect24 | -| ----------------------- | ------- | ------------ | -| Forecast Channel | ✅ | ✅ | -| News Channel | ⚠️ | ✅ | -| Wii Mail | ✅ | ✅ | -| Everybody Votes Channel | ✅ | ✅ | -| Nintendo Channel | ✅ | ✅ | -| Check Mii Out Channel | ⚠️ | ✅ | -| Wii Room | ✅ | ⛔ | -| Food Channel | ✅ | ⛔ | -| Photo Prints Channel | ✅ | ⛔ | -| Kirby TV Channel | ✅ | ⛔ | -| TV Guide Channel | ⚠️ | ⛔ | - -#### WiiLink -A newer WC24/Japanese channel revival service that started in 2020, but is rapidly regaining functionality in many different channels. - -Service support status can be found [here](https://www.wiilink24.com/status).
Their guide can be found [here](https://www.wiilink24.com/guide). - -#### RiiConnect24 -The longest lasting WC24 revival service, currently only with support for the worldwide WC24 channels as well as mail services. - -Service support status can be found [here](https://rc24.xyz/stats/).
RiiConnect24 currently does not have a self-hosted guide, however you can find ours [here](riiconnect24). +There is a patcher that ships both of these services together as one - meaning you get all of the international and Japanese-only channels in one package. The guide on how to install these services can be found [on WiiLink's website.](https://www.wiilink24.com/guide/) + ### Updating RTC Clock -If you choose to install either of these services on your Wii, it is advised to synchronize its external clock in order to prevent various issues (such as inability to use said services) that may arise otherwise. The steps to do so can be found below: #### 필요한 것 + A working Internet connection on your Wii diff --git a/_pages/ko_KR/wiiflow.md b/_pages/ko_KR/wiiflow.md new file mode 100644 index 000000000..00a63864a --- /dev/null +++ b/_pages/ko_KR/wiiflow.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-loaders.html" %} diff --git a/_pages/no_NO/410.md b/_pages/no_NO/410.md new file mode 100644 index 000000000..21f077b23 --- /dev/null +++ b/_pages/no_NO/410.md @@ -0,0 +1,12 @@ +--- +title: Page no longer exists +sitemap: false +--- + +The page you are trying to view used to exist, but it has since been removed. Maybe the instructions you are following are outdated? (If you got here from a link on this guide, [let us know](https://github.com/hacks-guide/Guide_Wii/issues)) + +[Click here to go back to the site index.](site-navigation) +{: .notice--info} + +![](https://http.cat/410) +{: .notice--info} diff --git a/_pages/no_NO/bootmii.md b/_pages/no_NO/bootmii.md index bdafb277a..eac3d9e07 100644 --- a/_pages/no_NO/bootmii.md +++ b/_pages/no_NO/bootmii.md @@ -6,21 +6,9 @@ title: "BootMii Backup" BootMii allows for backing up and restoring your Wii's NAND storage. This page will guide you in backing up your Wii's NAND to an SD Card, which you can then use however you like. -Family edition Wiis (Wiis without GameCube ports) CANNOT restore NAND backups. This is because of the lack of GameCube ports which are required on non-boot2 Wiis to enter the restoration confirmation code. Regardless, it is still recommended to make one on these consoles. -{: .notice--danger} - You need an **SD card** to use BootMii at all, but especially to create a NAND backup. If you do not have an SD card on hand right now, you can skip this page, but it is HIGHLY RECOMMENDED to return to this page later to back up your NAND. {: .notice--warning} -Navigating BootMii is not possible using a Wii Remote. You must use the POWER and RESET buttons on your console, or a GameCube controller plugged into port 1. To navigate between options, press POWER on your Wii (or left/right on the +Control Pad on a GameCube controller). To select an option, press RESET on your Wii or A on your GameCube controller. You will NEED to use a GameCube controller to restore a NAND backup in the future if BootMii is installed as IOS. -{: .notice--info} - -If the `Launch BootMii` button does not appear in the Homebrew Channel, [re-launch the HackMii Installer](hackmii) and install BootMii. -{: .notice--warning} - -If the screen stays black and the blue disc drive light is blinking upon launching BootMii, you are missing the BootMii files on your SD card. Download [this zip file](/assets/files/bootmii_sd_files.zip) and extract it to the root of your SD card, then try again. -{: .notice--warning} - ### Requirements * An SD card with at least 512MB of free space @@ -36,10 +24,19 @@ If you have BootMii installed as boot2, you will need to launch BootMii by resta ![](/images/bootmii/BootMii_HBC.png) + If the `Launch BootMii` button does not appear in the Homebrew Channel, [re-launch the HackMii Installer](hackmii) and install BootMii. + {: .notice--warning} + + If the screen stays black and the blue disc drive light is blinking upon launching BootMii, you are missing the BootMii files on your SD card. Download [this zip file](/assets/files/bootmii_sd_files.zip) and extract it to the root of your SD card, then try again. + {: .notice--warning} + 1. You should see an image similar to the below now on your screen: ![](/images/bootmii/BootMii_Main.png) + Navigating BootMii is not possible using a Wii Remote. You must use the POWER and RESET buttons on your console, or a GameCube controller plugged into port 1. To navigate between options, press POWER. To select an option, press RESET. + {: .notice--info} + 1. Select the Options button (the icon with the gears). ![](/images/bootmii/BootMii_Gears.png) @@ -65,7 +62,7 @@ If you have BootMii installed as boot2, you will need to launch BootMii by resta
Note: **restoring a NAND backup is usually a last resort**. There often better ways to unbrick your console. Try your best to [identify your brick condition](bricks) and reverse the action that caused it in the first place. -To restore from a NAND backup on your SD card, you can follow the instructions for [RestoreMii](bootmiirecover) (Original Wii only). +To restore from a NAND backup on your SD card, you can follow the instructions for [RestoreMii](bootmiirecover). **Family edition Wiis (Wiis without GameCube ports) CANNOT restore NAND backups.**
As stated earlier, if you have BootMii installed as boot2, it will launch every time you start your console. If you would like to change this, you can use the app [BootMii Config Editor](https://oscwii.org/library/app/BootMiiConfigurationEditor). Or, you can edit `sd:/bootmii/bootmii.ini` manually. diff --git a/_pages/no_NO/bricks.md b/_pages/no_NO/bricks.md index 094b9b176..ab5039ded 100644 --- a/_pages/no_NO/bricks.md +++ b/_pages/no_NO/bricks.md @@ -111,7 +111,7 @@ Attempt to start the Wii - warning/press A screen shows up, and when A is presse A theme brick occurs when a wrongly formatted theme is installed. #### Solutions -To resolve this issue, open HBC through Priiloader or BootMii as boot2 and access MyMenuifyMod to install a default theme such as the base Wii Menu theme. Alternatively, go into [YAWM ModMii Edition](yawmme) and install the CORRECT default Wii Menu WAD for your region and version. +To resolve this issue, open HBC through Priiloader or BootMii as boot2 and access csm-installer to install a default theme such as the base Wii Menu theme. Alternatively, go into [YAWM ModMii Edition](yawmme) and install the CORRECT default Wii Menu WAD for your region and version. ## Mail brick diff --git a/_pages/no_NO/cios.md b/_pages/no_NO/cios.md index 8ae6c5a94..1746dd528 100644 --- a/_pages/no_NO/cios.md +++ b/_pages/no_NO/cios.md @@ -65,6 +65,12 @@ The WAD files should be on your SD card like this: ![](/images/cios/d2x_offline_ ![](/images/cios/d2x_v11_248.png) + The warning "`(c)IOS detected in slot ### will be overwriitten`" can be safely ignored. + {: .notice--info} + + If you are seeing "`Slot ### already used in batch settings`" or "`cIOS already added in batch with revision ##### and slot ###`", press `-` to disable batch mode.
(If you are trying to exit the installer, the button is B, not Home.) + {: .notice--info} + 1. Press `A`. This will bring you to the slot map: ![](/images/cios/d2x_summary.png) diff --git a/_pages/no_NO/dosanddonts.md b/_pages/no_NO/dosanddonts.md new file mode 100644 index 000000000..6ceed5bee --- /dev/null +++ b/_pages/no_NO/dosanddonts.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="faq.html" %} diff --git a/_pages/no_NO/hbc.md b/_pages/no_NO/hbc.md index ae605ec3f..b0b89779d 100644 --- a/_pages/no_NO/hbc.md +++ b/_pages/no_NO/hbc.md @@ -6,7 +6,7 @@ title: "Homebrew Channel and BootMii Installation" The Homebrew Channel is where you will go to launch homebrew applications. BootMii is a piece of software that can backup and restore your Wii's NAND storage, and if installed in boot2, provide brick protection. -BootMii can be installed in two ways: directly to a part of the Wii bootloader called boot2, and via an IOS. BootMii under boot2 is preferred as it provides extended brick protection, but Wiis with a vulnerable boot2 are considerably rarer, having been manufactured before 2009. In most cases, installing BootMii as IOS should be fine, as long as you also install [Priiloader](priiloader). +BootMii can be installed in two ways: directly to a part of the Wii bootloader called boot2, and via an IOS. BootMii under boot2 is preferred as it provides extended brick protection, but Wiis with a vulnerable boot1 that allows this installation are considerably rarer, having been manufactured before 2009. In most cases, installing BootMii as IOS should be fine, as long as you also install [Priiloader](priiloader). {: .notice--info} If you do not have an SD card, you cannot install nor use BootMii, regardless of whether you install it as IOS or boot2. You can always [install it later](hackmii). diff --git a/_pages/no_NO/modmii.md b/_pages/no_NO/modmii.md index 6f2a4c50d..373dafacf 100644 --- a/_pages/no_NO/modmii.md +++ b/_pages/no_NO/modmii.md @@ -4,116 +4,190 @@ title: "ModMii" {% include toc title="Table of Contents" %} -If you need help for anything regarding this tutorial, please join [the ModMii Discord server](https://discord.gg/cMnBRACQwQ). -{: .notice--info} - This Program does NOT come with a warranty, so you are responsible for any potential damage done to your Wii. {: .notice--warning} This program is NOT intended to be used for the vWii or the Wii mini. Any usage on vWii or Wii mini is untested. {: .notice--warning} -ModMii is a PC program for Windows created by XFlak that has various helpful tools for modding, including some tutorials that may not be currently available on this website.
You can choose to launch in ModMii skin, which has a more user-friendly interface, or launch in ModMii Classic, which uses a command-line (Command Prompt/Terminal) interface. +ModMii is an all-in-one Wii hacking tool for Windows created by XFlak that has various helpful tools for modding. It can accomplish the following: -Some advanced options may not be accessible in ModMii Skin. A list of the features available in ModMii Classic can be found at the bottom of the page. -{: .notice--info} ++ Hacking the console for the first time, or re-hacking it ++ Check for and update outdated softmods ++ Fix upside-down Homebrew Channel problems ++ Run homebrew without making any changes to your Wii's NAND ++ Download homebrew ++ And more! -### Requirements +### ModMii Overview + +There are two different ways to use ModMii. There is ModMii Classic, which uses a command line interface, but has all of the features available to the program. ModMii Skin has a graphical user interface, on the other hand, but has less options available to the user. If you're looking to simply mod your Wii for the first time, ModMii Skin should suffice. Otherwise, we reccomend using ModMii Classic where possible.
The chart below will help you determine what can be done in either interface. + +| Tools | ModMii Classic | ModMii Skin | +| -------------------------- | -------------- | ----------- | +| ModMii Wizard | ✅ | ✅ | +| SysCheck Updater Wizard | ✅ | ⛔ | +| USB Loader Setup Wizard | ✅ | ✅ | +| HackMii Solutions Wizard | ✅ | ✅ | +| Abstinence Wizard | ✅ | ✅ | +| Region Change Wizard | ✅ | ✅ | +| SNEEK/EmuNAND Installation | ✅ | ✅ | +| Open File Function | ✅ | ⛔ | +| Load Download Queue | ✅ | ✅ | +| Download Page 1/2/3/4 | ✅ | ⛔ | +| Advanced Downloads | ✅ | ⛔ | +| Load Download Queue | ✅ | ⛔ | +| Build Config Files | ✅ | ⛔ | +| File Cleanup & App Updater | ✅ | ⛔ | + +
+Click here for a detailed explanation of each tool. + +| Tool | Description | +| --------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| W = ModMii Wizard <-- Start Here to Mod Your Wii! | This option can be used to hack your Wii for the first time or re-hack a Wii that has been previously modded. | +| SU = SysCheck Updater Wizard (update only your outdated softmods) | This option checks for and updates old modifications installed to their wii such as DarkCorp/CIOSSPAGHETTI that can potentially cause problems for the latest homebrew custom firmware. | +| U = USB-Loader Setup Wizard | This option will properly set up your USB loader to be able to load your disk backups from an SD or USB hard drive. This option is not necessary if using the ModMii Wizard. | +| H = HackMii Solutions Wizard (Upside-Down HBC\No Vulnerable IOS Fix) | This option is useful for people who are having trouble getting the HackMii Installer to work or have an upside down homebrew channel. | +| AW = Abstinence Wizard (Non-permanent Wii Hacks) | This option allows you to run homebrew on your Wii without making any permanent modifications to the system NAND. | +| RC = Region Change Wizard | This option can be used to change the region of your Wii without bricking it, and is arguably the best region changing wizard on the internet. | +| S = SNEEK Installation, EmuNAND Builder\Modifier, Game Bulk Extractor | This option will help you properly set up an EmuNAND (aka neek2o) onto your SD or USB. Benefits for EmuNAND include extra storage space for save games or channels, as well as running homebrew without making any permanent modifications to the system NAND. | +| F = open a File or Folder with ModMii for many more functions! | This option is an advanced tool especially helpful for developers. | +| 1 = Download Page 1 (System Menus, IOSs, MIOSs, Channels, etc.) | This option opens the first download page that includes most of the key parts of the Wii System Menu (downloaded from NUS). | +| 2 = Download Page 2 (Apps, USB-Loader Files, CheatCodes, etc.) | This option opens the second download page that includes exploits and useful apps for your Wii including some PC programs. | +| 3 = Download Page 3 (System Menu Themes) | This option opens the third download page that includes some system menu themes and items required to install system menu themes (base apps are downloaded from NUS). | +| 4 = Download Page 4 (cIOSs and cMIOSs) | This option opens the fourth download page that includes cIOSes and cMIOSes for use in USB loaders. | +| A = Advanced Downloads and Forwarder DOL\ISO Builder | This option allows you to download any IOS and cIOS and build custom DOL/ISO forwarders. Intended for advanced users only. | +| L = Load Download Queue | This option loads bundled or previously saved download queues. | +| C = Build Config Files for Bootmii, Wad Manager or Multi-Mod Manager | This option allows you to build customized config files for BootMii, Wad Manager, and Multi-Mod Manager. | +| FC = File Cleanup & App Updater: Update Apps and\or remove un-needed files | This option removes unnessecary files from your SD Card or Hard Drive after finishing softmodding your Wii. | + +

+ +When using ModMii, it is important to note that it will generate a custom guide for you depending on the options that you select. For this reason, this guide will not be focused on how to mod your Wii, as ModMii handles that function. Instead, it will be a quick start guide show you how to effectively use it with the most common options. + +### Installing ModMii + +#### Requirements * A Wii * A USB drive or SD Card * A Windows PC (a Virtual Machine will work) * [ModMii](https://modmii.github.io/) -This is a quick start guide on using ModMii on your Windows PC. +#### Installation -### ModMii Wizard +1. Go to the [ModMii website](https://modmii.github.io) and scroll down to the Download section. Here, select the `Installer` option. Your browser may flag the installer as malware, but it is a **false positive**. -You can use the ModMii wizard to softmod any Wii.
Even if the Wii has been softmodded in the past, you can have ModMii overwrite existing softmods by telling ModMii that this is the first time you're modding your Wii (even if it isn't). + ![](/images/modmii/modmii-download.png) -You can also use this wizard to set up a USB loader at the same time, instead of having to use the USB Loader setup wizard later on. +2. Open the `ModMiiInstaller.exe` file and go through the setup process. + + ![](/images/modmii/modmii-install.png) + +### Using the ModMii Wizard + +The ModMii Wizard is tool that can softmod your Wii from start to finish, downloading all necessary files and then generating a guide that you can use to implement the softmod. This tool can also be used to overwrite existing softmods on a previously softmodded Wii. + +1. Open ModMii Skin or ModMii Classic and select the ModMii Wizard option at the top of the list. + + ![](/images/modmii/modmii-wizard-1.png) + +1. Answer `Yes` to the first question, unless you have a very specific idea of what you would like to do or update to your Wii. + + ![](/images/modmii/modmii-wizard-2.png) + +1. Select your current System Menu version, followed by the System Menu Region, following the instructions in the program. If you are still confused, check the bottom option on each screen for an instructional video. + + ![](/images/modmii/modmii-wizard-3.png) + +1. Select the exploit you would like to use to mod your Wii. The exploits below are outlined throughout this website, but in most cases we would reccommend using Wilbrand if you have an SD card on hand. + + ![](/images/modmii/modmii-wizard-4.png) + +1. If you selected the Wilbrand option in the previous step, enter your Wii's MAC address. If you don't know how to check your Wii's MAC address, enter `Help` in the text box for an instructional video. + + ![](/images/modmii/modmii-wizard-5.png) + +1. Select your desired System Menu version from the list. + + ![](/images/modmii/modmii-wizard-6.png) + +1. Select whether or not you would like to install any of the listed channels - this is an optional step. + + ![](/images/modmii/modmii-wizard-7.png) + +1. Select whether or not you would like to install a custom Wii theme, with the choice of three theme effects. Each effect deals with how much the outline when hovering over a Wii Channel spins. + + ![](/images/modmii/modmii-wizard-8.png) + +1. Select whether or not you would like to set up a USB Loader for use with your Wii. + + ![](/images/modmii/modmii-wizard-9.png) + +1. If you selected `Yes` in the USB Loader menu, select which USB Loader you would like to use. If you choose an individual one, we reccomend either USB Loader GX or WiiFlow as both are covered on this website, or you may optionally download each option. + + ![](/images/modmii/modmii-wizard-10.png) + +1. If you selected `Yes` in the USB Loader menu, select where you would like to save your USB Loader files at. + + ![](/images/modmii/modmii-wizard-11.png) + +1. Verify where you would like to save files for your SD Card and/or USB Drive. + + ![](/images/modmii/modmii-wizard-12.png) + +1. Confirm your settings are correct, and then press `Finish`. Once you press the button, ModMii will begin to process and download files in the background, and will automatically generate and open a guide for you. From here, you should follow the guide generated by ModMii. + + ![](/images/modmii/modmii-wizard-13.png) ### SysCheck Updater Wizard -[SysCheck](syscheck) is a homebrew application that analyzes the modifications on a Wii.
You can give a SysCheck report to ModMii to help identify & update outdated mods. +The SysCheck Updater Wizard is a tool that utilizes the homebrew app [SysCheck](syscheck) to analyze any modifications on your Wii, especially IOS and cIOS. It accepts a `syscheck.csv` file generated by the app, and then provides any nessecary updates as needed. -You can have ModMii analyze a SysCheck by dragging the `syscheck.csv` file onto ModMii.exe. Alternatively, you can launch the SysCheck Updater Wizard (`SU`) from ModMii's main menu and manually browse for the file. +1. Open ModMii Classic and enter in `SU` to open the SysCheck Updater Wizard. + + ![](/images/modmii/syscheck-wizard-1.png) + +1. Follow the instructions in the window if you don't already have a SysCheck log, and then drag and drop the `syscheck.csv` file from Windows Explorer into the window. This will paste the location of the file, from which you can press Enter. + + ![](/images/modmii/syscheck-wizard-2.png) + +1. The program will analyze your SysCheck file, and will provide options for you depending on what it sees. In this example instance, the mods on the Wii were up-to-date, but there were several unnecessary IOSes that could be stubbed. If you want to make these changes to your Wii, simply enter in `Y` and press Enter. From here, you should follow the guide generated by ModMii. + + ![](/images/modmii/syscheck-wizard-3.png) ### HackMii Solutions Wizard -The HackMii Solutions wizard can help fix symptoms like these: +The HackMii Solutions Wizard is a tool that fixes problems that may arise from things like Darkcorp/CIOSSPAGHETTI by installing clean IOSes. Examples of problems that may arise because of this are listed below: + HackMii Installer not prompting "Press (1) to continue" -+ HackMii Installer says "no vulnerable IOS found!" -+ Homebrew Channel is displaying upside-down ++ HackMii Installer saying "no vulnerable IOS found!" ++ Homebrew Channel displaying upside-down -It will install clean IOSs to allow for the HackMii Installer to operate properly. +1. Open ModMii Skin or ModMii Classic and select the HackMii Solutions option. -### Abstinence Wizard + ![](/images/modmii/hackmii-wizard-1.png) -This wizard requires an SD card. -{: .notice--warning} +1. Select your current System Menu version, followed by the System Menu Region, following the instructions in the program. If you are still confused, check the bottom option on each screen for an instructional video. -This wizard allows you to enjoy many of the benefits of a softmodded Wii without installing any permanent modifications to your Wii. It will allow you to launch an exploit to boot an from emulated NAND from external storage, rather than use your Wii's internal NAND. + ![](/images/modmii/hackmii-wizard-2.png) -You can also make a NAND backup without modifying your Wii at all by navigating to ModMii's "Support" folder and launching `Casper2BootMii.bat`.
It will save some files to a folder named `COPY_TO_SD`; copy the files inside it to your SD card and launch an exploit like [Wilbrand](wilbrand). +1. Select the exploit you would like to use to mod your Wii. The exploits below are outlined throughout this website, but in most cases we would reccommend using Wilbrand if you have an SD card on hand. -When following one of the exploit guides above, avoid replacing the `boot.elf` file. -{: .notice--warning} + ![](/images/modmii/hackmii-wizard-3.png) +1. If you selected the Wilbrand option in the previous step, enter your Wii's MAC address. If you don't know how to check your Wii's MAC address, enter `Help` in the text box for an instructional video. -
-Click here for a full list of available tools. + ![](/images/modmii/hackmii-wizard-4.png) -| Tool | Description | -| --------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| W = ModMii Wizard <-- Start Here to Mod Your Wii! | This option can be used to mod your Wii for the first time or re-mod a Wii that has been previously modded. | -| SU = SysCheck Updater Wizard (update only your outdated softmods) | This option is useful for people who have old modifications installed to their wii such as DarkCorp/Ciosspaghetti that can potetially cause problems for the latest homebrew custom firmware. | -| U = USB-Loader Setup Wizard | This option will help you properly set up your USB loader to be able to load your disk backups from an SD or USB hard drive. | -| H = HackMii Solutions Wizard (Upside-Down HBC\No Vulnerable IOS Fix) | This option is useful for people who are having trouble getting the HackMii Installer to work, or if they just simply have an upside down homebrew channel, or if DarkCorp/Ciosspaghetti was installed and there was no homebrew channel. | -| AW = Abstinence Wizard (Non-permanent Wii Hacks) | This option is useful for people who dont want to make any permanent modifications to their Wii but still want to have some of the benefits that homebrew can offer. | -| RC = Region Change Wizard | This option can be used to change the region of your Wii without bricking it (this is the best region changer tutorial available on the internet!). | -| S = SNEEK Installation, EmuNAND Builder\Modifier, Game Bulk Extractor | This option will help you properly set up an EmuNAND (aka neek2o) onto your SD or USB. benefits for emunand include extra storage space for save games or channels. and the benefit of not making any permanent modifications to your Wii. | -| F = open a File or Folder with ModMii for many more functions! | This option is an advanced tool especially helpful for developers. | -| 1 = Download Page 1 (System Menus, IOSs, MIOSs, Channels, etc.) | This option opens the first download page that includes most of the key parts for the system menu (downloaded from NUS). | -| 2 = Download Page 2 (Apps, USB-Loader Files, CheatCodes, etc.) | This option opens the second download page that includes exploits and useful apps for your Wii including some PC programs. | -| 3 = Download Page 3 (System Menu Themes) | This option opens the third download page that includes some system menu themes and items required to install system menu themes (base apps are downloaded from NUS). | -| 4 = Download Page 4 (cIOSs and cMIOSs) | This option opens the fourth download page that includes cIOSes and cMIOSes for use in USB loaders. It is recommended to just install the recommended cioses unless you plan to do some testing. | -| A = Advanced Downloads and Forwarder DOL\ISO Builder | This option is an advanced tool used to better customize downloads or allow you to build a dol executable useful for fowarders (channels on the system menu to access Wii applications). | -| L = Load Download Queue | This option will download all of the required titles need for the Wii system menu (titles are downloaded from NUS) | -| C = Build Config Files for Bootmii, Wad Manager or Multi-Mod Manager | This option will help you build configuration files required for certain applications. | -| FC = File Cleanup & App Updater: Update Apps and\or remove un-needed files | This option is useful for people who want to clean out their SD or USB of apps deemed outdated, useless, or otherwise depreciated. | -| M = ModMii Skin Mode: use your mouse instead of your keyboard! | This option will launch ModMii skin mode. Some advanced options may not be available in this view. | +1. Verify where you would like to save files for your SD Card and/or USB Drive. -
+ ![](/images/modmii/modmii-wizard-12.png) -
-Click here for a full list of available options. +1. Confirm your settings are correct, and then press `Finish`. Once you press the button, ModMii will begin to process and download files in the background, and will automatically generate and open a guide for you. From here, you should follow the guide generated by ModMii. After finishing this guide, it is recommended that you use the [SysCheck Updater Wizard](#syscheck-updater-wizard) to undo any other problematic modifications on your Wii. -| Option | Description | -| ---------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| D = Change Drive letter: | Changes where your SD files are saved to. | -| DU = Change Drive letter for USB: | Changes where your USB files are saved to. | -| d2x = change d2x cIOS version built: | Changes the cios version ModMii downloads. | -| H = Hermes cIOSs (202 & 222-224) will also be recommended | Enables Hermes IOS to be recommended and downloaded in the syscheck updater (will be stubbed if disabled). | -| CM = cMIOS included in recommended cIOSs | Enables cMIOS to be recommended and downloaded in the syscheck updater (will install stock MIOS if disabled). | -| E = Extra Brick Protection in ModMii Wizard Guides | Enables ModMiis Extra Brick Protection IOSes to be recommended and used in the syscheck updater tool. | -| U = Update IOSs. Wizard/SysCheck-Updater to update Active IOSs | Updates Existing IOSes to the latest version available on NUS. | -| AU = Auto-Updating downloads will skip update check if cached | Will skip downloading the files if already in the queue. | -| FWD = Install USB-Loader Forwarder in ModMii Wizard Guides | Will include the USB loader forwarder wad file in the USB loader wizard guides. | -| PC = PC Programs Save Location | Changes the save location for the downloadable PC programs. | -| RS = Root Save: Save IOSs\MIOSs to Root instead of WAD Folder | Saves IOSs\MIOSs to Root instead of WAD Folder. | -| 1 = Do not Keep 00000001 or NUS Folders for IOSs\MIOSs\SMs etc | Deletes the folder used for compiling the wad file and just gives you the wad file. | -| n2o = neek2o - build mod of s\uneek instead of original | Uses a better modified version of neek2o in the EmuNAND builder. | -| SSD = SNEEK and SNEEK+DI SD Access | Allows for SNEEK and SNEEK+DI access on the SD card. | -| F = Font.bin Colour for SNEEK/UNEEK | Changes the font color for neek2o. | -| SV = SNEEK Verbose Output | Displays extra information regarding EmuNAND. | -| V = Verbose for ModMii Skin & nandBinCheck | Displays another window with extra information regarding a nand check. | -| SO = Play sound at Finish | Plays a fun jingle after a successful download. | -| A = Auto-Update ModMii at program start | Will automatically check for updates when ModMii is launched. | -| N = Check for New versions of ModMii right now | Will check online for a ModMii update. | - -
+ ![](/images/modmii/hackmii-wizard-5.png) [Click here to view all of our tutorials that you can find on this website!](site-navigation) {: .notice--info} diff --git a/_pages/no_NO/nintendont.md b/_pages/no_NO/nintendont.md new file mode 100644 index 000000000..d7eef1b3f --- /dev/null +++ b/_pages/no_NO/nintendont.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="410.html" %} diff --git a/_pages/no_NO/recommended-homebrew.md b/_pages/no_NO/recommended-homebrew.md index b2bada15a..2d3869c77 100644 --- a/_pages/no_NO/recommended-homebrew.md +++ b/_pages/no_NO/recommended-homebrew.md @@ -16,7 +16,7 @@ Homebrew that has the ability to make permanant changes to your Wii are highligh + [**AnyRegion Changer ME**](https://oscwii.org/library/app/ARCME) - ModMii edition of AnyRegion Changer. While a powerful tool for changing region settings, it can also lead to severe bricks like [Korean Kii/Error 003](bricks#korean-kiierror-003-brick) so **only use this app if you know what you are doing**. + [**WiiXplorer-SS**](https://oscwii.org/library/app/wiixplorer-ss) - A modified and updated version of WiiXplorer. A file manager for the Wii, it allows you to view and customize files both on an SD card, a USB device, and the internal Wii memory. For this reason it is a very powerful but also dangerous tool - don't modify files on the system NAND unless you know what you are doing, as it can lead to various types of [bricks](bricks). + [**SaveGame Manager GX**](https://oscwii.org/library/app/SaveGame_Manager_GX) - A savegame/Mii extractor for the Wii. It supports GameCube memory cards (physical and virtual), emuNANDs, normal and protected saves, themes, and more. -+ [**MyMenuifyMod**](https://oscwii.org/library/app/mymenuifymod) - An application that allows you to theme the Wii Menu. While quite useful to make your Wii unique, it also has the ability to cause a [minor brick](bricks#theme-brick), so make sure to read our [theme guide](themes) for safe usage instructions. ++ [**csm-installer**](https://oscwii.org/library/app/csm-installer) - An application that allows you to theme the Wii Menu. While quite useful to make your Wii unique, it also has the ability to cause a [minor brick](bricks#theme-brick), so make sure to read our [theme guide](themes) for safe usage instructions. + [CleanRip](https://oscwii.org/library/app/CleanRip) - A tool to backup GameCube and Wii discs. Further information can be found in our [disc dumping guide](dump-games). + [**d2x cIOS installer**](https://oscwii.org/library/app/d2x-cios-installer) - A custom installer for Wii IOS, some of which is required for the functioning of certain software like USB loaders. You can see the guide [here](cios). + [FTPii](https://oscwii.org/library/app/ftpii) - An FTP server for your Wii, allowing you to transfer files across the network. diff --git a/_pages/no_NO/riiconnect24.md b/_pages/no_NO/riiconnect24.md index 0c3b78918..d1e91b7e8 100644 --- a/_pages/no_NO/riiconnect24.md +++ b/_pages/no_NO/riiconnect24.md @@ -1,138 +1,5 @@ --- -title: "RiiConnect24" +title: Redirecting... --- -{% include toc title="Table of Contents" %} - -If you need help with anything regarding this tutorial, please join [the RiiConnect24 Discord server](https://discord.gg/rc24) (recommended) or [e-mail us at support@riiconnect24.net](mailto:support@riiconnect24.net). -{: .notice--primary} - -[RiiConnect24](https://rc24.xyz/) allows you to use discontinued services from WiiConnect24, which include the News, Forecast, Everybody Votes, Nintendo and Check Mii Out Channel, along with Wii Mail. - -It's recommended to set your Wii to the current time before proceeding. Follow [this tutorial](wiiconnect24#updating-rtc-clock) in order to set it. -{: .notice--warning} - -DO NOT INSTALL RIICONNECT24 ON A WII MINI! It will not work and it will brick the system. -{: .notice--danger} - -### Requirements - -If you are on vWii, you will also need [Priiloader](priiloader) installed with the WC24 hacks. -{: .notice--primary} - -+ An SD card or USB drive -+ A Wii with an Internet connection -+ A PC with an Internet connection -+ [RiiConnect24 Patcher (Windows, Mac and Linux)](https://github.com/riiconnect24/RiiConnect24-Patcher/releases) -+ [YAWM ModMii Edition](https://oscwii.org/library/app/yawmme) - -### Instructions - -#### Section I - Using RiiConnect24 Patcher - -1. Click the link above to go to the GitHub page where the patcher is. -1. Download `RiiConnect24Patcher.bat` if you are on Windows, and `RiiConnect24Patcher.sh` if you are on a Unix system -1. Run the RiiConnect24 patcher. - + On Windows run `RiiConnect24Patcher.bat`. - + On macOS/Linux systems, open Terminal and type `bash`, then drag `RiiConnect24Patcher.sh` into the terminal then press enter. It should look like this: `bash //RiiConnect24Patcher.sh`. -1. Press 1 to choose "`Start`" and confirm your selection by pressing `ENTER`. - - ![](/images/riiconnect24/patcher/1.JPG) - -1. Select the device you're patching for. - - ![](/images/riiconnect24/patcher/2.JPG) - -1. For this guide, choose "`Install RiiConnect24 on your Wii`" - - ![](/images/riiconnect24/patcher/3.JPG) - -1. Choose "`Express (Recommended)`". It will give you everything you need. - - ![](/images/riiconnect24/patcher/4.JPG) - -1. Select your region. - - ![](/images/riiconnect24/patcher/5.JPG) - -1. While you're at it, RiiConnect24 Patcher can additionally download some other optional channels that do not use RiiConnect24. `[X]` represents the options that selected. Just press 5 and `ENTER` if you're not interested. - - ![](/images/riiconnect24/patcher/6.JPG) - -1. Connect your SD Card or USB Drive to your computer and select "`1`". - - ![](/images/riiconnect24/patcher/7.JPG) - -1. If your device was detected successfully, select "`1`". If not, make sure there's a folder called `apps` on your SD Card or USB Drive and try again. - - ![](/images/riiconnect24/patcher/8.JPG) - -1. The patcher will download apps now - please be patient. - - ![](/images/riiconnect24/patcher/9.JPG) - -1. Once you reach the screen that says `Patching done`, you can exit the patcher. All the files should already be on your SD card. - - ![](/images/riiconnect24/patcher/10.JPG) - - ![](/images/riiconnect24/patcher/11.PNG) - -1. If it did not copy everything automatically to your SD Card or USB Device, copy the `WAD` and `apps` folder next to `RiiConnect24Patcher.bat` or `RiiConnect24Patcher.sh` to your SD Card or USB Device. - -#### Section II - Installing WADs - -If you are using Dolphin, you have finished the guide. Install the WADs by going to `Tools -> Install WAD` within Dolphin. -{: .notice--primary} - -You will now install the patched IOS and Channel WADs that are required to use RiiConnect24. - -1. Extract the YAWM ModMii Edition `.zip` file, and copy the `apps` folder to your SD card or USB drive. -1. Put your SD card or USB drive in your Wii. -1. Launch the Homebrew Channel on your Wii. -1. Launch YAWM ModMii Edition. -1. Select the device you have put the RiiConnect24 files on. -1. Highlight all the WADs in the `wad` folder by pressing the + Button to select them. When all of the WADs are selected, press A twice to install the WADs. -1. After they are successfully installed, press the HOME Button to exit back to the Homebrew Channel. - -#### Section III - Patching nwc24msg.cfg - -You will now patch your `nwc24msg.cfg` file which is required in order to use Wii Mail. - -1. Launch RiiConnect24 Mail Patcher. -1. It should only take a few seconds to patch your nwc24msg.cfg. When it's done, press the HOME Button to exit. - -#### Section IV - Connecting to RiiConnect24 - -The old DNS server `164.132.44.106` has been deprecated as of `June 1st, 2023` and is no longer available to use. -{: .notice--warning} - -If you're getting errors such as `WiiConnect24 and Wii Shop Channel currently not being offered in your country`, go to Wii Settings -> Last Page -> Country and change it to United Kingdom. You will get this error when using a country that RiiConnect24 does not support. -{: .notice--warning} - -If you get error 107245, you did not install the patched IOS.
If you get error 220602, see [this](faq#for-riiconnect24-users) page.
If you get error 107304, see [this](faq#for-riiconnect24-users-1) page.
-{: .notice--warning} - -You will now set your DNS to RiiConnect24 servers. This is optional but recommended, because it enhances the use of RiiConnect24 and Wiimmfi by making some other features available. - -1. Go to `Wii Options`. -1. Go to `Wii Settings`. -1. Go to `Page 2`, then click on `Internet`. -1. Go to `Connection Settings`. -1. Select your current connection. -1. Go to `Change Settings`. -1. Go to `Auto-Obtain DNS` (Not IP Address), then select `No`, then `Advanced Settings`. -1. Type in `167.86.108.126` as the primary DNS. -1. Type in `1.1.1.1` as the secondary DNS. -1. Select `Confirm`, then select `Save`. -1. Select `OK` to perform a connection test. -1. If the connection test was successful, select `No` to skip the Wii System Update. -1. Go to `WiiConnect24`, then `WiiConnect24` again, and make sure it is enabled. -1. Back on the WiiConnect24 menu, go to `Standby Connection` and make sure it is enabled. -1. At `Slot Illumination`, we recommend you set the disc light to `Dim` or `Bright`, but this is optional. -1. Finally, go to the `Internet` section, then `User Agreements` or `Agreement/Contact`, then `Yes`. Please read through this. - -[Return to WiiConnect24](wiiconnect24) -{: .notice--info} - -[Click here to view all of our tutorials that you can find on this website!](site-navigation) -{: .notice--info} +{% include redirect.html redirect_to="https\://www\.wiilink24.com/guide/install/" %} diff --git a/_pages/no_NO/riitag.md b/_pages/no_NO/riitag.md new file mode 100644 index 000000000..e6b6bc322 --- /dev/null +++ b/_pages/no_NO/riitag.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="https\://wiki.hacks.guide/wiki/RiiTag" %} diff --git a/_pages/no_NO/riivolution.md b/_pages/no_NO/riivolution.md new file mode 100644 index 000000000..d7eef1b3f --- /dev/null +++ b/_pages/no_NO/riivolution.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="410.html" %} diff --git a/_pages/no_NO/themes.md b/_pages/no_NO/themes.md index e66d34e85..cff33ce4f 100644 --- a/_pages/no_NO/themes.md +++ b/_pages/no_NO/themes.md @@ -4,13 +4,16 @@ title: "Installing Wii Menu Themes" {% include toc title="Table of Contents" %} -This guide is intended to be the last you will ever need when it comes to theming on the Wii, not only providing instructions for the Wii Menu through MyMenuifyMod, but also with themes on WiiFlow Lite, USB Loader GX, and The Homebrew Channel. Additionally, forwarders are covered. +This guide is intended to be the last you will ever need when it comes to theming on the Wii, not only providing instructions for the Wii Menu through csm-installer, but also with themes on WiiFlow Lite, USB Loader GX, and The Homebrew Channel. Additionally, forwarders are covered. ### Wii Menu Theming DO NOT CONTINUE WITH THIS GUIDE UNLESS YOU HAVE ADEQUATE BRICK PROTECTION, SPECIFICALLY [BOOTMII](bootmii) AND [PRIILOADER](priiloader)! {: .notice--danger} +This tutorial does not work on the Wii mini. Do not attempt this tutorial on the Wii mini or it will cause a [brick](bricks#theme-brick). +{: .notice--warning} + csm-installer has built in safety features to prevent from installing bad or corrupt Wii Menu themes, so please opt to use it instead of other theme installation homebrew. {: .notice--warning} diff --git a/_pages/no_NO/usbloadergx.md b/_pages/no_NO/usbloadergx.md new file mode 100644 index 000000000..00a63864a --- /dev/null +++ b/_pages/no_NO/usbloadergx.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-loaders.html" %} diff --git a/_pages/no_NO/wiibackupmanager.md b/_pages/no_NO/wiibackupmanager.md new file mode 100644 index 000000000..063d7bba0 --- /dev/null +++ b/_pages/no_NO/wiibackupmanager.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-backups.html" %} diff --git a/_pages/no_NO/wiiconnect24.md b/_pages/no_NO/wiiconnect24.md index 894f24c37..ad0a4b6fc 100644 --- a/_pages/no_NO/wiiconnect24.md +++ b/_pages/no_NO/wiiconnect24.md @@ -3,44 +3,21 @@ title: "WiiConnect24" --- {% include toc title="Table of Contents" %} + -This guide provides different means of regaining WiiConnect24 functionality on your console. Although not at all nessecary, it is a "nice to have" feature that was originally used for online connectivity in certain applications on the console. These apps include the Forecast/News Channel, Nintendo Channel, Check Mii Out Channel, some Japan-exclusive channels, and more. Please bear in mind, the functionality you gain depends entirely on what service(s) you use. +[WiiConnect24](https://wikipedia.org/wiki/WiiConnect24) was a service that allowed users with Internet connected Wiis to view the weather & local news, send messages to friends, participate in Mii contest, and more. WiiConnect24 was discontinued on June 27th, 2013. -### Service Overview +## RiiConnect24 + WiiLink +[RiiConnect24](https://rc24.xyz) is a revival service for WiiConnect24 that started in 2015, which allows you to regain its functionality on your console. As of late 2023, the service is now owned by WiiLink, a project that started in 2020 that was previously aiming at the Japanese-exclusive channels. -#### Note about service compatibility: -Both services listed below are compatible with one another and can be loaded on the same console. With this said, it should be noted that when installing one channel over the other (WiiLink's Forecast Channel over RiiConnect24's Forecast Channel for example), the channel you are installing will overwrite the old one. - - -#### Service Support Status -✅ - In support
⚠️ - In development
⛔ - No support - -| Service Name | WiiLink | RiiConnect24 | -| ----------------------- | ------- | ------------ | -| Forecast Channel | ✅ | ✅ | -| News Channel | ⚠️ | ✅ | -| Wii Mail | ✅ | ✅ | -| Everybody Votes Channel | ✅ | ✅ | -| Nintendo Channel | ✅ | ✅ | -| Check Mii Out Channel | ⚠️ | ✅ | -| Wii Room | ✅ | ⛔ | -| Food Channel | ✅ | ⛔ | -| Photo Prints Channel | ✅ | ⛔ | -| Kirby TV Channel | ✅ | ⛔ | -| TV Guide Channel | ⚠️ | ⛔ | - -#### WiiLink -A newer WC24/Japanese channel revival service that started in 2020, but is rapidly regaining functionality in many different channels. - -Service support status can be found [here](https://www.wiilink24.com/status).
Their guide can be found [here](https://www.wiilink24.com/guide). - -#### RiiConnect24 -The longest lasting WC24 revival service, currently only with support for the worldwide WC24 channels as well as mail services. - -Service support status can be found [here](https://rc24.xyz/stats/).
RiiConnect24 currently does not have a self-hosted guide, however you can find ours [here](riiconnect24). +There is a patcher that ships both of these services together as one - meaning you get all of the international and Japanese-only channels in one package. The guide on how to install these services can be found [on WiiLink's website.](https://www.wiilink24.com/guide/) + ### Updating RTC Clock -If you choose to install either of these services on your Wii, it is advised to synchronize its external clock in order to prevent various issues (such as inability to use said services) that may arise otherwise. The steps to do so can be found below: #### What you need + A working Internet connection on your Wii diff --git a/_pages/no_NO/wiiflow.md b/_pages/no_NO/wiiflow.md new file mode 100644 index 000000000..00a63864a --- /dev/null +++ b/_pages/no_NO/wiiflow.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-loaders.html" %} diff --git a/_pages/pl_PL/410.md b/_pages/pl_PL/410.md new file mode 100644 index 000000000..21f077b23 --- /dev/null +++ b/_pages/pl_PL/410.md @@ -0,0 +1,12 @@ +--- +title: Page no longer exists +sitemap: false +--- + +The page you are trying to view used to exist, but it has since been removed. Maybe the instructions you are following are outdated? (If you got here from a link on this guide, [let us know](https://github.com/hacks-guide/Guide_Wii/issues)) + +[Click here to go back to the site index.](site-navigation) +{: .notice--info} + +![](https://http.cat/410) +{: .notice--info} diff --git a/_pages/pl_PL/bootmii.md b/_pages/pl_PL/bootmii.md index 76b3e18ad..9001b59c7 100644 --- a/_pages/pl_PL/bootmii.md +++ b/_pages/pl_PL/bootmii.md @@ -6,21 +6,9 @@ title: "BootMii Backup" You need an **SD card** to create a NAND backup using BootMii. If you do not have one, you can skip this page, although it is highly recommended to make a NAND backup if you can. -Family edition Wiis (Wiis without GameCube ports) CANNOT restore NAND backups. This is because of the lack of GameCube ports which are required on non-boot2 Wiis to enter the restoration confirmation code. Regardless, it is still recommended to make one on these consoles. -{: .notice--danger} - You need an **SD card** to use BootMii at all, but especially to create a NAND backup. If you do not have an SD card on hand right now, you can skip this page, but it is HIGHLY RECOMMENDED to return to this page later to back up your NAND. {: .notice--warning} -Navigating BootMii is not possible using a Wii Remote. You must use the POWER and RESET buttons on your console, or a GameCube controller plugged into port 1. To navigate between options, press POWER on your Wii (or left/right on the +Control Pad on a GameCube controller). To select an option, press RESET on your Wii or A on your GameCube controller. One of BootMii's most important features is the ability to backup and restore your Wii's NAND storage. We will be going over how to perform a NAND backup. You can then restore from that backup for any reason. -{: .notice--info} - -If the `Launch BootMii` button does not appear, please [re-launch the HackMii Installer](hackmii) and install BootMii. -{: .notice--warning} - -If the screen stays black and the blue disc drive light is blinking, you are missing the BootMii files on your SD card. Download [this zip file](https://static.hackmii.com/bootmii_sd_files.zip) and extract it to the root of your SD card, then try again. -{: .notice--warning} - ### Requirements * An SD card with at least 512MB of free space @@ -36,10 +24,19 @@ If you have BootMii installed as boot2 you will need to launch BootMii by restar ![](/images/bootmii/BootMii_HBC.png) + If the `Launch BootMii` button does not appear, please [re-launch the HackMii Installer](hackmii) and install BootMii. + {: .notice--warning} + + If the screen stays black and the blue disc drive light is blinking, you are missing the BootMii files on your SD card. Download [this zip file](https://static.hackmii.com/bootmii_sd_files.zip) and extract it to the root of your SD card, then try again. + {: .notice--warning} + 1. You should see an image similar to the below now on your screen: ![](/images/bootmii/BootMii_Main.png) + Navigating BootMii is not possible using a Wii Remote. You must use the POWER and RESET buttons on your console, or a GameCube controller plugged into port 1. To navigate between options, press POWER. To select an option, press RESET. + {: .notice--info} + 1. Select the Options button (the icon with the gears). ![](/images/bootmii/BootMii_Gears.png) @@ -65,7 +62,7 @@ If you have BootMii installed as boot2 you will need to launch BootMii by restar
Please be reminded that restoring a NAND backup is usually a last resort, and that there often better ways to fix your brick. There often better ways to unbrick your console. Try your best to [identify your brick condition](bricks) and reverse the action that caused it in the first place. -To restore from a NAND backup on your SD card, you can follow the instructions for [RestoreMii](bootmiirecover). +To restore from a NAND backup on your SD card, you can follow the instructions for [RestoreMii](bootmiirecover). **Family edition Wiis (Wiis without GameCube ports) CANNOT restore NAND backups.**
BootMii as boot2 is recommended, but only available to install on early Wii consoles. Otherwise, it can only be installed as an IOS. If you would like to change this, you can use the app [BootMii Config Editor](https://oscwii.org/library/app/BootMiiConfigurationEditor). Or, you can edit `sd:/bootmii/bootmii.ini` manually. diff --git a/_pages/pl_PL/bricks.md b/_pages/pl_PL/bricks.md index 0ac1715c0..89ea939a6 100644 --- a/_pages/pl_PL/bricks.md +++ b/_pages/pl_PL/bricks.md @@ -111,7 +111,7 @@ Attempt to start the Wii - warning/press A screen shows up, and when A is presse A theme brick occurs when a wrongly formatted theme is installed. #### Solutions -To resolve this issue, open HBC through Priiloader and access MyMenuifyMod to install a default theme. Alternatively, go into [YAWM ModMii Edition](yawmme) and install the CORRECT default Wii Menu WAD for your region and version. +To resolve this issue, open HBC through Priiloader or BootMii as boot2 and access csm-installer to install a default theme such as the base Wii Menu theme. Alternatively, go into [YAWM ModMii Edition](yawmme) and install the CORRECT default Wii Menu WAD for your region and version. ## Mail brick diff --git a/_pages/pl_PL/cios.md b/_pages/pl_PL/cios.md index ccda6f975..1f7da7abd 100644 --- a/_pages/pl_PL/cios.md +++ b/_pages/pl_PL/cios.md @@ -65,6 +65,12 @@ Select cIOS version: 65535 ![](/images/cios/d2x_v11_248.png) + The warning "`(c)IOS detected in slot ### will be overwriitten`" can be safely ignored. + {: .notice--info} + + If you are seeing "`Slot ### already used in batch settings`" or "`cIOS already added in batch with revision ##### and slot ###`", press `-` to disable batch mode.
(If you are trying to exit the installer, the button is B, not Home.) + {: .notice--info} + 1. Press `A`. This will bring you to the slot map: ![](/images/cios/d2x_summary.png) diff --git a/_pages/pl_PL/dosanddonts.md b/_pages/pl_PL/dosanddonts.md new file mode 100644 index 000000000..6ceed5bee --- /dev/null +++ b/_pages/pl_PL/dosanddonts.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="faq.html" %} diff --git a/_pages/pl_PL/hbc.md b/_pages/pl_PL/hbc.md index c320f2693..776b76d7c 100644 --- a/_pages/pl_PL/hbc.md +++ b/_pages/pl_PL/hbc.md @@ -6,7 +6,7 @@ title: "Homebrew Channel and BootMii Installation" The Homebrew Channel is where you will go to launch homebrew applications. BootMii is a piece of software that can backup and restore your Wii's NAND storage, and if installed in boot2, provides brick protection. -BootMii can be installed in two ways: directly to a part of the Wii bootloader called boot2, and via an IOS. BootMii under boot2 is preferred as it provides extended brick protection, but Wiis with a vulnerable boot2 are considerably rarer, having been manufactured before 2009. In most cases, installing BootMii as IOS should be fine, as long as you also install [Priiloader](priiloader). +BootMii can be installed in two ways: directly to a part of the Wii bootloader called boot2, and via an IOS. BootMii under boot2 is preferred as it provides extended brick protection, but Wiis with a vulnerable boot1 that allows this installation are considerably rarer, having been manufactured before 2009. In most cases, installing BootMii as IOS should be fine, as long as you also install [Priiloader](priiloader). {: .notice--info} If you do not have an SD card, you cannot install nor use BootMii, and therefore will not be able to utilize any of the mentioned benefits.
You can always [install it at a later date](hackmii). diff --git a/_pages/pl_PL/modmii.md b/_pages/pl_PL/modmii.md index b444a86b7..3c62041d1 100644 --- a/_pages/pl_PL/modmii.md +++ b/_pages/pl_PL/modmii.md @@ -4,116 +4,190 @@ title: "ModMii" {% include toc title="Table of Contents" %} -If you need help for anything regarding this tutorial, please join [the ModMii Discord server](https://discord.gg/cMnBRACQwQ). -{: .notice--info} - This Program does NOT come with a warranty, so you are responsible for any potential damage done to your Wii. {: .notice--warning} This program is NOT intended to be used for the vWii or the Wii mini. Some tools may or may not work for these platforms. {: .notice--warning} -/images/Modmii/modmii.png +ModMii is an all-in-one Wii hacking tool for Windows created by XFlak that has various helpful tools for modding. It can accomplish the following: -Some advanced options may not be accessible in ModMii Skin. A list of the various activities for ModMii Classic can be found at the bottom of the page. -{: .notice--info} ++ Hacking the console for the first time, or re-hacking it ++ Check for and update outdated softmods ++ Fix upside-down Homebrew Channel problems ++ Run homebrew without making any changes to your Wii's NAND ++ Download homebrew ++ And more! -### Requirements +### ModMii Overview + +There are two different ways to use ModMii. There is ModMii Classic, which uses a command line interface, but has all of the features available to the program. ModMii Skin has a graphical user interface, on the other hand, but has less options available to the user. If you're looking to simply mod your Wii for the first time, ModMii Skin should suffice. Otherwise, we reccomend using ModMii Classic where possible.
The chart below will help you determine what can be done in either interface. + +| Tools | ModMii Classic | ModMii Skin | +| -------------------------- | -------------- | ----------- | +| ModMii Wizard | ✅ | ✅ | +| SysCheck Updater Wizard | ✅ | ⛔ | +| USB Loader Setup Wizard | ✅ | ✅ | +| HackMii Solutions Wizard | ✅ | ✅ | +| Abstinence Wizard | ✅ | ✅ | +| Region Change Wizard | ✅ | ✅ | +| SNEEK/EmuNAND Installation | ✅ | ✅ | +| Open File Function | ✅ | ⛔ | +| Load Download Queue | ✅ | ✅ | +| Download Page 1/2/3/4 | ✅ | ⛔ | +| Advanced Downloads | ✅ | ⛔ | +| Load Download Queue | ✅ | ⛔ | +| Build Config Files | ✅ | ⛔ | +| File Cleanup & App Updater | ✅ | ⛔ | + +
+Click here for a detailed explanation of each tool. + +| Tool | Description | +| --------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| W = ModMii Wizard <-- Start Here to Mod Your Wii! | This option can be used to hack your Wii for the first time or re-hack a Wii that has been previously modded. | +| SU = SysCheck Updater Wizard (update only your outdated softmods) | This option checks for and updates old modifications installed to their wii such as DarkCorp/CIOSSPAGHETTI that can potentially cause problems for the latest homebrew custom firmware. | +| U = USB-Loader Setup Wizard | This option will properly set up your USB loader to be able to load your disk backups from an SD or USB hard drive. This option is not necessary if using the ModMii Wizard. | +| H = HackMii Solutions Wizard (Upside-Down HBC\No Vulnerable IOS Fix) | This option is useful for people who are having trouble getting the HackMii Installer to work or have an upside down homebrew channel. | +| AW = Abstinence Wizard (Non-permanent Wii Hacks) | This option allows you to run homebrew on your Wii without making any permanent modifications to the system NAND. | +| RC = Region Change Wizard | This option can be used to change the region of your Wii without bricking it, and is arguably the best region changing wizard on the internet. | +| S = SNEEK Installation, EmuNAND Builder\Modifier, Game Bulk Extractor | This option will help you properly set up an EmuNAND (aka neek2o) onto your SD or USB. Benefits for EmuNAND include extra storage space for save games or channels, as well as running homebrew without making any permanent modifications to the system NAND. | +| F = open a File or Folder with ModMii for many more functions! | This option is an advanced tool especially helpful for developers. | +| 1 = Download Page 1 (System Menus, IOSs, MIOSs, Channels, etc.) | This option opens the first download page that includes most of the key parts of the Wii System Menu (downloaded from NUS). | +| 2 = Download Page 2 (Apps, USB-Loader Files, CheatCodes, etc.) | This option opens the second download page that includes exploits and useful apps for your Wii including some PC programs. | +| 3 = Download Page 3 (System Menu Themes) | This option opens the third download page that includes some system menu themes and items required to install system menu themes (base apps are downloaded from NUS). | +| 4 = Download Page 4 (cIOSs and cMIOSs) | This option opens the fourth download page that includes cIOSes and cMIOSes for use in USB loaders. | +| A = Advanced Downloads and Forwarder DOL\ISO Builder | This option allows you to download any IOS and cIOS and build custom DOL/ISO forwarders. Intended for advanced users only. | +| L = Load Download Queue | This option loads bundled or previously saved download queues. | +| C = Build Config Files for Bootmii, Wad Manager or Multi-Mod Manager | This option allows you to build customized config files for BootMii, Wad Manager, and Multi-Mod Manager. | +| FC = File Cleanup & App Updater: Update Apps and\or remove un-needed files | This option removes unnessecary files from your SD Card or Hard Drive after finishing softmodding your Wii. | + +

+ +When using ModMii, it is important to note that it will generate a custom guide for you depending on the options that you select. For this reason, this guide will not be focused on how to mod your Wii, as ModMii handles that function. Instead, it will be a quick start guide show you how to effectively use it with the most common options. + +### Installing ModMii + +#### Requirements * A Wii * A USB drive or SD Card * A Windows PC (a Virtual Machine will work) * [ModMii](https://modmii.github.io/) -This is a quick start guide on how to use ModMii on your Windows PC. +#### Installation -### ModMii Wizard +1. Go to the [ModMii website](https://modmii.github.io) and scroll down to the Download section. Here, select the `Installer` option. Your browser may flag the installer as malware, but it is a **false positive**. -You can use the ModMii wizard to softmod any Wii.
Even if the Wii has been softmodded in the past, you can have ModMii overwrite existing softmods by telling ModMii that this is the first time you're modding your Wii (even though it's not). + ![](/images/modmii/modmii-download.png) -You can also use this wizard to set up a USB loader at the same time, instead of having to use the USB Loader setup wizard later on. +2. Open the `ModMiiInstaller.exe` file and go through the setup process. + + ![](/images/modmii/modmii-install.png) + +### Using the ModMii Wizard + +The ModMii Wizard is tool that can softmod your Wii from start to finish, downloading all necessary files and then generating a guide that you can use to implement the softmod. This tool can also be used to overwrite existing softmods on a previously softmodded Wii. + +1. Open ModMii Skin or ModMii Classic and select the ModMii Wizard option at the top of the list. + + ![](/images/modmii/modmii-wizard-1.png) + +1. Answer `Yes` to the first question, unless you have a very specific idea of what you would like to do or update to your Wii. + + ![](/images/modmii/modmii-wizard-2.png) + +1. Select your current System Menu version, followed by the System Menu Region, following the instructions in the program. If you are still confused, check the bottom option on each screen for an instructional video. + + ![](/images/modmii/modmii-wizard-3.png) + +1. Select the exploit you would like to use to mod your Wii. The exploits below are outlined throughout this website, but in most cases we would reccommend using Wilbrand if you have an SD card on hand. + + ![](/images/modmii/modmii-wizard-4.png) + +1. If you selected the Wilbrand option in the previous step, enter your Wii's MAC address. If you don't know how to check your Wii's MAC address, enter `Help` in the text box for an instructional video. + + ![](/images/modmii/modmii-wizard-5.png) + +1. Select your desired System Menu version from the list. + + ![](/images/modmii/modmii-wizard-6.png) + +1. Select whether or not you would like to install any of the listed channels - this is an optional step. + + ![](/images/modmii/modmii-wizard-7.png) + +1. Select whether or not you would like to install a custom Wii theme, with the choice of three theme effects. Each effect deals with how much the outline when hovering over a Wii Channel spins. + + ![](/images/modmii/modmii-wizard-8.png) + +1. Select whether or not you would like to set up a USB Loader for use with your Wii. + + ![](/images/modmii/modmii-wizard-9.png) + +1. If you selected `Yes` in the USB Loader menu, select which USB Loader you would like to use. If you choose an individual one, we reccomend either USB Loader GX or WiiFlow as both are covered on this website, or you may optionally download each option. + + ![](/images/modmii/modmii-wizard-10.png) + +1. If you selected `Yes` in the USB Loader menu, select where you would like to save your USB Loader files at. + + ![](/images/modmii/modmii-wizard-11.png) + +1. Verify where you would like to save files for your SD Card and/or USB Drive. + + ![](/images/modmii/modmii-wizard-12.png) + +1. Confirm your settings are correct, and then press `Finish`. Once you press the button, ModMii will begin to process and download files in the background, and will automatically generate and open a guide for you. From here, you should follow the guide generated by ModMii. + + ![](/images/modmii/modmii-wizard-13.png) ### SysCheck Updater Wizard -[SysCheck](syscheck) is a homebrew application that analyzes the modifications on a Wii.
You can give a SysCheck report to ModMii to help identify & update outdated mods. +The SysCheck Updater Wizard is a tool that utilizes the homebrew app [SysCheck](syscheck) to analyze any modifications on your Wii, especially IOS and cIOS. It accepts a `syscheck.csv` file generated by the app, and then provides any nessecary updates as needed. -You can have ModMii analyze a SysCheck by dragging the `syscheck.csv` file onto ModMii.exe. Or, you can launch the SysCheck Updater Wizard (`SU`) from ModMii's main menu and manually browse for the file. +1. Open ModMii Classic and enter in `SU` to open the SysCheck Updater Wizard. + + ![](/images/modmii/syscheck-wizard-1.png) + +1. Follow the instructions in the window if you don't already have a SysCheck log, and then drag and drop the `syscheck.csv` file from Windows Explorer into the window. This will paste the location of the file, from which you can press Enter. + + ![](/images/modmii/syscheck-wizard-2.png) + +1. The program will analyze your SysCheck file, and will provide options for you depending on what it sees. In this example instance, the mods on the Wii were up-to-date, but there were several unnecessary IOSes that could be stubbed. If you want to make these changes to your Wii, simply enter in `Y` and press Enter. From here, you should follow the guide generated by ModMii. + + ![](/images/modmii/syscheck-wizard-3.png) ### HackMii Solutions Wizard -The HackMii Solutions wizard can help fix symptoms like these: +The HackMii Solutions Wizard is a tool that fixes problems that may arise from things like Darkcorp/CIOSSPAGHETTI by installing clean IOSes. Examples of problems that may arise because of this are listed below: + HackMii Installer not prompting "Press (1) to continue" -+ HackMii Installer says "no vulnerable IOS found!" -+ Homebrew Channel is displaying upside-down ++ HackMii Installer saying "no vulnerable IOS found!" ++ Homebrew Channel displaying upside-down -It will install clean IOSs to allow for the HackMii Installer to operate properly. +1. Open ModMii Skin or ModMii Classic and select the HackMii Solutions option. -### Abstinence Wizard + ![](/images/modmii/hackmii-wizard-1.png) -This wizard requires an SD card. -{: .notice--warning} +1. Select your current System Menu version, followed by the System Menu Region, following the instructions in the program. If you are still confused, check the bottom option on each screen for an instructional video. -This wizard allows you to enjoy many of the benefits of a softmodded Wii without installing any permanent modifications to your Wii. It will allow you to launch an exploit to boot an from emulated NAND from external storage, instead of your Wii's internal NAND. + ![](/images/modmii/hackmii-wizard-2.png) -On a related note, you can also make a NAND backup without modifying your Wii at all. Find ModMii's "Support" folder and launch `Casper2BootMii.bat`.
It will save some files to a folder named `COPY_TO_SD`, copy the files inside it to your SD card and [launch an exploit](get-started). +1. Select the exploit you would like to use to mod your Wii. The exploits below are outlined throughout this website, but in most cases we would reccommend using Wilbrand if you have an SD card on hand. -When following one of the exploit guides above, please avoid replacing the `boot.elf` file. -{: .notice--warning} + ![](/images/modmii/hackmii-wizard-3.png) +1. If you selected the Wilbrand option in the previous step, enter your Wii's MAC address. If you don't know how to check your Wii's MAC address, enter `Help` in the text box for an instructional video. -
-Click here for a full list of available tools. + ![](/images/modmii/hackmii-wizard-4.png) -| Tool | Description | -| --------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| W = ModMii Wizard <-- Start Here to Mod Your Wii! | This option can be used to mod your Wii for the first time or re-mod a Wii that has been previously modded. | -| SU = SysCheck Updater Wizard (update only your outdated softmods) | This option is useful for people who have old modifications installed to their wii such as DarkCorp/Ciosspaghetti that can potetially cause problems for the latest homebrew custom firmware. | -| U = USB-Loader Setup Wizard | This option will help you properly set up your USB loader to be able to load your disk backups from an SD or USB hard drive. | -| H = HackMii Solutions Wizard (Upside-Down HBC\No Vulnerable IOS Fix) | This option is useful for people who are having trouble getting the HackMii Installer to work, or if they just simply have an upside down homebrew channel, or if DarkCorp/Ciosspaghetti was installed and there was no homebrew channel. | -| AW = Abstinence Wizard (Non-permanent Wii Hacks) | This option is useful for people who dont want to make any permanent modifications to their Wii but still want to have some of the benefits that homebrew can offer. | -| RC = Region Change Wizard | This option can be used to change the region of your Wii without bricking it (this is the best region changer tutorial available on the internet!). | -| S = SNEEK Installation, EmuNAND Builder\Modifier, Game Bulk Extractor | This option will help you properly set up an EmuNAND (aka neek2o) onto your SD or USB. benefits for emunand include extra storage space for save games or channels. and the benefit of not making any permanent modifications to your Wii. | -| F = open a File or Folder with ModMii for many more functions! | This option is an advanced tool especially helpful for developers. | -| 1 = Download Page 1 (System Menus, IOSs, MIOSs, Channels, etc.) | This option opens the first download page that includes most of the key parts for the system menu (downloaded from NUS). | -| 2 = Download Page 2 (Apps, USB-Loader Files, CheatCodes, etc.) | This option opens the second download page that includes exploits and useful apps for your Wii including some PC programs. | -| 3 = Download Page 3 (System Menu Themes) | This option opens the third download page that includes some system menu themes and items required to install system menu themes (base apps are downloaded from NUS). | -| 4 = Download Page 4 (cIOSs and cMIOSs) | This option opens the fourth download page that includes cIOSes and cMIOSes for use in USB loaders. It is recommended to just install the recommended cioses unless you plan to do some testing. | -| A = Advanced Downloads and Forwarder DOL\ISO Builder | This option is an advanced tool used to better customize downloads or allow you to build a dol executable useful for fowarders (channels on the system menu to access Wii applications). | -| L = Load Download Queue | This option will download all of the required titles need for the Wii system menu (titles are downloaded from NUS) | -| C = Build Config Files for Bootmii, Wad Manager or Multi-Mod Manager | This option will help you build configuration files required for certain applications. | -| FC = File Cleanup & App Updater: Update Apps and\or remove un-needed files | This option is useful for people who want to clean out their SD or USB of apps deemed outdated, useless, or otherwise depreciated. | -| M = ModMii Skin Mode: use your mouse instead of your keyboard! | This option will launch ModMii skin mode. Some advanced options may not be available in this view. | +1. Verify where you would like to save files for your SD Card and/or USB Drive. -
+ ![](/images/modmii/modmii-wizard-12.png) -
-Click here for a full list of available options. +1. Confirm your settings are correct, and then press `Finish`. Once you press the button, ModMii will begin to process and download files in the background, and will automatically generate and open a guide for you. From here, you should follow the guide generated by ModMii. After finishing this guide, it is recommended that you use the [SysCheck Updater Wizard](#syscheck-updater-wizard) to undo any other problematic modifications on your Wii. -| Option | Description | -| ---------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| D = Change Drive letter: | Changes where your SD files are saved to. | -| DU = Change Drive letter for USB: | Changes where your USB files are saved to. | -| d2x = change d2x cIOS version built: | Changes the cios version ModMii downloads. | -| H = Hermes cIOSs (202 & 222-224) will also be recommended | Enables Hermes IOS to be recommended and downloaded in the syscheck updater (will be stubbed if disabled). | -| CM = cMIOS included in recommended cIOSs | Enables cMIOS to be recommended and downloaded in the syscheck updater (will install stock MIOS if disabled). | -| E = Extra Brick Protection in ModMii Wizard Guides | Enables ModMiis Extra Brick Protection IOSes to be recommended and used in the syscheck updater tool. | -| U = Update IOSs. Wizard/SysCheck-Updater to update Active IOSs | Updates Existing IOSes to the latest version available on NUS. | -| AU = Auto-Updating downloads will skip update check if cached | Will skip downloading the files if already in the queue. | -| FWD = Install USB-Loader Forwarder in ModMii Wizard Guides | Will include the USB loader forwarder wad file in the USB loader wizard guides. | -| PC = PC Programs Save Location | Changes the save location for the downloadable PC programs. | -| RS = Root Save: Save IOSs\MIOSs to Root instead of WAD Folder | Saves IOSs\MIOSs to Root instead of WAD Folder. | -| 1 = Do not Keep 00000001 or NUS Folders for IOSs\MIOSs\SMs etc | Deletes the folder used for compiling the wad file and just gives you the wad file. | -| n2o = neek2o - build mod of s\uneek instead of original | Uses a better modified version of neek2o in the EmuNAND builder. | -| SSD = SNEEK and SNEEK+DI SD Access | Allows for SNEEK and SNEEK+DI access on the SD card. | -| F = Font.bin Colour for SNEEK/UNEEK | Changes the font color for neek2o. | -| SV = SNEEK Verbose Output | Displays extra information regarding EmuNAND. | -| V = Verbose for ModMii Skin & nandBinCheck | Displays another window with extra information regarding a nand check. | -| SO = Play sound at Finish | Plays a fun jingle after a successful download. | -| A = Auto-Update ModMii at program start | Will automatically check for updates when ModMii is launched. | -| N = Check for New versions of ModMii right now | Will check online for a ModMii update. | - -
+ ![](/images/modmii/hackmii-wizard-5.png) [Click here to go back to the site index.](site-navigation) {: .notice--info} diff --git a/_pages/pl_PL/nintendont.md b/_pages/pl_PL/nintendont.md new file mode 100644 index 000000000..d7eef1b3f --- /dev/null +++ b/_pages/pl_PL/nintendont.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="410.html" %} diff --git a/_pages/pl_PL/recommended-homebrew.md b/_pages/pl_PL/recommended-homebrew.md index b2bada15a..2d3869c77 100644 --- a/_pages/pl_PL/recommended-homebrew.md +++ b/_pages/pl_PL/recommended-homebrew.md @@ -16,7 +16,7 @@ Homebrew that has the ability to make permanant changes to your Wii are highligh + [**AnyRegion Changer ME**](https://oscwii.org/library/app/ARCME) - ModMii edition of AnyRegion Changer. While a powerful tool for changing region settings, it can also lead to severe bricks like [Korean Kii/Error 003](bricks#korean-kiierror-003-brick) so **only use this app if you know what you are doing**. + [**WiiXplorer-SS**](https://oscwii.org/library/app/wiixplorer-ss) - A modified and updated version of WiiXplorer. A file manager for the Wii, it allows you to view and customize files both on an SD card, a USB device, and the internal Wii memory. For this reason it is a very powerful but also dangerous tool - don't modify files on the system NAND unless you know what you are doing, as it can lead to various types of [bricks](bricks). + [**SaveGame Manager GX**](https://oscwii.org/library/app/SaveGame_Manager_GX) - A savegame/Mii extractor for the Wii. It supports GameCube memory cards (physical and virtual), emuNANDs, normal and protected saves, themes, and more. -+ [**MyMenuifyMod**](https://oscwii.org/library/app/mymenuifymod) - An application that allows you to theme the Wii Menu. While quite useful to make your Wii unique, it also has the ability to cause a [minor brick](bricks#theme-brick), so make sure to read our [theme guide](themes) for safe usage instructions. ++ [**csm-installer**](https://oscwii.org/library/app/csm-installer) - An application that allows you to theme the Wii Menu. While quite useful to make your Wii unique, it also has the ability to cause a [minor brick](bricks#theme-brick), so make sure to read our [theme guide](themes) for safe usage instructions. + [CleanRip](https://oscwii.org/library/app/CleanRip) - A tool to backup GameCube and Wii discs. Further information can be found in our [disc dumping guide](dump-games). + [**d2x cIOS installer**](https://oscwii.org/library/app/d2x-cios-installer) - A custom installer for Wii IOS, some of which is required for the functioning of certain software like USB loaders. You can see the guide [here](cios). + [FTPii](https://oscwii.org/library/app/ftpii) - An FTP server for your Wii, allowing you to transfer files across the network. diff --git a/_pages/pl_PL/riiconnect24.md b/_pages/pl_PL/riiconnect24.md index d57dfafad..d1e91b7e8 100644 --- a/_pages/pl_PL/riiconnect24.md +++ b/_pages/pl_PL/riiconnect24.md @@ -1,138 +1,5 @@ --- -title: "RiiConnect24" +title: Redirecting... --- -{% include toc title="Table of Contents" %} - -If you need help with anything regarding this tutorial, please join [the RiiConnect24 Discord server](https://discord.gg/rc24) (recommended) or [e-mail us at support@riiconnect24.net](mailto:support@riiconnect24.net). -{: .notice--primary} - -[RiiConnect24](https://rc24.xyz/) allows you to use discontinued services from WiiConnect24, which include the News, Forecast, Everybody Votes, Nintendo and Check Mii Out Channel, along with Wii Mail. - -It's recommended to set your Wii to the current time before proceeding. Follow [this tutorial](rtc) in order to set it. -{: .notice--warning} - -DO NOT INSTALL RIICONNECT24 ON A WII MINI! It will not work and it will brick the system. -{: .notice--danger} - -### Requirements - -Follow [this tutorial](riiconnect24-vwii) if you'd like to install RiiConnect24 on vWii (Wii Mode on Wii U). -{: .notice--primary} - -+ An SD card or USB drive -+ A Wii with an Internet connection -+ A PC with an Internet connection -+ [RiiConnect24 Patcher (Windows, Mac and Linux)](https://github.com/riiconnect24/RiiConnect24-Patcher/releases) -+ [YAWM ModMii Edition](https://oscwii.org/library/app/yawmme) - -### Instructions - -#### Section I - Using RiiConnect24 Patcher - -1. Click the link above to go to the GitHub page where the patcher is. -1. Download `RiiConnect24Patcher.bat` if you are on Windows, and `RiiConnect24Patcher.sh` if you are on a Unix system -1. RiiConnect24 Patcher Main Screen - + On Windows run `RiiConnect24Patcher.bat`. - + On Unix systems, open Terminal and type `bash`, then drag `RiiConnect24Patcher.sh` into the terminal then press enter. It should look like this: `bash RiiConnect24Patcher.sh`. -1. Press 1 to choose "`Start`" and confirm your selection by pressing `ENTER`. - - ![](/images/riiconnect24/patcher/1.JPG) - -1. Select the device you're patching for. - - ![](/images/riiconnect24/patcher/2.JPG) - -1. For this guide, choose "`Install RiiConnect24 on your Wii`" - - ![](/images/riiconnect24/patcher/3.JPG) - -1. Choose "`Express (Recommended)`". It will give you everything you need. - - ![](/images/riiconnect24/patcher/4.JPG) - -1. Select your region. - - ![](/images/riiconnect24/patcher/5.JPG) - -1. While you're at it, RiiConnect24 Patcher can additionally download some other optional channels that do not use RiiConnect24. `[X]` represents the options that selected. Just press 5 and `ENTER` if you're not interested. - - ![](/images/riiconnect24/patcher/6.JPG) - -1. Connect your SD Card or USB Drive to your computer and select "`1`". - - ![](/images/riiconnect24/patcher/7.JPG) - -1. If your device was detected successfully, select "`1`". If not, make sure there's a folder called `apps` on your SD Card or USB Drive and try again. - - ![](/images/riiconnect24/patcher/8.JPG) - -1. The patcher will download apps now - please be patient. - - ![](/images/riiconnect24/patcher/9.JPG) - -1. Once you reach the screen that says `Patching done`, you can exit the patcher. All the files should already be on your SD Card. - - ![](/images/riiconnect24/patcher/10.JPG) - - ![](/images/riiconnect24/patcher/11.PNG) - -1. If it did not copy everything automatically to your SD Card or USB Device, copy the `WAD` and `apps` folder next to `RiiConnect24Patcher.bat` to your SD Card or USB Device. - -#### Section II - Installing WADs - -If you are using Dolphin, you have finished the guide. Install the WADs by going to `Tools -> Install WAD` within Dolphin. -{: .notice--primary} - -You will now install the patched IOS and Channel WADs that are required to use RiiConnect24. - -1. Extract the YAWM ModMii Edition `.zip` file, and copy the `apps` folder to your SD card or USB drive. -1. Put your SD card or USB drive in your Wii. -1. Launch the Homebrew Channel on your Wii. -1. Launch YAWM ModMii Edition. -1. Select the device you have put the RiiConnect24 files on. -1. Highlight all the WADs in the `wad` folder by pressing the + Button to select them. When all of the WADs are selected, press A twice to install the WADs. -1. After they are successfully installed, press the HOME Button to exit back to the Homebrew Channel. - -#### Section III - Patching nwc24msg.cfg - -You will now patch your `nwc24msg.cfg` file which is required in order to use Wii Mail. - -1. Launch RiiConnect24 Mail Patcher. -1. It should only take a few seconds to patch your nwc24msg.cfg. When it's done, press the HOME Button to exit. - -#### Section IV - Connecting - -The old DNS server `164.132.44.106` has been deprecated as of `June 1st, 2023` and is no longer available to use. -{: .notice--warning} - -If you're getting errors such as `WiiConnect24 and Wii Shop Channel currently not being offered in your country`, go to Wii Settings -> Last Page -> Country and change it to United Kingdom. You will get this error when using a country that we don't support. Contact us at [support@riiconnect24.net](mailto:support@riiconnect24.net) if you need more help. -{: .notice--warning} - -If you get error 107245, then you have not installed the patched IOS.
-{: .notice--warning} - -You will now set your DNS to our servers. This is optional but it's recommended, because it enhances the use of RiiConnect24 and Wiimmfi by making some other features available. - -1. Go to `Wii Options`. -1. Go to `Wii Settings`. -1. Go to `Page 2`, then click on `Internet`. -1. Go to `Connection Settings`. -1. Select your current connection. -1. Go to `Change Settings`. -1. Go to `Auto-Obtain DNS` (Not IP Address), then select `No`, then `Advanced Settings`. -1. Type in `167.86.108.126` as the primary DNS. -1. Type in `1.1.1.1` as the secondary DNS. -1. Select `Confirm`, then select `Save`. -1. Select `OK` to perform a connection test. -1. If the connection test was successful, select `No` to skip the Wii System Update. -1. Go to `WiiConnect24`, then `WiiConnect24` again, and make sure it is enabled. -1. Back on the WiiConnect24 menu, go to `Standby Connection` and make sure it is enabled. -1. At `Slot Illumination`, we recommend you set the disc light to `Dim` or `Bright`, but this is optional. -1. Finally, go to the `Internet` section, then `User Agreements` or `Agreement/Contact`, then `Yes`. Please read through this. - -[Return to WiiConnect24](wiiconnect24) -{: .notice--info} - -[Click here to go back to the site index.](site-navigation) -{: .notice--info} +{% include redirect.html redirect_to="https\://www\.wiilink24.com/guide/install/" %} diff --git a/_pages/pl_PL/riitag.md b/_pages/pl_PL/riitag.md new file mode 100644 index 000000000..e6b6bc322 --- /dev/null +++ b/_pages/pl_PL/riitag.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="https\://wiki.hacks.guide/wiki/RiiTag" %} diff --git a/_pages/pl_PL/riivolution.md b/_pages/pl_PL/riivolution.md new file mode 100644 index 000000000..d7eef1b3f --- /dev/null +++ b/_pages/pl_PL/riivolution.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="410.html" %} diff --git a/_pages/pl_PL/themes.md b/_pages/pl_PL/themes.md index 1b1702501..ac3396880 100644 --- a/_pages/pl_PL/themes.md +++ b/_pages/pl_PL/themes.md @@ -4,13 +4,16 @@ title: "Installing Wii Menu Themes" {% include toc title="Table of Contents" %} -This guide is intended for regular Wiis only. For installing themes on vWii (Wii U), follow [this page](themes-vwii). Additionally, forwarders are covered. +This guide is intended to be the last you will ever need when it comes to theming on the Wii, not only providing instructions for the Wii Menu through csm-installer, but also with themes on WiiFlow Lite, USB Loader GX, and The Homebrew Channel. Additionally, forwarders are covered. ### Section I - Finding a Theme DO NOT CONTINUE WITH THIS GUIDE UNLESS YOU HAVE ADEQUATE BRICK PROTECTION, SPECIFICALLY [BOOTMII](bootmii) AND [PRIILOADER](priiloader)! {: .notice--danger} +This tutorial does not work on the Wii mini. Do not attempt this tutorial on the Wii mini or it will cause a [brick](bricks#theme-brick). +{: .notice--warning} + csm-installer has built in safety features to prevent from installing bad or corrupt Wii Menu themes, so please opt to use it instead of other theme installation homebrew. {: .notice--warning} diff --git a/_pages/pl_PL/usbloadergx.md b/_pages/pl_PL/usbloadergx.md new file mode 100644 index 000000000..00a63864a --- /dev/null +++ b/_pages/pl_PL/usbloadergx.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-loaders.html" %} diff --git a/_pages/pl_PL/wiibackupmanager.md b/_pages/pl_PL/wiibackupmanager.md new file mode 100644 index 000000000..063d7bba0 --- /dev/null +++ b/_pages/pl_PL/wiibackupmanager.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-backups.html" %} diff --git a/_pages/pl_PL/wiiconnect24.md b/_pages/pl_PL/wiiconnect24.md index 894f24c37..ad0a4b6fc 100644 --- a/_pages/pl_PL/wiiconnect24.md +++ b/_pages/pl_PL/wiiconnect24.md @@ -3,44 +3,21 @@ title: "WiiConnect24" --- {% include toc title="Table of Contents" %} + -This guide provides different means of regaining WiiConnect24 functionality on your console. Although not at all nessecary, it is a "nice to have" feature that was originally used for online connectivity in certain applications on the console. These apps include the Forecast/News Channel, Nintendo Channel, Check Mii Out Channel, some Japan-exclusive channels, and more. Please bear in mind, the functionality you gain depends entirely on what service(s) you use. +[WiiConnect24](https://wikipedia.org/wiki/WiiConnect24) was a service that allowed users with Internet connected Wiis to view the weather & local news, send messages to friends, participate in Mii contest, and more. WiiConnect24 was discontinued on June 27th, 2013. -### Service Overview +## RiiConnect24 + WiiLink +[RiiConnect24](https://rc24.xyz) is a revival service for WiiConnect24 that started in 2015, which allows you to regain its functionality on your console. As of late 2023, the service is now owned by WiiLink, a project that started in 2020 that was previously aiming at the Japanese-exclusive channels. -#### Note about service compatibility: -Both services listed below are compatible with one another and can be loaded on the same console. With this said, it should be noted that when installing one channel over the other (WiiLink's Forecast Channel over RiiConnect24's Forecast Channel for example), the channel you are installing will overwrite the old one. - - -#### Service Support Status -✅ - In support
⚠️ - In development
⛔ - No support - -| Service Name | WiiLink | RiiConnect24 | -| ----------------------- | ------- | ------------ | -| Forecast Channel | ✅ | ✅ | -| News Channel | ⚠️ | ✅ | -| Wii Mail | ✅ | ✅ | -| Everybody Votes Channel | ✅ | ✅ | -| Nintendo Channel | ✅ | ✅ | -| Check Mii Out Channel | ⚠️ | ✅ | -| Wii Room | ✅ | ⛔ | -| Food Channel | ✅ | ⛔ | -| Photo Prints Channel | ✅ | ⛔ | -| Kirby TV Channel | ✅ | ⛔ | -| TV Guide Channel | ⚠️ | ⛔ | - -#### WiiLink -A newer WC24/Japanese channel revival service that started in 2020, but is rapidly regaining functionality in many different channels. - -Service support status can be found [here](https://www.wiilink24.com/status).
Their guide can be found [here](https://www.wiilink24.com/guide). - -#### RiiConnect24 -The longest lasting WC24 revival service, currently only with support for the worldwide WC24 channels as well as mail services. - -Service support status can be found [here](https://rc24.xyz/stats/).
RiiConnect24 currently does not have a self-hosted guide, however you can find ours [here](riiconnect24). +There is a patcher that ships both of these services together as one - meaning you get all of the international and Japanese-only channels in one package. The guide on how to install these services can be found [on WiiLink's website.](https://www.wiilink24.com/guide/) + ### Updating RTC Clock -If you choose to install either of these services on your Wii, it is advised to synchronize its external clock in order to prevent various issues (such as inability to use said services) that may arise otherwise. The steps to do so can be found below: #### What you need + A working Internet connection on your Wii diff --git a/_pages/pl_PL/wiiflow.md b/_pages/pl_PL/wiiflow.md new file mode 100644 index 000000000..00a63864a --- /dev/null +++ b/_pages/pl_PL/wiiflow.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-loaders.html" %} diff --git a/_pages/pt_BR/410.md b/_pages/pt_BR/410.md new file mode 100644 index 000000000..cc47cf38c --- /dev/null +++ b/_pages/pt_BR/410.md @@ -0,0 +1,12 @@ +--- +title: Página não existe mais +sitemap: false +--- + +A página que você está tentando ver existia, mas foi removida. As instruções que você está seguindo estão desatualizadas? (Se você chegou aqui de um link neste guia, [avise-nos](https://github.com/hacks-guide/Guide_Wii/issues)) + +[Clique aqui para voltar para o índice do site.](site-navigation) +{: .notice--info} + +![](https://http.cat/410) +{: .notice--info} diff --git a/_pages/pt_BR/bootmii.md b/_pages/pt_BR/bootmii.md index 0567c2e5f..9d9860a52 100644 --- a/_pages/pt_BR/bootmii.md +++ b/_pages/pt_BR/bootmii.md @@ -6,21 +6,9 @@ title: "Backup com BootMii" Um dos recursos mais importantes do BootMii é a habilidade de backup e restaurar o armazenamento NAND do seu Wii. Esta página irá guiá-lo no backup da sua NAND de Wii para um cartão SD, que você pode usar como preferir. -Wiis "Family Edition" (Wiis sem portas GameCube) NÃO PODEM restaurar backups da NAND. Isso ocorre devido à falta de portas GameCube que são necessárias em Wiis sem boot2 para entrar no código de confirmação de restauração. Seja como for, ainda se recomenda que se faça um backup nestes consoles. -{: .notice--danger} - Você irá precisar de um **cartão SD** para criar o backup da NAND utilizando o BootMii. Se você não tiver um, você pode pular essa página, entretanto é muito recomendado fazer um backup de NAND se você puder. {: .notice--warning} -Não é possível navegar o BootMii usando um Wii Remote. Você deve utilizar os botões POWER e RESET do seu console, ou um controle de Gamecube conectado na porta 1. Para navegar entre as opções, pressione POWER no seu Wii (ou direita/esquerda no +Control Pad em um controle de Gamecube). Para selecionar uma opção, aperte RESET no seu Wii ou A no seu controle de Gamecube. Você PRECISA usar um controle de GameCube para restaurar um backup da NAND no futuro se o BootMii estiver instalado como IOS. -{: .notice--info} - -Se o botão `Launch BootMii` não aparecer, por favor [reinicie o HackMii Installer](hackmii) e instale o BootMii. -{: .notice--warning} - -Se a tela ficar preta e a luz azul do disco estiver piscando, quer dizer os arquivos do BootMii estão faltando no seu cartão SD. Baixe [este arquivo zip](https://static.hackmii.com/bootmii_sd_files.zip) e extraia-o para a raiz do seu cartão SD e tente novamente. -{: .notice--warning} - ### Requisitos * Um cartão SD com pelo menos 512MB de espaço livre @@ -36,10 +24,19 @@ Se você instalou o BootMii como Boot2 na última etapa, será necessário inici ![](/images/bootmii/BootMii_HBC.png) + Se o botão `Launch BootMii` não aparecer, por favor [reinicie o HackMii Installer](hackmii) e instale o BootMii. + {: .notice--warning} + + Se a tela ficar preta e a luz azul do disco estiver piscando, quer dizer os arquivos do BootMii estão faltando no seu cartão SD. Baixe [este arquivo zip](https://static.hackmii.com/bootmii_sd_files.zip) e extraia-o para a raiz do seu cartão SD e tente novamente. + {: .notice--warning} + 1. Você deve ver uma imagem semelhante ao abaixo agora na sua tela: ![](/images/bootmii/BootMii_Main.png) + Não é possível navegar o BootMii usando um Wii Remote. Você deve utilizar os botões POWER e RESET do seu console, ou um controle de Gamecube conectado na porta 1. Para navegar entre as opções, pressione POWER. Para selecionar uma opção, pressione RESET. + {: .notice--info} + 1. Selecione o botão Options (o ícone com as engrenagens). ![](/images/bootmii/BootMii_Gears.png) @@ -54,7 +51,7 @@ Se você instalou o BootMii como Boot2 na última etapa, será necessário inici ![](/images/bootmii/BootMii_NAND_Backup.png) 1. Depois desta etapa, o backup irá ser verificado. Idealmente, todos os blocos devem ser verdes após o processo de verificação. - + Se você tem bad blocks de fábrica com páginas incorretas, esses blocks podem não ser verificados. As long all non-bad blocks are successfully verified, this should be fine. + + Se você tem bad blocks de fábrica com páginas incorretas, esses blocks podem não ser verificados. Uma vez que todos os não-bad blocks sejam verificados com sucesso, está tudo ok. ![](/images/bootmii/BootMii_NAND_Backup_Verify.png) @@ -65,13 +62,13 @@ Se você instalou o BootMii como Boot2 na última etapa, será necessário inici
Please be reminded that restoring a NAND backup is usually a last resort, and that there often better ways to fix your brick. Muitas vezes, existem maneiras melhores de desbricar seu console. Tente o seu melhor para [identificar sua condição de brick](bricks) e reverter a ação que a causou em primeiro lugar. -To restore from a NAND backup on your SD card, you can follow the instructions for [RestoreMii](bootmiirecover). +Para restaurar de um backup da NAND no seu cartão SD, você pode seguir as instruções para o [RestoreMii](bootmiirecover). Wiis "Family Edition" (Wiis sem portas GameCube) NÃO PODEM restaurar backups da NAND
-As stated earlier, if you have BootMii installed as boot2, it will launch every time you start your console. If you would like to change this, you can use the app [BootMii Config Editor](https://oscwii.org/library/app/BootMiiConfigurationEditor). Or, you can edit `sd:/bootmii/bootmii.ini` manually. +Como mencionado anteriormente, se você tiver o BootMii instalado como boot2, ele será executado toda vez que você iniciar o console. Se você deseja alterar isto, você pode usar o aplicativo [BootMii Config Editor](https://oscwii.org/library/app/BootMiiConfigurationEditor). Ou, você pode editar `sd:/bootmii/bootmii.ini` manualmente. {: .notice--info} -To make sure you don’t lose the files, it's recommended to copy `nand.bin` and `keys.bin` from the root of your SD card to your computer. `nand.bin` é a memória interna do seu Wii, enquanto `keys.bin` são as chaves do console. +Dois arquivos serão criados na raiz do cartão SD: `nand.bin` e `keys.bin`. `nand.bin` é a memória interna do seu Wii, enquanto `keys.bin` são as chaves do console. {: .notice--info} [Continue to Priiloader Installation](priiloader)
Priiloader adds a level of brick protection, and is highly recommended, especially if you were only able to install BootMii as IOS. É especialmente importante para os usuários do BootMii na IOS. diff --git a/_pages/pt_BR/bootmiirecover.md b/_pages/pt_BR/bootmiirecover.md index ccf071cb7..ca81250d8 100644 --- a/_pages/pt_BR/bootmiirecover.md +++ b/_pages/pt_BR/bootmiirecover.md @@ -4,7 +4,7 @@ title: "BootMii Recovery (RestoreMii)" {% include toc title="Sumário" %} -Este guia fornecerá instruções sobre como restaurar um backup da sua NAND com o BootMii. Please bear in mind that this is usually the last resort method of repairing a brick if you have one, and if it does not fix your issue, you may have to seek support. If you are still able to enter BootMii, make an attempt to enter the Homebrew Channel instead so that you may attempt to [identify and repair the brick](bricks) using other methods. +Este guia fornecerá instruções sobre como restaurar um backup da sua NAND com o BootMii. Por favor, tenha em mente que este é geralmente o último método de reparo para consertar um brick se você tiver um, e se não resolver o seu problema, você pode ter que procurar suporte. Se você ainda puder entrar no BootMii, tente entrar no Homebrew Channel, assim você poderá fazer uma tentativa de [identificar e reparar o brick](bricks) usando outros métodos. Se você instalou o BootMii como Boot2 na última etapa, será necessário iniciar o BootMii reiniciando o console. Pule as etapas 1-2 se esse for o caso. {: .notice--info} @@ -12,37 +12,37 @@ Se você instalou o BootMii como Boot2 na última etapa, será necessário inici Se a tela ficar preta e a luz azul do disco estiver piscando, quer dizer os arquivos do BootMii estão faltando no seu cartão SD. Baixe [esse arquivo zip](https://static.hackmii.com/bootmii_sd_files.zip) e extraia ele para a raiz do seu cartão SD, então, tente novamente. {: .notice--warning} -Wiis "Family Edition" (Wiis sem portas GameCube) NÃO PODEM restaurar backups da NAND. Isso ocorre devido à falta de portas GameCube que são necessárias em Wiis sem boot2 para entrar no código de confirmação de restauração. For additional help, please seek support. +Wiis "Family Edition" (Wiis sem portas GameCube) NÃO PODEM restaurar backups da NAND. Isso ocorre devido à falta de portas GameCube que são necessárias em Wiis sem boot2 para entrar no código de confirmação de restauração. Para ajuda adicional, por favor procure suporte. {: .notice--danger} -DO NOT restore an unverified NAND backup, or one that is not from your Wii: this may lead to a WORSE BRICK. The same also goes for faulty SD cards. +NÃO restaure um backup da NAND não verificado, ou um que não seja do seu Wii: isso pode levar a um BRICK PIOR. O mesmo se aplica ao uso de cartões SD defeituosos. {: .notice--danger} ### Requisitos -* An earlier NAND Backup made by [BootMii](https://wii.guide/bootmii) +* Um backup anterior da NAND feito pelo [BootMii](bootmii) -### Want to restore individual data from your NAND backup? +### Restaurando dados individuais de um backup da NAND -There is likely a much safer and faster way to bring it back to your Wii, likely involving the use of Dolphin Emulator. +Existe provavelmente uma maneira muito mais segura e rápida de trazer os dados individuais de volta ao seu Wii, provavelmente envolvendo o uso do emulador Dolphin. -For example, if you want to restore your Wii Message Board data, use Dolphin to import your NAND backup. In Dolphin, go to `File -> Open User Folder`, and find `Wii/title/00000001/00000002/data/cdb.vff`, copy it to your SD card, and use [WiiXplorer](https://oscwii.org/library/app/wiixplorer) to restore it in the corresponding location. +Por exemplo, se você quiser restaurar seus dados do Wii Message Board, use o Dolphin para importar seu backup da NAND. Np Dolphin, vá para `Arquivo -> Abrir Pasta de Usuário`e encontre `Wii/title/00000001/00000002/data/cdb.vff`, copie-o para o seu cartão SD e use o[WiiXplorer](https://oscwii.org/library/app/wiixplorer) para restaurá-lo no local correspondente. -If you want to restore a game's save data, use Dolphin to import your NAND backup, use `Tools > Export All Wii Saves` to export all your saves to your SD card, and use Data Management to move it to your Wii. +Se você quiser restaurar os dados salvos de um jogo, use o Dolphin para importar seu backup da NAND, use `Ferramentas > Exportar Todos os Dados Salvos do Wii` para exportar todos os seus saves para o seu cartão SD, e use o Gerenciamento de Dados para movê-lo para seu Wii. -### Important notes +### Notas importantes -+ If you have not done anything to cause a brick (or you're starting up your Wii after a long time), then it is probably a [Wi-Fi Brick](bricks#wi-fi-brick). ++ Se você não fez nada para causar um brick (ou você está ligando seu Wii depois de um longo tempo), então é provavelmente um [Wi-Fi Brick](bricks#wi-fi-brick). -+ If you do not have BootMii as boot2, RestoreMii will prompt you for the Konami code via a GameCube Controller. ++ Se você tiver o BootMii como IOS instalado, o RestoreMii irá pedir-lhe o Konami Code através de um Controle de GameCube. -+ You must use the POWER (right) and RESET (select) buttons on your console, or a GameCube controller plugged into port 1. To navigate with a GameCube controller, click left/right on the +Control Pad on a GameCube controller. To select, press A. ++ Você deve usar os botões POWER (direita) e RESET (selecionar) no seu console, ou um controle de GameCube conectado na porta 1 para navegar no BootMii. Para navegar com um controle de GameCube, clique esquerda/direita no +Control Pad em um controle de GameCube. Para selecionar, pressione A. ### Instruções 1. Abra o Homebrew Channel. -1. Press the HOME Button, then select "Launch BootMii". - + If you are even able to enter BootMii, enter the Homebrew Channel instead, and try your best to [identify what caused the brick](bricks) and reverse it. +1. Pressione o botão HOME, depois selecione "Launch BootMii". + + Se o Homebrew Channel não está acessível e você tem o Priiloader instalado, você também pode acessá-lo na inicialização e selecionar o `BootMii IOS` para carregar o BootMii. ![](/images/bootmii/BootMii_HBC.png) @@ -50,31 +50,31 @@ If you want to restore a game's save data, use Dolphin to import your NAND backu ![](/images/bootmii/BootMii_Gears.png) -1. Select the RestoreMii button. +1. Selecione o botão RestoreMii. ![](/images/bootmii/BootMii_Restore.png) -1. BootMii will inform you that it will run in SIMULATION mode, you can press A or Reset to continue. +1. O BootMii informará que ele será executado no modo SIMULATION, você pode pressionar A ou Reset para continuar. ![](/images/bootmii/BootMii_NAND_Simulation.png) -1. On your GameCube controller, input the Konami code: ↑, ↑, ↓, ↓, ←, →, ←, →, B, A, START +1. Se o BootMii estiver instalado como IOS, entre com o Konami Code no seu controle de GameCube: ↑, ↑, ↓, ↓, ←, →, ←, →, B, A, START ![](/images/bootmii/BootMii_NAND_Konami.png) -1. BootMii will run through the restore process as a simulation, detailing what will be erased and rewritten. Once this is done, you have one final chance to back out of the restoration process. Otherwise, press START or the Eject button to begin. +1. O BootMii será executado através do processo de restauração como uma simulação, detalhando o que será apagado e reescrito. Assim que isso for feito, você tem uma última chance de se afastar do processo de restauração. Caso contrário, pressione o botão INICIAR ou Eject para começar. ![](/images/bootmii/BootMii_NAND_Restore.png) -1. After the recovery ended, you should see a text say `I HAZ SUCCESS!`, otherwise `I HAZ FAIL`. Hit any button on your Wii console or GCN controller. +1. Depois do processo terminar, você deverá ver um texto escrito `I HAZ SUCCESS!`, caso contrário `I HAZ FAIL`. Aperte qualquer botão no seu console Wii ou no controle de GCN. ![](/images/bootmii/BootMii_NAND_Restore_Success.png) -1. Para sair do BootMii, aperte o botão Back (o que tem uma seta) e então você pode apertar o botão do Wii Menu ou o botão do Homebrew Channel para sair aonde deseja. +1. Pressione o botão Voltar (o botão com uma seta), então pressione o botão de Menu do Wii ou o botão do Homebrew Channel para sair do BootMii. ![](/images/bootmii/BootMii_Return.png) -If you were restoring a NAND backup in order to repair a brick and this did not fix your issue, please consult [the bricks portion](bricks) of this guide. +Se você estava restaurando um backup da NAND para reparar um brick e isso não resolveu seu problema, por favor consulte [a parte dos bricks](bricks) deste guia. {: .notice--info} [Clique aqui para voltar ao índice do site.](site-navigation) diff --git a/_pages/pt_BR/bricks.md b/_pages/pt_BR/bricks.md index 12c2f6d7c..8a1b790de 100644 --- a/_pages/pt_BR/bricks.md +++ b/_pages/pt_BR/bricks.md @@ -4,9 +4,9 @@ title: "Bricks" {% include toc title="Sumário" %} -A "Brick" usually means your Wii has reached a state where, its only use is that of a literal [brick](https://wikipedia.org/wiki/Brick).
Bricks can occur for a variety of reasons, usually caused by improper system modifications via homebrew. +Um "brick" geralmente significa que seu Wii atingiu um estado onde seu próximo objetivo existente é provável de uma parada, ou um padrão de exibição.
Bricks podem ocorrer por uma variedade de razões, no entanto geralmente resultam em software corrompido ou em modificações impróprias feitas por homebrew. -# Brick Prevention +# Prevenção de brick Preventing a brick involves many rules that range between common sense and fail-safe backups. Here are the general recommendations of what not to do: @@ -111,7 +111,7 @@ Attempt to start the Wii - warning/press A screen shows up, and when A is presse A theme brick occurs when a wrongly formatted theme is installed. #### Solutions -To resolve this issue, open HBC through Priiloader and access MyMenuifyMod to install a default theme. Alternatively, go into [YAWM ModMii Edition](yawmme) and install the CORRECT default Wii Menu WAD for your region and version. +To resolve this issue, open HBC through Priiloader or BootMii as boot2 and access csm-installer to install a default theme such as the base Wii Menu theme. Alternatively, go into [YAWM ModMii Edition](yawmme) and install the CORRECT default Wii Menu WAD for your region and version. ## Mail brick diff --git a/_pages/pt_BR/cios.md b/_pages/pt_BR/cios.md index 161af51b6..b7b74ba00 100644 --- a/_pages/pt_BR/cios.md +++ b/_pages/pt_BR/cios.md @@ -62,6 +62,12 @@ The WAD files should be on your SD card like this: ![](/images/cios/d2x_offline_ ![](/images/cios/d2x_v11_248.png) + The warning "`(c)IOS detected in slot ### will be overwriitten`" can be safely ignored. + {: .notice--info} + + If you are seeing "`Slot ### already used in batch settings`" or "`cIOS already added in batch with revision ##### and slot ###`", press `-` to disable batch mode.
(If you are trying to exit the installer, the button is B, not Home.) + {: .notice--info} + 1. Press `A`. This will bring you to the slot map: ![](/images/cios/d2x_summary.png) diff --git a/_pages/pt_BR/dosanddonts.md b/_pages/pt_BR/dosanddonts.md new file mode 100644 index 000000000..6ceed5bee --- /dev/null +++ b/_pages/pt_BR/dosanddonts.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="faq.html" %} diff --git a/_pages/pt_BR/get-started.md b/_pages/pt_BR/get-started.md index 296c2b95c..561dcf176 100644 --- a/_pages/pt_BR/get-started.md +++ b/_pages/pt_BR/get-started.md @@ -24,5 +24,5 @@ Selecione o exploit que corresponde ao seu console e encontre o melhor para voc | ---------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | Wii/Wii Family Edition | Se você puder usar um PC Windows:
Configuração Automática: Prossiga para [ModMii](modmii)
Se você puder usar um cartão SD:
Configuração Manual: Prossiga para [Wilbrand](wilbrand)
Se você não puder usar um cartão SD:
Configuração Manual: Prossiga para [str2hax](str2hax)
| | Wii Mini | [BlueBomb](bluebomb) - Exploit que usa Bluetooth | -| Wii U (vWii) | If you have not modded your Wii U yet:
Proceed to [Introduction (wiiu.hacks.guide)](https://wiiu.hacks.guide/#/)
If your Wii U is already modded:
Proceed to [vWii Modding (wiiu.hacks.guide)](https://wiiu.hacks.guide/#/vwii/sd-preparation) | +| Wii U (vWii) | Se você ainda não modificou seu Wii U:
Prossiga para [Introdução (wiiu.hacks. uide)](https://wiiu.hacks.guide/#/)
Se seu Wii U já está modificado:
Prossiga para [vWii Modding (wiiu.hacks.guide)](https://wiiu.hacks.guide/#/vwii/sd-preparation) | | Emulador Dolphin | Prossiga para [Homebrew Channel no Dolphin](homebrew-dolphin) | diff --git a/_pages/pt_BR/hbc.md b/_pages/pt_BR/hbc.md index 6a291fe85..e837ebf21 100644 --- a/_pages/pt_BR/hbc.md +++ b/_pages/pt_BR/hbc.md @@ -6,7 +6,7 @@ title: "Instalação do Homebrew Channel e do BootMii" O Homebrew Channel é onde você irá abrir aplicativos homebrew. O BootMii é um software que pode fazer backup e restaurar o armazenamento NAND do seu Wii e, se for instalado no boot2, oferece proteção contra bricks. -BootMii pode ser instalado de duas maneiras: diretamente em uma parte do bootloader do Wii, chamado boot2, ou através de uma IOS. BootMii sob boot2 é preferido, uma vez que fornece proteção estendida contra brick, mas os Wiis com boot2 vulnerável são consideravelmente mais raros, tendo sido fabricado antes de 2009. Na maioria dos casos, instalar o BootMii como IOS não deve ter problemas, contanto que você também instale o [Priiloader](priiloader). +BootMii pode ser instalado de duas maneiras: diretamente em uma parte do bootloader do Wii, chamado boot2, ou através de uma IOS. BootMii under boot2 is preferred as it provides extended brick protection, but Wiis with a vulnerable boot1 that allows this installation are considerably rarer, having been manufactured before 2009. Na maioria dos casos, instalar o BootMii como IOS não deve ter problemas, contanto que você também instale o [Priiloader](priiloader). {: .notice--info} Se você não tem um cartão SD, você não pode instalar nem usar o BootMii, e assim não poderá utilizar nenhum dos benefícios mencionados. Você pode sempre [instalar em outro momento](hackmii). diff --git a/_pages/pt_BR/modmii.md b/_pages/pt_BR/modmii.md index 34f33066b..36b0f271f 100644 --- a/_pages/pt_BR/modmii.md +++ b/_pages/pt_BR/modmii.md @@ -4,116 +4,190 @@ title: "ModMii" {% include toc title="Sumário" %} -If you need help for anything regarding this tutorial, please join [the ModMii Discord server](https://discord.gg/cMnBRACQwQ). -{: .notice--info} - This Program does NOT come with a warranty, so you are responsible for any potential damage done to your Wii. {: .notice--warning} This program is NOT intended to be used for the vWii or the Wii mini. Some tools may or may not work for these platforms. {: .notice--warning} -/images/Modmii/modmii.png +ModMii is an all-in-one Wii hacking tool for Windows created by XFlak that has various helpful tools for modding. It can accomplish the following: -Some advanced options may not be accessible in ModMii Skin. A list of the various activities for ModMii Classic can be found at the bottom of the page. -{: .notice--info} ++ Hacking the console for the first time, or re-hacking it ++ Check for and update outdated softmods ++ Fix upside-down Homebrew Channel problems ++ Run homebrew without making any changes to your Wii's NAND ++ Download homebrew ++ And more! -### Requisitos +### ModMii Overview + +There are two different ways to use ModMii. There is ModMii Classic, which uses a command line interface, but has all of the features available to the program. ModMii Skin has a graphical user interface, on the other hand, but has less options available to the user. If you're looking to simply mod your Wii for the first time, ModMii Skin should suffice. Otherwise, we reccomend using ModMii Classic where possible.
The chart below will help you determine what can be done in either interface. + +| Tools | ModMii Classic | ModMii Skin | +| -------------------------- | -------------- | ----------- | +| ModMii Wizard | ✅ | ✅ | +| SysCheck Updater Wizard | ✅ | ⛔ | +| USB Loader Setup Wizard | ✅ | ✅ | +| HackMii Solutions Wizard | ✅ | ✅ | +| Abstinence Wizard | ✅ | ✅ | +| Region Change Wizard | ✅ | ✅ | +| SNEEK/EmuNAND Installation | ✅ | ✅ | +| Open File Function | ✅ | ⛔ | +| Load Download Queue | ✅ | ✅ | +| Download Page 1/2/3/4 | ✅ | ⛔ | +| Advanced Downloads | ✅ | ⛔ | +| Load Download Queue | ✅ | ⛔ | +| Build Config Files | ✅ | ⛔ | +| File Cleanup & App Updater | ✅ | ⛔ | + +
+Click here for a detailed explanation of each tool. + +| Tool | Descrição | +| --------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| W = ModMii Wizard <-- Start Here to Mod Your Wii! | This option can be used to hack your Wii for the first time or re-hack a Wii that has been previously modded. | +| SU = SysCheck Updater Wizard (update only your outdated softmods) | This option checks for and updates old modifications installed to their wii such as DarkCorp/CIOSSPAGHETTI that can potentially cause problems for the latest homebrew custom firmware. | +| U = USB-Loader Setup Wizard | This option will properly set up your USB loader to be able to load your disk backups from an SD or USB hard drive. This option is not necessary if using the ModMii Wizard. | +| H = HackMii Solutions Wizard (Upside-Down HBC\No Vulnerable IOS Fix) | This option is useful for people who are having trouble getting the HackMii Installer to work or have an upside down homebrew channel. | +| AW = Abstinence Wizard (Non-permanent Wii Hacks) | This option allows you to run homebrew on your Wii without making any permanent modifications to the system NAND. | +| RC = Region Change Wizard | This option can be used to change the region of your Wii without bricking it, and is arguably the best region changing wizard on the internet. | +| S = SNEEK Installation, EmuNAND Builder\Modifier, Game Bulk Extractor | This option will help you properly set up an EmuNAND (aka neek2o) onto your SD or USB. Benefits for EmuNAND include extra storage space for save games or channels, as well as running homebrew without making any permanent modifications to the system NAND. | +| F = open a File or Folder with ModMii for many more functions! | This option is an advanced tool especially helpful for developers. | +| 1 = Download Page 1 (System Menus, IOSs, MIOSs, Channels, etc.) | This option opens the first download page that includes most of the key parts of the Wii System Menu (downloaded from NUS). | +| 2 = Download Page 2 (Apps, USB-Loader Files, CheatCodes, etc.) | This option opens the second download page that includes exploits and useful apps for your Wii including some PC programs. | +| 3 = Download Page 3 (System Menu Themes) | This option opens the third download page that includes some system menu themes and items required to install system menu themes (base apps are downloaded from NUS). | +| 4 = Download Page 4 (cIOSs and cMIOSs) | This option opens the fourth download page that includes cIOSes and cMIOSes for use in USB loaders. | +| A = Advanced Downloads and Forwarder DOL\ISO Builder | This option allows you to download any IOS and cIOS and build custom DOL/ISO forwarders. Intended for advanced users only. | +| L = Load Download Queue | This option loads bundled or previously saved download queues. | +| C = Build Config Files for Bootmii, Wad Manager or Multi-Mod Manager | This option allows you to build customized config files for BootMii, Wad Manager, and Multi-Mod Manager. | +| FC = File Cleanup & App Updater: Update Apps and\or remove un-needed files | This option removes unnessecary files from your SD Card or Hard Drive after finishing softmodding your Wii. | + +

+ +When using ModMii, it is important to note that it will generate a custom guide for you depending on the options that you select. For this reason, this guide will not be focused on how to mod your Wii, as ModMii handles that function. Instead, it will be a quick start guide show you how to effectively use it with the most common options. + +### Installing ModMii + +#### Requisitos * Um Wii * Um armazenamento USB ou cartão SD * A Windows PC (a Virtual Machine will work) * [ModMii](https://modmii.github.io/) -This is a quick start guide on how to use ModMii on your Windows PC. +#### Instalação -### ModMii Wizard +1. Go to the [ModMii website](https://modmii.github.io) and scroll down to the Download section. Here, select the `Installer` option. Your browser may flag the installer as malware, but it is a **false positive**. -You can use the ModMii wizard to softmod any Wii.
Even if the Wii has been softmodded in the past, you can have ModMii overwrite existing softmods by telling ModMii that this is the first time you're modding your Wii (even though it's not). + ![](/images/modmii/modmii-download.png) -You can also use this wizard to set up a USB loader at the same time, instead of having to use the USB Loader setup wizard later on. +2. Open the `ModMiiInstaller.exe` file and go through the setup process. + + ![](/images/modmii/modmii-install.png) + +### Using the ModMii Wizard + +The ModMii Wizard is tool that can softmod your Wii from start to finish, downloading all necessary files and then generating a guide that you can use to implement the softmod. This tool can also be used to overwrite existing softmods on a previously softmodded Wii. + +1. Open ModMii Skin or ModMii Classic and select the ModMii Wizard option at the top of the list. + + ![](/images/modmii/modmii-wizard-1.png) + +1. Answer `Yes` to the first question, unless you have a very specific idea of what you would like to do or update to your Wii. + + ![](/images/modmii/modmii-wizard-2.png) + +1. Select your current System Menu version, followed by the System Menu Region, following the instructions in the program. If you are still confused, check the bottom option on each screen for an instructional video. + + ![](/images/modmii/modmii-wizard-3.png) + +1. Select the exploit you would like to use to mod your Wii. The exploits below are outlined throughout this website, but in most cases we would reccommend using Wilbrand if you have an SD card on hand. + + ![](/images/modmii/modmii-wizard-4.png) + +1. If you selected the Wilbrand option in the previous step, enter your Wii's MAC address. If you don't know how to check your Wii's MAC address, enter `Help` in the text box for an instructional video. + + ![](/images/modmii/modmii-wizard-5.png) + +1. Select your desired System Menu version from the list. + + ![](/images/modmii/modmii-wizard-6.png) + +1. Select whether or not you would like to install any of the listed channels - this is an optional step. + + ![](/images/modmii/modmii-wizard-7.png) + +1. Select whether or not you would like to install a custom Wii theme, with the choice of three theme effects. Each effect deals with how much the outline when hovering over a Wii Channel spins. + + ![](/images/modmii/modmii-wizard-8.png) + +1. Select whether or not you would like to set up a USB Loader for use with your Wii. + + ![](/images/modmii/modmii-wizard-9.png) + +1. If you selected `Yes` in the USB Loader menu, select which USB Loader you would like to use. If you choose an individual one, we reccomend either USB Loader GX or WiiFlow as both are covered on this website, or you may optionally download each option. + + ![](/images/modmii/modmii-wizard-10.png) + +1. If you selected `Yes` in the USB Loader menu, select where you would like to save your USB Loader files at. + + ![](/images/modmii/modmii-wizard-11.png) + +1. Verify where you would like to save files for your SD Card and/or USB Drive. + + ![](/images/modmii/modmii-wizard-12.png) + +1. Confirm your settings are correct, and then press `Finish`. Once you press the button, ModMii will begin to process and download files in the background, and will automatically generate and open a guide for you. From here, you should follow the guide generated by ModMii. + + ![](/images/modmii/modmii-wizard-13.png) ### SysCheck Updater Wizard -[SysCheck](syscheck) is a homebrew application that analyzes the modifications on a Wii.
You can give a SysCheck report to ModMii to help identify & update outdated mods. +The SysCheck Updater Wizard is a tool that utilizes the homebrew app [SysCheck](syscheck) to analyze any modifications on your Wii, especially IOS and cIOS. It accepts a `syscheck.csv` file generated by the app, and then provides any nessecary updates as needed. -You can have ModMii analyze a SysCheck by dragging the `syscheck.csv` file onto ModMii.exe. Or, you can launch the SysCheck Updater Wizard (`SU`) from ModMii's main menu and manually browse for the file. +1. Open ModMii Classic and enter in `SU` to open the SysCheck Updater Wizard. + + ![](/images/modmii/syscheck-wizard-1.png) + +1. Follow the instructions in the window if you don't already have a SysCheck log, and then drag and drop the `syscheck.csv` file from Windows Explorer into the window. This will paste the location of the file, from which you can press Enter. + + ![](/images/modmii/syscheck-wizard-2.png) + +1. The program will analyze your SysCheck file, and will provide options for you depending on what it sees. In this example instance, the mods on the Wii were up-to-date, but there were several unnecessary IOSes that could be stubbed. If you want to make these changes to your Wii, simply enter in `Y` and press Enter. From here, you should follow the guide generated by ModMii. + + ![](/images/modmii/syscheck-wizard-3.png) ### HackMii Solutions Wizard -The HackMii Solutions wizard can help fix symptoms like these: +The HackMii Solutions Wizard is a tool that fixes problems that may arise from things like Darkcorp/CIOSSPAGHETTI by installing clean IOSes. Examples of problems that may arise because of this are listed below: + HackMii Installer not prompting "Press (1) to continue" -+ HackMii Installer says "no vulnerable IOS found!" -+ Homebrew Channel is displaying upside-down ++ HackMii Installer saying "no vulnerable IOS found!" ++ Homebrew Channel displaying upside-down -It will install clean IOSs to allow for the HackMii Installer to operate properly. +1. Open ModMii Skin or ModMii Classic and select the HackMii Solutions option. -### Abstinence Wizard + ![](/images/modmii/hackmii-wizard-1.png) -This wizard requires an SD card. -{: .notice--warning} +1. Select your current System Menu version, followed by the System Menu Region, following the instructions in the program. If you are still confused, check the bottom option on each screen for an instructional video. -This wizard allows you to enjoy many of the benefits of a softmodded Wii without installing any permanent modifications to your Wii. It will allow you to launch an exploit to boot an from emulated NAND from external storage, instead of your Wii's internal NAND. + ![](/images/modmii/hackmii-wizard-2.png) -On a related note, you can also make a NAND backup without modifying your Wii at all. Find ModMii's "Support" folder and launch `Casper2BootMii.bat`.
It will save some files to a folder named `COPY_TO_SD`, copy the files inside it to your SD card and [launch an exploit](get-started). +1. Select the exploit you would like to use to mod your Wii. The exploits below are outlined throughout this website, but in most cases we would reccommend using Wilbrand if you have an SD card on hand. -When following one of the exploit guides above, please avoid replacing the `boot.elf` file. -{: .notice--warning} + ![](/images/modmii/hackmii-wizard-3.png) +1. If you selected the Wilbrand option in the previous step, enter your Wii's MAC address. If you don't know how to check your Wii's MAC address, enter `Help` in the text box for an instructional video. -
-Click here for a full list of available tools. + ![](/images/modmii/hackmii-wizard-4.png) -| Tool | Descrição | -| --------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| W = ModMii Wizard <-- Start Here to Mod Your Wii! | This option can be used to mod your Wii for the first time or re-mod a Wii that has been previously modded. | -| SU = SysCheck Updater Wizard (update only your outdated softmods) | This option is useful for people who have old modifications installed to their wii such as DarkCorp/Ciosspaghetti that can potetially cause problems for the latest homebrew custom firmware. | -| U = USB-Loader Setup Wizard | This option will help you properly set up your USB loader to be able to load your disk backups from an SD or USB hard drive. | -| H = HackMii Solutions Wizard (Upside-Down HBC\No Vulnerable IOS Fix) | This option is useful for people who are having trouble getting the HackMii Installer to work, or if they just simply have an upside down homebrew channel, or if DarkCorp/Ciosspaghetti was installed and there was no homebrew channel. | -| AW = Abstinence Wizard (Non-permanent Wii Hacks) | This option is useful for people who dont want to make any permanent modifications to their Wii but still want to have some of the benefits that homebrew can offer. | -| RC = Region Change Wizard | This option can be used to change the region of your Wii without bricking it (this is the best region changer tutorial available on the internet!). | -| S = SNEEK Installation, EmuNAND Builder\Modifier, Game Bulk Extractor | This option will help you properly set up an EmuNAND (aka neek2o) onto your SD or USB. benefits for emunand include extra storage space for save games or channels. and the benefit of not making any permanent modifications to your Wii. | -| F = open a File or Folder with ModMii for many more functions! | This option is an advanced tool especially helpful for developers. | -| 1 = Download Page 1 (System Menus, IOSs, MIOSs, Channels, etc.) | This option opens the first download page that includes most of the key parts for the system menu (downloaded from NUS). | -| 2 = Download Page 2 (Apps, USB-Loader Files, CheatCodes, etc.) | This option opens the second download page that includes exploits and useful apps for your Wii including some PC programs. | -| 3 = Download Page 3 (System Menu Themes) | This option opens the third download page that includes some system menu themes and items required to install system menu themes (base apps are downloaded from NUS). | -| 4 = Download Page 4 (cIOSs and cMIOSs) | This option opens the fourth download page that includes cIOSes and cMIOSes for use in USB loaders. It is recommended to just install the recommended cioses unless you plan to do some testing. | -| A = Advanced Downloads and Forwarder DOL\ISO Builder | This option is an advanced tool used to better customize downloads or allow you to build a dol executable useful for fowarders (channels on the system menu to access Wii applications). | -| L = Load Download Queue | This option will download all of the required titles need for the Wii system menu (titles are downloaded from NUS) | -| C = Build Config Files for Bootmii, Wad Manager or Multi-Mod Manager | This option will help you build configuration files required for certain applications. | -| FC = File Cleanup & App Updater: Update Apps and\or remove un-needed files | This option is useful for people who want to clean out their SD or USB of apps deemed outdated, useless, or otherwise depreciated. | -| M = ModMii Skin Mode: use your mouse instead of your keyboard! | This option will launch ModMii skin mode. Some advanced options may not be available in this view. | +1. Verify where you would like to save files for your SD Card and/or USB Drive. -
+ ![](/images/modmii/modmii-wizard-12.png) -
-Click here for a full list of available options. +1. Confirm your settings are correct, and then press `Finish`. Once you press the button, ModMii will begin to process and download files in the background, and will automatically generate and open a guide for you. From here, you should follow the guide generated by ModMii. After finishing this guide, it is recommended that you use the [SysCheck Updater Wizard](#syscheck-updater-wizard) to undo any other problematic modifications on your Wii. -| Option | Descrição | -| ---------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| D = Change Drive letter: | Changes where your SD files are saved to. | -| DU = Change Drive letter for USB: | Changes where your USB files are saved to. | -| d2x = change d2x cIOS version built: | Changes the cios version ModMii downloads. | -| H = Hermes cIOSs (202 & 222-224) will also be recommended | Enables Hermes IOS to be recommended and downloaded in the syscheck updater (will be stubbed if disabled). | -| CM = cMIOS included in recommended cIOSs | Enables cMIOS to be recommended and downloaded in the syscheck updater (will install stock MIOS if disabled). | -| E = Extra Brick Protection in ModMii Wizard Guides | Enables ModMiis Extra Brick Protection IOSes to be recommended and used in the syscheck updater tool. | -| U = Update IOSs. Wizard/SysCheck-Updater to update Active IOSs | Updates Existing IOSes to the latest version available on NUS. | -| AU = Auto-Updating downloads will skip update check if cached | Will skip downloading the files if already in the queue. | -| FWD = Install USB-Loader Forwarder in ModMii Wizard Guides | Will include the USB loader forwarder wad file in the USB loader wizard guides. | -| PC = PC Programs Save Location | Changes the save location for the downloadable PC programs. | -| RS = Root Save: Save IOSs\MIOSs to Root instead of WAD Folder | Saves IOSs\MIOSs to Root instead of WAD Folder. | -| 1 = Do not Keep 00000001 or NUS Folders for IOSs\MIOSs\SMs etc | Deletes the folder used for compiling the wad file and just gives you the wad file. | -| n2o = neek2o - build mod of s\uneek instead of original | Uses a better modified version of neek2o in the EmuNAND builder. | -| SSD = SNEEK and SNEEK+DI SD Access | Allows for SNEEK and SNEEK+DI access on the SD card. | -| F = Font.bin Colour for SNEEK/UNEEK | Changes the font color for neek2o. | -| SV = SNEEK Verbose Output | Displays extra information regarding EmuNAND. | -| V = Verbose for ModMii Skin & nandBinCheck | Displays another window with extra information regarding a nand check. | -| SO = Play sound at Finish | Plays a fun jingle after a successful download. | -| A = Auto-Update ModMii at program start | Will automatically check for updates when ModMii is launched. | -| N = Check for New versions of ModMii right now | Will check online for a ModMii update. | - -
+ ![](/images/modmii/hackmii-wizard-5.png) [Clique aqui para voltar ao índice do site.](site-navigation) {: .notice--info} diff --git a/_pages/pt_BR/nintendont.md b/_pages/pt_BR/nintendont.md new file mode 100644 index 000000000..d7eef1b3f --- /dev/null +++ b/_pages/pt_BR/nintendont.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="410.html" %} diff --git a/_pages/pt_BR/recommended-homebrew.md b/_pages/pt_BR/recommended-homebrew.md index ce0ba4d22..b3228149a 100644 --- a/_pages/pt_BR/recommended-homebrew.md +++ b/_pages/pt_BR/recommended-homebrew.md @@ -16,7 +16,7 @@ Homebrew that has the ability to make permanant changes to your Wii are highligh + [**AnyRegion Changer ME**](https://oscwii.org/library/app/ARCME) - ModMii edition of AnyRegion Changer. While a powerful tool for changing region settings, it can also lead to severe bricks like [Korean Kii/Error 003](bricks#korean-kiierror-003-brick) so **only use this app if you know what you are doing**. + [**WiiXplorer-SS**](https://oscwii.org/library/app/wiixplorer-ss) - A modified and updated version of WiiXplorer. A file manager for the Wii, it allows you to view and customize files both on an SD card, a USB device, and the internal Wii memory. For this reason it is a very powerful but also dangerous tool - don't modify files on the system NAND unless you know what you are doing, as it can lead to various types of [bricks](bricks). + [**SaveGame Manager GX**](https://oscwii.org/library/app/SaveGame_Manager_GX) - A savegame/Mii extractor for the Wii. It supports GameCube memory cards (physical and virtual), emuNANDs, normal and protected saves, themes, and more. -+ [**MyMenuifyMod**](https://oscwii.org/library/app/mymenuifymod) - An application that allows you to theme the Wii Menu. While quite useful to make your Wii unique, it also has the ability to cause a [minor brick](bricks#theme-brick), so make sure to read our [theme guide](themes) for safe usage instructions. ++ [**csm-installer**](https://oscwii.org/library/app/csm-installer) - An application that allows you to theme the Wii Menu. While quite useful to make your Wii unique, it also has the ability to cause a [minor brick](bricks#theme-brick), so make sure to read our [theme guide](themes) for safe usage instructions. + [CleanRip](https://oscwii.org/library/app/CleanRip) - A tool to backup GameCube and Wii discs. Further information can be found in our [disc dumping guide](dump-games). + [**d2x cIOS installer**](https://oscwii.org/library/app/d2x-cios-installer) - A custom installer for Wii IOS, some of which is required for the functioning of certain software like USB loaders. You can see the guide [here](cios). + [FTPii](https://oscwii.org/library/app/ftpii) - An FTP server for your Wii, allowing you to transfer files across the network. diff --git a/_pages/pt_BR/riiconnect24.md b/_pages/pt_BR/riiconnect24.md index e10b30a56..d1e91b7e8 100644 --- a/_pages/pt_BR/riiconnect24.md +++ b/_pages/pt_BR/riiconnect24.md @@ -1,138 +1,5 @@ --- -title: "RiiConnect24" +title: Redirecting... --- -{% include toc title="Sumário" %} - -Para suporte (em inglês) com RiiConnect24, bem como RiiTag, entre no [RiiConnect24 no Discord](https://discord.gg/rc24). -{: .notice--primary} - -[RiiConnect24](https://rc24.xyz/) lhe permite utilizar os serviços descontinuados do WiiConnect24, que incluem os Channels News, Forecast, Everybody Votes, Nintendo e Check Mii Out Channel, junto com o Wii Mail. - -É recomendado configurar o horário atual em seu Wii antes de prosseguir. Siga [este tutorial](rtc) para configurá-lo. -{: .notice--warning} - -NÃO INSTALE RIICONNECT24 EM UM WII MINI! Não irá funcionar e causará um brick no sistema. -{: .notice--danger} - -### Requisitos - -Siga [este tutorial](riiconnect24-vwii) se você quiser instalar o RiiConnect24 no vWii (Modo Wii no Wii U). -{: .notice--primary} - -+ Um cartão SD ou armazenamento USB -+ Um Wii conectado à internet -+ Um PC com uma conexão à Internet -+ [RiiConnect24 Patcher (Windows, Mac e Linux)](https://github.com/riiconnect24/RiiConnect24-Patcher/releases) -+ [YAWM ModMii Edition](https://oscwii.org/library/app/yawmme) - -### Instruções - -#### Seção I - Usando RiiConnect24 Patcher - -1. Clique no link acima para ir para a página do GitHub onde está o patcher. -1. Baixe `RiiConnect24Patcher.bat` se estiver no Windows e `RiiConnect24Patcher.sh` se estiver em um sistema Unix -1. Tela principal do RiiConnect24 Patcher - + No Windows execute `RiiConnect24Patcher.bat`. - + Em sistemas Unix, abra Terminal e digite `bash`, então arraste `RiiConnect24Patcher.sh` para o terminal e então pressione enter. Deve ficar assim: `bash //RiiConnect24Patcher.sh`. -1. Pressione 1 para escolher "`Start`" e confirme sua seleção pressionando `ENTER`. - - ![](/images/riiconnect24/patcher/1.JPG) - -1. Selecione o dispositivo que você vai patchear. - - ![](/images/riiconnect24/patcher/2.JPG) - -1. Para este guia, escolha "`Install RiiConnect24 on your Wii`" - - ![](/images/riiconnect24/patcher/3.JPG) - -1. Escolha "`Express (Recomemended)`". Ele vai te dar tudo que você precisa. - - ![](/images/riiconnect24/patcher/4.JPG) - -1. Selecione sua região. - - ![](/images/riiconnect24/patcher/5.JPG) - -1. Enquanto estiver nisso, o RiiConnect24 Patcher pode também baixar alguns outros canais opcionais que não usam o RiiConnect24. `[X]` representa as opções selecionadas. Basta pressionar 5 e `ENTER` se você não estiver interessado. - - ![](/images/riiconnect24/patcher/6.JPG) - -1. Conecte seu cartão SD ou armazenamento USB em seu computador e selecione "`1`". - - ![](/images/riiconnect24/patcher/7.JPG) - -1. Se seu dispositivo foi detectado com sucesso, selecione "`1`". Caso contrário, certifique-se de que há uma pasta chamada `apps` no seu cartão SD ou armazenamento USB e tente novamente. - - ![](/images/riiconnect24/patcher/8.JPG) - -1. O patcher irá baixar aplicativos agora - por favor seja paciente. - - ![](/images/riiconnect24/patcher/9.JPG) - -1. Uma vez que você chegar na tela que diz `Patching done`, você poderá sair do patcher. Todos os arquivos já devem estar no seu cartão SD. - - ![](/images/riiconnect24/patcher/10.JPG) - - ![](/images/riiconnect24/patcher/11.PNG) - -1. Se ele não copiou tudo automaticamente para o seu cartão SD ou dispositivo USB, copie a pasta `WAD` e `apps` ao lado de `RiiConnect24Patcher.bat` para o seu cartão SD ou armazenamento USB. - -#### Seção II - Instalando WADs - -Se estiver usando o Dolphin, você terminou o guia. Instale a WADs indo para `Tools -> Install WAD` dentro do Dolphin. -{: .notice--primary} - -Agora você irá instalar o IOS com patch e WADs de Channels que são necessários para usar o RiiConnect24. - -1. Extraia o arquivo YAWM ModMii Edition `.zip` e copie a pasta `apps` para o seu cartão SD ou armazenamento USB. -1. Insira seu cartão SD ou armazenamento USB no seu Wii. -1. Inicie o Homebrew Channel no Wii. -1. Execute o YAWM ModMii Edition. -1. Selecione o dispositivo que você colocou os arquivos RiiConnect24. -1. Destaque todas as WADs na pasta `wad` pressionando o botão + para selecioná-los. Quando todas as WADs forem selecionadas, pressione duas vezes para instalar as WADs. -1. Depois que eles forem instalados com sucesso, pressione o botão HOME para sair para o Homebrew Channel. - -#### Seção III - Patching nwc24msg.cfg - -Agora você irá aplicar um patch em seu arquivo `nwc24msg.cfg` que é necessário para usar o Wii Mail. - -1. Inicie o RiiConnect24 Mail Patcher. -1. Deve demorar apenas alguns segundos para aplicar o patch seu nwc24msg.cfg. Quando terminado, pressione o botão HOME para sair. - -#### Seção IV - Conectando - -Nosso antigo servidor DNS foi descontinuado desde `1º de Junho, 2023` e não está mais disponível para uso. -{: .notice--warning} - -Se você estiver recebendo erros como o `WiiConnect24 and Wii Shop Channel currently not being offered in your country`, vá para Wii Settings -> Última Página -> Country e mude-o para United Kingdom. Você receberá este erro ao usar um país que não suportamos. Contate-nos em [support@riiconnect24.net](mailto:support@riiconnect24.net) se você precisar de mais ajuda. -{: .notice--warning} - -Se você receber o erro 107245, então você não instalou a IOS com patch.
-{: .notice--warning} - -Agora você irá definir seu DNS para nossos servidores. Isso é opcional, mas é recomendado, porque melhora o uso do RiiConnect24 e do Wiimmfi tornando algumas outras funcionalidades disponíveis. - -1. Vá para `Wii Options`. -1. Vá para `Wii Settings`. -1. Vá para a `Página 2` e clique em `Internet`. -1. Vá para `Connection Settings`. -1. Selecione sua conexão atual. -1. Vá em `Change Settings`. -1. Vá para `Auto-Obtain DNS` (não Endereço IP), então selecione `No`, e então `Advanced Settings`. -1. Digite `167.86.108.126` como DNS primário. -1. Digite `1.1.1.1` como DNS secundário. -1. Selecione `Confirm`, depois selecione `Save`. -1. Selecione `OK` para executar um teste de conexão. -1. Se o teste de conexão foi bem-sucedido, selecione `No` para ignorar a Atualização do Sistema Wii. -1. Vá para o `WiiConnect24`, depois `WiiConnect24` novamente, e certifique-se de que ele está habilitado. -1. Volte no menu WiiConnect24, vá para `Standy Connection` e certifique-se de que está habilitada. -1. Em `Slot Illumination`, recomendamos que você coloque a luz do disco para `Dim` ou `Bright`, mas isso é opcional. -1. Finalmente, vá para a seção `Internet` e, em seguida, `User Agreements` ou `Agreement/Contact`, e `Yes`. Por favor, leia isto. - -[Retorne para WiiConnect24](wiiconnect24) -{: .notice--info} - -[Clique aqui para voltar ao índice do site.](site-navigation) -{: .notice--info} +{% include redirect.html redirect_to="https\://www\.wiilink24.com/guide/install/" %} diff --git a/_pages/pt_BR/riitag.md b/_pages/pt_BR/riitag.md new file mode 100644 index 000000000..e6b6bc322 --- /dev/null +++ b/_pages/pt_BR/riitag.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="https\://wiki.hacks.guide/wiki/RiiTag" %} diff --git a/_pages/pt_BR/riivolution.md b/_pages/pt_BR/riivolution.md new file mode 100644 index 000000000..d7eef1b3f --- /dev/null +++ b/_pages/pt_BR/riivolution.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="410.html" %} diff --git a/_pages/pt_BR/site-navigation.md b/_pages/pt_BR/site-navigation.md index 922f67338..2981b745f 100644 --- a/_pages/pt_BR/site-navigation.md +++ b/_pages/pt_BR/site-navigation.md @@ -36,7 +36,7 @@ sitemap: false + [BootMii Backup](bootmii) + [BootMii Recovery (RestoreMii)](bootmiirecover) + [Introdução](bricks) -+ [Brick Prevention](bricks#brick-prevention) ++ [Prevenção de brick](bricks#brick-prevention) + [cIOS](cios) + [Homebrew Channel](hbc) + [ModMii](modmii) diff --git a/_pages/pt_BR/themes.md b/_pages/pt_BR/themes.md index f3492281d..ac91491bf 100644 --- a/_pages/pt_BR/themes.md +++ b/_pages/pt_BR/themes.md @@ -4,13 +4,16 @@ title: "Instalando Temas no Menu do Wii" {% include toc title="Sumário" %} -Este guia é apenas para Wiis regulares. Para instalar temas no vWii (Wii U), siga [esta página](themes-vwii). Additionally, forwarders are covered. +This guide is intended to be the last you will ever need when it comes to theming on the Wii, not only providing instructions for the Wii Menu through csm-installer, but also with themes on WiiFlow Lite, USB Loader GX, and The Homebrew Channel. Additionally, forwarders are covered. ### Vá para `Options` > `Standard System Menu` > Versão do seu Menu do Wii > Região do seu Menu do Wii DO NOT CONTINUE WITH THIS GUIDE UNLESS YOU HAVE ADEQUATE BRICK PROTECTION, SPECIFICALLY [BOOTMII](bootmii) AND [PRIILOADER](priiloader)! {: .notice--danger} +This tutorial does not work on the Wii mini. Do not attempt this tutorial on the Wii mini or it will cause a [brick](bricks#theme-brick). +{: .notice--warning} + csm-installer has built in safety features to prevent from installing bad or corrupt Wii Menu themes, so please opt to use it instead of other theme installation homebrew. {: .notice--warning} diff --git a/_pages/pt_BR/usbloadergx.md b/_pages/pt_BR/usbloadergx.md new file mode 100644 index 000000000..00a63864a --- /dev/null +++ b/_pages/pt_BR/usbloadergx.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-loaders.html" %} diff --git a/_pages/pt_BR/wiibackupmanager.md b/_pages/pt_BR/wiibackupmanager.md new file mode 100644 index 000000000..063d7bba0 --- /dev/null +++ b/_pages/pt_BR/wiibackupmanager.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-backups.html" %} diff --git a/_pages/pt_BR/wiiconnect24.md b/_pages/pt_BR/wiiconnect24.md index a1a83b8b8..2e6cb71ab 100644 --- a/_pages/pt_BR/wiiconnect24.md +++ b/_pages/pt_BR/wiiconnect24.md @@ -3,44 +3,21 @@ title: "WiiConnect24" --- {% include toc title="Sumário" %} + -This guide provides different means of regaining WiiConnect24 functionality on your console. Although not at all nessecary, it is a "nice to have" feature that was originally used for online connectivity in certain applications on the console. These apps include the Forecast/News Channel, Nintendo Channel, Check Mii Out Channel, some Japan-exclusive channels, and more. Please bear in mind, the functionality you gain depends entirely on what service(s) you use. +[WiiConnect24](https://wikipedia.org/wiki/WiiConnect24) was a service that allowed users with Internet connected Wiis to view the weather & local news, send messages to friends, participate in Mii contest, and more. WiiConnect24 was discontinued on June 27th, 2013. -### Service Overview +## RiiConnect24 + WiiLink +[RiiConnect24](https://rc24.xyz) is a revival service for WiiConnect24 that started in 2015, which allows you to regain its functionality on your console. As of late 2023, the service is now owned by WiiLink, a project that started in 2020 that was previously aiming at the Japanese-exclusive channels. -#### Note about service compatibility: -Both services listed below are compatible with one another and can be loaded on the same console. With this said, it should be noted that when installing one channel over the other (WiiLink's Forecast Channel over RiiConnect24's Forecast Channel for example), the channel you are installing will overwrite the old one. - - -#### Service Support Status -✅ - In support
⚠️ - In development
⛔ - No support - -| Service Name | WiiLink | RiiConnect24 | -| ----------------------- | ------- | ------------ | -| Forecast Channel | ✅ | ✅ | -| News Channel | ⚠️ | ✅ | -| Wii Mail | ✅ | ✅ | -| Everybody Votes Channel | ✅ | ✅ | -| Nintendo Channel | ✅ | ✅ | -| Check Mii Out Channel | ⚠️ | ✅ | -| Wii Room | ✅ | ⛔ | -| Food Channel | ✅ | ⛔ | -| Photo Prints Channel | ✅ | ⛔ | -| Kirby TV Channel | ✅ | ⛔ | -| TV Guide Channel | ⚠️ | ⛔ | - -#### WiiLink -A newer WC24/Japanese channel revival service that started in 2020, but is rapidly regaining functionality in many different channels. - -Service support status can be found [here](https://www.wiilink24.com/status).
Their guide can be found [here](https://www.wiilink24.com/guide). - -#### RiiConnect24 -The longest lasting WC24 revival service, currently only with support for the worldwide WC24 channels as well as mail services. - -Service support status can be found [here](https://rc24.xyz/stats/).
RiiConnect24 currently does not have a self-hosted guide, however you can find ours [here](riiconnect24). +There is a patcher that ships both of these services together as one - meaning you get all of the international and Japanese-only channels in one package. The guide on how to install these services can be found [on WiiLink's website.](https://www.wiilink24.com/guide/) + ### Updating RTC Clock -If you choose to install either of these services on your Wii, it is advised to synchronize its external clock in order to prevent various issues (such as inability to use said services) that may arise otherwise. The steps to do so can be found below: #### Você precisará de + A working Internet connection on your Wii diff --git a/_pages/pt_BR/wiiflow.md b/_pages/pt_BR/wiiflow.md new file mode 100644 index 000000000..00a63864a --- /dev/null +++ b/_pages/pt_BR/wiiflow.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-loaders.html" %} diff --git a/_pages/pt_PT/410.md b/_pages/pt_PT/410.md new file mode 100644 index 000000000..21f077b23 --- /dev/null +++ b/_pages/pt_PT/410.md @@ -0,0 +1,12 @@ +--- +title: Page no longer exists +sitemap: false +--- + +The page you are trying to view used to exist, but it has since been removed. Maybe the instructions you are following are outdated? (If you got here from a link on this guide, [let us know](https://github.com/hacks-guide/Guide_Wii/issues)) + +[Click here to go back to the site index.](site-navigation) +{: .notice--info} + +![](https://http.cat/410) +{: .notice--info} diff --git a/_pages/pt_PT/bootmii.md b/_pages/pt_PT/bootmii.md index f7071657a..6ff8bedf3 100644 --- a/_pages/pt_PT/bootmii.md +++ b/_pages/pt_PT/bootmii.md @@ -6,21 +6,9 @@ title: "BootMii Backup" You need an **SD card** to create a NAND backup using BootMii. If you do not have one, you can skip this page, although it is highly recommended to make a NAND backup if you can. -Family edition Wiis (Wiis without GameCube ports) CANNOT restore NAND backups. This is because of the lack of GameCube ports which are required on non-boot2 Wiis to enter the restoration confirmation code. Regardless, it is still recommended to make one on these consoles. -{: .notice--danger} - You need an **SD card** to use BootMii at all, but especially to create a NAND backup. If you do not have an SD card on hand right now, you can skip this page, but it is HIGHLY RECOMMENDED to return to this page later to back up your NAND. {: .notice--warning} -Navigating BootMii is not possible using a Wii Remote. You must use the POWER and RESET buttons on your console, or a GameCube controller plugged into port 1. To navigate between options, press POWER on your Wii (or left/right on the +Control Pad on a GameCube controller). To select an option, press RESET on your Wii or A on your GameCube controller. One of BootMii's most important features is the ability to backup and restore your Wii's NAND storage. We will be going over how to perform a NAND backup. You can then restore from that backup for any reason. -{: .notice--info} - -If the `Launch BootMii` button does not appear, please [re-launch the HackMii Installer](hackmii) and install BootMii. -{: .notice--warning} - -If the screen stays black and the blue disc drive light is blinking, you are missing the BootMii files on your SD card. Download [this zip file](https://static.hackmii.com/bootmii_sd_files.zip) and extract it to the root of your SD card, then try again. Download [this zip file](/assets/files/bootmii_sd_files.zip) and extract it to the root of your SD card, then try again. -{: .notice--warning} - ### Requirements * An SD card with at least 512MB of free space @@ -36,10 +24,19 @@ If you have BootMii installed as boot2 you will need to launch BootMii by restar ![](/images/bootmii/BootMii_HBC.png) + If the `Launch BootMii` button does not appear, please [re-launch the HackMii Installer](hackmii) and install BootMii. + {: .notice--warning} + + If the screen stays black and the blue disc drive light is blinking, you are missing the BootMii files on your SD card. Download [this zip file](https://static.hackmii.com/bootmii_sd_files.zip) and extract it to the root of your SD card, then try again. Download [this zip file](/assets/files/bootmii_sd_files.zip) and extract it to the root of your SD card, then try again. + {: .notice--warning} + 1. You should see an image similar to the below now on your screen: ![](/images/bootmii/BootMii_Main.png) + Navigating BootMii is not possible using a Wii Remote. You must use the POWER and RESET buttons on your console, or a GameCube controller plugged into port 1. To navigate between options, press POWER. To select an option, press RESET. + {: .notice--info} + 1. Select the Options button (the icon with the gears). ![](/images/bootmii/BootMii_Gears.png) @@ -65,7 +62,7 @@ If you have BootMii installed as boot2 you will need to launch BootMii by restar
Please be reminded that restoring a NAND backup is usually a last resort, and that there often better ways to fix your brick. There often better ways to unbrick your console. Try your best to [identify your brick condition](bricks) and reverse the action that caused it in the first place. -To restore from a NAND backup on your SD card, you can follow the instructions for [RestoreMii](bootmiirecover). +To restore from a NAND backup on your SD card, you can follow the instructions for [RestoreMii](bootmiirecover). **Family edition Wiis (Wiis without GameCube ports) CANNOT restore NAND backups.**
BootMii as boot2 is recommended, but only available to install on early Wii consoles. Otherwise, it can only be installed as an IOS. If you would like to change this, you can use the app [BootMii Config Editor](https://oscwii.org/library/app/BootMiiConfigurationEditor). Or, you can edit `sd:/bootmii/bootmii.ini` manually. diff --git a/_pages/pt_PT/bricks.md b/_pages/pt_PT/bricks.md index eea7d9fe9..a0dabf3fb 100644 --- a/_pages/pt_PT/bricks.md +++ b/_pages/pt_PT/bricks.md @@ -111,7 +111,7 @@ Attempt to start the Wii - warning/press A screen shows up, and when A is presse A theme brick occurs when a wrongly formatted theme is installed. #### Solutions -To resolve this issue, open HBC through Priiloader and access MyMenuifyMod to install a default theme. Alternatively, go into [YAWM ModMii Edition](yawmme) and install the CORRECT default Wii Menu WAD for your region and version. +To resolve this issue, open HBC through Priiloader or BootMii as boot2 and access csm-installer to install a default theme such as the base Wii Menu theme. Alternatively, go into [YAWM ModMii Edition](yawmme) and install the CORRECT default Wii Menu WAD for your region and version. ## Mail brick diff --git a/_pages/pt_PT/cios.md b/_pages/pt_PT/cios.md index c36409bde..ac5e93ef5 100644 --- a/_pages/pt_PT/cios.md +++ b/_pages/pt_PT/cios.md @@ -65,6 +65,12 @@ The WAD files should be on your SD card like this: ![](/images/cios/d2x_offline_ ![](/images/cios/d2x_v11_248.png) + The warning "`(c)IOS detected in slot ### will be overwriitten`" can be safely ignored. + {: .notice--info} + + If you are seeing "`Slot ### already used in batch settings`" or "`cIOS already added in batch with revision ##### and slot ###`", press `-` to disable batch mode.
(If you are trying to exit the installer, the button is B, not Home.) + {: .notice--info} + 1. Press `A`. This will bring you to the slot map: ![](/images/cios/d2x_summary.png) diff --git a/_pages/pt_PT/dosanddonts.md b/_pages/pt_PT/dosanddonts.md new file mode 100644 index 000000000..6ceed5bee --- /dev/null +++ b/_pages/pt_PT/dosanddonts.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="faq.html" %} diff --git a/_pages/pt_PT/hbc.md b/_pages/pt_PT/hbc.md index c320f2693..776b76d7c 100644 --- a/_pages/pt_PT/hbc.md +++ b/_pages/pt_PT/hbc.md @@ -6,7 +6,7 @@ title: "Homebrew Channel and BootMii Installation" The Homebrew Channel is where you will go to launch homebrew applications. BootMii is a piece of software that can backup and restore your Wii's NAND storage, and if installed in boot2, provides brick protection. -BootMii can be installed in two ways: directly to a part of the Wii bootloader called boot2, and via an IOS. BootMii under boot2 is preferred as it provides extended brick protection, but Wiis with a vulnerable boot2 are considerably rarer, having been manufactured before 2009. In most cases, installing BootMii as IOS should be fine, as long as you also install [Priiloader](priiloader). +BootMii can be installed in two ways: directly to a part of the Wii bootloader called boot2, and via an IOS. BootMii under boot2 is preferred as it provides extended brick protection, but Wiis with a vulnerable boot1 that allows this installation are considerably rarer, having been manufactured before 2009. In most cases, installing BootMii as IOS should be fine, as long as you also install [Priiloader](priiloader). {: .notice--info} If you do not have an SD card, you cannot install nor use BootMii, and therefore will not be able to utilize any of the mentioned benefits.
You can always [install it at a later date](hackmii). diff --git a/_pages/pt_PT/modmii.md b/_pages/pt_PT/modmii.md index b444a86b7..3c62041d1 100644 --- a/_pages/pt_PT/modmii.md +++ b/_pages/pt_PT/modmii.md @@ -4,116 +4,190 @@ title: "ModMii" {% include toc title="Table of Contents" %} -If you need help for anything regarding this tutorial, please join [the ModMii Discord server](https://discord.gg/cMnBRACQwQ). -{: .notice--info} - This Program does NOT come with a warranty, so you are responsible for any potential damage done to your Wii. {: .notice--warning} This program is NOT intended to be used for the vWii or the Wii mini. Some tools may or may not work for these platforms. {: .notice--warning} -/images/Modmii/modmii.png +ModMii is an all-in-one Wii hacking tool for Windows created by XFlak that has various helpful tools for modding. It can accomplish the following: -Some advanced options may not be accessible in ModMii Skin. A list of the various activities for ModMii Classic can be found at the bottom of the page. -{: .notice--info} ++ Hacking the console for the first time, or re-hacking it ++ Check for and update outdated softmods ++ Fix upside-down Homebrew Channel problems ++ Run homebrew without making any changes to your Wii's NAND ++ Download homebrew ++ And more! -### Requirements +### ModMii Overview + +There are two different ways to use ModMii. There is ModMii Classic, which uses a command line interface, but has all of the features available to the program. ModMii Skin has a graphical user interface, on the other hand, but has less options available to the user. If you're looking to simply mod your Wii for the first time, ModMii Skin should suffice. Otherwise, we reccomend using ModMii Classic where possible.
The chart below will help you determine what can be done in either interface. + +| Tools | ModMii Classic | ModMii Skin | +| -------------------------- | -------------- | ----------- | +| ModMii Wizard | ✅ | ✅ | +| SysCheck Updater Wizard | ✅ | ⛔ | +| USB Loader Setup Wizard | ✅ | ✅ | +| HackMii Solutions Wizard | ✅ | ✅ | +| Abstinence Wizard | ✅ | ✅ | +| Region Change Wizard | ✅ | ✅ | +| SNEEK/EmuNAND Installation | ✅ | ✅ | +| Open File Function | ✅ | ⛔ | +| Load Download Queue | ✅ | ✅ | +| Download Page 1/2/3/4 | ✅ | ⛔ | +| Advanced Downloads | ✅ | ⛔ | +| Load Download Queue | ✅ | ⛔ | +| Build Config Files | ✅ | ⛔ | +| File Cleanup & App Updater | ✅ | ⛔ | + +
+Click here for a detailed explanation of each tool. + +| Tool | Description | +| --------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| W = ModMii Wizard <-- Start Here to Mod Your Wii! | This option can be used to hack your Wii for the first time or re-hack a Wii that has been previously modded. | +| SU = SysCheck Updater Wizard (update only your outdated softmods) | This option checks for and updates old modifications installed to their wii such as DarkCorp/CIOSSPAGHETTI that can potentially cause problems for the latest homebrew custom firmware. | +| U = USB-Loader Setup Wizard | This option will properly set up your USB loader to be able to load your disk backups from an SD or USB hard drive. This option is not necessary if using the ModMii Wizard. | +| H = HackMii Solutions Wizard (Upside-Down HBC\No Vulnerable IOS Fix) | This option is useful for people who are having trouble getting the HackMii Installer to work or have an upside down homebrew channel. | +| AW = Abstinence Wizard (Non-permanent Wii Hacks) | This option allows you to run homebrew on your Wii without making any permanent modifications to the system NAND. | +| RC = Region Change Wizard | This option can be used to change the region of your Wii without bricking it, and is arguably the best region changing wizard on the internet. | +| S = SNEEK Installation, EmuNAND Builder\Modifier, Game Bulk Extractor | This option will help you properly set up an EmuNAND (aka neek2o) onto your SD or USB. Benefits for EmuNAND include extra storage space for save games or channels, as well as running homebrew without making any permanent modifications to the system NAND. | +| F = open a File or Folder with ModMii for many more functions! | This option is an advanced tool especially helpful for developers. | +| 1 = Download Page 1 (System Menus, IOSs, MIOSs, Channels, etc.) | This option opens the first download page that includes most of the key parts of the Wii System Menu (downloaded from NUS). | +| 2 = Download Page 2 (Apps, USB-Loader Files, CheatCodes, etc.) | This option opens the second download page that includes exploits and useful apps for your Wii including some PC programs. | +| 3 = Download Page 3 (System Menu Themes) | This option opens the third download page that includes some system menu themes and items required to install system menu themes (base apps are downloaded from NUS). | +| 4 = Download Page 4 (cIOSs and cMIOSs) | This option opens the fourth download page that includes cIOSes and cMIOSes for use in USB loaders. | +| A = Advanced Downloads and Forwarder DOL\ISO Builder | This option allows you to download any IOS and cIOS and build custom DOL/ISO forwarders. Intended for advanced users only. | +| L = Load Download Queue | This option loads bundled or previously saved download queues. | +| C = Build Config Files for Bootmii, Wad Manager or Multi-Mod Manager | This option allows you to build customized config files for BootMii, Wad Manager, and Multi-Mod Manager. | +| FC = File Cleanup & App Updater: Update Apps and\or remove un-needed files | This option removes unnessecary files from your SD Card or Hard Drive after finishing softmodding your Wii. | + +

+ +When using ModMii, it is important to note that it will generate a custom guide for you depending on the options that you select. For this reason, this guide will not be focused on how to mod your Wii, as ModMii handles that function. Instead, it will be a quick start guide show you how to effectively use it with the most common options. + +### Installing ModMii + +#### Requirements * A Wii * A USB drive or SD Card * A Windows PC (a Virtual Machine will work) * [ModMii](https://modmii.github.io/) -This is a quick start guide on how to use ModMii on your Windows PC. +#### Installation -### ModMii Wizard +1. Go to the [ModMii website](https://modmii.github.io) and scroll down to the Download section. Here, select the `Installer` option. Your browser may flag the installer as malware, but it is a **false positive**. -You can use the ModMii wizard to softmod any Wii.
Even if the Wii has been softmodded in the past, you can have ModMii overwrite existing softmods by telling ModMii that this is the first time you're modding your Wii (even though it's not). + ![](/images/modmii/modmii-download.png) -You can also use this wizard to set up a USB loader at the same time, instead of having to use the USB Loader setup wizard later on. +2. Open the `ModMiiInstaller.exe` file and go through the setup process. + + ![](/images/modmii/modmii-install.png) + +### Using the ModMii Wizard + +The ModMii Wizard is tool that can softmod your Wii from start to finish, downloading all necessary files and then generating a guide that you can use to implement the softmod. This tool can also be used to overwrite existing softmods on a previously softmodded Wii. + +1. Open ModMii Skin or ModMii Classic and select the ModMii Wizard option at the top of the list. + + ![](/images/modmii/modmii-wizard-1.png) + +1. Answer `Yes` to the first question, unless you have a very specific idea of what you would like to do or update to your Wii. + + ![](/images/modmii/modmii-wizard-2.png) + +1. Select your current System Menu version, followed by the System Menu Region, following the instructions in the program. If you are still confused, check the bottom option on each screen for an instructional video. + + ![](/images/modmii/modmii-wizard-3.png) + +1. Select the exploit you would like to use to mod your Wii. The exploits below are outlined throughout this website, but in most cases we would reccommend using Wilbrand if you have an SD card on hand. + + ![](/images/modmii/modmii-wizard-4.png) + +1. If you selected the Wilbrand option in the previous step, enter your Wii's MAC address. If you don't know how to check your Wii's MAC address, enter `Help` in the text box for an instructional video. + + ![](/images/modmii/modmii-wizard-5.png) + +1. Select your desired System Menu version from the list. + + ![](/images/modmii/modmii-wizard-6.png) + +1. Select whether or not you would like to install any of the listed channels - this is an optional step. + + ![](/images/modmii/modmii-wizard-7.png) + +1. Select whether or not you would like to install a custom Wii theme, with the choice of three theme effects. Each effect deals with how much the outline when hovering over a Wii Channel spins. + + ![](/images/modmii/modmii-wizard-8.png) + +1. Select whether or not you would like to set up a USB Loader for use with your Wii. + + ![](/images/modmii/modmii-wizard-9.png) + +1. If you selected `Yes` in the USB Loader menu, select which USB Loader you would like to use. If you choose an individual one, we reccomend either USB Loader GX or WiiFlow as both are covered on this website, or you may optionally download each option. + + ![](/images/modmii/modmii-wizard-10.png) + +1. If you selected `Yes` in the USB Loader menu, select where you would like to save your USB Loader files at. + + ![](/images/modmii/modmii-wizard-11.png) + +1. Verify where you would like to save files for your SD Card and/or USB Drive. + + ![](/images/modmii/modmii-wizard-12.png) + +1. Confirm your settings are correct, and then press `Finish`. Once you press the button, ModMii will begin to process and download files in the background, and will automatically generate and open a guide for you. From here, you should follow the guide generated by ModMii. + + ![](/images/modmii/modmii-wizard-13.png) ### SysCheck Updater Wizard -[SysCheck](syscheck) is a homebrew application that analyzes the modifications on a Wii.
You can give a SysCheck report to ModMii to help identify & update outdated mods. +The SysCheck Updater Wizard is a tool that utilizes the homebrew app [SysCheck](syscheck) to analyze any modifications on your Wii, especially IOS and cIOS. It accepts a `syscheck.csv` file generated by the app, and then provides any nessecary updates as needed. -You can have ModMii analyze a SysCheck by dragging the `syscheck.csv` file onto ModMii.exe. Or, you can launch the SysCheck Updater Wizard (`SU`) from ModMii's main menu and manually browse for the file. +1. Open ModMii Classic and enter in `SU` to open the SysCheck Updater Wizard. + + ![](/images/modmii/syscheck-wizard-1.png) + +1. Follow the instructions in the window if you don't already have a SysCheck log, and then drag and drop the `syscheck.csv` file from Windows Explorer into the window. This will paste the location of the file, from which you can press Enter. + + ![](/images/modmii/syscheck-wizard-2.png) + +1. The program will analyze your SysCheck file, and will provide options for you depending on what it sees. In this example instance, the mods on the Wii were up-to-date, but there were several unnecessary IOSes that could be stubbed. If you want to make these changes to your Wii, simply enter in `Y` and press Enter. From here, you should follow the guide generated by ModMii. + + ![](/images/modmii/syscheck-wizard-3.png) ### HackMii Solutions Wizard -The HackMii Solutions wizard can help fix symptoms like these: +The HackMii Solutions Wizard is a tool that fixes problems that may arise from things like Darkcorp/CIOSSPAGHETTI by installing clean IOSes. Examples of problems that may arise because of this are listed below: + HackMii Installer not prompting "Press (1) to continue" -+ HackMii Installer says "no vulnerable IOS found!" -+ Homebrew Channel is displaying upside-down ++ HackMii Installer saying "no vulnerable IOS found!" ++ Homebrew Channel displaying upside-down -It will install clean IOSs to allow for the HackMii Installer to operate properly. +1. Open ModMii Skin or ModMii Classic and select the HackMii Solutions option. -### Abstinence Wizard + ![](/images/modmii/hackmii-wizard-1.png) -This wizard requires an SD card. -{: .notice--warning} +1. Select your current System Menu version, followed by the System Menu Region, following the instructions in the program. If you are still confused, check the bottom option on each screen for an instructional video. -This wizard allows you to enjoy many of the benefits of a softmodded Wii without installing any permanent modifications to your Wii. It will allow you to launch an exploit to boot an from emulated NAND from external storage, instead of your Wii's internal NAND. + ![](/images/modmii/hackmii-wizard-2.png) -On a related note, you can also make a NAND backup without modifying your Wii at all. Find ModMii's "Support" folder and launch `Casper2BootMii.bat`.
It will save some files to a folder named `COPY_TO_SD`, copy the files inside it to your SD card and [launch an exploit](get-started). +1. Select the exploit you would like to use to mod your Wii. The exploits below are outlined throughout this website, but in most cases we would reccommend using Wilbrand if you have an SD card on hand. -When following one of the exploit guides above, please avoid replacing the `boot.elf` file. -{: .notice--warning} + ![](/images/modmii/hackmii-wizard-3.png) +1. If you selected the Wilbrand option in the previous step, enter your Wii's MAC address. If you don't know how to check your Wii's MAC address, enter `Help` in the text box for an instructional video. -
-Click here for a full list of available tools. + ![](/images/modmii/hackmii-wizard-4.png) -| Tool | Description | -| --------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| W = ModMii Wizard <-- Start Here to Mod Your Wii! | This option can be used to mod your Wii for the first time or re-mod a Wii that has been previously modded. | -| SU = SysCheck Updater Wizard (update only your outdated softmods) | This option is useful for people who have old modifications installed to their wii such as DarkCorp/Ciosspaghetti that can potetially cause problems for the latest homebrew custom firmware. | -| U = USB-Loader Setup Wizard | This option will help you properly set up your USB loader to be able to load your disk backups from an SD or USB hard drive. | -| H = HackMii Solutions Wizard (Upside-Down HBC\No Vulnerable IOS Fix) | This option is useful for people who are having trouble getting the HackMii Installer to work, or if they just simply have an upside down homebrew channel, or if DarkCorp/Ciosspaghetti was installed and there was no homebrew channel. | -| AW = Abstinence Wizard (Non-permanent Wii Hacks) | This option is useful for people who dont want to make any permanent modifications to their Wii but still want to have some of the benefits that homebrew can offer. | -| RC = Region Change Wizard | This option can be used to change the region of your Wii without bricking it (this is the best region changer tutorial available on the internet!). | -| S = SNEEK Installation, EmuNAND Builder\Modifier, Game Bulk Extractor | This option will help you properly set up an EmuNAND (aka neek2o) onto your SD or USB. benefits for emunand include extra storage space for save games or channels. and the benefit of not making any permanent modifications to your Wii. | -| F = open a File or Folder with ModMii for many more functions! | This option is an advanced tool especially helpful for developers. | -| 1 = Download Page 1 (System Menus, IOSs, MIOSs, Channels, etc.) | This option opens the first download page that includes most of the key parts for the system menu (downloaded from NUS). | -| 2 = Download Page 2 (Apps, USB-Loader Files, CheatCodes, etc.) | This option opens the second download page that includes exploits and useful apps for your Wii including some PC programs. | -| 3 = Download Page 3 (System Menu Themes) | This option opens the third download page that includes some system menu themes and items required to install system menu themes (base apps are downloaded from NUS). | -| 4 = Download Page 4 (cIOSs and cMIOSs) | This option opens the fourth download page that includes cIOSes and cMIOSes for use in USB loaders. It is recommended to just install the recommended cioses unless you plan to do some testing. | -| A = Advanced Downloads and Forwarder DOL\ISO Builder | This option is an advanced tool used to better customize downloads or allow you to build a dol executable useful for fowarders (channels on the system menu to access Wii applications). | -| L = Load Download Queue | This option will download all of the required titles need for the Wii system menu (titles are downloaded from NUS) | -| C = Build Config Files for Bootmii, Wad Manager or Multi-Mod Manager | This option will help you build configuration files required for certain applications. | -| FC = File Cleanup & App Updater: Update Apps and\or remove un-needed files | This option is useful for people who want to clean out their SD or USB of apps deemed outdated, useless, or otherwise depreciated. | -| M = ModMii Skin Mode: use your mouse instead of your keyboard! | This option will launch ModMii skin mode. Some advanced options may not be available in this view. | +1. Verify where you would like to save files for your SD Card and/or USB Drive. -
+ ![](/images/modmii/modmii-wizard-12.png) -
-Click here for a full list of available options. +1. Confirm your settings are correct, and then press `Finish`. Once you press the button, ModMii will begin to process and download files in the background, and will automatically generate and open a guide for you. From here, you should follow the guide generated by ModMii. After finishing this guide, it is recommended that you use the [SysCheck Updater Wizard](#syscheck-updater-wizard) to undo any other problematic modifications on your Wii. -| Option | Description | -| ---------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| D = Change Drive letter: | Changes where your SD files are saved to. | -| DU = Change Drive letter for USB: | Changes where your USB files are saved to. | -| d2x = change d2x cIOS version built: | Changes the cios version ModMii downloads. | -| H = Hermes cIOSs (202 & 222-224) will also be recommended | Enables Hermes IOS to be recommended and downloaded in the syscheck updater (will be stubbed if disabled). | -| CM = cMIOS included in recommended cIOSs | Enables cMIOS to be recommended and downloaded in the syscheck updater (will install stock MIOS if disabled). | -| E = Extra Brick Protection in ModMii Wizard Guides | Enables ModMiis Extra Brick Protection IOSes to be recommended and used in the syscheck updater tool. | -| U = Update IOSs. Wizard/SysCheck-Updater to update Active IOSs | Updates Existing IOSes to the latest version available on NUS. | -| AU = Auto-Updating downloads will skip update check if cached | Will skip downloading the files if already in the queue. | -| FWD = Install USB-Loader Forwarder in ModMii Wizard Guides | Will include the USB loader forwarder wad file in the USB loader wizard guides. | -| PC = PC Programs Save Location | Changes the save location for the downloadable PC programs. | -| RS = Root Save: Save IOSs\MIOSs to Root instead of WAD Folder | Saves IOSs\MIOSs to Root instead of WAD Folder. | -| 1 = Do not Keep 00000001 or NUS Folders for IOSs\MIOSs\SMs etc | Deletes the folder used for compiling the wad file and just gives you the wad file. | -| n2o = neek2o - build mod of s\uneek instead of original | Uses a better modified version of neek2o in the EmuNAND builder. | -| SSD = SNEEK and SNEEK+DI SD Access | Allows for SNEEK and SNEEK+DI access on the SD card. | -| F = Font.bin Colour for SNEEK/UNEEK | Changes the font color for neek2o. | -| SV = SNEEK Verbose Output | Displays extra information regarding EmuNAND. | -| V = Verbose for ModMii Skin & nandBinCheck | Displays another window with extra information regarding a nand check. | -| SO = Play sound at Finish | Plays a fun jingle after a successful download. | -| A = Auto-Update ModMii at program start | Will automatically check for updates when ModMii is launched. | -| N = Check for New versions of ModMii right now | Will check online for a ModMii update. | - -
+ ![](/images/modmii/hackmii-wizard-5.png) [Click here to go back to the site index.](site-navigation) {: .notice--info} diff --git a/_pages/pt_PT/nintendont.md b/_pages/pt_PT/nintendont.md new file mode 100644 index 000000000..d7eef1b3f --- /dev/null +++ b/_pages/pt_PT/nintendont.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="410.html" %} diff --git a/_pages/pt_PT/recommended-homebrew.md b/_pages/pt_PT/recommended-homebrew.md index b2bada15a..2d3869c77 100644 --- a/_pages/pt_PT/recommended-homebrew.md +++ b/_pages/pt_PT/recommended-homebrew.md @@ -16,7 +16,7 @@ Homebrew that has the ability to make permanant changes to your Wii are highligh + [**AnyRegion Changer ME**](https://oscwii.org/library/app/ARCME) - ModMii edition of AnyRegion Changer. While a powerful tool for changing region settings, it can also lead to severe bricks like [Korean Kii/Error 003](bricks#korean-kiierror-003-brick) so **only use this app if you know what you are doing**. + [**WiiXplorer-SS**](https://oscwii.org/library/app/wiixplorer-ss) - A modified and updated version of WiiXplorer. A file manager for the Wii, it allows you to view and customize files both on an SD card, a USB device, and the internal Wii memory. For this reason it is a very powerful but also dangerous tool - don't modify files on the system NAND unless you know what you are doing, as it can lead to various types of [bricks](bricks). + [**SaveGame Manager GX**](https://oscwii.org/library/app/SaveGame_Manager_GX) - A savegame/Mii extractor for the Wii. It supports GameCube memory cards (physical and virtual), emuNANDs, normal and protected saves, themes, and more. -+ [**MyMenuifyMod**](https://oscwii.org/library/app/mymenuifymod) - An application that allows you to theme the Wii Menu. While quite useful to make your Wii unique, it also has the ability to cause a [minor brick](bricks#theme-brick), so make sure to read our [theme guide](themes) for safe usage instructions. ++ [**csm-installer**](https://oscwii.org/library/app/csm-installer) - An application that allows you to theme the Wii Menu. While quite useful to make your Wii unique, it also has the ability to cause a [minor brick](bricks#theme-brick), so make sure to read our [theme guide](themes) for safe usage instructions. + [CleanRip](https://oscwii.org/library/app/CleanRip) - A tool to backup GameCube and Wii discs. Further information can be found in our [disc dumping guide](dump-games). + [**d2x cIOS installer**](https://oscwii.org/library/app/d2x-cios-installer) - A custom installer for Wii IOS, some of which is required for the functioning of certain software like USB loaders. You can see the guide [here](cios). + [FTPii](https://oscwii.org/library/app/ftpii) - An FTP server for your Wii, allowing you to transfer files across the network. diff --git a/_pages/pt_PT/riiconnect24.md b/_pages/pt_PT/riiconnect24.md index d57dfafad..d1e91b7e8 100644 --- a/_pages/pt_PT/riiconnect24.md +++ b/_pages/pt_PT/riiconnect24.md @@ -1,138 +1,5 @@ --- -title: "RiiConnect24" +title: Redirecting... --- -{% include toc title="Table of Contents" %} - -If you need help with anything regarding this tutorial, please join [the RiiConnect24 Discord server](https://discord.gg/rc24) (recommended) or [e-mail us at support@riiconnect24.net](mailto:support@riiconnect24.net). -{: .notice--primary} - -[RiiConnect24](https://rc24.xyz/) allows you to use discontinued services from WiiConnect24, which include the News, Forecast, Everybody Votes, Nintendo and Check Mii Out Channel, along with Wii Mail. - -It's recommended to set your Wii to the current time before proceeding. Follow [this tutorial](rtc) in order to set it. -{: .notice--warning} - -DO NOT INSTALL RIICONNECT24 ON A WII MINI! It will not work and it will brick the system. -{: .notice--danger} - -### Requirements - -Follow [this tutorial](riiconnect24-vwii) if you'd like to install RiiConnect24 on vWii (Wii Mode on Wii U). -{: .notice--primary} - -+ An SD card or USB drive -+ A Wii with an Internet connection -+ A PC with an Internet connection -+ [RiiConnect24 Patcher (Windows, Mac and Linux)](https://github.com/riiconnect24/RiiConnect24-Patcher/releases) -+ [YAWM ModMii Edition](https://oscwii.org/library/app/yawmme) - -### Instructions - -#### Section I - Using RiiConnect24 Patcher - -1. Click the link above to go to the GitHub page where the patcher is. -1. Download `RiiConnect24Patcher.bat` if you are on Windows, and `RiiConnect24Patcher.sh` if you are on a Unix system -1. RiiConnect24 Patcher Main Screen - + On Windows run `RiiConnect24Patcher.bat`. - + On Unix systems, open Terminal and type `bash`, then drag `RiiConnect24Patcher.sh` into the terminal then press enter. It should look like this: `bash RiiConnect24Patcher.sh`. -1. Press 1 to choose "`Start`" and confirm your selection by pressing `ENTER`. - - ![](/images/riiconnect24/patcher/1.JPG) - -1. Select the device you're patching for. - - ![](/images/riiconnect24/patcher/2.JPG) - -1. For this guide, choose "`Install RiiConnect24 on your Wii`" - - ![](/images/riiconnect24/patcher/3.JPG) - -1. Choose "`Express (Recommended)`". It will give you everything you need. - - ![](/images/riiconnect24/patcher/4.JPG) - -1. Select your region. - - ![](/images/riiconnect24/patcher/5.JPG) - -1. While you're at it, RiiConnect24 Patcher can additionally download some other optional channels that do not use RiiConnect24. `[X]` represents the options that selected. Just press 5 and `ENTER` if you're not interested. - - ![](/images/riiconnect24/patcher/6.JPG) - -1. Connect your SD Card or USB Drive to your computer and select "`1`". - - ![](/images/riiconnect24/patcher/7.JPG) - -1. If your device was detected successfully, select "`1`". If not, make sure there's a folder called `apps` on your SD Card or USB Drive and try again. - - ![](/images/riiconnect24/patcher/8.JPG) - -1. The patcher will download apps now - please be patient. - - ![](/images/riiconnect24/patcher/9.JPG) - -1. Once you reach the screen that says `Patching done`, you can exit the patcher. All the files should already be on your SD Card. - - ![](/images/riiconnect24/patcher/10.JPG) - - ![](/images/riiconnect24/patcher/11.PNG) - -1. If it did not copy everything automatically to your SD Card or USB Device, copy the `WAD` and `apps` folder next to `RiiConnect24Patcher.bat` to your SD Card or USB Device. - -#### Section II - Installing WADs - -If you are using Dolphin, you have finished the guide. Install the WADs by going to `Tools -> Install WAD` within Dolphin. -{: .notice--primary} - -You will now install the patched IOS and Channel WADs that are required to use RiiConnect24. - -1. Extract the YAWM ModMii Edition `.zip` file, and copy the `apps` folder to your SD card or USB drive. -1. Put your SD card or USB drive in your Wii. -1. Launch the Homebrew Channel on your Wii. -1. Launch YAWM ModMii Edition. -1. Select the device you have put the RiiConnect24 files on. -1. Highlight all the WADs in the `wad` folder by pressing the + Button to select them. When all of the WADs are selected, press A twice to install the WADs. -1. After they are successfully installed, press the HOME Button to exit back to the Homebrew Channel. - -#### Section III - Patching nwc24msg.cfg - -You will now patch your `nwc24msg.cfg` file which is required in order to use Wii Mail. - -1. Launch RiiConnect24 Mail Patcher. -1. It should only take a few seconds to patch your nwc24msg.cfg. When it's done, press the HOME Button to exit. - -#### Section IV - Connecting - -The old DNS server `164.132.44.106` has been deprecated as of `June 1st, 2023` and is no longer available to use. -{: .notice--warning} - -If you're getting errors such as `WiiConnect24 and Wii Shop Channel currently not being offered in your country`, go to Wii Settings -> Last Page -> Country and change it to United Kingdom. You will get this error when using a country that we don't support. Contact us at [support@riiconnect24.net](mailto:support@riiconnect24.net) if you need more help. -{: .notice--warning} - -If you get error 107245, then you have not installed the patched IOS.
-{: .notice--warning} - -You will now set your DNS to our servers. This is optional but it's recommended, because it enhances the use of RiiConnect24 and Wiimmfi by making some other features available. - -1. Go to `Wii Options`. -1. Go to `Wii Settings`. -1. Go to `Page 2`, then click on `Internet`. -1. Go to `Connection Settings`. -1. Select your current connection. -1. Go to `Change Settings`. -1. Go to `Auto-Obtain DNS` (Not IP Address), then select `No`, then `Advanced Settings`. -1. Type in `167.86.108.126` as the primary DNS. -1. Type in `1.1.1.1` as the secondary DNS. -1. Select `Confirm`, then select `Save`. -1. Select `OK` to perform a connection test. -1. If the connection test was successful, select `No` to skip the Wii System Update. -1. Go to `WiiConnect24`, then `WiiConnect24` again, and make sure it is enabled. -1. Back on the WiiConnect24 menu, go to `Standby Connection` and make sure it is enabled. -1. At `Slot Illumination`, we recommend you set the disc light to `Dim` or `Bright`, but this is optional. -1. Finally, go to the `Internet` section, then `User Agreements` or `Agreement/Contact`, then `Yes`. Please read through this. - -[Return to WiiConnect24](wiiconnect24) -{: .notice--info} - -[Click here to go back to the site index.](site-navigation) -{: .notice--info} +{% include redirect.html redirect_to="https\://www\.wiilink24.com/guide/install/" %} diff --git a/_pages/pt_PT/riitag.md b/_pages/pt_PT/riitag.md new file mode 100644 index 000000000..e6b6bc322 --- /dev/null +++ b/_pages/pt_PT/riitag.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="https\://wiki.hacks.guide/wiki/RiiTag" %} diff --git a/_pages/pt_PT/riivolution.md b/_pages/pt_PT/riivolution.md new file mode 100644 index 000000000..d7eef1b3f --- /dev/null +++ b/_pages/pt_PT/riivolution.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="410.html" %} diff --git a/_pages/pt_PT/themes.md b/_pages/pt_PT/themes.md index 0d5c5532d..21a096069 100644 --- a/_pages/pt_PT/themes.md +++ b/_pages/pt_PT/themes.md @@ -4,13 +4,16 @@ title: "Installing Wii Menu Themes" {% include toc title="Table of Contents" %} -This guide is intended for regular Wiis only. For installing themes on vWii (Wii U), follow [this page](themes-vwii). Additionally, forwarders are covered. +This guide is intended to be the last you will ever need when it comes to theming on the Wii, not only providing instructions for the Wii Menu through csm-installer, but also with themes on WiiFlow Lite, USB Loader GX, and The Homebrew Channel. Additionally, forwarders are covered. ### Section I - Finding a Theme DO NOT CONTINUE WITH THIS GUIDE UNLESS YOU HAVE ADEQUATE BRICK PROTECTION, SPECIFICALLY [BOOTMII](bootmii) AND [PRIILOADER](priiloader)! {: .notice--danger} +This tutorial does not work on the Wii mini. Do not attempt this tutorial on the Wii mini or it will cause a [brick](bricks#theme-brick). +{: .notice--warning} + csm-installer has built in safety features to prevent from installing bad or corrupt Wii Menu themes, so please opt to use it instead of other theme installation homebrew. {: .notice--warning} diff --git a/_pages/pt_PT/usbloadergx.md b/_pages/pt_PT/usbloadergx.md new file mode 100644 index 000000000..00a63864a --- /dev/null +++ b/_pages/pt_PT/usbloadergx.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-loaders.html" %} diff --git a/_pages/pt_PT/wiibackupmanager.md b/_pages/pt_PT/wiibackupmanager.md new file mode 100644 index 000000000..063d7bba0 --- /dev/null +++ b/_pages/pt_PT/wiibackupmanager.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-backups.html" %} diff --git a/_pages/pt_PT/wiiconnect24.md b/_pages/pt_PT/wiiconnect24.md index 894f24c37..ad0a4b6fc 100644 --- a/_pages/pt_PT/wiiconnect24.md +++ b/_pages/pt_PT/wiiconnect24.md @@ -3,44 +3,21 @@ title: "WiiConnect24" --- {% include toc title="Table of Contents" %} + -This guide provides different means of regaining WiiConnect24 functionality on your console. Although not at all nessecary, it is a "nice to have" feature that was originally used for online connectivity in certain applications on the console. These apps include the Forecast/News Channel, Nintendo Channel, Check Mii Out Channel, some Japan-exclusive channels, and more. Please bear in mind, the functionality you gain depends entirely on what service(s) you use. +[WiiConnect24](https://wikipedia.org/wiki/WiiConnect24) was a service that allowed users with Internet connected Wiis to view the weather & local news, send messages to friends, participate in Mii contest, and more. WiiConnect24 was discontinued on June 27th, 2013. -### Service Overview +## RiiConnect24 + WiiLink +[RiiConnect24](https://rc24.xyz) is a revival service for WiiConnect24 that started in 2015, which allows you to regain its functionality on your console. As of late 2023, the service is now owned by WiiLink, a project that started in 2020 that was previously aiming at the Japanese-exclusive channels. -#### Note about service compatibility: -Both services listed below are compatible with one another and can be loaded on the same console. With this said, it should be noted that when installing one channel over the other (WiiLink's Forecast Channel over RiiConnect24's Forecast Channel for example), the channel you are installing will overwrite the old one. - - -#### Service Support Status -✅ - In support
⚠️ - In development
⛔ - No support - -| Service Name | WiiLink | RiiConnect24 | -| ----------------------- | ------- | ------------ | -| Forecast Channel | ✅ | ✅ | -| News Channel | ⚠️ | ✅ | -| Wii Mail | ✅ | ✅ | -| Everybody Votes Channel | ✅ | ✅ | -| Nintendo Channel | ✅ | ✅ | -| Check Mii Out Channel | ⚠️ | ✅ | -| Wii Room | ✅ | ⛔ | -| Food Channel | ✅ | ⛔ | -| Photo Prints Channel | ✅ | ⛔ | -| Kirby TV Channel | ✅ | ⛔ | -| TV Guide Channel | ⚠️ | ⛔ | - -#### WiiLink -A newer WC24/Japanese channel revival service that started in 2020, but is rapidly regaining functionality in many different channels. - -Service support status can be found [here](https://www.wiilink24.com/status).
Their guide can be found [here](https://www.wiilink24.com/guide). - -#### RiiConnect24 -The longest lasting WC24 revival service, currently only with support for the worldwide WC24 channels as well as mail services. - -Service support status can be found [here](https://rc24.xyz/stats/).
RiiConnect24 currently does not have a self-hosted guide, however you can find ours [here](riiconnect24). +There is a patcher that ships both of these services together as one - meaning you get all of the international and Japanese-only channels in one package. The guide on how to install these services can be found [on WiiLink's website.](https://www.wiilink24.com/guide/) + ### Updating RTC Clock -If you choose to install either of these services on your Wii, it is advised to synchronize its external clock in order to prevent various issues (such as inability to use said services) that may arise otherwise. The steps to do so can be found below: #### What you need + A working Internet connection on your Wii diff --git a/_pages/pt_PT/wiiflow.md b/_pages/pt_PT/wiiflow.md new file mode 100644 index 000000000..00a63864a --- /dev/null +++ b/_pages/pt_PT/wiiflow.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-loaders.html" %} diff --git a/_pages/ro_RO/410.md b/_pages/ro_RO/410.md new file mode 100644 index 000000000..21f077b23 --- /dev/null +++ b/_pages/ro_RO/410.md @@ -0,0 +1,12 @@ +--- +title: Page no longer exists +sitemap: false +--- + +The page you are trying to view used to exist, but it has since been removed. Maybe the instructions you are following are outdated? (If you got here from a link on this guide, [let us know](https://github.com/hacks-guide/Guide_Wii/issues)) + +[Click here to go back to the site index.](site-navigation) +{: .notice--info} + +![](https://http.cat/410) +{: .notice--info} diff --git a/_pages/ro_RO/bootmii.md b/_pages/ro_RO/bootmii.md index ee02ebe00..28951b245 100644 --- a/_pages/ro_RO/bootmii.md +++ b/_pages/ro_RO/bootmii.md @@ -6,21 +6,9 @@ title: "BootMii Backup" BootMii allows for backing up and restoring your Wii's NAND storage. This page will guide you in backing up your Wii's NAND to an SD Card, which you can then use however you like. -Family edition Wiis (Wiis without GameCube ports) CANNOT restore NAND backups. This is because of the lack of GameCube ports which are required on non-boot2 Wiis to enter the restoration confirmation code. Regardless, it is still recommended to make one on these consoles. -{: .notice--danger} - You need an **SD card** to use BootMii at all, but especially to create a NAND backup. If you do not have an SD card on hand right now, you can skip this page, but it is HIGHLY RECOMMENDED to return to this page later to back up your NAND. {: .notice--warning} -Navigating BootMii is not possible using a Wii Remote. You must use the POWER and RESET buttons on your console, or a GameCube controller plugged into port 1. To navigate between options, press POWER on your Wii (or left/right on the +Control Pad on a GameCube controller). To select an option, press RESET on your Wii or A on your GameCube controller. You will NEED to use a GameCube controller to restore a NAND backup in the future if BootMii is installed as IOS. -{: .notice--info} - -If the `Launch BootMii` button does not appear in the Homebrew Channel, [re-launch the HackMii Installer](hackmii) and install BootMii. -{: .notice--warning} - -If the screen stays black and the blue disc drive light is blinking upon launching BootMii, you are missing the BootMii files on your SD card. Download [this zip file](/assets/files/bootmii_sd_files.zip) and extract it to the root of your SD card, then try again. -{: .notice--warning} - ### Instrumente necesare * An SD card with at least 512MB of free space @@ -36,10 +24,19 @@ If you have BootMii installed as boot2, you will need to launch BootMii by resta ![](/images/bootmii/BootMii_HBC.png) + If the `Launch BootMii` button does not appear in the Homebrew Channel, [re-launch the HackMii Installer](hackmii) and install BootMii. + {: .notice--warning} + + If the screen stays black and the blue disc drive light is blinking upon launching BootMii, you are missing the BootMii files on your SD card. Download [this zip file](/assets/files/bootmii_sd_files.zip) and extract it to the root of your SD card, then try again. + {: .notice--warning} + 1. You should see an image similar to the below now on your screen: ![](/images/bootmii/BootMii_Main.png) + Navigating BootMii is not possible using a Wii Remote. You must use the POWER and RESET buttons on your console, or a GameCube controller plugged into port 1. To navigate between options, press POWER. To select an option, press RESET. + {: .notice--info} + 1. Select the Options button (the icon with the gears). ![](/images/bootmii/BootMii_Gears.png) @@ -65,7 +62,7 @@ If you have BootMii installed as boot2, you will need to launch BootMii by resta
Note: **restoring a NAND backup is usually a last resort**. There often better ways to unbrick your console. Try your best to [identify your brick condition](bricks) and reverse the action that caused it in the first place. -To restore from a NAND backup on your SD card, you can follow the instructions for [RestoreMii](bootmiirecover) (Original Wii only). +To restore from a NAND backup on your SD card, you can follow the instructions for [RestoreMii](bootmiirecover). **Family edition Wiis (Wiis without GameCube ports) CANNOT restore NAND backups.**
As stated earlier, if you have BootMii installed as boot2, it will launch every time you start your console. If you would like to change this, you can use the app [BootMii Config Editor](https://oscwii.org/library/app/BootMiiConfigurationEditor). Or, you can edit `sd:/bootmii/bootmii.ini` manually. diff --git a/_pages/ro_RO/bricks.md b/_pages/ro_RO/bricks.md index af4306981..211bd27e3 100644 --- a/_pages/ro_RO/bricks.md +++ b/_pages/ro_RO/bricks.md @@ -111,7 +111,7 @@ Attempt to start the Wii - warning/press A screen shows up, and when A is presse A theme brick occurs when a wrongly formatted theme is installed. #### Solutions -To resolve this issue, open HBC through Priiloader or BootMii as boot2 and access MyMenuifyMod to install a default theme such as the base Wii Menu theme. Alternatively, go into [YAWM ModMii Edition](yawmme) and install the CORRECT default Wii Menu WAD for your region and version. +To resolve this issue, open HBC through Priiloader or BootMii as boot2 and access csm-installer to install a default theme such as the base Wii Menu theme. Alternatively, go into [YAWM ModMii Edition](yawmme) and install the CORRECT default Wii Menu WAD for your region and version. ## Mail brick diff --git a/_pages/ro_RO/cios.md b/_pages/ro_RO/cios.md index 7c6f44f37..b7e3128c8 100644 --- a/_pages/ro_RO/cios.md +++ b/_pages/ro_RO/cios.md @@ -65,6 +65,12 @@ The WAD files should be on your SD card like this: ![](/images/cios/d2x_offline_ ![](/images/cios/d2x_v11_248.png) + The warning "`(c)IOS detected in slot ### will be overwriitten`" can be safely ignored. + {: .notice--info} + + If you are seeing "`Slot ### already used in batch settings`" or "`cIOS already added in batch with revision ##### and slot ###`", press `-` to disable batch mode.
(If you are trying to exit the installer, the button is B, not Home.) + {: .notice--info} + 1. Press `A`. This will bring you to the slot map: ![](/images/cios/d2x_summary.png) diff --git a/_pages/ro_RO/dosanddonts.md b/_pages/ro_RO/dosanddonts.md new file mode 100644 index 000000000..6ceed5bee --- /dev/null +++ b/_pages/ro_RO/dosanddonts.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="faq.html" %} diff --git a/_pages/ro_RO/hbc.md b/_pages/ro_RO/hbc.md index 0e1142b0f..8d4ecea0f 100644 --- a/_pages/ro_RO/hbc.md +++ b/_pages/ro_RO/hbc.md @@ -6,7 +6,7 @@ title: "Homebrew Channel și Instalare BootMii" The Homebrew Channel is where you will go to launch homebrew applications. BootMii is a piece of software that can backup and restore your Wii's NAND storage, and if installed in boot2, provide brick protection. -BootMii can be installed in two ways: directly to a part of the Wii bootloader called boot2, and via an IOS. BootMii under boot2 is preferred as it provides extended brick protection, but Wiis with a vulnerable boot2 are considerably rarer, having been manufactured before 2009. In most cases, installing BootMii as IOS should be fine, as long as you also install [Priiloader](priiloader). +BootMii can be installed in two ways: directly to a part of the Wii bootloader called boot2, and via an IOS. BootMii under boot2 is preferred as it provides extended brick protection, but Wiis with a vulnerable boot1 that allows this installation are considerably rarer, having been manufactured before 2009. In most cases, installing BootMii as IOS should be fine, as long as you also install [Priiloader](priiloader). {: .notice--info} If you do not have an SD card, you cannot install nor use BootMii, regardless of whether you install it as IOS or boot2. You can always [install it later](hackmii). diff --git a/_pages/ro_RO/modmii.md b/_pages/ro_RO/modmii.md index eabda2750..b90c6a87c 100644 --- a/_pages/ro_RO/modmii.md +++ b/_pages/ro_RO/modmii.md @@ -4,116 +4,190 @@ title: "ModMii" {% include toc title="Tabel de Conținut" %} -Dacă ai nevoie de ajutor pentru orice legat de acest ghid, te rugăm să te alături [serverului de Discord ModMii](https://discord.gg/cMnBRACQwQ). -{: .notice--info} - Acest Program NU vine cu garanție, deci ești responsabil pentru orice daună potențială întâmplată consolei tale Wii. {: .notice--warning} Acest program NU este intenționat de a fi folosit pentru vWii sau Wii mini. Orice folosire pe vWii sau Wii mini este netestată. {: .notice--warning} -ModMii este un program de calculator pentru Windows creat de XFlak care conține numeroase unelte folositoare pentru modificarea consolei și inclusiv niște tutoriale care s-ar putea să nu fie disponibile momentan pe acest website.
Poți alege să rulezi în ModMii Skin, ce are o interfață mai ușor de înțeles, sau rulează în ModMii Classic, ce folosește o interfață bazată pe linie de comandă (Command Prompt/Terminal). +ModMii is an all-in-one Wii hacking tool for Windows created by XFlak that has various helpful tools for modding. It can accomplish the following: -Unele opțiuni avansate s-ar putea să nu fie accesibile în ModMii Skin. O listă a funcțiilor prezente în ModMii Classic se poate găsi la sfârșitul acestei pagini. -{: .notice--info} ++ Hacking the console for the first time, or re-hacking it ++ Check for and update outdated softmods ++ Fix upside-down Homebrew Channel problems ++ Run homebrew without making any changes to your Wii's NAND ++ Download homebrew ++ And more! -### Instrumente necesare +### ModMii Overview + +There are two different ways to use ModMii. There is ModMii Classic, which uses a command line interface, but has all of the features available to the program. ModMii Skin has a graphical user interface, on the other hand, but has less options available to the user. If you're looking to simply mod your Wii for the first time, ModMii Skin should suffice. Otherwise, we reccomend using ModMii Classic where possible.
The chart below will help you determine what can be done in either interface. + +| Tools | ModMii Classic | ModMii Skin | +| --------------------------------- | -------------- | ----------- | +| Programul ModMii | ✅ | ✅ | +| Programul de Actualizare SysCheck | ✅ | ⛔ | +| USB Loader Setup Wizard | ✅ | ✅ | +| Programul de Soluții HackMii | ✅ | ✅ | +| Programul de Abstinență | ✅ | ✅ | +| Region Change Wizard | ✅ | ✅ | +| SNEEK/EmuNAND Installation | ✅ | ✅ | +| Open File Function | ✅ | ⛔ | +| Load Download Queue | ✅ | ✅ | +| Download Page 1/2/3/4 | ✅ | ⛔ | +| Advanced Downloads | ✅ | ⛔ | +| Load Download Queue | ✅ | ⛔ | +| Build Config Files | ✅ | ⛔ | +| File Cleanup & App Updater | ✅ | ⛔ | + +
+Click here for a detailed explanation of each tool. + +| Unealtă | Descriere | +| --------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| W = ModMii Wizard <-- Start Here to Mod Your Wii! | This option can be used to hack your Wii for the first time or re-hack a Wii that has been previously modded. | +| SU = SysCheck Updater Wizard (update only your outdated softmods) | This option checks for and updates old modifications installed to their wii such as DarkCorp/CIOSSPAGHETTI that can potentially cause problems for the latest homebrew custom firmware. | +| U = USB-Loader Setup Wizard | This option will properly set up your USB loader to be able to load your disk backups from an SD or USB hard drive. This option is not necessary if using the ModMii Wizard. | +| H = HackMii Solutions Wizard (Upside-Down HBC\No Vulnerable IOS Fix) | This option is useful for people who are having trouble getting the HackMii Installer to work or have an upside down homebrew channel. | +| AW = Abstinence Wizard (Non-permanent Wii Hacks) | This option allows you to run homebrew on your Wii without making any permanent modifications to the system NAND. | +| RC = Region Change Wizard | This option can be used to change the region of your Wii without bricking it, and is arguably the best region changing wizard on the internet. | +| S = SNEEK Installation, EmuNAND Builder\Modifier, Game Bulk Extractor | Această opțiune te va ajuta să setezi un EmuNAND (numit și neek2o) cum trebuie în cardul tău SD sau într-un stick USB. Benefits for EmuNAND include extra storage space for save games or channels, as well as running homebrew without making any permanent modifications to the system NAND. | +| F = open a File or Folder with ModMii for many more functions! | Această opțiune este o unealtă avansata folositoare în special dezvoltatorilor. | +| 1 = Download Page 1 (System Menus, IOSs, MIOSs, Channels, etc.) | This option opens the first download page that includes most of the key parts of the Wii System Menu (downloaded from NUS). | +| 2 = Download Page 2 (Apps, USB-Loader Files, CheatCodes, etc.) | Această opțiune deschide a doua pagină de descărcare care include exploit-uri și aplicații folositoare pentru consola ta Wii precum niște programe de calculator. | +| 3 = Download Page 3 (System Menu Themes) | Această opțiune deschide a treia pagină de descărcare care include niște teme de fundal pentru meniul de sistem și lucruri necesare pentru a instala teme de fundal pentru meniul de sistem (fișierele .app de bază sunt descărcate din NUS). | +| 4 = Download Page 4 (cIOSs and cMIOSs) | Această opțiune deschide a patra pagină de descărcare care include cIOS-uri și cMIOS-uri pentru a fi folosite în USB loadere. | +| A = Advanced Downloads and Forwarder DOL\ISO Builder | This option allows you to download any IOS and cIOS and build custom DOL/ISO forwarders. Intended for advanced users only. | +| L = Load Download Queue | This option loads bundled or previously saved download queues. | +| C = Build Config Files for Bootmii, Wad Manager or Multi-Mod Manager | This option allows you to build customized config files for BootMii, Wad Manager, and Multi-Mod Manager. | +| FC = File Cleanup & App Updater: Update Apps and\or remove un-needed files | This option removes unnessecary files from your SD Card or Hard Drive after finishing softmodding your Wii. | + +

+ +When using ModMii, it is important to note that it will generate a custom guide for you depending on the options that you select. For this reason, this guide will not be focused on how to mod your Wii, as ModMii handles that function. Instead, it will be a quick start guide show you how to effectively use it with the most common options. + +### Installing ModMii + +#### Instrumente necesare * Un Wii * Un stick USB sau un card SD * Un calculator Windows (va merge și o Mașină Virtuală) * [ModMii](https://modmii.github.io/) -Acesta este un ghid rapid de început despre folosirea ModMii pe calculatorul tău Windows. +#### Installation -### Programul ModMii +1. Go to the [ModMii website](https://modmii.github.io) and scroll down to the Download section. Here, select the `Installer` option. Your browser may flag the installer as malware, but it is a **false positive**. -Poți folosi programul ModMii pentru a modifica orice consolă Wii.
Chiar dacă sistemul Wii a mai fost modificat în trecut, ModMii poate înlocui modificări existente dacă îi spui că asta este prima dată când instalezi modificări pentru consolă (chiar dacă nu este). + ![](/images/modmii/modmii-download.png) -Poți de asemenea să folosești acest program să îți setezi un USB loader în același timp în loc să trebuiască să folosești programul de instalare USB Loader în viitor. +2. Open the `ModMiiInstaller.exe` file and go through the setup process. + + ![](/images/modmii/modmii-install.png) + +### Using the ModMii Wizard + +The ModMii Wizard is tool that can softmod your Wii from start to finish, downloading all necessary files and then generating a guide that you can use to implement the softmod. This tool can also be used to overwrite existing softmods on a previously softmodded Wii. + +1. Open ModMii Skin or ModMii Classic and select the ModMii Wizard option at the top of the list. + + ![](/images/modmii/modmii-wizard-1.png) + +1. Answer `Yes` to the first question, unless you have a very specific idea of what you would like to do or update to your Wii. + + ![](/images/modmii/modmii-wizard-2.png) + +1. Select your current System Menu version, followed by the System Menu Region, following the instructions in the program. If you are still confused, check the bottom option on each screen for an instructional video. + + ![](/images/modmii/modmii-wizard-3.png) + +1. Select the exploit you would like to use to mod your Wii. The exploits below are outlined throughout this website, but in most cases we would reccommend using Wilbrand if you have an SD card on hand. + + ![](/images/modmii/modmii-wizard-4.png) + +1. If you selected the Wilbrand option in the previous step, enter your Wii's MAC address. If you don't know how to check your Wii's MAC address, enter `Help` in the text box for an instructional video. + + ![](/images/modmii/modmii-wizard-5.png) + +1. Select your desired System Menu version from the list. + + ![](/images/modmii/modmii-wizard-6.png) + +1. Select whether or not you would like to install any of the listed channels - this is an optional step. + + ![](/images/modmii/modmii-wizard-7.png) + +1. Select whether or not you would like to install a custom Wii theme, with the choice of three theme effects. Each effect deals with how much the outline when hovering over a Wii Channel spins. + + ![](/images/modmii/modmii-wizard-8.png) + +1. Select whether or not you would like to set up a USB Loader for use with your Wii. + + ![](/images/modmii/modmii-wizard-9.png) + +1. If you selected `Yes` in the USB Loader menu, select which USB Loader you would like to use. If you choose an individual one, we reccomend either USB Loader GX or WiiFlow as both are covered on this website, or you may optionally download each option. + + ![](/images/modmii/modmii-wizard-10.png) + +1. If you selected `Yes` in the USB Loader menu, select where you would like to save your USB Loader files at. + + ![](/images/modmii/modmii-wizard-11.png) + +1. Verify where you would like to save files for your SD Card and/or USB Drive. + + ![](/images/modmii/modmii-wizard-12.png) + +1. Confirm your settings are correct, and then press `Finish`. Once you press the button, ModMii will begin to process and download files in the background, and will automatically generate and open a guide for you. From here, you should follow the guide generated by ModMii. + + ![](/images/modmii/modmii-wizard-13.png) ### Programul de Actualizare SysCheck -[SysCheck](syscheck) este o aplicație homebrew care analizează modificările instalate pe un Wii.
Poți să pui un raport SysCheck în ModMii pentru a putea identifica și actualiza modificații vechi. +The SysCheck Updater Wizard is a tool that utilizes the homebrew app [SysCheck](syscheck) to analyze any modifications on your Wii, especially IOS and cIOS. It accepts a `syscheck.csv` file generated by the app, and then provides any nessecary updates as needed. -Poți analiza un SysCheck folosind ModMii prin tragerea fișierului `syscheck.csv` în ModMii.exe. Alternativ, poți lansa Programul de Actualizare SysCheck (`SU`) din meniul principal ModMii pentru a căuta manual fișierul. +1. Open ModMii Classic and enter in `SU` to open the SysCheck Updater Wizard. + + ![](/images/modmii/syscheck-wizard-1.png) + +1. Follow the instructions in the window if you don't already have a SysCheck log, and then drag and drop the `syscheck.csv` file from Windows Explorer into the window. This will paste the location of the file, from which you can press Enter. + + ![](/images/modmii/syscheck-wizard-2.png) + +1. The program will analyze your SysCheck file, and will provide options for you depending on what it sees. In this example instance, the mods on the Wii were up-to-date, but there were several unnecessary IOSes that could be stubbed. If you want to make these changes to your Wii, simply enter in `Y` and press Enter. From here, you should follow the guide generated by ModMii. + + ![](/images/modmii/syscheck-wizard-3.png) ### Programul de Soluții HackMii -Programul de Soluții HackMii te poate ajuta să repari probleme ca următoarele: +The HackMii Solutions Wizard is a tool that fixes problems that may arise from things like Darkcorp/CIOSSPAGHETTI by installing clean IOSes. Examples of problems that may arise because of this are listed below: + Instalatorul HackMii nu afișează "Press (1) to continue" -+ Instalatorul HackMii spune "no vulnerable IOS found!" -+ Homebrew Channel se afișează cu susul în jos ++ HackMii Installer saying "no vulnerable IOS found!" ++ Homebrew Channel displaying upside-down -Acesta va instala IOS-uri curate pentru a permite Instalatorului HackMii să funcționeze cum trebuie. +1. Open ModMii Skin or ModMii Classic and select the HackMii Solutions option. -### Programul de Abstinență + ![](/images/modmii/hackmii-wizard-1.png) -Acest program necesită un card SD. -{: .notice--warning} +1. Select your current System Menu version, followed by the System Menu Region, following the instructions in the program. If you are still confused, check the bottom option on each screen for an instructional video. -Acest program îți permite să te bucuri de multe dintre beneficiile unui Wii modificat fără să instalezi nici o modificare permanentă pe consola ta Wii. Îți va permite să rulezi un exploit care va porni un NAND emulat din stocarea externă în loc să folosești NAND-ul intern al consolei tale Wii. + ![](/images/modmii/hackmii-wizard-2.png) -Poți de asemenea să creezi un backup NAND fără să îți modifici consola Wii deloc prin navigarea la dosarul "Support" al ModMii-ului și lansarea fișierului `Casper2BootMii.bat`.
It will save some files to a folder named `COPY_TO_SD`; copy the files inside it to your SD card and launch an exploit like [Wilbrand](wilbrand). +1. Select the exploit you would like to use to mod your Wii. The exploits below are outlined throughout this website, but in most cases we would reccommend using Wilbrand if you have an SD card on hand. -Când urmărești una dintre ghidurile de exploit-uri de mai sus, evită să înlocuiești fișierul `boot.elf`. -{: .notice--warning} + ![](/images/modmii/hackmii-wizard-3.png) +1. If you selected the Wilbrand option in the previous step, enter your Wii's MAC address. If you don't know how to check your Wii's MAC address, enter `Help` in the text box for an instructional video. -
-Apasă aici pentru o listă întreagă a uneltelor disponibile. + ![](/images/modmii/hackmii-wizard-4.png) -| Unealtă | Descriere | -| --------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| W = ModMii Wizard <-- Start Here to Mod Your Wii! | Această opțiune poate fi folosită să îți modifici consola Wii pentru prima dată sau sa re-modifici un Wii care a fost modificat în trecut. | -| SU = SysCheck Updater Wizard (update only your outdated softmods) | Această opțiune este folositoare pentru persoanele care au modificări vechi instalate în consola Wii precum DarkCorp/Ciosspaghetti care pot cauza probleme cu cel mai recent homebrew custom firmware. | -| U = USB-Loader Setup Wizard | Această opțiune te va ajuta să îți setezi USB loader-ul să poată să ruleze backup-urile de disc de pe un card SD sau un hard disk USB. | -| H = HackMii Solutions Wizard (Upside-Down HBC\No Vulnerable IOS Fix) | Această opțiune este folositoare pentru persoanele care întâmpină probleme încercând să facă Instalatorul HackMii să meargă, sau dacă au un homebrew channel cu susul în jos, sau dacă DarkCorp/Ciosspaghetti a fost instalat și nu există niciun homebrew channel. | -| AW = Abstinence Wizard (Non-permanent Wii Hacks) | Această opțiune este folositoare pentru persoanele care nu vor să facă modificări permanente consolei lor Wii dar doresc să aibă unele dintre beneficiile pe care le oferă homebrew. | -| RC = Region Change Wizard | Această opțiune poate fi folosită pentru a schimba regiunea consolei tale Wii fără să cauzezi un brick (acesta este cel mai bun ghid de schimbare a regiunii existent pe internet!). | -| S = SNEEK Installation, EmuNAND Builder\Modifier, Game Bulk Extractor | Această opțiune te va ajuta să setezi un EmuNAND (numit și neek2o) cum trebuie în cardul tău SD sau într-un stick USB. Beneficiile EmuNAND-ului includ mai mult spațiu de stocare pentru salvări sau canale. și beneficiul de a nu trebui să faci nicio modificare permanentă consolei tale Wii. | -| F = open a File or Folder with ModMii for many more functions! | Această opțiune este o unealtă avansata folositoare în special dezvoltatorilor. | -| 1 = Download Page 1 (System Menus, IOSs, MIOSs, Channels, etc.) | Această opțiune deschide prima pagină de descărcare care include majoritatea dintre părțile cheie pentru meniul de sistem (descărcate din NUS). | -| 2 = Download Page 2 (Apps, USB-Loader Files, CheatCodes, etc.) | Această opțiune deschide a doua pagină de descărcare care include exploit-uri și aplicații folositoare pentru consola ta Wii precum niște programe de calculator. | -| 3 = Download Page 3 (System Menu Themes) | Această opțiune deschide a treia pagină de descărcare care include niște teme de fundal pentru meniul de sistem și lucruri necesare pentru a instala teme de fundal pentru meniul de sistem (fișierele .app de bază sunt descărcate din NUS). | -| 4 = Download Page 4 (cIOSs and cMIOSs) | Această opțiune deschide a patra pagină de descărcare care include cIOS-uri și cMIOS-uri pentru a fi folosite în USB loadere. Este recomandat să instalezi doar cIOS-urile recomandate dacă nu plănuiești să faci niște testare. | -| A = Advanced Downloads and Forwarder DOL\ISO Builder | Această opțiune este o unealtă avansată folosită pentru a personaliza descărcările mai bine sau pentru a-ți permite să compilezi un executabil dol folositor pentru forwarder-uri (canale din meniul de sistem care accesează aplicații de Wii). | -| L = Load Download Queue | Această opțiune va descărca toate titlurile necesare pentru meniul de sistem Wii (titlurile sunt instalate din NUS) | -| C = Build Config Files for Bootmii, Wad Manager or Multi-Mod Manager | Această opțiune te va ajuta să compilezi fișiere de configurare necesare pentru unele aplicații. | -| FC = File Cleanup & App Updater: Update Apps and\or remove un-needed files | Această opțiune este folositoare pentru persoanele care vor să își curețe cardul SD sau stickul USB de aplicații considerate vechi, nefolositoare sau depreciate. | -| M = ModMii Skin Mode: use your mouse instead of your keyboard! | Această opțiune va deschide ModMii în modul skin. Unele opțiuni avansate s-ar putea să nu fie disponibile în acest mod. | +1. Verify where you would like to save files for your SD Card and/or USB Drive. -
+ ![](/images/modmii/modmii-wizard-12.png) -
-Apasă aici pentru o listă întreagă a opțiunilor disponibile. +1. Confirm your settings are correct, and then press `Finish`. Once you press the button, ModMii will begin to process and download files in the background, and will automatically generate and open a guide for you. From here, you should follow the guide generated by ModMii. After finishing this guide, it is recommended that you use the [SysCheck Updater Wizard](#syscheck-updater-wizard) to undo any other problematic modifications on your Wii. -| Opțiune | Descriere | -| ---------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| D = Change Drive letter: | Changes where your SD files are saved to. | -| DU = Change Drive letter for USB: | Changes where your USB files are saved to. | -| d2x = change d2x cIOS version built: | Changes the cios version ModMii downloads. | -| H = Hermes cIOSs (202 & 222-224) will also be recommended | Enables Hermes IOS to be recommended and downloaded in the syscheck updater (will be stubbed if disabled). | -| CM = cMIOS included in recommended cIOSs | Enables cMIOS to be recommended and downloaded in the syscheck updater (will install stock MIOS if disabled). | -| E = Extra Brick Protection in ModMii Wizard Guides | Enables ModMiis Extra Brick Protection IOSes to be recommended and used in the syscheck updater tool. | -| U = Update IOSs. Wizard/SysCheck-Updater to update Active IOSs | Updates Existing IOSes to the latest version available on NUS. | -| AU = Auto-Updating downloads will skip update check if cached | Will skip downloading the files if already in the queue. | -| FWD = Install USB-Loader Forwarder in ModMii Wizard Guides | Will include the USB loader forwarder wad file in the USB loader wizard guides. | -| PC = PC Programs Save Location | Changes the save location for the downloadable PC programs. | -| RS = Root Save: Save IOSs\MIOSs to Root instead of WAD Folder | Saves IOSs\MIOSs to Root instead of WAD Folder. | -| 1 = Do not Keep 00000001 or NUS Folders for IOSs\MIOSs\SMs etc | Deletes the folder used for compiling the wad file and just gives you the wad file. | -| n2o = neek2o - build mod of s\uneek instead of original | Uses a better modified version of neek2o in the EmuNAND builder. | -| SSD = SNEEK and SNEEK+DI SD Access | Allows for SNEEK and SNEEK+DI access on the SD card. | -| F = Font.bin Colour for SNEEK/UNEEK | Changes the font color for neek2o. | -| SV = SNEEK Verbose Output | Displays extra information regarding EmuNAND. | -| V = Verbose for ModMii Skin & nandBinCheck | Displays another window with extra information regarding a nand check. | -| SO = Play sound at Finish | Plays a fun jingle after a successful download. | -| A = Auto-Update ModMii at program start | Will automatically check for updates when ModMii is launched. | -| N = Check for New versions of ModMii right now | Will check online for a ModMii update. | - -
+ ![](/images/modmii/hackmii-wizard-5.png) [Click here to view all of our tutorials that you can find on this website!](site-navigation) {: .notice--info} diff --git a/_pages/ro_RO/nintendont.md b/_pages/ro_RO/nintendont.md new file mode 100644 index 000000000..d7eef1b3f --- /dev/null +++ b/_pages/ro_RO/nintendont.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="410.html" %} diff --git a/_pages/ro_RO/recommended-homebrew.md b/_pages/ro_RO/recommended-homebrew.md index 8a204eca7..07518e728 100644 --- a/_pages/ro_RO/recommended-homebrew.md +++ b/_pages/ro_RO/recommended-homebrew.md @@ -16,7 +16,7 @@ Homebrew that has the ability to make permanant changes to your Wii are highligh + [**AnyRegion Changer ME**](https://oscwii.org/library/app/ARCME) - ModMii edition of AnyRegion Changer. While a powerful tool for changing region settings, it can also lead to severe bricks like [Korean Kii/Error 003](bricks#korean-kiierror-003-brick) so **only use this app if you know what you are doing**. + [**WiiXplorer-SS**](https://oscwii.org/library/app/wiixplorer-ss) - A modified and updated version of WiiXplorer. A file manager for the Wii, it allows you to view and customize files both on an SD card, a USB device, and the internal Wii memory. For this reason it is a very powerful but also dangerous tool - don't modify files on the system NAND unless you know what you are doing, as it can lead to various types of [bricks](bricks). + [**SaveGame Manager GX**](https://oscwii.org/library/app/SaveGame_Manager_GX) - A savegame/Mii extractor for the Wii. It supports GameCube memory cards (physical and virtual), emuNANDs, normal and protected saves, themes, and more. -+ [**MyMenuifyMod**](https://oscwii.org/library/app/mymenuifymod) - An application that allows you to theme the Wii Menu. While quite useful to make your Wii unique, it also has the ability to cause a [minor brick](bricks#theme-brick), so make sure to read our [theme guide](themes) for safe usage instructions. ++ [**csm-installer**](https://oscwii.org/library/app/csm-installer) - An application that allows you to theme the Wii Menu. While quite useful to make your Wii unique, it also has the ability to cause a [minor brick](bricks#theme-brick), so make sure to read our [theme guide](themes) for safe usage instructions. + [CleanRip](https://oscwii.org/library/app/CleanRip) - A tool to backup GameCube and Wii discs. Further information can be found in our [disc dumping guide](dump-games). + [**d2x cIOS installer**](https://oscwii.org/library/app/d2x-cios-installer) - A custom installer for Wii IOS, some of which is required for the functioning of certain software like USB loaders. You can see the guide [here](cios). + [FTPii](https://oscwii.org/library/app/ftpii) - An FTP server for your Wii, allowing you to transfer files across the network. diff --git a/_pages/ro_RO/riiconnect24.md b/_pages/ro_RO/riiconnect24.md index 800ca0a6b..d1e91b7e8 100644 --- a/_pages/ro_RO/riiconnect24.md +++ b/_pages/ro_RO/riiconnect24.md @@ -1,138 +1,5 @@ --- -title: "RiiConnect24" +title: Redirecting... --- -{% include toc title="Tabel de Conținut" %} - -If you need help with anything regarding this tutorial, please join [the RiiConnect24 Discord server](https://discord.gg/rc24) (recommended) or [e-mail us at support@riiconnect24.net](mailto:support@riiconnect24.net). -{: .notice--primary} - -[RiiConnect24](https://rc24.xyz/) allows you to use discontinued services from WiiConnect24, which include the News, Forecast, Everybody Votes, Nintendo and Check Mii Out Channel, along with Wii Mail. - -It's recommended to set your Wii to the current time before proceeding. Follow [this tutorial](wiiconnect24#updating-rtc-clock) in order to set it. -{: .notice--warning} - -DO NOT INSTALL RIICONNECT24 ON A WII MINI! It will not work and it will brick the system. -{: .notice--danger} - -### Instrumente necesare - -If you are on vWii, you will also need [Priiloader](priiloader) installed with the WC24 hacks. -{: .notice--primary} - -+ An SD card or USB drive -+ A Wii with an Internet connection -+ A PC with an Internet connection -+ [RiiConnect24 Patcher (Windows, Mac and Linux)](https://github.com/riiconnect24/RiiConnect24-Patcher/releases) -+ [YAWM ModMii Edition](https://oscwii.org/library/app/yawmme) - -### Instrucțiuni - -#### Section I - Using RiiConnect24 Patcher - -1. Click the link above to go to the GitHub page where the patcher is. -1. Download `RiiConnect24Patcher.bat` if you are on Windows, and `RiiConnect24Patcher.sh` if you are on a Unix system -1. Run the RiiConnect24 patcher. - + On Windows run `RiiConnect24Patcher.bat`. - + On macOS/Linux systems, open Terminal and type `bash`, then drag `RiiConnect24Patcher.sh` into the terminal then press enter. It should look like this: `bash //RiiConnect24Patcher.sh`. -1. Press 1 to choose "`Start`" and confirm your selection by pressing `ENTER`. - - ![](/images/riiconnect24/patcher/1.JPG) - -1. Select the device you're patching for. - - ![](/images/riiconnect24/patcher/2.JPG) - -1. For this guide, choose "`Install RiiConnect24 on your Wii`" - - ![](/images/riiconnect24/patcher/3.JPG) - -1. Choose "`Express (Recommended)`". It will give you everything you need. - - ![](/images/riiconnect24/patcher/4.JPG) - -1. Select your region. - - ![](/images/riiconnect24/patcher/5.JPG) - -1. While you're at it, RiiConnect24 Patcher can additionally download some other optional channels that do not use RiiConnect24. `[X]` represents the options that selected. Just press 5 and `ENTER` if you're not interested. - - ![](/images/riiconnect24/patcher/6.JPG) - -1. Connect your SD Card or USB Drive to your computer and select "`1`". - - ![](/images/riiconnect24/patcher/7.JPG) - -1. If your device was detected successfully, select "`1`". If not, make sure there's a folder called `apps` on your SD Card or USB Drive and try again. - - ![](/images/riiconnect24/patcher/8.JPG) - -1. The patcher will download apps now - please be patient. - - ![](/images/riiconnect24/patcher/9.JPG) - -1. Once you reach the screen that says `Patching done`, you can exit the patcher. All the files should already be on your SD card. - - ![](/images/riiconnect24/patcher/10.JPG) - - ![](/images/riiconnect24/patcher/11.PNG) - -1. If it did not copy everything automatically to your SD Card or USB Device, copy the `WAD` and `apps` folder next to `RiiConnect24Patcher.bat` or `RiiConnect24Patcher.sh` to your SD Card or USB Device. - -#### Section II - Installing WADs - -If you are using Dolphin, you have finished the guide. Install the WADs by going to `Tools -> Install WAD` within Dolphin. -{: .notice--primary} - -You will now install the patched IOS and Channel WADs that are required to use RiiConnect24. - -1. Extract the YAWM ModMii Edition `.zip` file, and copy the `apps` folder to your SD card or USB drive. -1. Put your SD card or USB drive in your Wii. -1. Launch the Homebrew Channel on your Wii. -1. Launch YAWM ModMii Edition. -1. Select the device you have put the RiiConnect24 files on. -1. Highlight all the WADs in the `wad` folder by pressing the + Button to select them. When all of the WADs are selected, press A twice to install the WADs. -1. After they are successfully installed, press the HOME Button to exit back to the Homebrew Channel. - -#### Section III - Patching nwc24msg.cfg - -You will now patch your `nwc24msg.cfg` file which is required in order to use Wii Mail. - -1. Launch RiiConnect24 Mail Patcher. -1. It should only take a few seconds to patch your nwc24msg.cfg. When it's done, press the HOME Button to exit. - -#### Section IV - Connecting to RiiConnect24 - -The old DNS server `164.132.44.106` has been deprecated as of `June 1st, 2023` and is no longer available to use. -{: .notice--warning} - -If you're getting errors such as `WiiConnect24 and Wii Shop Channel currently not being offered in your country`, go to Wii Settings -> Last Page -> Country and change it to United Kingdom. You will get this error when using a country that RiiConnect24 does not support. -{: .notice--warning} - -If you get error 107245, you did not install the patched IOS.
If you get error 220602, see [this](faq#for-riiconnect24-users) page.
If you get error 107304, see [this](faq#for-riiconnect24-users-1) page.
-{: .notice--warning} - -You will now set your DNS to RiiConnect24 servers. This is optional but recommended, because it enhances the use of RiiConnect24 and Wiimmfi by making some other features available. - -1. Go to `Wii Options`. -1. Mergi la `Wii Settings`. -1. Go to `Page 2`, then click on `Internet`. -1. Go to `Connection Settings`. -1. Select your current connection. -1. Go to `Change Settings`. -1. Go to `Auto-Obtain DNS` (Not IP Address), then select `No`, then `Advanced Settings`. -1. Type in `167.86.108.126` as the primary DNS. -1. Type in `1.1.1.1` as the secondary DNS. -1. Select `Confirm`, then select `Save`. -1. Select `OK` to perform a connection test. -1. If the connection test was successful, select `No` to skip the Wii System Update. -1. Go to `WiiConnect24`, then `WiiConnect24` again, and make sure it is enabled. -1. Back on the WiiConnect24 menu, go to `Standby Connection` and make sure it is enabled. -1. At `Slot Illumination`, we recommend you set the disc light to `Dim` or `Bright`, but this is optional. -1. Finally, go to the `Internet` section, then `User Agreements` or `Agreement/Contact`, then `Yes`. Please read through this. - -[Return to WiiConnect24](wiiconnect24) -{: .notice--info} - -[Click here to view all of our tutorials that you can find on this website!](site-navigation) -{: .notice--info} +{% include redirect.html redirect_to="https\://www\.wiilink24.com/guide/install/" %} diff --git a/_pages/ro_RO/riitag.md b/_pages/ro_RO/riitag.md new file mode 100644 index 000000000..e6b6bc322 --- /dev/null +++ b/_pages/ro_RO/riitag.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="https\://wiki.hacks.guide/wiki/RiiTag" %} diff --git a/_pages/ro_RO/riivolution.md b/_pages/ro_RO/riivolution.md new file mode 100644 index 000000000..d7eef1b3f --- /dev/null +++ b/_pages/ro_RO/riivolution.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="410.html" %} diff --git a/_pages/ro_RO/themes.md b/_pages/ro_RO/themes.md index 3bde90086..78192cae7 100644 --- a/_pages/ro_RO/themes.md +++ b/_pages/ro_RO/themes.md @@ -4,13 +4,16 @@ title: "Installing Wii Menu Themes" {% include toc title="Tabel de Conținut" %} -This guide is intended to be the last you will ever need when it comes to theming on the Wii, not only providing instructions for the Wii Menu through MyMenuifyMod, but also with themes on WiiFlow Lite, USB Loader GX, and The Homebrew Channel. Additionally, forwarders are covered. +This guide is intended to be the last you will ever need when it comes to theming on the Wii, not only providing instructions for the Wii Menu through csm-installer, but also with themes on WiiFlow Lite, USB Loader GX, and The Homebrew Channel. Additionally, forwarders are covered. ### Wii Menu Theming DO NOT CONTINUE WITH THIS GUIDE UNLESS YOU HAVE ADEQUATE BRICK PROTECTION, SPECIFICALLY [BOOTMII](bootmii) AND [PRIILOADER](priiloader)! {: .notice--danger} +This tutorial does not work on the Wii mini. Do not attempt this tutorial on the Wii mini or it will cause a [brick](bricks#theme-brick). +{: .notice--warning} + csm-installer has built in safety features to prevent from installing bad or corrupt Wii Menu themes, so please opt to use it instead of other theme installation homebrew. {: .notice--warning} diff --git a/_pages/ro_RO/usbloadergx.md b/_pages/ro_RO/usbloadergx.md new file mode 100644 index 000000000..00a63864a --- /dev/null +++ b/_pages/ro_RO/usbloadergx.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-loaders.html" %} diff --git a/_pages/ro_RO/wiibackupmanager.md b/_pages/ro_RO/wiibackupmanager.md new file mode 100644 index 000000000..063d7bba0 --- /dev/null +++ b/_pages/ro_RO/wiibackupmanager.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-backups.html" %} diff --git a/_pages/ro_RO/wiiconnect24.md b/_pages/ro_RO/wiiconnect24.md index f0c6e29b2..47b73f45e 100644 --- a/_pages/ro_RO/wiiconnect24.md +++ b/_pages/ro_RO/wiiconnect24.md @@ -3,44 +3,21 @@ title: "WiiConnect24" --- {% include toc title="Tabel de Conținut" %} + -This guide provides different means of regaining WiiConnect24 functionality on your console. Although not at all nessecary, it is a "nice to have" feature that was originally used for online connectivity in certain applications on the console. These apps include the Forecast/News Channel, Nintendo Channel, Check Mii Out Channel, some Japan-exclusive channels, and more. Please bear in mind, the functionality you gain depends entirely on what service(s) you use. +[WiiConnect24](https://wikipedia.org/wiki/WiiConnect24) was a service that allowed users with Internet connected Wiis to view the weather & local news, send messages to friends, participate in Mii contest, and more. WiiConnect24 was discontinued on June 27th, 2013. -### Service Overview +## RiiConnect24 + WiiLink +[RiiConnect24](https://rc24.xyz) is a revival service for WiiConnect24 that started in 2015, which allows you to regain its functionality on your console. As of late 2023, the service is now owned by WiiLink, a project that started in 2020 that was previously aiming at the Japanese-exclusive channels. -#### Note about service compatibility: -Both services listed below are compatible with one another and can be loaded on the same console. With this said, it should be noted that when installing one channel over the other (WiiLink's Forecast Channel over RiiConnect24's Forecast Channel for example), the channel you are installing will overwrite the old one. - - -#### Service Support Status -✅ - In support
⚠️ - In development
⛔ - No support - -| Service Name | WiiLink | RiiConnect24 | -| ----------------------- | ------- | ------------ | -| Forecast Channel | ✅ | ✅ | -| News Channel | ⚠️ | ✅ | -| Wii Mail | ✅ | ✅ | -| Everybody Votes Channel | ✅ | ✅ | -| Nintendo Channel | ✅ | ✅ | -| Check Mii Out Channel | ⚠️ | ✅ | -| Wii Room | ✅ | ⛔ | -| Food Channel | ✅ | ⛔ | -| Photo Prints Channel | ✅ | ⛔ | -| Kirby TV Channel | ✅ | ⛔ | -| TV Guide Channel | ⚠️ | ⛔ | - -#### WiiLink -A newer WC24/Japanese channel revival service that started in 2020, but is rapidly regaining functionality in many different channels. - -Service support status can be found [here](https://www.wiilink24.com/status).
Their guide can be found [here](https://www.wiilink24.com/guide). - -#### RiiConnect24 -The longest lasting WC24 revival service, currently only with support for the worldwide WC24 channels as well as mail services. - -Service support status can be found [here](https://rc24.xyz/stats/).
RiiConnect24 currently does not have a self-hosted guide, however you can find ours [here](riiconnect24). +There is a patcher that ships both of these services together as one - meaning you get all of the international and Japanese-only channels in one package. The guide on how to install these services can be found [on WiiLink's website.](https://www.wiilink24.com/guide/) + ### Updating RTC Clock -If you choose to install either of these services on your Wii, it is advised to synchronize its external clock in order to prevent various issues (such as inability to use said services) that may arise otherwise. The steps to do so can be found below: #### What you need + A working Internet connection on your Wii diff --git a/_pages/ro_RO/wiiflow.md b/_pages/ro_RO/wiiflow.md new file mode 100644 index 000000000..00a63864a --- /dev/null +++ b/_pages/ro_RO/wiiflow.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-loaders.html" %} diff --git a/_pages/ru_RU/410.md b/_pages/ru_RU/410.md new file mode 100644 index 000000000..21f077b23 --- /dev/null +++ b/_pages/ru_RU/410.md @@ -0,0 +1,12 @@ +--- +title: Page no longer exists +sitemap: false +--- + +The page you are trying to view used to exist, but it has since been removed. Maybe the instructions you are following are outdated? (If you got here from a link on this guide, [let us know](https://github.com/hacks-guide/Guide_Wii/issues)) + +[Click here to go back to the site index.](site-navigation) +{: .notice--info} + +![](https://http.cat/410) +{: .notice--info} diff --git a/_pages/ru_RU/bootmii.md b/_pages/ru_RU/bootmii.md index 76b3e18ad..9001b59c7 100644 --- a/_pages/ru_RU/bootmii.md +++ b/_pages/ru_RU/bootmii.md @@ -6,21 +6,9 @@ title: "BootMii Backup" You need an **SD card** to create a NAND backup using BootMii. If you do not have one, you can skip this page, although it is highly recommended to make a NAND backup if you can. -Family edition Wiis (Wiis without GameCube ports) CANNOT restore NAND backups. This is because of the lack of GameCube ports which are required on non-boot2 Wiis to enter the restoration confirmation code. Regardless, it is still recommended to make one on these consoles. -{: .notice--danger} - You need an **SD card** to use BootMii at all, but especially to create a NAND backup. If you do not have an SD card on hand right now, you can skip this page, but it is HIGHLY RECOMMENDED to return to this page later to back up your NAND. {: .notice--warning} -Navigating BootMii is not possible using a Wii Remote. You must use the POWER and RESET buttons on your console, or a GameCube controller plugged into port 1. To navigate between options, press POWER on your Wii (or left/right on the +Control Pad on a GameCube controller). To select an option, press RESET on your Wii or A on your GameCube controller. One of BootMii's most important features is the ability to backup and restore your Wii's NAND storage. We will be going over how to perform a NAND backup. You can then restore from that backup for any reason. -{: .notice--info} - -If the `Launch BootMii` button does not appear, please [re-launch the HackMii Installer](hackmii) and install BootMii. -{: .notice--warning} - -If the screen stays black and the blue disc drive light is blinking, you are missing the BootMii files on your SD card. Download [this zip file](https://static.hackmii.com/bootmii_sd_files.zip) and extract it to the root of your SD card, then try again. -{: .notice--warning} - ### Requirements * An SD card with at least 512MB of free space @@ -36,10 +24,19 @@ If you have BootMii installed as boot2 you will need to launch BootMii by restar ![](/images/bootmii/BootMii_HBC.png) + If the `Launch BootMii` button does not appear, please [re-launch the HackMii Installer](hackmii) and install BootMii. + {: .notice--warning} + + If the screen stays black and the blue disc drive light is blinking, you are missing the BootMii files on your SD card. Download [this zip file](https://static.hackmii.com/bootmii_sd_files.zip) and extract it to the root of your SD card, then try again. + {: .notice--warning} + 1. You should see an image similar to the below now on your screen: ![](/images/bootmii/BootMii_Main.png) + Navigating BootMii is not possible using a Wii Remote. You must use the POWER and RESET buttons on your console, or a GameCube controller plugged into port 1. To navigate between options, press POWER. To select an option, press RESET. + {: .notice--info} + 1. Select the Options button (the icon with the gears). ![](/images/bootmii/BootMii_Gears.png) @@ -65,7 +62,7 @@ If you have BootMii installed as boot2 you will need to launch BootMii by restar
Please be reminded that restoring a NAND backup is usually a last resort, and that there often better ways to fix your brick. There often better ways to unbrick your console. Try your best to [identify your brick condition](bricks) and reverse the action that caused it in the first place. -To restore from a NAND backup on your SD card, you can follow the instructions for [RestoreMii](bootmiirecover). +To restore from a NAND backup on your SD card, you can follow the instructions for [RestoreMii](bootmiirecover). **Family edition Wiis (Wiis without GameCube ports) CANNOT restore NAND backups.**
BootMii as boot2 is recommended, but only available to install on early Wii consoles. Otherwise, it can only be installed as an IOS. If you would like to change this, you can use the app [BootMii Config Editor](https://oscwii.org/library/app/BootMiiConfigurationEditor). Or, you can edit `sd:/bootmii/bootmii.ini` manually. diff --git a/_pages/ru_RU/bricks.md b/_pages/ru_RU/bricks.md index eea7d9fe9..a0dabf3fb 100644 --- a/_pages/ru_RU/bricks.md +++ b/_pages/ru_RU/bricks.md @@ -111,7 +111,7 @@ Attempt to start the Wii - warning/press A screen shows up, and when A is presse A theme brick occurs when a wrongly formatted theme is installed. #### Solutions -To resolve this issue, open HBC through Priiloader and access MyMenuifyMod to install a default theme. Alternatively, go into [YAWM ModMii Edition](yawmme) and install the CORRECT default Wii Menu WAD for your region and version. +To resolve this issue, open HBC through Priiloader or BootMii as boot2 and access csm-installer to install a default theme such as the base Wii Menu theme. Alternatively, go into [YAWM ModMii Edition](yawmme) and install the CORRECT default Wii Menu WAD for your region and version. ## Mail brick diff --git a/_pages/ru_RU/cios.md b/_pages/ru_RU/cios.md index ccda6f975..1f7da7abd 100644 --- a/_pages/ru_RU/cios.md +++ b/_pages/ru_RU/cios.md @@ -65,6 +65,12 @@ Select cIOS version: 65535 ![](/images/cios/d2x_v11_248.png) + The warning "`(c)IOS detected in slot ### will be overwriitten`" can be safely ignored. + {: .notice--info} + + If you are seeing "`Slot ### already used in batch settings`" or "`cIOS already added in batch with revision ##### and slot ###`", press `-` to disable batch mode.
(If you are trying to exit the installer, the button is B, not Home.) + {: .notice--info} + 1. Press `A`. This will bring you to the slot map: ![](/images/cios/d2x_summary.png) diff --git a/_pages/ru_RU/dosanddonts.md b/_pages/ru_RU/dosanddonts.md new file mode 100644 index 000000000..6ceed5bee --- /dev/null +++ b/_pages/ru_RU/dosanddonts.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="faq.html" %} diff --git a/_pages/ru_RU/hbc.md b/_pages/ru_RU/hbc.md index 22aa20fd9..f3c962822 100644 --- a/_pages/ru_RU/hbc.md +++ b/_pages/ru_RU/hbc.md @@ -6,7 +6,7 @@ title: "Homebrew Channel and BootMii Installation" The Homebrew Channel is where you will go to launch homebrew applications. BootMii is a piece of software that can backup and restore your Wii's NAND storage, and if installed in boot2, provides brick protection. -BootMii can be installed in two ways: directly to a part of the Wii bootloader called boot2, and via an IOS. BootMii under boot2 is preferred as it provides extended brick protection, but Wiis with a vulnerable boot2 are considerably rarer, having been manufactured before 2009. In most cases, installing BootMii as IOS should be fine, as long as you also install [Priiloader](priiloader). +BootMii can be installed in two ways: directly to a part of the Wii bootloader called boot2, and via an IOS. BootMii under boot2 is preferred as it provides extended brick protection, but Wiis with a vulnerable boot1 that allows this installation are considerably rarer, having been manufactured before 2009. In most cases, installing BootMii as IOS should be fine, as long as you also install [Priiloader](priiloader). {: .notice--info} If you do not have an SD card, you cannot install nor use BootMii, and therefore will not be able to utilize any of the mentioned benefits.
You can always [install it at a later date](hackmii). diff --git a/_pages/ru_RU/modmii.md b/_pages/ru_RU/modmii.md index b444a86b7..3c62041d1 100644 --- a/_pages/ru_RU/modmii.md +++ b/_pages/ru_RU/modmii.md @@ -4,116 +4,190 @@ title: "ModMii" {% include toc title="Table of Contents" %} -If you need help for anything regarding this tutorial, please join [the ModMii Discord server](https://discord.gg/cMnBRACQwQ). -{: .notice--info} - This Program does NOT come with a warranty, so you are responsible for any potential damage done to your Wii. {: .notice--warning} This program is NOT intended to be used for the vWii or the Wii mini. Some tools may or may not work for these platforms. {: .notice--warning} -/images/Modmii/modmii.png +ModMii is an all-in-one Wii hacking tool for Windows created by XFlak that has various helpful tools for modding. It can accomplish the following: -Some advanced options may not be accessible in ModMii Skin. A list of the various activities for ModMii Classic can be found at the bottom of the page. -{: .notice--info} ++ Hacking the console for the first time, or re-hacking it ++ Check for and update outdated softmods ++ Fix upside-down Homebrew Channel problems ++ Run homebrew without making any changes to your Wii's NAND ++ Download homebrew ++ And more! -### Requirements +### ModMii Overview + +There are two different ways to use ModMii. There is ModMii Classic, which uses a command line interface, but has all of the features available to the program. ModMii Skin has a graphical user interface, on the other hand, but has less options available to the user. If you're looking to simply mod your Wii for the first time, ModMii Skin should suffice. Otherwise, we reccomend using ModMii Classic where possible.
The chart below will help you determine what can be done in either interface. + +| Tools | ModMii Classic | ModMii Skin | +| -------------------------- | -------------- | ----------- | +| ModMii Wizard | ✅ | ✅ | +| SysCheck Updater Wizard | ✅ | ⛔ | +| USB Loader Setup Wizard | ✅ | ✅ | +| HackMii Solutions Wizard | ✅ | ✅ | +| Abstinence Wizard | ✅ | ✅ | +| Region Change Wizard | ✅ | ✅ | +| SNEEK/EmuNAND Installation | ✅ | ✅ | +| Open File Function | ✅ | ⛔ | +| Load Download Queue | ✅ | ✅ | +| Download Page 1/2/3/4 | ✅ | ⛔ | +| Advanced Downloads | ✅ | ⛔ | +| Load Download Queue | ✅ | ⛔ | +| Build Config Files | ✅ | ⛔ | +| File Cleanup & App Updater | ✅ | ⛔ | + +
+Click here for a detailed explanation of each tool. + +| Tool | Description | +| --------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| W = ModMii Wizard <-- Start Here to Mod Your Wii! | This option can be used to hack your Wii for the first time or re-hack a Wii that has been previously modded. | +| SU = SysCheck Updater Wizard (update only your outdated softmods) | This option checks for and updates old modifications installed to their wii such as DarkCorp/CIOSSPAGHETTI that can potentially cause problems for the latest homebrew custom firmware. | +| U = USB-Loader Setup Wizard | This option will properly set up your USB loader to be able to load your disk backups from an SD or USB hard drive. This option is not necessary if using the ModMii Wizard. | +| H = HackMii Solutions Wizard (Upside-Down HBC\No Vulnerable IOS Fix) | This option is useful for people who are having trouble getting the HackMii Installer to work or have an upside down homebrew channel. | +| AW = Abstinence Wizard (Non-permanent Wii Hacks) | This option allows you to run homebrew on your Wii without making any permanent modifications to the system NAND. | +| RC = Region Change Wizard | This option can be used to change the region of your Wii without bricking it, and is arguably the best region changing wizard on the internet. | +| S = SNEEK Installation, EmuNAND Builder\Modifier, Game Bulk Extractor | This option will help you properly set up an EmuNAND (aka neek2o) onto your SD or USB. Benefits for EmuNAND include extra storage space for save games or channels, as well as running homebrew without making any permanent modifications to the system NAND. | +| F = open a File or Folder with ModMii for many more functions! | This option is an advanced tool especially helpful for developers. | +| 1 = Download Page 1 (System Menus, IOSs, MIOSs, Channels, etc.) | This option opens the first download page that includes most of the key parts of the Wii System Menu (downloaded from NUS). | +| 2 = Download Page 2 (Apps, USB-Loader Files, CheatCodes, etc.) | This option opens the second download page that includes exploits and useful apps for your Wii including some PC programs. | +| 3 = Download Page 3 (System Menu Themes) | This option opens the third download page that includes some system menu themes and items required to install system menu themes (base apps are downloaded from NUS). | +| 4 = Download Page 4 (cIOSs and cMIOSs) | This option opens the fourth download page that includes cIOSes and cMIOSes for use in USB loaders. | +| A = Advanced Downloads and Forwarder DOL\ISO Builder | This option allows you to download any IOS and cIOS and build custom DOL/ISO forwarders. Intended for advanced users only. | +| L = Load Download Queue | This option loads bundled or previously saved download queues. | +| C = Build Config Files for Bootmii, Wad Manager or Multi-Mod Manager | This option allows you to build customized config files for BootMii, Wad Manager, and Multi-Mod Manager. | +| FC = File Cleanup & App Updater: Update Apps and\or remove un-needed files | This option removes unnessecary files from your SD Card or Hard Drive after finishing softmodding your Wii. | + +

+ +When using ModMii, it is important to note that it will generate a custom guide for you depending on the options that you select. For this reason, this guide will not be focused on how to mod your Wii, as ModMii handles that function. Instead, it will be a quick start guide show you how to effectively use it with the most common options. + +### Installing ModMii + +#### Requirements * A Wii * A USB drive or SD Card * A Windows PC (a Virtual Machine will work) * [ModMii](https://modmii.github.io/) -This is a quick start guide on how to use ModMii on your Windows PC. +#### Installation -### ModMii Wizard +1. Go to the [ModMii website](https://modmii.github.io) and scroll down to the Download section. Here, select the `Installer` option. Your browser may flag the installer as malware, but it is a **false positive**. -You can use the ModMii wizard to softmod any Wii.
Even if the Wii has been softmodded in the past, you can have ModMii overwrite existing softmods by telling ModMii that this is the first time you're modding your Wii (even though it's not). + ![](/images/modmii/modmii-download.png) -You can also use this wizard to set up a USB loader at the same time, instead of having to use the USB Loader setup wizard later on. +2. Open the `ModMiiInstaller.exe` file and go through the setup process. + + ![](/images/modmii/modmii-install.png) + +### Using the ModMii Wizard + +The ModMii Wizard is tool that can softmod your Wii from start to finish, downloading all necessary files and then generating a guide that you can use to implement the softmod. This tool can also be used to overwrite existing softmods on a previously softmodded Wii. + +1. Open ModMii Skin or ModMii Classic and select the ModMii Wizard option at the top of the list. + + ![](/images/modmii/modmii-wizard-1.png) + +1. Answer `Yes` to the first question, unless you have a very specific idea of what you would like to do or update to your Wii. + + ![](/images/modmii/modmii-wizard-2.png) + +1. Select your current System Menu version, followed by the System Menu Region, following the instructions in the program. If you are still confused, check the bottom option on each screen for an instructional video. + + ![](/images/modmii/modmii-wizard-3.png) + +1. Select the exploit you would like to use to mod your Wii. The exploits below are outlined throughout this website, but in most cases we would reccommend using Wilbrand if you have an SD card on hand. + + ![](/images/modmii/modmii-wizard-4.png) + +1. If you selected the Wilbrand option in the previous step, enter your Wii's MAC address. If you don't know how to check your Wii's MAC address, enter `Help` in the text box for an instructional video. + + ![](/images/modmii/modmii-wizard-5.png) + +1. Select your desired System Menu version from the list. + + ![](/images/modmii/modmii-wizard-6.png) + +1. Select whether or not you would like to install any of the listed channels - this is an optional step. + + ![](/images/modmii/modmii-wizard-7.png) + +1. Select whether or not you would like to install a custom Wii theme, with the choice of three theme effects. Each effect deals with how much the outline when hovering over a Wii Channel spins. + + ![](/images/modmii/modmii-wizard-8.png) + +1. Select whether or not you would like to set up a USB Loader for use with your Wii. + + ![](/images/modmii/modmii-wizard-9.png) + +1. If you selected `Yes` in the USB Loader menu, select which USB Loader you would like to use. If you choose an individual one, we reccomend either USB Loader GX or WiiFlow as both are covered on this website, or you may optionally download each option. + + ![](/images/modmii/modmii-wizard-10.png) + +1. If you selected `Yes` in the USB Loader menu, select where you would like to save your USB Loader files at. + + ![](/images/modmii/modmii-wizard-11.png) + +1. Verify where you would like to save files for your SD Card and/or USB Drive. + + ![](/images/modmii/modmii-wizard-12.png) + +1. Confirm your settings are correct, and then press `Finish`. Once you press the button, ModMii will begin to process and download files in the background, and will automatically generate and open a guide for you. From here, you should follow the guide generated by ModMii. + + ![](/images/modmii/modmii-wizard-13.png) ### SysCheck Updater Wizard -[SysCheck](syscheck) is a homebrew application that analyzes the modifications on a Wii.
You can give a SysCheck report to ModMii to help identify & update outdated mods. +The SysCheck Updater Wizard is a tool that utilizes the homebrew app [SysCheck](syscheck) to analyze any modifications on your Wii, especially IOS and cIOS. It accepts a `syscheck.csv` file generated by the app, and then provides any nessecary updates as needed. -You can have ModMii analyze a SysCheck by dragging the `syscheck.csv` file onto ModMii.exe. Or, you can launch the SysCheck Updater Wizard (`SU`) from ModMii's main menu and manually browse for the file. +1. Open ModMii Classic and enter in `SU` to open the SysCheck Updater Wizard. + + ![](/images/modmii/syscheck-wizard-1.png) + +1. Follow the instructions in the window if you don't already have a SysCheck log, and then drag and drop the `syscheck.csv` file from Windows Explorer into the window. This will paste the location of the file, from which you can press Enter. + + ![](/images/modmii/syscheck-wizard-2.png) + +1. The program will analyze your SysCheck file, and will provide options for you depending on what it sees. In this example instance, the mods on the Wii were up-to-date, but there were several unnecessary IOSes that could be stubbed. If you want to make these changes to your Wii, simply enter in `Y` and press Enter. From here, you should follow the guide generated by ModMii. + + ![](/images/modmii/syscheck-wizard-3.png) ### HackMii Solutions Wizard -The HackMii Solutions wizard can help fix symptoms like these: +The HackMii Solutions Wizard is a tool that fixes problems that may arise from things like Darkcorp/CIOSSPAGHETTI by installing clean IOSes. Examples of problems that may arise because of this are listed below: + HackMii Installer not prompting "Press (1) to continue" -+ HackMii Installer says "no vulnerable IOS found!" -+ Homebrew Channel is displaying upside-down ++ HackMii Installer saying "no vulnerable IOS found!" ++ Homebrew Channel displaying upside-down -It will install clean IOSs to allow for the HackMii Installer to operate properly. +1. Open ModMii Skin or ModMii Classic and select the HackMii Solutions option. -### Abstinence Wizard + ![](/images/modmii/hackmii-wizard-1.png) -This wizard requires an SD card. -{: .notice--warning} +1. Select your current System Menu version, followed by the System Menu Region, following the instructions in the program. If you are still confused, check the bottom option on each screen for an instructional video. -This wizard allows you to enjoy many of the benefits of a softmodded Wii without installing any permanent modifications to your Wii. It will allow you to launch an exploit to boot an from emulated NAND from external storage, instead of your Wii's internal NAND. + ![](/images/modmii/hackmii-wizard-2.png) -On a related note, you can also make a NAND backup without modifying your Wii at all. Find ModMii's "Support" folder and launch `Casper2BootMii.bat`.
It will save some files to a folder named `COPY_TO_SD`, copy the files inside it to your SD card and [launch an exploit](get-started). +1. Select the exploit you would like to use to mod your Wii. The exploits below are outlined throughout this website, but in most cases we would reccommend using Wilbrand if you have an SD card on hand. -When following one of the exploit guides above, please avoid replacing the `boot.elf` file. -{: .notice--warning} + ![](/images/modmii/hackmii-wizard-3.png) +1. If you selected the Wilbrand option in the previous step, enter your Wii's MAC address. If you don't know how to check your Wii's MAC address, enter `Help` in the text box for an instructional video. -
-Click here for a full list of available tools. + ![](/images/modmii/hackmii-wizard-4.png) -| Tool | Description | -| --------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| W = ModMii Wizard <-- Start Here to Mod Your Wii! | This option can be used to mod your Wii for the first time or re-mod a Wii that has been previously modded. | -| SU = SysCheck Updater Wizard (update only your outdated softmods) | This option is useful for people who have old modifications installed to their wii such as DarkCorp/Ciosspaghetti that can potetially cause problems for the latest homebrew custom firmware. | -| U = USB-Loader Setup Wizard | This option will help you properly set up your USB loader to be able to load your disk backups from an SD or USB hard drive. | -| H = HackMii Solutions Wizard (Upside-Down HBC\No Vulnerable IOS Fix) | This option is useful for people who are having trouble getting the HackMii Installer to work, or if they just simply have an upside down homebrew channel, or if DarkCorp/Ciosspaghetti was installed and there was no homebrew channel. | -| AW = Abstinence Wizard (Non-permanent Wii Hacks) | This option is useful for people who dont want to make any permanent modifications to their Wii but still want to have some of the benefits that homebrew can offer. | -| RC = Region Change Wizard | This option can be used to change the region of your Wii without bricking it (this is the best region changer tutorial available on the internet!). | -| S = SNEEK Installation, EmuNAND Builder\Modifier, Game Bulk Extractor | This option will help you properly set up an EmuNAND (aka neek2o) onto your SD or USB. benefits for emunand include extra storage space for save games or channels. and the benefit of not making any permanent modifications to your Wii. | -| F = open a File or Folder with ModMii for many more functions! | This option is an advanced tool especially helpful for developers. | -| 1 = Download Page 1 (System Menus, IOSs, MIOSs, Channels, etc.) | This option opens the first download page that includes most of the key parts for the system menu (downloaded from NUS). | -| 2 = Download Page 2 (Apps, USB-Loader Files, CheatCodes, etc.) | This option opens the second download page that includes exploits and useful apps for your Wii including some PC programs. | -| 3 = Download Page 3 (System Menu Themes) | This option opens the third download page that includes some system menu themes and items required to install system menu themes (base apps are downloaded from NUS). | -| 4 = Download Page 4 (cIOSs and cMIOSs) | This option opens the fourth download page that includes cIOSes and cMIOSes for use in USB loaders. It is recommended to just install the recommended cioses unless you plan to do some testing. | -| A = Advanced Downloads and Forwarder DOL\ISO Builder | This option is an advanced tool used to better customize downloads or allow you to build a dol executable useful for fowarders (channels on the system menu to access Wii applications). | -| L = Load Download Queue | This option will download all of the required titles need for the Wii system menu (titles are downloaded from NUS) | -| C = Build Config Files for Bootmii, Wad Manager or Multi-Mod Manager | This option will help you build configuration files required for certain applications. | -| FC = File Cleanup & App Updater: Update Apps and\or remove un-needed files | This option is useful for people who want to clean out their SD or USB of apps deemed outdated, useless, or otherwise depreciated. | -| M = ModMii Skin Mode: use your mouse instead of your keyboard! | This option will launch ModMii skin mode. Some advanced options may not be available in this view. | +1. Verify where you would like to save files for your SD Card and/or USB Drive. -
+ ![](/images/modmii/modmii-wizard-12.png) -
-Click here for a full list of available options. +1. Confirm your settings are correct, and then press `Finish`. Once you press the button, ModMii will begin to process and download files in the background, and will automatically generate and open a guide for you. From here, you should follow the guide generated by ModMii. After finishing this guide, it is recommended that you use the [SysCheck Updater Wizard](#syscheck-updater-wizard) to undo any other problematic modifications on your Wii. -| Option | Description | -| ---------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| D = Change Drive letter: | Changes where your SD files are saved to. | -| DU = Change Drive letter for USB: | Changes where your USB files are saved to. | -| d2x = change d2x cIOS version built: | Changes the cios version ModMii downloads. | -| H = Hermes cIOSs (202 & 222-224) will also be recommended | Enables Hermes IOS to be recommended and downloaded in the syscheck updater (will be stubbed if disabled). | -| CM = cMIOS included in recommended cIOSs | Enables cMIOS to be recommended and downloaded in the syscheck updater (will install stock MIOS if disabled). | -| E = Extra Brick Protection in ModMii Wizard Guides | Enables ModMiis Extra Brick Protection IOSes to be recommended and used in the syscheck updater tool. | -| U = Update IOSs. Wizard/SysCheck-Updater to update Active IOSs | Updates Existing IOSes to the latest version available on NUS. | -| AU = Auto-Updating downloads will skip update check if cached | Will skip downloading the files if already in the queue. | -| FWD = Install USB-Loader Forwarder in ModMii Wizard Guides | Will include the USB loader forwarder wad file in the USB loader wizard guides. | -| PC = PC Programs Save Location | Changes the save location for the downloadable PC programs. | -| RS = Root Save: Save IOSs\MIOSs to Root instead of WAD Folder | Saves IOSs\MIOSs to Root instead of WAD Folder. | -| 1 = Do not Keep 00000001 or NUS Folders for IOSs\MIOSs\SMs etc | Deletes the folder used for compiling the wad file and just gives you the wad file. | -| n2o = neek2o - build mod of s\uneek instead of original | Uses a better modified version of neek2o in the EmuNAND builder. | -| SSD = SNEEK and SNEEK+DI SD Access | Allows for SNEEK and SNEEK+DI access on the SD card. | -| F = Font.bin Colour for SNEEK/UNEEK | Changes the font color for neek2o. | -| SV = SNEEK Verbose Output | Displays extra information regarding EmuNAND. | -| V = Verbose for ModMii Skin & nandBinCheck | Displays another window with extra information regarding a nand check. | -| SO = Play sound at Finish | Plays a fun jingle after a successful download. | -| A = Auto-Update ModMii at program start | Will automatically check for updates when ModMii is launched. | -| N = Check for New versions of ModMii right now | Will check online for a ModMii update. | - -
+ ![](/images/modmii/hackmii-wizard-5.png) [Click here to go back to the site index.](site-navigation) {: .notice--info} diff --git a/_pages/ru_RU/nintendont.md b/_pages/ru_RU/nintendont.md new file mode 100644 index 000000000..d7eef1b3f --- /dev/null +++ b/_pages/ru_RU/nintendont.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="410.html" %} diff --git a/_pages/ru_RU/recommended-homebrew.md b/_pages/ru_RU/recommended-homebrew.md index b2bada15a..2d3869c77 100644 --- a/_pages/ru_RU/recommended-homebrew.md +++ b/_pages/ru_RU/recommended-homebrew.md @@ -16,7 +16,7 @@ Homebrew that has the ability to make permanant changes to your Wii are highligh + [**AnyRegion Changer ME**](https://oscwii.org/library/app/ARCME) - ModMii edition of AnyRegion Changer. While a powerful tool for changing region settings, it can also lead to severe bricks like [Korean Kii/Error 003](bricks#korean-kiierror-003-brick) so **only use this app if you know what you are doing**. + [**WiiXplorer-SS**](https://oscwii.org/library/app/wiixplorer-ss) - A modified and updated version of WiiXplorer. A file manager for the Wii, it allows you to view and customize files both on an SD card, a USB device, and the internal Wii memory. For this reason it is a very powerful but also dangerous tool - don't modify files on the system NAND unless you know what you are doing, as it can lead to various types of [bricks](bricks). + [**SaveGame Manager GX**](https://oscwii.org/library/app/SaveGame_Manager_GX) - A savegame/Mii extractor for the Wii. It supports GameCube memory cards (physical and virtual), emuNANDs, normal and protected saves, themes, and more. -+ [**MyMenuifyMod**](https://oscwii.org/library/app/mymenuifymod) - An application that allows you to theme the Wii Menu. While quite useful to make your Wii unique, it also has the ability to cause a [minor brick](bricks#theme-brick), so make sure to read our [theme guide](themes) for safe usage instructions. ++ [**csm-installer**](https://oscwii.org/library/app/csm-installer) - An application that allows you to theme the Wii Menu. While quite useful to make your Wii unique, it also has the ability to cause a [minor brick](bricks#theme-brick), so make sure to read our [theme guide](themes) for safe usage instructions. + [CleanRip](https://oscwii.org/library/app/CleanRip) - A tool to backup GameCube and Wii discs. Further information can be found in our [disc dumping guide](dump-games). + [**d2x cIOS installer**](https://oscwii.org/library/app/d2x-cios-installer) - A custom installer for Wii IOS, some of which is required for the functioning of certain software like USB loaders. You can see the guide [here](cios). + [FTPii](https://oscwii.org/library/app/ftpii) - An FTP server for your Wii, allowing you to transfer files across the network. diff --git a/_pages/ru_RU/riiconnect24.md b/_pages/ru_RU/riiconnect24.md index d57dfafad..d1e91b7e8 100644 --- a/_pages/ru_RU/riiconnect24.md +++ b/_pages/ru_RU/riiconnect24.md @@ -1,138 +1,5 @@ --- -title: "RiiConnect24" +title: Redirecting... --- -{% include toc title="Table of Contents" %} - -If you need help with anything regarding this tutorial, please join [the RiiConnect24 Discord server](https://discord.gg/rc24) (recommended) or [e-mail us at support@riiconnect24.net](mailto:support@riiconnect24.net). -{: .notice--primary} - -[RiiConnect24](https://rc24.xyz/) allows you to use discontinued services from WiiConnect24, which include the News, Forecast, Everybody Votes, Nintendo and Check Mii Out Channel, along with Wii Mail. - -It's recommended to set your Wii to the current time before proceeding. Follow [this tutorial](rtc) in order to set it. -{: .notice--warning} - -DO NOT INSTALL RIICONNECT24 ON A WII MINI! It will not work and it will brick the system. -{: .notice--danger} - -### Requirements - -Follow [this tutorial](riiconnect24-vwii) if you'd like to install RiiConnect24 on vWii (Wii Mode on Wii U). -{: .notice--primary} - -+ An SD card or USB drive -+ A Wii with an Internet connection -+ A PC with an Internet connection -+ [RiiConnect24 Patcher (Windows, Mac and Linux)](https://github.com/riiconnect24/RiiConnect24-Patcher/releases) -+ [YAWM ModMii Edition](https://oscwii.org/library/app/yawmme) - -### Instructions - -#### Section I - Using RiiConnect24 Patcher - -1. Click the link above to go to the GitHub page where the patcher is. -1. Download `RiiConnect24Patcher.bat` if you are on Windows, and `RiiConnect24Patcher.sh` if you are on a Unix system -1. RiiConnect24 Patcher Main Screen - + On Windows run `RiiConnect24Patcher.bat`. - + On Unix systems, open Terminal and type `bash`, then drag `RiiConnect24Patcher.sh` into the terminal then press enter. It should look like this: `bash RiiConnect24Patcher.sh`. -1. Press 1 to choose "`Start`" and confirm your selection by pressing `ENTER`. - - ![](/images/riiconnect24/patcher/1.JPG) - -1. Select the device you're patching for. - - ![](/images/riiconnect24/patcher/2.JPG) - -1. For this guide, choose "`Install RiiConnect24 on your Wii`" - - ![](/images/riiconnect24/patcher/3.JPG) - -1. Choose "`Express (Recommended)`". It will give you everything you need. - - ![](/images/riiconnect24/patcher/4.JPG) - -1. Select your region. - - ![](/images/riiconnect24/patcher/5.JPG) - -1. While you're at it, RiiConnect24 Patcher can additionally download some other optional channels that do not use RiiConnect24. `[X]` represents the options that selected. Just press 5 and `ENTER` if you're not interested. - - ![](/images/riiconnect24/patcher/6.JPG) - -1. Connect your SD Card or USB Drive to your computer and select "`1`". - - ![](/images/riiconnect24/patcher/7.JPG) - -1. If your device was detected successfully, select "`1`". If not, make sure there's a folder called `apps` on your SD Card or USB Drive and try again. - - ![](/images/riiconnect24/patcher/8.JPG) - -1. The patcher will download apps now - please be patient. - - ![](/images/riiconnect24/patcher/9.JPG) - -1. Once you reach the screen that says `Patching done`, you can exit the patcher. All the files should already be on your SD Card. - - ![](/images/riiconnect24/patcher/10.JPG) - - ![](/images/riiconnect24/patcher/11.PNG) - -1. If it did not copy everything automatically to your SD Card or USB Device, copy the `WAD` and `apps` folder next to `RiiConnect24Patcher.bat` to your SD Card or USB Device. - -#### Section II - Installing WADs - -If you are using Dolphin, you have finished the guide. Install the WADs by going to `Tools -> Install WAD` within Dolphin. -{: .notice--primary} - -You will now install the patched IOS and Channel WADs that are required to use RiiConnect24. - -1. Extract the YAWM ModMii Edition `.zip` file, and copy the `apps` folder to your SD card or USB drive. -1. Put your SD card or USB drive in your Wii. -1. Launch the Homebrew Channel on your Wii. -1. Launch YAWM ModMii Edition. -1. Select the device you have put the RiiConnect24 files on. -1. Highlight all the WADs in the `wad` folder by pressing the + Button to select them. When all of the WADs are selected, press A twice to install the WADs. -1. After they are successfully installed, press the HOME Button to exit back to the Homebrew Channel. - -#### Section III - Patching nwc24msg.cfg - -You will now patch your `nwc24msg.cfg` file which is required in order to use Wii Mail. - -1. Launch RiiConnect24 Mail Patcher. -1. It should only take a few seconds to patch your nwc24msg.cfg. When it's done, press the HOME Button to exit. - -#### Section IV - Connecting - -The old DNS server `164.132.44.106` has been deprecated as of `June 1st, 2023` and is no longer available to use. -{: .notice--warning} - -If you're getting errors such as `WiiConnect24 and Wii Shop Channel currently not being offered in your country`, go to Wii Settings -> Last Page -> Country and change it to United Kingdom. You will get this error when using a country that we don't support. Contact us at [support@riiconnect24.net](mailto:support@riiconnect24.net) if you need more help. -{: .notice--warning} - -If you get error 107245, then you have not installed the patched IOS.
-{: .notice--warning} - -You will now set your DNS to our servers. This is optional but it's recommended, because it enhances the use of RiiConnect24 and Wiimmfi by making some other features available. - -1. Go to `Wii Options`. -1. Go to `Wii Settings`. -1. Go to `Page 2`, then click on `Internet`. -1. Go to `Connection Settings`. -1. Select your current connection. -1. Go to `Change Settings`. -1. Go to `Auto-Obtain DNS` (Not IP Address), then select `No`, then `Advanced Settings`. -1. Type in `167.86.108.126` as the primary DNS. -1. Type in `1.1.1.1` as the secondary DNS. -1. Select `Confirm`, then select `Save`. -1. Select `OK` to perform a connection test. -1. If the connection test was successful, select `No` to skip the Wii System Update. -1. Go to `WiiConnect24`, then `WiiConnect24` again, and make sure it is enabled. -1. Back on the WiiConnect24 menu, go to `Standby Connection` and make sure it is enabled. -1. At `Slot Illumination`, we recommend you set the disc light to `Dim` or `Bright`, but this is optional. -1. Finally, go to the `Internet` section, then `User Agreements` or `Agreement/Contact`, then `Yes`. Please read through this. - -[Return to WiiConnect24](wiiconnect24) -{: .notice--info} - -[Click here to go back to the site index.](site-navigation) -{: .notice--info} +{% include redirect.html redirect_to="https\://www\.wiilink24.com/guide/install/" %} diff --git a/_pages/ru_RU/riitag.md b/_pages/ru_RU/riitag.md new file mode 100644 index 000000000..e6b6bc322 --- /dev/null +++ b/_pages/ru_RU/riitag.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="https\://wiki.hacks.guide/wiki/RiiTag" %} diff --git a/_pages/ru_RU/riivolution.md b/_pages/ru_RU/riivolution.md new file mode 100644 index 000000000..d7eef1b3f --- /dev/null +++ b/_pages/ru_RU/riivolution.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="410.html" %} diff --git a/_pages/ru_RU/themes.md b/_pages/ru_RU/themes.md index cac3330b3..a86baec89 100644 --- a/_pages/ru_RU/themes.md +++ b/_pages/ru_RU/themes.md @@ -4,13 +4,16 @@ title: "Installing Wii Menu Themes" {% include toc title="Table of Contents" %} -This guide is intended for regular Wiis only. For installing themes on vWii (Wii U), follow [this page](themes-vwii). Additionally, forwarders are covered. +This guide is intended to be the last you will ever need when it comes to theming on the Wii, not only providing instructions for the Wii Menu through csm-installer, but also with themes on WiiFlow Lite, USB Loader GX, and The Homebrew Channel. Additionally, forwarders are covered. ### Section I - Finding a Theme DO NOT CONTINUE WITH THIS GUIDE UNLESS YOU HAVE ADEQUATE BRICK PROTECTION, SPECIFICALLY [BOOTMII](bootmii) AND [PRIILOADER](priiloader)! {: .notice--danger} +This tutorial does not work on the Wii mini. Do not attempt this tutorial on the Wii mini or it will cause a [brick](bricks#theme-brick). +{: .notice--warning} + csm-installer has built in safety features to prevent from installing bad or corrupt Wii Menu themes, so please opt to use it instead of other theme installation homebrew. {: .notice--warning} diff --git a/_pages/ru_RU/usbloadergx.md b/_pages/ru_RU/usbloadergx.md new file mode 100644 index 000000000..00a63864a --- /dev/null +++ b/_pages/ru_RU/usbloadergx.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-loaders.html" %} diff --git a/_pages/ru_RU/wiibackupmanager.md b/_pages/ru_RU/wiibackupmanager.md new file mode 100644 index 000000000..063d7bba0 --- /dev/null +++ b/_pages/ru_RU/wiibackupmanager.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-backups.html" %} diff --git a/_pages/ru_RU/wiiconnect24.md b/_pages/ru_RU/wiiconnect24.md index 894f24c37..ad0a4b6fc 100644 --- a/_pages/ru_RU/wiiconnect24.md +++ b/_pages/ru_RU/wiiconnect24.md @@ -3,44 +3,21 @@ title: "WiiConnect24" --- {% include toc title="Table of Contents" %} + -This guide provides different means of regaining WiiConnect24 functionality on your console. Although not at all nessecary, it is a "nice to have" feature that was originally used for online connectivity in certain applications on the console. These apps include the Forecast/News Channel, Nintendo Channel, Check Mii Out Channel, some Japan-exclusive channels, and more. Please bear in mind, the functionality you gain depends entirely on what service(s) you use. +[WiiConnect24](https://wikipedia.org/wiki/WiiConnect24) was a service that allowed users with Internet connected Wiis to view the weather & local news, send messages to friends, participate in Mii contest, and more. WiiConnect24 was discontinued on June 27th, 2013. -### Service Overview +## RiiConnect24 + WiiLink +[RiiConnect24](https://rc24.xyz) is a revival service for WiiConnect24 that started in 2015, which allows you to regain its functionality on your console. As of late 2023, the service is now owned by WiiLink, a project that started in 2020 that was previously aiming at the Japanese-exclusive channels. -#### Note about service compatibility: -Both services listed below are compatible with one another and can be loaded on the same console. With this said, it should be noted that when installing one channel over the other (WiiLink's Forecast Channel over RiiConnect24's Forecast Channel for example), the channel you are installing will overwrite the old one. - - -#### Service Support Status -✅ - In support
⚠️ - In development
⛔ - No support - -| Service Name | WiiLink | RiiConnect24 | -| ----------------------- | ------- | ------------ | -| Forecast Channel | ✅ | ✅ | -| News Channel | ⚠️ | ✅ | -| Wii Mail | ✅ | ✅ | -| Everybody Votes Channel | ✅ | ✅ | -| Nintendo Channel | ✅ | ✅ | -| Check Mii Out Channel | ⚠️ | ✅ | -| Wii Room | ✅ | ⛔ | -| Food Channel | ✅ | ⛔ | -| Photo Prints Channel | ✅ | ⛔ | -| Kirby TV Channel | ✅ | ⛔ | -| TV Guide Channel | ⚠️ | ⛔ | - -#### WiiLink -A newer WC24/Japanese channel revival service that started in 2020, but is rapidly regaining functionality in many different channels. - -Service support status can be found [here](https://www.wiilink24.com/status).
Their guide can be found [here](https://www.wiilink24.com/guide). - -#### RiiConnect24 -The longest lasting WC24 revival service, currently only with support for the worldwide WC24 channels as well as mail services. - -Service support status can be found [here](https://rc24.xyz/stats/).
RiiConnect24 currently does not have a self-hosted guide, however you can find ours [here](riiconnect24). +There is a patcher that ships both of these services together as one - meaning you get all of the international and Japanese-only channels in one package. The guide on how to install these services can be found [on WiiLink's website.](https://www.wiilink24.com/guide/) + ### Updating RTC Clock -If you choose to install either of these services on your Wii, it is advised to synchronize its external clock in order to prevent various issues (such as inability to use said services) that may arise otherwise. The steps to do so can be found below: #### What you need + A working Internet connection on your Wii diff --git a/_pages/ru_RU/wiiflow.md b/_pages/ru_RU/wiiflow.md new file mode 100644 index 000000000..00a63864a --- /dev/null +++ b/_pages/ru_RU/wiiflow.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-loaders.html" %} diff --git a/_pages/tr_TR/410.md b/_pages/tr_TR/410.md new file mode 100644 index 000000000..21f077b23 --- /dev/null +++ b/_pages/tr_TR/410.md @@ -0,0 +1,12 @@ +--- +title: Page no longer exists +sitemap: false +--- + +The page you are trying to view used to exist, but it has since been removed. Maybe the instructions you are following are outdated? (If you got here from a link on this guide, [let us know](https://github.com/hacks-guide/Guide_Wii/issues)) + +[Click here to go back to the site index.](site-navigation) +{: .notice--info} + +![](https://http.cat/410) +{: .notice--info} diff --git a/_pages/tr_TR/bootmii.md b/_pages/tr_TR/bootmii.md index 76b3e18ad..9001b59c7 100644 --- a/_pages/tr_TR/bootmii.md +++ b/_pages/tr_TR/bootmii.md @@ -6,21 +6,9 @@ title: "BootMii Backup" You need an **SD card** to create a NAND backup using BootMii. If you do not have one, you can skip this page, although it is highly recommended to make a NAND backup if you can. -Family edition Wiis (Wiis without GameCube ports) CANNOT restore NAND backups. This is because of the lack of GameCube ports which are required on non-boot2 Wiis to enter the restoration confirmation code. Regardless, it is still recommended to make one on these consoles. -{: .notice--danger} - You need an **SD card** to use BootMii at all, but especially to create a NAND backup. If you do not have an SD card on hand right now, you can skip this page, but it is HIGHLY RECOMMENDED to return to this page later to back up your NAND. {: .notice--warning} -Navigating BootMii is not possible using a Wii Remote. You must use the POWER and RESET buttons on your console, or a GameCube controller plugged into port 1. To navigate between options, press POWER on your Wii (or left/right on the +Control Pad on a GameCube controller). To select an option, press RESET on your Wii or A on your GameCube controller. One of BootMii's most important features is the ability to backup and restore your Wii's NAND storage. We will be going over how to perform a NAND backup. You can then restore from that backup for any reason. -{: .notice--info} - -If the `Launch BootMii` button does not appear, please [re-launch the HackMii Installer](hackmii) and install BootMii. -{: .notice--warning} - -If the screen stays black and the blue disc drive light is blinking, you are missing the BootMii files on your SD card. Download [this zip file](https://static.hackmii.com/bootmii_sd_files.zip) and extract it to the root of your SD card, then try again. -{: .notice--warning} - ### Requirements * An SD card with at least 512MB of free space @@ -36,10 +24,19 @@ If you have BootMii installed as boot2 you will need to launch BootMii by restar ![](/images/bootmii/BootMii_HBC.png) + If the `Launch BootMii` button does not appear, please [re-launch the HackMii Installer](hackmii) and install BootMii. + {: .notice--warning} + + If the screen stays black and the blue disc drive light is blinking, you are missing the BootMii files on your SD card. Download [this zip file](https://static.hackmii.com/bootmii_sd_files.zip) and extract it to the root of your SD card, then try again. + {: .notice--warning} + 1. You should see an image similar to the below now on your screen: ![](/images/bootmii/BootMii_Main.png) + Navigating BootMii is not possible using a Wii Remote. You must use the POWER and RESET buttons on your console, or a GameCube controller plugged into port 1. To navigate between options, press POWER. To select an option, press RESET. + {: .notice--info} + 1. Select the Options button (the icon with the gears). ![](/images/bootmii/BootMii_Gears.png) @@ -65,7 +62,7 @@ If you have BootMii installed as boot2 you will need to launch BootMii by restar
Please be reminded that restoring a NAND backup is usually a last resort, and that there often better ways to fix your brick. There often better ways to unbrick your console. Try your best to [identify your brick condition](bricks) and reverse the action that caused it in the first place. -To restore from a NAND backup on your SD card, you can follow the instructions for [RestoreMii](bootmiirecover). +To restore from a NAND backup on your SD card, you can follow the instructions for [RestoreMii](bootmiirecover). **Family edition Wiis (Wiis without GameCube ports) CANNOT restore NAND backups.**
BootMii as boot2 is recommended, but only available to install on early Wii consoles. Otherwise, it can only be installed as an IOS. If you would like to change this, you can use the app [BootMii Config Editor](https://oscwii.org/library/app/BootMiiConfigurationEditor). Or, you can edit `sd:/bootmii/bootmii.ini` manually. diff --git a/_pages/tr_TR/bricks.md b/_pages/tr_TR/bricks.md index 4a2c85dd4..5faee5e95 100644 --- a/_pages/tr_TR/bricks.md +++ b/_pages/tr_TR/bricks.md @@ -111,7 +111,7 @@ Attempt to start the Wii - warning/press A screen shows up, and when A is presse A theme brick occurs when a wrongly formatted theme is installed. #### Solutions -To resolve this issue, open HBC through Priiloader and access MyMenuifyMod to install a default theme. Alternatively, go into [YAWM ModMii Edition](yawmme) and install the CORRECT default Wii Menu WAD for your region and version. +To resolve this issue, open HBC through Priiloader or BootMii as boot2 and access csm-installer to install a default theme such as the base Wii Menu theme. Alternatively, go into [YAWM ModMii Edition](yawmme) and install the CORRECT default Wii Menu WAD for your region and version. ## Mail brick diff --git a/_pages/tr_TR/cios.md b/_pages/tr_TR/cios.md index ccda6f975..1f7da7abd 100644 --- a/_pages/tr_TR/cios.md +++ b/_pages/tr_TR/cios.md @@ -65,6 +65,12 @@ Select cIOS version: 65535 ![](/images/cios/d2x_v11_248.png) + The warning "`(c)IOS detected in slot ### will be overwriitten`" can be safely ignored. + {: .notice--info} + + If you are seeing "`Slot ### already used in batch settings`" or "`cIOS already added in batch with revision ##### and slot ###`", press `-` to disable batch mode.
(If you are trying to exit the installer, the button is B, not Home.) + {: .notice--info} + 1. Press `A`. This will bring you to the slot map: ![](/images/cios/d2x_summary.png) diff --git a/_pages/tr_TR/dosanddonts.md b/_pages/tr_TR/dosanddonts.md new file mode 100644 index 000000000..6ceed5bee --- /dev/null +++ b/_pages/tr_TR/dosanddonts.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="faq.html" %} diff --git a/_pages/tr_TR/hbc.md b/_pages/tr_TR/hbc.md index 22aa20fd9..f3c962822 100644 --- a/_pages/tr_TR/hbc.md +++ b/_pages/tr_TR/hbc.md @@ -6,7 +6,7 @@ title: "Homebrew Channel and BootMii Installation" The Homebrew Channel is where you will go to launch homebrew applications. BootMii is a piece of software that can backup and restore your Wii's NAND storage, and if installed in boot2, provides brick protection. -BootMii can be installed in two ways: directly to a part of the Wii bootloader called boot2, and via an IOS. BootMii under boot2 is preferred as it provides extended brick protection, but Wiis with a vulnerable boot2 are considerably rarer, having been manufactured before 2009. In most cases, installing BootMii as IOS should be fine, as long as you also install [Priiloader](priiloader). +BootMii can be installed in two ways: directly to a part of the Wii bootloader called boot2, and via an IOS. BootMii under boot2 is preferred as it provides extended brick protection, but Wiis with a vulnerable boot1 that allows this installation are considerably rarer, having been manufactured before 2009. In most cases, installing BootMii as IOS should be fine, as long as you also install [Priiloader](priiloader). {: .notice--info} If you do not have an SD card, you cannot install nor use BootMii, and therefore will not be able to utilize any of the mentioned benefits.
You can always [install it at a later date](hackmii). diff --git a/_pages/tr_TR/modmii.md b/_pages/tr_TR/modmii.md index b444a86b7..3c62041d1 100644 --- a/_pages/tr_TR/modmii.md +++ b/_pages/tr_TR/modmii.md @@ -4,116 +4,190 @@ title: "ModMii" {% include toc title="Table of Contents" %} -If you need help for anything regarding this tutorial, please join [the ModMii Discord server](https://discord.gg/cMnBRACQwQ). -{: .notice--info} - This Program does NOT come with a warranty, so you are responsible for any potential damage done to your Wii. {: .notice--warning} This program is NOT intended to be used for the vWii or the Wii mini. Some tools may or may not work for these platforms. {: .notice--warning} -/images/Modmii/modmii.png +ModMii is an all-in-one Wii hacking tool for Windows created by XFlak that has various helpful tools for modding. It can accomplish the following: -Some advanced options may not be accessible in ModMii Skin. A list of the various activities for ModMii Classic can be found at the bottom of the page. -{: .notice--info} ++ Hacking the console for the first time, or re-hacking it ++ Check for and update outdated softmods ++ Fix upside-down Homebrew Channel problems ++ Run homebrew without making any changes to your Wii's NAND ++ Download homebrew ++ And more! -### Requirements +### ModMii Overview + +There are two different ways to use ModMii. There is ModMii Classic, which uses a command line interface, but has all of the features available to the program. ModMii Skin has a graphical user interface, on the other hand, but has less options available to the user. If you're looking to simply mod your Wii for the first time, ModMii Skin should suffice. Otherwise, we reccomend using ModMii Classic where possible.
The chart below will help you determine what can be done in either interface. + +| Tools | ModMii Classic | ModMii Skin | +| -------------------------- | -------------- | ----------- | +| ModMii Wizard | ✅ | ✅ | +| SysCheck Updater Wizard | ✅ | ⛔ | +| USB Loader Setup Wizard | ✅ | ✅ | +| HackMii Solutions Wizard | ✅ | ✅ | +| Abstinence Wizard | ✅ | ✅ | +| Region Change Wizard | ✅ | ✅ | +| SNEEK/EmuNAND Installation | ✅ | ✅ | +| Open File Function | ✅ | ⛔ | +| Load Download Queue | ✅ | ✅ | +| Download Page 1/2/3/4 | ✅ | ⛔ | +| Advanced Downloads | ✅ | ⛔ | +| Load Download Queue | ✅ | ⛔ | +| Build Config Files | ✅ | ⛔ | +| File Cleanup & App Updater | ✅ | ⛔ | + +
+Click here for a detailed explanation of each tool. + +| Tool | Description | +| --------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| W = ModMii Wizard <-- Start Here to Mod Your Wii! | This option can be used to hack your Wii for the first time or re-hack a Wii that has been previously modded. | +| SU = SysCheck Updater Wizard (update only your outdated softmods) | This option checks for and updates old modifications installed to their wii such as DarkCorp/CIOSSPAGHETTI that can potentially cause problems for the latest homebrew custom firmware. | +| U = USB-Loader Setup Wizard | This option will properly set up your USB loader to be able to load your disk backups from an SD or USB hard drive. This option is not necessary if using the ModMii Wizard. | +| H = HackMii Solutions Wizard (Upside-Down HBC\No Vulnerable IOS Fix) | This option is useful for people who are having trouble getting the HackMii Installer to work or have an upside down homebrew channel. | +| AW = Abstinence Wizard (Non-permanent Wii Hacks) | This option allows you to run homebrew on your Wii without making any permanent modifications to the system NAND. | +| RC = Region Change Wizard | This option can be used to change the region of your Wii without bricking it, and is arguably the best region changing wizard on the internet. | +| S = SNEEK Installation, EmuNAND Builder\Modifier, Game Bulk Extractor | This option will help you properly set up an EmuNAND (aka neek2o) onto your SD or USB. Benefits for EmuNAND include extra storage space for save games or channels, as well as running homebrew without making any permanent modifications to the system NAND. | +| F = open a File or Folder with ModMii for many more functions! | This option is an advanced tool especially helpful for developers. | +| 1 = Download Page 1 (System Menus, IOSs, MIOSs, Channels, etc.) | This option opens the first download page that includes most of the key parts of the Wii System Menu (downloaded from NUS). | +| 2 = Download Page 2 (Apps, USB-Loader Files, CheatCodes, etc.) | This option opens the second download page that includes exploits and useful apps for your Wii including some PC programs. | +| 3 = Download Page 3 (System Menu Themes) | This option opens the third download page that includes some system menu themes and items required to install system menu themes (base apps are downloaded from NUS). | +| 4 = Download Page 4 (cIOSs and cMIOSs) | This option opens the fourth download page that includes cIOSes and cMIOSes for use in USB loaders. | +| A = Advanced Downloads and Forwarder DOL\ISO Builder | This option allows you to download any IOS and cIOS and build custom DOL/ISO forwarders. Intended for advanced users only. | +| L = Load Download Queue | This option loads bundled or previously saved download queues. | +| C = Build Config Files for Bootmii, Wad Manager or Multi-Mod Manager | This option allows you to build customized config files for BootMii, Wad Manager, and Multi-Mod Manager. | +| FC = File Cleanup & App Updater: Update Apps and\or remove un-needed files | This option removes unnessecary files from your SD Card or Hard Drive after finishing softmodding your Wii. | + +

+ +When using ModMii, it is important to note that it will generate a custom guide for you depending on the options that you select. For this reason, this guide will not be focused on how to mod your Wii, as ModMii handles that function. Instead, it will be a quick start guide show you how to effectively use it with the most common options. + +### Installing ModMii + +#### Requirements * A Wii * A USB drive or SD Card * A Windows PC (a Virtual Machine will work) * [ModMii](https://modmii.github.io/) -This is a quick start guide on how to use ModMii on your Windows PC. +#### Installation -### ModMii Wizard +1. Go to the [ModMii website](https://modmii.github.io) and scroll down to the Download section. Here, select the `Installer` option. Your browser may flag the installer as malware, but it is a **false positive**. -You can use the ModMii wizard to softmod any Wii.
Even if the Wii has been softmodded in the past, you can have ModMii overwrite existing softmods by telling ModMii that this is the first time you're modding your Wii (even though it's not). + ![](/images/modmii/modmii-download.png) -You can also use this wizard to set up a USB loader at the same time, instead of having to use the USB Loader setup wizard later on. +2. Open the `ModMiiInstaller.exe` file and go through the setup process. + + ![](/images/modmii/modmii-install.png) + +### Using the ModMii Wizard + +The ModMii Wizard is tool that can softmod your Wii from start to finish, downloading all necessary files and then generating a guide that you can use to implement the softmod. This tool can also be used to overwrite existing softmods on a previously softmodded Wii. + +1. Open ModMii Skin or ModMii Classic and select the ModMii Wizard option at the top of the list. + + ![](/images/modmii/modmii-wizard-1.png) + +1. Answer `Yes` to the first question, unless you have a very specific idea of what you would like to do or update to your Wii. + + ![](/images/modmii/modmii-wizard-2.png) + +1. Select your current System Menu version, followed by the System Menu Region, following the instructions in the program. If you are still confused, check the bottom option on each screen for an instructional video. + + ![](/images/modmii/modmii-wizard-3.png) + +1. Select the exploit you would like to use to mod your Wii. The exploits below are outlined throughout this website, but in most cases we would reccommend using Wilbrand if you have an SD card on hand. + + ![](/images/modmii/modmii-wizard-4.png) + +1. If you selected the Wilbrand option in the previous step, enter your Wii's MAC address. If you don't know how to check your Wii's MAC address, enter `Help` in the text box for an instructional video. + + ![](/images/modmii/modmii-wizard-5.png) + +1. Select your desired System Menu version from the list. + + ![](/images/modmii/modmii-wizard-6.png) + +1. Select whether or not you would like to install any of the listed channels - this is an optional step. + + ![](/images/modmii/modmii-wizard-7.png) + +1. Select whether or not you would like to install a custom Wii theme, with the choice of three theme effects. Each effect deals with how much the outline when hovering over a Wii Channel spins. + + ![](/images/modmii/modmii-wizard-8.png) + +1. Select whether or not you would like to set up a USB Loader for use with your Wii. + + ![](/images/modmii/modmii-wizard-9.png) + +1. If you selected `Yes` in the USB Loader menu, select which USB Loader you would like to use. If you choose an individual one, we reccomend either USB Loader GX or WiiFlow as both are covered on this website, or you may optionally download each option. + + ![](/images/modmii/modmii-wizard-10.png) + +1. If you selected `Yes` in the USB Loader menu, select where you would like to save your USB Loader files at. + + ![](/images/modmii/modmii-wizard-11.png) + +1. Verify where you would like to save files for your SD Card and/or USB Drive. + + ![](/images/modmii/modmii-wizard-12.png) + +1. Confirm your settings are correct, and then press `Finish`. Once you press the button, ModMii will begin to process and download files in the background, and will automatically generate and open a guide for you. From here, you should follow the guide generated by ModMii. + + ![](/images/modmii/modmii-wizard-13.png) ### SysCheck Updater Wizard -[SysCheck](syscheck) is a homebrew application that analyzes the modifications on a Wii.
You can give a SysCheck report to ModMii to help identify & update outdated mods. +The SysCheck Updater Wizard is a tool that utilizes the homebrew app [SysCheck](syscheck) to analyze any modifications on your Wii, especially IOS and cIOS. It accepts a `syscheck.csv` file generated by the app, and then provides any nessecary updates as needed. -You can have ModMii analyze a SysCheck by dragging the `syscheck.csv` file onto ModMii.exe. Or, you can launch the SysCheck Updater Wizard (`SU`) from ModMii's main menu and manually browse for the file. +1. Open ModMii Classic and enter in `SU` to open the SysCheck Updater Wizard. + + ![](/images/modmii/syscheck-wizard-1.png) + +1. Follow the instructions in the window if you don't already have a SysCheck log, and then drag and drop the `syscheck.csv` file from Windows Explorer into the window. This will paste the location of the file, from which you can press Enter. + + ![](/images/modmii/syscheck-wizard-2.png) + +1. The program will analyze your SysCheck file, and will provide options for you depending on what it sees. In this example instance, the mods on the Wii were up-to-date, but there were several unnecessary IOSes that could be stubbed. If you want to make these changes to your Wii, simply enter in `Y` and press Enter. From here, you should follow the guide generated by ModMii. + + ![](/images/modmii/syscheck-wizard-3.png) ### HackMii Solutions Wizard -The HackMii Solutions wizard can help fix symptoms like these: +The HackMii Solutions Wizard is a tool that fixes problems that may arise from things like Darkcorp/CIOSSPAGHETTI by installing clean IOSes. Examples of problems that may arise because of this are listed below: + HackMii Installer not prompting "Press (1) to continue" -+ HackMii Installer says "no vulnerable IOS found!" -+ Homebrew Channel is displaying upside-down ++ HackMii Installer saying "no vulnerable IOS found!" ++ Homebrew Channel displaying upside-down -It will install clean IOSs to allow for the HackMii Installer to operate properly. +1. Open ModMii Skin or ModMii Classic and select the HackMii Solutions option. -### Abstinence Wizard + ![](/images/modmii/hackmii-wizard-1.png) -This wizard requires an SD card. -{: .notice--warning} +1. Select your current System Menu version, followed by the System Menu Region, following the instructions in the program. If you are still confused, check the bottom option on each screen for an instructional video. -This wizard allows you to enjoy many of the benefits of a softmodded Wii without installing any permanent modifications to your Wii. It will allow you to launch an exploit to boot an from emulated NAND from external storage, instead of your Wii's internal NAND. + ![](/images/modmii/hackmii-wizard-2.png) -On a related note, you can also make a NAND backup without modifying your Wii at all. Find ModMii's "Support" folder and launch `Casper2BootMii.bat`.
It will save some files to a folder named `COPY_TO_SD`, copy the files inside it to your SD card and [launch an exploit](get-started). +1. Select the exploit you would like to use to mod your Wii. The exploits below are outlined throughout this website, but in most cases we would reccommend using Wilbrand if you have an SD card on hand. -When following one of the exploit guides above, please avoid replacing the `boot.elf` file. -{: .notice--warning} + ![](/images/modmii/hackmii-wizard-3.png) +1. If you selected the Wilbrand option in the previous step, enter your Wii's MAC address. If you don't know how to check your Wii's MAC address, enter `Help` in the text box for an instructional video. -
-Click here for a full list of available tools. + ![](/images/modmii/hackmii-wizard-4.png) -| Tool | Description | -| --------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| W = ModMii Wizard <-- Start Here to Mod Your Wii! | This option can be used to mod your Wii for the first time or re-mod a Wii that has been previously modded. | -| SU = SysCheck Updater Wizard (update only your outdated softmods) | This option is useful for people who have old modifications installed to their wii such as DarkCorp/Ciosspaghetti that can potetially cause problems for the latest homebrew custom firmware. | -| U = USB-Loader Setup Wizard | This option will help you properly set up your USB loader to be able to load your disk backups from an SD or USB hard drive. | -| H = HackMii Solutions Wizard (Upside-Down HBC\No Vulnerable IOS Fix) | This option is useful for people who are having trouble getting the HackMii Installer to work, or if they just simply have an upside down homebrew channel, or if DarkCorp/Ciosspaghetti was installed and there was no homebrew channel. | -| AW = Abstinence Wizard (Non-permanent Wii Hacks) | This option is useful for people who dont want to make any permanent modifications to their Wii but still want to have some of the benefits that homebrew can offer. | -| RC = Region Change Wizard | This option can be used to change the region of your Wii without bricking it (this is the best region changer tutorial available on the internet!). | -| S = SNEEK Installation, EmuNAND Builder\Modifier, Game Bulk Extractor | This option will help you properly set up an EmuNAND (aka neek2o) onto your SD or USB. benefits for emunand include extra storage space for save games or channels. and the benefit of not making any permanent modifications to your Wii. | -| F = open a File or Folder with ModMii for many more functions! | This option is an advanced tool especially helpful for developers. | -| 1 = Download Page 1 (System Menus, IOSs, MIOSs, Channels, etc.) | This option opens the first download page that includes most of the key parts for the system menu (downloaded from NUS). | -| 2 = Download Page 2 (Apps, USB-Loader Files, CheatCodes, etc.) | This option opens the second download page that includes exploits and useful apps for your Wii including some PC programs. | -| 3 = Download Page 3 (System Menu Themes) | This option opens the third download page that includes some system menu themes and items required to install system menu themes (base apps are downloaded from NUS). | -| 4 = Download Page 4 (cIOSs and cMIOSs) | This option opens the fourth download page that includes cIOSes and cMIOSes for use in USB loaders. It is recommended to just install the recommended cioses unless you plan to do some testing. | -| A = Advanced Downloads and Forwarder DOL\ISO Builder | This option is an advanced tool used to better customize downloads or allow you to build a dol executable useful for fowarders (channels on the system menu to access Wii applications). | -| L = Load Download Queue | This option will download all of the required titles need for the Wii system menu (titles are downloaded from NUS) | -| C = Build Config Files for Bootmii, Wad Manager or Multi-Mod Manager | This option will help you build configuration files required for certain applications. | -| FC = File Cleanup & App Updater: Update Apps and\or remove un-needed files | This option is useful for people who want to clean out their SD or USB of apps deemed outdated, useless, or otherwise depreciated. | -| M = ModMii Skin Mode: use your mouse instead of your keyboard! | This option will launch ModMii skin mode. Some advanced options may not be available in this view. | +1. Verify where you would like to save files for your SD Card and/or USB Drive. -
+ ![](/images/modmii/modmii-wizard-12.png) -
-Click here for a full list of available options. +1. Confirm your settings are correct, and then press `Finish`. Once you press the button, ModMii will begin to process and download files in the background, and will automatically generate and open a guide for you. From here, you should follow the guide generated by ModMii. After finishing this guide, it is recommended that you use the [SysCheck Updater Wizard](#syscheck-updater-wizard) to undo any other problematic modifications on your Wii. -| Option | Description | -| ---------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| D = Change Drive letter: | Changes where your SD files are saved to. | -| DU = Change Drive letter for USB: | Changes where your USB files are saved to. | -| d2x = change d2x cIOS version built: | Changes the cios version ModMii downloads. | -| H = Hermes cIOSs (202 & 222-224) will also be recommended | Enables Hermes IOS to be recommended and downloaded in the syscheck updater (will be stubbed if disabled). | -| CM = cMIOS included in recommended cIOSs | Enables cMIOS to be recommended and downloaded in the syscheck updater (will install stock MIOS if disabled). | -| E = Extra Brick Protection in ModMii Wizard Guides | Enables ModMiis Extra Brick Protection IOSes to be recommended and used in the syscheck updater tool. | -| U = Update IOSs. Wizard/SysCheck-Updater to update Active IOSs | Updates Existing IOSes to the latest version available on NUS. | -| AU = Auto-Updating downloads will skip update check if cached | Will skip downloading the files if already in the queue. | -| FWD = Install USB-Loader Forwarder in ModMii Wizard Guides | Will include the USB loader forwarder wad file in the USB loader wizard guides. | -| PC = PC Programs Save Location | Changes the save location for the downloadable PC programs. | -| RS = Root Save: Save IOSs\MIOSs to Root instead of WAD Folder | Saves IOSs\MIOSs to Root instead of WAD Folder. | -| 1 = Do not Keep 00000001 or NUS Folders for IOSs\MIOSs\SMs etc | Deletes the folder used for compiling the wad file and just gives you the wad file. | -| n2o = neek2o - build mod of s\uneek instead of original | Uses a better modified version of neek2o in the EmuNAND builder. | -| SSD = SNEEK and SNEEK+DI SD Access | Allows for SNEEK and SNEEK+DI access on the SD card. | -| F = Font.bin Colour for SNEEK/UNEEK | Changes the font color for neek2o. | -| SV = SNEEK Verbose Output | Displays extra information regarding EmuNAND. | -| V = Verbose for ModMii Skin & nandBinCheck | Displays another window with extra information regarding a nand check. | -| SO = Play sound at Finish | Plays a fun jingle after a successful download. | -| A = Auto-Update ModMii at program start | Will automatically check for updates when ModMii is launched. | -| N = Check for New versions of ModMii right now | Will check online for a ModMii update. | - -
+ ![](/images/modmii/hackmii-wizard-5.png) [Click here to go back to the site index.](site-navigation) {: .notice--info} diff --git a/_pages/tr_TR/nintendont.md b/_pages/tr_TR/nintendont.md new file mode 100644 index 000000000..d7eef1b3f --- /dev/null +++ b/_pages/tr_TR/nintendont.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="410.html" %} diff --git a/_pages/tr_TR/recommended-homebrew.md b/_pages/tr_TR/recommended-homebrew.md index b2bada15a..2d3869c77 100644 --- a/_pages/tr_TR/recommended-homebrew.md +++ b/_pages/tr_TR/recommended-homebrew.md @@ -16,7 +16,7 @@ Homebrew that has the ability to make permanant changes to your Wii are highligh + [**AnyRegion Changer ME**](https://oscwii.org/library/app/ARCME) - ModMii edition of AnyRegion Changer. While a powerful tool for changing region settings, it can also lead to severe bricks like [Korean Kii/Error 003](bricks#korean-kiierror-003-brick) so **only use this app if you know what you are doing**. + [**WiiXplorer-SS**](https://oscwii.org/library/app/wiixplorer-ss) - A modified and updated version of WiiXplorer. A file manager for the Wii, it allows you to view and customize files both on an SD card, a USB device, and the internal Wii memory. For this reason it is a very powerful but also dangerous tool - don't modify files on the system NAND unless you know what you are doing, as it can lead to various types of [bricks](bricks). + [**SaveGame Manager GX**](https://oscwii.org/library/app/SaveGame_Manager_GX) - A savegame/Mii extractor for the Wii. It supports GameCube memory cards (physical and virtual), emuNANDs, normal and protected saves, themes, and more. -+ [**MyMenuifyMod**](https://oscwii.org/library/app/mymenuifymod) - An application that allows you to theme the Wii Menu. While quite useful to make your Wii unique, it also has the ability to cause a [minor brick](bricks#theme-brick), so make sure to read our [theme guide](themes) for safe usage instructions. ++ [**csm-installer**](https://oscwii.org/library/app/csm-installer) - An application that allows you to theme the Wii Menu. While quite useful to make your Wii unique, it also has the ability to cause a [minor brick](bricks#theme-brick), so make sure to read our [theme guide](themes) for safe usage instructions. + [CleanRip](https://oscwii.org/library/app/CleanRip) - A tool to backup GameCube and Wii discs. Further information can be found in our [disc dumping guide](dump-games). + [**d2x cIOS installer**](https://oscwii.org/library/app/d2x-cios-installer) - A custom installer for Wii IOS, some of which is required for the functioning of certain software like USB loaders. You can see the guide [here](cios). + [FTPii](https://oscwii.org/library/app/ftpii) - An FTP server for your Wii, allowing you to transfer files across the network. diff --git a/_pages/tr_TR/riiconnect24.md b/_pages/tr_TR/riiconnect24.md index d57dfafad..d1e91b7e8 100644 --- a/_pages/tr_TR/riiconnect24.md +++ b/_pages/tr_TR/riiconnect24.md @@ -1,138 +1,5 @@ --- -title: "RiiConnect24" +title: Redirecting... --- -{% include toc title="Table of Contents" %} - -If you need help with anything regarding this tutorial, please join [the RiiConnect24 Discord server](https://discord.gg/rc24) (recommended) or [e-mail us at support@riiconnect24.net](mailto:support@riiconnect24.net). -{: .notice--primary} - -[RiiConnect24](https://rc24.xyz/) allows you to use discontinued services from WiiConnect24, which include the News, Forecast, Everybody Votes, Nintendo and Check Mii Out Channel, along with Wii Mail. - -It's recommended to set your Wii to the current time before proceeding. Follow [this tutorial](rtc) in order to set it. -{: .notice--warning} - -DO NOT INSTALL RIICONNECT24 ON A WII MINI! It will not work and it will brick the system. -{: .notice--danger} - -### Requirements - -Follow [this tutorial](riiconnect24-vwii) if you'd like to install RiiConnect24 on vWii (Wii Mode on Wii U). -{: .notice--primary} - -+ An SD card or USB drive -+ A Wii with an Internet connection -+ A PC with an Internet connection -+ [RiiConnect24 Patcher (Windows, Mac and Linux)](https://github.com/riiconnect24/RiiConnect24-Patcher/releases) -+ [YAWM ModMii Edition](https://oscwii.org/library/app/yawmme) - -### Instructions - -#### Section I - Using RiiConnect24 Patcher - -1. Click the link above to go to the GitHub page where the patcher is. -1. Download `RiiConnect24Patcher.bat` if you are on Windows, and `RiiConnect24Patcher.sh` if you are on a Unix system -1. RiiConnect24 Patcher Main Screen - + On Windows run `RiiConnect24Patcher.bat`. - + On Unix systems, open Terminal and type `bash`, then drag `RiiConnect24Patcher.sh` into the terminal then press enter. It should look like this: `bash RiiConnect24Patcher.sh`. -1. Press 1 to choose "`Start`" and confirm your selection by pressing `ENTER`. - - ![](/images/riiconnect24/patcher/1.JPG) - -1. Select the device you're patching for. - - ![](/images/riiconnect24/patcher/2.JPG) - -1. For this guide, choose "`Install RiiConnect24 on your Wii`" - - ![](/images/riiconnect24/patcher/3.JPG) - -1. Choose "`Express (Recommended)`". It will give you everything you need. - - ![](/images/riiconnect24/patcher/4.JPG) - -1. Select your region. - - ![](/images/riiconnect24/patcher/5.JPG) - -1. While you're at it, RiiConnect24 Patcher can additionally download some other optional channels that do not use RiiConnect24. `[X]` represents the options that selected. Just press 5 and `ENTER` if you're not interested. - - ![](/images/riiconnect24/patcher/6.JPG) - -1. Connect your SD Card or USB Drive to your computer and select "`1`". - - ![](/images/riiconnect24/patcher/7.JPG) - -1. If your device was detected successfully, select "`1`". If not, make sure there's a folder called `apps` on your SD Card or USB Drive and try again. - - ![](/images/riiconnect24/patcher/8.JPG) - -1. The patcher will download apps now - please be patient. - - ![](/images/riiconnect24/patcher/9.JPG) - -1. Once you reach the screen that says `Patching done`, you can exit the patcher. All the files should already be on your SD Card. - - ![](/images/riiconnect24/patcher/10.JPG) - - ![](/images/riiconnect24/patcher/11.PNG) - -1. If it did not copy everything automatically to your SD Card or USB Device, copy the `WAD` and `apps` folder next to `RiiConnect24Patcher.bat` to your SD Card or USB Device. - -#### Section II - Installing WADs - -If you are using Dolphin, you have finished the guide. Install the WADs by going to `Tools -> Install WAD` within Dolphin. -{: .notice--primary} - -You will now install the patched IOS and Channel WADs that are required to use RiiConnect24. - -1. Extract the YAWM ModMii Edition `.zip` file, and copy the `apps` folder to your SD card or USB drive. -1. Put your SD card or USB drive in your Wii. -1. Launch the Homebrew Channel on your Wii. -1. Launch YAWM ModMii Edition. -1. Select the device you have put the RiiConnect24 files on. -1. Highlight all the WADs in the `wad` folder by pressing the + Button to select them. When all of the WADs are selected, press A twice to install the WADs. -1. After they are successfully installed, press the HOME Button to exit back to the Homebrew Channel. - -#### Section III - Patching nwc24msg.cfg - -You will now patch your `nwc24msg.cfg` file which is required in order to use Wii Mail. - -1. Launch RiiConnect24 Mail Patcher. -1. It should only take a few seconds to patch your nwc24msg.cfg. When it's done, press the HOME Button to exit. - -#### Section IV - Connecting - -The old DNS server `164.132.44.106` has been deprecated as of `June 1st, 2023` and is no longer available to use. -{: .notice--warning} - -If you're getting errors such as `WiiConnect24 and Wii Shop Channel currently not being offered in your country`, go to Wii Settings -> Last Page -> Country and change it to United Kingdom. You will get this error when using a country that we don't support. Contact us at [support@riiconnect24.net](mailto:support@riiconnect24.net) if you need more help. -{: .notice--warning} - -If you get error 107245, then you have not installed the patched IOS.
-{: .notice--warning} - -You will now set your DNS to our servers. This is optional but it's recommended, because it enhances the use of RiiConnect24 and Wiimmfi by making some other features available. - -1. Go to `Wii Options`. -1. Go to `Wii Settings`. -1. Go to `Page 2`, then click on `Internet`. -1. Go to `Connection Settings`. -1. Select your current connection. -1. Go to `Change Settings`. -1. Go to `Auto-Obtain DNS` (Not IP Address), then select `No`, then `Advanced Settings`. -1. Type in `167.86.108.126` as the primary DNS. -1. Type in `1.1.1.1` as the secondary DNS. -1. Select `Confirm`, then select `Save`. -1. Select `OK` to perform a connection test. -1. If the connection test was successful, select `No` to skip the Wii System Update. -1. Go to `WiiConnect24`, then `WiiConnect24` again, and make sure it is enabled. -1. Back on the WiiConnect24 menu, go to `Standby Connection` and make sure it is enabled. -1. At `Slot Illumination`, we recommend you set the disc light to `Dim` or `Bright`, but this is optional. -1. Finally, go to the `Internet` section, then `User Agreements` or `Agreement/Contact`, then `Yes`. Please read through this. - -[Return to WiiConnect24](wiiconnect24) -{: .notice--info} - -[Click here to go back to the site index.](site-navigation) -{: .notice--info} +{% include redirect.html redirect_to="https\://www\.wiilink24.com/guide/install/" %} diff --git a/_pages/tr_TR/riitag.md b/_pages/tr_TR/riitag.md new file mode 100644 index 000000000..e6b6bc322 --- /dev/null +++ b/_pages/tr_TR/riitag.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="https\://wiki.hacks.guide/wiki/RiiTag" %} diff --git a/_pages/tr_TR/riivolution.md b/_pages/tr_TR/riivolution.md new file mode 100644 index 000000000..d7eef1b3f --- /dev/null +++ b/_pages/tr_TR/riivolution.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="410.html" %} diff --git a/_pages/tr_TR/themes.md b/_pages/tr_TR/themes.md index 79948130e..c38cfe210 100644 --- a/_pages/tr_TR/themes.md +++ b/_pages/tr_TR/themes.md @@ -4,13 +4,16 @@ title: "Installing Wii Menu Themes" {% include toc title="Table of Contents" %} -This guide is intended for regular Wiis only. For installing themes on vWii (Wii U), follow [this page](themes-vwii). Additionally, forwarders are covered. +This guide is intended to be the last you will ever need when it comes to theming on the Wii, not only providing instructions for the Wii Menu through csm-installer, but also with themes on WiiFlow Lite, USB Loader GX, and The Homebrew Channel. Additionally, forwarders are covered. ### Section I - Finding a Theme DO NOT CONTINUE WITH THIS GUIDE UNLESS YOU HAVE ADEQUATE BRICK PROTECTION, SPECIFICALLY [BOOTMII](bootmii) AND [PRIILOADER](priiloader)! {: .notice--danger} +This tutorial does not work on the Wii mini. Do not attempt this tutorial on the Wii mini or it will cause a [brick](bricks#theme-brick). +{: .notice--warning} + csm-installer has built in safety features to prevent from installing bad or corrupt Wii Menu themes, so please opt to use it instead of other theme installation homebrew. {: .notice--warning} diff --git a/_pages/tr_TR/usbloadergx.md b/_pages/tr_TR/usbloadergx.md new file mode 100644 index 000000000..00a63864a --- /dev/null +++ b/_pages/tr_TR/usbloadergx.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-loaders.html" %} diff --git a/_pages/tr_TR/wiibackupmanager.md b/_pages/tr_TR/wiibackupmanager.md new file mode 100644 index 000000000..063d7bba0 --- /dev/null +++ b/_pages/tr_TR/wiibackupmanager.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-backups.html" %} diff --git a/_pages/tr_TR/wiiconnect24.md b/_pages/tr_TR/wiiconnect24.md index 894f24c37..ad0a4b6fc 100644 --- a/_pages/tr_TR/wiiconnect24.md +++ b/_pages/tr_TR/wiiconnect24.md @@ -3,44 +3,21 @@ title: "WiiConnect24" --- {% include toc title="Table of Contents" %} + -This guide provides different means of regaining WiiConnect24 functionality on your console. Although not at all nessecary, it is a "nice to have" feature that was originally used for online connectivity in certain applications on the console. These apps include the Forecast/News Channel, Nintendo Channel, Check Mii Out Channel, some Japan-exclusive channels, and more. Please bear in mind, the functionality you gain depends entirely on what service(s) you use. +[WiiConnect24](https://wikipedia.org/wiki/WiiConnect24) was a service that allowed users with Internet connected Wiis to view the weather & local news, send messages to friends, participate in Mii contest, and more. WiiConnect24 was discontinued on June 27th, 2013. -### Service Overview +## RiiConnect24 + WiiLink +[RiiConnect24](https://rc24.xyz) is a revival service for WiiConnect24 that started in 2015, which allows you to regain its functionality on your console. As of late 2023, the service is now owned by WiiLink, a project that started in 2020 that was previously aiming at the Japanese-exclusive channels. -#### Note about service compatibility: -Both services listed below are compatible with one another and can be loaded on the same console. With this said, it should be noted that when installing one channel over the other (WiiLink's Forecast Channel over RiiConnect24's Forecast Channel for example), the channel you are installing will overwrite the old one. - - -#### Service Support Status -✅ - In support
⚠️ - In development
⛔ - No support - -| Service Name | WiiLink | RiiConnect24 | -| ----------------------- | ------- | ------------ | -| Forecast Channel | ✅ | ✅ | -| News Channel | ⚠️ | ✅ | -| Wii Mail | ✅ | ✅ | -| Everybody Votes Channel | ✅ | ✅ | -| Nintendo Channel | ✅ | ✅ | -| Check Mii Out Channel | ⚠️ | ✅ | -| Wii Room | ✅ | ⛔ | -| Food Channel | ✅ | ⛔ | -| Photo Prints Channel | ✅ | ⛔ | -| Kirby TV Channel | ✅ | ⛔ | -| TV Guide Channel | ⚠️ | ⛔ | - -#### WiiLink -A newer WC24/Japanese channel revival service that started in 2020, but is rapidly regaining functionality in many different channels. - -Service support status can be found [here](https://www.wiilink24.com/status).
Their guide can be found [here](https://www.wiilink24.com/guide). - -#### RiiConnect24 -The longest lasting WC24 revival service, currently only with support for the worldwide WC24 channels as well as mail services. - -Service support status can be found [here](https://rc24.xyz/stats/).
RiiConnect24 currently does not have a self-hosted guide, however you can find ours [here](riiconnect24). +There is a patcher that ships both of these services together as one - meaning you get all of the international and Japanese-only channels in one package. The guide on how to install these services can be found [on WiiLink's website.](https://www.wiilink24.com/guide/) + ### Updating RTC Clock -If you choose to install either of these services on your Wii, it is advised to synchronize its external clock in order to prevent various issues (such as inability to use said services) that may arise otherwise. The steps to do so can be found below: #### What you need + A working Internet connection on your Wii diff --git a/_pages/tr_TR/wiiflow.md b/_pages/tr_TR/wiiflow.md new file mode 100644 index 000000000..00a63864a --- /dev/null +++ b/_pages/tr_TR/wiiflow.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-loaders.html" %} diff --git a/_pages/zh_CN/410.md b/_pages/zh_CN/410.md new file mode 100644 index 000000000..21f077b23 --- /dev/null +++ b/_pages/zh_CN/410.md @@ -0,0 +1,12 @@ +--- +title: Page no longer exists +sitemap: false +--- + +The page you are trying to view used to exist, but it has since been removed. Maybe the instructions you are following are outdated? (If you got here from a link on this guide, [let us know](https://github.com/hacks-guide/Guide_Wii/issues)) + +[Click here to go back to the site index.](site-navigation) +{: .notice--info} + +![](https://http.cat/410) +{: .notice--info} diff --git a/_pages/zh_CN/bootmii.md b/_pages/zh_CN/bootmii.md index 823f7d9b2..9b70a5a67 100644 --- a/_pages/zh_CN/bootmii.md +++ b/_pages/zh_CN/bootmii.md @@ -6,21 +6,9 @@ title: "BootMii 备份" 你需要一张**SD卡**才能使用BootMii创建NAND备份。 如果没有,可以跳过此页,但强烈建议您创建NAND备份。 -Family edition Wiis (Wiis without GameCube ports) CANNOT restore NAND backups. This is because of the lack of GameCube ports which are required on non-boot2 Wiis to enter the restoration confirmation code. Regardless, it is still recommended to make one on these consoles. -{: .notice--danger} - You need an **SD card** to use BootMii at all, but especially to create a NAND backup. If you do not have an SD card on hand right now, you can skip this page, but it is HIGHLY RECOMMENDED to return to this page later to back up your NAND. {: .notice--warning} -无法使用 Wii 遥控器控制 BootMii。 您必须使用主机上的 POWER 和 RESET 按钮,或第 1 个口的 GameCube 手柄。 要在选项之间移动,请按 Wii 的 POWER 按钮(或 GameCube 手柄的左右方向键)。 要选择选项,请按 Wii 的 RESET 按钮或 GameCube 手柄的 A。 BootMii 最重要的功能之一是备份和恢复 Wii 的 NAND 存储。 我们将学习如何制作NAND备份。 无论什么原因,您都可以从该备份还原。 -{: .notice--info} - -如果没有出现 `Launch BootMii` 按钮,请 [重新启动 HackMii Installer](hackmii) 并安装 BootMii。 -{: .notice--warning} - -如果一直黑屏且光驱的蓝灯闪烁,说明您的 SD 卡上缺少 BootMii 文件。 下载 [此 zip 文件](https://static.hackmii.com/bootmii_sd_files.zip) 并将其解压到 SD 卡的根目录,然后再次尝试。 -{: .notice--warning} - ### 需要 * 一张至少有512MB空间的SD卡。 @@ -36,10 +24,19 @@ You need an **SD card** to use BootMii at all, but especially to create a NAND b ![](/images/bootmii/BootMii_HBC.png) + 如果没有出现 `Launch BootMii` 按钮,请 [重新启动 HackMii Installer](hackmii) 并安装 BootMii。 + {: .notice--warning} + + 如果一直黑屏且光驱的蓝灯闪烁,说明您的 SD 卡上缺少 BootMii 文件。 下载 [此 zip 文件](https://static.hackmii.com/bootmii_sd_files.zip) 并将其解压到 SD 卡的根目录,然后再次尝试。 + {: .notice--warning} + 1. You should see an image similar to the below now on your screen: ![](/images/bootmii/BootMii_Main.png) + 无法使用 Wii 遥控器控制 BootMii。 您必须使用主机上的 POWER 和 RESET 按钮,或第 1 个口的 GameCube 手柄。 To navigate between options, press POWER. To select an option, press RESET. + {: .notice--info} + 1. 选择选项按钮(带齿轮图标的按钮)。 ![](/images/bootmii/BootMii_Gears.png) @@ -65,7 +62,7 @@ You need an **SD card** to use BootMii at all, but especially to create a NAND b
请注意,还原 NAND 备份通常是不得已而为之,通常有更好的办法来修复您的问题。 There often better ways to unbrick your console. 请尽力[确定您的变砖情况](bricks)并撤销导致问题的操作。 -要从 SD 卡上的 NAND 备份还原,您可以按照 [RestoreMii](bootmiirecover) 的说明进行操作。 +To restore from a NAND backup on your SD card, you can follow the instructions for [RestoreMii](bootmiirecover). **Family edition Wiis (Wiis without GameCube ports) CANNOT restore NAND backups.**
As stated earlier, if you have BootMii installed as boot2, it will launch every time you start your console. If you would like to change this, you can use the app [BootMii Config Editor](https://oscwii.org/library/app/BootMiiConfigurationEditor). Or, you can edit `sd:/bootmii/bootmii.ini` manually. diff --git a/_pages/zh_CN/bricks.md b/_pages/zh_CN/bricks.md index 060931f48..6b81dbf3c 100644 --- a/_pages/zh_CN/bricks.md +++ b/_pages/zh_CN/bricks.md @@ -111,7 +111,7 @@ Attempt to start the Wii - warning/press A screen shows up, and when A is presse Theme brick(主题砖)在安装了格式错误的主题时发生。 #### 解决方案 -要解决此问题,请通过 Priiloader 打开 HBC 并访问 MyMenuifyMod 以安装默认主题。 Alternatively, go into [YAWM ModMii Edition](yawmme) and install the CORRECT default Wii Menu WAD for your region and version. +To resolve this issue, open HBC through Priiloader or BootMii as boot2 and access csm-installer to install a default theme such as the base Wii Menu theme. Alternatively, go into [YAWM ModMii Edition](yawmme) and install the CORRECT default Wii Menu WAD for your region and version. ## Mail brick(邮件砖) diff --git a/_pages/zh_CN/cios.md b/_pages/zh_CN/cios.md index ddfea0109..e6face582 100644 --- a/_pages/zh_CN/cios.md +++ b/_pages/zh_CN/cios.md @@ -65,6 +65,12 @@ Select cIOS version: 65535 ![](/images/cios/d2x_v11_248.png) + The warning "`(c)IOS detected in slot ### will be overwriitten`" can be safely ignored. + {: .notice--info} + + If you are seeing "`Slot ### already used in batch settings`" or "`cIOS already added in batch with revision ##### and slot ###`", press `-` to disable batch mode.
(If you are trying to exit the installer, the button is B, not Home.) + {: .notice--info} + 1. Press `A`. This will bring you to the slot map: ![](/images/cios/d2x_summary.png) diff --git a/_pages/zh_CN/dosanddonts.md b/_pages/zh_CN/dosanddonts.md new file mode 100644 index 000000000..6ceed5bee --- /dev/null +++ b/_pages/zh_CN/dosanddonts.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="faq.html" %} diff --git a/_pages/zh_CN/hbc.md b/_pages/zh_CN/hbc.md index df807f828..a01f46416 100644 --- a/_pages/zh_CN/hbc.md +++ b/_pages/zh_CN/hbc.md @@ -6,7 +6,7 @@ title: "安装Homebrew Channel和BootMii" Homebrew Channel 是您启动自制应用的地方。 BootMii 是一个可以备份和恢复Wii的 NAND 存储的软件,如果安装在 boot2 中还可以提供变砖保护。 -BootMii can be installed in two ways: directly to a part of the Wii bootloader called boot2, and via an IOS. BootMii under boot2 is preferred as it provides extended brick protection, but Wiis with a vulnerable boot2 are considerably rarer, having been manufactured before 2009. 如果您无法安装 BootMii,请继续[安装 Priiloader](priiloader)。 +BootMii can be installed in two ways: directly to a part of the Wii bootloader called boot2, and via an IOS. BootMii under boot2 is preferred as it provides extended brick protection, but Wiis with a vulnerable boot1 that allows this installation are considerably rarer, having been manufactured before 2009. 如果您无法安装 BootMii,请继续[安装 Priiloader](priiloader)。 {: .notice--info} 如果您没有 SD 卡,您无法安装也不能使用 BootMii,因此也就无法享受到上述任何好处。
您可以随时[在以后安装它](hackmii)。 diff --git a/_pages/zh_CN/modmii.md b/_pages/zh_CN/modmii.md index b617ffe3b..3d0011f1a 100644 --- a/_pages/zh_CN/modmii.md +++ b/_pages/zh_CN/modmii.md @@ -4,116 +4,190 @@ title: "ModMii" {% include toc title="Table of Contents" %} -如果您需要有关本教程的任何帮助,请加入 [ModMii Discord 服务器](https://discord.gg/cMnBRACQwQ)。 -{: .notice--info} - 本程序不提供保修,因此您需要对 Wii 可能造成的损坏负责。 {: .notice--warning} 本程序不适用于 vWii 或 Wii mini。 某些工具可能适用于这些平台,也可能不适用。 {: .notice--warning} -ModMii 是由 XFlak 制作的 windows PC 程序,其中包含各种有用的修改工具,还包括一些目前在 [wii.guide](site-navigation) 网站上可能还没有的教程。
您可以选择在 ModMii skin 启动,它的用户界面更友好,也可以在 ModMii Classic 中启动,它的交互方式类似于 PC 终端或命令提示符。 +ModMii is an all-in-one Wii hacking tool for Windows created by XFlak that has various helpful tools for modding. It can accomplish the following: -在 ModMii Skin 中可能无法访问一些高级功能。 可在页面底部找到 Modmii Classic 的各种活动列表。 -{: .notice--info} ++ Hacking the console for the first time, or re-hacking it ++ Check for and update outdated softmods ++ Fix upside-down Homebrew Channel problems ++ Run homebrew without making any changes to your Wii's NAND ++ Download homebrew ++ And more! -### Requirements +### ModMii Overview + +There are two different ways to use ModMii. There is ModMii Classic, which uses a command line interface, but has all of the features available to the program. ModMii Skin has a graphical user interface, on the other hand, but has less options available to the user. If you're looking to simply mod your Wii for the first time, ModMii Skin should suffice. Otherwise, we reccomend using ModMii Classic where possible.
The chart below will help you determine what can be done in either interface. + +| Tools | ModMii Classic | ModMii Skin | +| -------------------------- | -------------- | ----------- | +| ModMii Wizard(ModMii 向导) | ✅ | ✅ | +| SysCheck Updater Wizard | ✅ | ⛔ | +| USB Loader Setup Wizard | ✅ | ✅ | +| HackMii Solutions Wizard | ✅ | ✅ | +| Abstinence Wizard | ✅ | ✅ | +| Region Change Wizard | ✅ | ✅ | +| SNEEK/EmuNAND Installation | ✅ | ✅ | +| Open File Function | ✅ | ⛔ | +| Load Download Queue | ✅ | ✅ | +| Download Page 1/2/3/4 | ✅ | ⛔ | +| Advanced Downloads | ✅ | ⛔ | +| Load Download Queue | ✅ | ⛔ | +| Build Config Files | ✅ | ⛔ | +| File Cleanup & App Updater | ✅ | ⛔ | + +
+Click here for a detailed explanation of each tool. + +| 工具 | 描述 | +| --------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| W = ModMii Wizard <-- Start Here to Mod Your Wii! | This option can be used to hack your Wii for the first time or re-hack a Wii that has been previously modded. | +| SU = SysCheck Updater Wizard (update only your outdated softmods) | This option checks for and updates old modifications installed to their wii such as DarkCorp/CIOSSPAGHETTI that can potentially cause problems for the latest homebrew custom firmware. | +| U = USB-Loader Setup Wizard | This option will properly set up your USB loader to be able to load your disk backups from an SD or USB hard drive. This option is not necessary if using the ModMii Wizard. | +| H = HackMii Solutions Wizard (Upside-Down HBC\No Vulnerable IOS Fix) | This option is useful for people who are having trouble getting the HackMii Installer to work or have an upside down homebrew channel. | +| AW = Abstinence Wizard (Non-permanent Wii Hacks) | This option allows you to run homebrew on your Wii without making any permanent modifications to the system NAND. | +| RC = Region Change Wizard | This option can be used to change the region of your Wii without bricking it, and is arguably the best region changing wizard on the internet. | +| S = SNEEK Installation, EmuNAND Builder\Modifier, Game Bulk Extractor | 此选项帮助您在 SD 或 USB 上正确设置 EmuNAND(又名 neek2o)。 Benefits for EmuNAND include extra storage space for save games or channels, as well as running homebrew without making any permanent modifications to the system NAND. | +| F = open a File or Folder with ModMii for many more functions! | 该选项是一种高级工具,对开发人员特别有用。 | +| 1 = Download Page 1 (System Menus, IOSs, MIOSs, Channels, etc.) | This option opens the first download page that includes most of the key parts of the Wii System Menu (downloaded from NUS). | +| 2 = Download Page 2 (Apps, USB-Loader Files, CheatCodes, etc.) | 此选项将打开第二个下载页面,其中包括针对 Wii 的漏洞和实用应用,包括一些 PC 程序。 | +| 3 = Download Page 3 (System Menu Themes) | 此选项将打开第三个下载页面,其中包括一些系统菜单主题和安装系统菜单主题所需的项目(从 NUS 下载基本应用)。 | +| 4 = Download Page 4 (cIOSs and cMIOSs) | 此选项将打开第四个下载页面,其中包括用于 USB loader 的 cIOS 和 cMIOS。 | +| A = Advanced Downloads and Forwarder DOL\ISO Builder | This option allows you to download any IOS and cIOS and build custom DOL/ISO forwarders. Intended for advanced users only. | +| L = Load Download Queue | This option loads bundled or previously saved download queues. | +| C = Build Config Files for Bootmii, Wad Manager or Multi-Mod Manager | This option allows you to build customized config files for BootMii, Wad Manager, and Multi-Mod Manager. | +| FC = File Cleanup & App Updater: Update Apps and\or remove un-needed files | This option removes unnessecary files from your SD Card or Hard Drive after finishing softmodding your Wii. | + +

+ +When using ModMii, it is important to note that it will generate a custom guide for you depending on the options that you select. For this reason, this guide will not be focused on how to mod your Wii, as ModMii handles that function. Instead, it will be a quick start guide show you how to effectively use it with the most common options. + +### Installing ModMii + +#### Requirements * 一台 Wii * 移动硬盘/U 盘或 SD 卡 * 一台 Windows PC(虚拟机也可以) * [ModMii](https://modmii.github.io/) -这是如何在 Windows PC 上使用 ModMii 的快速入门指南。 +#### Installation -### ModMii Wizard(ModMii 向导) +1. Go to the [ModMii website](https://modmii.github.io) and scroll down to the Download section. Here, select the `Installer` option. Your browser may flag the installer as malware, but it is a **false positive**. -您可以使用 ModMii wizard(向导)软破任何 Wii。
即使 Wii 曾经软破过,您也可以告诉 ModMii 这是您第一次软破 Wii(即使不是),从而让 ModMii 覆盖现有的软破。 + ![](/images/modmii/modmii-download.png) -您还可以使用这个向导同时设置 USB loader,而不必稍后再使用 USB loader 设置向导。 +2. Open the `ModMiiInstaller.exe` file and go through the setup process. + + ![](/images/modmii/modmii-install.png) + +### Using the ModMii Wizard + +The ModMii Wizard is tool that can softmod your Wii from start to finish, downloading all necessary files and then generating a guide that you can use to implement the softmod. This tool can also be used to overwrite existing softmods on a previously softmodded Wii. + +1. Open ModMii Skin or ModMii Classic and select the ModMii Wizard option at the top of the list. + + ![](/images/modmii/modmii-wizard-1.png) + +1. Answer `Yes` to the first question, unless you have a very specific idea of what you would like to do or update to your Wii. + + ![](/images/modmii/modmii-wizard-2.png) + +1. Select your current System Menu version, followed by the System Menu Region, following the instructions in the program. If you are still confused, check the bottom option on each screen for an instructional video. + + ![](/images/modmii/modmii-wizard-3.png) + +1. Select the exploit you would like to use to mod your Wii. The exploits below are outlined throughout this website, but in most cases we would reccommend using Wilbrand if you have an SD card on hand. + + ![](/images/modmii/modmii-wizard-4.png) + +1. If you selected the Wilbrand option in the previous step, enter your Wii's MAC address. If you don't know how to check your Wii's MAC address, enter `Help` in the text box for an instructional video. + + ![](/images/modmii/modmii-wizard-5.png) + +1. Select your desired System Menu version from the list. + + ![](/images/modmii/modmii-wizard-6.png) + +1. Select whether or not you would like to install any of the listed channels - this is an optional step. + + ![](/images/modmii/modmii-wizard-7.png) + +1. Select whether or not you would like to install a custom Wii theme, with the choice of three theme effects. Each effect deals with how much the outline when hovering over a Wii Channel spins. + + ![](/images/modmii/modmii-wizard-8.png) + +1. Select whether or not you would like to set up a USB Loader for use with your Wii. + + ![](/images/modmii/modmii-wizard-9.png) + +1. If you selected `Yes` in the USB Loader menu, select which USB Loader you would like to use. If you choose an individual one, we reccomend either USB Loader GX or WiiFlow as both are covered on this website, or you may optionally download each option. + + ![](/images/modmii/modmii-wizard-10.png) + +1. If you selected `Yes` in the USB Loader menu, select where you would like to save your USB Loader files at. + + ![](/images/modmii/modmii-wizard-11.png) + +1. Verify where you would like to save files for your SD Card and/or USB Drive. + + ![](/images/modmii/modmii-wizard-12.png) + +1. Confirm your settings are correct, and then press `Finish`. Once you press the button, ModMii will begin to process and download files in the background, and will automatically generate and open a guide for you. From here, you should follow the guide generated by ModMii. + + ![](/images/modmii/modmii-wizard-13.png) ### SysCheck Updater Wizard -[SysCheck](syscheck) 是一款自制应用程序,用于分析 Wii 上的修改。
您还可以向 ModMii 提供 SysCheck 报告,帮助识别 & 更新过时的修改。 +The SysCheck Updater Wizard is a tool that utilizes the homebrew app [SysCheck](syscheck) to analyze any modifications on your Wii, especially IOS and cIOS. It accepts a `syscheck.csv` file generated by the app, and then provides any nessecary updates as needed. -您可以将 `syscheck.csv` 文件拖到 ModMii.exe 上,让 ModMii 分析 SysCheck。 或者,您可以从 ModMii 的主菜单中启动 SysCheck Updater Wizard (`SU`),然后手动浏览文件。 +1. Open ModMii Classic and enter in `SU` to open the SysCheck Updater Wizard. + + ![](/images/modmii/syscheck-wizard-1.png) + +1. Follow the instructions in the window if you don't already have a SysCheck log, and then drag and drop the `syscheck.csv` file from Windows Explorer into the window. This will paste the location of the file, from which you can press Enter. + + ![](/images/modmii/syscheck-wizard-2.png) + +1. The program will analyze your SysCheck file, and will provide options for you depending on what it sees. In this example instance, the mods on the Wii were up-to-date, but there were several unnecessary IOSes that could be stubbed. If you want to make these changes to your Wii, simply enter in `Y` and press Enter. From here, you should follow the guide generated by ModMii. + + ![](/images/modmii/syscheck-wizard-3.png) ### HackMii Solutions Wizard -HackMii Solutions wizard 可以帮助修以下症状: +The HackMii Solutions Wizard is a tool that fixes problems that may arise from things like Darkcorp/CIOSSPAGHETTI by installing clean IOSes. Examples of problems that may arise because of this are listed below: + HackMii Installer 未提示 "Press (1) to continue" -+ HackMii Installer 提示 "no vulnerable IOS found!" -+ Homebrew Channel 显示颠倒 ++ HackMii Installer saying "no vulnerable IOS found!" ++ Homebrew Channel displaying upside-down -它将安装干净的 IOS,以便 HackMii Installer 正常运行。 +1. Open ModMii Skin or ModMii Classic and select the HackMii Solutions option. -### Abstinence Wizard + ![](/images/modmii/hackmii-wizard-1.png) -该 wizard(向导)需要 SD 卡。 -{: .notice--warning} +1. Select your current System Menu version, followed by the System Menu Region, following the instructions in the program. If you are still confused, check the bottom option on each screen for an instructional video. -此向导允许您在不对 Wii 进行任何永久修改的情况下享受许多软破 Wii 的好处。 您可以利用它从外部存储启动模拟 NAND 而不是 Wii 的内置 NAND。 + ![](/images/modmii/hackmii-wizard-2.png) -与此相关,您也可以在完全不修改 Wii 的情况下制作 NAND 备份。 找到 ModMii 的 "Support" 文件夹并启动 `Casper2BootMii.bat`。
它会将一些文件保存到名为 `COPY_TO_SD` 的文件夹中,将其中的文件复制到 SD 卡中,然后[启动一个漏洞](get-started)。 +1. Select the exploit you would like to use to mod your Wii. The exploits below are outlined throughout this website, but in most cases we would reccommend using Wilbrand if you have an SD card on hand. -在按照上述任一漏洞指南时,请避免替换 `boot.elf` 文件。 -{: .notice--warning} + ![](/images/modmii/hackmii-wizard-3.png) +1. If you selected the Wilbrand option in the previous step, enter your Wii's MAC address. If you don't know how to check your Wii's MAC address, enter `Help` in the text box for an instructional video. -
-点击这里查看可用工具的完整列表。 + ![](/images/modmii/hackmii-wizard-4.png) -| 工具 | 描述 | -| --------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------ | -| W = ModMii Wizard <-- Start Here to Mod Your Wii! | 该选项可用于首次修改 Wii 或重新修改以前修改过的 Wii。 | -| SU = SysCheck Updater Wizard (update only your outdated softmods) | 此选项适用于已经在 wii 上安装了 DarkCorp/Ciosspaghetti 旧修改的用户,这些修改可能会给最新的自制固件带来问题。 | -| U = USB-Loader Setup Wizard | 此选项可帮助您正确设置 USB loader,以便从 SD 或移动硬盘加载磁盘备份。 | -| H = HackMii Solutions Wizard (Upside-Down HBC\No Vulnerable IOS Fix) | 此选项适用于使用 HackMii Installer 时遇到问题的用户,或者它们的 homebrew channel 显示颠倒,或者安装了 DarkCorp/Ciosspaghetti 但没有 homebrew channel。 | -| AW = Abstinence Wizard (Non-permanent Wii Hacks) | 此选项适用于不想对 Wii 进行任何永久性修改,但又想获得自制所能提供的一些好处的用户。 | -| RC = Region Change Wizard | 此选项可在不使 Wii 变砖的情况下更改区域(这是互联网上最好的区域更改教程!)。 | -| S = SNEEK Installation, EmuNAND Builder\Modifier, Game Bulk Extractor | 此选项帮助您在 SD 或 USB 上正确设置 EmuNAND(又名 neek2o)。 emunand 的优势包括为保存的游戏或频道提供额外的存储空间。 以及不对 Wii 进行任何永久性修改的好处。 | -| F = open a File or Folder with ModMii for many more functions! | 该选项是一种高级工具,对开发人员特别有用。 | -| 1 = Download Page 1 (System Menus, IOSs, MIOSs, Channels, etc.) | 此选项将打开第一个下载页面,其中包括系统菜单的大部分关键部分(从 NUS 下载)。 | -| 2 = Download Page 2 (Apps, USB-Loader Files, CheatCodes, etc.) | 此选项将打开第二个下载页面,其中包括针对 Wii 的漏洞和实用应用,包括一些 PC 程序。 | -| 3 = Download Page 3 (System Menu Themes) | 此选项将打开第三个下载页面,其中包括一些系统菜单主题和安装系统菜单主题所需的项目(从 NUS 下载基本应用)。 | -| 4 = Download Page 4 (cIOSs and cMIOSs) | 此选项将打开第四个下载页面,其中包括用于 USB loader 的 cIOS 和 cMIOS。 建议只安装推荐的 cios,除非您打算进行一些测试。 | -| A = Advanced Downloads and Forwarder DOL\ISO Builder | 此选项是一个高级工具,用于更好地定制下载,或构建用于转发器(在系统菜单上访问 Wii 应用程序的频道)的 dol 可执行文件。 | -| L = Load Download Queue | 此选项将下载 Wii 系统菜单所需的所有标题(从 NUS 下载标题) | -| C = Build Config Files for Bootmii, Wad Manager or Multi-Mod Manager | 该选项可帮助您构建某些应用程序所需的配置文件。 | -| FC = File Cleanup & App Updater: Update Apps and\or remove un-needed files | 此选项对于想要清理 SD 或 USB 中被认为过时、无用或不再支持的应用程序的人来说非常有用。 | -| M = ModMii Skin Mode: use your mouse instead of your keyboard! | 此选项将启动 ModMii skin 模式。 某些高级功能可能无法在此视图中使用。 | +1. Verify where you would like to save files for your SD Card and/or USB Drive. -
+ ![](/images/modmii/modmii-wizard-12.png) -
-点击这里查看可用选项的完整列表。 +1. Confirm your settings are correct, and then press `Finish`. Once you press the button, ModMii will begin to process and download files in the background, and will automatically generate and open a guide for you. From here, you should follow the guide generated by ModMii. After finishing this guide, it is recommended that you use the [SysCheck Updater Wizard](#syscheck-updater-wizard) to undo any other problematic modifications on your Wii. -| 选项 | 描述 | -| ------------------------------------------------------------------------------- | -------------------------------------------------- | -| D = Change Drive letter: | 更改 SD 文件的保存位置。 | -| DU = Change Drive letter for USB: | 更改 USB 文件的保存位置。 | -| d2x = change d2x cIOS version built: | 更改 ModMii 下载的 cios 版本。 | -| H = Hermes cIOSs (202 & 222-224) will also be recommended | 允许在 syscheck updater 中推荐并下载 Hermes IOS(将在禁用时存根)。 | -| CM = cMIOS included in recommended cIOSs | 允许在 syscheck updater 中推荐并下载 cMIOS(如果禁用则安装原始 MIOS)。 | -| E = Extra Brick Protection in ModMii Wizard Guides | 允许在 syscheck updater tool 中推荐和使用 ModMii 额外防砖 IOS。 | -| U = Update IOSs. U = Update IOSs. Wizard/SysCheck-Updater to update Active IOSs | 将现有 IOS 更新为 NUS 上的最新版本。 | -| AU = Auto-Updating downloads will skip update check if cached | 如果文件已在队列中,将跳过下载。 | -| FWD = Install USB-Loader Forwarder in ModMii Wizard Guides | 将在 USB loader 向导指南中包含 USB loader 转发程序的 wad 文件。 | -| PC = PC Programs Save Location | 更改可下载 PC 程序的保存位置。 | -| RS = Root Save: Save IOSs\MIOSs to Root instead of WAD Folder | 将 IOS\MIOS 保存到根目录而不是 WAD 文件夹。 | -| 1 = Do not Keep 00000001 or NUS Folders for IOSs\MIOSs\SMs etc | 删除用于编译 wad 文件的文件夹,只提供 wad 文件。 | -| n2o = neek2o - build mod of s\uneek instead of original | 在 EmuNAND builder 中使用经过改进版本的 neek2o。 | -| SSD = SNEEK and SNEEK+DI SD Access | 允许访问 SD 卡上的 SNEEK 和 SNEEK+DI。 | -| F = Font.bin Colour for SNEEK/UNEEK | 更改 neek2o 的字体颜色。 | -| SV = SNEEK Verbose Output | 显示有关 EmuNAND 的额外信息。 | -| V = Verbose for ModMii Skin & nandBinCheck | 显示另一个窗口,其中包含有关 nand 检查的额外信息。 | -| SO = Play sound at Finish | Plays a fun jingle after a successful download. | -| A = Auto-Update ModMii at program start | 将在启动 ModMii 时自动检查更新。 | -| N = Check for New versions of ModMii right now | 将在线检查 ModMii 更新。 | - -
+ ![](/images/modmii/hackmii-wizard-5.png) [Click here to go back to the site index.](site-navigation) {: .notice--info} diff --git a/_pages/zh_CN/nintendont.md b/_pages/zh_CN/nintendont.md new file mode 100644 index 000000000..d7eef1b3f --- /dev/null +++ b/_pages/zh_CN/nintendont.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="410.html" %} diff --git a/_pages/zh_CN/recommended-homebrew.md b/_pages/zh_CN/recommended-homebrew.md index b2bada15a..2d3869c77 100644 --- a/_pages/zh_CN/recommended-homebrew.md +++ b/_pages/zh_CN/recommended-homebrew.md @@ -16,7 +16,7 @@ Homebrew that has the ability to make permanant changes to your Wii are highligh + [**AnyRegion Changer ME**](https://oscwii.org/library/app/ARCME) - ModMii edition of AnyRegion Changer. While a powerful tool for changing region settings, it can also lead to severe bricks like [Korean Kii/Error 003](bricks#korean-kiierror-003-brick) so **only use this app if you know what you are doing**. + [**WiiXplorer-SS**](https://oscwii.org/library/app/wiixplorer-ss) - A modified and updated version of WiiXplorer. A file manager for the Wii, it allows you to view and customize files both on an SD card, a USB device, and the internal Wii memory. For this reason it is a very powerful but also dangerous tool - don't modify files on the system NAND unless you know what you are doing, as it can lead to various types of [bricks](bricks). + [**SaveGame Manager GX**](https://oscwii.org/library/app/SaveGame_Manager_GX) - A savegame/Mii extractor for the Wii. It supports GameCube memory cards (physical and virtual), emuNANDs, normal and protected saves, themes, and more. -+ [**MyMenuifyMod**](https://oscwii.org/library/app/mymenuifymod) - An application that allows you to theme the Wii Menu. While quite useful to make your Wii unique, it also has the ability to cause a [minor brick](bricks#theme-brick), so make sure to read our [theme guide](themes) for safe usage instructions. ++ [**csm-installer**](https://oscwii.org/library/app/csm-installer) - An application that allows you to theme the Wii Menu. While quite useful to make your Wii unique, it also has the ability to cause a [minor brick](bricks#theme-brick), so make sure to read our [theme guide](themes) for safe usage instructions. + [CleanRip](https://oscwii.org/library/app/CleanRip) - A tool to backup GameCube and Wii discs. Further information can be found in our [disc dumping guide](dump-games). + [**d2x cIOS installer**](https://oscwii.org/library/app/d2x-cios-installer) - A custom installer for Wii IOS, some of which is required for the functioning of certain software like USB loaders. You can see the guide [here](cios). + [FTPii](https://oscwii.org/library/app/ftpii) - An FTP server for your Wii, allowing you to transfer files across the network. diff --git a/_pages/zh_CN/riiconnect24.md b/_pages/zh_CN/riiconnect24.md index 96a9d6216..d1e91b7e8 100644 --- a/_pages/zh_CN/riiconnect24.md +++ b/_pages/zh_CN/riiconnect24.md @@ -1,138 +1,5 @@ --- -title: "RiiConnect24" +title: Redirecting... --- -{% include toc title="Table of Contents" %} - -如果您对本教程有任何问题或需要帮助,请加入 [RiiConnect24 Discord 服务器](https://discord.gg/rc24)(推荐)或 [发送电子邮件至 support@riiconnect24.net](mailto:support@riiconnect24.net) 与我们联系。 -{: .notice--primary} - -[RiiConnect24](https://rc24.xyz/) 允许你使用已经停止运营的 WiiConnect24 服务,包含新闻、天气、大家一起投票、大家的任天堂和Mii竞赛频道,还有Wii邮箱。 - -在继续之前,建议将您的 Wii 设为当前时间。 请按照[此教程](rtc)设置时间。 -{: .notice--warning} - -不要在 WII MINI 上安装 RIICONNECT24! 它将无法正常工作并导致变砖。 -{: .notice--danger} - -### Requirements - -如果您想在 vWii(Wii U 的 Wii 模式)上安装 RiiConnect24,请按照[此教程](riiconnect24-vwii)进行操作。 -{: .notice--primary} - -+ 一张SD卡或U盘 -+ 一台连接互联网的Wii -+ A PC with an Internet connection -+ [RiiConnect24 Patcher(Windows、Mac 和 Linux)](https://github.com/riiconnect24/RiiConnect24-Patcher/releases) -+ [YAWM ModMii Edition](https://oscwii.org/library/app/yawmme) - -### Instructions - -#### 第一部分 - 使用 RiiConnect24 Patcher - -1. 请点击上面的链接以前往包含 patcher(修补程序)的 GitHub 页面。 -1. 如果您使用的是 Windows 系统,请下载 `RiiConnect24Patcher.bat`,如果您使用的是 Unix 系统,请下载 `RiiConnect24Patcher.sh` -1. RiiConnect24 Patcher 主屏幕 - + 在 Windows 上运行 `RiiConnect24Patcher.bat`。 - + 在 Unix 系统上,打开终端并输入 `bash`,然后将 `RiiConnect24Patcher.sh` 拖到终端中,然后按回车。 它应该是这样的:`bash RiiConnect24Patcher.sh`。 -1. 按 1 选择“`Start`”,然后按 `ENTER` 确认您的选择。 - - ![](/images/riiconnect24/patcher/1.JPG) - -1. 选择您要修补的设备。 - - ![](/images/riiconnect24/patcher/2.JPG) - -1. 根据本指南,选择 "`Install RiiConnect24 on your Wii`" - - ![](/images/riiconnect24/patcher/3.JPG) - -1. 选择“`Express (Recommended)`”。 它将为您提供所需的一切。 - - ![](/images/riiconnect24/patcher/4.JPG) - -1. 选择您的区域 - - ![](/images/riiconnect24/patcher/5.JPG) - -1. 当您到这时,RiiConnect24 Patcher 还可以下载一些其它不使用 RiiConnect24 的可选频道。 `[X]` 表示已选择的选项。 如果您不感兴趣,只需按 5 和 `ENTER`。 - - ![](/images/riiconnect24/patcher/6.JPG) - -1. 将 SD 卡或 U 盘连接到电脑上,并选择“`1`”。 - - ![](/images/riiconnect24/patcher/7.JPG) - -1. 如果成功检测到您的设备,请选择 "`1`"。 如果没有,请确保您的 SD 卡或 U 盘上有一个名为 `apps` 的文件夹,然后重试。 - - ![](/images/riiconnect24/patcher/8.JPG) - -1. The patcher will download apps now - please be patient. - - ![](/images/riiconnect24/patcher/9.JPG) - -1. Once you reach the screen that says `Patching done`, you can exit the patcher. 所有文件应该已经位于您的 SD 卡上。 - - ![](/images/riiconnect24/patcher/10.JPG) - - ![](/images/riiconnect24/patcher/11.PNG) - -1. 如果没有自动将所有文件复制到您的 SD 卡或 U 盘上,请将 `RiiConnect24Patcher.bat` 旁边的 `WAD` 和 `apps` 文件夹复制到您的 SD 卡或 U 盘上。 - -#### 第二部分 - 安装 WAD - -If you are using Dolphin, you have finished the guide. Install the WADs by going to `Tools -> Install WAD` within Dolphin. -{: .notice--primary} - -现在您将安装使用 RiiConnect24 所需的已修补 IOS 和频道 WAD。 - -1. 解压 YAWM ModMii Edition `.zip` 文件,并将 `apps` 文件夹复制到 SD 卡或 U 盘中。 -1. 将 SD 卡或 U 盘插入 Wii。 -1. 启动 Wii 上的 Homebrew Channel。 -1. 启动 YAWM ModMii Edition。 -1. 选择您放置 RiiConnect24 文件的设备。 -1. 按 + 选择 `wad` 文件夹中的所有 WAD。 选择所有 WAD 后,按两次 A 来安装 WAD。 -1. 安装成功后,按HOME按钮返回Homebrew Channel。 - -#### 第三部分 - 修补 nwc24msg.cfg - -现在需要对您的 `nwc24msg.cfg` 文件进行修补以使用 Wii Mail。 - -1. 启动 RiiConnect24 Mail Patcher。 -1. 修补 nwc24msg.cfg 通常只需要几秒钟。 完成后,按下 HOME 按钮退出。 - -#### 第四部分 - 连接 - -自 `2023年6月1日` 起,旧 DNS 服务器 `164.132.44.106` 将被弃用,不再可用。 -{: .notice--warning} - -如果您遇到了例如 `WiiConnect24 and Wii Shop Channel currently not being offered in your country` 的错误,请前往 Wii 设置 -> 最后一页 -> 国家,并将其更改为英国。 当您使用我们不支持的国家时会出现出错误。 如果您需要更多帮助,请通过 [support@riiconnect24.net](mailto:support@riiconnect24.net) 与我们联系。 -{: .notice--warning} - -如果您遇到错误 107245,表示您尚未安装修补过的 IOS。
-{: .notice--warning} - -您现在需要将 DNS 设置为我们的服务器。 这是可选项,但建议这么做,因为它通过提供其它功能来增强 RiiConnect24 和 Wiimmfi 的使用。 - -1. 转到 `Wii Options(Wii 选项)`。 -1. 转到 `Wii Settings(Wii 设置)`。 -1. 转到 `第 2 页`,然后点击 `Internet`。 -1. 转到 `Connection Settings(连接设置)`。 -1. 选择当前连接。 -1. 转到 `Change Settings(更改设置)`。 -1. 转到 `Auto-Obtain DNS(自动获取 DNS)`(不是 IP 地址),然后选择 `否`,然后选择 `Advanced Settings(高级设置)`。 -1. 将主要DNS设置为 `167.86.108.126`。 -1. 将次要DNS设置为 `1.1.1.1`。 -1. 选择 `Confirm(确认)`,然后选择 `Save(保存)`。 -1. 选择 `OK` 以进行连接测试。 -1. 如果连接测试成功,请选择 `否` 以跳过 Wii 系统更新。 -1. 进入 `WiiConnect24`,然后再次点击 `WiiConnect24`,确保它已启用。 -1. 回到 WiiConnect24 菜单,转到 `Standby Connection(待机连接)`并确保已启用。 -1. 在 `Slot Illumination(插槽照明)`中,我们建议您将光驱灯设置为 `Dim(暗)` 或 `Bright(亮)`,但这是可选的。 -1. 最后,进入 `Internet` 部分,然后选择 `User Agreements(用户协议)` 或 `Agreement/Contact(协议/联系)`,然后选择 `是`。 请阅读以下内容。 - -[Return to WiiConnect24](wiiconnect24) -{: .notice--info} - -[Click here to go back to the site index.](site-navigation) -{: .notice--info} +{% include redirect.html redirect_to="https\://www\.wiilink24.com/guide/install/" %} diff --git a/_pages/zh_CN/riitag.md b/_pages/zh_CN/riitag.md new file mode 100644 index 000000000..e6b6bc322 --- /dev/null +++ b/_pages/zh_CN/riitag.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="https\://wiki.hacks.guide/wiki/RiiTag" %} diff --git a/_pages/zh_CN/riivolution.md b/_pages/zh_CN/riivolution.md new file mode 100644 index 000000000..d7eef1b3f --- /dev/null +++ b/_pages/zh_CN/riivolution.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="410.html" %} diff --git a/_pages/zh_CN/site-navigation.md b/_pages/zh_CN/site-navigation.md index 7e5c593ac..ab189c0b0 100644 --- a/_pages/zh_CN/site-navigation.md +++ b/_pages/zh_CN/site-navigation.md @@ -8,7 +8,7 @@ sitemap: false **站点** + [主页](/) + [开始](get-started) -+ [FAQ](faq) ++ [常见问题指南](faq) + [捐赠](donations) {% endcapture %}
{{ notice-1 | markdownify }}
diff --git a/_pages/zh_CN/themes.md b/_pages/zh_CN/themes.md index d161aa975..35d2ae08b 100644 --- a/_pages/zh_CN/themes.md +++ b/_pages/zh_CN/themes.md @@ -4,13 +4,16 @@ title: "安装 Wii 菜单主题" {% include toc title="Table of Contents" %} -本指南仅适用于普通的 Wii。 若要在 vWii (Wii U) 上安装主题,请参考[此页面](themes-vwii)。 Additionally, forwarders are covered. +This guide is intended to be the last you will ever need when it comes to theming on the Wii, not only providing instructions for the Wii Menu through csm-installer, but also with themes on WiiFlow Lite, USB Loader GX, and The Homebrew Channel. Additionally, forwarders are covered. ### 转到 `Options` > `Standard System Menu` > Wii 菜单版本 > Wii 菜单区域 DO NOT CONTINUE WITH THIS GUIDE UNLESS YOU HAVE ADEQUATE BRICK PROTECTION, SPECIFICALLY [BOOTMII](bootmii) AND [PRIILOADER](priiloader)! {: .notice--danger} +This tutorial does not work on the Wii mini. Do not attempt this tutorial on the Wii mini or it will cause a [brick](bricks#theme-brick). +{: .notice--warning} + csm-installer has built in safety features to prevent from installing bad or corrupt Wii Menu themes, so please opt to use it instead of other theme installation homebrew. {: .notice--warning} diff --git a/_pages/zh_CN/usbloadergx.md b/_pages/zh_CN/usbloadergx.md new file mode 100644 index 000000000..00a63864a --- /dev/null +++ b/_pages/zh_CN/usbloadergx.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-loaders.html" %} diff --git a/_pages/zh_CN/wiibackupmanager.md b/_pages/zh_CN/wiibackupmanager.md new file mode 100644 index 000000000..063d7bba0 --- /dev/null +++ b/_pages/zh_CN/wiibackupmanager.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-backups.html" %} diff --git a/_pages/zh_CN/wiiconnect24.md b/_pages/zh_CN/wiiconnect24.md index 4fe665197..4e0171f79 100644 --- a/_pages/zh_CN/wiiconnect24.md +++ b/_pages/zh_CN/wiiconnect24.md @@ -3,44 +3,21 @@ title: "WiiConnect24" --- {% include toc title="Table of Contents" %} + -This guide provides different means of regaining WiiConnect24 functionality on your console. Although not at all nessecary, it is a "nice to have" feature that was originally used for online connectivity in certain applications on the console. These apps include the Forecast/News Channel, Nintendo Channel, Check Mii Out Channel, some Japan-exclusive channels, and more. Please bear in mind, the functionality you gain depends entirely on what service(s) you use. +[WiiConnect24](https://wikipedia.org/wiki/WiiConnect24) was a service that allowed users with Internet connected Wiis to view the weather & local news, send messages to friends, participate in Mii contest, and more. WiiConnect24 was discontinued on June 27th, 2013. -### Service Overview +## RiiConnect24 + WiiLink +[RiiConnect24](https://rc24.xyz) is a revival service for WiiConnect24 that started in 2015, which allows you to regain its functionality on your console. As of late 2023, the service is now owned by WiiLink, a project that started in 2020 that was previously aiming at the Japanese-exclusive channels. -#### Note about service compatibility: -Both services listed below are compatible with one another and can be loaded on the same console. With this said, it should be noted that when installing one channel over the other (WiiLink's Forecast Channel over RiiConnect24's Forecast Channel for example), the channel you are installing will overwrite the old one. - - -#### Service Support Status -✅ - In support
⚠️ - In development
⛔ - No support - -| Service Name | WiiLink | RiiConnect24 | -| ----------------------- | ------- | ------------ | -| Forecast Channel | ✅ | ✅ | -| News Channel | ⚠️ | ✅ | -| Wii Mail | ✅ | ✅ | -| Everybody Votes Channel | ✅ | ✅ | -| Nintendo Channel | ✅ | ✅ | -| Check Mii Out Channel | ⚠️ | ✅ | -| Wii Room | ✅ | ⛔ | -| Food Channel | ✅ | ⛔ | -| Photo Prints Channel | ✅ | ⛔ | -| Kirby TV Channel | ✅ | ⛔ | -| TV Guide Channel | ⚠️ | ⛔ | - -#### WiiLink -A newer WC24/Japanese channel revival service that started in 2020, but is rapidly regaining functionality in many different channels. - -Service support status can be found [here](https://www.wiilink24.com/status).
Their guide can be found [here](https://www.wiilink24.com/guide). - -#### RiiConnect24 -The longest lasting WC24 revival service, currently only with support for the worldwide WC24 channels as well as mail services. - -Service support status can be found [here](https://rc24.xyz/stats/).
RiiConnect24 currently does not have a self-hosted guide, however you can find ours [here](riiconnect24). +There is a patcher that ships both of these services together as one - meaning you get all of the international and Japanese-only channels in one package. The guide on how to install these services can be found [on WiiLink's website.](https://www.wiilink24.com/guide/) + ### Updating RTC Clock -If you choose to install either of these services on your Wii, it is advised to synchronize its external clock in order to prevent various issues (such as inability to use said services) that may arise otherwise. The steps to do so can be found below: #### 你需要的是 + A working Internet connection on your Wii diff --git a/_pages/zh_CN/wiiflow.md b/_pages/zh_CN/wiiflow.md new file mode 100644 index 000000000..00a63864a --- /dev/null +++ b/_pages/zh_CN/wiiflow.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-loaders.html" %} diff --git a/_pages/zh_TW/410.md b/_pages/zh_TW/410.md new file mode 100644 index 000000000..21f077b23 --- /dev/null +++ b/_pages/zh_TW/410.md @@ -0,0 +1,12 @@ +--- +title: Page no longer exists +sitemap: false +--- + +The page you are trying to view used to exist, but it has since been removed. Maybe the instructions you are following are outdated? (If you got here from a link on this guide, [let us know](https://github.com/hacks-guide/Guide_Wii/issues)) + +[Click here to go back to the site index.](site-navigation) +{: .notice--info} + +![](https://http.cat/410) +{: .notice--info} diff --git a/_pages/zh_TW/bootmii.md b/_pages/zh_TW/bootmii.md index 85300b895..684930a30 100644 --- a/_pages/zh_TW/bootmii.md +++ b/_pages/zh_TW/bootmii.md @@ -6,21 +6,9 @@ title: "進行 BootMii 備份" 您需要一張 **SD 卡** 才能使用 BootMii 建立 NAND 備份。 如果您沒有任何可用的 SD 卡,您可以跳過此頁面,但強烈建議您盡快進行 NAND 備份。 -Family edition Wiis (Wiis without GameCube ports) CANNOT restore NAND backups. This is because of the lack of GameCube ports which are required on non-boot2 Wiis to enter the restoration confirmation code. Regardless, it is still recommended to make one on these consoles. -{: .notice--danger} - You need an **SD card** to use BootMii at all, but especially to create a NAND backup. If you do not have an SD card on hand right now, you can skip this page, but it is HIGHLY RECOMMENDED to return to this page later to back up your NAND. {: .notice--warning} -您將無法使用 Wii 控制器來控制 BootMii。 您必須使用主機上的 POWER 和 RESET 按鈕,或者將 GameCube 控制器插入端口 1 來控制 BootMii。 要在選項之間移動,請按 Wii 的 POWER 按鈕 (或 GameCube 控制器的左右十字鍵)。 要選擇選項,請按 Wii 的 RESET 按鈕 (或 GameCube 控制器的 A 鍵)。 BootMii 最重要的功能之一是能夠備份和恢復 Wii 的 NAND 儲存空間。 我們將討論如何執行 NAND 備份。 後續您將可以透過它進行系統還原。 -{: .notice--info} - -如果 `Launch BootMii` 按鈕沒有出現的話,請 [重新啟動 HackMii Installer](hackmii) 並安裝 BootMii。 -{: .notice--warning} - -如果螢幕保持黑屏且光碟機的指示燈閃爍,那代表您的 SD 卡中缺少 BootMii 所需的檔案。 下載[此壓縮檔](https://static.hackmii.com/bootmii_sd_files.zip)並將其解壓縮到 SD 卡的根目錄,然後重試。 -{: .notice--warning} - ### 前置需求 * 至少有 512MB 可用空間的 SD 卡 @@ -36,10 +24,19 @@ You need an **SD card** to use BootMii at all, but especially to create a NAND b ![](/images/bootmii/BootMii_HBC.png) + 如果 `Launch BootMii` 按鈕沒有出現的話,請 [重新啟動 HackMii Installer](hackmii) 並安裝 BootMii。 + {: .notice--warning} + + 如果螢幕保持黑屏且光碟機的指示燈閃爍,那代表您的 SD 卡中缺少 BootMii 所需的檔案。 下載[此壓縮檔](https://static.hackmii.com/bootmii_sd_files.zip)並將其解壓縮到 SD 卡的根目錄,然後重試。 + {: .notice--warning} + 1. You should see an image similar to the below now on your screen: ![](/images/bootmii/BootMii_Main.png) + 您將無法使用 Wii 控制器來控制 BootMii。 您必須使用主機上的 POWER 和 RESET 按鈕,或者將 GameCube 控制器插入端口 1 來控制 BootMii。 To navigate between options, press POWER. To select an option, press RESET. + {: .notice--info} + 1. Select the Options button (the icon with the gears). ![](/images/bootmii/BootMii_Gears.png) @@ -65,7 +62,7 @@ You need an **SD card** to use BootMii at all, but especially to create a NAND b
請注意,還原 NAND 備份通常是不得已的最後手段,通常有更好的方法來修復您的磚機。 There often better ways to unbrick your console. 盡可能的[確定您的變磚的問題所在](bricks),並試著還原您先前的操作。 -要從 SD 卡上的 NAND 備份還原,您可以使用 [RestoreMii](bootmiirecover) 進行操作。 +To restore from a NAND backup on your SD card, you can follow the instructions for [RestoreMii](bootmiirecover). **Family edition Wiis (Wiis without GameCube ports) CANNOT restore NAND backups.**
建議使用 BootMii 作為 boot2,但只能安裝在早期的 Wii 主機中。 If you would like to change this, you can use the app [BootMii Config Editor](https://oscwii.org/library/app/BootMiiConfigurationEditor). Or, you can edit `sd:/bootmii/bootmii.ini` manually. diff --git a/_pages/zh_TW/bricks.md b/_pages/zh_TW/bricks.md index 2e2dd4e0c..4cdb3a1c5 100644 --- a/_pages/zh_TW/bricks.md +++ b/_pages/zh_TW/bricks.md @@ -111,7 +111,7 @@ Attempt to start the Wii - warning/press A screen shows up, and when A is presse 主題磚是安裝了一個格式錯誤的主題所造成的。 #### 解決方式 -To resolve this issue, open HBC through Priiloader and access MyMenuifyMod to install a default theme. Alternatively, go into [YAWM ModMii Edition](yawmme) and install the CORRECT default Wii Menu WAD for your region and version. +To resolve this issue, open HBC through Priiloader or BootMii as boot2 and access csm-installer to install a default theme such as the base Wii Menu theme. Alternatively, go into [YAWM ModMii Edition](yawmme) and install the CORRECT default Wii Menu WAD for your region and version. ## 訊息磚(Mail brick) diff --git a/_pages/zh_TW/cios.md b/_pages/zh_TW/cios.md index 7a5cfd948..d1476515d 100644 --- a/_pages/zh_TW/cios.md +++ b/_pages/zh_TW/cios.md @@ -66,6 +66,12 @@ Select cIOS version: 65535 ![](/images/cios/d2x_v11_248.png) + The warning "`(c)IOS detected in slot ### will be overwriitten`" can be safely ignored. + {: .notice--info} + + If you are seeing "`Slot ### already used in batch settings`" or "`cIOS already added in batch with revision ##### and slot ###`", press `-` to disable batch mode.
(If you are trying to exit the installer, the button is B, not Home.) + {: .notice--info} + 1. Press `A`. This will bring you to the slot map: ![](/images/cios/d2x_summary.png) diff --git a/_pages/zh_TW/dosanddonts.md b/_pages/zh_TW/dosanddonts.md new file mode 100644 index 000000000..6ceed5bee --- /dev/null +++ b/_pages/zh_TW/dosanddonts.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="faq.html" %} diff --git a/_pages/zh_TW/hbc.md b/_pages/zh_TW/hbc.md index 0e1103496..fb9d8dceb 100644 --- a/_pages/zh_TW/hbc.md +++ b/_pages/zh_TW/hbc.md @@ -6,7 +6,7 @@ title: "Homebrew Channel and BootMii Installation" You can now use the Homebrew Channel to launch homebrew apps. Open Shop Channel is a one-stop shop for downloading homebrew, which you will learn how to install further in this guide. BootMii is a piece of software that can backup and restore your Wii's NAND storage, and if installed in boot2, provide brick protection. -BootMii can be installed in two ways: directly to a part of the Wii bootloader called boot2, and via an IOS. BootMii under boot2 is preferred as it provides extended brick protection, but Wiis with a vulnerable boot2 are considerably rarer, having been manufactured before 2009. If BootMii says that it `can only be installed as an IOS`, that's normal. +BootMii can be installed in two ways: directly to a part of the Wii bootloader called boot2, and via an IOS. BootMii under boot2 is preferred as it provides extended brick protection, but Wiis with a vulnerable boot1 that allows this installation are considerably rarer, having been manufactured before 2009. If BootMii says that it `can only be installed as an IOS`, that's normal. {: .notice--info} If you do not have an SD card, you cannot install nor use BootMii, and therefore will not be able to utilize any of the mentioned benefits.
You can always [install it at a later date](hackmii). You can always [install it later](hackmii). diff --git a/_pages/zh_TW/modmii.md b/_pages/zh_TW/modmii.md index 4936dcc7c..731edffa0 100644 --- a/_pages/zh_TW/modmii.md +++ b/_pages/zh_TW/modmii.md @@ -4,116 +4,190 @@ title: "ModMii" {% include toc title="條目內容" %} -If you need help for anything regarding this tutorial, please join [the ModMii Discord server](https://discord.gg/cMnBRACQwQ). -{: .notice--info} - This Program does NOT come with a warranty, so you are responsible for any potential damage done to your Wii. {: .notice--warning} This program is NOT intended to be used for the vWii or the Wii mini. Some tools may or may not work for these platforms. Any usage on vWii or Wii mini is untested. {: .notice--warning} -ModMii is a PC program for windows created by XFlak that has various helpful tools for modding, including some tutorials that may not be currently available here on the [wii.guide](site-navigation) website.
You can choose to launch in ModMii skin, which has a more user friendly approach, or launch in ModMii Classic, which interacts like a PC terminal or command prompt. +ModMii is an all-in-one Wii hacking tool for Windows created by XFlak that has various helpful tools for modding. It can accomplish the following: -Some advanced options may not be accessible in ModMii Skin. Some advanced options may not be accessible in ModMii Skin. A list of the various activities for ModMii Classic can be found at the bottom of the page. -{: .notice--info} ++ Hacking the console for the first time, or re-hacking it ++ Check for and update outdated softmods ++ Fix upside-down Homebrew Channel problems ++ Run homebrew without making any changes to your Wii's NAND ++ Download homebrew ++ And more! -### 必備項目 +### ModMii Overview + +There are two different ways to use ModMii. There is ModMii Classic, which uses a command line interface, but has all of the features available to the program. ModMii Skin has a graphical user interface, on the other hand, but has less options available to the user. If you're looking to simply mod your Wii for the first time, ModMii Skin should suffice. Otherwise, we reccomend using ModMii Classic where possible.
The chart below will help you determine what can be done in either interface. + +| Tools | ModMii Classic | ModMii Skin | +| -------------------------- | -------------- | ----------- | +| ModMii Wizard | ✅ | ✅ | +| SysCheck Updater Wizard | ✅ | ⛔ | +| USB Loader Setup Wizard | ✅ | ✅ | +| HackMii Solutions Wizard | ✅ | ✅ | +| Abstinence Wizard | ✅ | ✅ | +| Region Change Wizard | ✅ | ✅ | +| SNEEK/EmuNAND Installation | ✅ | ✅ | +| Open File Function | ✅ | ⛔ | +| Load Download Queue | ✅ | ✅ | +| Download Page 1/2/3/4 | ✅ | ⛔ | +| Advanced Downloads | ✅ | ⛔ | +| Load Download Queue | ✅ | ⛔ | +| Build Config Files | ✅ | ⛔ | +| File Cleanup & App Updater | ✅ | ⛔ | + +
+Click here for a detailed explanation of each tool. + +| Tool | Description | +| --------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| W = ModMii Wizard <-- Start Here to Mod Your Wii! | This option can be used to hack your Wii for the first time or re-hack a Wii that has been previously modded. | +| SU = SysCheck Updater Wizard (update only your outdated softmods) | This option checks for and updates old modifications installed to their wii such as DarkCorp/CIOSSPAGHETTI that can potentially cause problems for the latest homebrew custom firmware. | +| U = USB-Loader Setup Wizard | This option will properly set up your USB loader to be able to load your disk backups from an SD or USB hard drive. This option is not necessary if using the ModMii Wizard. | +| H = HackMii Solutions Wizard (Upside-Down HBC\No Vulnerable IOS Fix) | This option is useful for people who are having trouble getting the HackMii Installer to work or have an upside down homebrew channel. | +| AW = Abstinence Wizard (Non-permanent Wii Hacks) | This option allows you to run homebrew on your Wii without making any permanent modifications to the system NAND. | +| RC = Region Change Wizard | This option can be used to change the region of your Wii without bricking it, and is arguably the best region changing wizard on the internet. | +| S = SNEEK Installation, EmuNAND Builder\Modifier, Game Bulk Extractor | This option will help you properly set up an EmuNAND (aka neek2o) onto your SD or USB. benefits for emunand include extra storage space for save games or channels. and the benefit of not making any permanent modifications to your Wii. Benefits for EmuNAND include extra storage space for save games or channels, as well as running homebrew without making any permanent modifications to the system NAND. | +| F = open a File or Folder with ModMii for many more functions! | This option is an advanced tool especially helpful for developers. | +| 1 = Download Page 1 (System Menus, IOSs, MIOSs, Channels, etc.) | This option opens the first download page that includes most of the key parts of the Wii System Menu (downloaded from NUS). | +| 2 = Download Page 2 (Apps, USB-Loader Files, CheatCodes, etc.) | This option opens the second download page that includes exploits and useful apps for your Wii including some PC programs. | +| 3 = Download Page 3 (System Menu Themes) | This option opens the third download page that includes some system menu themes and items required to install system menu themes (base apps are downloaded from NUS). | +| 4 = Download Page 4 (cIOSs and cMIOSs) | This option opens the fourth download page that includes cIOSes and cMIOSes for use in USB loaders. It is recommended to just install the recommended cioses unless you plan to do some testing. | +| A = Advanced Downloads and Forwarder DOL\ISO Builder | This option allows you to download any IOS and cIOS and build custom DOL/ISO forwarders. Intended for advanced users only. | +| L = Load Download Queue | This option loads bundled or previously saved download queues. | +| C = Build Config Files for Bootmii, Wad Manager or Multi-Mod Manager | This option allows you to build customized config files for BootMii, Wad Manager, and Multi-Mod Manager. | +| FC = File Cleanup & App Updater: Update Apps and\or remove un-needed files | This option removes unnessecary files from your SD Card or Hard Drive after finishing softmodding your Wii. | + +

+ +When using ModMii, it is important to note that it will generate a custom guide for you depending on the options that you select. For this reason, this guide will not be focused on how to mod your Wii, as ModMii handles that function. Instead, it will be a quick start guide show you how to effectively use it with the most common options. + +### Installing ModMii + +#### 必備項目 * 一台 Wii * A USB drive or SD Card * A Windows PC (a Virtual Machine will work) * [ModMii](https://modmii.github.io/) -This is a quick start guide on how to use ModMii on your Windows PC. +#### Installation -### ModMii Wizard +1. Go to the [ModMii website](https://modmii.github.io) and scroll down to the Download section. Here, select the `Installer` option. Your browser may flag the installer as malware, but it is a **false positive**. -You can use the ModMii wizard to softmod any Wii.
Even if the Wii has been softmodded in the past, you can have ModMii overwrite existing softmods by telling ModMii that this is the first time you're modding your Wii (even though it's not).
Even if the Wii has been softmodded in the past, you can have ModMii overwrite existing softmods by telling ModMii that this is the first time you're modding your Wii (even if it isn't). + ![](/images/modmii/modmii-download.png) -You can also use this wizard to set up a USB loader at the same time, instead of having to use the USB Loader setup wizard later on. +2. Open the `ModMiiInstaller.exe` file and go through the setup process. + + ![](/images/modmii/modmii-install.png) + +### Using the ModMii Wizard + +The ModMii Wizard is tool that can softmod your Wii from start to finish, downloading all necessary files and then generating a guide that you can use to implement the softmod. This tool can also be used to overwrite existing softmods on a previously softmodded Wii. + +1. Open ModMii Skin or ModMii Classic and select the ModMii Wizard option at the top of the list. + + ![](/images/modmii/modmii-wizard-1.png) + +1. Answer `Yes` to the first question, unless you have a very specific idea of what you would like to do or update to your Wii. + + ![](/images/modmii/modmii-wizard-2.png) + +1. Select your current System Menu version, followed by the System Menu Region, following the instructions in the program. If you are still confused, check the bottom option on each screen for an instructional video. + + ![](/images/modmii/modmii-wizard-3.png) + +1. Select the exploit you would like to use to mod your Wii. The exploits below are outlined throughout this website, but in most cases we would reccommend using Wilbrand if you have an SD card on hand. + + ![](/images/modmii/modmii-wizard-4.png) + +1. If you selected the Wilbrand option in the previous step, enter your Wii's MAC address. If you don't know how to check your Wii's MAC address, enter `Help` in the text box for an instructional video. + + ![](/images/modmii/modmii-wizard-5.png) + +1. Select your desired System Menu version from the list. + + ![](/images/modmii/modmii-wizard-6.png) + +1. Select whether or not you would like to install any of the listed channels - this is an optional step. + + ![](/images/modmii/modmii-wizard-7.png) + +1. Select whether or not you would like to install a custom Wii theme, with the choice of three theme effects. Each effect deals with how much the outline when hovering over a Wii Channel spins. + + ![](/images/modmii/modmii-wizard-8.png) + +1. Select whether or not you would like to set up a USB Loader for use with your Wii. + + ![](/images/modmii/modmii-wizard-9.png) + +1. If you selected `Yes` in the USB Loader menu, select which USB Loader you would like to use. If you choose an individual one, we reccomend either USB Loader GX or WiiFlow as both are covered on this website, or you may optionally download each option. + + ![](/images/modmii/modmii-wizard-10.png) + +1. If you selected `Yes` in the USB Loader menu, select where you would like to save your USB Loader files at. + + ![](/images/modmii/modmii-wizard-11.png) + +1. Verify where you would like to save files for your SD Card and/or USB Drive. + + ![](/images/modmii/modmii-wizard-12.png) + +1. Confirm your settings are correct, and then press `Finish`. Once you press the button, ModMii will begin to process and download files in the background, and will automatically generate and open a guide for you. From here, you should follow the guide generated by ModMii. + + ![](/images/modmii/modmii-wizard-13.png) ### SysCheck Updater Wizard -[SysCheck](syscheck) is a homebrew application that analyzes the modifications on a Wii.
You can give a SysCheck report to ModMii to help identify & update outdated mods.
You can give a SysCheck report to ModMii to help identify & update outdated mods. +The SysCheck Updater Wizard is a tool that utilizes the homebrew app [SysCheck](syscheck) to analyze any modifications on your Wii, especially IOS and cIOS. It accepts a `syscheck.csv` file generated by the app, and then provides any nessecary updates as needed. -You can have ModMii analyze a SysCheck by dragging the `syscheck.csv` file onto ModMii.exe. Or, you can launch the SysCheck Updater Wizard (`SU`) from ModMii's main menu and manually browse for the file. Alternatively, you can launch the SysCheck Updater Wizard (`SU`) from ModMii's main menu and manually browse for the file. +1. Open ModMii Classic and enter in `SU` to open the SysCheck Updater Wizard. + + ![](/images/modmii/syscheck-wizard-1.png) + +1. Follow the instructions in the window if you don't already have a SysCheck log, and then drag and drop the `syscheck.csv` file from Windows Explorer into the window. This will paste the location of the file, from which you can press Enter. + + ![](/images/modmii/syscheck-wizard-2.png) + +1. The program will analyze your SysCheck file, and will provide options for you depending on what it sees. In this example instance, the mods on the Wii were up-to-date, but there were several unnecessary IOSes that could be stubbed. If you want to make these changes to your Wii, simply enter in `Y` and press Enter. From here, you should follow the guide generated by ModMii. + + ![](/images/modmii/syscheck-wizard-3.png) ### HackMii Solutions Wizard -The HackMii Solutions wizard can help fix symptoms like these: +The HackMii Solutions Wizard is a tool that fixes problems that may arise from things like Darkcorp/CIOSSPAGHETTI by installing clean IOSes. Examples of problems that may arise because of this are listed below: + HackMii Installer not prompting "Press (1) to continue" -+ HackMii Installer says "no vulnerable IOS found!" -+ Homebrew Channel is displaying upside-down ++ HackMii Installer saying "no vulnerable IOS found!" ++ Homebrew Channel displaying upside-down -It will install clean IOSs to allow for the HackMii Installer to operate properly. +1. Open ModMii Skin or ModMii Classic and select the HackMii Solutions option. -### Abstinence Wizard + ![](/images/modmii/hackmii-wizard-1.png) -This wizard requires an SD card. -{: .notice--warning} +1. Select your current System Menu version, followed by the System Menu Region, following the instructions in the program. If you are still confused, check the bottom option on each screen for an instructional video. -This wizard allows you to enjoy many of the benefits of a softmodded Wii without installing any permanent modifications to your Wii. It will allow you to launch an exploit to boot an from emulated NAND from external storage, instead of your Wii's internal NAND. It will allow you to launch an exploit to boot an from emulated NAND from external storage, rather than use your Wii's internal NAND. + ![](/images/modmii/hackmii-wizard-2.png) -On a related note, you can also make a NAND backup without modifying your Wii at all. Find ModMii's "Support" folder and launch `Casper2BootMii.bat`.
It will save some files to a folder named `COPY_TO_SD`, copy the files inside it to your SD card and [launch an exploit](get-started).
It will save some files to a folder named `COPY_TO_SD`; copy the files inside it to your SD card and launch an exploit like [Wilbrand](wilbrand). +1. Select the exploit you would like to use to mod your Wii. The exploits below are outlined throughout this website, but in most cases we would reccommend using Wilbrand if you have an SD card on hand. -When following one of the exploit guides above, please avoid replacing the `boot.elf` file. -{: .notice--warning} + ![](/images/modmii/hackmii-wizard-3.png) +1. If you selected the Wilbrand option in the previous step, enter your Wii's MAC address. If you don't know how to check your Wii's MAC address, enter `Help` in the text box for an instructional video. -
-Click here for a full list of available tools. + ![](/images/modmii/hackmii-wizard-4.png) -| Tool | Description | -| --------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| W = ModMii Wizard <-- Start Here to Mod Your Wii! | This option can be used to mod your Wii for the first time or re-mod a Wii that has been previously modded. | -| SU = SysCheck Updater Wizard (update only your outdated softmods) | This option is useful for people who have old modifications installed to their wii such as DarkCorp/Ciosspaghetti that can potetially cause problems for the latest homebrew custom firmware. | -| U = USB-Loader Setup Wizard | This option will help you properly set up your USB loader to be able to load your disk backups from an SD or USB hard drive. | -| H = HackMii Solutions Wizard (Upside-Down HBC\No Vulnerable IOS Fix) | This option is useful for people who are having trouble getting the HackMii Installer to work, or if they just simply have an upside down homebrew channel, or if DarkCorp/Ciosspaghetti was installed and there was no homebrew channel. | -| AW = Abstinence Wizard (Non-permanent Wii Hacks) | This option is useful for people who dont want to make any permanent modifications to their Wii but still want to have some of the benefits that homebrew can offer. | -| RC = Region Change Wizard | This option can be used to change the region of your Wii without bricking it (this is the best region changer tutorial available on the internet!). | -| S = SNEEK Installation, EmuNAND Builder\Modifier, Game Bulk Extractor | This option will help you properly set up an EmuNAND (aka neek2o) onto your SD or USB. benefits for emunand include extra storage space for save games or channels. and the benefit of not making any permanent modifications to your Wii. benefits for emunand include extra storage space for save games or channels. and the benefit of not making any permanent modifications to your Wii. | -| F = open a File or Folder with ModMii for many more functions! | This option is an advanced tool especially helpful for developers. | -| 1 = Download Page 1 (System Menus, IOSs, MIOSs, Channels, etc.) | This option opens the first download page that includes most of the key parts for the system menu (downloaded from NUS). | -| 2 = Download Page 2 (Apps, USB-Loader Files, CheatCodes, etc.) | This option opens the second download page that includes exploits and useful apps for your Wii including some PC programs. | -| 3 = Download Page 3 (System Menu Themes) | This option opens the third download page that includes some system menu themes and items required to install system menu themes (base apps are downloaded from NUS). | -| 4 = Download Page 4 (cIOSs and cMIOSs) | This option opens the fourth download page that includes cIOSes and cMIOSes for use in USB loaders. It is recommended to just install the recommended cioses unless you plan to do some testing. It is recommended to just install the recommended cioses unless you plan to do some testing. | -| A = Advanced Downloads and Forwarder DOL\ISO Builder | This option is an advanced tool used to better customize downloads or allow you to build a dol executable useful for fowarders (channels on the system menu to access Wii applications). | -| L = Load Download Queue | This option will download all of the required titles need for the Wii system menu (titles are downloaded from NUS) | -| C = Build Config Files for Bootmii, Wad Manager or Multi-Mod Manager | This option will help you build configuration files required for certain applications. | -| FC = File Cleanup & App Updater: Update Apps and\or remove un-needed files | This option is useful for people who want to clean out their SD or USB of apps deemed outdated, useless, or otherwise depreciated. | -| M = ModMii Skin Mode: use your mouse instead of your keyboard! | This option will launch ModMii skin mode. Some advanced options may not be available in this view. Some advanced options may not be available in this view. | +1. Verify where you would like to save files for your SD Card and/or USB Drive. -
+ ![](/images/modmii/modmii-wizard-12.png) -
-Click here for a full list of available options. +1. Confirm your settings are correct, and then press `Finish`. Once you press the button, ModMii will begin to process and download files in the background, and will automatically generate and open a guide for you. From here, you should follow the guide generated by ModMii. After finishing this guide, it is recommended that you use the [SysCheck Updater Wizard](#syscheck-updater-wizard) to undo any other problematic modifications on your Wii. -| Option | Description | -| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- | -| D = Change Drive letter: | Changes where your SD files are saved to. | -| DU = Change Drive letter for USB: | Changes where your USB files are saved to. | -| d2x = change d2x cIOS version built: | Changes the cios version ModMii downloads. | -| H = Hermes cIOSs (202 & 222-224) will also be recommended | Enables Hermes IOS to be recommended and downloaded in the syscheck updater (will be stubbed if disabled). | -| CM = cMIOS included in recommended cIOSs | Enables cMIOS to be recommended and downloaded in the syscheck updater (will install stock MIOS if disabled). | -| E = Extra Brick Protection in ModMii Wizard Guides | Enables ModMiis Extra Brick Protection IOSes to be recommended and used in the syscheck updater tool. | -| U = Update IOSs. U = Update IOSs. Wizard/SysCheck-Updater to update Active IOSs | Updates Existing IOSes to the latest version available on NUS. | -| AU = Auto-Updating downloads will skip update check if cached | Will skip downloading the files if already in the queue. | -| FWD = Install USB-Loader Forwarder in ModMii Wizard Guides | Will include the USB loader forwarder wad file in the USB loader wizard guides. | -| PC = PC Programs Save Location | Changes the save location for the downloadable PC programs. | -| RS = Root Save: Save IOSs\MIOSs to Root instead of WAD Folder | Saves IOSs\MIOSs to Root instead of WAD Folder. | -| 1 = Do not Keep 00000001 or NUS Folders for IOSs\MIOSs\SMs etc | Deletes the folder used for compiling the wad file and just gives you the wad file. | -| n2o = neek2o - build mod of s\uneek instead of original | Uses a better modified version of neek2o in the EmuNAND builder. | -| SSD = SNEEK and SNEEK+DI SD Access | Allows for SNEEK and SNEEK+DI access on the SD card. | -| F = Font.bin Colour for SNEEK/UNEEK | Changes the font color for neek2o. | -| SV = SNEEK Verbose Output | Displays extra information regarding EmuNAND. | -| V = Verbose for ModMii Skin & nandBinCheck | Displays another window with extra information regarding a nand check. | -| SO = Play sound at Finish | Plays a fun jingle after a successful download. | -| A = Auto-Update ModMii at program start | Will automatically check for updates when ModMii is launched. | -| N = Check for New versions of ModMii right now | Will check online for a ModMii update. | - -
+ ![](/images/modmii/hackmii-wizard-5.png) [Click here to go back to the site index.](site-navigation) {: .notice--info} diff --git a/_pages/zh_TW/nintendont.md b/_pages/zh_TW/nintendont.md new file mode 100644 index 000000000..d7eef1b3f --- /dev/null +++ b/_pages/zh_TW/nintendont.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="410.html" %} diff --git a/_pages/zh_TW/recommended-homebrew.md b/_pages/zh_TW/recommended-homebrew.md index 0f9a58d7f..c08f8a4a7 100644 --- a/_pages/zh_TW/recommended-homebrew.md +++ b/_pages/zh_TW/recommended-homebrew.md @@ -16,7 +16,7 @@ Homebrew that has the ability to make permanant changes to your Wii are highligh + [**AnyRegion Changer ME**](https://oscwii.org/library/app/ARCME) - ModMii edition of AnyRegion Changer. While a powerful tool for changing region settings, it can also lead to severe bricks like [Korean Kii/Error 003](bricks#korean-kiierror-003-brick) so **only use this app if you know what you are doing**. + [**WiiXplorer-SS**](https://oscwii.org/library/app/wiixplorer-ss) - A modified and updated version of WiiXplorer. A file manager for the Wii, it allows you to view and customize files both on an SD card, a USB device, and the internal Wii memory. For this reason it is a very powerful but also dangerous tool - don't modify files on the system NAND unless you know what you are doing, as it can lead to various types of [bricks](bricks). + [**SaveGame Manager GX**](https://oscwii.org/library/app/SaveGame_Manager_GX) - A savegame/Mii extractor for the Wii. It supports GameCube memory cards (physical and virtual), emuNANDs, normal and protected saves, themes, and more. -+ [**MyMenuifyMod**](https://oscwii.org/library/app/mymenuifymod) - An application that allows you to theme the Wii Menu. While quite useful to make your Wii unique, it also has the ability to cause a [minor brick](bricks#theme-brick), so make sure to read our [theme guide](themes) for safe usage instructions. ++ [**csm-installer**](https://oscwii.org/library/app/csm-installer) - An application that allows you to theme the Wii Menu. While quite useful to make your Wii unique, it also has the ability to cause a [minor brick](bricks#theme-brick), so make sure to read our [theme guide](themes) for safe usage instructions. + [CleanRip](https://oscwii.org/library/app/CleanRip) - A tool to backup GameCube and Wii discs. Further information can be found in our [disc dumping guide](dump-games). + [**d2x cIOS installer**](https://oscwii.org/library/app/d2x-cios-installer) - A custom installer for Wii IOS, some of which is required for the functioning of certain software like USB loaders. You can see the guide [here](cios). + [FTPii](https://oscwii.org/library/app/ftpii) - An FTP server for your Wii, allowing you to transfer files across the network. diff --git a/_pages/zh_TW/riiconnect24.md b/_pages/zh_TW/riiconnect24.md index 9a1c22ca7..d1e91b7e8 100644 --- a/_pages/zh_TW/riiconnect24.md +++ b/_pages/zh_TW/riiconnect24.md @@ -1,138 +1,5 @@ --- -title: "RiiConnect24" +title: Redirecting... --- -{% include toc title="條目內容" %} - -If you need help with anything regarding this tutorial, please join [the RiiConnect24 Discord server](https://discord.gg/rc24) (recommended) or [e-mail us at support@riiconnect24.net](mailto:support@riiconnect24.net). -{: .notice--primary} - -[RiiConnect24](https://rc24.xyz/) allows you to use discontinued services from WiiConnect24, which include the News, Forecast, Everybody Votes, Nintendo and Check Mii Out Channel, along with Wii Mail. - -It's recommended to set your Wii to the current time before proceeding. Follow [this tutorial](rtc) in order to set it. Follow [this tutorial](wiiconnect24#updating-rtc-clock) in order to set it. -{: .notice--warning} - -DO NOT INSTALL RIICONNECT24 ON A WII MINI! It will not work and it will brick the system. It will not work and it will brick the system. -{: .notice--danger} - -### 必備項目 - -Follow [this tutorial](riiconnect24-vwii) if you'd like to install RiiConnect24 on vWii (Wii Mode on Wii U). -{: .notice--primary} - -+ 一張 SD 卡或 USB 隨身碟 -+ A Wii with an Internet connection -+ A PC with an Internet connection -+ [RiiConnect24 Patcher (Windows, Mac and Linux)](https://github.com/riiconnect24/RiiConnect24-Patcher/releases) -+ [YAWM ModMii Edition](https://oscwii.org/library/app/yawmme) - -### Instructions - -#### Section I - Using RiiConnect24 Patcher - -1. Click the link above to go to the GitHub page where the patcher is. -1. Download `RiiConnect24Patcher.bat` if you are on Windows, and `RiiConnect24Patcher.sh` if you are on a Unix system -1. RiiConnect24 Patcher Main Screen - + On Windows run `RiiConnect24Patcher.bat`. On Unix systems, open Terminal and type `bash`, then drag `RiiConnect24Patcher.sh` into the terminal then press enter. It should look like this: `bash RiiConnect24Patcher.sh`. - + On macOS/Linux systems, open Terminal and type `bash`, then drag `RiiConnect24Patcher.sh` into the terminal then press enter. It should look like this: `bash //RiiConnect24Patcher.sh`. -1. Press 1 to choose "`Start`" and confirm your selection by pressing `ENTER`. (NOTE: These screenshots are from the Windows version of the patcher.) - - ![](/images/riiconnect24/patcher/1.JPG) - -1. Select the device you're patching for. - - ![](/images/riiconnect24/patcher/2.JPG) - -1. For this guide, choose "`Install RiiConnect24 on your Wii`" - - ![](/images/riiconnect24/patcher/3.JPG) - -1. Choose "`Express (Recommended)`". It will give you everything you need. It will give you everything you need. - - ![](/images/riiconnect24/patcher/4.JPG) - -1. Select your region. - - ![](/images/riiconnect24/patcher/5.JPG) - -1. While you're at it, RiiConnect24 Patcher can additionally download some other optional channels that do not use RiiConnect24. `[X]` 代表目前所選之選項。 `[X]` represents the options that selected. Just press 5 and `ENTER` if you're not interested. - - ![](/images/riiconnect24/patcher/6.JPG) - -1. Connect your SD Card or USB Drive to your computer and select "`1`". - - ![](/images/riiconnect24/patcher/7.JPG) - -1. If your device was detected successfully, select "`1`". If your device was detected successfully, select "`1`". If not, make sure there's a folder called `apps` on your SD Card or USB Drive and try again. - - ![](/images/riiconnect24/patcher/8.JPG) - -1. The patcher will download apps now - please be patient. - - ![](/images/riiconnect24/patcher/9.JPG) - -1. Once you reach the screen that says `Patching done`, you can exit the patcher. All the files should already be on your SD card. - - ![](/images/riiconnect24/patcher/10.JPG) - - ![](/images/riiconnect24/patcher/11.PNG) - -1. If it did not copy everything automatically to your SD Card or USB Device, copy the `WAD` and `apps` folder next to `RiiConnect24Patcher.bat` to your SD Card or USB Device. - -#### 第二節 — 安裝 WAD 檔案 - -If you are using Dolphin, you have finished the guide. Install the WADs by going to `Tools -> Install WAD` within Dolphin. -{: .notice--primary} - -You will now install the patched IOS and Channel WADs that are required to use RiiConnect24. - -1. Extract the YAWM ModMii Edition `.zip` file, and copy the `apps` folder to your SD card or USB drive. -1. Put your SD card or USB drive in your Wii. -1. Launch the Homebrew Channel on your Wii. -1. Launch YAWM ModMii Edition. -1. Select the device you have put the RiiConnect24 files on. -1. Highlight all the WADs in the `wad` folder by pressing the + Button to select them. When all of the WADs are selected, press A twice to install the WADs. When all of the WADs are selected, press A twice to install the WADs. -1. After they are successfully installed, press the HOME Button to exit back to the Homebrew Channel. - -#### Section III - Patching nwc24msg.cfg - -You will now patch your `nwc24msg.cfg` file which is required in order to use Wii Mail. - -1. Launch RiiConnect24 Mail Patcher. -1. It should only take a few seconds to patch your nwc24msg.cfg. When it's done, press the HOME Button to exit. When it's done, press the HOME Button to exit. - -#### Section IV - Connecting - -The old DNS server `164.132.44.106` has been deprecated as of `June 1st, 2023` and is no longer available to use. [Read more here](riiconnect24-dns-update). -{: .notice--warning} - -If you're getting errors such as `WiiConnect24 and Wii Shop Channel currently not being offered in your country`, go to Wii Settings -> Last Page -> Country and change it to United Kingdom. You will get this error when using a country that we don't support. Contact us at [support@riiconnect24.net](mailto:support@riiconnect24.net) if you need more help. You will get this error when using a country that RiiConnect24 does not support. -{: .notice--warning} - -If you get error 107245, you did not install the patched IOS.
If you get error 220602, see [this](faq#for-riiconnect24-users) page.
If you get error 107304, see [this](faq#for-riiconnect24-users-1) page.
-{: .notice--warning} - -You will now set your DNS to RiiConnect24 servers. You will now set your DNS to our servers. This is optional but it's recommended, because it enhances the use of RiiConnect24 and Wiimmfi by making some other features available. - -1. Go to `Wii Options`. -1. Go to `Wii Settings`. -1. Go to `Page 2`, then click on `Internet`. -1. Go to `Connection Settings`. -1. Select your current connection. -1. Go to `Change Settings`. -1. Go to `Auto-Obtain DNS` (Not IP Address), then select `No`, then `Advanced Settings`. -1. Type in `167.86.108.126` as the primary DNS. -1. Type in `1.1.1.1` as the secondary DNS. -1. Select `Confirm`, then select `Save`. -1. Select `OK` to perform a connection test. -1. If the connection test was successful, select `No` to skip the Wii System Update. -1. Go to `WiiConnect24`, then `WiiConnect24` again, and make sure it is enabled. -1. Back on the WiiConnect24 menu, go to `Standby Connection` and make sure it is enabled. -1. At `Slot Illumination`, we recommend you set the disc light to `Dim` or `Bright`, but this is optional. -1. Finally, go to the `Internet` section, then `User Agreements` or `Agreement/Contact`, then `Yes`. Please read through this. Please read through this. - -[Return to WiiConnect24](wiiconnect24) -{: .notice--info} - -[Click here to go back to the site index.](site-navigation) -{: .notice--info} +{% include redirect.html redirect_to="https\://www\.wiilink24.com/guide/install/" %} diff --git a/_pages/zh_TW/riitag.md b/_pages/zh_TW/riitag.md new file mode 100644 index 000000000..e6b6bc322 --- /dev/null +++ b/_pages/zh_TW/riitag.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="https\://wiki.hacks.guide/wiki/RiiTag" %} diff --git a/_pages/zh_TW/riivolution.md b/_pages/zh_TW/riivolution.md new file mode 100644 index 000000000..d7eef1b3f --- /dev/null +++ b/_pages/zh_TW/riivolution.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="410.html" %} diff --git a/_pages/zh_TW/themes.md b/_pages/zh_TW/themes.md index 192104948..b2fb4044f 100644 --- a/_pages/zh_TW/themes.md +++ b/_pages/zh_TW/themes.md @@ -4,13 +4,16 @@ title: "Installing Wii Menu Themes" {% include toc title="條目內容" %} -This guide is intended to be the last you will ever need when it comes to theming on the Wii, not only providing instructions for the Wii Menu through MyMenuifyMod, but also with themes on WiiFlow Lite, USB Loader GX, and The Homebrew Channel. Additionally, forwarders are covered. +This guide is intended to be the last you will ever need when it comes to theming on the Wii, not only providing instructions for the Wii Menu through csm-installer, but also with themes on WiiFlow Lite, USB Loader GX, and The Homebrew Channel. Additionally, forwarders are covered. ### Are you tired of the boring, plain white theme on your Wii Menu, and want a cool theme instead? This tutorial will help you get a new theme for your Wii Menu! DO NOT CONTINUE WITH THIS GUIDE UNLESS YOU HAVE ADEQUATE BRICK PROTECTION, SPECIFICALLY [BOOTMII](bootmii) AND [PRIILOADER](priiloader)! {: .notice--danger} +This tutorial does not work on the Wii mini. Do not attempt this tutorial on the Wii mini or it will cause a [brick](bricks#theme-brick). +{: .notice--warning} + csm-installer has built in safety features to prevent from installing bad or corrupt Wii Menu themes, so please opt to use it instead of other theme installation homebrew. {: .notice--warning} diff --git a/_pages/zh_TW/usbloadergx.md b/_pages/zh_TW/usbloadergx.md new file mode 100644 index 000000000..00a63864a --- /dev/null +++ b/_pages/zh_TW/usbloadergx.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-loaders.html" %} diff --git a/_pages/zh_TW/wiibackupmanager.md b/_pages/zh_TW/wiibackupmanager.md new file mode 100644 index 000000000..063d7bba0 --- /dev/null +++ b/_pages/zh_TW/wiibackupmanager.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-backups.html" %} diff --git a/_pages/zh_TW/wiiconnect24.md b/_pages/zh_TW/wiiconnect24.md index d4b427acc..3361dc685 100644 --- a/_pages/zh_TW/wiiconnect24.md +++ b/_pages/zh_TW/wiiconnect24.md @@ -3,44 +3,21 @@ title: "WiiConnect24" --- {% include toc title="條目內容" %} + -This guide provides different means of regaining WiiConnect24 functionality on your console. Although not at all nessecary, it is a "nice to have" feature that was originally used for online connectivity in certain applications on the console. These apps include the Forecast/News Channel, Nintendo Channel, Check Mii Out Channel, some Japan-exclusive channels, and more. Please bear in mind, the functionality you gain depends entirely on what service(s) you use. +[WiiConnect24](https://wikipedia.org/wiki/WiiConnect24) was a service that allowed users with Internet connected Wiis to view the weather & local news, send messages to friends, participate in Mii contest, and more. WiiConnect24 was discontinued on June 27th, 2013. -### Service Overview +## RiiConnect24 + WiiLink +[RiiConnect24](https://rc24.xyz) is a revival service for WiiConnect24 that started in 2015, which allows you to regain its functionality on your console. As of late 2023, the service is now owned by WiiLink, a project that started in 2020 that was previously aiming at the Japanese-exclusive channels. -#### Note about service compatibility: -Both services listed below are compatible with one another and can be loaded on the same console. With this said, it should be noted that when installing one channel over the other (WiiLink's Forecast Channel over RiiConnect24's Forecast Channel for example), the channel you are installing will overwrite the old one. - - -#### Service Support Status -✅ - In support
⚠️ - In development
⛔ - No support - -| Service Name | WiiLink | RiiConnect24 | -| ----------------------- | ------- | ------------ | -| Forecast Channel | ✅ | ✅ | -| News Channel | ⚠️ | ✅ | -| Wii Mail | ✅ | ✅ | -| Everybody Votes Channel | ✅ | ✅ | -| Nintendo Channel | ✅ | ✅ | -| Check Mii Out Channel | ⚠️ | ✅ | -| Wii Room | ✅ | ⛔ | -| Food Channel | ✅ | ⛔ | -| Photo Prints Channel | ✅ | ⛔ | -| Kirby TV Channel | ✅ | ⛔ | -| TV Guide Channel | ⚠️ | ⛔ | - -#### WiiLink -A newer WC24/Japanese channel revival service that started in 2020, but is rapidly regaining functionality in many different channels. - -Service support status can be found [here](https://www.wiilink24.com/status).
Their guide can be found [here](https://www.wiilink24.com/guide). - -#### RiiConnect24 -The longest lasting WC24 revival service, currently only with support for the worldwide WC24 channels as well as mail services. - -Service support status can be found [here](https://rc24.xyz/stats/).
RiiConnect24 currently does not have a self-hosted guide, however you can find ours [here](riiconnect24). +There is a patcher that ships both of these services together as one - meaning you get all of the international and Japanese-only channels in one package. The guide on how to install these services can be found [on WiiLink's website.](https://www.wiilink24.com/guide/) + ### Updating RTC Clock -If you choose to install either of these services on your Wii, it is advised to synchronize its external clock in order to prevent various issues (such as inability to use said services) that may arise otherwise. The steps to do so can be found below: #### What you need + A working Internet connection on your Wii diff --git a/_pages/zh_TW/wiiflow.md b/_pages/zh_TW/wiiflow.md new file mode 100644 index 000000000..00a63864a --- /dev/null +++ b/_pages/zh_TW/wiiflow.md @@ -0,0 +1,5 @@ +--- +title: Redirecting... +--- + +{% include redirect.html redirect_to="wii-loaders.html" %} diff --git a/_sass/minimal-mistakes.scss b/_sass/minimal-mistakes.scss deleted file mode 100644 index 3b252e562..000000000 --- a/_sass/minimal-mistakes.scss +++ /dev/null @@ -1,40 +0,0 @@ -/*! - * Minimal Mistakes Jekyll Theme 4.24.0 by Michael Rose - * Copyright 2013-2020 Michael Rose - mademistakes.com | @mmistakes - * Licensed under MIT (https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE) -*/ - -/* Variables */ -@import "minimal-mistakes/variables"; - -/* Mixins and functions */ -@import "minimal-mistakes/vendor/breakpoint/breakpoint"; -@include breakpoint-set("to ems", true); -@import "minimal-mistakes/vendor/magnific-popup/magnific-popup"; // Magnific Popup -@import "minimal-mistakes/vendor/susy/susy"; -@import "minimal-mistakes/mixins"; - -/* Core CSS */ -@import "minimal-mistakes/reset"; -@import "minimal-mistakes/base"; -@import "minimal-mistakes/forms"; -@import "minimal-mistakes/tables"; -@import "minimal-mistakes/animations"; - -/* Components */ -@import "minimal-mistakes/buttons"; -@import "minimal-mistakes/notices"; -@import "minimal-mistakes/masthead"; -@import "minimal-mistakes/navigation"; -@import "minimal-mistakes/footer"; -@import "minimal-mistakes/search"; -@import "minimal-mistakes/syntax"; - -/* Utility classes */ -@import "minimal-mistakes/utilities"; - -/* Layout specific */ -@import "minimal-mistakes/page"; -@import "minimal-mistakes/archive"; -@import "minimal-mistakes/sidebar"; -@import "minimal-mistakes/print"; diff --git a/_sass/minimal-mistakes/_animations.scss b/_sass/minimal-mistakes/_animations.scss deleted file mode 100644 index 25ef77fbb..000000000 --- a/_sass/minimal-mistakes/_animations.scss +++ /dev/null @@ -1,21 +0,0 @@ -/* ========================================================================== - ANIMATIONS - ========================================================================== */ - -@-webkit-keyframes intro { - 0% { - opacity: 0; - } - 100% { - opacity: 1; - } -} - -@keyframes intro { - 0% { - opacity: 0; - } - 100% { - opacity: 1; - } -} \ No newline at end of file diff --git a/_sass/minimal-mistakes/_archive.scss b/_sass/minimal-mistakes/_archive.scss deleted file mode 100644 index 9f576323e..000000000 --- a/_sass/minimal-mistakes/_archive.scss +++ /dev/null @@ -1,463 +0,0 @@ -/* ========================================================================== - ARCHIVE - ========================================================================== */ - -.archive { - margin-top: 1em; - margin-bottom: 2em; - - @include breakpoint($large) { - float: right; - width: calc(100% - #{$right-sidebar-width-narrow}); - padding-right: $right-sidebar-width-narrow; - } - - @include breakpoint($x-large) { - width: calc(100% - #{$right-sidebar-width}); - padding-right: $right-sidebar-width; - } -} - -.archive__item { - position: relative; - - a { - position: relative; - z-index: 10; - } - - a[rel="permalink"] { - position: static; - } -} - -.archive__subtitle { - margin: 1.414em 0 0.5em; - padding-bottom: 0.5em; - font-size: $type-size-5; - color: $muted-text-color; - border-bottom: 1px solid $border-color; - - + .list__item .archive__item-title { - margin-top: 0.5em; - } -} - -.archive__item-title { - margin-bottom: 0.25em; - font-family: $sans-serif-narrow; - line-height: initial; - overflow: hidden; - text-overflow: ellipsis; - - a[rel="permalink"]::before { - content: ''; - position: absolute; - left: 0; - top: 0; - right: 0; - bottom: 0; - } - - a + a { - opacity: 0.5; - } -} - -/* remove border*/ -.page__content { - .archive__item-title { - margin-top: 1em; - border-bottom: none; - } -} - -.archive__item-excerpt { - margin-top: 0; - font-size: $type-size-6; - - & + p { - text-indent: 0; - } - - a { - position: relative; - } -} - -.archive__item-teaser { - position: relative; - border-radius: $border-radius; - overflow: hidden; - - img { - width: 100%; - } -} - -.archive__item-caption { - position: absolute; - bottom: 0; - right: 0; - margin: 0 auto; - padding: 2px 5px; - color: #fff; - font-family: $caption-font-family; - font-size: $type-size-8; - background: #000; - text-align: right; - z-index: 5; - opacity: 0.5; - border-radius: $border-radius 0 0 0; - - @include breakpoint($large) { - padding: 5px 10px; - } - - a { - color: #fff; - text-decoration: none; - } -} - -/* - List view - ========================================================================== */ - -.list__item { - .page__meta { - margin: 0 0 4px; - font-size: 0.6em; - } -} - -/* - Grid view - ========================================================================== */ - -.archive { - .grid__wrapper { - /* extend grid elements to the right */ - - @include breakpoint($large) { - margin-right: -1 * $right-sidebar-width-narrow; - } - - @include breakpoint($x-large) { - margin-right: -1 * $right-sidebar-width; - } - } -} - -.grid__item { - margin-bottom: 2em; - - @include breakpoint($small) { - float: left; - width: span(5 of 10); - - &:nth-child(2n + 1) { - clear: both; - margin-left: 0; - } - - &:nth-child(2n + 2) { - clear: none; - margin-left: gutter(of 10); - } - } - - @include breakpoint($medium) { - margin-left: 0; /* override margin*/ - margin-right: 0; /* override margin*/ - width: span(3 of 12); - - &:nth-child(2n + 1) { - clear: none; - } - - &:nth-child(4n + 1) { - clear: both; - } - - &:nth-child(4n + 2) { - clear: none; - margin-left: gutter(1 of 12); - } - - &:nth-child(4n + 3) { - clear: none; - margin-left: gutter(1 of 12); - } - - &:nth-child(4n + 4) { - clear: none; - margin-left: gutter(1 of 12); - } - } - - .page__meta { - margin: 0 0 4px; - font-size: 0.6em; - } - - .page__meta-sep { - display: block; - - &::before { - display: none; - } - } - - .archive__item-title { - margin-top: 0.5em; - font-size: $type-size-5; - } - - .archive__item-excerpt { - display: none; - - @include breakpoint($medium) { - display: block; - font-size: $type-size-6; - } - } - - .archive__item-teaser { - @include breakpoint($small) { - max-height: 200px; - } - - @include breakpoint($medium) { - max-height: 120px; - } - } -} - -/* - Features - ========================================================================== */ - -.feature__wrapper { - @include clearfix(); - margin-bottom: 2em; - border-bottom: 1px solid $border-color; - - .archive__item-title { - margin-bottom: 0; - } -} - -.feature__item { - position: relative; - margin-bottom: 2em; - font-size: 1.125em; - - @include breakpoint($small) { - float: left; - margin-bottom: 0; - width: span(4 of 12); - - &:nth-child(3n + 1) { - clear: both; - margin-left: 0; - } - - &:nth-child(3n + 2) { - clear: none; - margin-left: gutter(of 12); - } - - &:nth-child(3n + 3) { - clear: none; - margin-left: gutter(of 12); - } - - .feature__item-teaser { - max-height: 200px; - overflow: hidden; - } - } - - .archive__item-body { - padding-left: gutter(1 of 12); - padding-right: gutter(1 of 12); - } - - a.btn::before { - content: ''; - position: absolute; - left: 0; - top: 0; - right: 0; - bottom: 0; - } - - &--left { - position: relative; - float: left; - margin-left: 0; - margin-right: 0; - width: 100%; - clear: both; - font-size: 1.125em; - - .archive__item { - float: left; - } - - .archive__item-teaser { - margin-bottom: 2em; - } - - a.btn::before { - content: ''; - position: absolute; - left: 0; - top: 0; - right: 0; - bottom: 0; - } - - @include breakpoint($small) { - .archive__item-teaser { - float: left; - width: span(5 of 12); - } - - .archive__item-body { - float: right; - padding-left: gutter(0.5 of 12); - padding-right: gutter(1 of 12); - width: span(7 of 12); - } - } - } - - &--right { - position: relative; - float: left; - margin-left: 0; - margin-right: 0; - width: 100%; - clear: both; - font-size: 1.125em; - - .archive__item { - float: left; - } - - .archive__item-teaser { - margin-bottom: 2em; - } - - a.btn::before { - content: ''; - position: absolute; - left: 0; - top: 0; - right: 0; - bottom: 0; - } - - @include breakpoint($small) { - text-align: right; - - .archive__item-teaser { - float: right; - width: span(5 of 12); - } - - .archive__item-body { - float: left; - width: span(7 of 12); - padding-left: gutter(0.5 of 12); - padding-right: gutter(1 of 12); - } - } - } - - &--center { - position: relative; - float: left; - margin-left: 0; - margin-right: 0; - width: 100%; - clear: both; - font-size: 1.125em; - - .archive__item { - float: left; - width: 100%; - } - - .archive__item-teaser { - margin-bottom: 2em; - } - - a.btn::before { - content: ''; - position: absolute; - left: 0; - top: 0; - right: 0; - bottom: 0; - } - - @include breakpoint($small) { - text-align: center; - - .archive__item-teaser { - margin: 0 auto; - width: span(5 of 12); - } - - .archive__item-body { - margin: 0 auto; - width: span(7 of 12); - } - } - } -} - -/* Place inside an archive layout */ - -.archive { - .feature__wrapper { - .archive__item-title { - margin-top: 0.25em; - font-size: 1em; - } - } - - .feature__item, - .feature__item--left, - .feature__item--center, - .feature__item--right { - font-size: 1em; - } -} - -/* - Wide Pages - ========================================================================== */ - - .wide { - .archive { - @include breakpoint($large) { - padding-right: 0; - } - - @include breakpoint($x-large) { - padding-right: 0; - } - } -} - -/* Place inside a single layout */ - -.layout--single { - .feature__wrapper { - display: inline-block; - } -} diff --git a/_sass/minimal-mistakes/_base.scss b/_sass/minimal-mistakes/_base.scss deleted file mode 100644 index f81cabdc0..000000000 --- a/_sass/minimal-mistakes/_base.scss +++ /dev/null @@ -1,363 +0,0 @@ -/* ========================================================================== - BASE ELEMENTS - ========================================================================== */ - -html { - /* sticky footer fix */ - position: relative; - min-height: 100%; -/* hacks-guide change start: add text selection custom colours */ - ::selection { - color: $text-color; - background: $text-highlight-color; - } -/* hacks-guide change end */ -} - -body { - margin: 0; - padding: 0; - color: $text-color; - font-family: $global-font-family; - line-height: 1.5; - - &.overflow--hidden { - /* when primary navigation is visible, the content in the background won't scroll */ - overflow: hidden; - } -} - -h1, -h2, -h3, -h4, -h5, -h6 { - margin: 2em 0 0.5em; - line-height: 1.2; - font-family: $header-font-family; - font-weight: bold; -} - -h1 { - margin-top: 0; - font-size: $h-size-1; -} - -h2 { - font-size: $h-size-2; -} - -h3 { - font-size: $h-size-3; -} - -h4 { - font-size: $h-size-4; -} - -h5 { - font-size: $h-size-5; -} - -h6 { - font-size: $h-size-6; -} - -small, -.small { - font-size: $type-size-6; -} - -p { - margin-bottom: 1.3em; -} - -u, -ins { - text-decoration: none; - border-bottom: 1px solid $text-color; - a { - color: inherit; - } -} - -del a { - color: inherit; -} - -/* reduce orphans and widows when printing */ - -p, -pre, -blockquote, -ul, -ol, -dl, -figure, -table, -fieldset { - orphans: 3; - widows: 3; -} - -/* abbreviations */ - -abbr[title], -abbr[data-original-title] { - text-decoration: none; - cursor: help; - border-bottom: 1px dotted $text-color; -} - -/* blockquotes */ - -blockquote { - margin: 2em 1em 2em 0; - padding-left: 1em; - padding-right: 1em; - font-style: italic; - border-left: 0.25em solid $primary-color; - - cite { - font-style: italic; - - &:before { - content: "\2014"; - padding-right: 5px; - } - } -} - -/* links */ - -a { - &:focus { - @extend %tab-focus; - } - - &:visited { - color: $link-color-visited; - } - - &:hover { - color: $link-color-hover; - outline: 0; - } -} - -/* buttons */ - -button:focus { - @extend %tab-focus; -} - -/* code */ - -tt, -code, -kbd, -samp, -pre { - font-family: $monospace; -} - -pre { - overflow-x: auto; /* add scrollbars to wide code blocks*/ -} - -p > code, -a > code, -li > code, -figcaption > code, -td > code { - padding-top: 0.1rem; - padding-bottom: 0.1rem; - font-size: 0.8em; - background: $code-background-color; - border-radius: $border-radius; - - &:before, - &:after { - letter-spacing: -0.2em; - content: "\00a0"; /* non-breaking space*/ - } -} - -/* horizontal rule */ - -hr { - display: block; - margin: 1em 0; - border: 0; - border-top: 1px solid $border-color; -} - -/* lists */ - -ul li, -ol li { - margin-bottom: 0.5em; -} - -li ul, -li ol { - margin-top: 0.5em; -} - -/* - Media and embeds - ========================================================================== */ - -/* Figures and images */ - -figure { - display: -webkit-box; - display: flex; - -webkit-box-pack: justify; - justify-content: space-between; - -webkit-box-align: start; - align-items: flex-start; - flex-wrap: wrap; - margin: 2em 0; - - img, - iframe, - .fluid-width-video-wrapper { - margin-bottom: 1em; - } - - img { - width: 100%; - border-radius: $border-radius; - -webkit-transition: $global-transition; - transition: $global-transition; - } - - > a { - display: block; - } - - &.half { - > a, - > img { - @include breakpoint($small) { - width: calc(50% - 0.5em); - } - } - - figcaption { - width: 100%; - } - } - - &.third { - > a, - > img { - @include breakpoint($small) { - width: calc(33.3333% - 0.5em); - } - } - - figcaption { - width: 100%; - } - } -} - -/* Figure captions */ - -figcaption { - margin-bottom: 0.5em; - color: $muted-text-color; - font-family: $caption-font-family; - font-size: $type-size-6; - - a { - -webkit-transition: $global-transition; - transition: $global-transition; - - &:hover { - color: $link-color-hover; - } - } -} - -/* Fix IE9 SVG bug */ - -svg:not(:root) { - overflow: hidden; -} - -/* - Navigation lists - ========================================================================== */ - -/** - * Removes margins, padding, and bullet points from navigation lists - * - * Example usage: - * - */ - -nav { - ul { - margin: 0; - padding: 0; - } - - li { - list-style: none; - } - - a { - text-decoration: none; - } - - /* override white-space for nested lists */ - ul li, - ol li { - margin-bottom: 0; - } - - li ul, - li ol { - margin-top: 0; - } -} - -/* - Global animation transition - ========================================================================== */ - -b, -i, -strong, -em, -blockquote, -p, -q, -span, -figure, -img, -h1, -h2, -header, -input, -a, -tr, -td, -form button, -input[type="submit"], -.btn, -.highlight, -.archive__item-teaser { - -webkit-transition: $global-transition; - transition: $global-transition; -} diff --git a/_sass/minimal-mistakes/_buttons.scss b/_sass/minimal-mistakes/_buttons.scss deleted file mode 100644 index 9ef60a845..000000000 --- a/_sass/minimal-mistakes/_buttons.scss +++ /dev/null @@ -1,97 +0,0 @@ -/* ========================================================================== - BUTTONS - ========================================================================== */ - -/* - Default button - ========================================================================== */ - -.btn { - /* default */ - display: inline-block; - margin-bottom: 0.25em; - padding: 0.5em 1em; - font-family: $sans-serif; - font-size: $type-size-6; - font-weight: bold; - text-align: center; - text-decoration: none; - border-width: 0; - border-radius: $border-radius; - cursor: pointer; - - .icon { - margin-right: 0.5em; - } - - .icon + .hidden { - margin-left: -0.5em; /* override for hidden text*/ - } - - /* button colors */ - $buttoncolors: - (primary, $primary-color), - (inverse, #fff), - (light-outline, transparent), - (success, $success-color), - (warning, $warning-color), - (danger, $danger-color), - (info, $info-color), - (facebook, $facebook-color), - (twitter, $twitter-color), - (linkedin, $linkedin-color); - - @each $buttoncolor, $color in $buttoncolors { - &--#{$buttoncolor} { - @include yiq-contrasted($color); - @if ($buttoncolor == inverse) { - border: 1px solid $border-color; - } - @if ($buttoncolor == light-outline) { - border: 1px solid #fff; - } - - &:visited { - @include yiq-contrasted($color); - } - - &:hover { - @include yiq-contrasted(mix(#000, $color, 20%)); - } - } - } - - /* fills width of parent container */ - &--block { - display: block; - width: 100%; - - + .btn--block { - margin-top: 0.25em; - } - } - - /* disabled */ - &--disabled { - pointer-events: none; - cursor: not-allowed; - filter: alpha(opacity=65); - box-shadow: none; - opacity: 0.65; - } - - /* extra large button */ - &--x-large { - font-size: $type-size-4; - } - - /* large button */ - &--large { - font-size: $type-size-5; - } - - /* small button */ - &--small { - font-size: $type-size-7; - } -} \ No newline at end of file diff --git a/_sass/minimal-mistakes/_footer.scss b/_sass/minimal-mistakes/_footer.scss deleted file mode 100644 index c0b0625bd..000000000 --- a/_sass/minimal-mistakes/_footer.scss +++ /dev/null @@ -1,85 +0,0 @@ -/* ========================================================================== - FOOTER - ========================================================================== */ - -.page__footer { - @include clearfix; - float: left; - margin-left: 0; - margin-right: 0; - width: 100%; - margin-top: 3em; - color: $muted-text-color; - -webkit-animation: $intro-transition; - animation: $intro-transition; - -webkit-animation-delay: 0.45s; - animation-delay: 0.45s; - background-color: $footer-background-color; - - footer { - @include clearfix; - margin-left: auto; - margin-right: auto; - margin-top: 2em; - max-width: 100%; - padding: 0 1em 2em; - - @include breakpoint($x-large) { - max-width: $x-large; - } - } - - a { - color: inherit; - text-decoration: none; - - &:hover { - text-decoration: underline; - } - } - - .fas, - .fab, - .far, - .fal { - color: $muted-text-color; - } -} - -.page__footer-copyright { - font-family: $global-font-family; - font-size: $type-size-7; -} - -.page__footer-follow { - ul { - margin: 0; - padding: 0; - list-style-type: none; - } - - li { - display: inline-block; - padding-top: 5px; - padding-bottom: 5px; - font-family: $sans-serif-narrow; - font-size: $type-size-6; - text-transform: uppercase; - } - - li + li:before { - content: ""; - padding-right: 5px; - } - - a { - padding-right: 10px; - font-weight: bold; - } - - .social-icons { - a { - white-space: nowrap; - } - } -} diff --git a/_sass/minimal-mistakes/_forms.scss b/_sass/minimal-mistakes/_forms.scss deleted file mode 100644 index 0dd9b480b..000000000 --- a/_sass/minimal-mistakes/_forms.scss +++ /dev/null @@ -1,359 +0,0 @@ -/* ========================================================================== - Forms - ========================================================================== */ - -form { - margin: 0 0 5px 0; - padding: 1em; - background-color: $form-background-color; - - fieldset { - margin-bottom: 5px; - padding: 0; - border-width: 0; - } - - legend { - display: block; - width: 100%; - margin-bottom: 5px * 2; - *margin-left: -7px; - padding: 0; - color: $text-color; - border: 0; - white-space: normal; - } - - p { - margin-bottom: (5px / 2); - } - - ul { - list-style-type: none; - margin: 0 0 5px 0; - padding: 0; - } - - br { - display: none; - } -} - -label, -input, -button, -select, -textarea { - vertical-align: baseline; - *vertical-align: middle; -} - -input, -button, -select, -textarea { - box-sizing: border-box; - font-family: $sans-serif; -} - -label { - display: block; - margin-bottom: 0.25em; - color: $text-color; - cursor: pointer; - - small { - font-size: $type-size-6; - } - - input, - textarea, - select { - display: block; - } -} - -input, -textarea, -select { - display: inline-block; - width: 100%; - padding: 0.25em; - margin-bottom: 0.5em; - color: $text-color; - background-color: $background-color; - border: $border-color; - border-radius: $border-radius; - box-shadow: $box-shadow; -} - -.input-mini { - width: 60px; -} - -.input-small { - width: 90px; -} - -input[type="image"], -input[type="checkbox"], -input[type="radio"] { - width: auto; - height: auto; - padding: 0; - margin: 3px 0; - *margin-top: 0; - line-height: normal; - cursor: pointer; - border-radius: 0; - border: 0 \9; - box-shadow: none; -} - -input[type="checkbox"], -input[type="radio"] { - box-sizing: border-box; - padding: 0; - *width: 13px; - *height: 13px; -} - -input[type="image"] { - border: 0; -} - -input[type="file"] { - width: auto; - padding: initial; - line-height: initial; - border: initial; - background-color: transparent; - background-color: initial; - box-shadow: none; -} - -input[type="button"], -input[type="reset"], -input[type="submit"] { - width: auto; - height: auto; - cursor: pointer; - *overflow: visible; -} - -select, -input[type="file"] { - *margin-top: 4px; -} - -select { - width: auto; - background-color: #fff; -} - -select[multiple], -select[size] { - height: auto; -} - -textarea { - resize: vertical; - height: auto; - overflow: auto; - vertical-align: top; -} - -input[type="hidden"] { - display: none; -} - -.form { - position: relative; -} - -.radio, -.checkbox { - padding-left: 18px; - font-weight: normal; -} - -.radio input[type="radio"], -.checkbox input[type="checkbox"] { - float: left; - margin-left: -18px; -} - -.radio.inline, -.checkbox.inline { - display: inline-block; - padding-top: 5px; - margin-bottom: 0; - vertical-align: middle; -} - -.radio.inline + .radio.inline, -.checkbox.inline + .checkbox.inline { - margin-left: 10px; -} - -/* - Disabled state - ========================================================================== */ - -input[disabled], -select[disabled], -textarea[disabled], -input[readonly], -select[readonly], -textarea[readonly] { - opacity: 0.5; - cursor: not-allowed; -} - -/* - Focus & active state - ========================================================================== */ - -input:focus, -textarea:focus { - border-color: $primary-color; - outline: 0; - outline: thin dotted \9; - box-shadow: inset 0 1px 3px rgba($text-color, 0.06), - 0 0 5px rgba($primary-color, 0.7); -} - -input[type="file"]:focus, -input[type="radio"]:focus, -input[type="checkbox"]:focus, -select:focus { - box-shadow: none; -} - -/* - Help text - ========================================================================== */ - -.help-block, -.help-inline { - color: $muted-text-color; -} - -.help-block { - display: block; - margin-bottom: 1em; - line-height: 1em; -} - -.help-inline { - display: inline-block; - vertical-align: middle; - padding-left: 5px; -} - -/* - .form-group - ========================================================================== */ - -.form-group { - margin-bottom: 5px; - padding: 0; - border-width: 0; -} - -/* - .form-inline - ========================================================================== */ - -.form-inline input, -.form-inline textarea, -.form-inline select { - display: inline-block; - margin-bottom: 0; -} - -.form-inline label { - display: inline-block; -} - -.form-inline .radio, -.form-inline .checkbox, -.form-inline .radio { - padding-left: 0; - margin-bottom: 0; - vertical-align: middle; -} - -.form-inline .radio input[type="radio"], -.form-inline .checkbox input[type="checkbox"] { - float: left; - margin-left: 0; - margin-right: 3px; -} - -/* - .form-search - ========================================================================== */ - -.form-search input, -.form-search textarea, -.form-search select { - display: inline-block; - margin-bottom: 0; -} - -.form-search .search-query { - padding-left: 14px; - padding-right: 14px; - margin-bottom: 0; - border-radius: 14px; -} - -.form-search label { - display: inline-block; -} - -.form-search .radio, -.form-search .checkbox, -.form-inline .radio { - padding-left: 0; - margin-bottom: 0; - vertical-align: middle; -} - -.form-search .radio input[type="radio"], -.form-search .checkbox input[type="checkbox"] { - float: left; - margin-left: 0; - margin-right: 3px; -} - -/* - .form--loading - ========================================================================== */ - -.form--loading:before { - content: ""; -} - -.form--loading .form__spinner { - display: block; -} - -.form:before { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - background-color: rgba(255, 255, 255, 0.7); - z-index: 10; -} - -.form__spinner { - display: none; - position: absolute; - top: 50%; - left: 50%; - z-index: 11; -} diff --git a/_sass/minimal-mistakes/_masthead.scss b/_sass/minimal-mistakes/_masthead.scss deleted file mode 100644 index 2dfefccef..000000000 --- a/_sass/minimal-mistakes/_masthead.scss +++ /dev/null @@ -1,93 +0,0 @@ -/* ========================================================================== - MASTHEAD - ========================================================================== */ - -.masthead { - position: relative; - border-bottom: 1px solid $border-color; - -webkit-animation: $intro-transition; - animation: $intro-transition; - -webkit-animation-delay: 0.15s; - animation-delay: 0.15s; - z-index: 20; - - &__inner-wrap { - @include clearfix; - margin-left: auto; - margin-right: auto; - padding: 1em; - max-width: 100%; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: justify; - -ms-flex-pack: justify; - justify-content: space-between; - font-family: $sans-serif-narrow; - - @include breakpoint($x-large) { - max-width: $max-width; - } - - nav { - z-index: 10; - } - - a { - text-decoration: none; - } - } -} - -.site-logo img { - max-height: 2rem; -} - -.site-title { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-item-align: center; - align-self: center; - font-weight: bold; - // z-index: 20; -} - -.site-subtitle { - display: block; - font-size: $type-size-8; -} - -.masthead__menu { - float: left; - margin-left: 0; - margin-right: 0; - width: 100%; - clear: both; - - .site-nav { - margin-left: 0; - - @include breakpoint($small) { - float: right; - } - } - - ul { - margin: 0; - padding: 0; - clear: both; - list-style-type: none; - } -} - -.masthead__menu-item { - display: block; - list-style-type: none; - white-space: nowrap; - - &--lg { - padding-right: 2em; - font-weight: 700; - } -} diff --git a/_sass/minimal-mistakes/_mixins.scss b/_sass/minimal-mistakes/_mixins.scss deleted file mode 100644 index 4aa9eb09c..000000000 --- a/_sass/minimal-mistakes/_mixins.scss +++ /dev/null @@ -1,92 +0,0 @@ -/* ========================================================================== - MIXINS - ========================================================================== */ - -%tab-focus { - /* Default*/ - outline: thin dotted $focus-color; - /* Webkit*/ - outline: 5px auto $focus-color; - outline-offset: -2px; -} - -/* - em function - ========================================================================== */ - -@function em($target, $context: $doc-font-size) { - @return ($target / $context) * 1em; -} - - -/* - Bourbon clearfix - ========================================================================== */ - -/* - * Provides an easy way to include a clearfix for containing floats. - * link http://cssmojo.com/latest_new_clearfix_so_far/ - * - * example scss - Usage - * - * .element { - * @include clearfix; - * } - * - * example css - CSS Output - * - * .element::after { - * clear: both; - * content: ""; - * display: table; - * } -*/ - -@mixin clearfix { - clear: both; - - &::after { - clear: both; - content: ""; - display: table; - } -} - -/* - Compass YIQ Color Contrast - https://github.com/easy-designs/yiq-color-contrast - ========================================================================== */ - -@function yiq-is-light( - $color, - $threshold: $yiq-contrasted-threshold -) { - $red: red($color); - $green: green($color); - $blue: blue($color); - - $yiq: (($red*299)+($green*587)+($blue*114))/1000; - - @if $yiq-debug { @debug $yiq, $threshold; } - - @return if($yiq >= $threshold, true, false); -} - -@function yiq-contrast-color( - $color, - $dark: $yiq-contrasted-dark-default, - $light: $yiq-contrasted-light-default, - $threshold: $yiq-contrasted-threshold -) { - @return if(yiq-is-light($color, $threshold), $yiq-contrasted-dark-default, $yiq-contrasted-light-default); -} - -@mixin yiq-contrasted( - $background-color, - $dark: $yiq-contrasted-dark-default, - $light: $yiq-contrasted-light-default, - $threshold: $yiq-contrasted-threshold -) { - background-color: $background-color; - color: yiq-contrast-color($background-color, $dark, $light, $threshold); -} \ No newline at end of file diff --git a/_sass/minimal-mistakes/_navigation.scss b/_sass/minimal-mistakes/_navigation.scss deleted file mode 100644 index 5a752b488..000000000 --- a/_sass/minimal-mistakes/_navigation.scss +++ /dev/null @@ -1,615 +0,0 @@ -/* ========================================================================== - NAVIGATION - ========================================================================== */ - -/* - Breadcrumb navigation links - ========================================================================== */ - -.breadcrumbs { - @include clearfix; - margin: 0 auto; - max-width: 100%; - padding-left: 1em; - padding-right: 1em; - font-family: $sans-serif; - -webkit-animation: $intro-transition; - animation: $intro-transition; - -webkit-animation-delay: 0.3s; - animation-delay: 0.3s; - - @include breakpoint($x-large) { - max-width: $x-large; - } - - ol { - padding: 0; - list-style: none; - font-size: $type-size-6; - - @include breakpoint($large) { - float: right; - width: calc(100% - #{$right-sidebar-width-narrow}); - } - - @include breakpoint($x-large) { - width: calc(100% - #{$right-sidebar-width}); - } - } - - li { - display: inline; - } - - .current { - font-weight: bold; - } -} - -/* - Post pagination navigation links - ========================================================================== */ - -.pagination { - @include clearfix(); - float: left; - margin-top: 1em; - padding-top: 1em; - width: 100%; - - ul { - margin: 0; - padding: 0; - list-style-type: none; - font-family: $sans-serif; - } - - li { - display: block; - float: left; - margin-left: -1px; - - a { - display: block; - margin-bottom: 0.25em; - padding: 0.5em 1em; - font-family: $sans-serif; - font-size: 14px; - font-weight: bold; - line-height: 1.5; - text-align: center; - text-decoration: none; - color: $muted-text-color; - border: 1px solid mix(#000, $border-color, 25%); - border-radius: 0; - - &:hover { - color: $link-color-hover; - } - - &.current, - &.current.disabled { - color: #fff; - background: $primary-color; - } - - &.disabled { - color: rgba($muted-text-color, 0.5); - pointer-events: none; - cursor: not-allowed; - } - } - - &:first-child { - margin-left: 0; - - a { - border-top-left-radius: $border-radius; - border-bottom-left-radius: $border-radius; - } - } - - &:last-child { - a { - border-top-right-radius: $border-radius; - border-bottom-right-radius: $border-radius; - } - } - } - - /* next/previous buttons */ - &--pager { - display: block; - padding: 1em 2em; - float: left; - width: 50%; - font-family: $sans-serif; - font-size: $type-size-5; - font-weight: bold; - text-align: center; - text-decoration: none; - color: $muted-text-color; - border: 1px solid mix(#000, $border-color, 25%); - border-radius: $border-radius; - - &:hover { - @include yiq-contrasted($muted-text-color); - } - - &:first-child { - border-top-right-radius: 0; - border-bottom-right-radius: 0; - } - - &:last-child { - margin-left: -1px; - border-top-left-radius: 0; - border-bottom-left-radius: 0; - } - - &.disabled { - color: rgba($muted-text-color, 0.5); - pointer-events: none; - cursor: not-allowed; - } - } -} - -.page__content + .pagination, -.page__meta + .pagination, -.page__share + .pagination, -.page__comments + .pagination { - margin-top: 2em; - padding-top: 2em; - border-top: 1px solid $border-color; -} - -/* - Priority plus navigation - ========================================================================== */ - -.greedy-nav { - position: relative; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - min-height: $nav-height; - background: $background-color; - - a { - display: block; - margin: 0 1rem; - color: $masthead-link-color; - text-decoration: none; - -webkit-transition: none; - transition: none; - - &:hover { - color: $masthead-link-color-hover; - } - -/* hacks-guide change start: disable site logo, site title */ - /* - &.site-logo { - margin-left: 0; - margin-right: 0.5rem; - } - - &.site-title { - margin-left: 0; - } - */ -/* hacks-guide change end */ - } - - img{ - -webkit-transition: none; - transition: none; - } - - &__toggle { - -ms-flex-item-align: center; - align-self: center; - height: $nav-toggle-height; - border: 0; - outline: none; - background-color: transparent; - cursor: pointer; - } - -/* hacks-guide change start: add language selector */ - &__toggle_lang { - -ms-flex-item-align: center; - align-self: center; - height: $nav-toggle-height; - border: 0; - outline: none; - background-color: transparent; - cursor: pointer; - } -/* hacks-guide change end */ - - .visible-links { - display: -webkit-box; - display: -ms-flexbox; - display: flex; -/* hacks-guide change start: s/end/start */ - -webkit-box-pack: start; - -ms-flex-pack: start; - justify-content: flex-start; -/* hacks-guide change end */ - -webkit-box-flex: 1; - -ms-flex: 1; - flex: 1; - overflow: hidden; - - li { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - } - - a { - position: relative; - - &:before { - content: ""; - position: absolute; - left: 0; - bottom: 0; - height: 4px; - background: $primary-color; - width: 100%; - -webkit-transition: $global-transition; - transition: $global-transition; - -webkit-transform: scaleX(0) translate3d(0, 0, 0); - transform: scaleX(0) translate3d(0, 0, 0); // hide - } - - &:hover:before { - -webkit-transform: scaleX(1); - -ms-transform: scaleX(1); - transform: scaleX(1); // reveal - } - } - } - - .hidden-links { - position: absolute; - top: 100%; - right: 0; - margin-top: 15px; - padding: 5px; - border: 1px solid $border-color; - border-radius: $border-radius; - background: $background-color; - -webkit-box-shadow: 0 2px 4px 0 rgba(#000, 0.16), - 0 2px 10px 0 rgba(#000, 0.12); - box-shadow: 0 2px 4px 0 rgba(#000, 0.16), 0 2px 10px 0 rgba(#000, 0.12); - - &.hidden { - display: none; - } - - a { - margin: 0; - padding: 10px 20px; - font-size: $type-size-5; - - &:hover { - color: $masthead-link-color-hover; - background: $navicon-link-color-hover; - } - } - - &:before { - content: ""; - position: absolute; - top: -11px; - right: 10px; - width: 0; - border-style: solid; - border-width: 0 10px 10px; - border-color: $border-color transparent; - display: block; - z-index: 0; - } - - &:after { - content: ""; - position: absolute; - top: -10px; - right: 10px; - width: 0; - border-style: solid; - border-width: 0 10px 10px; - border-color: $background-color transparent; - display: block; - z-index: 1; - } - - li { - display: block; - border-bottom: 1px solid $border-color; - - &:last-child { - border-bottom: none; - } - } - } - -/* hacks-guide change start: adjust links-menu position */ - .links-menu{ - right: 2rem; - } -/* hacks-guide change end */ - -} - -.no-js { - .greedy-nav { - .visible-links { - -ms-flex-wrap: wrap; - flex-wrap: wrap; - overflow: visible; - } - } -} - -/* - Navigation list - ========================================================================== */ - -.nav__list { - margin-bottom: 1.5em; - - input[type="checkbox"], - label { - display: none; - } - - @include breakpoint(max-width $large - 1px) { - label { - position: relative; - display: inline-block; - padding: 0.5em 2.5em 0.5em 1em; - color: $gray; - font-size: $type-size-6; - font-weight: bold; - border: 1px solid $light-gray; - border-radius: $border-radius; - z-index: 20; - -webkit-transition: 0.2s ease-out; - transition: 0.2s ease-out; - cursor: pointer; - - &:before, - &:after { - content: ""; - position: absolute; - right: 1em; - top: 1.25em; - width: 0.75em; - height: 0.125em; - line-height: 1; - background-color: $gray; - -webkit-transition: 0.2s ease-out; - transition: 0.2s ease-out; - } - - &:after { - -webkit-transform: rotate(90deg); - -ms-transform: rotate(90deg); - transform: rotate(90deg); - } - - &:hover { - color: #fff; - border-color: $gray; - background-color: mix(white, #000, 20%); - - &:before, - &:after { - background-color: #fff; - } - } - } - - /* selected*/ - input:checked + label { - color: white; - background-color: mix(white, #000, 20%); - - &:before, - &:after { - background-color: #fff; - } - } - - /* on hover show expand*/ - label:hover:after { - -webkit-transform: rotate(90deg); - -ms-transform: rotate(90deg); - transform: rotate(90deg); - } - - input:checked + label:hover:after { - -webkit-transform: rotate(0); - -ms-transform: rotate(0); - transform: rotate(0); - } - - ul { - margin-bottom: 1em; - } - - a { - display: block; - padding: 0.25em 0; - - @include breakpoint($large) { - padding-top: 0.125em; - padding-bottom: 0.125em; - } - - &:hover { - text-decoration: underline; - } - } - } -} - -.nav__list .nav__items { - margin: 0; - font-size: 1.25rem; - - a { - color: inherit; - } - -/* hacks-guide change start: Add progress table */ - ol { - padding-left: 0.9rem; - } - - li { - list-style: inherit; - } - - .completed { - color: $gray; - text-decoration: line-through; - } -/* hacks-guide change end */ - -/* hacks-guide change start: disable padding on active */ - .active { - // margin-left: -0.5em; - // padding-left: 0.5em; - // padding-right: 0.5em; - font-weight: bold; - } -/* hacks-guide change end */ - - @include breakpoint(max-width $large - 1px) { - position: relative; - max-height: 0; - opacity: 0%; - overflow: hidden; - z-index: 10; - -webkit-transition: 0.3s ease-in-out; - transition: 0.3s ease-in-out; - -webkit-transform: translate(0, 10%); - -ms-transform: translate(0, 10%); - transform: translate(0, 10%); - } -} - -@include breakpoint(max-width $large - 1px) { - .nav__list input:checked ~ .nav__items { - -webkit-transition: 0.5s ease-in-out; - transition: 0.5s ease-in-out; - max-height: 9999px; /* exaggerate max-height to accommodate tall lists*/ - overflow: visible; - opacity: 1; - margin-top: 1em; - -webkit-transform: translate(0, 0); - -ms-transform: translate(0, 0); - transform: translate(0, 0); - } -} - -.nav__title { - margin: 0; - padding: 0.5rem 0.75rem; - font-family: $sans-serif-narrow; - font-size: $type-size-5; - font-weight: bold; -} - -.nav__sub-title { - display: block; - margin: 0.5rem 0; - padding: 0.25rem 0; - font-family: $sans-serif-narrow; - font-size: $type-size-6; - font-weight: bold; - text-transform: uppercase; - border-bottom: 1px solid $border-color; -} - -/* - Table of contents navigation - ========================================================================== */ - -.toc { - font-family: $sans-serif-narrow; - color: $gray; - background-color: $background-color; - border: 1px solid $border-color; - border-radius: $border-radius; - -webkit-box-shadow: $box-shadow; - box-shadow: $box-shadow; - - .nav__title { - color: #fff; - font-size: $type-size-6; - background: $primary-color; - border-top-left-radius: $border-radius; - border-top-right-radius: $border-radius; - } - - // Scrollspy marks toc items as .active when they are in focus - .active a { - @include yiq-contrasted($active-color); - } -} - -.toc__menu { - margin: 0; - padding: 0; - width: 100%; - list-style: none; - font-size: $type-size-6; - - @include breakpoint($large) { - font-size: $type-size-7; - } - - a { - display: block; - padding: 0.25rem 0.75rem; - color: $muted-text-color; - font-weight: bold; - line-height: 1.5; - border-bottom: 1px solid $border-color; - - &:hover { - color: $text-color; - } - } - - li ul > li a { - padding-left: 1.25rem; - font-weight: normal; - } - - li ul li ul > li a { - padding-left: 1.75rem; - } - - li ul li ul li ul > li a { - padding-left: 2.25rem; - } - - li ul li ul li ul li ul > li a { - padding-left: 2.75rem; - } - - li ul li ul li ul li ul li ul > li a { - padding-left: 3.25rem - } -} diff --git a/_sass/minimal-mistakes/_notices.scss b/_sass/minimal-mistakes/_notices.scss deleted file mode 100644 index 1489fb6d9..000000000 --- a/_sass/minimal-mistakes/_notices.scss +++ /dev/null @@ -1,108 +0,0 @@ -/* ========================================================================== - NOTICE TEXT BLOCKS - ========================================================================== */ - -/** - * Default Kramdown usage (no indents!): - *
- * #### Headline for the Notice - * Text for the notice - *
- */ - -@mixin notice($notice-color) { - margin: 2em 0 !important; /* override*/ - padding: 1em; - color: $text-color; - font-family: $global-font-family; - font-size: $type-size-6 !important; - text-indent: initial; /* override*/ - font-weight: bold; /* hacks-guide change: override font-weight on notices for readability */ - background-color: mix($background-color, $notice-color, $notice-background-mix); - border-radius: $border-radius; - box-shadow: 0 1px 1px rgba($notice-color, 0.25); - - h4 { - margin-top: 0 !important; /* override*/ - margin-bottom: 0.75em; - line-height: inherit; - } - - @at-root .page__content #{&} h4 { - /* using at-root to override .page-content h4 font size*/ - margin-bottom: 0; - font-size: 1em; - } - - p { - &:last-child { - margin-bottom: 0 !important; /* override*/ - } - } - - h4 + p { - /* remove space above paragraphs that appear directly after notice headline*/ - margin-top: 0; - padding-top: 0; - } - - a { -/* hacks-guide change start: adjust colours for links in notices for readability */ - color: mix(#fff, $notice-color, 30%); - - &:hover { - color: mix(#fff, $notice-color, 70%); - } -/* hacks-guide change end */ - } - - code { - background-color: mix($background-color, $notice-color, $code-notice-background-mix) - } - - pre code { - background-color: inherit; - } - - ul { - &:last-child { - margin-bottom: 0; /* override*/ - } - } -} - -/* Default notice */ - -.notice { - @include notice($light-gray); -} - -/* Primary notice */ - -.notice--primary { - @include notice($primary-color); -} - -/* Info notice */ - -.notice--info { - @include notice($info-color); -} - -/* Warning notice */ - -.notice--warning { - @include notice($warning-color); -} - -/* Success notice */ - -.notice--success { - @include notice($success-color); -} - -/* Danger notice */ - -.notice--danger { - @include notice($danger-color); -} diff --git a/_sass/minimal-mistakes/_page.scss b/_sass/minimal-mistakes/_page.scss deleted file mode 100644 index 209b85052..000000000 --- a/_sass/minimal-mistakes/_page.scss +++ /dev/null @@ -1,560 +0,0 @@ -/* ========================================================================== - SINGLE PAGE/POST - ========================================================================== */ - -#main { - @include clearfix; - margin-left: auto; - margin-right: auto; - padding-left: 1em; - padding-right: 1em; - -webkit-animation: $intro-transition; - animation: $intro-transition; - max-width: 100%; - -webkit-animation-delay: 0.15s; - animation-delay: 0.15s; - - @include breakpoint($x-large) { - max-width: $max-width; - } -} - -body { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - min-height: 100vh; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; -} - -.initial-content, -.search-content { - flex: 1 0 auto; -} - -.page { - @include breakpoint($large) { - float: right; - width: calc(100% - #{$right-sidebar-width-narrow}); - padding-right: $right-sidebar-width-narrow; - } - - @include breakpoint($x-large) { - width: calc(100% - #{$right-sidebar-width}); - padding-right: $right-sidebar-width; - } - - .page__inner-wrap { - float: left; - margin-top: 1em; - margin-left: 0; - margin-right: 0; - width: 100%; - clear: both; - - .page__content, - .page__meta, - .page__share { - position: relative; - float: left; - margin-left: 0; - margin-right: 0; - width: 100%; - clear: both; - } - } -} - -.page__title { - margin-top: 0; - line-height: 1; - - & + .page__meta { - margin-top: -0.5em; - } -} - -.page__lead { - font-family: $global-font-family; - font-size: $type-size-4; -} - -.page__content { - h2 { - padding-bottom: 0.5em; - border-bottom: 1px solid $border-color; - } - - h1, h2, h3, h4, h5, h6 { - .header-link { - position: relative; - left: 0.5em; - opacity: 0; - font-size: 0.8em; - -webkit-transition: opacity 0.2s ease-in-out 0.1s; - -moz-transition: opacity 0.2s ease-in-out 0.1s; - -o-transition: opacity 0.2s ease-in-out 0.1s; - transition: opacity 0.2s ease-in-out 0.1s; - user-select: none; /* hacks-guide change: do not change link colour as it hurts readability */ - } - - &:hover .header-link { - opacity: 1; - } - } - - p, - li, - dl { - font-size: 1em; - } - - /* paragraph indents */ - p { - margin: 0 0 $indent-var; - - /* sibling indentation*/ - @if $paragraph-indent == true { - & + p { - text-indent: $indent-var; - margin-top: -($indent-var); - } - } - } - - a:not(.btn) { - &:hover { - text-decoration: underline; - - img { - box-shadow: 0 0 10px rgba(#000, 0.25); - } - } - } - - dt { - margin-top: 1em; - font-family: $sans-serif; - font-weight: bold; - } - - dd { - margin-left: 1em; - font-family: $sans-serif; - font-size: $type-size-6; - } - - .small { - font-size: $type-size-6; - } - - /* blockquote citations */ - blockquote + .small { - margin-top: -1.5em; - padding-left: 1.25rem; - } -} - -.page__hero { - position: relative; - margin-bottom: 2em; - @include clearfix; - -webkit-animation: $intro-transition; - animation: $intro-transition; - -webkit-animation-delay: 0.25s; - animation-delay: 0.25s; - - &--overlay { - position: relative; - margin-bottom: 2em; - padding: 3em 0; - @include clearfix; - background-size: cover; - background-repeat: no-repeat; - background-position: center; - -webkit-animation: $intro-transition; - animation: $intro-transition; - -webkit-animation-delay: 0.25s; - animation-delay: 0.25s; - - a { - color: #fff; - } - - .wrapper { - padding-left: 1em; - padding-right: 1em; - - @include breakpoint($x-large) { - max-width: $x-large; - } - } - - .page__title, - .page__meta, - .page__lead, - .btn { - color: #fff; - text-shadow: 1px 1px 4px rgba(#000, 0.5); - } - - .page__lead { - max-width: $medium; - } - - .page__title { - font-size: $type-size-2; - - @include breakpoint($small) { - font-size: $type-size-1; - } - } - } -} - -.page__hero-image { - width: 100%; - height: auto; - -ms-interpolation-mode: bicubic; -} - -.page__hero-caption { - position: absolute; - bottom: 0; - right: 0; - margin: 0 auto; - padding: 2px 5px; - color: #fff; - font-family: $caption-font-family; - font-size: $type-size-7; - background: #000; - text-align: right; - z-index: 5; - opacity: 0.5; - border-radius: $border-radius 0 0 0; - - @include breakpoint($large) { - padding: 5px 10px; - } - - a { - color: #fff; - text-decoration: none; - } -} - -/* - Social sharing - ========================================================================== */ - -.page__share { - margin-top: 2em; - padding-top: 1em; - border-top: 1px solid $border-color; - - @include breakpoint(max-width $small) { - .btn span { - border: 0; - clip: rect(0 0 0 0); - height: 1px; - margin: -1px; - overflow: hidden; - padding: 0; - position: absolute; - width: 1px; - } - } -} - -.page__share-title { - margin-bottom: 10px; - font-size: $type-size-6; - text-transform: uppercase; -} - -/* - Page meta - ========================================================================== */ - -.page__meta { - margin-top: 2em; - color: $muted-text-color; - font-family: $sans-serif; - font-size: $type-size-6; - - p { - margin: 0; - } - - a { - color: inherit; - } -} - -.page__meta-title { - margin-bottom: 10px; - font-size: $type-size-6; - text-transform: uppercase; -} - -.page__meta-sep::before { - content: "\2022"; - padding-left: 0.5em; - padding-right: 0.5em; -} - -/* - Page taxonomy - ========================================================================== */ - -.page__taxonomy { - .sep { - display: none; - } - - strong { - margin-right: 10px; - } -} - -.page__taxonomy-item { - display: inline-block; - margin-right: 5px; - margin-bottom: 8px; - padding: 5px 10px; - text-decoration: none; - border: 1px solid mix(#000, $border-color, 25%); - border-radius: $border-radius; - - &:hover { - text-decoration: none; - color: $link-color-hover; - } -} - -.taxonomy__section { - margin-bottom: 2em; - padding-bottom: 1em; - - &:not(:last-child) { - border-bottom: solid 1px $border-color; - } - - .archive__item-title { - margin-top: 0; - } - - .archive__subtitle { - clear: both; - border: 0; - } - - + .taxonomy__section { - margin-top: 2em; - } -} - -.taxonomy__title { - margin-bottom: 0.5em; - color: $muted-text-color; -} - -.taxonomy__count { - color: $muted-text-color; -} - -.taxonomy__index { - display: grid; - grid-column-gap: 2em; - grid-template-columns: repeat(2, 1fr); - margin: 1.414em 0; - padding: 0; - font-size: 0.75em; - list-style: none; - - @include breakpoint($large) { - grid-template-columns: repeat(3, 1fr); - } - - a { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - padding: 0.25em 0; - -webkit-box-pack: justify; - -ms-flex-pack: justify; - justify-content: space-between; - color: inherit; - text-decoration: none; - border-bottom: 1px solid $border-color; - } -} - -.back-to-top { - display: block; - clear: both; - color: $muted-text-color; - font-size: 0.6em; - text-transform: uppercase; - text-align: right; - text-decoration: none; -} - -/* - Comments - ========================================================================== */ - -.page__comments { - float: left; - margin-left: 0; - margin-right: 0; - width: 100%; - clear: both; -} - -.page__comments-title { - margin-top: 2rem; - margin-bottom: 10px; - padding-top: 2rem; - font-size: $type-size-6; - border-top: 1px solid $border-color; - text-transform: uppercase; -} - -.page__comments-form { - -webkit-transition: $global-transition; - transition: $global-transition; - - &.disabled { - input, - button, - textarea, - label { - pointer-events: none; - cursor: not-allowed; - filter: alpha(opacity=65); - box-shadow: none; - opacity: 0.65; - } - } -} - -.comment { - @include clearfix(); - margin: 1em 0; - - &:not(:last-child) { - border-bottom: 1px solid $border-color; - } -} - -.comment__avatar-wrapper { - float: left; - width: 60px; - height: 60px; - - @include breakpoint($large) { - width: 100px; - height: 100px; - } -} - -.comment__avatar { - width: 40px; - height: 40px; - border-radius: 50%; - - @include breakpoint($large) { - width: 80px; - height: 80px; - padding: 5px; - border: 1px solid $border-color; - } -} - -.comment__content-wrapper { - float: right; - width: calc(100% - 60px); - - @include breakpoint($large) { - width: calc(100% - 100px); - } -} - -.comment__author { - margin: 0; - - a { - text-decoration: none; - } -} - -.comment__date { - @extend .page__meta; - margin: 0; - - a { - text-decoration: none; - } -} - -/* - Related - ========================================================================== */ - -.page__related { - @include clearfix(); - float: left; - margin-top: 2em; - padding-top: 1em; - border-top: 1px solid $border-color; - - @include breakpoint($large) { - float: right; - width: calc(100% - #{$right-sidebar-width-narrow}); - } - - @include breakpoint($x-large) { - width: calc(100% - #{$right-sidebar-width}); - } - - a { - color: inherit; - text-decoration: none; - } -} - -.page__related-title { - margin-bottom: 10px; - font-size: $type-size-6; - text-transform: uppercase; -} - -/* - Wide Pages - ========================================================================== */ - -.wide { - .page { - @include breakpoint($large) { - padding-right: 0; - } - - @include breakpoint($x-large) { - padding-right: 0; - } - } - - .page__related { - @include breakpoint($large) { - padding-right: 0; - } - - @include breakpoint($x-large) { - padding-right: 0; - } - } -} diff --git a/_sass/minimal-mistakes/_print.scss b/_sass/minimal-mistakes/_print.scss deleted file mode 100644 index b93f1d404..000000000 --- a/_sass/minimal-mistakes/_print.scss +++ /dev/null @@ -1,252 +0,0 @@ -/* ========================================================================== - PRINT STYLES - ========================================================================== */ - -@media print { - - [hidden] { - display: none; - } - - * { - -moz-box-sizing: border-box; - -webkit-box-sizing: border-box; - box-sizing: border-box; - } - - html { - margin: 0; - padding: 0; - min-height: auto !important; - font-size: 16px; - } - - body { - margin: 0 auto; - background: #fff !important; - color: #000 !important; - font-size: 1rem; - line-height: 1.5; - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; - text-rendering: optimizeLegibility; - } - - h1, - h2, - h3, - h4, - h5, - h6 { - color: #000; - line-height: 1.2; - margin-bottom: 0.75rem; - margin-top: 0; - } - - h1 { - font-size: 2.5rem; - } - - h2 { - font-size: 2rem; - } - - h3 { - font-size: 1.75rem; - } - - h4 { - font-size: 1.5rem; - } - - h5 { - font-size: 1.25rem; - } - - h6 { - font-size: 1rem; - } - - a, - a:visited { - color: #000; - text-decoration: underline; - word-wrap: break-word; - } - - table { - border-collapse: collapse; - } - - thead { - display: table-header-group; - } - - table, - th, - td { - border-bottom: 1px solid #000; - } - - td, - th { - padding: 8px 16px; - } - - img { - border: 0; - display: block; - max-width: 100% !important; - vertical-align: middle; - } - - hr { - border: 0; - border-bottom: 2px solid #bbb; - height: 0; - margin: 2.25rem 0; - padding: 0; - } - - dt { - font-weight: bold; - } - - dd { - margin: 0; - margin-bottom: 0.75rem; - } - - abbr[title], - acronym[title] { - border: 0; - text-decoration: none; - } - - table, - blockquote, - pre, - code, - figure, - li, - hr, - ul, - ol, - a, - tr { - page-break-inside: avoid; - } - - h2, - h3, - h4, - p, - a { - orphans: 3; - widows: 3; - } - - h1, - h2, - h3, - h4, - h5, - h6 { - page-break-after: avoid; - page-break-inside: avoid; - } - - h1 + p, - h2 + p, - h3 + p { - page-break-before: avoid; - } - - img { - page-break-after: auto; - page-break-before: auto; - page-break-inside: avoid; - } - - pre { - white-space: pre-wrap !important; - word-wrap: break-word; - } - - a[href^='http://']:after, - a[href^='https://']:after, - a[href^='ftp://']:after { - content: " (" attr(href) ")"; - font-size: 80%; - } - - abbr[title]:after, - acronym[title]:after { - content: " (" attr(title) ")"; - } - - #main { - max-width: 100%; - } - - .page { - margin: 0; - padding: 0; - width: 100%; - } - - .page-break, - .page-break-before { - page-break-before: always; - } - - .page-break-after { - page-break-after: always; - } - - .no-print { - display: none; - } - - a.no-reformat:after { - content: ''; - } - - abbr[title].no-reformat:after, - acronym[title].no-reformat:after { - content: ''; - } - - .page__hero-caption { - color: #000 !important; - background: #fff !important; - opacity: 1; - - a { - color: #000 !important; - } - } - -/* - Hide the following elements on print - ========================================================================== */ - - .masthead, - .toc, - .page__share, - .page__related, - .pagination, - .ads, - .page__footer, - .page__comments-form, - .author__avatar, - .author__content, - .author__urls-wrapper, - .nav__list, - .sidebar, - .adsbygoogle { - display: none !important; - height: 1px !important; - } -} \ No newline at end of file diff --git a/_sass/minimal-mistakes/_reset.scss b/_sass/minimal-mistakes/_reset.scss deleted file mode 100644 index 2259fd0c2..000000000 --- a/_sass/minimal-mistakes/_reset.scss +++ /dev/null @@ -1,187 +0,0 @@ -/* ========================================================================== - STYLE RESETS - ========================================================================== */ - -* { box-sizing: border-box; } - -html { - /* apply a natural box layout model to all elements */ - box-sizing: border-box; - background-color: $background-color; - font-size: 16px; - - @include breakpoint($medium) { - font-size: 18px; - } - - @include breakpoint($large) { - font-size: 20px; - } - - @include breakpoint($x-large) { - font-size: 22px; - } - - -webkit-text-size-adjust: 100%; - -ms-text-size-adjust: 100%; -} - -/* Remove margin */ - -body { margin: 0; } - -/* Selected elements */ - -::-moz-selection { - color: #fff; - background: #000; -} - -::selection { - color: #fff; - background: #000; -} - -/* Display HTML5 elements in IE6-9 and FF3 */ - -article, -aside, -details, -figcaption, -figure, -footer, -header, -hgroup, -main, -nav, -section { - display: block; -} - -/* Display block in IE6-9 and FF3 */ - -audio, -canvas, -video { - display: inline-block; - *display: inline; - *zoom: 1; -} - -/* Prevents modern browsers from displaying 'audio' without controls */ - -audio:not([controls]) { - display: none; -} - -a { - color: $link-color; -} - -/* Apply focus state */ - -a:focus { - @extend %tab-focus; -} - -/* Remove outline from links */ - -a:hover, -a:active { - outline: 0; -} - -/* Prevent sub and sup affecting line-height in all browsers */ - -sub, -sup { - position: relative; - font-size: 75%; - line-height: 0; - vertical-align: baseline; -} - -sup { - top: -0.5em; -} - -sub { - bottom: -0.25em; -} - -/* img border in anchor's and image quality */ - -img { - /* Responsive images (ensure images don't scale beyond their parents) */ - max-width: 100%; /* part 1: Set a maximum relative to the parent*/ - width: auto\9; /* IE7-8 need help adjusting responsive images*/ - height: auto; /* part 2: Scale the height according to the width, otherwise you get stretching*/ - - vertical-align: middle; - border: 0; - -ms-interpolation-mode: bicubic; -} - -/* Prevent max-width from affecting Google Maps */ - -#map_canvas img, -.google-maps img { - max-width: none; -} - -/* Consistent form font size in all browsers, margin changes, misc */ - -button, -input, -select, -textarea { - margin: 0; - font-size: 100%; - vertical-align: middle; -} - -button, -input { - *overflow: visible; /* inner spacing ie IE6/7*/ - line-height: normal; /* FF3/4 have !important on line-height in UA stylesheet*/ -} - -button::-moz-focus-inner, -input::-moz-focus-inner { /* inner padding and border oddities in FF3/4*/ - padding: 0; - border: 0; -} - -button, -html input[type="button"], // avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` and `video` controls -input[type="reset"], -input[type="submit"] { - -webkit-appearance: button; /* corrects inability to style clickable `input` types in iOS*/ - cursor: pointer; /* improves usability and consistency of cursor style between image-type `input` and others*/ -} - -label, -select, -button, -input[type="button"], -input[type="reset"], -input[type="submit"], -input[type="radio"], -input[type="checkbox"] { - cursor: pointer; /* improves usability and consistency of cursor style between image-type `input` and others*/ -} - -input[type="search"] { /* Appearance in Safari/Chrome*/ - box-sizing: border-box; - -webkit-appearance: textfield; -} - -input[type="search"]::-webkit-search-decoration, -input[type="search"]::-webkit-search-cancel-button { - -webkit-appearance: none; /* inner-padding issues in Chrome OSX, Safari 5*/ -} - -textarea { - overflow: auto; /* remove vertical scrollbar in IE6-9*/ - vertical-align: top; /* readability and alignment cross-browser*/ -} \ No newline at end of file diff --git a/_sass/minimal-mistakes/_search.scss b/_sass/minimal-mistakes/_search.scss deleted file mode 100644 index fa7ee832b..000000000 --- a/_sass/minimal-mistakes/_search.scss +++ /dev/null @@ -1,132 +0,0 @@ -/* ========================================================================== - SEARCH - ========================================================================== */ - -.layout--search { - .archive__item-teaser { - margin-bottom: 0.25em; - } -} - -.search__toggle { - margin-left: 1rem; - margin-right: 1rem; - height: $nav-toggle-height; - border: 0; - outline: none; - color: $primary-color; - background-color: transparent; - cursor: pointer; - -webkit-transition: 0.2s; - transition: 0.2s; - - &:hover { - color: mix(#000, $primary-color, 25%); - } -} - -.search-icon { - width: 100%; - height: 100%; -} - -.search-content { - display: none; - visibility: hidden; - padding-top: 1em; - padding-bottom: 1em; - - &__inner-wrap { - width: 100%; - margin-left: auto; - margin-right: auto; - padding-left: 1em; - padding-right: 1em; - -webkit-animation: $intro-transition; - animation: $intro-transition; - -webkit-animation-delay: 0.15s; - animation-delay: 0.15s; - - @include breakpoint($x-large) { - max-width: $max-width; - } - - } - - &__form { - background-color: transparent; - } - - .search-input { - display: block; - margin-bottom: 0; - padding: 0; - border: none; - outline: none; - box-shadow: none; - background-color: transparent; - font-size: $type-size-3; - - @include breakpoint($large) { - font-size: $type-size-2; - } - - @include breakpoint($x-large) { - font-size: $type-size-1; - } - } - - &.is--visible { - display: block; - visibility: visible; - - &::after { - content: ""; - display: block; - } - } - - .results__found { - margin-top: 0.5em; - font-size: $type-size-6; - } - - .archive__item { - margin-bottom: 2em; - - @include breakpoint($large) { - width: 75%; - } - - @include breakpoint($x-large) { - width: 50%; - } - } - - .archive__item-title { - margin-top: 0; - } - - .archive__item-excerpt { - margin-bottom: 0; - } -} - -/* Algolia search */ - -.ais-search-box { - max-width: 100% !important; - margin-bottom: 2em; -} - -.archive__item-title .ais-Highlight { - color: $primary-color; - font-style: normal; - text-decoration: underline; -} - -.archive__item-excerpt .ais-Highlight { - color: $primary-color; - font-style: normal; - font-weight: bold; -} diff --git a/_sass/minimal-mistakes/_sidebar.scss b/_sass/minimal-mistakes/_sidebar.scss deleted file mode 100644 index b1f5ca988..000000000 --- a/_sass/minimal-mistakes/_sidebar.scss +++ /dev/null @@ -1,346 +0,0 @@ -/* ========================================================================== - SIDEBAR - ========================================================================== */ - -/* - Default - ========================================================================== */ - -.sidebar { - @include clearfix(); - // @include breakpoint(max-width $large) { - // /* fix z-index order of follow links */ - // position: relative; - // z-index: 10; - // -webkit-transform: translate3d(0, 0, 0); - // transform: translate3d(0, 0, 0); - // } - - @include breakpoint($large) { - float: left; - width: calc(#{$right-sidebar-width-narrow} - 1em); - opacity: 0.75; - -webkit-transition: opacity 0.2s ease-in-out; - transition: opacity 0.2s ease-in-out; - - &:hover { - opacity: 1; - } - - &.sticky { - overflow-y: auto; - /* calculate height of nav list - viewport height - nav height - masthead x-padding - */ - max-height: calc(100vh - #{$nav-height} - 2em); - } - } - - @include breakpoint($x-large) { - width: calc(#{$right-sidebar-width} - 1em); - } - - > * { - margin-top: 1em; - margin-bottom: 1em; - } - - h2, - h3, - h4, - h5, - h6 { - margin-bottom: 0; - font-family: $sans-serif-narrow; - } - - p, - li { - font-family: $sans-serif; - font-size: $type-size-6; - line-height: 1.5; - } - - img { - width: 100%; - - &.emoji { - width: 20px; - height: 20px; - } - } -} - -.sidebar__right { - margin-bottom: 1em; - - @include breakpoint($large) { - position: absolute; - top: 0; - right: 0; - width: $right-sidebar-width-narrow; - margin-right: -1 * $right-sidebar-width-narrow; - padding-left: 1em; - z-index: 10; - - &.sticky { - @include clearfix(); - position: -webkit-sticky; - position: sticky; - top: 2em; - float: right; - } - } - - @include breakpoint($x-large) { - width: $right-sidebar-width; - margin-right: -1 * $right-sidebar-width; - } -} - -.splash .sidebar__right { - @include breakpoint($large) { - position: relative; - float: right; - margin-right: 0; - } - - @include breakpoint($x-large) { - margin-right: 0; - } -} - -/* - Author profile and links - ========================================================================== */ - -.author__avatar { - display: table-cell; - vertical-align: top; - width: 36px; - height: 36px; - - @include breakpoint($large) { - display: block; - width: auto; - height: auto; - } - - img { - max-width: 110px; - border-radius: 50%; - - @include breakpoint($large) { - padding: 5px; - border: 1px solid $border-color; - } - } -} - -.author__content { - display: table-cell; - vertical-align: top; - padding-left: 15px; - padding-right: 25px; - line-height: 1; - - @include breakpoint($large) { - display: block; - width: 100%; - padding-left: 0; - padding-right: 0; - } - - a { - color: inherit; - text-decoration: none; - } -} - -.author__name { - margin: 0; - - @include breakpoint($large) { - margin-top: 10px; - margin-bottom: 10px; - } -} -.sidebar .author__name { - font-family: $sans-serif; - font-size: $type-size-5; -} - -.author__bio { - margin: 0; - - @include breakpoint($large) { - margin-top: 10px; - margin-bottom: 20px; - } -} - -.author__urls-wrapper { - position: relative; - display: table-cell; - vertical-align: middle; - font-family: $sans-serif; - z-index: 20; - cursor: pointer; - - li:last-child { - a { - margin-bottom: 0; - } - } - - .author__urls { - span.label { - padding-left: 5px; - } - } - - @include breakpoint($large) { - display: block; - } - - button { - position: relative; - margin-bottom: 0; - - &:before { - @supports (pointer-events: none) { - content: ''; - position: fixed; - top: 0; - left: 0; - width: 100%; - height: 100%; - pointer-events: none; - } - } - - &.open { - &:before { - pointer-events: auto; - } - } - - @include breakpoint($large) { - display: none; - } - } -} - -.author__urls { - display: none; - position: absolute; - right: 0; - margin-top: 15px; - padding: 10px; - list-style-type: none; - border: 1px solid $border-color; - border-radius: $border-radius; - background: $background-color; - box-shadow: 0 2px 4px 0 rgba(#000, 0.16), 0 2px 10px 0 rgba(#000, 0.12); - cursor: default; - - &.is--visible { - display: block; - } - - @include breakpoint($large) { - display: block; - position: relative; - margin: 0; - padding: 0; - border: 0; - background: transparent; - box-shadow: none; - } - - &:before { - display: block; - content: ""; - position: absolute; - top: -11px; - left: calc(50% - 10px); - width: 0; - border-style: solid; - border-width: 0 10px 10px; - border-color: $border-color transparent; - z-index: 0; - - @include breakpoint($large) { - display: none; - } - } - - &:after { - display: block; - content: ""; - position: absolute; - top: -10px; - left: calc(50% - 10px); - width: 0; - border-style: solid; - border-width: 0 10px 10px; - border-color: $background-color transparent; - z-index: 1; - - @include breakpoint($large) { - display: none; - } - } - - ul { - padding: 10px; - list-style-type: none; - } - - li { - white-space: nowrap; - } - - a { - display: block; - margin-bottom: 5px; - padding-right: 5px; - padding-top: 2px; - padding-bottom: 2px; - color: inherit; - font-size: $type-size-5; - text-decoration: none; - - &:hover { - text-decoration: underline; - } - } -} - -/* - Wide Pages - ========================================================================== */ - -.wide .sidebar__right { - margin-bottom: 1em; - - @include breakpoint($large) { - position: initial; - top: initial; - right: initial; - width: initial; - margin-right: initial; - padding-left: initial; - z-index: initial; - - &.sticky { - float: none; - } - } - - @include breakpoint($x-large) { - width: initial; - margin-right: initial; - } -} - diff --git a/_sass/minimal-mistakes/_syntax.scss b/_sass/minimal-mistakes/_syntax.scss deleted file mode 100644 index 726520202..000000000 --- a/_sass/minimal-mistakes/_syntax.scss +++ /dev/null @@ -1,324 +0,0 @@ -/* ========================================================================== - Syntax highlighting - ========================================================================== */ - -div.highlighter-rouge, -figure.highlight { - position: relative; - margin-bottom: 1em; - background: $base00; - color: $base05; - font-family: $monospace; - font-size: $type-size-6; - line-height: 1.8; - border-radius: $border-radius; - - > pre, - pre.highlight { - margin: 0; - padding: 1em; - } -} - -.highlight table { - margin-bottom: 0; - font-size: 1em; - border: 0; - - td { - padding: 0; - width: calc(100% - 1em); - border: 0; - - /* line numbers*/ - &.gutter, - &.rouge-gutter { - padding-right: 1em; - width: 1em; - color: $base04; - border-right: 1px solid $base04; - text-align: right; - } - - /* code */ - &.code, - &.rouge-code { - padding-left: 1em; - } - } - - pre { - margin: 0; - } -} - -.highlight pre { - width: 100%; -} - -.highlight .hll { - background-color: $base06; -} -.highlight { - .c { - /* Comment */ - color: $base04; - } - .err { - /* Error */ - color: $base08; - } - .k { - /* Keyword */ - color: $base0e; - } - .l { - /* Literal */ - color: $base09; - } - .n { - /* Name */ - color: $base05; - } - .o { - /* Operator */ - color: $base0c; - } - .p { - /* Punctuation */ - color: $base05; - } - .cm { - /* Comment.Multiline */ - color: $base04; - } - .cp { - /* Comment.Preproc */ - color: $base04; - } - .c1 { - /* Comment.Single */ - color: $base04; - } - .cs { - /* Comment.Special */ - color: $base04; - } - .gd { - /* Generic.Deleted */ - color: $base08; - } - .ge { - /* Generic.Emph */ - font-style: italic; - } - .gh { - /* Generic.Heading */ - color: $base05; - font-weight: bold; - } - .gi { - /* Generic.Inserted */ - color: $base0b; - } - .gp { - /* Generic.Prompt */ - color: $base04; - font-weight: bold; - } - .gs { - /* Generic.Strong */ - font-weight: bold; - } - .gu { - /* Generic.Subheading */ - color: $base0c; - font-weight: bold; - } - .kc { - /* Keyword.Constant */ - color: $base0e; - } - .kd { - /* Keyword.Declaration */ - color: $base0e; - } - .kn { - /* Keyword.Namespace */ - color: $base0c; - } - .kp { - /* Keyword.Pseudo */ - color: $base0e; - } - .kr { - /* Keyword.Reserved */ - color: $base0e; - } - .kt { - /* Keyword.Type */ - color: $base0a; - } - .ld { - /* Literal.Date */ - color: $base0b; - } - .m { - /* Literal.Number */ - color: $base09; - } - .s { - /* Literal.String */ - color: $base0b; - } - .na { - /* Name.Attribute */ - color: $base0d; - } - .nb { - /* Name.Builtin */ - color: $base05; - } - .nc { - /* Name.Class */ - color: $base0a; - } - .no { - /* Name.Constant */ - color: $base08; - } - .nd { - /* Name.Decorator */ - color: $base0c; - } - .ni { - /* Name.Entity */ - color: $base05; - } - .ne { - /* Name.Exception */ - color: $base08; - } - .nf { - /* Name.Function */ - color: $base0d; - } - .nl { - /* Name.Label */ - color: $base05; - } - .nn { - /* Name.Namespace */ - color: $base0a; - } - .nx { - /* Name.Other */ - color: $base0d; - } - .py { - /* Name.Property */ - color: $base05; - } - .nt { - /* Name.Tag */ - color: $base0c; - } - .nv { - /* Name.Variable */ - color: $base08; - } - .ow { - /* Operator.Word */ - color: $base0c; - } - .w { - /* Text.Whitespace */ - color: $base05; - } - .mf { - /* Literal.Number.Float */ - color: $base09; - } - .mh { - /* Literal.Number.Hex */ - color: $base09; - } - .mi { - /* Literal.Number.Integer */ - color: $base09; - } - .mo { - /* Literal.Number.Oct */ - color: $base09; - } - .sb { - /* Literal.String.Backtick */ - color: $base0b; - } - .sc { - /* Literal.String.Char */ - color: $base05; - } - .sd { - /* Literal.String.Doc */ - color: $base04; - } - .s2 { - /* Literal.String.Double */ - color: $base0b; - } - .se { - /* Literal.String.Escape */ - color: $base09; - } - .sh { - /* Literal.String.Heredoc */ - color: $base0b; - } - .si { - /* Literal.String.Interpol */ - color: $base09; - } - .sx { - /* Literal.String.Other */ - color: $base0b; - } - .sr { - /* Literal.String.Regex */ - color: $base0b; - } - .s1 { - /* Literal.String.Single */ - color: $base0b; - } - .ss { - /* Literal.String.Symbol */ - color: $base0b; - } - .bp { - /* Name.Builtin.Pseudo */ - color: $base05; - } - .vc { - /* Name.Variable.Class */ - color: $base08; - } - .vg { - /* Name.Variable.Global */ - color: $base08; - } - .vi { - /* Name.Variable.Instance */ - color: $base08; - } - .il { - /* Literal.Number.Integer.Long */ - color: $base09; - } -} - -.gist { - th, td { - border-bottom: 0; - } -} \ No newline at end of file diff --git a/_sass/minimal-mistakes/_tables.scss b/_sass/minimal-mistakes/_tables.scss deleted file mode 100644 index d5132a71c..000000000 --- a/_sass/minimal-mistakes/_tables.scss +++ /dev/null @@ -1,48 +0,0 @@ -/* ========================================================================== - TABLES - ========================================================================== */ - -table { - display: table; /* hacks-guide change */ - margin-bottom: 1em; - width: 100%; - font-family: $global-font-family; - font-size: $type-size-6; - border-collapse: collapse; - border: 1px solid $light-gray; /* hacks-guide change */ - overflow-x: auto; - - & + table { - margin-top: 1em; - } -} - -thead { - background-color: $border-color; -/* hacks-guide change start */ - // border-bottom: 2px solid mix(#000, $border-color, 25%); - border-bottom: 1px solid $light-gray; -/* hacks-guide change end */ -} - -th { - padding: 0.5em; - font-weight: bold; - text-align: left; - border-right: 1px solid $light-gray; /* hacks-guide change */ -} - -td { - padding: 0.5em; -/* hacks-guide change start */ - // border-bottom: 1px solid mix(#000, $border-color, 25%); - border-bottom: 1px solid $light-gray; - border-right: 1px solid $light-gray; -/* hacks-guide change end */ -} - -tr, -td, -th { - vertical-align: middle; -} \ No newline at end of file diff --git a/_sass/minimal-mistakes/_utilities.scss b/_sass/minimal-mistakes/_utilities.scss deleted file mode 100644 index a0a882114..000000000 --- a/_sass/minimal-mistakes/_utilities.scss +++ /dev/null @@ -1,662 +0,0 @@ -/* ========================================================================== - UTILITY CLASSES - ========================================================================== */ - -/* - Visibility - ========================================================================== */ - -/* http://www.456bereastreet.com/archive/200711/screen_readers_sometimes_ignore_displaynone/ */ - -.hidden, -.is--hidden { - display: none; - visibility: hidden; -} - -/* for preloading images */ - -.load { - display: none; -} - -.transparent { - opacity: 0; -} - -/* https://developer.yahoo.com/blogs/ydn/clip-hidden-content-better-accessibility-53456.html */ - -.visually-hidden, -.screen-reader-text, -.screen-reader-text span, -.screen-reader-shortcut { - position: absolute !important; - clip: rect(1px, 1px, 1px, 1px); - height: 1px !important; - width: 1px !important; - border: 0 !important; - overflow: hidden; -} - -body:hover .visually-hidden a, -body:hover .visually-hidden input, -body:hover .visually-hidden button { - display: none !important; -} - -/* screen readers */ - -.screen-reader-text:focus, -.screen-reader-shortcut:focus { - clip: auto !important; - height: auto !important; - width: auto !important; - display: block; - font-size: 1em; - font-weight: bold; - padding: 15px 23px 14px; - background: #fff; - z-index: 100000; - text-decoration: none; - box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6); -} - -/* - Skip links - ========================================================================== */ - -.skip-link { - position: fixed; - z-index: 20; - margin: 0; - font-family: $sans-serif; - white-space: nowrap; -} - -.skip-link li { - height: 0; - width: 0; - list-style: none; -} - -/* - Type - ========================================================================== */ - -.text-left { - text-align: left; -} - -.text-center { - text-align: center; -} - -.text-right { - text-align: right; -} - -.text-justify { - text-align: justify; -} - -.text-nowrap { - white-space: nowrap; -} - -/* - Task lists - ========================================================================== */ - -.task-list { - padding:0; - - li { - list-style-type: none; - } - - .task-list-item-checkbox { - margin-right: 0.5em; - opacity: 1; - } -} - -.task-list .task-list { - margin-left: 1em; -} - -/* - Alignment - ========================================================================== */ - -/* clearfix */ - -.cf { - clear: both; -} - -.wrapper { - margin-left: auto; - margin-right: auto; - width: 100%; -} - -/* - Images - ========================================================================== */ - -/* image align left */ - -.align-left { - display: block; - margin-left: auto; - margin-right: auto; - - @include breakpoint($small) { - float: left; - margin-right: 1em; - } -} - -/* image align right */ - -.align-right { - display: block; - margin-left: auto; - margin-right: auto; - - @include breakpoint($small) { - float: right; - margin-left: 1em; - } -} - -/* image align center */ - -.align-center { - display: block; - margin-left: auto; - margin-right: auto; -} - -/* file page content container */ - -.full { - @include breakpoint($large) { - margin-right: -1 * span(2.5 of 12) !important; - } -} - -/* - Icons - ========================================================================== */ - -.icon { - display: inline-block; - fill: currentColor; - width: 1em; - height: 1.1em; - line-height: 1; - position: relative; - top: -0.1em; - vertical-align: middle; -} - -/* social icons*/ - -.social-icons { - .fas, - .fab, - .far, - .fal { - color: $text-color; - } - - .fa-behance, - .fa-behance-square { - color: $behance-color; - } - - .fa-bitbucket { - color: $bitbucket-color; - } - - .fa-dribbble, - .fa-dribble-square { - color: $dribbble-color; - } - - .fa-facebook, - .fa-facebook-square, - .fa-facebook-f { - color: $facebook-color; - } - - .fa-flickr { - color: $flickr-color; - } - - .fa-foursquare { - color: $foursquare-color; - } - - .fa-github, - .fa-github-alt, - .fa-github-square { - color: $github-color; - } - - .fa-gitlab { - color: $gitlab-color; - } - - .fa-instagram { - color: $instagram-color; - } - - .fa-keybase { - color: $keybase-color; - } - - .fa-lastfm, - .fa-lastfm-square { - color: $lastfm-color; - } - - .fa-linkedin, - .fa-linkedin-in { - color: $linkedin-color; - } - - .fa-mastodon, - .fa-mastodon-square { - color: $mastodon-color; - } - - .fa-pinterest, - .fa-pinterest-p, - .fa-pinterest-square { - color: $pinterest-color; - } - - .fa-reddit { - color: $reddit-color; - } - - .fa-rss, - .fa-rss-square { - color: $rss-color; - } - - .fa-soundcloud { - color: $soundcloud-color; - } - - .fa-stack-exchange, - .fa-stack-overflow { - color: $stackoverflow-color; - } - - .fa-tumblr, - .fa-tumblr-square { - color: $tumblr-color; - } - - .fa-twitter, - .fa-twitter-square { - color: $twitter-color; - } - - .fa-vimeo, - .fa-vimeo-square, - .fa-vimeo-v { - color: $vimeo-color; - } - - .fa-vine { - color: $vine-color; - } - - .fa-youtube { - color: $youtube-color; - } - - .fa-xing, - .fa-xing-square { - color: $xing-color; - } -} - -/* - Navicons - ========================================================================== */ - -.navicon { - position: relative; - width: $navicon-width; - height: $navicon-height; - background: $primary-color; - margin: auto; - -webkit-transition: 0.3s; - transition: 0.3s; - - &:before, - &:after { - content: ""; - position: absolute; - left: 0; - width: $navicon-width; - height: $navicon-height; - background: $primary-color; - -webkit-transition: 0.3s; - transition: 0.3s; - } - - &:before { - top: (-2 * $navicon-height); - } - - &:after { - bottom: (-2 * $navicon-height); - } -} - -.close .navicon { - /* hide the middle line*/ - background: transparent; - - /* overlay the lines by setting both their top values to 0*/ - &:before, - &:after { - -webkit-transform-origin: 50% 50%; - -ms-transform-origin: 50% 50%; - transform-origin: 50% 50%; - top: 0; - width: $navicon-width; - } - - /* rotate the lines to form the x shape*/ - &:before { - -webkit-transform: rotate3d(0, 0, 1, 45deg); - transform: rotate3d(0, 0, 1, 45deg); - } - &:after { - -webkit-transform: rotate3d(0, 0, 1, -45deg); - transform: rotate3d(0, 0, 1, -45deg); - } -} - -/* hacks-guide change start: disable toggle effects on navigation as it breaks the site in some cases */ -/* -.greedy-nav__toggle { - &:before { - @supports (pointer-events: none) { - content: ''; - position: fixed; - top: 0; - left: 0; - width: 100%; - height: 100%; - opacity: 0; - background-color: $background-color; - -webkit-transition: $global-transition; - transition: $global-transition; - pointer-events: none; - } - } - - &.close { - &:before { - opacity: 0.9; - -webkit-transition: $global-transition; - transition: $global-transition; - pointer-events: auto; - } - } -} - -.greedy-nav__toggle:hover { - .navicon, - .navicon:before, - .navicon:after { - background: mix(#000, $primary-color, 25%); - } - - &.close { - .navicon { - background: transparent; - } - } -} -*/ -/* hacks-guide change end */ - -/* - Sticky, fixed to top content - ========================================================================== */ - -.sticky { - @include breakpoint($large) { - @include clearfix(); - position: -webkit-sticky; - position: sticky; - top: 2em; - - > * { - display: block; - } - } -} - -/* - Wells - ========================================================================== */ - -.well { - min-height: 20px; - padding: 19px; - margin-bottom: 20px; - background-color: #f5f5f5; - border: 1px solid #e3e3e3; - border-radius: $border-radius; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); -} - -/* - Modals - ========================================================================== */ - -.show-modal { - overflow: hidden; - position: relative; - - &:before { - position: absolute; - content: ""; - top: 0; - left: 0; - width: 100%; - height: 100%; - z-index: 999; - background-color: rgba(255, 255, 255, 0.85); - } - - .modal { - display: block; - } -} - -.modal { - display: none; - position: fixed; - width: 300px; - top: 50%; - left: 50%; - margin-left: -150px; - margin-top: -150px; - min-height: 0; - z-index: 9999; - background: #fff; - border: 1px solid $border-color; - border-radius: $border-radius; - box-shadow: $box-shadow; - - &__title { - margin: 0; - padding: 0.5em 1em; - } - - &__supporting-text { - padding: 0 1em 0.5em 1em; - } - - &__actions { - padding: 0.5em 1em; - border-top: 1px solid $border-color; - } -} - -/* - Footnotes - ========================================================================== */ - -.footnote { - color: mix(#fff, $gray, 25%); - text-decoration: none; -} - -.footnotes { - color: mix(#fff, $gray, 25%); - - ol, - li, - p { - margin-bottom: 0; - font-size: $type-size-6; - } -} - -a.reversefootnote { - color: $gray; - text-decoration: none; - - &:hover { - text-decoration: underline; - } -} - -/* - Required - ========================================================================== */ - -.required { - color: $danger-color; - font-weight: bold; -} - -/* - Google Custom Search Engine - ========================================================================== */ - -.gsc-control-cse { - table, - tr, - td { - border: 0; /* remove table borders widget */ - } -} - -/* - Responsive Video Embed - ========================================================================== */ - -.responsive-video-container { - position: relative; - margin-bottom: 1em; - padding-bottom: 56.25%; - height: 0; - overflow: hidden; - max-width: 100%; - - iframe, - object, - embed { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - } -} - -// full screen video fixes -:-webkit-full-screen-ancestor { - .masthead, - .page__footer { - position: static; - } -} - -/* hacks-guide change start: Add language selector */ -/* - Langicons - ========================================================================== */ - -.langicon { - position: relative; - width: $navicon-width; - display: inline-block; - background: transparent; - margin: auto; - color: $text-color; - - &:before, - &:after { - content: ""; - position: absolute; - left: 0; - width: $navicon-width; - height: $navicon-height; - background: $text-color; - display: none; - } - - &:before { - top: (-2 * $navicon-height); - } - - &:after { - bottom: (-2 * $navicon-height); - } -} - -.close .langicon { - /* hide the middle line*/ - background: transparent; - - .fa-language { - display: none; - -webkit-transition: 0.3s; - transition: 0.3s; - } - - /* overlay the lines by setting both their top values to 0*/ - &:before, &:after{ - -webkit-transform-origin: 50% 50%; - -ms-transform-origin: 50% 50%; - transform-origin: 50% 50%; - width: $navicon-width; - display: inherit; - } - - /* rotate the lines to form the x shape*/ - &:before{ - -webkit-transform: rotate3d(0,0,1,45deg); - transform: rotate3d(0,0,1,45deg); - } - &:after{ - top: (-2 * $navicon-height); - -webkit-transform: rotate3d(0,0,1,-45deg); - transform: rotate3d(0,0,1,-45deg); - } -} -/* hacks-guide change end */ diff --git a/_sass/minimal-mistakes/_variables.scss b/_sass/minimal-mistakes/_variables.scss deleted file mode 100644 index 81a3acf7b..000000000 --- a/_sass/minimal-mistakes/_variables.scss +++ /dev/null @@ -1,173 +0,0 @@ -/* ========================================================================== - Variables - ========================================================================== */ - -/* - Typography - ========================================================================== */ - -$doc-font-size: 16 !default; - -/* paragraph indention */ -$paragraph-indent: false !default; // true, false (default) -$indent-var: 1.3em !default; - -/* system typefaces */ -$serif: Georgia, Times, serif !default; -$sans-serif: -apple-system, BlinkMacSystemFont, "Roboto", "Segoe UI", - "Helvetica Neue", "Lucida Grande", Arial, sans-serif !default; -$monospace: Monaco, Consolas, "Lucida Console", monospace !default; - -/* sans serif typefaces */ -$sans-serif-narrow: $sans-serif !default; -$helvetica: Helvetica, "Helvetica Neue", Arial, sans-serif !default; - -/* serif typefaces */ -$georgia: Georgia, serif !default; -$times: Times, serif !default; -$bodoni: "Bodoni MT", serif !default; -$calisto: "Calisto MT", serif !default; -$garamond: Garamond, serif !default; - -$global-font-family: $sans-serif !default; -$header-font-family: $sans-serif !default; -$caption-font-family: $serif !default; - -/* type scale */ -$type-size-1: 2.441em !default; // ~39.056px -$type-size-2: 1.953em !default; // ~31.248px -$type-size-3: 1.563em !default; // ~25.008px -$type-size-4: 1.25em !default; // ~20px -$type-size-5: 1em !default; // ~16px -$type-size-6: 0.75em !default; // ~12px -$type-size-7: 0.6875em !default; // ~11px -$type-size-8: 0.625em !default; // ~10px - -/* headline scale */ -$h-size-1: 1.563em !default; // ~25.008px -$h-size-2: 1.25em !default; // ~20px -$h-size-3: 1.125em !default; // ~18px -$h-size-4: 1.0625em !default; // ~17px -$h-size-5: 1.03125em !default; // ~16.5px -$h-size-6: 1em !default; // ~16px - -/* - Colors - ========================================================================== */ - -$gray: #7a8288 !default; -$dark-gray: mix(#000, $gray, 50%) !default; -$darker-gray: mix(#000, $gray, 60%) !default; -$light-gray: mix(#fff, $gray, 50%) !default; -$lighter-gray: mix(#fff, $gray, 90%) !default; - -$background-color: #fff !default; -$code-background-color: #fafafa !default; -$code-background-color-dark: $light-gray !default; -$text-color: $dark-gray !default; -$muted-text-color: mix(#fff, $text-color, 20%) !default; -$border-color: $lighter-gray !default; -$form-background-color: $lighter-gray !default; -$footer-background-color: $lighter-gray !default; - -$primary-color: #6f777d !default; -$success-color: #3fa63f !default; -$warning-color: #d67f05 !default; -$danger-color: #ee5f5b !default; -$info-color: #3b9cba !default; -$focus-color: $primary-color !default; -$active-color: mix(#fff, $primary-color, 80%) !default; - -/* YIQ color contrast */ -$yiq-contrasted-dark-default: $dark-gray !default; -$yiq-contrasted-light-default: #fff !default; -$yiq-contrasted-threshold: 175 !default; -$yiq-debug: false !default; - -/* brands */ -$behance-color: #1769ff !default; -$bitbucket-color: #205081 !default; -$dribbble-color: #ea4c89 !default; -$facebook-color: #3b5998 !default; -$flickr-color: #ff0084 !default; -$foursquare-color: #0072b1 !default; -$github-color: #171516 !default; -$gitlab-color: #e24329 !default; -$instagram-color: #517fa4 !default; -$keybase-color: #ef7639 !default; -$lastfm-color: #d51007 !default; -$linkedin-color: #007bb6 !default; -$mastodon-color: #2b90d9 !default; -$pinterest-color: #cb2027 !default; -$reddit-color: #ff4500 !default; -$rss-color: #fa9b39 !default; -$soundcloud-color: #ff3300 !default; -$stackoverflow-color: #fe7a15 !default; -$tumblr-color: #32506d !default; -$twitter-color: #55acee !default; -$vimeo-color: #1ab7ea !default; -$vine-color: #00bf8f !default; -$youtube-color: #bb0000 !default; -$xing-color: #006567 !default; - -/* links */ -$link-color: mix(#000, $info-color, 20%) !default; -$link-color-hover: mix(#000, $link-color, 25%) !default; -$link-color-visited: mix(#fff, $link-color, 15%) !default; -$masthead-link-color: $primary-color !default; -$masthead-link-color-hover: mix(#000, $primary-color, 25%) !default; -$navicon-link-color-hover: mix(#fff, $primary-color, 75%) !default; - -/* notices */ -$notice-background-mix: 80% !default; -$code-notice-background-mix: 90% !default; - -/* syntax highlighting (base16) */ -$base00: #263238 !default; -$base01: #2e3c43 !default; -$base02: #314549 !default; -$base03: #546e7a !default; -$base04: #b2ccd6 !default; -$base05: #eeffff !default; -$base06: #eeffff !default; -$base07: #ffffff !default; -$base08: #f07178 !default; -$base09: #f78c6c !default; -$base0a: #ffcb6b !default; -$base0b: #c3e88d !default; -$base0c: #89ddff !default; -$base0d: #82aaff !default; -$base0e: #c792ea !default; -$base0f: #ff5370 !default; - -/* - Breakpoints - ========================================================================== */ - -$small: 600px !default; -$medium: 768px !default; -$medium-wide: 900px !default; -$large: 1024px !default; -$x-large: 1280px !default; -$max-width: $x-large !default; - -/* - Grid - ========================================================================== */ - -$right-sidebar-width-narrow: 200px !default; -$right-sidebar-width: 300px !default; -$right-sidebar-width-wide: 400px !default; - -/* - Other - ========================================================================== */ - -$border-radius: 4px !default; -$box-shadow: 0 1px 1px rgba(0, 0, 0, 0.125) !default; -$nav-height: 2em !default; -$nav-toggle-height: 2rem !default; -$navicon-width: 1.5rem !default; -$navicon-height: 0.25rem !default; -$global-transition: all 0.2s ease-in-out !default; -$intro-transition: intro 0.3s both !default; diff --git a/_sass/minimal-mistakes/skins/_air.scss b/_sass/minimal-mistakes/skins/_air.scss deleted file mode 100644 index 0e5360c33..000000000 --- a/_sass/minimal-mistakes/skins/_air.scss +++ /dev/null @@ -1,23 +0,0 @@ -/* ========================================================================== - Air skin - ========================================================================== */ - -/* Colors */ -$background-color: #eeeeee !default; -$text-color: #222831 !default; -$muted-text-color: #393e46 !default; -$primary-color: #0092ca !default; -$border-color: mix(#fff, #393e46, 75%) !default; -$footer-background-color: $primary-color !default; -$link-color: #393e46 !default; -$masthead-link-color: $text-color !default; -$masthead-link-color-hover: $text-color !default; -$navicon-link-color-hover: mix(#fff, $text-color, 80%) !default; - -.page__footer { - color: #fff !important; // override -} - -.page__footer-follow .social-icons .svg-inline--fa { - color: inherit; -} diff --git a/_sass/minimal-mistakes/skins/_aqua.scss b/_sass/minimal-mistakes/skins/_aqua.scss deleted file mode 100644 index 7c3944e07..000000000 --- a/_sass/minimal-mistakes/skins/_aqua.scss +++ /dev/null @@ -1,34 +0,0 @@ -/* ========================================================================== - Aqua skin - ========================================================================== */ - -/* Colors */ -$gray : #1976d2 !default; -$dark-gray : mix(#000, $gray, 40%) !default; -$darker-gray : mix(#000, $gray, 60%) !default; -$light-gray : mix(#fff, $gray, 50%) !default; -$lighter-gray : mix(#fff, $gray, 90%) !default; - -$body-color : #fff !default; -$background-color : #f0fff0 !default; -$code-background-color : $lighter-gray !default; -$code-background-color-dark : $light-gray !default; -$text-color : $dark-gray !default; -$border-color : $lighter-gray !default; - -$primary-color : $gray !default; -$success-color : #27ae60 !default; -$warning-color : #e67e22 !default; -$danger-color : #c0392b !default; -$info-color : #03a9f4 !default; - -/* links */ -$link-color : $info-color !default; -$link-color-hover : mix(#000, $link-color, 25%) !default; -$link-color-visited : mix(#fff, $link-color, 25%) !default; -$masthead-link-color : $primary-color !default; -$masthead-link-color-hover : mix(#000, $primary-color, 25%) !default; - -/* notices */ -$notice-background-mix: 90% !default; -$code-notice-background-mix: 95% !default; diff --git a/_sass/minimal-mistakes/skins/_contrast.scss b/_sass/minimal-mistakes/skins/_contrast.scss deleted file mode 100644 index 38283b8f6..000000000 --- a/_sass/minimal-mistakes/skins/_contrast.scss +++ /dev/null @@ -1,52 +0,0 @@ -/* ========================================================================== - Contrast skin - ========================================================================== */ - -/* Colors */ -$text-color: #000 !default; -$muted-text-color: $text-color !default; -$primary-color: #ff0000 !default; -$border-color: mix(#fff, $text-color, 75%) !default; -$footer-background-color: #000 !default; -$link-color: #0000ff !default; -$masthead-link-color: $text-color !default; -$masthead-link-color-hover: $text-color !default; -$navicon-link-color-hover: mix(#fff, $text-color, 80%) !default; - -/* contrast syntax highlighting (base16) */ -$base00: #000000 !default; -$base01: #242422 !default; -$base02: #484844 !default; -$base03: #6c6c66 !default; -$base04: #918f88 !default; -$base05: #b5b3aa !default; -$base06: #d9d7cc !default; -$base07: #fdfbee !default; -$base08: #ff6c60 !default; -$base09: #e9c062 !default; -$base0a: #ffffb6 !default; -$base0b: #a8ff60 !default; -$base0c: #c6c5fe !default; -$base0d: #96cbfe !default; -$base0e: #ff73fd !default; -$base0f: #b18a3d !default; - -.page__content { - .notice, - .notice--primary, - .notice--info, - .notice--warning, - .notice--success, - .notice--danger { - color: $text-color; - } -} - -.page__footer { - color: #fff !important; // override -} - -.page__footer-follow .social-icons i, -.page__footer-follow .social-icons .svg-inline--fa { - color: inherit; -} diff --git a/_sass/minimal-mistakes/skins/_dark.scss b/_sass/minimal-mistakes/skins/_dark.scss deleted file mode 100644 index dbfe5a051..000000000 --- a/_sass/minimal-mistakes/skins/_dark.scss +++ /dev/null @@ -1,33 +0,0 @@ -/* ========================================================================== - Dark skin - ========================================================================== */ - -/* Colors */ -/* hacks guide changes begin */ -$background-color: #28282b !default; -$text-highlight-color: #ffffff26 !default; -/* hacks guide changes end */ -$text-color: #eaeaea !default; -$primary-color: #00adb5 !default; -$border-color: mix(#fff, $background-color, 20%) !default; -$code-background-color: mix(#000, $background-color, 15%) !default; -$code-background-color-dark: mix(#000, $background-color, 20%) !default; -$form-background-color: mix(#000, $background-color, 15%) !default; -$footer-background-color: mix(#000, $background-color, 30%) !default; -$link-color: mix($primary-color, $text-color, 40%) !default; -$link-color-hover: mix(#fff, $link-color, 25%) !default; -$link-color-visited: mix(#000, $link-color, 25%) !default; -$masthead-link-color: $text-color !default; -$masthead-link-color-hover: mix(#000, $text-color, 20%) !default; -$navicon-link-color-hover: mix(#000, $background-color, 30%) !default; - -.author__urls.social-icons i, -.author__urls.social-icons .svg-inline--fa, -.page__footer-follow .social-icons i, -.page__footer-follow .social-icons .svg-inline--fa { - color: inherit; -} - -.ais-search-box .ais-search-box--input { - background-color: $form-background-color; -} diff --git a/_sass/minimal-mistakes/skins/_default.scss b/_sass/minimal-mistakes/skins/_default.scss deleted file mode 100644 index 7489b5847..000000000 --- a/_sass/minimal-mistakes/skins/_default.scss +++ /dev/null @@ -1,5 +0,0 @@ -/* ========================================================================== - Default skin - ========================================================================== */ - -// Intentionally left blank diff --git a/_sass/minimal-mistakes/skins/_dirt.scss b/_sass/minimal-mistakes/skins/_dirt.scss deleted file mode 100644 index 5090f559d..000000000 --- a/_sass/minimal-mistakes/skins/_dirt.scss +++ /dev/null @@ -1,33 +0,0 @@ -/* ========================================================================== - Dirt skin - ========================================================================== */ - -/* Colors */ -$background-color: #f3f3f3 !default; -$text-color: #343434 !default; -$muted-text-color: #8e8b82 !default; -$primary-color: #343434 !default; -$border-color: #e9dcbe !default; -$footer-background-color: #e9dcbe !default; -$link-color: #343434 !default; -$masthead-link-color: $text-color !default; -$masthead-link-color-hover: $text-color !default; -$navicon-link-color-hover: mix(#fff, $text-color, 80%) !default; - -/* dirt syntax highlighting (base16) */ -$base00: #231e18 !default; -$base01: #302b25 !default; -$base02: #48413a !default; -$base03: #9d8b70 !default; -$base04: #b4a490 !default; -$base05: #cabcb1 !default; -$base06: #d7c8bc !default; -$base07: #e4d4c8 !default; -$base08: #d35c5c !default; -$base09: #ca7f32 !default; -$base0a: #e0ac16 !default; -$base0b: #b7ba53 !default; -$base0c: #6eb958 !default; -$base0d: #88a4d3 !default; -$base0e: #bb90e2 !default; -$base0f: #b49368 !default; diff --git a/_sass/minimal-mistakes/skins/_mint.scss b/_sass/minimal-mistakes/skins/_mint.scss deleted file mode 100644 index 28557a3a2..000000000 --- a/_sass/minimal-mistakes/skins/_mint.scss +++ /dev/null @@ -1,24 +0,0 @@ -/* ========================================================================== - Mint skin - ========================================================================== */ - -/* Colors */ -$background-color: #f3f6f6 !default; -$text-color: #40514e !default; -$muted-text-color: #40514e !default; -$primary-color: #11999e !default; -$border-color: mix(#fff, #40514e, 75%) !default; -$footer-background-color: #30e3ca !default; -$link-color: #11999e !default; -$masthead-link-color: $text-color !default; -$masthead-link-color-hover: $text-color !default; -$navicon-link-color-hover: mix(#fff, $text-color, 80%) !default; - -.page__footer { - color: #fff !important; // override -} - -.page__footer-follow .social-icons i, -.page__footer-follow .social-icons .svg-inline--fa { - color: inherit; -} diff --git a/_sass/minimal-mistakes/skins/_neon.scss b/_sass/minimal-mistakes/skins/_neon.scss deleted file mode 100644 index a4f2ef5d9..000000000 --- a/_sass/minimal-mistakes/skins/_neon.scss +++ /dev/null @@ -1,63 +0,0 @@ -/* ========================================================================== - Neon skin - ========================================================================== */ - -/* Colors */ -$background-color: #141010 !default; -$text-color: #fff6fb !default; -$primary-color: #f21368 !default; -$border-color: mix(#fff, $background-color, 20%) !default; -$code-background-color: mix(#000, $background-color, 15%) !default; -$code-background-color-dark: mix(#000, $background-color, 20%) !default; -$form-background-color: mix(#000, $background-color, 15%) !default; -$footer-background-color: mix($primary-color, #000, 10%) !default; -$link-color: $primary-color !default; -$link-color-hover: mix(#fff, $link-color, 25%) !default; -$link-color-visited: mix(#000, $link-color, 25%) !default; -$masthead-link-color: $text-color !default; -$masthead-link-color-hover: mix(#000, $text-color, 20%) !default; -$navicon-link-color-hover: mix(#000, $background-color, 30%) !default; - -/* notices */ -$notice-background-mix: 90% !default; -$code-notice-background-mix: 95% !default; - -/* neon syntax highlighting (base16) */ -$base00: #ffffff !default; -$base01: #e0e0e0 !default; -$base02: #d0d0d0 !default; -$base03: #b0b0b0 !default; -$base04: #000000 !default; -$base05: #101010 !default; -$base06: #151515 !default; -$base07: #202020 !default; -$base08: #ff0086 !default; -$base09: #fd8900 !default; -$base0a: #aba800 !default; -$base0b: #00c918 !default; -$base0c: #1faaaa !default; -$base0d: #3777e6 !default; -$base0e: #ad00a1 !default; -$base0f: #cc6633 !default; - -.author__urls.social-icons i, -.author__urls.social-icons .svg-inline--fa, -.page__footer-follow .social-icons i, -.page__footer-follow .social-icons .svg-inline--fa { - color: inherit; -} - -/* next/previous buttons */ -.pagination--pager { - color: $text-color; - background-color: $primary-color; - border-color: transparent; - - &:visited { - color: $text-color; - } -} - -.ais-search-box .ais-search-box--input { - background-color: $form-background-color; -} \ No newline at end of file diff --git a/_sass/minimal-mistakes/skins/_nord.scss b/_sass/minimal-mistakes/skins/_nord.scss deleted file mode 100644 index e8ca02dc0..000000000 --- a/_sass/minimal-mistakes/skins/_nord.scss +++ /dev/null @@ -1,282 +0,0 @@ -// Project: Nord -// Version: 0.2.0 -// Repository: https://github.com/arcticicestudio/nord - -/* -MIT License (MIT) - -Copyright (c) 2016-2021 Arctic Ice Studio development@arcticicestudio.com (https://www.arcticicestudio.com) -Copyright (c) 2016-2021 Sven Greb development@svengreb.de (https://www.svengreb.de) - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -*/ - - -//// -/// An arctic, north-bluish color palette. -/// Created for the clean- and minimal flat design pattern to achieve a optimal focus and readability for code syntax -/// highlighting and UI. -/// It consists of a total of sixteen, carefully selected, dimmed pastel colors for a eye-comfortable, but yet colorful -/// ambiance. -/// -/// @author Arctic Ice Studio -//// - -/// Base component color of "Polar Night". -/// -/// Used for texts, backgrounds, carets and structuring characters like curly- and square brackets. -/// -/// @access public -/// @example scss - SCSS -/// /* For dark ambiance themes */ -/// .background { -/// background-color: $nord0; -/// } -/// /* For light ambiance themes */ -/// .text { -/// color: $nord0; -/// } -/// @group polarnight -/// @since 0.1.0 -$nord0: #2e3440; - -/// Lighter shade color of the base component color. -/// -/// Used as a lighter background color for UI elements like status bars. -/// -/// @access public -/// @group polarnight -/// @see $nord0 -/// @since 0.1.0 -$nord1: #3b4252; - -/// Lighter shade color of the base component color. -/// -/// Used as line highlighting in the editor. -/// In the UI scope it may be used as selection- and highlight color. -/// -/// @access public -/// @example scss - SCSS -/// /* Code Syntax Highlighting scope */ -/// .editor { -/// &.line { -/// background-color: $nord2; -/// } -/// } -/// -/// /* UI scope */ -/// button { -/// &:selected { -/// background-color: $nord2; -/// } -/// } -/// @group polarnight -/// @see $nord0 -/// @since 0.1.0 -$nord2: #434c5e; - -/// Lighter shade color of the base component color. -/// -/// Used for comments, invisibles, indent- and wrap guide marker. -/// In the UI scope used as pseudoclass color for disabled elements. -/// -/// @access public -/// @example scss - SCSS -/// /* Code Syntax Highlighting scope */ -/// .editor { -/// &.indent-guide, -/// &.wrap-guide { -/// &.marker { -/// color: $nord3; -/// } -/// } -/// } -/// .comment, -/// .invisible { -/// color: $nord3; -/// } -/// -/// /* UI scope */ -/// button { -/// &:disabled { -/// background-color: $nord3; -/// } -/// } -/// @group polarnight -/// @see $nord0 -/// @since 0.1.0 -$nord3: #4c566a; - -/// Base component color of "Snow Storm". -/// -/// Main color for text, variables, constants and attributes. -/// In the UI scope used as semi-light background depending on the theme shading design. -/// -/// @access public -/// @example scss - SCSS -/// /* For light ambiance themes */ -/// .background { -/// background-color: $nord4; -/// } -/// /* For dark ambiance themes */ -/// .text { -/// color: $nord4; -/// } -/// @group snowstorm -/// @since 0.1.0 -$nord4: #d8dee9; - -/// Lighter shade color of the base component color. -/// -/// Used as a lighter background color for UI elements like status bars. -/// Used as semi-light background depending on the theme shading design. -/// -/// @access public -/// @group snowstorm -/// @see $nord4 -/// @since 0.1.0 -$nord5: #e5e9f0; - -/// Lighter shade color of the base component color. -/// -/// Used for punctuations, carets and structuring characters like curly- and square brackets. -/// In the UI scope used as background, selection- and highlight color depending on the theme shading design. -/// -/// @access public -/// @group snowstorm -/// @see $nord4 -/// @since 0.1.0 -$nord6: #eceff4; - -/// Bluish core color. -/// -/// Used for classes, types and documentation tags. -/// -/// @access public -/// @group frost -/// @since 0.1.0 -$nord7: #8fbcbb; - -/// Bluish core accent color. -/// -/// Represents the accent color of the color palette. -/// Main color for primary UI elements and methods/functions. -/// -/// Can be used for -/// - Markup quotes -/// - Markup link URLs -/// -/// @access public -/// @group frost -/// @since 0.1.0 -$nord8: #88c0d0; - -/// Bluish core color. -/// -/// Used for language-specific syntactic/reserved support characters and keywords, operators, tags, units and -/// punctuations like (semi)colons,commas and braces. -/// -/// @access public -/// @group frost -/// @since 0.1.0 -$nord9: #81a1c1; - -/// Bluish core color. -/// -/// Used for markup doctypes, import/include/require statements, pre-processor statements and at-rules (`@`). -/// -/// @access public -/// @group frost -/// @since 0.1.0 -$nord10: #5e81ac; - -/// Colorful component color. -/// -/// Used for errors, git/diff deletion and linter marker. -/// -/// @access public -/// @group aurora -/// @since 0.1.0 -$nord11: #bf616a; - -/// Colorful component color. -/// -/// Used for annotations. -/// -/// @access public -/// @group aurora -/// @since 0.1.0 -$nord12: #d08770; - -/// Colorful component color. -/// -/// Used for escape characters, regular expressions and markup entities. -/// In the UI scope used for warnings and git/diff renamings. -/// -/// @access public -/// @group aurora -/// @since 0.1.0 -$nord13: #ebcb8b; - -/// Colorful component color. -/// -/// Main color for strings and attribute values. -/// In the UI scope used for git/diff additions and success visualizations. -/// -/// @access public -/// @group aurora -/// @since 0.1.0 -$nord14: #a3be8c; - -/// Colorful component color. -/// -/// Used for numbers. -/// -/// @access public -/// @group aurora -/// @since 0.1.0 -$nord15: #b48ead; - -// adapt to Minimal Mistakes -/* Colors */ -$background-color : $nord0 !default; -$text-color : $nord4 !default; -$text-highlight-color : $nord3 !default; -$primary-color : $nord8 !default; -$success-color : $nord14 !default; -$warning-color : $nord12 !default; -$danger-color : $nord11 !default; -$info-color : $nord10 !default; -$border-color : mix(#fff, $background-color, 20%) !default; -$code-background-color : mix(#000, $background-color, 15%) !default; -$code-background-color-dark : mix(#000, $background-color, 20%) !default; -$form-background-color : mix(#000, $background-color, 15%) !default; -$footer-background-color : mix(#000, $background-color, 30%) !default; -$link-color : mix($primary-color, $text-color, 40%) !default; -$link-color-hover : mix(#fff, $link-color, 25%) !default; -$link-color-visited : mix(#000, $link-color, 25%) !default; -$masthead-link-color : $text-color !default; -$masthead-link-color-hover : mix(#000, $text-color, 20%) !default; -$navicon-link-color-hover : mix(#000, $background-color, 30%) !default; -$notice-background-mix : 45% !default; - -.author__urls.social-icons .fa, -.page__footer-follow .social-icons .fa { - color: inherit; -} diff --git a/_sass/minimal-mistakes/skins/_plum.scss b/_sass/minimal-mistakes/skins/_plum.scss deleted file mode 100644 index defa69cde..000000000 --- a/_sass/minimal-mistakes/skins/_plum.scss +++ /dev/null @@ -1,70 +0,0 @@ -/* ========================================================================== - Plum skin - ========================================================================== */ - -/* Colors */ -$background-color: #521477 !default; -$text-color: #fffd86 !default; -$primary-color: #c327ab !default; -$border-color: mix(#fff, $background-color, 20%) !default; -$code-background-color: mix(#000, $background-color, 15%) !default; -$code-background-color-dark: mix(#000, $background-color, 20%) !default; -$form-background-color: mix(#000, $background-color, 15%) !default; -$footer-background-color: mix(#000, $background-color, 25%) !default; -$link-color: $primary-color !default; -$link-color-hover: mix(#fff, $link-color, 25%) !default; -$link-color-visited: mix(#000, $link-color, 25%) !default; -$masthead-link-color: $text-color !default; -$masthead-link-color-hover: mix(#000, $text-color, 20%) !default; -$navicon-link-color-hover: mix(#000, $background-color, 30%) !default; - -/* notices */ -$notice-background-mix: 70% !default; -$code-notice-background-mix: 80% !default; - -/* plum syntax highlighting (base16) */ -$base00: #ffffff !default; -$base01: #e0e0e0 !default; -$base02: #d0d0d0 !default; -$base03: #b0b0b0 !default; -$base04: #000000 !default; -$base05: #101010 !default; -$base06: #151515 !default; -$base07: #202020 !default; -$base08: #ff0086 !default; -$base09: #fd8900 !default; -$base0a: #aba800 !default; -$base0b: #00c918 !default; -$base0c: #1faaaa !default; -$base0d: #3777e6 !default; -$base0e: #ad00a1 !default; -$base0f: #cc6633 !default; - -.author__urls.social-icons i, -.author__urls.social-icons .svg-inline--fa, -.page__footer-follow .social-icons i, -.page__footer-follow .social-icons .svg-inline--fa { - color: inherit; -} - -.page__content { - a, - a:visited { - color: inherit; - } -} - -/* next/previous buttons */ -.pagination--pager { - color: $text-color; - background-color: $primary-color; - border-color: transparent; - - &:visited { - color: $text-color; - } -} - -.ais-search-box .ais-search-box--input { - background-color: $form-background-color; -} \ No newline at end of file diff --git a/_sass/minimal-mistakes/skins/_sunrise.scss b/_sass/minimal-mistakes/skins/_sunrise.scss deleted file mode 100644 index bc259f6d8..000000000 --- a/_sass/minimal-mistakes/skins/_sunrise.scss +++ /dev/null @@ -1,49 +0,0 @@ -/* ========================================================================== - Sunrise skin - ========================================================================== */ - -/* Colors */ -$dark-gray: #0e2431 !default; -$background-color: #e8d5b7 !default; -$text-color: #000 !default; -$muted-text-color: $dark-gray !default; -$primary-color: #fc3a52 !default; -$border-color: mix(#000, $background-color, 20%) !default; -$code-background-color: mix(#fff, $background-color, 20%) !default; -$code-background-color-dark: mix(#000, $background-color, 10%) !default; -$form-background-color: mix(#fff, $background-color, 15%) !default; -$footer-background-color: #f9b248 !default; -$link-color: mix(#000, $primary-color, 10%) !default; -$link-color-hover: mix(#fff, $link-color, 25%) !default; -$link-color-visited: mix(#000, $link-color, 25%) !default; -$masthead-link-color: $text-color !default; -$masthead-link-color-hover: mix(#000, $text-color, 20%) !default; -$navicon-link-color-hover: mix(#000, $background-color, 30%) !default; - -/* notices */ -$notice-background-mix: 75% !default; - -/* sunrise syntax highlighting (base16) */ -$base00: #1d1f21 !default; -$base01: #282a2e !default; -$base02: #373b41 !default; -$base03: #969896 !default; -$base04: #b4b7b4 !default; -$base05: #c5c8c6 !default; -$base06: #e0e0e0 !default; -$base07: #ffffff !default; -$base08: #cc6666 !default; -$base09: #de935f !default; -$base0a: #f0c674 !default; -$base0b: #b5bd68 !default; -$base0c: #8abeb7 !default; -$base0d: #81a2be !default; -$base0e: #b294bb !default; -$base0f: #a3685a !default; - -.author__urls.social-icons i, -.author__urls.social-icons .svg-inline--fa, -.page__footer-follow .social-icons i, -.page__footer-follow .social-icons .svg-inline--fa { - color: inherit; -} diff --git a/_sass/minimal-mistakes/vendor/breakpoint/_breakpoint.scss b/_sass/minimal-mistakes/vendor/breakpoint/_breakpoint.scss deleted file mode 100644 index a0528eb8b..000000000 --- a/_sass/minimal-mistakes/vendor/breakpoint/_breakpoint.scss +++ /dev/null @@ -1,114 +0,0 @@ -////////////////////////////// -// Default Variables -////////////////////////////// -$Breakpoint-Settings: ( - 'default media': all, - 'default feature': min-width, - 'default pair': width, - - 'force all media type': false, - 'to ems': false, - 'transform resolutions': true, - - 'no queries': false, - 'no query fallbacks': false, - - 'base font size': 16px, - - 'legacy syntax': false -); - -$breakpoint: () !default; - -////////////////////////////// -// Imports -////////////////////////////// -@import "settings"; -@import "context"; -@import "helpers"; -@import "parsers"; -@import "no-query"; - -@import "respond-to"; - -@import "legacy-settings"; - -////////////////////////////// -// Breakpoint Mixin -////////////////////////////// - -@mixin breakpoint($query, $no-query: false) { - @include legacy-settings-warning; - - // Reset contexts - @include private-breakpoint-reset-contexts(); - - $breakpoint: breakpoint($query, false); - - $query-string: map-get($breakpoint, 'query'); - $query-fallback: map-get($breakpoint, 'fallback'); - - $private-breakpoint-context-holder: map-get($breakpoint, 'context holder') !global; - $private-breakpoint-query-count: map-get($breakpoint, 'query count') !global; - - // Allow for an as-needed override or usage of no query fallback. - @if $no-query != false { - $query-fallback: $no-query; - } - - @if $query-fallback != false { - $context-setter: private-breakpoint-set-context('no-query', $query-fallback); - } - - // Print Out Query String - @if not breakpoint-get('no queries') { - @media #{$query-string} { - @content; - } - } - - @if breakpoint-get('no query fallbacks') != false or breakpoint-get('no queries') == true { - - $type: type-of(breakpoint-get('no query fallbacks')); - $print: false; - - @if ($type == 'bool') { - $print: true; - } - @else if ($type == 'string') { - @if $query-fallback == breakpoint-get('no query fallbacks') { - $print: true; - } - } - @else if ($type == 'list') { - @each $wrapper in breakpoint-get('no query fallbacks') { - @if $query-fallback == $wrapper { - $print: true; - } - } - } - - // Write Fallback - @if ($query-fallback != false) and ($print == true) { - $type-fallback: type-of($query-fallback); - - @if ($type-fallback != 'bool') { - #{$query-fallback} & { - @content; - } - } - @else { - @content; - } - } - } - - @include private-breakpoint-reset-contexts(); -} - - -@mixin mq($query, $no-query: false) { - @include breakpoint($query, $no-query) { - @content; - } -} diff --git a/_sass/minimal-mistakes/vendor/breakpoint/_context.scss b/_sass/minimal-mistakes/vendor/breakpoint/_context.scss deleted file mode 100644 index 57947f5c8..000000000 --- a/_sass/minimal-mistakes/vendor/breakpoint/_context.scss +++ /dev/null @@ -1,95 +0,0 @@ -////////////////////////////// -// Private Breakpoint Variables -////////////////////////////// -$private-breakpoint-context-holder: (); -$private-breakpoint-query-count: 0 !default; - -////////////////////////////// -// Breakpoint Has Context -// Returns whether or not you are inside a Breakpoint query -////////////////////////////// -@function breakpoint-has-context() { - @if length($private-breakpoint-query-count) { - @return true; - } - @else { - @return false; - } -} - -////////////////////////////// -// Breakpoint Get Context -// $feature: Input feature to get it's current MQ context. Returns false if no context -////////////////////////////// -@function breakpoint-get-context($feature) { - @if map-has-key($private-breakpoint-context-holder, $feature) { - $get: map-get($private-breakpoint-context-holder, $feature); - // Special handling of no-query from get side so /false/ prepends aren't returned - @if $feature == 'no-query' { - @if type-of($get) == 'list' and length($get) > 1 and nth($get, 1) == false { - $get: nth($get, length($get)); - } - } - @return $get; - } - @else { - @if breakpoint-has-context() and $feature == 'media' { - @return breakpoint-get('default media'); - } - @else { - @return false; - } - } -} - -////////////////////////////// -// Private function to set context -////////////////////////////// -@function private-breakpoint-set-context($feature, $value) { - @if $value == 'monochrome' { - $feature: 'monochrome'; - } - - $current: map-get($private-breakpoint-context-holder, $feature); - @if $current and length($current) == $private-breakpoint-query-count { - @warn "You have already queried against `#{$feature}`. Unexpected things may happen if you query against the same feature more than once in the same `and` query. Breakpoint is overwriting the current context with `#{$value}`"; - } - - @if not map-has-key($private-breakpoint-context-holder, $feature) { - $v-holder: (); - @for $i from 1 to $private-breakpoint-query-count { - @if $feature == 'media' { - $v-holder: append($v-holder, breakpoint-get('default media')); - } - @else { - $v-holder: append($v-holder, false); - } - } - $v-holder: append($v-holder, $value); - $private-breakpoint-context-holder: map-merge($private-breakpoint-context-holder, ($feature: $v-holder)) !global; - } - @else { - $v-holder: map-get($private-breakpoint-context-holder, $feature); - $length: length($v-holder); - @for $i from $length to $private-breakpoint-query-count - 1 { - @if $feature == 'media' { - $v-holder: append($v-holder, breakpoint-get('default media')); - } - @else { - $v-holder: append($v-holder, false); - } - } - $v-holder: append($v-holder, $value); - $private-breakpoint-context-holder: map-merge($private-breakpoint-context-holder, ($feature: $v-holder)) !global; - } - - @return true; -} - -////////////////////////////// -// Private function to reset context -////////////////////////////// -@mixin private-breakpoint-reset-contexts { - $private-breakpoint-context-holder: () !global; - $private-breakpoint-query-count: 0 !global; -} \ No newline at end of file diff --git a/_sass/minimal-mistakes/vendor/breakpoint/_helpers.scss b/_sass/minimal-mistakes/vendor/breakpoint/_helpers.scss deleted file mode 100644 index 97e522d11..000000000 --- a/_sass/minimal-mistakes/vendor/breakpoint/_helpers.scss +++ /dev/null @@ -1,151 +0,0 @@ -////////////////////////////// -// Converts the input value to Base EMs -////////////////////////////// -@function breakpoint-to-base-em($value) { - $value-unit: unit($value); - - // Will convert relative EMs into root EMs. - @if breakpoint-get('base font size') and type-of(breakpoint-get('base font size')) == 'number' and $value-unit == 'em' { - $base-unit: unit(breakpoint-get('base font size')); - - @if $base-unit == 'px' or $base-unit == '%' or $base-unit == 'em' or $base-unit == 'pt' { - @return base-conversion($value) / base-conversion(breakpoint-get('base font size')) * 1em; - } - @else { - @warn '#{breakpoint-get(\'base font size\')} is not set in valid units for font size!'; - @return false; - } - } - @else { - @return base-conversion($value); - } -} - -@function base-conversion($value) { - $unit: unit($value); - - @if $unit == 'px' { - @return $value / 16px * 1em; - } - @else if $unit == '%' { - @return $value / 100% * 1em; - } - @else if $unit == 'em' { - @return $value; - } - @else if $unit == 'pt' { - @return $value / 12pt * 1em; - } - @else { - @return $value; -// @warn 'Everything is terrible! What have you done?!'; - } -} - -////////////////////////////// -// Returns whether the feature can have a min/max pair -////////////////////////////// -$breakpoint-min-max-features: 'color', - 'color-index', - 'aspect-ratio', - 'device-aspect-ratio', - 'device-height', - 'device-width', - 'height', - 'monochrome', - 'resolution', - 'width'; - -@function breakpoint-min-max($feature) { - @each $item in $breakpoint-min-max-features { - @if $feature == $item { - @return true; - } - } - @return false; -} - -////////////////////////////// -// Returns whether the feature can have a string value -////////////////////////////// -$breakpoint-string-features: 'orientation', - 'scan', - 'color', - 'aspect-ratio', - 'device-aspect-ratio', - 'pointer', - 'luminosity'; - -@function breakpoint-string-value($feature) { - @each $item in $breakpoint-string-features { - @if breakpoint-min-max($item) { - @if $feature == 'min-#{$item}' or $feature == 'max-#{$item}' { - @return true; - } - } - @else if $feature == $item { - @return true; - } - } - @return false; -} - -////////////////////////////// -// Returns whether the feature is a media type -////////////////////////////// -$breakpoint-media-types: 'all', - 'braille', - 'embossed', - 'handheld', - 'print', - 'projection', - 'screen', - 'speech', - 'tty', - 'tv'; - -@function breakpoint-is-media($feature) { - @each $media in $breakpoint-media-types { - @if ($feature == $media) or ($feature == 'not #{$media}') or ($feature == 'only #{$media}') { - @return true; - } - } - - @return false; -} - -////////////////////////////// -// Returns whether the feature can stand alone -////////////////////////////// -$breakpoint-single-string-features: 'color', - 'color-index', - 'grid', - 'monochrome'; - -@function breakpoint-single-string($feature) { - @each $item in $breakpoint-single-string-features { - @if $feature == $item { - @return true; - } - } - @return false; -} - -////////////////////////////// -// Returns whether the feature -////////////////////////////// -@function breakpoint-is-resolution($feature) { - $resolutions: 'device-pixel-ratio', 'dpr'; - - @if breakpoint-get('transform resolutions') { - $resolutions: append($resolutions, 'resolution'); - } - - @each $reso in $resolutions { - @if index($feature, $reso) or index($feature, 'min-#{$reso}') or index($feature, 'max-#{$reso}') { - @return true; - } - } - - @return false; -} diff --git a/_sass/minimal-mistakes/vendor/breakpoint/_legacy-settings.scss b/_sass/minimal-mistakes/vendor/breakpoint/_legacy-settings.scss deleted file mode 100644 index e060ebe3d..000000000 --- a/_sass/minimal-mistakes/vendor/breakpoint/_legacy-settings.scss +++ /dev/null @@ -1,50 +0,0 @@ -@mixin legacy-settings-warning { - $legacyVars: ( - 'default-media': 'default media', - 'default-feature': 'default feature', - 'force-media-all': 'force all media type', - 'to-ems': 'to ems', - 'resolutions': 'transform resolutions', - 'no-queries': 'no queries', - 'no-query-fallbacks': 'no query fallbacks', - 'base-font-size': 'base font size', - 'legacy-syntax': 'legacy syntax' - ); - - @each $legacy, $new in $legacyVars { - @if global-variable-exists('breakpoint-' + $legacy) { - @warn "In order to avoid variable namspace collisions, we have updated the way to change settings for Breakpoint. Please change all instances of `$breakpoint-#{$legacy}: {{setting}}` to `@include breakpoint-set('#{$new}', {{setting}})`. Variable settings, as well as this warning will be deprecated in a future release." - } - }; - - ////////////////////////////// - // Hand correct each setting - ////////////////////////////// - @if global-variable-exists('breakpoint-default-media') and $breakpoint-default-media != breakpoint-get('default media') { - @include breakpoint-set('default media', $breakpoint-default-media); - } - @if global-variable-exists('breakpoint-default-feature') and $breakpoint-default-feature != breakpoint-get('default feature') { - @include breakpoint-set('default feature', $breakpoint-default-feature); - } - @if global-variable-exists('breakpoint-force-media-all') and $breakpoint-force-media-all != breakpoint-get('force all media type') { - @include breakpoint-set('force all media type', $breakpoint-force-media-all); - } - @if global-variable-exists('breakpoint-to-ems') and $breakpoint-to-ems != breakpoint-get('to ems') { - @include breakpoint-set('to ems', $breakpoint-to-ems); - } - @if global-variable-exists('breakpoint-resolutions') and $breakpoint-resolutions != breakpoint-get('transform resolutions') { - @include breakpoint-set('transform resolutions', $breakpoint-resolutions); - } - @if global-variable-exists('breakpoint-no-queries') and $breakpoint-no-queries != breakpoint-get('no queries') { - @include breakpoint-set('no queries', $breakpoint-no-queries); - } - @if global-variable-exists('breakpoint-no-query-fallbacks') and $breakpoint-no-query-fallbacks != breakpoint-get('no query fallbacks') { - @include breakpoint-set('no query fallbacks', $breakpoint-no-query-fallbacks); - } - @if global-variable-exists('breakpoint-base-font-size') and $breakpoint-base-font-size != breakpoint-get('base font size') { - @include breakpoint-set('base font size', $breakpoint-base-font-size); - } - @if global-variable-exists('breakpoint-legacy-syntax') and $breakpoint-legacy-syntax != breakpoint-get('legacy syntax') { - @include breakpoint-set('legacy syntax', $breakpoint-legacy-syntax); - } -} \ No newline at end of file diff --git a/_sass/minimal-mistakes/vendor/breakpoint/_no-query.scss b/_sass/minimal-mistakes/vendor/breakpoint/_no-query.scss deleted file mode 100644 index 0b5a81f69..000000000 --- a/_sass/minimal-mistakes/vendor/breakpoint/_no-query.scss +++ /dev/null @@ -1,15 +0,0 @@ -@function breakpoint-no-query($query) { - @if type-of($query) == 'list' { - $keyword: nth($query, 1); - - @if type-of($keyword) == 'string' and ($keyword == 'no-query' or $keyword == 'no query' or $keyword == 'fallback') { - @return nth($query, 2); - } - @else { - @return false; - } - } - @else { - @return false; - } -} diff --git a/_sass/minimal-mistakes/vendor/breakpoint/_parsers.scss b/_sass/minimal-mistakes/vendor/breakpoint/_parsers.scss deleted file mode 100644 index f0b053fee..000000000 --- a/_sass/minimal-mistakes/vendor/breakpoint/_parsers.scss +++ /dev/null @@ -1,215 +0,0 @@ -////////////////////////////// -// Import Parser Pieces -////////////////////////////// -@import "parsers/query"; -@import "parsers/single"; -@import "parsers/double"; -@import "parsers/triple"; -@import "parsers/resolution"; - -$Memo-Exists: function-exists(memo-get) and function-exists(memo-set); - -////////////////////////////// -// Breakpoint Function -////////////////////////////// -@function breakpoint($query, $contexts...) { - $run: true; - $return: (); - - // Grab the Memo Output if Memoization can be a thing - @if $Memo-Exists { - $return: memo-get(breakpoint, breakpoint $query $contexts); - - @if $return != null { - $run: false; - } - } - - @if not $Memo-Exists or $run { - // Internal Variables - $query-string: ''; - $query-fallback: false; - $return: (); - - // Reserve Global Private Breakpoint Context - $holder-context: $private-breakpoint-context-holder; - $holder-query-count: $private-breakpoint-query-count; - - // Reset Global Private Breakpoint Context - $private-breakpoint-context-holder: () !global; - $private-breakpoint-query-count: 0 !global; - - - // Test to see if it's a comma-separated list - $or-list: if(list-separator($query) == 'comma', true, false); - - - @if ($or-list == false and breakpoint-get('legacy syntax') == false) { - $query-string: breakpoint-parse($query); - } - @else { - $length: length($query); - - $last: nth($query, $length); - $query-fallback: breakpoint-no-query($last); - - @if ($query-fallback != false) { - $length: $length - 1; - } - - @if (breakpoint-get('legacy syntax') == true) { - $mq: (); - - @for $i from 1 through $length { - $mq: append($mq, nth($query, $i), comma); - } - - $query-string: breakpoint-parse($mq); - } - @else { - $query-string: ''; - @for $i from 1 through $length { - $query-string: $query-string + if($i == 1, '', ', ') + breakpoint-parse(nth($query, $i)); - } - } - } - - $return: ('query': $query-string, - 'fallback': $query-fallback, - 'context holder': $private-breakpoint-context-holder, - 'query count': $private-breakpoint-query-count - ); - @if length($contexts) > 0 and nth($contexts, 1) != false { - @if $query-fallback != false { - $context-setter: private-breakpoint-set-context('no-query', $query-fallback); - } - $context-map: (); - @each $context in $contexts { - $context-map: map-merge($context-map, ($context: breakpoint-get-context($context))); - } - $return: map-merge($return, (context: $context-map)); - } - - // Reset Global Private Breakpoint Context - $private-breakpoint-context-holder: () !global; - $private-breakpoint-query-count: 0 !global; - - @if $Memo-Exists { - $holder: memo-set(breakpoint, breakpoint $query $contexts, $return); - } - } - - @return $return; -} - -////////////////////////////// -// General Breakpoint Parser -////////////////////////////// -@function breakpoint-parse($query) { - // Increase number of 'and' queries - $private-breakpoint-query-count: $private-breakpoint-query-count + 1 !global; - - // Set up Media Type - $query-print: ''; - - $force-all: ((breakpoint-get('force all media type') == true) and (breakpoint-get('default media') == 'all')); - $empty-media: true; - @if ($force-all == true) or (breakpoint-get('default media') != 'all') { - // Force the print of the default media type if (force all is true and default media type is all) or (default media type is not all) - $query-print: breakpoint-get('default media'); - $empty-media: false; - } - - - $query-resolution: false; - - $query-holder: breakpoint-parse-query($query); - - - - // Loop over each parsed out query and write it to $query-print - $first: true; - - @each $feature in $query-holder { - $length: length($feature); - - // Parse a single feature - @if ($length == 1) { - // Feature is currently a list, grab the actual value - $feature: nth($feature, 1); - - // Media Type must by convention be the first item, so it's safe to flat override $query-print, which right now should only be the default media type - @if (breakpoint-is-media($feature)) { - @if ($force-all == true) or ($feature != 'all') { - // Force the print of the default media type if (force all is true and default media type is all) or (default media type is not all) - $query-print: $feature; - $empty-media: false; - - // Set Context - $context-setter: private-breakpoint-set-context(media, $query-print); - } - } - @else { - $parsed: breakpoint-parse-single($feature, $empty-media, $first); - $query-print: '#{$query-print} #{$parsed}'; - $first: false; - } - } - // Parse a double feature - @else if ($length == 2) { - @if (breakpoint-is-resolution($feature) != false) { - $query-resolution: $feature; - } - @else { - $parsed: null; - // If it's a string/number pair, - // we check to see if one is a single-string value, - // then we parse it as a normal double - $alpha: nth($feature, 1); - $beta: nth($feature, 2); - @if breakpoint-single-string($alpha) or breakpoint-single-string($beta) { - $parsed: breakpoint-parse-single($alpha, $empty-media, $first); - $query-print: '#{$query-print} #{$parsed}'; - $first: false; - $parsed: breakpoint-parse-single($beta, $empty-media, $first); - $query-print: '#{$query-print} #{$parsed}'; - } - @else { - $parsed: breakpoint-parse-double($feature, $empty-media, $first); - $query-print: '#{$query-print} #{$parsed}'; - $first: false; - } - } - } - // Parse a triple feature - @else if ($length == 3) { - $parsed: breakpoint-parse-triple($feature, $empty-media, $first); - $query-print: '#{$query-print} #{$parsed}'; - $first: false; - } - - } - - @if ($query-resolution != false) { - $query-print: breakpoint-build-resolution($query-print, $query-resolution, $empty-media, $first); - } - - // Loop through each feature that's been detected so far and append 'false' to the the value list to increment their counters - @each $f, $v in $private-breakpoint-context-holder { - $v-holder: $v; - $length: length($v-holder); - @if length($v-holder) < $private-breakpoint-query-count { - @for $i from $length to $private-breakpoint-query-count { - @if $f == 'media' { - $v-holder: append($v-holder, breakpoint-get('default media')); - } - @else { - $v-holder: append($v-holder, false); - } - } - } - $private-breakpoint-context-holder: map-merge($private-breakpoint-context-holder, ($f: $v-holder)) !global; - } - - @return $query-print; -} diff --git a/_sass/minimal-mistakes/vendor/breakpoint/_respond-to.scss b/_sass/minimal-mistakes/vendor/breakpoint/_respond-to.scss deleted file mode 100644 index e2462c5fc..000000000 --- a/_sass/minimal-mistakes/vendor/breakpoint/_respond-to.scss +++ /dev/null @@ -1,82 +0,0 @@ -//////////////////////// -// Default the Breakpoints variable -//////////////////////// -$breakpoints: () !default; -$BREAKPOINTS: () !default; - -//////////////////////// -// Respond-to API Mixin -//////////////////////// -@mixin respond-to($context, $no-query: false) { - @if length($breakpoints) > 0 and length($BREAKPOINTS) == 0 { - @warn "In order to avoid variable namespace collisions, we have updated the way to add breakpoints for respond-to. Please change all instances of `$breakpoints: add-breakpoint()` to `@include add-breakpoint()`. The `add-breakpoint()` function will be deprecated in a future release."; - $BREAKPOINTS: $breakpoints !global; - $breakpoints: () !global; - } - - @if type-of($BREAKPOINTS) != 'map' { - // Just in case someone writes gibberish to the $breakpoints variable. - @warn "Your breakpoints aren't a map! `respond-to` expects a map. Please check the value of $BREAKPOINTS variable."; - @content; - } - @else if map-has-key($BREAKPOINTS, $context) { - @include breakpoint(map-get($BREAKPOINTS, $context), $no-query) { - @content; - } - } - @else if not map-has-key($BREAKPOINTS, $context) { - @warn "`#{$context}` isn't a defined breakpoint! Please add it using `$breakpoints: add-breakpoint(`#{$context}`, $value);`"; - @content; - } - @else { - @warn "You haven't created any breakpoints yet! Make some already! `@include add-breakpoint($name, $bkpt)`"; - @content; - } -} - -////////////////////////////// -// Add Breakpoint to Breakpoints -// TODO: Remove function in next release -////////////////////////////// -@function add-breakpoint($name, $bkpt, $overwrite: false) { - $output: ($name: $bkpt); - - @if length($breakpoints) == 0 { - @return $output; - } - @else { - @if map-has-key($breakpoints, $name) and $overwrite != true { - @warn "You already have a breakpoint named `#{$name}`, please choose another breakpoint name, or pass in `$overwrite: true` to overwrite the previous breakpoint."; - @return $breakpoints; - } - @else if not map-has-key($breakpoints, $name) or $overwrite == true { - @return map-merge($breakpoints, $output); - } - } -} - -@mixin add-breakpoint($name, $bkpt, $overwrite: false) { - $output: ($name: $bkpt); - - @if length($BREAKPOINTS) == 0 { - $BREAKPOINTS: $output !global; - } - @else { - @if map-has-key($BREAKPOINTS, $name) and $overwrite != true { - @warn "You already have a breakpoint named `#{$name}`, please choose another breakpoint name, or pass in `$overwrite: true` to overwrite the previous breakpoint."; - $BREAKPOINTS: $BREAKPOINTS !global; - } - @else if not map-has-key($BREAKPOINTS, $name) or $overwrite == true { - $BREAKPOINTS: map-merge($BREAKPOINTS, $output) !global; - } - } -} - -@function get-breakpoint($name: false) { - @if $name == false { - @return $BREAKPOINTS; - } - @else { - @return map-get($BREAKPOINTS, $name); - } -} diff --git a/_sass/minimal-mistakes/vendor/breakpoint/_settings.scss b/_sass/minimal-mistakes/vendor/breakpoint/_settings.scss deleted file mode 100644 index 05ee68940..000000000 --- a/_sass/minimal-mistakes/vendor/breakpoint/_settings.scss +++ /dev/null @@ -1,71 +0,0 @@ -////////////////////////////// -// Has Setting -////////////////////////////// -@function breakpoint-has($setting) { - @if map-has-key($breakpoint, $setting) { - @return true; - } - @else { - @return false; - } -} - -////////////////////////////// -// Get Settings -////////////////////////////// -@function breakpoint-get($setting) { - @if breakpoint-has($setting) { - @return map-get($breakpoint, $setting); - } - @else { - @return map-get($Breakpoint-Settings, $setting); - } -} - -////////////////////////////// -// Set Settings -////////////////////////////// -@function breakpoint-set($setting, $value) { - @if (str-index($setting, '-') or str-index($setting, '_')) and str-index($setting, ' ') == null { - @warn "Words in Breakpoint settings should be separated by spaces, not dashes or underscores. Please replace dashes and underscores between words with spaces. Settings will not work as expected until changed."; - } - $breakpoint: map-merge($breakpoint, ($setting: $value)) !global; - @return true; -} - -@mixin breakpoint-change($setting, $value) { - $breakpoint-change: breakpoint-set($setting, $value); -} - -@mixin breakpoint-set($setting, $value) { - @include breakpoint-change($setting, $value); -} - -@mixin bkpt-change($setting, $value) { - @include breakpoint-change($setting, $value); -} -@mixin bkpt-set($setting, $value) { - @include breakpoint-change($setting, $value); -} - -////////////////////////////// -// Remove Setting -////////////////////////////// -@function breakpoint-reset($settings...) { - @if length($settings) == 1 { - $settings: nth($settings, 1); - } - - @each $setting in $settings { - $breakpoint: map-remove($breakpoint, $setting) !global; - } - @return true; -} - -@mixin breakpoint-reset($settings...) { - $breakpoint-reset: breakpoint-reset($settings); -} - -@mixin bkpt-reset($settings...) { - $breakpoint-reset: breakpoint-reset($settings); -} \ No newline at end of file diff --git a/_sass/minimal-mistakes/vendor/breakpoint/parsers/_double.scss b/_sass/minimal-mistakes/vendor/breakpoint/parsers/_double.scss deleted file mode 100644 index 24580c151..000000000 --- a/_sass/minimal-mistakes/vendor/breakpoint/parsers/_double.scss +++ /dev/null @@ -1,33 +0,0 @@ -////////////////////////////// -// Import Pieces -////////////////////////////// -@import "double/default-pair"; -@import "double/double-string"; -@import "double/default"; - -@function breakpoint-parse-double($feature, $empty-media, $first) { - $parsed: ''; - $leader: ''; - // If we're forcing - @if not ($empty-media) or not ($first) { - $leader: 'and '; - } - - $first: nth($feature, 1); - $second: nth($feature, 2); - - // If we've got two numbers, we know we need to use the default pair because there are no media queries that has a media feature that is a number - @if type-of($first) == 'number' and type-of($second) == 'number' { - $parsed: breakpoint-parse-default-pair($first, $second); - } - // If they are both strings, we send it through the string parser - @else if type-of($first) == 'string' and type-of($second) == 'string' { - $parsed: breakpoint-parse-double-string($first, $second); - } - // If it's a string/number pair, we parse it as a normal double - @else { - $parsed: breakpoint-parse-double-default($first, $second); - } - - @return $leader + $parsed; -} diff --git a/_sass/minimal-mistakes/vendor/breakpoint/parsers/_query.scss b/_sass/minimal-mistakes/vendor/breakpoint/parsers/_query.scss deleted file mode 100644 index b138b3933..000000000 --- a/_sass/minimal-mistakes/vendor/breakpoint/parsers/_query.scss +++ /dev/null @@ -1,82 +0,0 @@ -@function breakpoint-parse-query($query) { - // Parse features out of an individual query - $feature-holder: (); - $query-holder: (); - $length: length($query); - - @if $length == 2 { - // If we've got a string/number, number/string, check to see if it's a valid string/number pair or two singles - @if (type-of(nth($query, 1)) == 'string' and type-of(nth($query, 2)) == 'number') or (type-of(nth($query, 1)) == 'number' and type-of(nth($query, 2)) == 'string') { - - $number: ''; - $value: ''; - - @if type-of(nth($query, 1)) == 'string' { - $number: nth($query, 2); - $value: nth($query, 1); - } - @else { - $number: nth($query, 1); - $value: nth($query, 2); - } - - // If the string value can be a single value, check to see if the number passed in is a valid input for said single value. Fortunately, all current single-value options only accept unitless numbers, so this check is easy. - @if breakpoint-single-string($value) { - @if unitless($number) { - $feature-holder: append($value, $number, space); - $query-holder: append($query-holder, $feature-holder, comma); - @return $query-holder; - } - } - // If the string is a media type, split the query - @if breakpoint-is-media($value) { - $query-holder: append($query-holder, nth($query, 1)); - $query-holder: append($query-holder, nth($query, 2)); - @return $query-holder; - } - // If it's not a single feature, we're just going to assume it's a proper string/value pair, and roll with it. - @else { - $feature-holder: append($value, $number, space); - $query-holder: append($query-holder, $feature-holder, comma); - @return $query-holder; - } - - } - // If they're both numbers, we assume it's a double and roll with that - @else if (type-of(nth($query, 1)) == 'number' and type-of(nth($query, 2)) == 'number') { - $feature-holder: append(nth($query, 1), nth($query, 2), space); - $query-holder: append($query-holder, $feature-holder, comma); - @return $query-holder; - } - // If they're both strings and neither are singles, we roll with that. - @else if (type-of(nth($query, 1)) == 'string' and type-of(nth($query, 2)) == 'string') { - @if not breakpoint-single-string(nth($query, 1)) and not breakpoint-single-string(nth($query, 2)) { - $feature-holder: append(nth($query, 1), nth($query, 2), space); - $query-holder: append($query-holder, $feature-holder, comma); - @return $query-holder; - } - } - } - @else if $length == 3 { - // If we've got three items and none is a list, we check to see - @if type-of(nth($query, 1)) != 'list' and type-of(nth($query, 2)) != 'list' and type-of(nth($query, 3)) != 'list' { - // If none of the items are single string values and none of the values are media values, we're good. - @if (not breakpoint-single-string(nth($query, 1)) and not breakpoint-single-string(nth($query, 2)) and not breakpoint-single-string(nth($query, 3))) and ((not breakpoint-is-media(nth($query, 1)) and not breakpoint-is-media(nth($query, 2)) and not breakpoint-is-media(nth($query, 3)))) { - $feature-holder: append(nth($query, 1), nth($query, 2), space); - $feature-holder: append($feature-holder, nth($query, 3), space); - $query-holder: append($query-holder, $feature-holder, comma); - @return $query-holder; - } - // let's check to see if the first item is a media type - @else if breakpoint-is-media(nth($query, 1)) { - $query-holder: append($query-holder, nth($query, 1)); - $feature-holder: append(nth($query, 2), nth($query, 3), space); - $query-holder: append($query-holder, $feature-holder); - @return $query-holder; - } - } - } - - // If it's a single item, or if it's not a special case double or triple, we can simply return the query. - @return $query; -} diff --git a/_sass/minimal-mistakes/vendor/breakpoint/parsers/_resolution.scss b/_sass/minimal-mistakes/vendor/breakpoint/parsers/_resolution.scss deleted file mode 100644 index 19769adf4..000000000 --- a/_sass/minimal-mistakes/vendor/breakpoint/parsers/_resolution.scss +++ /dev/null @@ -1,31 +0,0 @@ -@import "resolution/resolution"; - -@function breakpoint-build-resolution($query-print, $query-resolution, $empty-media, $first) { - $leader: ''; - // If we're forcing - @if not ($empty-media) or not ($first) { - $leader: 'and '; - } - - @if breakpoint-get('transform resolutions') and $query-resolution { - $resolutions: breakpoint-make-resolutions($query-resolution); - $length: length($resolutions); - $query-holder: ''; - - @for $i from 1 through $length { - $query: '#{$query-print} #{$leader}#{nth($resolutions, $i)}'; - @if $i == 1 { - $query-holder: $query; - } - @else { - $query-holder: '#{$query-holder}, #{$query}'; - } - } - - @return $query-holder; - } - @else { - // Return with attached resolution - @return $query-print; - } -} diff --git a/_sass/minimal-mistakes/vendor/breakpoint/parsers/_single.scss b/_sass/minimal-mistakes/vendor/breakpoint/parsers/_single.scss deleted file mode 100644 index d9fd764a7..000000000 --- a/_sass/minimal-mistakes/vendor/breakpoint/parsers/_single.scss +++ /dev/null @@ -1,26 +0,0 @@ -////////////////////////////// -// Import Pieces -////////////////////////////// -@import "single/default"; - -@function breakpoint-parse-single($feature, $empty-media, $first) { - $parsed: ''; - $leader: ''; - // If we're forcing - @if not ($empty-media) or not ($first) { - $leader: 'and '; - } - - // If it's a single feature that can stand alone, we let it - @if (breakpoint-single-string($feature)) { - $parsed: $feature; - // Set Context - $context-setter: private-breakpoint-set-context($feature, $feature); - } - // If it's not a stand alone feature, we pass it off to the default handler. - @else { - $parsed: breakpoint-parse-default($feature); - } - - @return $leader + '(' + $parsed + ')'; -} diff --git a/_sass/minimal-mistakes/vendor/breakpoint/parsers/_triple.scss b/_sass/minimal-mistakes/vendor/breakpoint/parsers/_triple.scss deleted file mode 100644 index e2732067f..000000000 --- a/_sass/minimal-mistakes/vendor/breakpoint/parsers/_triple.scss +++ /dev/null @@ -1,36 +0,0 @@ -////////////////////////////// -// Import Pieces -////////////////////////////// -@import "triple/default"; - -@function breakpoint-parse-triple($feature, $empty-media, $first) { - $parsed: ''; - $leader: ''; - - // If we're forcing - @if not ($empty-media) or not ($first) { - $leader: 'and '; - } - - // separate the string features from the value numbers - $string: null; - $numbers: null; - @each $val in $feature { - @if type-of($val) == string { - $string: $val; - } - @else { - @if type-of($numbers) == 'null' { - $numbers: $val; - } - @else { - $numbers: append($numbers, $val); - } - } - } - - $parsed: breakpoint-parse-triple-default($string, nth($numbers, 1), nth($numbers, 2)); - - @return $leader + $parsed; - -} diff --git a/_sass/minimal-mistakes/vendor/breakpoint/parsers/double/_default-pair.scss b/_sass/minimal-mistakes/vendor/breakpoint/parsers/double/_default-pair.scss deleted file mode 100644 index f88432ccd..000000000 --- a/_sass/minimal-mistakes/vendor/breakpoint/parsers/double/_default-pair.scss +++ /dev/null @@ -1,21 +0,0 @@ -@function breakpoint-parse-default-pair($first, $second) { - $default: breakpoint-get('default pair'); - $min: ''; - $max: ''; - - // Sort into min and max - $min: min($first, $second); - $max: max($first, $second); - - // Set Context - $context-setter: private-breakpoint-set-context(min-#{$default}, $min); - $context-setter: private-breakpoint-set-context(max-#{$default}, $max); - - // Make them EMs if need be - @if (breakpoint-get('to ems') == true) { - $min: breakpoint-to-base-em($min); - $max: breakpoint-to-base-em($max); - } - - @return '(min-#{$default}: #{$min}) and (max-#{$default}: #{$max})'; -} diff --git a/_sass/minimal-mistakes/vendor/breakpoint/parsers/double/_default.scss b/_sass/minimal-mistakes/vendor/breakpoint/parsers/double/_default.scss deleted file mode 100644 index 73190ed59..000000000 --- a/_sass/minimal-mistakes/vendor/breakpoint/parsers/double/_default.scss +++ /dev/null @@ -1,22 +0,0 @@ -@function breakpoint-parse-double-default($first, $second) { - $feature: ''; - $value: ''; - - @if type-of($first) == 'string' { - $feature: $first; - $value: $second; - } - @else { - $feature: $second; - $value: $first; - } - - // Set Context - $context-setter: private-breakpoint-set-context($feature, $value); - - @if (breakpoint-get('to ems') == true) { - $value: breakpoint-to-base-em($value); - } - - @return '(#{$feature}: #{$value})' -} diff --git a/_sass/minimal-mistakes/vendor/breakpoint/parsers/double/_double-string.scss b/_sass/minimal-mistakes/vendor/breakpoint/parsers/double/_double-string.scss deleted file mode 100644 index c6fd0cb03..000000000 --- a/_sass/minimal-mistakes/vendor/breakpoint/parsers/double/_double-string.scss +++ /dev/null @@ -1,22 +0,0 @@ -@function breakpoint-parse-double-string($first, $second) { - $feature: ''; - $value: ''; - - // Test to see which is the feature and which is the value - @if (breakpoint-string-value($first) == true) { - $feature: $first; - $value: $second; - } - @else if (breakpoint-string-value($second) == true) { - $feature: $second; - $value: $first; - } - @else { - @warn "Neither #{$first} nor #{$second} is a valid media query name."; - } - - // Set Context - $context-setter: private-breakpoint-set-context($feature, $value); - - @return '(#{$feature}: #{$value})'; -} \ No newline at end of file diff --git a/_sass/minimal-mistakes/vendor/breakpoint/parsers/resolution/_resolution.scss b/_sass/minimal-mistakes/vendor/breakpoint/parsers/resolution/_resolution.scss deleted file mode 100644 index 368042126..000000000 --- a/_sass/minimal-mistakes/vendor/breakpoint/parsers/resolution/_resolution.scss +++ /dev/null @@ -1,60 +0,0 @@ -@function breakpoint-make-resolutions($resolution) { - $length: length($resolution); - - $output: (); - - @if $length == 2 { - $feature: ''; - $value: ''; - - // Find which is number - @if type-of(nth($resolution, 1)) == 'number' { - $value: nth($resolution, 1); - } - @else { - $value: nth($resolution, 2); - } - - // Determine min/max/standard - @if index($resolution, 'min-resolution') { - $feature: 'min-'; - } - @else if index($resolution, 'max-resolution') { - $feature: 'max-'; - } - - $standard: '(#{$feature}resolution: #{$value})'; - - // If we're not dealing with dppx, - @if unit($value) != 'dppx' { - $base: 96dpi; - @if unit($value) == 'dpcm' { - $base: 243.84dpcm; - } - // Write out feature tests - $webkit: ''; - $moz: ''; - $webkit: '(-webkit-#{$feature}device-pixel-ratio: #{$value / $base})'; - $moz: '(#{$feature}-moz-device-pixel-ratio: #{$value / $base})'; - // Append to output - $output: append($output, $standard, space); - $output: append($output, $webkit, space); - $output: append($output, $moz, space); - } - @else { - $webkit: ''; - $moz: ''; - $webkit: '(-webkit-#{$feature}device-pixel-ratio: #{$value / 1dppx})'; - $moz: '(#{$feature}-moz-device-pixel-ratio: #{$value / 1dppx})'; - $fallback: '(#{$feature}resolution: #{$value / 1dppx * 96dpi})'; - // Append to output - $output: append($output, $standard, space); - $output: append($output, $webkit, space); - $output: append($output, $moz, space); - $output: append($output, $fallback, space); - } - - } - - @return $output; -} diff --git a/_sass/minimal-mistakes/vendor/breakpoint/parsers/single/_default.scss b/_sass/minimal-mistakes/vendor/breakpoint/parsers/single/_default.scss deleted file mode 100644 index 503ef427b..000000000 --- a/_sass/minimal-mistakes/vendor/breakpoint/parsers/single/_default.scss +++ /dev/null @@ -1,13 +0,0 @@ -@function breakpoint-parse-default($feature) { - $default: breakpoint-get('default feature'); - - // Set Context - $context-setter: private-breakpoint-set-context($default, $feature); - - @if (breakpoint-get('to ems') == true) and (type-of($feature) == 'number') { - @return '#{$default}: #{breakpoint-to-base-em($feature)}'; - } - @else { - @return '#{$default}: #{$feature}'; - } -} diff --git a/_sass/minimal-mistakes/vendor/breakpoint/parsers/triple/_default.scss b/_sass/minimal-mistakes/vendor/breakpoint/parsers/triple/_default.scss deleted file mode 100644 index 7fa418dda..000000000 --- a/_sass/minimal-mistakes/vendor/breakpoint/parsers/triple/_default.scss +++ /dev/null @@ -1,18 +0,0 @@ -@function breakpoint-parse-triple-default($feature, $first, $second) { - - // Sort into min and max - $min: min($first, $second); - $max: max($first, $second); - - // Set Context - $context-setter: private-breakpoint-set-context(min-#{$feature}, $min); - $context-setter: private-breakpoint-set-context(max-#{$feature}, $max); - - // Make them EMs if need be - @if (breakpoint-get('to ems') == true) { - $min: breakpoint-to-base-em($min); - $max: breakpoint-to-base-em($max); - } - - @return '(min-#{$feature}: #{$min}) and (max-#{$feature}: #{$max})'; -} diff --git a/_sass/minimal-mistakes/vendor/magnific-popup/_magnific-popup.scss b/_sass/minimal-mistakes/vendor/magnific-popup/_magnific-popup.scss deleted file mode 100644 index 27b27bcc3..000000000 --- a/_sass/minimal-mistakes/vendor/magnific-popup/_magnific-popup.scss +++ /dev/null @@ -1,649 +0,0 @@ -/* Magnific Popup CSS */ - -@import "settings"; - -//////////////////////// -// -// Contents: -// -// 1. Default Settings -// 2. General styles -// - Transluscent overlay -// - Containers, wrappers -// - Cursors -// - Helper classes -// 3. Appearance -// - Preloader & text that displays error messages -// - CSS reset for buttons -// - Close icon -// - "1 of X" counter -// - Navigation (left/right) arrows -// - Iframe content type styles -// - Image content type styles -// - Media query where size of arrows is reduced -// - IE7 support -// -//////////////////////// - - - -//////////////////////// -// 1. Default Settings -//////////////////////// - -$mfp-overlay-color: #0b0b0b !default; -$mfp-overlay-opacity: 0.8 !default; -$mfp-shadow: 0 0 8px rgba(0, 0, 0, 0.6) !default; // shadow on image or iframe -$mfp-popup-padding-left: 8px !default; // Padding from left and from right side -$mfp-popup-padding-left-mobile: 6px !default; // Same as above, but is applied when width of window is less than 800px - -$mfp-z-index-base: 1040 !default; // Base z-index of popup -$mfp-include-arrows: true !default; // include styles for nav arrows -$mfp-controls-opacity: 0.65 !default; -$mfp-controls-color: #FFF !default; -$mfp-controls-border-color: #3F3F3F !default; -$mfp-inner-close-icon-color: #333 !default; -$mfp-controls-text-color: #CCC !default; // Color of preloader and "1 of X" indicator -$mfp-controls-text-color-hover: #FFF !default; -$mfp-IE7support: true !default; // Very basic IE7 support - -// Iframe-type options -$mfp-include-iframe-type: true !default; -$mfp-iframe-padding-top: 40px !default; -$mfp-iframe-background: #000 !default; -$mfp-iframe-max-width: 900px !default; -$mfp-iframe-ratio: 9/16 !default; - -// Image-type options -$mfp-include-image-type: true !default; -$mfp-image-background: #444 !default; -$mfp-image-padding-top: 40px !default; -$mfp-image-padding-bottom: 40px !default; -$mfp-include-mobile-layout-for-image: true !default; // Removes paddings from top and bottom - -// Image caption options -$mfp-caption-title-color: #F3F3F3 !default; -$mfp-caption-subtitle-color: #BDBDBD !default; - -// A11y -$mfp-use-visuallyhidden: false !default; // Hide content from browsers, but make it available for screen readers - - - -//////////////////////// -// 2. General styles -//////////////////////// - -// Transluscent overlay -.mfp-bg { - top: 0; - left: 0; - width: 100%; - height: 100%; - z-index: $mfp-z-index-base + 2; - overflow: hidden; - position: fixed; - - background: $mfp-overlay-color; - opacity: $mfp-overlay-opacity; - @if $mfp-IE7support { - filter: unquote("alpha(opacity=#{$mfp-overlay-opacity*100})"); - } -} - -// Wrapper for popup -.mfp-wrap { - top: 0; - left: 0; - width: 100%; - height: 100%; - z-index: $mfp-z-index-base + 3; - position: fixed; - outline: none !important; - -webkit-backface-visibility: hidden; // fixes webkit bug that can cause "false" scrollbar -} - -// Root container -.mfp-container { - text-align: center; - position: absolute; - width: 100%; - height: 100%; - left: 0; - top: 0; - padding: 0 $mfp-popup-padding-left; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} - -// Vertical centerer helper -.mfp-container { - &:before { - content: ''; - display: inline-block; - height: 100%; - vertical-align: middle; - } -} - -// Remove vertical centering when popup has class `mfp-align-top` -.mfp-align-top { - .mfp-container { - &:before { - display: none; - } - } -} - -// Popup content holder -.mfp-content { - position: relative; - display: inline-block; - vertical-align: middle; - margin: 0 auto; - text-align: left; - z-index: $mfp-z-index-base + 5; -} -.mfp-inline-holder, -.mfp-ajax-holder { - .mfp-content { - width: 100%; - cursor: auto; - } -} - -// Cursors -.mfp-ajax-cur { - cursor: progress; -} -.mfp-zoom-out-cur { - &, .mfp-image-holder .mfp-close { - cursor: -moz-zoom-out; - cursor: -webkit-zoom-out; - cursor: zoom-out; - } -} -.mfp-zoom { - cursor: pointer; - cursor: -webkit-zoom-in; - cursor: -moz-zoom-in; - cursor: zoom-in; -} -.mfp-auto-cursor { - .mfp-content { - cursor: auto; - } -} - -.mfp-close, -.mfp-arrow, -.mfp-preloader, -.mfp-counter { - -webkit-user-select:none; - -moz-user-select: none; - user-select: none; -} - -// Hide the image during the loading -.mfp-loading { - &.mfp-figure { - display: none; - } -} - -// Helper class that hides stuff -@if $mfp-use-visuallyhidden { - // From HTML5 Boilerplate https://github.com/h5bp/html5-boilerplate/blob/v4.2.0/doc/css.md#visuallyhidden - .mfp-hide { - border: 0 !important; - clip: rect(0 0 0 0) !important; - height: 1px !important; - margin: -1px !important; - overflow: hidden !important; - padding: 0 !important; - position: absolute !important; - width: 1px !important; - } -} @else { - .mfp-hide { - display: none !important; - } -} - - -//////////////////////// -// 3. Appearance -//////////////////////// - -// Preloader and text that displays error messages -.mfp-preloader { - color: $mfp-controls-text-color; - position: absolute; - top: 50%; - width: auto; - text-align: center; - margin-top: -0.8em; - left: 8px; - right: 8px; - z-index: $mfp-z-index-base + 4; - a { - color: $mfp-controls-text-color; - &:hover { - color: $mfp-controls-text-color-hover; - } - } -} - -// Hide preloader when content successfully loaded -.mfp-s-ready { - .mfp-preloader { - display: none; - } -} - -// Hide content when it was not loaded -.mfp-s-error { - .mfp-content { - display: none; - } -} - -// CSS-reset for buttons -button { - &.mfp-close, - &.mfp-arrow { - overflow: visible; - cursor: pointer; - background: transparent; - border: 0; - -webkit-appearance: none; - display: block; - outline: none; - padding: 0; - z-index: $mfp-z-index-base + 6; - -webkit-box-shadow: none; - box-shadow: none; - } - &::-moz-focus-inner { - padding: 0; - border: 0 - } -} - - -// Close icon -.mfp-close { - width: 44px; - height: 44px; - line-height: 44px; - - position: absolute; - right: 0; - top: 0; - text-decoration: none; - text-align: center; - opacity: $mfp-controls-opacity; - @if $mfp-IE7support { - filter: unquote("alpha(opacity=#{$mfp-controls-opacity*100})"); - } - padding: 0 0 18px 10px; - color: $mfp-controls-color; - - font-style: normal; - font-size: 28px; - font-family: $serif; - - &:hover, - &:focus { - opacity: 1; - @if $mfp-IE7support { - filter: unquote("alpha(opacity=#{1*100})"); - } - } - - &:active { - top: 1px; - } -} -.mfp-close-btn-in { - .mfp-close { - color: $mfp-inner-close-icon-color; - } -} -.mfp-image-holder, -.mfp-iframe-holder { - .mfp-close { - color: $mfp-controls-color; - right: -6px; - text-align: right; - padding-right: 6px; - width: 100%; - } -} - -// "1 of X" counter -.mfp-counter { - position: absolute; - top: 0; - right: 0; - color: $mfp-controls-text-color; - font-size: 12px; - line-height: 18px; -} - -// Navigation arrows -@if $mfp-include-arrows { - .mfp-arrow { - position: absolute; - opacity: $mfp-controls-opacity; - @if $mfp-IE7support { - filter: unquote("alpha(opacity=#{$mfp-controls-opacity*100})"); - } - margin: 0; - top: 50%; - margin-top: -55px; - padding: 0; - width: 90px; - height: 110px; - -webkit-tap-highlight-color: rgba(0,0,0,0); - &:active { - margin-top: -54px; - } - &:hover, - &:focus { - opacity: 1; - @if $mfp-IE7support { - filter: unquote("alpha(opacity=#{1*100})"); - } - } - &:before, - &:after, - .mfp-b, - .mfp-a { - content: ''; - display: block; - width: 0; - height: 0; - position: absolute; - left: 0; - top: 0; - margin-top: 35px; - margin-left: 35px; - border: medium inset transparent; - } - - &:after, - .mfp-a { - - border-top-width: 13px; - border-bottom-width: 13px; - top:8px; - } - - &:before, - .mfp-b { - border-top-width: 21px; - border-bottom-width: 21px; - opacity: 0.7; - } - - } - - .mfp-arrow-left { - left: 0; - - &:after, - .mfp-a { - border-right: 17px solid $mfp-controls-color; - margin-left: 31px; - } - &:before, - .mfp-b { - margin-left: 25px; - border-right: 27px solid $mfp-controls-border-color; - } - } - - .mfp-arrow-right { - right: 0; - &:after, - .mfp-a { - border-left: 17px solid $mfp-controls-color; - margin-left: 39px - } - &:before, - .mfp-b { - border-left: 27px solid $mfp-controls-border-color; - } - } -} - - - -// Iframe content type -@if $mfp-include-iframe-type { - .mfp-iframe-holder { - padding-top: $mfp-iframe-padding-top; - padding-bottom: $mfp-iframe-padding-top; - .mfp-content { - line-height: 0; - width: 100%; - max-width: $mfp-iframe-max-width; - } - .mfp-close { - top: -40px; - } - } - .mfp-iframe-scaler { - width: 100%; - height: 0; - overflow: hidden; - padding-top: $mfp-iframe-ratio * 100%; - iframe { - position: absolute; - display: block; - top: 0; - left: 0; - width: 100%; - height: 100%; - box-shadow: $mfp-shadow; - background: $mfp-iframe-background; - } - } -} - - - -// Image content type -@if $mfp-include-image-type { - - /* Main image in popup */ - img { - &.mfp-img { - width: auto; - max-width: 100%; - height: auto; - display: block; - line-height: 0; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - padding: $mfp-image-padding-top 0 $mfp-image-padding-bottom; - margin: 0 auto; - } - } - - /* The shadow behind the image */ - .mfp-figure { - line-height: 0; - &:after { - content: ''; - position: absolute; - left: 0; - top: $mfp-image-padding-top; - bottom: $mfp-image-padding-bottom; - display: block; - right: 0; - width: auto; - height: auto; - z-index: -1; - box-shadow: $mfp-shadow; - background: $mfp-image-background; - } - small { - color: $mfp-caption-subtitle-color; - display: block; - font-size: 12px; - line-height: 14px; - } - figure { - margin: 0; - } - figcaption { - margin-top: 0; - margin-bottom: 0; // reset for bottom spacing - } - } - .mfp-bottom-bar { - margin-top: -$mfp-image-padding-bottom + 4; - position: absolute; - top: 100%; - left: 0; - width: 100%; - cursor: auto; - } - .mfp-title { - text-align: left; - line-height: 18px; - color: $mfp-caption-title-color; - word-wrap: break-word; - padding-right: 36px; // leave some space for counter at right side - } - - .mfp-image-holder { - .mfp-content { - max-width: 100%; - } - } - - .mfp-gallery { - .mfp-image-holder { - .mfp-figure { - cursor: pointer; - } - } - } - - - @if $mfp-include-mobile-layout-for-image { - @media screen and (max-width: 800px) and (orientation:landscape), screen and (max-height: 300px) { - /** - * Remove all paddings around the image on small screen - */ - .mfp-img-mobile { - .mfp-image-holder { - padding-left: 0; - padding-right: 0; - } - img { - &.mfp-img { - padding: 0; - } - } - .mfp-figure { - // The shadow behind the image - &:after { - top: 0; - bottom: 0; - } - small { - display: inline; - margin-left: 5px; - } - } - .mfp-bottom-bar { - background: rgba(0,0,0,0.6); - bottom: 0; - margin: 0; - top: auto; - padding: 3px 5px; - position: fixed; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - &:empty { - padding: 0; - } - } - .mfp-counter { - right: 5px; - top: 3px; - } - .mfp-close { - top: 0; - right: 0; - width: 35px; - height: 35px; - line-height: 35px; - background: rgba(0, 0, 0, 0.6); - position: fixed; - text-align: center; - padding: 0; - } - } - } - } -} - - - -// Scale navigation arrows and reduce padding from sides -@media all and (max-width: 900px) { - .mfp-arrow { - -webkit-transform: scale(0.75); - transform: scale(0.75); - } - .mfp-arrow-left { - -webkit-transform-origin: 0; - transform-origin: 0; - } - .mfp-arrow-right { - -webkit-transform-origin: 100%; - transform-origin: 100%; - } - .mfp-container { - padding-left: $mfp-popup-padding-left-mobile; - padding-right: $mfp-popup-padding-left-mobile; - } -} - - - -// IE7 support -// Styles that make popup look nicier in old IE -@if $mfp-IE7support { - .mfp-ie7 { - .mfp-img { - padding: 0; - } - .mfp-bottom-bar { - width: 600px; - left: 50%; - margin-left: -300px; - margin-top: 5px; - padding-bottom: 5px; - } - .mfp-container { - padding: 0; - } - .mfp-content { - padding-top: 44px; - } - .mfp-close { - top: 0; - right: 0; - padding-top: 0; - } - } -} diff --git a/_sass/minimal-mistakes/vendor/magnific-popup/_settings.scss b/_sass/minimal-mistakes/vendor/magnific-popup/_settings.scss deleted file mode 100644 index e7866b3f1..000000000 --- a/_sass/minimal-mistakes/vendor/magnific-popup/_settings.scss +++ /dev/null @@ -1,46 +0,0 @@ -//////////////////////// -// Settings // -//////////////////////// - -// overlay -$mfp-overlay-color: #000; // Color of overlay screen -$mfp-overlay-opacity: 0.8; // Opacity of overlay screen -$mfp-shadow: 0 0 8px rgba(0, 0, 0, 0.6); // Shadow on image or iframe - -// spacing -$mfp-popup-padding-left: 8px; // Padding from left and from right side -$mfp-popup-padding-left-mobile: 6px; // Same as above, but is applied when width of window is less than 800px - -$mfp-z-index-base: 1040; // Base z-index of popup - -// controls -$mfp-include-arrows: true; // Include styles for nav arrows -$mfp-controls-opacity: 1; // Opacity of controls -$mfp-controls-color: #fff; // Color of controls -$mfp-controls-border-color: #fff; // Border color of controls -$mfp-inner-close-icon-color: #fff; // Color of close button when inside -$mfp-controls-text-color: #ccc; // Color of preloader and "1 of X" indicator -$mfp-controls-text-color-hover: #fff; // Hover color of preloader and "1 of X" indicator -$mfp-IE7support: true; // Very basic IE7 support - -// Iframe-type options -$mfp-include-iframe-type: true; // Enable Iframe-type popups -$mfp-iframe-padding-top: 40px; // Iframe padding top -$mfp-iframe-background: #000; // Background color of iframes -$mfp-iframe-max-width: 900px; // Maximum width of iframes -$mfp-iframe-ratio: 9/16; // Ratio of iframe (9/16 = widescreen, 3/4 = standard, etc.) - -// Image-type options -$mfp-include-image-type: true; // Enable Image-type popups -$mfp-image-background: #444 !default; -$mfp-image-padding-top: 40px; // Image padding top -$mfp-image-padding-bottom: 40px; // Image padding bottom -$mfp-include-mobile-layout-for-image: true; // Removes paddings from top and bottom - -// Image caption options -$mfp-caption-title-color: #f3f3f3; // Caption title color -$mfp-caption-subtitle-color: #bdbdbd; // Caption subtitle color -.mfp-counter { font-family: $serif; } // Caption font family - -// A11y -$mfp-use-visuallyhidden: false; \ No newline at end of file diff --git a/_sass/minimal-mistakes/vendor/susy/_su.scss b/_sass/minimal-mistakes/vendor/susy/_su.scss deleted file mode 100644 index 83386adba..000000000 --- a/_sass/minimal-mistakes/vendor/susy/_su.scss +++ /dev/null @@ -1,4 +0,0 @@ -// Su -// == - -@import 'susy/su'; diff --git a/_sass/minimal-mistakes/vendor/susy/_susy-prefix.scss b/_sass/minimal-mistakes/vendor/susy/_susy-prefix.scss deleted file mode 100644 index 185b35613..000000000 --- a/_sass/minimal-mistakes/vendor/susy/_susy-prefix.scss +++ /dev/null @@ -1,13 +0,0 @@ -// Susy (Prefixed) -// =============== - -$susy-version: 3; - -@import 'susy/utilities'; -@import 'susy/su-validate'; -@import 'susy/su-math'; -@import 'susy/settings'; -@import 'susy/normalize'; -@import 'susy/parse'; -@import 'susy/syntax-helpers'; -@import 'susy/api'; diff --git a/_sass/minimal-mistakes/vendor/susy/_susy.scss b/_sass/minimal-mistakes/vendor/susy/_susy.scss deleted file mode 100644 index bfda3d086..000000000 --- a/_sass/minimal-mistakes/vendor/susy/_susy.scss +++ /dev/null @@ -1,5 +0,0 @@ -// Susy (Un-Prefixed) -// ================== - -@import 'susy-prefix'; -@import 'susy/unprefix'; diff --git a/_sass/minimal-mistakes/vendor/susy/plugins/_svg-grid.scss b/_sass/minimal-mistakes/vendor/susy/plugins/_svg-grid.scss deleted file mode 100644 index 99db8d1ed..000000000 --- a/_sass/minimal-mistakes/vendor/susy/plugins/_svg-grid.scss +++ /dev/null @@ -1,5 +0,0 @@ -// SVG Grid Background -// =================== - -@import 'svg-grid/prefix'; -@import 'svg-grid/svg-unprefix'; diff --git a/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_prefix.scss b/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_prefix.scss deleted file mode 100644 index 21fb45fa5..000000000 --- a/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_prefix.scss +++ /dev/null @@ -1,7 +0,0 @@ -// Prefixed SVG Plugin -// =================== - -@import 'svg-settings'; -@import 'svg-utilities'; -@import 'svg-grid-math'; -@import 'svg-api'; diff --git a/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-api.scss b/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-api.scss deleted file mode 100644 index 7d880e3e2..000000000 --- a/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-api.scss +++ /dev/null @@ -1,114 +0,0 @@ -/// Plugin: SVG Grid Image -/// ====================== -/// @group plugin_svg-grid -/// @see susy-svg-grid - - - -/// ## Overview -/// If you want to generate svg-backgrounds -/// for help visualizing and debugging your grids, -/// import the SVG Grid Plugin. -/// -/// The plugin adds `svg-grid-colors` setting -/// to your global defaults, -/// which you can override in `$susy`. -/// It also provides you with a new function, -/// `susy-svg-grid()`, -/// which will return inline svg for use in -/// backgrounds or generated content. -/// -/// This function come with an unprefixed alias by default, -/// using the `svg-grid` import. -/// If you only only want prefixed versions of the API, -/// import the `svg-grid/prefix` partial instead. -/// -/// @group plugin_svg-grid -/// -/// @example scss - importing the plugin -/// // The full path to import Susy will depend on your setup… -/// -/// // unprefixed -/// @import 'plugins/svg-grid'; -/// -/// // prefixed -/// @import 'plugins/svg-grid/prefix'; -/// -/// @example scss - generating background grids -/// .grid { -/// background: susy-svg-grid() no-repeat scroll; -/// } - - - -// SVG Grid -// -------- -/// Return inline svg-data in to display the grid. -/// -/// @group plugin_svg-grid -/// -/// @param {Map | List} $grid [$susy] - -/// Map or shorthand defining the current grid -/// @param {Color | List | null} $colors [null] - -/// Column color, or list of colors for column-gradient, -/// used to override the global `svg-grid-colors` setting -/// @param {Length | null} $offset [null] - -/// Manually override the default grid-image offset, -/// to account for grid edges -/// -/// @return {String} - -/// CSS inline-data SVG string, in `url()` format, -/// for use in image or content properties -/// @example scss -/// .grid { -/// background: susy-svg-grid() no-repeat scroll; -/// } -@function susy-svg-grid( - $grid: $susy, - $colors: null, - $offset: null -) { - // Grid parsing & normalizing - $grid: susy-compile($grid, $context-only: true); - - // Color and gradient handling - $gradient: ''; - - @if (not $colors) { - $colors: susy-get('svg-grid-colors'); - } - - @if length($colors) > 1 { - $gradient: _susy-svg-gradient($colors); - $colors: 'url(%23susy-svg-gradient)'; - } @else { - $colors: _susy-svg-color($colors); - } - - // Get a default image-width - $span: ( - 'span': map-get($grid, 'columns'), - 'spread': map-get($grid, 'container-spread'), - ); - $span: map-merge($grid, $span); - $image-width: su-call('su-span', $span); - $image-width: if((type-of($image-width) == 'number'), $image-width, 100%); - - // SVG construction - $columns: map-get($grid, 'columns'); - $offset: $offset or _susy-svg-offset($grid); - - $attrs: 'fill="#{$colors}" width="#{$image-width}"'; - $svg: 'data:image/svg+xml,'; - $svg: $svg + '%3Csvg xmlns="http://www.w3.org/2000/svg" #{$attrs} %3E'; - $svg: $svg + $gradient; - - @for $column from 1 through length($columns) { - $width: susy-span(1 narrow at $column, $grid); - $x: _susy-svg-column-position($column, $grid); - - $svg: $svg + _susy-svg-rect($x, $width, $offset); - } - - @return url('#{$svg}%3C/svg%3E'); -} diff --git a/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-grid-math.scss b/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-grid-math.scss deleted file mode 100644 index 044801abe..000000000 --- a/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-grid-math.scss +++ /dev/null @@ -1,67 +0,0 @@ -// SVG Grid Math -// ============= - - - -// SVG Column Position -// ------------------- -/// Determine the proper horizontal position -/// for a column rectangle -/// -/// @access private -/// -/// @param {Integer} $column - -/// 1-indexed column location on the grid -/// @param {Map} $grid - -/// Normalized settings map representing the current grid -/// -/// @return {Length} - -/// Horizontal position of svg column rectangle, -/// as distance from the grid edge -@function _susy-svg-column-position( - $column, - $grid -) { - $x: $column - 1; - - @if ($x > 0) { - $x: susy-span(first $x wide, $grid); - } - - @return $x; -} - - - -// SVG Offset -// ---------- -/// Determine if a grid image needs to be offset, -/// to account for edge gutters. -/// -/// @access private -/// -/// @param {Map} $grid - -/// Normalized settings map representing the current grid -/// -/// @return {Length | null} - -/// Expected distance from container edge to first column, -/// based on spread values and gutter-widths -@function _susy-svg-offset( - $grid -) { - $columns: su-valid-columns(map-get($grid, 'columns')); - $gutters: su-valid-gutters(map-get($grid, 'gutters')); - $container: su-valid-spread(map-get($grid, 'container-spread')) + 1; - - @if ($container == 0) { - @return null; - } - - $gutter: su-call('su-gutter', $grid); - - @if (type-of($gutter) == 'string') { - @return 'calc(#{$container} * #{$gutter} / 2)'; - } - - @return $container * $gutter / 2; -} diff --git a/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-settings.scss b/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-settings.scss deleted file mode 100644 index 3fcc91fbe..000000000 --- a/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-settings.scss +++ /dev/null @@ -1,14 +0,0 @@ -// SVG Settings -// ============ - - -// Susy SVG Defaults -// ================= -/// This plugin adds the `svg-grid-colors` property -/// and default value to `$_susy-defaults` — -/// you can override that value in `$susy` -/// or any other grid settings map. -/// @group plugin_svg-grid -$_susy-defaults: map-merge(( - 'svg-grid-colors': hsla(120, 50%, 50%, 0.5) hsla(120, 50%, 75%, 0.5), - ), $_susy-defaults); diff --git a/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-unprefix.scss b/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-unprefix.scss deleted file mode 100644 index 187157cfe..000000000 --- a/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-unprefix.scss +++ /dev/null @@ -1,18 +0,0 @@ -// Unprefix Susy SVG Grid -// ====================== - - - -// SVG Grid -// -------- -/// Un-prefixed alias for `susy-svg-grid` -/// -/// @group plugin_svg-grid -/// @alias susy-svg-grid -@function svg-grid( - $grid: $susy, - $colors: susy-get('svg-grid-colors'), - $offset: null -) { - @return susy-svg-grid($grid, $colors, $offset); -} diff --git a/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-utilities.scss b/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-utilities.scss deleted file mode 100644 index e4bf18ff5..000000000 --- a/_sass/minimal-mistakes/vendor/susy/plugins/svg-grid/_svg-utilities.scss +++ /dev/null @@ -1,133 +0,0 @@ -// SVG Utilities -// ============= - - - -// SVG Validate Units -// ------------------ -/// Make sure a length is supported in svg -/// -/// @access private -/// -/// @param {Length} $length - -/// The length to validate -/// @param {String} $name [null] - -/// Optional name of length origin, -/// for error reporting -/// -/// @return {Length} - -/// An svg-validated length, or comparable valid length -@function _susy-svg-validate-units( - $length, - $name: null -) { - $_svg-units: ('em', 'ex', 'px', 'pt', 'pc', 'cm', 'mm', 'in', '%'); - $string: type-of($length) == 'string'; - - @if ($length == 0) or ($string) or index($_svg-units, unit($length)) { - @return $length; - } - - @return _susy-error( - '`#{unit($length)}` #{$name} units are not supported in SVG', - '_susy-svg-validate-units'); -} - - - -// SVG Rect -// -------- -/// Build a single svg rectangle -/// -/// @access private -/// -/// @param {Length} $x - -/// Horizontal position for the rectangle -/// @param {Length} $width - -/// Width of the rectangle -/// @param {Length} $offset [null] - -/// Offset the rectangle, to account for edge gutters -/// -/// @return {String} - -/// Escaped string representing one svg rectangle -@function _susy-svg-rect( - $x, - $width, - $offset: null -) { - $x: _susy-svg-validate-units($x); - $width: _susy-svg-validate-units($width); - $offset: if($offset == 0, null, $offset); - - @if (type-of($offset) == 'number') and (type-of($x) == 'number') { - @if comparable($x, $offset) { - $x: $x + $offset; - } @else { - $x: 'calc(#{$x} + #{$offset})'; - } - } @else if $offset and ($x != 0) { - $x: 'calc(#{$x} + #{$offset})'; - } @else if $offset { - $x: $offset; - } - - @return '%3Crect x="#{$x}" width="#{$width}" height="100%"/%3E'; -} - - - -// SVG Color -// --------- -/// Stringify colors, and escape hex symbol -/// -/// @access private -/// -/// @param {Color} $color - -/// Color to stringify and escape -/// -/// @return {String} - -/// Escaped string value of color -@function _susy-svg-color( - $color -) { - $color: inspect($color); // convert to string - - @if (str-index($color, '#') == 1) { - $color: '%23' + str-slice($color, 2); - } - - @return $color; -} - - - -// SVG Gradient -// ------------ -/// Create a multi-color svg gradient -/// -/// @access private -/// -/// @param {List} $colors - -/// List of colors to be equally spaced from `0%` to `100%` -/// in each column rectangle -/// -/// @return {String} - -/// Escaped string representing one svg gradient -/// (`id="susy-svg-gradient"`) -@function _susy-svg-gradient( - $colors -) { - $gradient: '%3Cdefs%3E%3ClinearGradient spreadMethod="pad"'; - $gradient: '#{$gradient} id="susy-svg-gradient"'; - $gradient: '#{$gradient} x1="0%" y1="0%" x2="100%" y2="0%"%3E'; - - @for $i from 1 through length($colors) { - $color: _susy-svg-color(nth($colors, $i)); - $offset: percentage(($i - 1) / (length($colors) - 1)); - $stop: '%3Cstop offset="#{$offset}" style="stop-color:#{$color};" /%3E'; - - $gradient: $gradient + $stop; - } - - @return $gradient + '%3C/linearGradient%3E%3C/defs%3E'; -} diff --git a/_sass/minimal-mistakes/vendor/susy/susy/_api.scss b/_sass/minimal-mistakes/vendor/susy/susy/_api.scss deleted file mode 100644 index de8c9bdd8..000000000 --- a/_sass/minimal-mistakes/vendor/susy/susy/_api.scss +++ /dev/null @@ -1,318 +0,0 @@ -/// Susy3 API Functions -/// =================== -/// These three functions form the core of Susy's -/// layout-building grid API. -/// -/// - Use `span()` and `gutter()` to return any grid-width, -/// and apply the results wherever you need them: -/// CSS `width`, `margin`, `padding`, `flex-basis`, `transform`, etc. -/// - For asymmetrical-fluid grids, -/// `slice()` can help manage your nesting context. -/// -/// All three functions come with an unprefixed alias by default, -/// using the `susy` import. -/// Import the `susy-prefix` partial instead, -/// if you only only want prefixed versions of the API. -/// -/// This is a thin syntax-sugar shell around -/// the "Su" core-math functions: `su-span`, `su-gutter`, and `su-slice`. -/// If you prefer the more constrained syntax of the math engine, -/// you are welcome to use those functions instead. -/// -/// @group b-api -/// @see susy-span -/// @see susy-gutter -/// @see susy-slice -/// @see su-span -/// @see su-gutter -/// @see su-slice - - - -/// ## Shorthand -/// -/// All functions draw on the same shorthand syntax in two parts, -/// seperated by the word `of`. -/// -/// ### Span Syntax: `` [`` ``] -/// The first part describes the -/// **span** width, location, and spread in any order. -/// Only the width is required: -/// -/// - `span(2)` will return the width of 2 columns. -/// - `span(3 wide)` will return 3-columns, with an additional gutter. -/// - location is only needed with asymmetrical grids, -/// where `span(3 at 2)` will return the width of -/// specific columns on the grid. -/// Since these are functions, they will not handle placement for you. -/// -/// ### Context Syntax: `[of ]` -/// The second half of Susy's shorthand -/// describes the grid-**context** – -/// available columns, container-spread, and optional gutter override – -/// in any order. -/// All of these settings have globally-defined defaults: -/// -/// - `span(2 of 6)` will set the context to -/// a slice of 6 columns from the global grid. -/// More details below. -/// - `span(2 of 12 wide)` changes the container-spread -/// as well as the column-context. -/// - `span(2 of 12 set-gutters 0.5em)` -/// will override the global gutters setting -/// for this one calculation. -/// -/// A single unitless number for `columns` -/// will be treated as a slice of the parent grid. -/// On a grid with `columns: susy-repeat(12, 120px)`, -/// the shorthand `of 4` will use the parent `120px` column-width. -/// You can also be more explicit, -/// and say `of susy-repeat(4, 100px)`. -/// If you are using asymmetrical grids, -/// like `columns: (1 1 2 3 5 8)`, -/// Susy can't slice it for you without knowing which columns you want. -/// The `slice` function accepts exactly the same syntax as `span`, -/// but returns a list of columns rather than a width. -/// Use it in your context like `of slice(first 3)`. -/// -/// @group b-api - - - -// Susy Span -// --------- -/// This is the primary function in Susy — -/// used to return the width of a span across one or more columns, -/// and any relevant gutters along the way. -/// With the default settings, -/// `span(3)` will return the width of 3 columns, -/// and the 2 intermediate gutters. -/// This can be used to set the `width` property of grid elements, -/// or `margin` and `padding` -/// to push, pull, and pad your elements. -/// -/// - This is a thin syntax-sugar shell around -/// the core-math `su-span()` function. -/// - The un-prefixed alias `span()` is available by default. -/// -/// @group b-api -/// @see su-span -/// @see $susy -/// -/// @param {list} $span - -/// Shorthand expression to define the width of the span, -/// optionally containing: -/// - a count, length, or column-list span. -/// - `at $n`, `first`, or `last` location on asymmetrical grids, -/// where `at 1 == first`, -/// and `last` will calculate the proper location -/// based on columns and span. -/// - `narrow`, `wide`, or `wider` for optionally spreading -/// across adjacent gutters. -/// - `of $n ` for available grid columns -/// and spread of the container. -/// Span counts like `of 6` are valid -/// in the context of symmetrical grids, -/// where Susy can safely infer a slice of the parent columns. -/// - and `set-gutters $n` to override global gutter settings. -/// -/// @param {map} $config [()] - -/// Optional map of Susy grid configuration settings. -/// See `$susy` documentation for details. -/// -/// @return {length} - -/// Calculated length value, using the units given, -/// or converting to `%` for fraction-based grids, -/// or a full `calc` function when units/fractions -/// are not comparable outside the browser. -/// -/// @example scss - span half the grid -/// .foo { -/// // the result is a bit under 50% to account for gutters -/// width: susy-span(6 of 12); -/// } -/// -/// @example scss - span a specific segment of asymmetrical grid -/// .foo { -/// width: susy-span(3 at 3 of (1 2 3 5 8)); -/// } -@function susy-span( - $span, - $config: () -) { - $output: susy-compile($span, $config); - - @if map-get($output, 'span') { - @return su-call('su-span', $output); - } - - $actual: '[#{type-of($span)}] `#{inspect($span)}`'; - @return _susy-error( - 'Unable to determine span value from #{$actual}.', - 'susy-span'); -} - - - -// Susy Gutter -// ----------- -/// The gutter function returns -/// the width of a single gutter on your grid, -/// to be applied where you see fit – -/// on `margins`, `padding`, `transform`, or element `width`. -/// -/// - This is a thin syntax-sugar shell around -/// the core-math `su-gutter()` function. -/// - The un-prefixed alias `gutter()` is available by default. -/// -/// @group b-api -/// @see su-gutter -/// @see $susy -/// -/// @param {list | number} $context [null] - -/// Optional context for nested gutters, -/// including shorthand for -/// `columns`, `gutters`, and `container-spread` -/// (additional shorthand will be ignored) -/// -/// @param {map} $config [()] - -/// Optional map of Susy grid configuration settings. -/// See `$susy` documentation for details. -/// -/// @return {length} - -/// Width of a gutter as `%` of current context, -/// or in the units defined by `column-width` when available -/// -/// @example scss - add gutters before or after an element -/// .floats { -/// float: left; -/// width: span(3 of 6); -/// margin-left: gutter(of 6); -/// } -/// -/// @example scss - add gutters to padding -/// .flexbox { -/// flex: 1 1 span(3 wide of 6 wide); -/// padding: gutter(of 6) / 2; -/// } -/// -@function susy-gutter( - $context: susy-get('columns'), - $config: () -) { - $context: susy-compile($context, $config, 'context-only'); - - @return su-call('su-gutter', $context); -} - - - -// Susy Slice -// ---------- -/// Working with asymmetrical grids (un-equal column widths) -/// can be challenging –  -/// expecially when they involve fluid/fractional elements. -/// Describing a context `of (15em 6em 6em 6em 15em)` is a lot -/// to put inside the span or gutter function shorthand. -/// This slice function returns a sub-slice of asymmetrical columns to use -/// for a nested context. -/// `slice(3 at 2)` will give you a subset of the global grid, -/// spanning 3 columns, starting with the second. -/// -/// - This is a thin syntax-sugar shell around -/// the core-math `su-slice()` function. -/// - The un-prefixed alias `slice()` is available by default. -/// -/// @group b-api -/// @see su-slice -/// @see $susy -/// -/// @param {list} $span - -/// Shorthand expression to define the subset span, optionally containing: -/// - `at $n`, `first`, or `last` location on asymmetrical grids; -/// - `of $n ` for available grid columns -/// and spread of the container -/// - Span-counts like `of 6` are only valid -/// in the context of symmetrical grids -/// - Valid spreads include `narrow`, `wide`, or `wider` -/// -/// @param {map} $config [()] - -/// Optional map of Susy grid configuration settings. -/// See `$susy` documentation for details. -/// -/// @return {list} - -/// Subset list of columns for use for a nested context -/// -/// @example scss - Return a nested segment of asymmetrical grid -/// $context: susy-slice(3 at 3 of (1 2 3 5 8)); -/// /* $context: #{$context}; */ -@function susy-slice( - $span, - $config: () -) { - $span: susy-compile($span, $config); - - @return su-call('su-slice', $span); -} - - - -/// ## Building Grids -/// The web has come a long way -/// since the days of double-margin-hacks -/// and inconsistent subpixel rounding. -/// In addition to floats and tables, -/// we can now use much more powerful tools, -/// like flexbox and CSS grid, -/// to build more interesting and responsive layouts. -/// -/// With Susy3, we hope you'll start moving in that direction. -/// You can still build classic 12-column Grid Systems, -/// and we'll help you get there, -/// but Susy3 is primarily designed for a grid-math-on-demand -/// approach to layout: -/// applying our functions only where you really need grid math. -/// Read the [intro article by OddBird][welcome] for more details. -/// -/// [welcome]: http://oddbird.net/2017/06/28/susy3/ -/// -/// @group b-api -/// @link http://oddbird.net/2017/06/28/susy3/ Article: Welcome to Susy3 -/// -/// @example scss - floats -/// .float { -/// width: span(3); -/// margin-right: gutter(); -/// } -/// -/// @example scss - flexbox -/// .flexbox { -/// flex: 1 1 span(3); -/// // half a gutter on either side… -/// padding: 0 gutter() / 2; -/// } -/// -/// @example scss - pushing and pulling -/// .push-3 { -/// margin-left: span(3 wide); -/// } -/// -/// .pull-3 { -/// margin-left: 0 - span(3 wide); -/// } -/// -/// @example scss - building an attribute system -/// // markup example:
-/// [data-span] { -/// float: left; -/// -/// &:not([data-span*='last']) { -/// margin-right: gutter(); -/// } -/// } -/// -/// @for $span from 1 through length(susy-get('columns')) { -/// [data-span*='#{$span}'] { -/// width: span($span); -/// } -/// } diff --git a/_sass/minimal-mistakes/vendor/susy/susy/_normalize.scss b/_sass/minimal-mistakes/vendor/susy/susy/_normalize.scss deleted file mode 100644 index a988504c1..000000000 --- a/_sass/minimal-mistakes/vendor/susy/susy/_normalize.scss +++ /dev/null @@ -1,261 +0,0 @@ -/// Syntax Normalization -/// ==================== -/// Susy is divided into two layers: -/// "Su" provides the core math functions with a stripped-down syntax, -/// while "Susy" adds global settings, shorthand syntax, -/// and other helpers. -/// Each setting (e.g. span, location, columns, spread, etc.) -/// has a single canonical syntax in Su. -/// -/// This normalization module helps translate between those layers, -/// transforming parsed Susy input into -/// values that Su will understand. -/// -/// @group x-normal -/// -/// @see susy-normalize -/// @see susy-normalize-span -/// @see susy-normalize-columns -/// @see susy-normalize-spread -/// @see susy-normalize-location - - - -// Susy Normalize -// -------------- -/// Normalize the values in a configuration map. -/// In addition to the global `$susy` properties, -/// this map can include local span-related imformation, -/// like `span` and `location`. -/// -/// Normalization does not check that values are valid, -/// which will happen in the Su math layer. -/// These functions merely look for known Susy syntax – -/// returning a map with those shorthand values -/// converted into low-level data for Su. -/// For example `span: all` and `location: first` -/// will be converted into specific numbers. -/// -/// @group x-normal -/// @see $susy -/// @see susy-parse -/// -/// @param {map} $config - -/// Map of Susy configuration settings to normalize. -/// See `$susy` and `susy-parse()` documentation for details. -/// @param {map | null} $context [null] - -/// Map of Susy configuration settings to use as global reference, -/// or `null` to use global settings. -/// -/// @return {map} - -/// Map of Susy configuration settings, -/// with all values normalized for Su math functions. -@function susy-normalize( - $config, - $context: null -) { - // Spread - @each $setting in ('spread', 'container-spread') { - $value: map-get($config, $setting); - - @if $value { - $value: susy-normalize-spread($value); - $config: map-merge($config, ($setting: $value)); - } - } - - // Columns - $columns: map-get($config, 'columns'); - - @if $columns { - $columns: susy-normalize-columns($columns, $context); - $config: map-merge($config, ('columns': $columns)); - } - - @if not $columns { - $map: type-of($context) == 'map'; - $columns: if($map, map-get($context, 'columns'), null); - $columns: $columns or susy-get('columns'); - } - - // Span - $span: map-get($config, 'span'); - - @if $span { - $span: susy-normalize-span($span, $columns); - $config: map-merge($config, ('span': $span)); - } - - // Location - $location: map-get($config, 'location'); - - @if $location { - $location: susy-normalize-location($span, $location, $columns); - $config: map-merge($config, ('location': $location)); - } - - @return $config; -} - - - -// Normalize Span -// -------------- -/// Normalize `span` shorthand for Su. -/// Su span syntax allows an explicit length (e.g. `3em`), -/// unitless column-span number (e.g. `3` columns), -/// or an explicit list of columns (e.g. `(3 5 8)`). -/// -/// Susy span syntax also allows the `all` keyword, -/// which will be converted to a slice of the context -/// in normalization. -/// -/// @group x-normal -/// -/// @param {number | list | 'all'} $span - -/// Span value to normalize. -/// @param {list} $columns - -/// Normalized list of columns in the grid -/// -/// @return {number | list} - -/// Number or list value for `$span` -@function susy-normalize-span( - $span, - $columns: susy-get('columns') -) { - @if ($span == 'all') { - @return length($columns); - } - - @return $span; -} - - - -// Normalize Columns -// ----------------- -/// Normalize `column` shorthand for Su. -/// Su column syntax only allows column lists (e.g. `120px 1 1 1 120px`). -/// -/// Susy span syntax also allows a unitless `slice` number (e.g `of 5`), -/// which will be converted to a slice of the context -/// in normalization. -/// -/// @group x-normal -/// -/// @param {list | integer} $columns - -/// List of available columns, -/// or unitless integer representing a slice of -/// the available context. -/// @param {map | null} $context [null] - -/// Map of Susy configuration settings to use as global reference, -/// or `null` to access global settings. -/// -/// @return {list} - -/// Columns list value, normalized for Su input. -/// -/// @throws -/// when attempting to access a slice of asymmetrical context -@function susy-normalize-columns( - $columns, - $context: null -) { - $context: $context or susy-settings(); - - @if type-of($columns) == 'list' { - @return _susy-flatten($columns); - } - - @if (type-of($columns) == 'number') and (unitless($columns)) { - $span: $columns; - $context: map-get($context, 'columns'); - $symmetrical: susy-repeat(length($context), nth($context, 1)); - - @if ($context == $symmetrical) { - @return susy-repeat($span, nth($context, 1)); - } @else { - $actual: 'of `#{$span}`'; - $columns: 'grid-columns `#{$context}`'; - @return _susy-error( - 'context-slice #{$actual} can not be determined based on #{$columns}.', - 'susy-normalize-columns'); - } - } - - @return $columns; -} - - - -// Normalize Spread -// ---------------- -/// Normalize `spread` shorthand for Su. -/// Su spread syntax only allows the numbers `-1`, `0`, or `1` – -/// representing the number of gutters covered -/// in relation to columns spanned. -/// -/// Susy spread syntax also allows keywords for each value – -/// `narrow` for `-1`, `wide` for `0`, or `wider` for `1` – -/// which will be converted to their respective integers -/// in normalization. -/// -/// @group x-normal -/// -/// @param {0 | 1 | -1 | 'narrow' | 'wide' | 'wider'} $spread - -/// Spread across adjacent gutters, relative to a column-count — -/// either `narrow` (-1), `wide` (0), or `wider` (1) -/// -/// @return {number} - -/// Numeric value for `$spread` -@function susy-normalize-spread( - $spread -) { - $normal-spread: ( - 'narrow': -1, - 'wide': 0, - 'wider': 1, - ); - - @return map-get($normal-spread, $spread) or $spread; -} - - - -// Normalize Location -// ------------------ -/// Normalize `location` shorthand for Su. -/// Su location syntax requires the (1-indexed) number for a column. -/// -/// Susy also allows the `first` and `last` keywords, -/// where `first` is always `1`, -/// and `last` is calculated based on span and column values. -/// Both keywords are normalized into an integer index -/// in normalization. -/// -/// @group x-normal -/// -/// @param {number} $span - -/// Number of grid-columns to be spanned -/// @param {integer | 'first' | 'last'} $location - -/// Starting (1-indexed) column position of a span, -/// or a named location keyword. -/// @param {list} $columns - -/// Already-normalized list of columns in the grid. -/// -/// @return {integer} - -/// Numeric value for `$location` -@function susy-normalize-location( - $span, - $location, - $columns -) { - $count: length($columns); - $normal-locations: ( - 'first': 1, - 'alpha': 1, - 'last': $count - $span + 1, - 'omega': $count - $span + 1, - ); - - @return map-get($normal-locations, $location) or $location; -} diff --git a/_sass/minimal-mistakes/vendor/susy/susy/_parse.scss b/_sass/minimal-mistakes/vendor/susy/susy/_parse.scss deleted file mode 100644 index 98aa40a9f..000000000 --- a/_sass/minimal-mistakes/vendor/susy/susy/_parse.scss +++ /dev/null @@ -1,163 +0,0 @@ -/// Shorthand Syntax Parser -/// ======================= -/// The syntax parser converts [shorthand syntax][short] -/// into a map of settings that can be compared/merged with -/// other config maps and global setting. -/// -/// [short]: b-api.html -/// -/// @group x-parser - - - -// Parse -// ----- -/// The `parse` function provides all the syntax-sugar in Susy, -/// converting user shorthand -/// into a usable map of keys and values -/// that can be normalized and passed to Su. -/// -/// @group x-parser -/// @see $susy -/// -/// @param {list} $shorthand - -/// Shorthand expression to define the width of the span, -/// optionally containing: -/// - a count, length, or column-list span; -/// - `at $n`, `first`, or `last` location on asymmetrical grids; -/// - `narrow`, `wide`, or `wider` for optionally spreading -/// across adjacent gutters; -/// - `of $n ` for available grid columns -/// and spread of the container -/// (span counts like `of 6` are only valid -/// in the context of symmetrical grids); -/// - and `set-gutters $n` to override global gutter settings -/// @param {bool} $context-only [false] - -/// Allow the parser to ignore span and span-spread values, -/// only parsing context and container-spread. -/// This makes it possible to accept spanless values, -/// like the `gutters()` syntax. -/// When parsing context-only, -/// the `of` indicator is optional. -/// -/// @return {map} - -/// Map of span and grid settings -/// parsed from shorthand input – -/// including all the properties available globally – -/// `columns`, `gutters`, `spread`, `container-spread` – -/// along with the span-specific properties -/// `span`, and `location`. -/// -/// @throw -/// when a shorthand value is not recognized -@function susy-parse( - $shorthand, - $context-only: false -) { - $parse-error: 'Unknown shorthand property:'; - $options: ( - 'first': 'location', - 'last': 'location', - 'alpha': 'location', - 'omega': 'location', - 'narrow': 'spread', - 'wide': 'spread', - 'wider': 'spread', - ); - - $return: (); - $span: null; - $columns: null; - - $of: null; - $next: false; - - // Allow context-only shorthand, without span - @if ($context-only) and (not index($shorthand, 'of')) { - @if su-valid-columns($shorthand, 'fail-silent') { - $shorthand: 'of' $shorthand; - } @else { - $shorthand: join('of', $shorthand); - } - } - - // loop through the shorthand list - @for $i from 1 through length($shorthand) { - $item: nth($shorthand, $i); - $type: type-of($item); - $error: false; - $details: '[#{$type}] `#{$item}`'; - - // if we know what's supposed to be coming next… - @if $next { - - // Add to the return map - $return: map-merge($return, ($next: $item)); - - // Reset next to `false` - $next: false; - - } @else { // If we don't know what's supposed to be coming… - - // Keywords… - @if ($type == 'string') { - // Check the map for keywords… - @if map-has-key($options, $item) { - $setting: map-get($options, $item); - - // Spread could be on the span or the container… - @if ($setting == 'spread') and ($of) { - $return: map-merge($return, ('container-spread': $item)); - } @else { - $return: map-merge($return, ($setting: $item)); - } - - } @else if ($item == 'all') { - // `All` is a span shortcut - $span: 'all'; - } @else if ($item == 'at') { - // Some keywords setup what's next… - $next: 'location'; - } @else if ($item == 'set-gutters') { - $next: 'gutters'; - } @else if ($item == 'of') { - $of: true; - } @else { - $error: true; - } - - } @else if ($type == 'number') or ($type == 'list') { // Numbers & lists… - - @if not ($span or $of) { - // We don't have a span, and we're not expecting context… - $span: $item; - } @else if ($of) and (not $columns) { - // We are expecting context… - $columns: $item; - } @else { - $error: true; - } - - } @else { - $error: true; - } - } - - @if $error { - @return _susy-error('#{$parse-error} #{$details}', 'susy-parse'); - } - } - - // If we have span, merge it in - @if $span { - $return: map-merge($return, ('span': $span)); - } - - // If we have columns, merge them in - @if $columns { - $return: map-merge($return, ('columns': $columns)); - } - - // Return the map of settings… - @return $return; -} diff --git a/_sass/minimal-mistakes/vendor/susy/susy/_settings.scss b/_sass/minimal-mistakes/vendor/susy/susy/_settings.scss deleted file mode 100644 index b824477cf..000000000 --- a/_sass/minimal-mistakes/vendor/susy/susy/_settings.scss +++ /dev/null @@ -1,329 +0,0 @@ -/// Susy3 Configuration -/// =================== -/// Susy3 has 4 core settings, in a single settings map. -/// You'll notice a few differences from Susy2: -/// -/// **Columns** no longer accept a single number, like `12`, -/// but use a syntax more similar to the new -/// CSS [grid-template-columns][columns] – -/// a list of relative sizes for each column on the grid. -/// Unitless numbers in Susy act very similar to `fr` units in CSS, -/// and the `susy-repeat()` function (similar to the css `repeat()`) -/// helps quickly establish equal-width columns. -/// -/// [columns]: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-columns -/// -/// - `susy-repeat(12)` will create 12 fluid, equal-width columns -/// - `susy-repeat(6, 120px)` will create 6 equal `120px`-wide columns -/// - `120px susy-repeat(4) 120px` will create 6 columns, -/// the first and last are `120px`, -/// while the middle 4 are equal fractions of the remainder. -/// Susy will output `calc()` values in order to achieve this. -/// -/// **Gutters** haven't changed – -/// a single fraction or explicit width – -/// but the `calc()` output feature -/// means you can now use any combination of units and fractions -/// to create static-gutters on a fluid grid, etc. -/// -/// **Spread** existed in the Susy2 API as a span option, -/// and was otherwise handled behind the scenes. -/// Now we're giving you full control over all spread issues. -/// You can find a more [detailed explanation of spread on the blog][spread]. -/// -/// [spread]: http://oddbird.net/2017/06/13/susy-spread/ -/// -/// You can access your global settings at any time -/// with the `susy-settings()` function, -/// or grab a single setting from the global scope -/// with `susy-get('columns')`, `susy-get('gutters')` etc. -/// -/// @group a-config -/// @link http://oddbird.net/2017/06/13/susy-spread/ -/// Article: Understanding Spread in Susy3 -/// -/// @see $susy -/// @see susy-settings -/// @see susy-get - - - -// Susy -// ---- -/// The grid is defined in a single map variable, -/// with four initial properties: -/// `columns`, `gutters`, `spread` and `container-spread`. -/// Anything you put in the root `$susy` variable map -/// will be treated as a global project default. -/// You can create similar configuration maps -/// under different variable names, -/// to override the defaults as-needed. -/// -/// @group a-config -/// @type Map -/// -/// @see $_susy-defaults -/// @see {function} susy-repeat -/// @link -/// https://codepen.io/mirisuzanne/pen/EgmJJp?editors=1100 -/// Spread examples on CodePen -/// -/// @prop {list} columns - -/// Columns are described by a list of numbers, -/// representing the relative width of each column. -/// The syntax is a simplified version of CSS native -/// `grid-template-columns`, -/// expecting a list of grid-column widths. -/// Unitless numbers create fractional fluid columns -/// (similar to the CSS-native `fr` unit), -/// while length values (united numbers) -/// are used to define static columns. -/// You can mix-and match units and fractions, -/// to create a mixed grid. -/// Susy will generate `calc()` values when necessary, -/// to make all your units work together. -/// -/// Use the `susy-repeat($count, $value)` function -/// to more easily repetative columns, -/// similar to the CSS-native `repeat()`. -/// -/// - `susy-repeat(8)`: -/// an 8-column, symmetrical, fluid grid. -///
Identical to `(1 1 1 1 1 1 1 1)`. -/// - `susy-repeat(6, 8em)`: -/// a 6-column, symmetrical, em-based grid. -///
Identical to `(8em 8em 8em 8em 8em 8em)`. -/// - `(300px susy-repeat(4) 300px)`: -/// a 6-column, asymmetrical, mixed fluid/static grid -/// using `calc()` output. -///
Identical to `(300px 1 1 1 1 300px)`. -/// -/// **NOTE** that `12` is no longer a valid 12-column grid definition, -/// and you must list all the columns individually -/// (or by using the `susy-repeat()` function). -/// -/// @prop {number} gutters - -/// Gutters are defined as a single width, -/// or fluid ratio, similar to the native-CSS -/// `grid-column-gap` syntax. -/// Similar to columns, -/// gutters can use any valid CSS length unit, -/// or unitless numbers to define a relative fraction. -/// -/// - `0.5`: -/// a fluid gutter, half the size of a single-fraction column. -/// - `1em`: -/// a static gutter, `1em` wide. -/// -/// Mix static gutters with fluid columns, or vice versa, -/// and Susy will generate the required `calc()` to make it work. -/// -/// @prop {string} spread [narrow] - -/// Spread of an element across adjacent gutters: -/// either `narrow` (none), `wide` (one), or `wider` (two) -/// -/// - Both spread settings default to `narrow`, -/// the most common use-case. -/// A `narrow` spread only has gutters *between* columns -/// (one less gutter than columns). -/// This is how all css-native grids work, -/// and most margin-based grid systems. -/// - A `wide` spread includes the same number of gutters as columns, -/// spanning across a single side-gutter. -/// This is how most padding-based grid systems often work, -/// and is also useful for pushing and pulling elements into place. -/// - The rare `wider` spread includes gutters -/// on both sides of the column-span -/// (one more gutters than columns). -/// -/// @prop {string} container-spread [narrow] - -/// Spread of a container around adjacent gutters: -/// either `narrow` (none), `wide` (one), or `wider` (two). -/// See `spread` property for details. -/// -/// @since 3.0.0-beta.1 - -/// `columns` setting no longer accepts numbers -/// (e.g. `12`) for symmetrical fluid grids, -/// or the initial `12 x 120px` syntax for -/// symmetrical fixed-unit grids. -/// Use `susy-repeat(12)` or `susy-repeat(12, 120px)` instead. -/// -/// @example scss - default values -/// // 4 symmetrical, fluid columns -/// // gutters are 1/4 the size of a column -/// // elements span 1 less gutter than columns -/// // containers span 1 less gutter as well -/// $susy: ( -/// 'columns': susy-repeat(4), -/// 'gutters': 0.25, -/// 'spread': 'narrow', -/// 'container-spread': 'narrow', -/// ); -/// -/// @example scss - inside-static gutters -/// // 6 symmetrical, fluid columns… -/// // gutters are static, triggering calc()… -/// // elements span equal columns & gutters… -/// // containers span equal columns & gutters… -/// $susy: ( -/// 'columns': susy-repeat(6), -/// 'gutters': 0.5em, -/// 'spread': 'wide', -/// 'container-spread': 'wide', -/// ); -$susy: () !default; - - - -// Susy Repeat -// ----------- -/// Similar to the `repeat(, )` function -/// that is available in native CSS Grid templates, -/// the `susy-repeat()` function helps generate repetative layouts -/// by repeating any value a given number of times. -/// Where Susy previously allowed `8` as a column definition -/// for 8 equal columns, you should now use `susy-repeat(8)`. -/// -/// @group a-config -/// -/// @param {integer} $count - -/// The number of repetitions, e.g. `12` for a 12-column grid. -/// @param {*} $value [1] - -/// The value to be repeated. -/// Technically any value can be repeated here, -/// but the function exists to repeat column-width descriptions: -/// e.g. the default `1` for single-fraction fluid columns, -/// `5em` for a static column, -/// or even `5em 120px` if you are alternating column widths. -/// -/// @return {list} - -/// List of repeated values -/// -/// @example scss -/// // 12 column grid, with 5em columns -/// $susy: ( -/// columns: susy-repeat(12, 5em), -/// ); -/// -/// @example scss -/// // asymmetrical 5-column grid -/// $susy: ( -/// columns: 20px susy-repeat(3, 100px) 20px, -/// ); -/// -/// /* result: #{susy-get('columns')} */ -@function susy-repeat( - $count, - $value: 1 -) { - $return: (); - - @for $i from 1 through $count { - $return: join($return, $value); - } - - @return $return; -} - - - -// Susy Defaults -// ------------- -/// Configuration map of Susy factory defaults. -/// Do not override this map directly – -/// use `$susy` for user and project setting overrides. -/// -/// @access private -/// @type Map -/// -/// @see $susy -/// -/// @prop {number | list} columns [susy-repeat(4)] -/// @prop {number} gutters [0.25] -/// @prop {string} spread ['narrow'] -/// @prop {string} container-spread ['narrow'] -$_susy-defaults: ( - 'columns': susy-repeat(4), - 'gutters': 0.25, - 'spread': 'narrow', - 'container-spread': 'narrow', -); - - - -// Susy Settings -// ------------- -/// Return a combined map of Susy settings, -/// based on the factory defaults (`$_susy-defaults`), -/// user-defined project configuration (`$susy`), -/// and any local overrides required – -/// such as a configuration map passed into a function. -/// -/// @group a-config -/// -/// @param {maps} $overrides… - -/// Optional map override of global configuration settings. -/// See `$susy` above for properties. -/// -/// @return {map} - -/// Combined map of Susy configuration settings, -/// in order of specificity: -/// any `$overrides...`, -/// then `$susy` project settings, -/// and finally the `$_susy-defaults` -/// -/// @example scss - global settings -/// @each $key, $value in susy-settings() { -/// /* #{$key}: #{$value} */ -/// } -/// -/// @example scss - local settings -/// $local: ('columns': 1 2 3 5 8); -/// -/// @each $key, $value in susy-settings($local) { -/// /* #{$key}: #{$value} */ -/// } -@function susy-settings( - $overrides... -) { - $settings: map-merge($_susy-defaults, $susy); - - @each $config in $overrides { - $settings: map-merge($settings, $config); - } - - @return $settings; -} - - - -// Susy Get -// -------- -/// Return the current global value of any Susy setting -/// -/// @group a-config -/// -/// @param {string} $key - -/// Setting to retrieve from the configuration. -/// -/// @return {*} - -/// Value mapped to `$key` in the configuration maps, -/// in order of specificity: -/// `$susy`, then `$_susy-defaults` -/// -/// @example scss - -/// /* columns: #{susy-get('columns')} */ -/// /* gutters: #{susy-get('gutters')} */ -@function susy-get( - $key -) { - $settings: susy-settings(); - - @if not map-has-key($settings, $key) { - @return _susy-error( - 'There is no Susy setting called `#{$key}`', - 'susy-get'); - } - - @return map-get($settings, $key); -} diff --git a/_sass/minimal-mistakes/vendor/susy/susy/_su-math.scss b/_sass/minimal-mistakes/vendor/susy/susy/_su-math.scss deleted file mode 100644 index 1e8852840..000000000 --- a/_sass/minimal-mistakes/vendor/susy/susy/_su-math.scss +++ /dev/null @@ -1,441 +0,0 @@ -/// Grid Math Engine -/// ================ -/// The `su` functions give you direct access to the math layer, -/// without any syntax-sugar like shorthand parsing, and normalization. -/// If you prefer named arguments, and stripped-down syntax, -/// you can use these functions directly in your code – -/// replacing `span`, `gutter`, and `slice`. -/// -/// These functions are also useful -/// for building mixins or other extensions to Susy. -/// Apply the Susy syntax to new mixins and functions, -/// using our "Plugin Helpers", -/// or write your own syntax and pass the normalized results along -/// to `su` for compilation. -/// -/// @group su-math -/// -/// @see su-span -/// @see su-gutter -/// @see su-slice -/// @ignore _su-sum -/// @ignore _su-calc-span -/// @ignore _su-calc-sum -/// @ignore _su-needs-calc-output - - - -// Su Span -// ------- -/// Calculates and returns a CSS-ready span width, -/// based on normalized span and context data – -/// a low-level version of `susy-span`, -/// with all of the logic and none of the syntax sugar. -/// -/// - Grids defined with unitless numbers will return `%` values. -/// - Grids defined with comparable units -/// will return a value in the units provided. -/// - Grids defined with a mix of units, -/// or a combination of untiless numbers and unit-lengths, -/// will return a `calc()` string. -/// -/// @group su-math -/// @see susy-span -/// -/// @param {number | list} $span - -/// Number or list of grid columns to span -/// @param {list} $columns - -/// List of columns available -/// @param {number} $gutters - -/// Width of a gutter in column-comparable units -/// @param {0 | 1 | -1} $spread - -/// Number of gutters spanned, -/// relative to `span` count -/// @param {0 | 1 | -1} $container-spread [$spread] - -/// Number of gutters spanned, -/// relative to `columns` count -/// @param {integer} $location [1] - -/// Optional position of sub-span among full set of columns -/// -/// @return {length} - -/// Relative or static length of a span on the grid -@function su-span( - $span, - $columns, - $gutters, - $spread, - $container-spread: $spread, - $location: 1 -) { - $span: su-valid-span($span); - $columns: su-valid-columns($columns); - $gutters: su-valid-gutters($gutters); - $spread: su-valid-spread($spread); - - @if (type-of($span) == 'number') { - @if (not unitless($span)) { - @return $span; - } - - $location: su-valid-location($span, $location, $columns); - $span: su-slice($span, $columns, $location, $validate: false); - } - - @if _su-needs-calc-output($span, $columns, $gutters, $spread, not 'validate') { - @return _su-calc-span($span, $columns, $gutters, $spread, $container-spread, not 'validate'); - } - - $span-width: _su-sum($span, $gutters, $spread, $validate: false); - - @if unitless($span-width) { - $container-spread: su-valid-spread($container-spread); - $container: _su-sum($columns, $gutters, $container-spread, $validate: false); - @return percentage($span-width / $container); - } - - @return $span-width; -} - - - -// Su Gutter -// --------- -/// Calculates and returns a CSS-ready gutter width, -/// based on normalized grid data – -/// a low-level version of `susy-gutter`, -/// with all of the logic and none of the syntax sugar. -/// -/// - Grids defined with unitless numbers will return `%` values. -/// - Grids defined with comparable units -/// will return a value in the units provided. -/// - Grids defined with a mix of units, -/// or a combination of untiless numbers and unit-lengths, -/// will return a `calc()` string. -/// -/// @group su-math -/// @see susy-gutter -/// -/// @param {list} $columns - -/// List of columns in the grid -/// @param {number} $gutters - -/// Width of a gutter in column-comparable units -/// @param {0 | 1 | -1} $container-spread - -/// Number of gutters spanned, -/// relative to `columns` count -/// -/// @return {length} - -/// Relative or static length of one gutter in a grid -@function su-gutter( - $columns, - $gutters, - $container-spread -) { - @if (type-of($gutters) == 'number') { - @if ($gutters == 0) or (not unitless($gutters)) { - @return $gutters; - } - } - - @if _su-needs-calc-output($gutters, $columns, $gutters, -1, not 'validate') { - @return _su-calc-span($gutters, $columns, $gutters, -1, $container-spread, not 'validate'); - } - - $container: _su-sum($columns, $gutters, $container-spread); - @return percentage($gutters / $container); -} - - - -// Su Slice -// -------- -/// Returns a list of columns -/// based on a given span/location slice of the grid – -/// a low-level version of `susy-slice`, -/// with all of the logic and none of the syntax sugar. -/// -/// @group su-math -/// @see susy-slice -/// -/// @param {number} $span - -/// Number of grid columns to span -/// @param {list} $columns - -/// List of columns in the grid -/// @param {number} $location [1] - -/// Starting index of a span in the list of columns -/// @param {bool} $validate [true] - -/// Check that arguments are valid before proceeding -/// -/// @return {list} - -/// Subset list of grid columns, based on span and location -@function su-slice( - $span, - $columns, - $location: 1, - $validate: true -) { - @if $validate { - $columns: su-valid-columns($columns); - $location: su-valid-location($span, $location, $columns); - } - - $floor: floor($span); - $sub-columns: (); - - @for $i from $location to ($location + $floor) { - $sub-columns: append($sub-columns, nth($columns, $i)); - } - - @if $floor != $span { - $remainder: $span - $floor; - $column: $location + $floor; - $sub-columns: append($sub-columns, nth($columns, $column) * $remainder); - } - - @return $sub-columns; -} - - - -// Su Sum -// ------ -/// Get the total sum of column-units in a layout. -/// -/// @group su-math -/// @access private -/// -/// @param {list} $columns - -/// List of columns in the grid -/// @param {number} $gutters - -/// Width of a gutter in column-comparable units -/// @param {0 | 1 | -1} $spread - -/// Number of gutters spanned, -/// relative to `columns` count -/// @param {bool} $validate [true] - -/// Check that arguments are valid before proceeding -/// -/// @return {number} - -/// Total sum of column-units in a grid -@function _su-sum( - $columns, - $gutters, - $spread, - $validate: true -) { - @if $validate { - $columns: su-valid-span($columns); - $gutters: su-valid-gutters($gutters); - $spread: su-valid-spread($spread); - } - - // Calculate column-sum - $column-sum: 0; - @each $column in $columns { - $column-sum: $column-sum + $column; - } - - $gutter-sum: (ceil(length($columns)) + $spread) * $gutters; - $total: if(($gutter-sum > 0), $column-sum + $gutter-sum, $column-sum); - - @return $total; -} - - - -// Su Calc -// ------- -/// Return a usable span width as a `calc()` function, -/// in order to create mixed-unit grids. -/// -/// @group su-math -/// @access private -/// -/// @param {number | list} $span - -/// Pre-sliced list of grid columns to span -/// @param {list} $columns - -/// List of columns available -/// @param {number} $gutters - -/// Width of a gutter in column-comparable units -/// @param {0 | 1 | -1} $spread - -/// Number of gutters spanned, -/// relative to `span` count -/// @param {0 | 1 | -1} $container-spread [$spread] - -/// Number of gutters spanned, -/// relative to `columns` count -/// @param {bool} $validate [true] - -/// Check that arguments are valid before proceeding -/// -/// @return {length} - -/// Relative or static length of a span on the grid -@function _su-calc-span( - $span, - $columns, - $gutters, - $spread, - $container-spread: $spread, - $validate: true -) { - @if $validate { - $span: su-valid-span($span); - $columns: su-valid-columns($columns); - $gutters: su-valid-gutters($gutters); - $spread: su-valid-spread($spread); - $container-spread: su-valid-spread($container-spread); - } - - // Span and context - $span: _su-calc-sum($span, $gutters, $spread, not 'validate'); - $context: _su-calc-sum($columns, $gutters, $container-spread, not 'validate'); - - // Fixed and fluid - $fixed-span: map-get($span, 'fixed'); - $fluid-span: map-get($span, 'fluid'); - $fixed-context: map-get($context, 'fixed'); - $fluid-context: map-get($context, 'fluid'); - - $calc: '#{$fixed-span}'; - $fluid-calc: '(100% - #{$fixed-context})'; - - // Fluid-values - @if (not $fluid-span) { - $fluid-calc: null; - } @else if ($fluid-span != $fluid-context) { - $fluid-span: '* #{$fluid-span}'; - $fluid-context: if($fluid-context, '/ #{$fluid-context}', ''); - $fluid-calc: '(#{$fluid-calc $fluid-context $fluid-span})'; - } - - @if $fluid-calc { - $calc: if(($calc != ''), '#{$calc} + ', ''); - $calc: '#{$calc + $fluid-calc}'; - } - - @return calc(#{unquote($calc)}); -} - - - -// Su Calc-Sum -// ----------- -/// Get the total sum of fixed and fluid column-units -/// for creating a mixed-unit layout with `calc()` values. -/// -/// @group su-math -/// @access private -/// -/// @param {list} $columns - -/// List of columns available -/// @param {number} $gutters - -/// Width of a gutter in column-comparable units -/// @param {0 | 1 | -1} $spread - -/// Number of gutters spanned, -/// relative to `span` count -/// @param {bool} $validate [true] - -/// Check that arguments are valid before proceeding -/// -/// @return {map} - -/// Map with `fixed` and `fluid` keys -/// containing the proper math as strings -@function _su-calc-sum( - $columns, - $gutters, - $spread, - $validate: true -) { - @if $validate { - $columns: su-valid-span($columns); - $gutters: su-valid-gutters($gutters); - $spread: su-valid-spread($spread); - } - - $fluid: 0; - $fixed: (); - $calc: null; - - // Gutters - $gutters: $gutters * (length($columns) + $spread); - - // Columns - @each $col in append($columns, $gutters) { - @if unitless($col) { - $fluid: $fluid + $col; - } @else { - $fixed: _su-map-add-units($fixed, $col); - } - } - - // Compile Fixed Units - @each $unit, $total in $fixed { - @if ($total != (0 * $total)) { - $calc: if($calc, '#{$calc} + #{$total}', '#{$total}'); - } - } - - // Calc null or string - @if $calc { - $calc: if(str-index($calc, '+'), '(#{$calc})', '#{$calc}'); - } - - // Fluid 0 => null - $fluid: if(($fluid == 0), null, $fluid); - - - // Return map - $return: ( - 'fixed': $calc, - 'fluid': $fluid, - ); - - @return $return; -} - - - -// Needs Calc -// ---------- -/// Check if `calc()` will be needed in defining a span, -/// if the necessary units in a grid are not comparable. -/// -/// @group su-math -/// @access private -/// -/// @param {list} $span - -/// Slice of columns to span -/// @param {list} $columns - -/// List of available columns in the grid -/// @param {number} $gutters - -/// Width of a gutter -/// @param {0 | 1 | -1} $spread - -/// Number of gutters spanned, -/// relative to `span` count -/// @param {bool} $validate [true] - -/// Check that arguments are valid before proceeding -/// -/// @return {bool} - -/// `True` when units do not match, and `calc()` will be required -@function _su-needs-calc-output( - $span, - $columns, - $gutters, - $spread, - $validate: true -) { - @if $validate { - $span: su-valid-span($span); - $columns: su-valid-columns($columns); - $gutters: su-valid-gutters($gutters); - } - - $has-gutter: if((length($span) > 1) or ($spread >= 0), true, false); - $check: if($has-gutter, append($span, $gutters), $span); - $safe-span: _su-is-comparable($check...); - - @if ($safe-span == 'static') { - @return false; - } @else if (not $safe-span) { - @return true; - } - - $safe-fluid: _su-is-comparable($gutters, $columns...); - - @return not $safe-fluid; -} diff --git a/_sass/minimal-mistakes/vendor/susy/susy/_su-validate.scss b/_sass/minimal-mistakes/vendor/susy/susy/_su-validate.scss deleted file mode 100644 index 5befad30f..000000000 --- a/_sass/minimal-mistakes/vendor/susy/susy/_su-validate.scss +++ /dev/null @@ -1,213 +0,0 @@ -/// Validation -/// ========== -/// Each argument to Su has a single canonical syntax. -/// These validation functions check to ensure -/// that each argument is valid, -/// in order to provide useful errors -/// before attempting to calculate the results/ -/// -/// @group x-validation -/// -/// @see su-valid-columns -/// @see su-valid-gutters -/// @see su-valid-spread -/// @see su-valid-location - - - -// Valid Span -// ---------- -/// Check that the `span` argument -/// is a number, length, or column-list -/// -/// @group x-validation -/// -/// @param {number | list} $span - -/// Number of columns, or length of span -/// -/// @return {number | list} - -/// Validated `$span` number, length, or columns list -/// -/// @throw -/// when span value is not a number, or valid column list -@function su-valid-span( - $span -) { - $type: type-of($span); - @if ($type == 'number') { - @return $span; - } @else if ($type == 'list') and su-valid-columns($span, 'silent-failure') { - @return $span; - } - - $actual: '[#{type-of($span)}] `#{inspect($span)}`'; - @return _susy-error( - '#{$actual} is not a valid number, length, or column-list for $span.', - 'su-valid-span'); -} - - - -// Valid Columns -// ------------- -/// Check that the `columns` argument is a valid -/// list of column-lengths -/// -/// @group x-validation -/// -/// @param {list} $columns - -/// List of column-lengths -/// @param {bool} $silent-failure [true] - -/// Set false to return null on failure -/// -/// @return {list} - -/// Validated `$columns` list -/// -/// @throw -/// when column value is not a valid list of numbers -@function su-valid-columns( - $columns, - $silent-failure: false -) { - @if (type-of($columns) == 'list') { - $fail: false; - - @each $col in $columns { - @if (type-of($col) != 'number') { - $fail: true; - } - } - - @if not $fail { - @return $columns; - } - } - - // Silent Failure - @if $silent-failure { - @return null; - } - - // Error Message - $actual: '[#{type-of($columns)}] `#{inspect($columns)}`'; - - @return _susy-error( - '#{$actual} is not a valid list of numbers for $columns.', - 'su-valid-columns'); -} - - - -// Valid Gutters -// ------------- -/// Check that the `gutters` argument is a valid number -/// -/// @group x-validation -/// -/// @param {number} $gutters - -/// Width of a gutter -/// -/// @return {number} - -/// Validated `$gutters` number -/// -/// @throw -/// when gutter value is not a number -@function su-valid-gutters( - $gutters -) { - $type: type-of($gutters); - - @if ($type == 'number') { - @return $gutters; - } - - $actual: '[#{$type}] `#{inspect($gutters)}`'; - @return _susy-error( - '#{$actual} is not a number or length for $gutters.', - 'su-valid-gutters'); -} - - - -// Valid Spread -// ------------ -/// Check that the `spread` argument is a valid -/// intiger between `-1` and `1` -/// -/// @group x-validation -/// -/// @param {0 | 1 | -1} $spread - -/// Number of gutters to include in a span, -/// relative to the number columns -/// -/// @return {0 | 1 | -1} - -/// Validated `$spread` number -/// -/// @throw -/// when spread value is not a valid spread -@function su-valid-spread( - $spread -) { - @if index(0 1 -1, $spread) { - @return $spread; - } - - $actual: '[#{type-of($spread)}] `#{inspect($spread)}`'; - @return _susy-error( - '#{$actual} is not a normalized [0 | 1 | -1] value for `$spread`.', - 'su-valid-spread'); -} - - - -// Valid Location -// -------------- -/// Check that the `location` argument is a valid number, -/// within the scope of available columns -/// -/// @group x-validation -/// -/// @param {number} $span - -/// Number of grid-columns to be spanned -/// @param {integer | string} $location - -/// Starting (1-indexed) column-position of that span -/// @param {list} $columns - -/// List of available columns in the grid -/// -/// @return {integer} - -/// Validated `$location` intiger -/// -/// @throw -/// when location value is not a valid index, -/// given the context and span. -@function su-valid-location( - $span, - $location, - $columns -) { - $count: length($columns); - - @if $location { - @if (type-of($location) != 'number') or (not unitless($location)) { - $actual: '[#{type-of($location)}] `#{$location}`'; - @return _susy-error( - '#{$actual} is not a unitless number for $location.', - 'su-valid-location'); - } @else if (round($location) != $location) { - @return _susy-error( - 'Location (`#{$location}`) must be a 1-indexed intiger position.', - 'su-valid-location'); - } @else if ($location > $count) or ($location < 1) { - @return _susy-error( - 'Position `#{$location}` does not exist in grid `#{$columns}`.', - 'su-valid-location'); - } @else if ($location + $span - 1 > $count) { - $details: 'grid `#{$columns}` for span `#{$span}` at `#{$location}`'; - @return _susy-error( - 'There are not enough columns in #{$details}.', - 'su-valid-location'); - } - } - - @return $location; -} diff --git a/_sass/minimal-mistakes/vendor/susy/susy/_syntax-helpers.scss b/_sass/minimal-mistakes/vendor/susy/susy/_syntax-helpers.scss deleted file mode 100644 index f6043eac7..000000000 --- a/_sass/minimal-mistakes/vendor/susy/susy/_syntax-helpers.scss +++ /dev/null @@ -1,191 +0,0 @@ -/// Syntax Utilities for Extending Susy -/// =================================== -/// There are many steps involved -/// when translating between the Susy syntax layer, -/// and the Su core math. -/// That entire process can be condensed with these two functions. -/// For anyone that wants to access the full power of Susy, -/// and build their own plugins, functions, or mixins – -/// this is the primary API for compiling user input, -/// and accessing the core math. -/// -/// This is the same technique we use internally, -/// to keep our API layer simple and light-weight. -/// Every function accepts two arguments, -/// a "shorthand" description of the span or context, -/// and an optional settings-map to override global defaults. -/// -/// - Use `susy-compile()` to parse, merge, and normalize -/// all the user settings into a single map. -/// - Then use `su-call()` to call one of the core math functions, -/// with whatever data is needed for that function. -/// -/// @group plugin-utils -/// @see susy-compile -/// @see su-call -/// -/// @example scss - Susy API `gutter` function -/// @function susy-gutter( -/// $context: susy-get('columns'), -/// $config: () -/// ) { -/// // compile and normalize all user arguments and global settings -/// $context: susy-compile($context, $config, 'context-only'); -/// // call `su-gutter` with the appropriate data -/// @return su-call('su-gutter', $context); -/// } -/// -/// @example scss - Sample `span` mixin for floated grids -/// @mixin span( -/// $span, -/// $config: () -/// ) { -/// $context: susy-compile($span, $config); -/// width: su-call('su-span', $context); -/// -/// @if index($span, 'last') { -/// float: right; -/// } @else { -/// float: left; -/// margin-right: su-call('su-gutter', $context); -/// } -/// } - - - -// Compile -// ------- -/// Susy's syntax layer has various moving parts, -/// with syntax-parsing for the grid/span shorthand, -/// and normalization for each of the resulting values. -/// The compile function rolls this all together -/// in a single call – -/// for quick access from our internal API functions, -/// or any additional functions and mixins you add to your project. -/// Pass user input and configuration maps to the compiler, -/// and it will hand back a map of values ready for Su. -/// Combine this with the `su-call` function -/// to quickly parse, normalize, and process grid calculations. -/// -/// @group plugin-utils -/// @see su-call -/// -/// @param {list | map} $shorthand - -/// Shorthand expression to define the width of the span, -/// optionally containing: -/// - a count, length, or column-list span; -/// - `at $n`, `first`, or `last` location on asymmetrical grids; -/// - `narrow`, `wide`, or `wider` for optionally spreading -/// across adjacent gutters; -/// - `of $n ` for available grid columns -/// and spread of the container -/// (span counts like `of 6` are only valid -/// in the context of symmetrical grids); -/// - and `set-gutters $n` to override global gutter settings -/// @param {map} $config [null] - -/// Optional map of Susy grid configuration settings -/// @param {bool} $context-only [false] - -/// Allow the parser to ignore span and span-spread values, -/// only parsing context and container-spread -/// -/// @return {map} - -/// Parsed and normalized map of settings, -/// based on global and local configuration, -/// alongwith shorthad adjustments. -/// -/// @example scss - -/// $user-input: 3 wide of susy-repeat(6, 120px) set-gutters 10px; -/// $grid-data: susy-compile($user-input, $susy); -/// -/// @each $key, $value in $grid-data { -/// /* #{$key}: #{$value}, */ -/// } -@function susy-compile( - $short, - $config: null, - $context-only: false -) { - // Get and normalize config - $config: if($config, susy-settings($config), susy-settings()); - $normal-config: susy-normalize($config); - - // Parse and normalize shorthand - @if (type-of($short) != 'map') and (length($short) > 0) { - $short: susy-parse($short, $context-only); - } - - $normal-short: susy-normalize($short, $normal-config); - - // Merge and return - @return map-merge($normal-config, $normal-short); -} - - - -// Call -// ---- -/// The Susy parsing and normalization process -/// results in a map of configuration settings, -/// much like the global `$susy` settings map. -/// In order to pass that information along to Su math functions, -/// the proper values have to be picked out, -/// and converted to arguments. -/// -/// The `su-call` function streamlines that process, -/// weeding out the unnecessary data, -/// and passing the rest along to Su in the proper format. -/// Combine this with `susy-compile` to quickly parse, -/// normalize, and process grid calculations. -/// -/// @group plugin-utils -/// -/// @require su-span -/// @require su-gutter -/// @require su-slice -/// @see susy-compile -/// -/// @param {'su-span' | 'su-gutter' | 'su-slice'} $name - -/// Name of the Su math function to call. -/// @param {map} $config - -/// Parsed and normalized map of Susy configuration settings -/// to use for math-function arguments. -/// -/// @return {*} - -/// Results of the function being called. -/// -/// @example scss - -/// $user-input: 3 wide of susy-repeat(6, 120px) set-gutters 10px; -/// $grid-data: susy-compile($user-input, $susy); -/// -/// .su-span { -/// width: su-call('su-span', $grid-data); -/// } -@function su-call( - $name, - $config -) { - $grid-function-args: ( - 'su-span': ('span', 'columns', 'gutters', 'spread', 'container-spread', 'location'), - 'su-gutter': ('columns', 'gutters', 'container-spread'), - 'su-slice': ('span', 'columns', 'location'), - ); - - $args: map-get($grid-function-args, $name); - - @if not $args { - $options: 'Try one of these: #{map-keys($grid-function-args)}'; - @return _susy-error( - '#{$name} is not a public Su function. #{$options}', - 'su-call'); - } - - $call: if(function-exists('get-function'), get-function($name), $name); - $output: (); - - @each $arg in $args { - $value: map-get($config, $arg); - $output: if($value, map-merge($output, ($arg: $value)), $output); - } - - @return call($call, $output...); -} diff --git a/_sass/minimal-mistakes/vendor/susy/susy/_unprefix.scss b/_sass/minimal-mistakes/vendor/susy/susy/_unprefix.scss deleted file mode 100644 index 2cfd1b81a..000000000 --- a/_sass/minimal-mistakes/vendor/susy/susy/_unprefix.scss +++ /dev/null @@ -1,56 +0,0 @@ -// Unprefix Susy -// ============= - - -// Span -// ---- -/// Un-prefixed alias for `susy-span` -/// (available by default) -/// -/// @group api -/// @alias susy-span -/// -/// @param {list} $span -/// @param {map} $config [()] -@function span( - $span, - $config: () -) { - @return susy-span($span, $config); -} - - -// Gutter -// ------ -/// Un-prefixed alias for `susy-gutter` -/// (available by default) -/// -/// @group api -/// @alias susy-gutter -/// -/// @param {integer | list} $context [null] - -/// @param {map} $config [()] -@function gutter( - $context: susy-get('columns'), - $config: () -) { - @return susy-gutter($context, $config); -} - - -// Slice -// ----- -/// Un-prefixed alias for `susy-slice` -/// (available by default) -/// -/// @group api -/// @alias susy-slice -/// -/// @param {list} $span -/// @param {map} $config [()] -@function slice( - $span, - $config: () -) { - @return susy-slice($span, $config); -} diff --git a/_sass/minimal-mistakes/vendor/susy/susy/_utilities.scss b/_sass/minimal-mistakes/vendor/susy/susy/_utilities.scss deleted file mode 100644 index 3c62de2d5..000000000 --- a/_sass/minimal-mistakes/vendor/susy/susy/_utilities.scss +++ /dev/null @@ -1,167 +0,0 @@ -// Sass Utilities -// ============== -// - Susy Error Output Override [variable] -// - Susy Error [function] - - - -// Susy Error Output Override -// -------------------------- -/// Turn off error output for testing -/// @group x-utility -/// @access private -$_susy-error-output-override: false !default; - - - -// Susy Error -// ---------- -/// Optionally return error messages without failing, -/// as a way to test error cases -/// -/// @group x-utility -/// @access private -/// -/// @param {string} $message - -/// A useful error message, explaining the problem -/// @param {string} $source - -/// The original source of the error for debugging -/// @param {bool} $override [$_susy-error-output-override] - -/// Optionally return the error rather than failing -/// @return {string} - -/// Combined error with source and message -/// @throws When `$override == true` -@function _susy-error( - $message, - $source, - $override: $_susy-error-output-override -) { - @if $override { - @return 'ERROR [#{$source}] #{$message}'; - } - - @error '[#{$source}] #{$message}'; -} - - -// Su Is Comparable -// ---------------- -/// Check that the units in a grid are comparable -/// -/// @group x-validation -/// @access private -/// -/// @param {numbers} $lengths… - -/// Arglist of all the number values to compare -/// (columns, gutters, span, etc) -/// -/// @return {'fluid' | 'static' | false} - -/// The type of span (fluid or static) when units match, -/// or `false` for mismatched units -@function _su-is-comparable( - $lengths... -) { - $first: nth($lengths, 1); - - @if (length($lengths) == 1) { - @return if(unitless($first), 'fluid', 'static'); - } - - @for $i from 2 through length($lengths) { - $comp: nth($lengths, $i); - - $fail: not comparable($first, $comp); - $fail: $fail or (unitless($first) and not unitless($comp)); - $fail: $fail or (unitless($comp) and not unitless($first)); - - @if $fail { - @return false; - } - } - - @return if(unitless($first), 'fluid', 'static'); -} - - -// Su Map Add Units -// ---------------- -/// The calc features use a map of units and values -/// to compile the proper algorythm. -/// This function adds a new value to any comparable existing unit/value, -/// or adds a new unit/value pair to the map -/// -/// @group x-utility -/// @access private -/// -/// @param {map} $map - -/// A map of unit/value pairs, e.g. ('px': 120px) -/// @param {length} $value - -/// A new length to be added to the map -/// @return {map} - -/// The updated map, with new value added -/// -/// @example scss - -/// $map: (0px: 120px); -/// $map: _su-map-add-units($map, 1in); // add a comparable unit -/// $map: _su-map-add-units($map, 3vw); // add a new unit -/// -/// @each $units, $value in $map { -/// /* #{$units}: #{$value} */ -/// } -@function _su-map-add-units( - $map, - $value -) { - $unit: $value * 0; - $has: map-get($map, $unit) or 0; - - @if ($has == 0) { - @each $try, $could in $map { - $match: comparable($try, $value); - $unit: if($match, $try, $unit); - $has: if($match, $could, $has); - } - } - - @return map-merge($map, ($unit: $has + $value)); -} - - -// Susy Flatten -// ------------ -/// Flatten a multidimensional list -/// -/// @group x-utility -/// @access private -/// -/// @param {list} $list - -/// The list to be flattened -/// @return {list} - -/// The flattened list -/// -/// @example scss - -/// $list: 120px (30em 30em) 120px; -/// /* #{_susy-flatten($list)} */ -@function _susy-flatten( - $list -) { - $flat: (); - - // Don't iterate over maps - @if (type-of($list) == 'map') { - @return $list; - } - - // Iterate over lists (or single items) - @each $item in $list { - @if (type-of($item) == 'list') { - $item: _susy-flatten($item); - $flat: join($flat, $item); - } @else { - $flat: append($flat, $item); - } - } - - // Return flattened list - @return $flat; -} diff --git a/_theme b/_theme new file mode 160000 index 000000000..13df935df --- /dev/null +++ b/_theme @@ -0,0 +1 @@ +Subproject commit 13df935df54cea857d5a776a0e6064b318ce4f65 diff --git a/assets/css/main.scss b/assets/css/main.scss index 28dd6be0f..4c0e949ac 100644 --- a/assets/css/main.scss +++ b/assets/css/main.scss @@ -24,8 +24,9 @@ } .console-img { - margin-top: auto; - margin-bottom: auto; + display: flex; + justify-content: center; + align-items: center; } .r1 { grid-row: 1; } diff --git a/images/modmii/hackmii-wizard-1.png b/images/modmii/hackmii-wizard-1.png new file mode 100644 index 000000000..ac48f7d44 Binary files /dev/null and b/images/modmii/hackmii-wizard-1.png differ diff --git a/images/modmii/hackmii-wizard-2.png b/images/modmii/hackmii-wizard-2.png new file mode 100644 index 000000000..f625cf9f7 Binary files /dev/null and b/images/modmii/hackmii-wizard-2.png differ diff --git a/images/modmii/hackmii-wizard-3.png b/images/modmii/hackmii-wizard-3.png new file mode 100644 index 000000000..90a84d1bd Binary files /dev/null and b/images/modmii/hackmii-wizard-3.png differ diff --git a/images/modmii/hackmii-wizard-4.png b/images/modmii/hackmii-wizard-4.png new file mode 100644 index 000000000..fd0e909d4 Binary files /dev/null and b/images/modmii/hackmii-wizard-4.png differ diff --git a/images/modmii/hackmii-wizard-5.png b/images/modmii/hackmii-wizard-5.png new file mode 100644 index 000000000..7d97a0114 Binary files /dev/null and b/images/modmii/hackmii-wizard-5.png differ diff --git a/images/modmii/modmii-download.png b/images/modmii/modmii-download.png new file mode 100644 index 000000000..7c8704b80 Binary files /dev/null and b/images/modmii/modmii-download.png differ diff --git a/images/modmii/modmii-install.png b/images/modmii/modmii-install.png new file mode 100644 index 000000000..cb3f7540b Binary files /dev/null and b/images/modmii/modmii-install.png differ diff --git a/images/modmii/modmii-wizard-1.png b/images/modmii/modmii-wizard-1.png new file mode 100644 index 000000000..25c37e90d Binary files /dev/null and b/images/modmii/modmii-wizard-1.png differ diff --git a/images/modmii/modmii-wizard-10.png b/images/modmii/modmii-wizard-10.png new file mode 100644 index 000000000..48b229a7f Binary files /dev/null and b/images/modmii/modmii-wizard-10.png differ diff --git a/images/modmii/modmii-wizard-11.png b/images/modmii/modmii-wizard-11.png new file mode 100644 index 000000000..8bd7c50a5 Binary files /dev/null and b/images/modmii/modmii-wizard-11.png differ diff --git a/images/modmii/modmii-wizard-12.png b/images/modmii/modmii-wizard-12.png new file mode 100644 index 000000000..122c33b9c Binary files /dev/null and b/images/modmii/modmii-wizard-12.png differ diff --git a/images/modmii/modmii-wizard-13.png b/images/modmii/modmii-wizard-13.png new file mode 100644 index 000000000..0af7ae91b Binary files /dev/null and b/images/modmii/modmii-wizard-13.png differ diff --git a/images/modmii/modmii-wizard-2.png b/images/modmii/modmii-wizard-2.png new file mode 100644 index 000000000..c3d92c595 Binary files /dev/null and b/images/modmii/modmii-wizard-2.png differ diff --git a/images/modmii/modmii-wizard-3.png b/images/modmii/modmii-wizard-3.png new file mode 100644 index 000000000..0c81e841c Binary files /dev/null and b/images/modmii/modmii-wizard-3.png differ diff --git a/images/modmii/modmii-wizard-4.png b/images/modmii/modmii-wizard-4.png new file mode 100644 index 000000000..528073f1c Binary files /dev/null and b/images/modmii/modmii-wizard-4.png differ diff --git a/images/modmii/modmii-wizard-5.png b/images/modmii/modmii-wizard-5.png new file mode 100644 index 000000000..1ae49719a Binary files /dev/null and b/images/modmii/modmii-wizard-5.png differ diff --git a/images/modmii/modmii-wizard-6.png b/images/modmii/modmii-wizard-6.png new file mode 100644 index 000000000..73046716c Binary files /dev/null and b/images/modmii/modmii-wizard-6.png differ diff --git a/images/modmii/modmii-wizard-7.png b/images/modmii/modmii-wizard-7.png new file mode 100644 index 000000000..791d6bac2 Binary files /dev/null and b/images/modmii/modmii-wizard-7.png differ diff --git a/images/modmii/modmii-wizard-8.png b/images/modmii/modmii-wizard-8.png new file mode 100644 index 000000000..267ce1025 Binary files /dev/null and b/images/modmii/modmii-wizard-8.png differ diff --git a/images/modmii/modmii-wizard-9.png b/images/modmii/modmii-wizard-9.png new file mode 100644 index 000000000..6abff0b05 Binary files /dev/null and b/images/modmii/modmii-wizard-9.png differ diff --git a/images/modmii/syscheck-wizard-1.png b/images/modmii/syscheck-wizard-1.png new file mode 100644 index 000000000..29d814e6a Binary files /dev/null and b/images/modmii/syscheck-wizard-1.png differ diff --git a/images/modmii/syscheck-wizard-2.png b/images/modmii/syscheck-wizard-2.png new file mode 100644 index 000000000..364251011 Binary files /dev/null and b/images/modmii/syscheck-wizard-2.png differ diff --git a/images/modmii/syscheck-wizard-3.png b/images/modmii/syscheck-wizard-3.png new file mode 100644 index 000000000..28ffed308 Binary files /dev/null and b/images/modmii/syscheck-wizard-3.png differ diff --git a/images/riiconnect24/dns-update/eula_change_dns_notification.png b/images/riiconnect24/dns-update/eula_change_dns_notification.png deleted file mode 100644 index 05a1df9da..000000000 Binary files a/images/riiconnect24/dns-update/eula_change_dns_notification.png and /dev/null differ diff --git a/images/riiconnect24/dns-update/forecast_change_dns_notification.png b/images/riiconnect24/dns-update/forecast_change_dns_notification.png deleted file mode 100644 index 3b32d3603..000000000 Binary files a/images/riiconnect24/dns-update/forecast_change_dns_notification.png and /dev/null differ diff --git a/images/riiconnect24/dns-update/logo_blue_warning.png b/images/riiconnect24/dns-update/logo_blue_warning.png deleted file mode 100644 index 85933af93..000000000 Binary files a/images/riiconnect24/dns-update/logo_blue_warning.png and /dev/null differ diff --git a/images/riiconnect24/dns-update/news_channel_change_dns_notification.png b/images/riiconnect24/dns-update/news_channel_change_dns_notification.png deleted file mode 100644 index a2d8e5b90..000000000 Binary files a/images/riiconnect24/dns-update/news_channel_change_dns_notification.png and /dev/null differ diff --git a/images/riiconnect24/dolphin/1.jpg b/images/riiconnect24/dolphin/1.jpg deleted file mode 100644 index 5e306ea16..000000000 Binary files a/images/riiconnect24/dolphin/1.jpg and /dev/null differ diff --git a/images/riiconnect24/dolphin/2.jpg b/images/riiconnect24/dolphin/2.jpg deleted file mode 100644 index 720b5ed83..000000000 Binary files a/images/riiconnect24/dolphin/2.jpg and /dev/null differ diff --git a/images/riiconnect24/dolphin/3.jpg b/images/riiconnect24/dolphin/3.jpg deleted file mode 100644 index 2e009c658..000000000 Binary files a/images/riiconnect24/dolphin/3.jpg and /dev/null differ diff --git a/images/riiconnect24/dolphin/4.jpg b/images/riiconnect24/dolphin/4.jpg deleted file mode 100644 index ad4146977..000000000 Binary files a/images/riiconnect24/dolphin/4.jpg and /dev/null differ diff --git a/images/riiconnect24/dolphin/5.jpg b/images/riiconnect24/dolphin/5.jpg deleted file mode 100644 index a4912876a..000000000 Binary files a/images/riiconnect24/dolphin/5.jpg and /dev/null differ diff --git a/images/riiconnect24/dolphin/6.jpg b/images/riiconnect24/dolphin/6.jpg deleted file mode 100644 index 9a74fe6d8..000000000 Binary files a/images/riiconnect24/dolphin/6.jpg and /dev/null differ diff --git a/images/riiconnect24/dolphin/anyglobe-save.png b/images/riiconnect24/dolphin/anyglobe-save.png deleted file mode 100644 index 818a14b87..000000000 Binary files a/images/riiconnect24/dolphin/anyglobe-save.png and /dev/null differ diff --git a/images/riiconnect24/dolphin/anyglobe-warning.png b/images/riiconnect24/dolphin/anyglobe-warning.png deleted file mode 100644 index 6bfcdc7e3..000000000 Binary files a/images/riiconnect24/dolphin/anyglobe-warning.png and /dev/null differ diff --git a/images/riiconnect24/patcher/1.JPG b/images/riiconnect24/patcher/1.JPG deleted file mode 100644 index 2e41170ba..000000000 Binary files a/images/riiconnect24/patcher/1.JPG and /dev/null differ diff --git a/images/riiconnect24/patcher/10.JPG b/images/riiconnect24/patcher/10.JPG deleted file mode 100644 index 2177c5972..000000000 Binary files a/images/riiconnect24/patcher/10.JPG and /dev/null differ diff --git a/images/riiconnect24/patcher/11.PNG b/images/riiconnect24/patcher/11.PNG deleted file mode 100644 index 20cafd20c..000000000 Binary files a/images/riiconnect24/patcher/11.PNG and /dev/null differ diff --git a/images/riiconnect24/patcher/2.JPG b/images/riiconnect24/patcher/2.JPG deleted file mode 100644 index 40de822bc..000000000 Binary files a/images/riiconnect24/patcher/2.JPG and /dev/null differ diff --git a/images/riiconnect24/patcher/3.JPG b/images/riiconnect24/patcher/3.JPG deleted file mode 100644 index c93087375..000000000 Binary files a/images/riiconnect24/patcher/3.JPG and /dev/null differ diff --git a/images/riiconnect24/patcher/4.JPG b/images/riiconnect24/patcher/4.JPG deleted file mode 100644 index 6c70b03cb..000000000 Binary files a/images/riiconnect24/patcher/4.JPG and /dev/null differ diff --git a/images/riiconnect24/patcher/5.JPG b/images/riiconnect24/patcher/5.JPG deleted file mode 100644 index 20d95cc05..000000000 Binary files a/images/riiconnect24/patcher/5.JPG and /dev/null differ diff --git a/images/riiconnect24/patcher/6.JPG b/images/riiconnect24/patcher/6.JPG deleted file mode 100644 index 3de5ee818..000000000 Binary files a/images/riiconnect24/patcher/6.JPG and /dev/null differ diff --git a/images/riiconnect24/patcher/7.JPG b/images/riiconnect24/patcher/7.JPG deleted file mode 100644 index b35e1fc9b..000000000 Binary files a/images/riiconnect24/patcher/7.JPG and /dev/null differ diff --git a/images/riiconnect24/patcher/8.JPG b/images/riiconnect24/patcher/8.JPG deleted file mode 100644 index 41a4072a7..000000000 Binary files a/images/riiconnect24/patcher/8.JPG and /dev/null differ diff --git a/images/riiconnect24/patcher/9.JPG b/images/riiconnect24/patcher/9.JPG deleted file mode 100644 index d7a648882..000000000 Binary files a/images/riiconnect24/patcher/9.JPG and /dev/null differ diff --git a/assets/xml/browserconfig.xml b/images/site-config/browserconfig.xml similarity index 100% rename from assets/xml/browserconfig.xml rename to images/site-config/browserconfig.xml diff --git a/assets/js/manifest.json b/images/site-config/manifest.json similarity index 100% rename from assets/js/manifest.json rename to images/site-config/manifest.json diff --git a/minimal-mistakes-jekyll.gemspec b/minimal-mistakes-jekyll.gemspec deleted file mode 100644 index e985e4980..000000000 --- a/minimal-mistakes-jekyll.gemspec +++ /dev/null @@ -1,27 +0,0 @@ -# coding: utf-8 - -Gem::Specification.new do |spec| - spec.name = "minimal-mistakes-jekyll" - spec.version = "4.24.0" - spec.authors = ["Michael Rose"] - - spec.summary = %q{A flexible two-column Jekyll theme.} - spec.homepage = "https://github.com/mmistakes/minimal-mistakes" - spec.license = "MIT" - - spec.metadata["plugin_type"] = "theme" - - spec.files = `git ls-files -z`.split("\x0").select do |f| - f.match(%r{^(assets|_(data|includes|layouts|sass)/|(LICENSE|README|CHANGELOG)((\.(txt|md|markdown)|$)))}i) - end - - spec.add_runtime_dependency "jekyll", ">= 3.7", "< 5.0" - spec.add_runtime_dependency "jekyll-paginate", "~> 1.1" - spec.add_runtime_dependency "jekyll-sitemap", "~> 1.3" - spec.add_runtime_dependency "jekyll-gist", "~> 1.5" - spec.add_runtime_dependency "jekyll-feed", "~> 0.1" - spec.add_runtime_dependency "jekyll-include-cache", "~> 0.1" - - spec.add_development_dependency "bundler" - spec.add_development_dependency "rake", ">= 12.3.3" -end diff --git a/staticman.yml b/staticman.yml deleted file mode 100644 index 61b959251..000000000 --- a/staticman.yml +++ /dev/null @@ -1,104 +0,0 @@ -# Name of the property. You can have multiple properties with completely -# different config blocks for different sections of your site. -# For example, you can have one property to handle comment submission and -# another one to handle posts. -# To encrypt strings use the following endpoint: -# https://{your Staticman API URL}/v[2|3]/encrypt/{TEXT TO BE ENCRYPTED} - -comments: - # (*) REQUIRED - # - # Names of the fields the form is allowed to submit. If a field that is - # not here is part of the request, an error will be thrown. - allowedFields: ["name", "email", "url", "message"] - - # (*) REQUIRED WHEN USING NOTIFICATIONS - # - # When allowedOrigins is defined, only requests sent from one of the domains - # listed will be accepted. The origin is sent as part as the `options` object - # (e.g.