[PR #130] [MERGED] Feature multi-issue #160

Closed
opened 2026-02-17 17:12:13 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Drop-OSS/drop-app/pull/130
Author: @DecDuck
Created: 8/30/2025
Status: Merged
Merged: 9/7/2025
Merged by: @DecDuck

Base: developHead: small-feats


📝 Commits (9)

  • 4f03db3 feat: different local path in dev #73
  • 537a1d8 feat: better error output for downloads
  • 10b9518 feat: collections in library view
  • 9fa9caa feat: improve download manager reliability
  • b0a911c feat: new download UI, more stable downloads
  • fb6a590 fix: clippy
  • 0039807 fix: only show admin link if user is admin
  • a464269 Merge branch 'develop' into small-feats
  • 5cf4580 feat: check for libs before building

📊 Changes

27 files changed (+451 additions, -197 deletions)

View changed files

📝 build.mjs (+7 -0)
📝 main/app.vue (+1 -1)
📝 main/components/HeaderUserWidget.vue (+1 -1)
📝 main/components/LibrarySearch.vue (+174 -69)
main/components/LoadingIndicator.vue (+0 -7)
📝 main/composables/downloads.ts (+2 -0)
📝 main/pages/queue.vue (+18 -16)
📝 main/types.ts (+7 -0)
📝 src-tauri/Cargo.lock (+5 -2)
📝 src-tauri/Cargo.toml (+12 -1)
📝 src-tauri/src/database/db.rs (+6 -1)
📝 src-tauri/src/database/models.rs (+20 -7)
📝 src-tauri/src/database/scan.rs (+2 -2)
📝 src-tauri/src/download_manager/download_manager_builder.rs (+44 -44)
📝 src-tauri/src/download_manager/download_manager_frontend.rs (+1 -1)
📝 src-tauri/src/download_manager/downloadable.rs (+7 -1)
📝 src-tauri/src/download_manager/util/progress_object.rs (+6 -6)
📝 src-tauri/src/download_manager/util/rolling_progress_updates.rs (+9 -4)
📝 src-tauri/src/games/collections/collection.rs (+3 -2)
📝 src-tauri/src/games/collections/commands.rs (+17 -3)

...and 7 more files

📄 Description


🔄 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-app/pull/130 **Author:** [@DecDuck](https://github.com/DecDuck) **Created:** 8/30/2025 **Status:** ✅ Merged **Merged:** 9/7/2025 **Merged by:** [@DecDuck](https://github.com/DecDuck) **Base:** `develop` ← **Head:** `small-feats` --- ### 📝 Commits (9) - [`4f03db3`](https://github.com/Drop-OSS/drop-app/commit/4f03db3fbbe9b1593190e6967375d4c9f144e8b9) feat: different local path in dev #73 - [`537a1d8`](https://github.com/Drop-OSS/drop-app/commit/537a1d82de89a5807ace330df0a5a5b7e39a360e) feat: better error output for downloads - [`10b9518`](https://github.com/Drop-OSS/drop-app/commit/10b951883e5a4bdc5587aa5e061255dd97163e5c) feat: collections in library view - [`9fa9caa`](https://github.com/Drop-OSS/drop-app/commit/9fa9caa073c50be107f78a601de8fce4bbb93046) feat: improve download manager reliability - [`b0a911c`](https://github.com/Drop-OSS/drop-app/commit/b0a911c25d5ea3df54dc4b1d32a0b65bb14b47a3) feat: new download UI, more stable downloads - [`fb6a590`](https://github.com/Drop-OSS/drop-app/commit/fb6a5907ca9487f09d1bbbe73a17f9c818ed5254) fix: clippy - [`0039807`](https://github.com/Drop-OSS/drop-app/commit/00398075e9b4911cbdbaf26649fd527623cc4630) fix: only show admin link if user is admin - [`a464269`](https://github.com/Drop-OSS/drop-app/commit/a4642695bdfb7d21634dafec03cc196b1dd63d90) Merge branch 'develop' into small-feats - [`5cf4580`](https://github.com/Drop-OSS/drop-app/commit/5cf4580f9d2b4ddfeaedc1f721ad47d81c1ff73a) feat: check for libs before building ### 📊 Changes **27 files changed** (+451 additions, -197 deletions) <details> <summary>View changed files</summary> 📝 `build.mjs` (+7 -0) 📝 `main/app.vue` (+1 -1) 📝 `main/components/HeaderUserWidget.vue` (+1 -1) 📝 `main/components/LibrarySearch.vue` (+174 -69) ➖ `main/components/LoadingIndicator.vue` (+0 -7) 📝 `main/composables/downloads.ts` (+2 -0) 📝 `main/pages/queue.vue` (+18 -16) 📝 `main/types.ts` (+7 -0) 📝 `src-tauri/Cargo.lock` (+5 -2) 📝 `src-tauri/Cargo.toml` (+12 -1) 📝 `src-tauri/src/database/db.rs` (+6 -1) 📝 `src-tauri/src/database/models.rs` (+20 -7) 📝 `src-tauri/src/database/scan.rs` (+2 -2) 📝 `src-tauri/src/download_manager/download_manager_builder.rs` (+44 -44) 📝 `src-tauri/src/download_manager/download_manager_frontend.rs` (+1 -1) 📝 `src-tauri/src/download_manager/downloadable.rs` (+7 -1) 📝 `src-tauri/src/download_manager/util/progress_object.rs` (+6 -6) 📝 `src-tauri/src/download_manager/util/rolling_progress_updates.rs` (+9 -4) 📝 `src-tauri/src/games/collections/collection.rs` (+3 -2) 📝 `src-tauri/src/games/collections/commands.rs` (+17 -3) _...and 7 more files_ </details> ### 📄 Description - #73 - Adds better error outputs for downloads --- <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:12:13 -05:00
yindo closed this issue 2026-02-17 17:12:13 -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-app#160