RSSMii Wii: Difference between revisions

From GameBrew
(Created page with "{{#seo: |title=Wii Homebrew Apps (Utilities) - GameBrew |title_mode=append |image=rssmiiwii.jpg |image_alt=RSSMii }} {{Infobox Wii Homebrews |title=RSSMii |image=rssmiiwii.jpg...")
 
No edit summary
Line 18: Line 18:
|source=https://github.com/RiiConnect24/rssmii/
|source=https://github.com/RiiConnect24/rssmii/
}}
}}
https://wiibrew.org/wiki/RSSMii
RSSMii allows you to get updates from RSS feeds straight to your Wii. You will get the updates on your Wii Message Board.


==Screenshots==
It reads a "feeds.xml" file on your SD Card root to subscribe you to each feed listed. So you can update it at any time, then launch RSSMii again and it'll update your subscriptions. You can change the interval in which updates are checked inside the program on a per-feed basis.
==Media==
 
<youtube></youtube>
==Features==
*Nearly an unlimited number of subscribable feeds
*Configurable interval for checking feeds for new entries (avoid using 1 minute, as this can lead to empty entries on your Message Board)
*Runs every download tasks over 32000 times, so if you stop getting updates (after a looong time), just rerun RSSMii
 
===Supported Feed Types===
*RDF/RSS (RSS 1.*)
*RSS2
*ATOM
 
==Installation==
Grab the ZIP from the releases page
Extract it to the root of your SD card, so that you have the path "SD://apps/rssmii/boot.dol"
Create a "feeds.xml" on the root of your SD card (see below)
Run the homebrew through the homebrew channel and follow the on-screen instructions
To remove everything, just run the RSSMii Remover. You can also check out the instructions on wii.guide.
 
feeds.xml
 
You can create a feeds.xml with the Feeds.xml Creator.
 
<syntaxhighlight>
<?xml version="1.0" encoding="utf-8"?>
<rss>
    <feed name="RC24 Medium">https://medium.com/feed/riiconnect24</feed>
    <feed name="Nintendo UK">https://www.nintendo.co.uk/news.xml</feed>
</rss>
NOTE: For special characters you need to use a CDATA tag:
 
<feed name="Example-Feed"><![CDATA[http://example.com/rss-feed&someparam=true]]></feed>
 
</syntaxhighlight>
 
==TODO==
*Change server URL through feeds.xml
==Changelog==
'''RSSMii v1.4.1 - Revived Latest'''
*Add a choice of intervals for receiving RSSMii updates. You can set an interval ranging from 5 to 180 minutes (3 hours).
*All updates to the RSS feed should appear now using the If-Modified-Since header date (server-side, doesn't affect the homebrew app). Now you should get those RSS updates that were previously missing!
*Previously, the RSSMii updates would only download 100 times then stop, and you would have to relaunch the RSSMii app to resubscribe. Now, it runs the maximum amount of times possible! (32,767 times).
*Rewrote the remover
*Other minor improvements to the RSSMii mail downloading (server-side, doesn't affect the homebrew app)
 
Thanks to @Brawl345 for making this update possible!
 
In order to create feeds.xml file, please download RSSFeedsCreator.bat (only works on Windows). If you need help, contact us at [email protected]
(RSSFeedsCreator - v1.0.2)
 
'''RSSMii v1.3.1 - Revived'''
*Added URL encoding - RSS feeds with spaces and other characters as the title should now work, which probably was the reason people were not getting RSS updates
*Cleaned up a lot of the code.
 
Big thanks to aovanessian for helping out with the code of RSSMii!
 
In order to create feeds.xml file, please download RSSFeedsCreator.bat (only works on Windows). If you need help, contact us at [email protected]
(RSSFeedsCreator - v1.0.2)
 
'''RSSMii v1.3 - Revived'''
*RSSMii is back after a long time, we at RiiConnect24 have revived it! This version of RSSMii uses our servers to parse the feeds so you can get mail whenever your favorite RSS feeds get an update.
 
==Credits==
*Modified by Brawl345 of WiiDatabase.de and the RiiConnect24 team
*Original written by main()
 
==External links==
* Homepage - https://rc24.xyz/
* Github - https://github.com/RiiConnect24/rssmii/

Revision as of 03:04, 12 July 2022

RSSMii
File:Rssmiiwii.jpg
General
Authormain()
TypeUtilities
Version1.4.1
LicenseMixed
Last Updated2019/05/11
Links
Download
Website
Source

RSSMii allows you to get updates from RSS feeds straight to your Wii. You will get the updates on your Wii Message Board.

It reads a "feeds.xml" file on your SD Card root to subscribe you to each feed listed. So you can update it at any time, then launch RSSMii again and it'll update your subscriptions. You can change the interval in which updates are checked inside the program on a per-feed basis.

Features

  • Nearly an unlimited number of subscribable feeds
  • Configurable interval for checking feeds for new entries (avoid using 1 minute, as this can lead to empty entries on your Message Board)
  • Runs every download tasks over 32000 times, so if you stop getting updates (after a looong time), just rerun RSSMii

Supported Feed Types

  • RDF/RSS (RSS 1.*)
  • RSS2
  • ATOM

Installation

Grab the ZIP from the releases page Extract it to the root of your SD card, so that you have the path "SD://apps/rssmii/boot.dol" Create a "feeds.xml" on the root of your SD card (see below) Run the homebrew through the homebrew channel and follow the on-screen instructions To remove everything, just run the RSSMii Remover. You can also check out the instructions on wii.guide.

feeds.xml

You can create a feeds.xml with the Feeds.xml Creator.

<?xml version="1.0" encoding="utf-8"?>
<rss>
    <feed name="RC24 Medium">https://medium.com/feed/riiconnect24</feed>
    <feed name="Nintendo UK">https://www.nintendo.co.uk/news.xml</feed>
</rss>
NOTE: For special characters you need to use a CDATA tag:

<feed name="Example-Feed"><![CDATA[http://example.com/rss-feed&someparam=true]]></feed>

TODO

  • Change server URL through feeds.xml

Changelog

RSSMii v1.4.1 - Revived Latest

  • Add a choice of intervals for receiving RSSMii updates. You can set an interval ranging from 5 to 180 minutes (3 hours).
  • All updates to the RSS feed should appear now using the If-Modified-Since header date (server-side, doesn't affect the homebrew app). Now you should get those RSS updates that were previously missing!
  • Previously, the RSSMii updates would only download 100 times then stop, and you would have to relaunch the RSSMii app to resubscribe. Now, it runs the maximum amount of times possible! (32,767 times).
  • Rewrote the remover
  • Other minor improvements to the RSSMii mail downloading (server-side, doesn't affect the homebrew app)

Thanks to @Brawl345 for making this update possible!

In order to create feeds.xml file, please download RSSFeedsCreator.bat (only works on Windows). If you need help, contact us at [email protected] (RSSFeedsCreator - v1.0.2)

RSSMii v1.3.1 - Revived

  • Added URL encoding - RSS feeds with spaces and other characters as the title should now work, which probably was the reason people were not getting RSS updates
  • Cleaned up a lot of the code.

Big thanks to aovanessian for helping out with the code of RSSMii!

In order to create feeds.xml file, please download RSSFeedsCreator.bat (only works on Windows). If you need help, contact us at [email protected] (RSSFeedsCreator - v1.0.2)

RSSMii v1.3 - Revived

  • RSSMii is back after a long time, we at RiiConnect24 have revived it! This version of RSSMii uses our servers to parse the feeds so you can get mail whenever your favorite RSS feeds get an update.

Credits

  • Modified by Brawl345 of WiiDatabase.de and the RiiConnect24 team
  • Original written by main()

External links

Advertising: