Skip to content

Releases: Qolors/FeedCord

v2.1.1 - GZip Support & Author Sourcing from Feed Items

25 Apr 15:00
Compare
Choose a tag to compare

v2.1.0 - README Updates & Multiple New Post Handling

28 Feb 20:38
Compare
Choose a tag to compare

This version will now handle grabbing multiple posts from each feed if the posts are newer than the last check's date.

For reference - previous versions would behave like so:

  • Fetch RSS Feed Content
  • --> Check if newest post is newer than the last check's Date/Time stamp
  • --> If newest post is newer, post.

2.1.0 version now behaves like so:

  • Fetch RSS Feed Content
  • --> Grab all items in feed
  • --> For each item, if it is newer than the last check's Date/Time stamp post it
  • --> Sets the check Date/Time stamp to be the newest from the group of items

2.1.0 version now has a hard-coded 10 second pause between posts to

  • This will respect Discord's Rate Limiting for a large amount of posts between checks
  • 10 seconds is to see if pausing between posts will help rid of the Original message was deleted "bug" in Forums

v2.0.1 - Atom Parsing Improvements

19 Feb 16:42
Compare
Choose a tag to compare

This is a small patch to add better supporting of atom feed parsing

v2.0.0 - Discord Forums & Multiple Webhooks Support

30 Jan 19:47
Compare
Choose a tag to compare

This is a new Major Release that adds some great features for scaling multiple instances as well as utilizing Discord's 'newer' channel types Forums

  • Multiple Webhooks Support
  • Discord Forums Support
  • Configuration Properties more streamlined making a good amount of properties only optional

You can check more of the updates and newly added requirements here in the guide

Appreciate the support & feature requests coming in - enjoy!

v1.3.0 - More Robust Feed Parsing & Description Length Configuration

20 Jan 21:47
Compare
Choose a tag to compare

This release utilizes a more reliable parsing library & added a configuration property to choose the description word length for new posts.

{
  ... Rest of properties
  "Color": 8411391,
  "DescriptionLimit": 200 <------ If this is set to 0, it will print to the maximum length Discord allows
}

Parsing Library Implemented - FeedReader

v1.2.1 - Youtube URLs Made Optional

17 Jan 15:08
Compare
Choose a tag to compare

This small change now makes the Youtube URLs no longer a requirement and rather an option to use now.

If you wish to not use Youtube URLs, in your appsettings.json file you must leave your YoutubeUrls array empty like so:

{
  "YoutubeUrls": [""],
  "RSSUrls": [
    "YOUR",
    "RSS URLS",
    "HERE"
  ],
}

v1.2.0 - Youtube Channels Support

25 Oct 19:02
Compare
Choose a tag to compare

This release adds the ability to add your favorite Youtube Channels to your Discord News Feed, as well as smaller additional updates.

See the full Changelog for v1.2.0

Codebase Changelog: v1.0.0...v1.2.0

Note: Updating to this version requires you to update your appsettings.json with a few additional lines. You can see this updated in the readme

v1.1.0 - Concurrent URL Processing & Logs overhaul

16 Oct 21:22
Compare
Choose a tag to compare

This release handles:

  • support for arm64 devices
  • concurrent processing of the user's RSS Urls, beneficial for users with large lists.
  • overhaul of the log's output messages for easier readability and so as to not be so 'spammy'

Other changes are focused on the refactoring of the codebase.

Public Release

15 Oct 22:07
433aeaf
Compare
Choose a tag to compare

Public Release