Simon

Results 247 comments of Simon

> Just pointing out that it is not strictly user error as the release notes say "Added compatibility for Tube Archivist v0.5.0.", not that support for v0.4.x was removed. It's...

Effort is better spent on improving the the project and pushing it forward, not on maintaining backwards compatibility. But nothing magical with browser extensions: ## Firefox All release versions are...

That is probably related to the appsettings migration problem, as documented in the release notes: https://github.com/tubearchivist/tubearchivist/releases/tag/v0.5.0 You can follow the steps there.

Well, it's not unrelated. It's a cookie for the domain `www.youtube.com`, so that is working as expected. Strange that this is invalid. Does removing that cookie make it work? Ultimately,...

Another thing to consider is that a channel might not have any tabs or maybe just playlists. I just tested that, that currently already is working correctly, all relevant metadata...

Custom Playlist are only implemented through the form at the moment. Api implementation will happen later with the refactor, as documented in this issue.

Implemented at `/api/task/schedule//`, see doc string here: https://github.com/tubearchivist/tubearchivist/blob/192d518c2b452435dca8ded9f0fe1f38387316b8/backend/task/views.py#L121-L126

Implemented both: - GET /api/task/schedule/\/: single schedule by task name - GET /api/task/schedule/: all schedules example response: ```json { "name": "check_reindex", "schedule": "0 13 *", "schedule_human": "At 01:00 PM Europe/Zurich",...

Implemented at: /api/appsettings/config/, for details see doc string: https://github.com/tubearchivist/tubearchivist/blob/192d518c2b452435dca8ded9f0fe1f38387316b8/backend/appsettings/views.py#L29-L34

updating user config through POST /api/user/me/ works fine for me on latest commit from refactor-react-migration branch. Maybe your migrations didn't run correctly in the backend? e.g. `python manage.py ta_startup`.