aboutsummaryrefslogtreecommitdiff
path: root/static
AgeCommit message (Collapse)Author
2023-08-04Make tag input nicer with JS (if enabled)HEADmainArjun Satarkar
2023-08-03Allow setting custom title on /add_feed, improve form layoutArjun Satarkar
2023-07-30Make feed id autoincrementArjun Satarkar
This is necessary to avoid a condition where the most recently added feed is deleted, and a new one subsequently added, after the latest id has been fetched from the database for updating but before the new entries are inserted. In this case, without autoincrement, entries from the deleted feed would be associated with the newly added feed. This fix does not include migration from the old DB schema without the change since this project is not stable yet, but I intend to start including such migrations in perhaps the very next release that alters the database schema.
2023-07-30Add auto-refresh checkbox, don't auto-refresh except on front pageArjun Satarkar
Also use input type "hidden" instead of display: none where appropriate (no observable effects, just cleaner).
2023-07-30Simplify auto_refresh.jsArjun Satarkar
That was the default value of that parameter anyway.
2023-07-29Add auto-refresh JSArjun Satarkar
2023-07-05Add periodic updates, clean up codeArjun Satarkar
2023-07-02Separate server and core, add SQLite storageArjun Satarkar
2023-06-22Improve CLI arguments, add basic tag support, add CSSArjun Satarkar