• v1.2.1 d2601cd83f

    v1.2.1 Stable

    matthias released this 2025-08-04 09:19:38 +00:00 | 0 commits to master since this release

    🐛 Bugfix Release v1.2.1

    Fixed

    • Inline Comment Support: Fixed parsing of RSS feeds file when using inline comments
    • Control Character Error: Resolved "URL can't contain control characters" error caused by comments in same line as URLs
    • RSS File Parsing: Comments after # are now properly stripped from URLs

    What's Changed

    This release fixes a parsing issue where inline comments in rss_feeds.txt caused control character errors. This now works correctly:

    https://mastodon.social/tags/homelab.rss                 #  20 posts/feed (default)
    https://fosstodon.org/tags/homelab.rss?limit=50          #  50 posts/feed
    

    Technical Details

    • Minimal fix using line.split('#', 1)[0].strip() to remove inline comments
    • No other changes to preserve stability
    • Backwards compatible with existing configurations

    For Existing Users

    Simply update your gts_holmirdas.py file and restart:

    # Download updated script
    wget https://git.klein.ruhr/matthias/gts-holmirdas/raw/v1.2.2/gts_holmirdas.py
    
    # Restart container
    docker compose restart gts-holmirdas
    

    Full Changelog: https://git.klein.ruhr/matthias/gts-holmirdas/compare/v1.2.0...v1.2.1

    Downloads