-
Notifications
You must be signed in to change notification settings - Fork 0
Changelog
Joy Barot edited this page Mar 27, 2026
·
4 revisions
Version history for the SeriesScape application.
Note: ShowTrackr was rebranded to SeriesScape in 2026.
[0.3.0] - 2025-05-25
- 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.
- 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 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
- 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
-
date_watchedfield 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.
- 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.
- 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.
- 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.
- 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.
- Resolved
AttributeError: 'HTMX' object has no attribute 'on'error by ensuring HTMX is correctly initialized. - Corrected database
OperationalErrorrelated toNULLS LASTsyntax in SQLite by switching tofunc.coalescefor sorting.
- Initial project structure (Flask, Blueprints,
src/,data/). - Core dependencies (
Flask,Flask-SQLAlchemy,Flask-Migrate,Flask-HTMX,python-dotenv). - Basic
WatchlistItemdatabase 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/.envfile (SECRET_KEY,FLASK_APP, etc.).