[PR #58] [MERGED] Database-level multi-library support #48 #193

Closed
opened 2026-02-17 17:06:24 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Drop-OSS/drop/pull/58
Author: @DecDuck
Created: 5/31/2025
Status: Merged
Merged: 6/1/2025
Merged by: @DecDuck

Base: developHead: 48-database-level-multi-library-support


📝 Commits (7)

  • b636400 feat: start of library backends
  • 6b24ac7 feat: update backend routes and create initializer
  • 79b3505 feat: add legacy library creation
  • 38d25ff fix: resolve frontend type errors
  • e91bb0a fix: runtime errors
  • 62e722c fix: lint
  • 6c17610 Merge branch 'develop' into 48-database-level-multi-library-support

📊 Changes

21 files changed (+672 additions, -306 deletions)

View changed files

📝 package.json (+1 -1)
📝 pages/admin/index.vue (+2 -4)
📝 pages/admin/library/import.vue (+16 -13)
📝 pages/admin/library/index.vue (+5 -4)
prisma/migrations/20250601022736_add_database_library/migration.sql (+53 -0)
prisma/migrations/20250601032211_add_library_relation_to_game/migration.sql (+17 -0)
prisma/migrations/20250601032938_add_unique_constraint/migration.sql (+8 -0)
📝 prisma/models/app.prisma (+15 -1)
📝 prisma/models/content.prisma (+8 -2)
📝 server/api/v1/admin/game/index.get.ts (+4 -3)
📝 server/api/v1/admin/import/game/index.get.ts (+6 -1)
📝 server/api/v1/admin/import/game/index.post.ts (+38 -29)
📝 server/api/v1/admin/import/version/index.get.ts (+12 -2)
📝 server/api/v1/admin/import/version/index.post.ts (+21 -21)
📝 server/api/v1/client/chunk.get.ts (+47 -28)
server/internal/library/filesystem.ts (+107 -0)
📝 server/internal/library/index.ts (+101 -111)
server/internal/library/provider.ts (+64 -0)
📝 server/internal/metadata/index.ts (+9 -10)
server/plugins/05.library-init.ts (+74 -0)

...and 1 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Drop-OSS/drop/pull/58 **Author:** [@DecDuck](https://github.com/DecDuck) **Created:** 5/31/2025 **Status:** ✅ Merged **Merged:** 6/1/2025 **Merged by:** [@DecDuck](https://github.com/DecDuck) **Base:** `develop` ← **Head:** `48-database-level-multi-library-support` --- ### 📝 Commits (7) - [`b636400`](https://github.com/Drop-OSS/drop/commit/b636400cbfc7793c7fd3eaf6e6e6291f72a30433) feat: start of library backends - [`6b24ac7`](https://github.com/Drop-OSS/drop/commit/6b24ac79d5200db12cbc9664509f88b4316b1d8d) feat: update backend routes and create initializer - [`79b3505`](https://github.com/Drop-OSS/drop/commit/79b3505280f630d723814a656b8227dcd65d64d1) feat: add legacy library creation - [`38d25ff`](https://github.com/Drop-OSS/drop/commit/38d25fffebd966d969165c76a6b8da3b6a469b78) fix: resolve frontend type errors - [`e91bb0a`](https://github.com/Drop-OSS/drop/commit/e91bb0a6872d3209bfa6ae970489ee4439b7ed61) fix: runtime errors - [`62e722c`](https://github.com/Drop-OSS/drop/commit/62e722cc7b522561cac8a5c9e267220288d88c1c) fix: lint - [`6c17610`](https://github.com/Drop-OSS/drop/commit/6c17610f6d57ee0a7a3aceae1d33ced409e44613) Merge branch 'develop' into 48-database-level-multi-library-support ### 📊 Changes **21 files changed** (+672 additions, -306 deletions) <details> <summary>View changed files</summary> 📝 `package.json` (+1 -1) 📝 `pages/admin/index.vue` (+2 -4) 📝 `pages/admin/library/import.vue` (+16 -13) 📝 `pages/admin/library/index.vue` (+5 -4) ➕ `prisma/migrations/20250601022736_add_database_library/migration.sql` (+53 -0) ➕ `prisma/migrations/20250601032211_add_library_relation_to_game/migration.sql` (+17 -0) ➕ `prisma/migrations/20250601032938_add_unique_constraint/migration.sql` (+8 -0) 📝 `prisma/models/app.prisma` (+15 -1) 📝 `prisma/models/content.prisma` (+8 -2) 📝 `server/api/v1/admin/game/index.get.ts` (+4 -3) 📝 `server/api/v1/admin/import/game/index.get.ts` (+6 -1) 📝 `server/api/v1/admin/import/game/index.post.ts` (+38 -29) 📝 `server/api/v1/admin/import/version/index.get.ts` (+12 -2) 📝 `server/api/v1/admin/import/version/index.post.ts` (+21 -21) 📝 `server/api/v1/client/chunk.get.ts` (+47 -28) ➕ `server/internal/library/filesystem.ts` (+107 -0) 📝 `server/internal/library/index.ts` (+101 -111) ➕ `server/internal/library/provider.ts` (+64 -0) 📝 `server/internal/metadata/index.ts` (+9 -10) ➕ `server/plugins/05.library-init.ts` (+74 -0) _...and 1 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-17 17:06:24 -05:00
yindo closed this issue 2026-02-17 17:06:24 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Drop-OSS/drop#193