[PR #157] [MERGED] 156 refactor into workspaces #167

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

📋 Pull Request Information

Original PR: https://github.com/Drop-OSS/drop-app/pull/157
Author: @quexeky
Created: 10/12/2025
Status: Merged
Merged: 10/14/2025
Merged by: @quexeky

Base: developHead: 156-refactor-into-workspaces


📝 Commits (7)

  • 59f040b chore: Major refactoring
  • 62a2561 fix: Remote tauri dependency from process
  • 5d22b88 refactor: Improvements to src-tauri
  • 9e1bf98 refactor: Builds, but some logic still left to move back
  • 974666e refactor: Finish refactor
  • 0f48f3f chore: Run cargo clippy && cargo fmt
  • 2ed8fe3 refactor: Move everything into src-tauri

📊 Changes

107 files changed (+8684 additions, -2722 deletions)

View changed files

📝 .gitignore (+3 -1)
📝 src-tauri/Cargo.lock (+1517 -842)
📝 src-tauri/Cargo.toml (+25 -0)
src-tauri/client/Cargo.lock (+4862 -0)
src-tauri/client/Cargo.toml (+12 -0)
📝 src-tauri/client/src/app_state.rs (+0 -0)
src-tauri/client/src/app_status.rs (+12 -0)
src-tauri/client/src/autostart.rs (+26 -0)
src-tauri/client/src/compat.rs (+52 -0)
src-tauri/client/src/lib.rs (+4 -0)
src-tauri/client/src/user.rs (+12 -0)
src-tauri/cloud_saves/Cargo.toml (+19 -0)
src-tauri/cloud_saves/src/backup_manager.rs (+234 -0)
📝 src-tauri/cloud_saves/src/conditions.rs (+3 -2)
src-tauri/cloud_saves/src/error.rs (+27 -0)
src-tauri/cloud_saves/src/lib.rs (+8 -0)
📝 src-tauri/cloud_saves/src/metadata.rs (+8 -7)
📝 src-tauri/cloud_saves/src/mod.rs (+0 -0)
📝 src-tauri/cloud_saves/src/normalise.rs (+22 -13)
📝 src-tauri/cloud_saves/src/path.rs (+6 -6)

...and 80 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-app/pull/157 **Author:** [@quexeky](https://github.com/quexeky) **Created:** 10/12/2025 **Status:** ✅ Merged **Merged:** 10/14/2025 **Merged by:** [@quexeky](https://github.com/quexeky) **Base:** `develop` ← **Head:** `156-refactor-into-workspaces` --- ### 📝 Commits (7) - [`59f040b`](https://github.com/Drop-OSS/drop-app/commit/59f040bc8bf61fe16ca68021063e4b2346706a87) chore: Major refactoring - [`62a2561`](https://github.com/Drop-OSS/drop-app/commit/62a2561539046056d22ba1ffac3a4c56b5525d50) fix: Remote tauri dependency from process - [`5d22b88`](https://github.com/Drop-OSS/drop-app/commit/5d22b883d5b0a40422a756f05ee4a5aa361f9938) refactor: Improvements to src-tauri - [`9e1bf98`](https://github.com/Drop-OSS/drop-app/commit/9e1bf9852fc7d56e1c1a2de0c343b11d85c31446) refactor: Builds, but some logic still left to move back - [`974666e`](https://github.com/Drop-OSS/drop-app/commit/974666efe2f9ffe05ee071f639b53936c906c7d3) refactor: Finish refactor - [`0f48f3f`](https://github.com/Drop-OSS/drop-app/commit/0f48f3fb44b81de347a7f63a9298220cdbb380c4) chore: Run cargo clippy && cargo fmt - [`2ed8fe3`](https://github.com/Drop-OSS/drop-app/commit/2ed8fe3e391895b8a9e35953479fc48d8129c434) refactor: Move everything into src-tauri ### 📊 Changes **107 files changed** (+8684 additions, -2722 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+3 -1) 📝 `src-tauri/Cargo.lock` (+1517 -842) 📝 `src-tauri/Cargo.toml` (+25 -0) ➕ `src-tauri/client/Cargo.lock` (+4862 -0) ➕ `src-tauri/client/Cargo.toml` (+12 -0) 📝 `src-tauri/client/src/app_state.rs` (+0 -0) ➕ `src-tauri/client/src/app_status.rs` (+12 -0) ➕ `src-tauri/client/src/autostart.rs` (+26 -0) ➕ `src-tauri/client/src/compat.rs` (+52 -0) ➕ `src-tauri/client/src/lib.rs` (+4 -0) ➕ `src-tauri/client/src/user.rs` (+12 -0) ➕ `src-tauri/cloud_saves/Cargo.toml` (+19 -0) ➕ `src-tauri/cloud_saves/src/backup_manager.rs` (+234 -0) 📝 `src-tauri/cloud_saves/src/conditions.rs` (+3 -2) ➕ `src-tauri/cloud_saves/src/error.rs` (+27 -0) ➕ `src-tauri/cloud_saves/src/lib.rs` (+8 -0) 📝 `src-tauri/cloud_saves/src/metadata.rs` (+8 -7) 📝 `src-tauri/cloud_saves/src/mod.rs` (+0 -0) 📝 `src-tauri/cloud_saves/src/normalise.rs` (+22 -13) 📝 `src-tauri/cloud_saves/src/path.rs` (+6 -6) _...and 80 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:12:14 -05:00
yindo closed this issue 2026-02-17 17:12:14 -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#167