[PR #149] [MERGED] Hotfix v0.3.1 #244

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

📋 Pull Request Information

Original PR: https://github.com/Drop-OSS/drop/pull/149
Author: @DecDuck
Created: 8/1/2025
Status: Merged
Merged: 8/1/2025
Merged by: @DecDuck

Base: mainHead: develop


📝 Commits (4)

📊 Changes

20 files changed (+460 additions, -56 deletions)

View changed files

📝 assets/tailwindcss.css (+9 -0)
📝 components/UserHeader/UserWidget.vue (+5 -0)
📝 i18n/locales/en_au.json (+18 -0)
📝 i18n/locales/en_pirate.json (+25 -2)
📝 i18n/locales/en_us.json (+4 -0)
📝 package.json (+1 -1)
📝 pages/client/authorize/[id].vue (+53 -26)
pages/client/code/index.vue (+135 -0)
prisma/migrations/20250801035031_add_delete_casacde/migration.sql (+11 -0)
📝 prisma/models/content.prisma (+1 -1)
📝 server/api/v1/client/auth/callback/index.post.ts (+8 -2)
server/api/v1/client/auth/code/index.get.ts (+21 -0)
server/api/v1/client/auth/code/index.post.ts (+35 -0)
server/api/v1/client/auth/code/ws.get.ts (+25 -0)
📝 server/api/v1/client/auth/index.get.ts (+9 -3)
📝 server/api/v1/client/auth/initiate.post.ts (+15 -18)
📝 server/internal/clients/handler.ts (+75 -2)
📝 server/internal/consts.ts (+1 -1)
📝 server/internal/tasks/index.ts (+1 -0)
📝 server/plugins/05.library-init.ts (+8 -0)

📄 Description

Add new code-based authorization server-side logic (non-breaking).

Fixes issue where games don't get deleted if their library providers are.


🔄 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/149 **Author:** [@DecDuck](https://github.com/DecDuck) **Created:** 8/1/2025 **Status:** ✅ Merged **Merged:** 8/1/2025 **Merged by:** [@DecDuck](https://github.com/DecDuck) **Base:** `main` ← **Head:** `develop` --- ### 📝 Commits (4) - [`786ad0f`](https://github.com/Drop-OSS/drop/commit/786ad0ff82e32c7731a1046f2dd9599bc309d71a) Translations update from Weblate (#107) - [`b72e1ef`](https://github.com/Drop-OSS/drop/commit/b72e1ef7a45ea16bee1da6271daae70966fcc522) Code-based authorization for Drop clients (#145) - [`72c972a`](https://github.com/Drop-OSS/drop/commit/72c972a2a79559b80c1ef9c5fc16fad3b12d6a89) Fix for undeleted games from library sources (#148) - [`7d95250`](https://github.com/Drop-OSS/drop/commit/7d9525084d75b00d84e8373823b9e9988ad56bed) feat: bump version (#150) ### 📊 Changes **20 files changed** (+460 additions, -56 deletions) <details> <summary>View changed files</summary> 📝 `assets/tailwindcss.css` (+9 -0) 📝 `components/UserHeader/UserWidget.vue` (+5 -0) 📝 `i18n/locales/en_au.json` (+18 -0) 📝 `i18n/locales/en_pirate.json` (+25 -2) 📝 `i18n/locales/en_us.json` (+4 -0) 📝 `package.json` (+1 -1) 📝 `pages/client/authorize/[id].vue` (+53 -26) ➕ `pages/client/code/index.vue` (+135 -0) ➕ `prisma/migrations/20250801035031_add_delete_casacde/migration.sql` (+11 -0) 📝 `prisma/models/content.prisma` (+1 -1) 📝 `server/api/v1/client/auth/callback/index.post.ts` (+8 -2) ➕ `server/api/v1/client/auth/code/index.get.ts` (+21 -0) ➕ `server/api/v1/client/auth/code/index.post.ts` (+35 -0) ➕ `server/api/v1/client/auth/code/ws.get.ts` (+25 -0) 📝 `server/api/v1/client/auth/index.get.ts` (+9 -3) 📝 `server/api/v1/client/auth/initiate.post.ts` (+15 -18) 📝 `server/internal/clients/handler.ts` (+75 -2) 📝 `server/internal/consts.ts` (+1 -1) 📝 `server/internal/tasks/index.ts` (+1 -0) 📝 `server/plugins/05.library-init.ts` (+8 -0) </details> ### 📄 Description Add new code-based authorization server-side logic (non-breaking). Fixes issue where games don't get deleted if their library providers are. --- <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:30 -05:00
yindo closed this issue 2026-02-17 17:06:30 -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#244