aboutsummaryrefslogtreecommitdiff
path: root/static/scripts
AgeCommit message (Collapse)Author
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