Skip to content

Changelog

Joy Barot edited this page Mar 27, 2026 · 4 revisions

SeriesScape - Changelog

Version history for the SeriesScape application.

Note: ShowTrackr was rebranded to SeriesScape in 2026.


[0.3.0] - 2025-05-25

Added

  • Export and import your watchlist as a backup file (JSON) from the Settings page. You can now back up your data and restore it easily.
  • Improved error messages and validation for settings and data import, including clearer feedback for invalid files or data.
  • More tests for watchlist items, settings, and data import/export to ensure reliability and catch edge cases.
  • Additional validation for pagination size and theme selection in settings to prevent invalid values.
  • Feedback form improvements: better validation, clearer error and confirmation messages, and improved accessibility.
  • Added categories for themes. Light and Dark themes are now grouped separately, and a new "Ember" dark theme has been added for a fresh look.

Changed

  • Upgraded Flask and other dependencies to latest versions for improved security and performance.
  • Enhanced validation for watchlist item fields (year, rating, date formats) to prevent bad data.
  • Improved setup scripts and documentation for environment and database initialization.
  • Improved test coverage and reliability for settings and item routes, including better session/config handling in tests.
  • Refined UI feedback using DaisyUI Toasts for a more modern experience.
  • Improved reliability of add/edit modal closing after successful save/delete.
  • Improved list view column alignment and poster placeholder appearance.
  • Removed some themes that were similar to existing ones to reduce clutter.

Fixed

  • Fixed issues with invalid or missing data during import (skips and logs problematic items).
  • Fixed error handling for malformed JSON and invalid file types during import.
  • Fixed session and configuration handling in tests for more robust test isolation.
  • Fixed minor issues in pagination and theme selection logic.
  • Fixed filter/sort controls not hiding on About/Settings pages.
  • Fixed minor bugs when editing items with null values in certain fields (e.g., year, rating).

[0.2.1] - 2025-05-09

Added

  • Search functionality for TV shows and movies by title.
  • Shortcut key for search input field (Ctrl + K).
  • Feedback form for users to share their thoughts on the application.
  • Feedback collection in an online Google Sheet for easy access and management. You can view the feedback Google Sheet here.

[0.2.0] - 2025-05-02

Added

  • date_watched field to database model and add/edit form.
  • Filtering functionality by Status, Type, Release Year (Checkboxes), and Rating Range via filter dropdown.
  • Sorting functionality by Date Watched, Date Added, Title, Year, and Rating via sort dropdown.
  • Ascending/Descending toggle for sorting options.
  • Nulls-last logic for sorting nullable fields (Year, Rating, Date Watched).
  • Out-of-Band (OOB) HTMX swaps to update filter/sort control UI dynamically.
  • About page (/about) with tabs for About, Changelog, and Feedback sections.
  • Changelog timeline using DaisyUI component.
  • Info icon link in footer pointing to the About page.

Changed

  • Refactored watchlist loading route (/load_watchlist) to handle both HTMX partial requests and full page reloads correctly, fixing errors when refreshing pages with filter/sort parameters in the URL.
  • Refactored some functions for better readability and maintainability.

Fixed

  • Filter "Reset" button functionality restored.
  • Case-insensitive sorting for Titles.
  • Corrected minor styling issues on About page tabs (tabs-lifted).
  • Ensured filter/sort controls are hidden on the About page.

[0.1.1] - 2025-04-25

Added

  • List view now displays grouped Month/Day based primarily on date_watched.
  • Visual star-based rating display (e.g., "8 ⭐").
  • SVG icons for external quick links (IMDb, TMDb, Letterboxd).
  • Poster hover tooltip showing a larger preview.
  • User setting on Settings page to configure pagination size (10-50 items).
  • Direct page number input in pagination controls.
  • Custom 404 and 500 error page templates styled with DaisyUI.
  • JavaScript warning prompt for unsaved changes when closing the add/edit modal.
  • Favicon files (.ico, .png).
  • "Inter" font via Google Fonts.
  • Theme selector added to welcome section for quick access.

Changed

  • Updated project name to "ShowTrackr" and added motto.
  • Updated footer layout using DaisyUI components and added creator/repo links.
  • Refined overall color scheme to use theme-aware DaisyUI base colors instead of fixed colors.
  • Improved list view column alignment (centering).
  • Improved poster placeholder appearance (theme-aware background, "Movie"/"TV" text).
  • Improved UI feedback using DaisyUI Toasts instead of browser alerts.
  • Improved reliability of add/edit modal closing after successful save/delete.
  • Changed default items per page from 20 to 15.

Fixed

  • Resolved AttributeError: 'HTMX' object has no attribute 'on' error by ensuring HTMX is correctly initialized.
  • Corrected database OperationalError related to NULLS LAST syntax in SQLite by switching to func.coalesce for sorting.

[0.1.0] - 2025-04-18

Added

  • Initial project structure (Flask, Blueprints, src/, data/).
  • Core dependencies (Flask, Flask-SQLAlchemy, Flask-Migrate, Flask-HTMX, python-dotenv).
  • Basic WatchlistItem database model.
  • Database initialization and migration setup using Flask-Migrate.
  • Core application setup in src/watchlist/__init__.py.
  • Basic routes for main page (/), add/edit forms, saving, deleting.
  • Templates: base.html, index.html, _watchlist_items.html, _add_edit_item_form.html, settings.html, _form_error.html.
  • Functionality: Add, View (List), Edit, Delete items via HTMX modals.
  • Basic list view layout mimicking user-provided image.
  • Basic pagination controls (Prev/Next).
  • Settings page with Theme switcher (Light, Cupcake, Dark, Dracula).
  • Local SQLite database storage in data/database.db.
  • Configuration via data/.env file (SECRET_KEY, FLASK_APP, etc.).

Clone this wiki locally