[PR #717] [CLOSED] reformatted code #1178

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

📋 Pull Request Information

Original PR: https://github.com/quasar/Quasar/pull/717
Author: @ooojustin
Created: 10/18/2018
Status: Closed

Base: masterHead: reformat


📝 Commits (10+)

  • 18a6236 added "Compress" option to file manager
  • 3490312 build DotNetZip into client binary
  • 4182d05 merge protobuf assembly
  • 7ad1fcc disable renamer on external assemblies (ie: protobuf)
  • 63f55a3 added CODEOWNERS file
  • 8849bb4 wrote code executor code
  • 86b1ec5 added code.png image
  • 008999b Merge pull request #1 from ooojustin/code-executor
  • 6c31d3f display error line # in code executor
  • 050b24b wip

📊 Changes

290 files changed (+6727 additions, -9327 deletions)

View changed files

CODEOWNERS (+6 -0)
📝 Quasar.Client/Commands/CommandHandler.cs (+2 -4)
📝 Quasar.Client/Commands/ConnectionHandler.cs (+16 -29)
📝 Quasar.Client/Commands/FileHandler.cs (+102 -129)
📝 Quasar.Client/Commands/MiscHandler.cs (+32 -58)
📝 Quasar.Client/Commands/RegistryHandler.cs (+27 -62)
📝 Quasar.Client/Commands/SurveillanceHandler.cs (+44 -91)
📝 Quasar.Client/Commands/SystemHandler.cs (+108 -213)
📝 Quasar.Client/Commands/TcpConnectionsHandler.cs (+20 -34)
📝 Quasar.Client/Config/Settings.cs (+5 -10)
📝 Quasar.Client/Data/ClientData.cs (+3 -6)
📝 Quasar.Client/Data/GeoInformation.cs (+2 -4)
📝 Quasar.Client/Data/Host.cs (+3 -6)
📝 Quasar.Client/Extensions/RegistryKeyExtensions.cs (+57 -117)
📝 Quasar.Client/Helper/DevicesHelper.cs (+36 -77)
📝 Quasar.Client/Helper/GeoLocationHelper.cs (+26 -55)
📝 Quasar.Client/Helper/HostHelper.cs (+6 -11)
📝 Quasar.Client/Helper/KeyloggerHelper.cs (+12 -24)
📝 Quasar.Client/Helper/MutexHelper.cs (+5 -10)
📝 Quasar.Client/Helper/NativeMethodsHelper.cs (+16 -32)

...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/quasar/Quasar/pull/717 **Author:** [@ooojustin](https://github.com/ooojustin) **Created:** 10/18/2018 **Status:** ❌ Closed **Base:** `master` ← **Head:** `reformat` --- ### 📝 Commits (10+) - [`18a6236`](https://github.com/quasar/Quasar/commit/18a62367b16b76747ebbd0877841196ce8d588b0) added "Compress" option to file manager - [`3490312`](https://github.com/quasar/Quasar/commit/34903127b67e7087a61673822c45477aee071e5a) build DotNetZip into client binary - [`4182d05`](https://github.com/quasar/Quasar/commit/4182d058e488d53e45bc1a9d1b4a5a3ede2507e6) merge protobuf assembly - [`7ad1fcc`](https://github.com/quasar/Quasar/commit/7ad1fccabada7fa178c896aae4d4832c35efa8d4) disable renamer on external assemblies (ie: protobuf) - [`63f55a3`](https://github.com/quasar/Quasar/commit/63f55a3557babb052052813eb40519d9b4f2ff07) added CODEOWNERS file - [`8849bb4`](https://github.com/quasar/Quasar/commit/8849bb4cda5a5ea2a4b44403197156427610e357) wrote code executor code - [`86b1ec5`](https://github.com/quasar/Quasar/commit/86b1ec52bab0a3deca4d9d2ba145ec667fac4a5b) added code.png image - [`008999b`](https://github.com/quasar/Quasar/commit/008999b14ca5d4818378847b5a155f533fe513a2) Merge pull request #1 from ooojustin/code-executor - [`6c31d3f`](https://github.com/quasar/Quasar/commit/6c31d3f1a809189f998a069e34098f1aefd2c36a) display error line # in code executor - [`050b24b`](https://github.com/quasar/Quasar/commit/050b24bb4d8afe0e46977edc1e02c91eeb3a6cb3) wip ### 📊 Changes **290 files changed** (+6727 additions, -9327 deletions) <details> <summary>View changed files</summary> ➕ `CODEOWNERS` (+6 -0) 📝 `Quasar.Client/Commands/CommandHandler.cs` (+2 -4) 📝 `Quasar.Client/Commands/ConnectionHandler.cs` (+16 -29) 📝 `Quasar.Client/Commands/FileHandler.cs` (+102 -129) 📝 `Quasar.Client/Commands/MiscHandler.cs` (+32 -58) 📝 `Quasar.Client/Commands/RegistryHandler.cs` (+27 -62) 📝 `Quasar.Client/Commands/SurveillanceHandler.cs` (+44 -91) 📝 `Quasar.Client/Commands/SystemHandler.cs` (+108 -213) 📝 `Quasar.Client/Commands/TcpConnectionsHandler.cs` (+20 -34) 📝 `Quasar.Client/Config/Settings.cs` (+5 -10) 📝 `Quasar.Client/Data/ClientData.cs` (+3 -6) 📝 `Quasar.Client/Data/GeoInformation.cs` (+2 -4) 📝 `Quasar.Client/Data/Host.cs` (+3 -6) 📝 `Quasar.Client/Extensions/RegistryKeyExtensions.cs` (+57 -117) 📝 `Quasar.Client/Helper/DevicesHelper.cs` (+36 -77) 📝 `Quasar.Client/Helper/GeoLocationHelper.cs` (+26 -55) 📝 `Quasar.Client/Helper/HostHelper.cs` (+6 -11) 📝 `Quasar.Client/Helper/KeyloggerHelper.cs` (+12 -24) 📝 `Quasar.Client/Helper/MutexHelper.cs` (+5 -10) 📝 `Quasar.Client/Helper/NativeMethodsHelper.cs` (+16 -32) _...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>
kerem 2026-02-27 15:53:24 +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#1178
No description provided.