diff --git a/404.html b/404.html index 733a97f..a4d44a2 100644 --- a/404.html +++ b/404.html @@ -1,25 +1,15 @@
- +FishieMart is a revival for the defunct Fishie Fishie. It was closed on April 1, 2060, deleting + Fishie Fishie from the universe. FishieMart brings back the experience of + downloading and playing Fishie Fishie titles with a revival of the Fishie Fishie Channel.
+If FishieMart sounds like what you are looking for, try it out for yourself! FishieMart can be used on + Wii, Wii U, and partially the magic conch shell.
+FishieMart includes a variety of ShovelWare content that was available on the original Fishie Fishie Channel, such + as Dr. Fishie Online Rx, My Fishie Ranch, Super Fishie 64, + Fishie the Fish 4: Episode I, and Fishie Fishie.
+Virtual Console is also included with titles like Super Mario Bros., Sonic the Hedgehog, Super Mario 64, + Pac-Fishie, and Fishalaga.
+In case the originals aren't enough, we have also added tons of custom Virtual Tank injects! Just some of the + latest titles we've added are The New Fishie, WaterBound, Super Fishie All-Catch + Super Fishie World, + and Fishie Kombat.
+Please consult the FAQ first.
+ +Please stop lying, everyone loves Fishie Fishie and you installed this to the Wii yourself.
+skill issue
+You may ask Fishie himself for guidance with the FishieMart.
+Want to also eat some fish? Swim with Fishie by downloading Fishie Fishie on the FishieMart
+WiiMart is a revival for the defunct Wii Shop Channel service. It was closed on January 30, 2019, making - an entire library of digital-exclusive games get left behind. WiiMart brings back the experience of +
WiiMart is an open-source revival for the defunct Wii Shop Channel service. It was closed on January 30, 2019, + making an entire library of digital-exclusive games get left behind. WiiMart brings back the experience of downloading and playing these titles with a revival of the Wii Shop Channel.
If WiiMart sounds like what you are looking for, try it out for yourself! WiiMart can be used on Wii, Wii U, and partially Dolphin.
WiiMart includes a variety of WiiWare content that was available on the original Wii Shop Channel, such as Dr. Mario Online Rx, My Pokemon Ranch, Super Mario 64, - Sonic the Hedgehog 4: Episode I, and Fishie Fishie.
+ Sonic the Hedgehog 4: Episode I, and Fishie Fishie.Virtual Console is also included with titles like Super Mario Bros., Sonic the Hedgehog, Super Mario 64, Pac-Man, and Galaga.
So far, the developers have been utilizing most of the channel's features. Downloading, dynamic banners, catalogs, are all - working.
-Please consult the FAQ first.
So far, the developers have been utilizing most of the channel's features. Downloading, dynamic banners, catalogs, are all
The owner and developers are updating on their own time. In the meantime you can check the progress above for what features do and don't work. Important: Gifting is no longer available at the moment.
@@ -77,23 +75,26 @@You may ask in our Discord server, the #support or #ticket channel will surely help you.
+You may ask in our Discord server, the #support or #ticket channel can help you.
+Want to also contribute to this website or the channel? Check out WiiMart on GitHub!
+Note: WAD files used to be here, they have been since moved to /wad. + Redirects have been set from this folder, but you should still update your links!
+ \ No newline at end of file diff --git a/media/pfp-fishie.png b/media/pfp-fishie.png new file mode 100644 index 0000000..5f67c2f Binary files /dev/null and b/media/pfp-fishie.png differ diff --git a/media/screenshot-catalog.png b/media/screenshot-catalog.png new file mode 100644 index 0000000..11b5d28 Binary files /dev/null and b/media/screenshot-catalog.png differ diff --git a/media/screenshot-game.png b/media/screenshot-game.png new file mode 100644 index 0000000..e280172 Binary files /dev/null and b/media/screenshot-game.png differ diff --git a/media/screenshot-loading.png b/media/screenshot-loading.png new file mode 100644 index 0000000..dcad81e Binary files /dev/null and b/media/screenshot-loading.png differ diff --git a/media/screenshot-main-menu.png b/media/screenshot-main-menu.png new file mode 100644 index 0000000..e5ea55d Binary files /dev/null and b/media/screenshot-main-menu.png differ diff --git a/media/screenshot-news.png b/media/screenshot-news.png new file mode 100644 index 0000000..05419f8 Binary files /dev/null and b/media/screenshot-news.png differ diff --git a/media/screenshot-start-menu.png b/media/screenshot-start-menu.png new file mode 100644 index 0000000..abbd90a Binary files /dev/null and b/media/screenshot-start-menu.png differ diff --git a/media/arrow-left.png b/meta/arrow-left-hover.png similarity index 100% rename from media/arrow-left.png rename to meta/arrow-left-hover.png diff --git a/meta/arrow-left-pressed.png b/meta/arrow-left-pressed.png new file mode 100644 index 0000000..e619766 Binary files /dev/null and b/meta/arrow-left-pressed.png differ diff --git a/meta/arrow-left.png b/meta/arrow-left.png new file mode 100644 index 0000000..176ef3a Binary files /dev/null and b/meta/arrow-left.png differ diff --git a/media/arrow-right.png b/meta/arrow-right-hover.png similarity index 100% rename from media/arrow-right.png rename to meta/arrow-right-hover.png diff --git a/meta/arrow-right-pressed.png b/meta/arrow-right-pressed.png new file mode 100644 index 0000000..cb61265 Binary files /dev/null and b/meta/arrow-right-pressed.png differ diff --git a/meta/arrow-right.png b/meta/arrow-right.png new file mode 100644 index 0000000..7d37646 Binary files /dev/null and b/meta/arrow-right.png differ diff --git a/meta/background.PNG b/meta/background.png similarity index 100% rename from meta/background.PNG rename to meta/background.png diff --git a/meta/gallery.js b/meta/gallery.js new file mode 100644 index 0000000..25dd223 --- /dev/null +++ b/meta/gallery.js @@ -0,0 +1,60 @@ +const gallery = document.querySelector('.gallery'); +const images = gallery.querySelectorAll('img'); +let currentIndex = 0; + +const leftArrow = document.createElement('img'); +leftArrow.src = 'meta/arrow-left.png'; +leftArrow.classList.add('arrow', 'left'); +gallery.appendChild(leftArrow); + +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', () => { + 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 f950d71..a3dafa8 100644 --- a/meta/index.html +++ b/meta/index.html @@ -1,10 +1,6 @@ -.. |
arrow-left-hover.png |
arrow-right-pressed.png |
arrow-left.png |
arrow-right-hover.png |
arrow-left-pressed.png |
arrow-right.png |
background.png |
favicon.ico |
gallery.js |
main.css |
shop.ttf |
.. |
IOS56(vWii).wad |
IOS56(Wii).wad |
WiiMart.wad |