* Initial plan * Refactor: remove queue from /api/system/configuration, use existing paginated /api/history endpoint for queue data Co-authored-by: jbatesy <51190172+jbatesy@users.noreply.github.com> * Remove accidentally committed package-lock.json and add to gitignore Co-authored-by: jbatesy <51190172+jbatesy@users.noreply.github.com> * Simplify loadMoreQueue to use loadNextPage for reduced duplication Co-authored-by: jbatesy <51190172+jbatesy@users.noreply.github.com> * Order in-progress downloads oldest-to-newest (order of processing) Co-authored-by: jbatesy <51190172+jbatesy@users.noreply.github.com> * Fix queue ordering: remove client-side timestamp sort, rely on backend created_at ASC Co-authored-by: jbatesy <51190172+jbatesy@users.noreply.github.com> * Revert "Fix queue ordering: remove client-side timestamp sort, rely on backend created_at ASC" This reverts commit 9b53112e0050a45e4db95c85064577d22ed47a50. Changes not needed --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: jbatesy <51190172+jbatesy@users.noreply.github.com> Co-authored-by: Jesse Bate <noreply@idump.me>
43 lines
564 B
Text
43 lines
564 B
Text
# compiled output
|
|
/frontend/dist
|
|
/ui/dist
|
|
/ui/exported/CHANGELOG.json
|
|
|
|
# dependencies
|
|
**/node_modules/*
|
|
**/.nuxt/*
|
|
|
|
# IDEs and editors
|
|
/ui/.idea
|
|
.project
|
|
.classpath
|
|
.c9/
|
|
*.launch
|
|
.settings/
|
|
*.sublime-workspace
|
|
|
|
# IDE - VSCode
|
|
.vscode/*
|
|
!.vscode/tasks.json
|
|
!.vscode/launch.json
|
|
!.vscode/extensions.json
|
|
!.vscode/settings.json
|
|
.history/*
|
|
|
|
# Keep Var dir
|
|
var/*
|
|
!./var/config/.gitkeep
|
|
!./var/downloads/.gitkeep
|
|
!./var/tmp/.gitkeep
|
|
|
|
# Misc - python stuff
|
|
__pycache__
|
|
.venv
|
|
.idea
|
|
dist
|
|
build
|
|
version.txt
|
|
test_impl.py
|
|
./eslint.config.js
|
|
.pytest_cache
|
|
ui/package-lock.json
|