diff --git a/media/index.html b/media/index.html index bf5aba4..6b878b8 100644 --- a/media/index.html +++ b/media/index.html @@ -38,6 +38,12 @@ screenshot-dolphin-import.png screenshot-dolphin-vwii-install.png screenshot-dolphin-vwii-launch-menu.png + screenshot-eula-help-0.png + screenshot-eula-help-1.png + screenshot-eula-help-2.png + screenshot-eula-help-2-issue.png + screenshot-eula-help-3.png + screenshot-eula-help-4.png screenshot-game.png screenshot-loading.png screenshot-main-menu.png @@ -47,6 +53,12 @@ screenshot-ob-3.png screenshot-ob-4.png screenshot-ob-5.png + screenshot-eula-help-1.png + screenshot-eula-help-2.png + screenshot-eula-help-3.png + screenshot-scr-1.png + screenshot-scr-2.png + screenshot-scr-3.png screenshot-start-menu.png screenshot-system-menu-vwii.png screenshot-system-menu-wii.png diff --git a/media/screenshot-eula-help-0.png b/media/screenshot-eula-help-0.png new file mode 100644 index 0000000..b0f07f2 Binary files /dev/null and b/media/screenshot-eula-help-0.png differ diff --git a/media/screenshot-eula-help-1.png b/media/screenshot-eula-help-1.png new file mode 100644 index 0000000..bb28831 Binary files /dev/null and b/media/screenshot-eula-help-1.png differ diff --git a/media/screenshot-eula-help-2-issue.png b/media/screenshot-eula-help-2-issue.png new file mode 100644 index 0000000..a058240 Binary files /dev/null and b/media/screenshot-eula-help-2-issue.png differ diff --git a/media/screenshot-eula-help-2.png b/media/screenshot-eula-help-2.png new file mode 100644 index 0000000..36e2c02 Binary files /dev/null and b/media/screenshot-eula-help-2.png differ diff --git a/media/screenshot-eula-help-3-issue.png b/media/screenshot-eula-help-3-issue.png new file mode 100644 index 0000000..5f3b9f4 Binary files /dev/null and b/media/screenshot-eula-help-3-issue.png differ diff --git a/media/screenshot-eula-help-3.png b/media/screenshot-eula-help-3.png new file mode 100644 index 0000000..42b1f6d Binary files /dev/null and b/media/screenshot-eula-help-3.png differ diff --git a/media/screenshot-eula-help-4.png b/media/screenshot-eula-help-4.png new file mode 100644 index 0000000..61f10cb Binary files /dev/null and b/media/screenshot-eula-help-4.png differ diff --git a/media/screenshot-region-help-1.png b/media/screenshot-region-help-1.png new file mode 100644 index 0000000..ee8a768 Binary files /dev/null and b/media/screenshot-region-help-1.png differ diff --git a/media/screenshot-region-help-2.png b/media/screenshot-region-help-2.png new file mode 100644 index 0000000..f648635 Binary files /dev/null and b/media/screenshot-region-help-2.png differ diff --git a/media/screenshot-region-help-3.png b/media/screenshot-region-help-3.png new file mode 100644 index 0000000..ce5b718 Binary files /dev/null and b/media/screenshot-region-help-3.png differ diff --git a/media/screenshot-scr-1.png b/media/screenshot-scr-1.png new file mode 100644 index 0000000..be2acaf Binary files /dev/null and b/media/screenshot-scr-1.png differ diff --git a/media/screenshot-scr-2.png b/media/screenshot-scr-2.png new file mode 100644 index 0000000..5eb76ee Binary files /dev/null and b/media/screenshot-scr-2.png differ diff --git a/media/screenshot-scr-3.png b/media/screenshot-scr-3.png new file mode 100644 index 0000000..103ad73 Binary files /dev/null and b/media/screenshot-scr-3.png differ diff --git a/meta/gallery.js b/meta/gallery.js index 25dd223..730d9ee 100644 --- a/meta/gallery.js +++ b/meta/gallery.js @@ -1,60 +1,63 @@ -const gallery = document.querySelector('.gallery'); -const images = gallery.querySelectorAll('img'); -let currentIndex = 0; +const galleries = document.querySelectorAll('.gallery'); -const leftArrow = document.createElement('img'); -leftArrow.src = 'meta/arrow-left.png'; -leftArrow.classList.add('arrow', 'left'); -gallery.appendChild(leftArrow); +galleries.forEach(gallery => { + const images = gallery.querySelectorAll('img'); + let currentIndex = 0; -const rightArrow = document.createElement('img'); -rightArrow.src = 'meta/arrow-right.png'; -rightArrow.classList.add('arrow', 'right'); -gallery.appendChild(rightArrow); - -function showImage(index) { - images.forEach((img, i) => { - img.style.display = (i === index) ? 'block' : 'none'; - }); -} - -function handleArrowClick(isLeftArrow) { - currentIndex = isLeftArrow - ? (currentIndex === 0 ? images.length - 1 : currentIndex - 1) - : (currentIndex === images.length - 1 ? 0 : currentIndex + 1); - - showImage(currentIndex); - - if (isLeftArrow) { - leftArrow.src = 'meta/arrow-left-pressed.png'; - rightArrow.src = 'meta/arrow-right.png'; - setTimeout(() => { - leftArrow.src = 'meta/arrow-left.png'; - }, 200); - } else { - rightArrow.src = 'meta/arrow-right-pressed.png'; - leftArrow.src = 'meta/arrow-left.png'; - setTimeout(() => { - rightArrow.src = 'meta/arrow-right.png'; - }, 200); - } -} - -leftArrow.addEventListener('click', () => handleArrowClick(true)); -rightArrow.addEventListener('click', () => handleArrowClick(false)); - -leftArrow.addEventListener('mouseover', () => { - leftArrow.src = 'meta/arrow-left-hover.png'; -}); -leftArrow.addEventListener('mouseout', () => { + const leftArrow = document.createElement('img'); leftArrow.src = 'meta/arrow-left.png'; -}); + leftArrow.classList.add('arrow', 'left'); + gallery.appendChild(leftArrow); -rightArrow.addEventListener('mouseover', () => { - rightArrow.src = 'meta/arrow-right-hover.png'; -}); -rightArrow.addEventListener('mouseout', () => { + const rightArrow = document.createElement('img'); rightArrow.src = 'meta/arrow-right.png'; -}); + rightArrow.classList.add('arrow', 'right'); + gallery.appendChild(rightArrow); -showImage(currentIndex); \ No newline at end of file + function showImage(index) { + images.forEach((img, i) => { + img.style.display = (i === index) ? 'block' : 'none'; + }); + } + + function handleArrowClick(isLeftArrow) { + currentIndex = isLeftArrow + ? (currentIndex === 0 ? images.length - 1 : currentIndex - 1) + : (currentIndex === images.length - 1 ? 0 : currentIndex + 1); + + showImage(currentIndex); + + if (isLeftArrow) { + leftArrow.src = 'meta/arrow-left-pressed.png'; + rightArrow.src = 'meta/arrow-right.png'; + setTimeout(() => { + leftArrow.src = 'meta/arrow-left.png'; + }, 200); + } else { + rightArrow.src = 'meta/arrow-right-pressed.png'; + leftArrow.src = 'meta/arrow-left.png'; + setTimeout(() => { + rightArrow.src = 'meta/arrow-right.png'; + }, 200); + } + } + + leftArrow.addEventListener('click', () => handleArrowClick(true)); + rightArrow.addEventListener('click', () => handleArrowClick(false)); + + leftArrow.addEventListener('mouseover', () => { + leftArrow.src = 'meta/arrow-left-hover.png'; + }); + leftArrow.addEventListener('mouseout', () => { + leftArrow.src = 'meta/arrow-left.png'; + }); + + rightArrow.addEventListener('mouseover', () => { + rightArrow.src = 'meta/arrow-right-hover.png'; + }); + rightArrow.addEventListener('mouseout', () => { + rightArrow.src = 'meta/arrow-right.png'; + }); + + showImage(currentIndex); +}); \ No newline at end of file diff --git a/meta/index.html b/meta/index.html index d45b6db..02eb72d 100644 --- a/meta/index.html +++ b/meta/index.html @@ -26,6 +26,7 @@ ico-github.png ico-web.png ico-yt.png + issue.js main.css music.js NEW_en.gif diff --git a/meta/issue.js b/meta/issue.js new file mode 100644 index 0000000..921f28b --- /dev/null +++ b/meta/issue.js @@ -0,0 +1,14 @@ +document.querySelectorAll('.issue-button').forEach(button => { + button.addEventListener('click', function() { + const parentDiv = this.parentElement; // Get the parent div with class "issue" + const hiddenElements = parentDiv.querySelectorAll('.issue-detail'); // Select hidden elements within this div + + // Hide the button + this.style.display = 'none'; + + // Show the hidden elements + hiddenElements.forEach(element => { + element.style.display = 'block'; + }); + }); +}); \ No newline at end of file diff --git a/meta/main.css b/meta/main.css index 2c406f8..ad72efd 100644 --- a/meta/main.css +++ b/meta/main.css @@ -26,8 +26,13 @@ img.pfp {width:150px;height:150px;object-fit: cover;margin-right:10px;border-rad p.mem {flex: 1;} img.ico {vertical-align: middle} +div.issue {border-color:red;color:red;width:100%;text-align:center} +div.issue h2 {color:red} +button.issue-button {outline: 2px solid red} +.issue-detail {display:none} + /* Gallery */ -div.gallery {position: relative; overflow: hidden;} +div.gallery {position: relative; overflow: hidden;width:100%} img.slide {width:100%} img.arrow {position: absolute; top: 50%; transform: translateY(-50%); cursor: pointer; width: 60px; height: auto;} img.left {left: 10px; animation: hoverAnimation 0.5s infinite alternate;} diff --git a/support.html b/support.html index 315478c..4dd1c28 100644 --- a/support.html +++ b/support.html @@ -12,6 +12,7 @@ + @@ -23,6 +24,7 @@


(enable autoplay on your browser for the music to continue playing throughout the website)

+

Support



@@ -36,6 +38,13 @@

Check it with this tool, otherwise ask for help in the #support channel on Discord.

Why did the gift button dissappear?

Gifting was available using a WiiConnect24 revival. Unfortunately we were asked to stop sending out gifts via their service.

+

How do I change the region?

+ +

Go to Wii Shop settings and look for the Change Region button.

Title-related

@@ -45,7 +54,7 @@

Install Priiloader and enable the Region Free EVERYTHING option in System Menu Hacks, then launch it again.

What is the old banner WiiMart?

-