[PR #584] [CLOSED] Search functionality for file manager #1167

Closed
opened 2026-02-27 15:53:21 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/quasar/Quasar/pull/584
Author: @maddnias
Created: 2/21/2017
Status: Closed

Base: masterHead: search


📝 Commits (5)

  • 399d415 Improved file manager and added a search function to it
  • 12526b0 some small fixes
  • 6f38e71 Fix .NET version incompatibilities
  • b271a9d Hopefully fixing last of version incompatibilities
  • 57cfa36 A few fixes and cleanup

📊 Changes

27 files changed (+1581 additions, -115 deletions)

View changed files

📝 Client/Client.csproj (+3 -1)
📝 Client/Core/Commands/CommandHandler.cs (+5 -1)
📝 Client/Core/Commands/FileHandler.cs (+109 -6)
📝 Client/Core/Helper/FileHelper.cs (+79 -1)
📝 Client/Core/Packets/ClientPackets/GetDirectoryResponse.cs (+7 -1)
Client/Core/Packets/ClientPackets/SearchDirectoryResponse.cs (+51 -0)
📝 Client/Core/Packets/PacketHandler.cs (+4 -0)
📝 Client/Core/Packets/PacketRegistery.cs (+3 -1)
Client/Core/Packets/ServerPackets/SearchDirectory.cs (+44 -0)
📝 Server/Core/Commands/CommandHandler.cs (+2 -0)
📝 Server/Core/Commands/SystemHandler.cs (+83 -3)
📝 Server/Core/Packets/ClientPackets/GetDirectoryResponse.cs (+7 -2)
Server/Core/Packets/ClientPackets/SearchDirectoryResponse.cs (+38 -0)
📝 Server/Core/Packets/PacketHandler.cs (+4 -0)
📝 Server/Core/Packets/PacketRegistery.cs (+3 -1)
Server/Core/Packets/ServerPackets/SearchDirectory.cs (+55 -0)
📝 Server/Forms/FrmFileManager.Designer.cs (+356 -66)
📝 Server/Forms/FrmFileManager.cs (+351 -24)
📝 Server/Forms/FrmFileManager.resx (+8 -2)
Server/Forms/frmSearchWarning.Designer.cs (+164 -0)

...and 7 more files

📄 Description

Added search functionality to the file manager of Quasar.

(Recreated pull request due to me fucking up the branches of my fork)


🔄 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/quasar/Quasar/pull/584 **Author:** [@maddnias](https://github.com/maddnias) **Created:** 2/21/2017 **Status:** ❌ Closed **Base:** `master` ← **Head:** `search` --- ### 📝 Commits (5) - [`399d415`](https://github.com/quasar/Quasar/commit/399d4158a0f77b562bdbfa191ae4c0d57e2b038b) Improved file manager and added a search function to it - [`12526b0`](https://github.com/quasar/Quasar/commit/12526b078108a7ae6765bfeea14bfe0f2fbbd88e) some small fixes - [`6f38e71`](https://github.com/quasar/Quasar/commit/6f38e71fda813dd46cb9ca40c2bebaff917e00c1) Fix .NET version incompatibilities - [`b271a9d`](https://github.com/quasar/Quasar/commit/b271a9d0a16fed15e12cd661c1051ff9d3f76b24) Hopefully fixing last of version incompatibilities - [`57cfa36`](https://github.com/quasar/Quasar/commit/57cfa36b8668933c626e02f2c743280fdffee52f) A few fixes and cleanup ### 📊 Changes **27 files changed** (+1581 additions, -115 deletions) <details> <summary>View changed files</summary> 📝 `Client/Client.csproj` (+3 -1) 📝 `Client/Core/Commands/CommandHandler.cs` (+5 -1) 📝 `Client/Core/Commands/FileHandler.cs` (+109 -6) 📝 `Client/Core/Helper/FileHelper.cs` (+79 -1) 📝 `Client/Core/Packets/ClientPackets/GetDirectoryResponse.cs` (+7 -1) ➕ `Client/Core/Packets/ClientPackets/SearchDirectoryResponse.cs` (+51 -0) 📝 `Client/Core/Packets/PacketHandler.cs` (+4 -0) 📝 `Client/Core/Packets/PacketRegistery.cs` (+3 -1) ➕ `Client/Core/Packets/ServerPackets/SearchDirectory.cs` (+44 -0) 📝 `Server/Core/Commands/CommandHandler.cs` (+2 -0) 📝 `Server/Core/Commands/SystemHandler.cs` (+83 -3) 📝 `Server/Core/Packets/ClientPackets/GetDirectoryResponse.cs` (+7 -2) ➕ `Server/Core/Packets/ClientPackets/SearchDirectoryResponse.cs` (+38 -0) 📝 `Server/Core/Packets/PacketHandler.cs` (+4 -0) 📝 `Server/Core/Packets/PacketRegistery.cs` (+3 -1) ➕ `Server/Core/Packets/ServerPackets/SearchDirectory.cs` (+55 -0) 📝 `Server/Forms/FrmFileManager.Designer.cs` (+356 -66) 📝 `Server/Forms/FrmFileManager.cs` (+351 -24) 📝 `Server/Forms/FrmFileManager.resx` (+8 -2) ➕ `Server/Forms/frmSearchWarning.Designer.cs` (+164 -0) _...and 7 more files_ </details> ### 📄 Description Added search functionality to the file manager of Quasar. (Recreated pull request due to me fucking up the branches of my fork) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 15:53:21 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/Quasar#1167
No description provided.