[PR #151] [MERGED] Merge changes #1006

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

📋 Pull Request Information

Original PR: https://github.com/quasar/Quasar/pull/151
Author: @MaxXor
Created: 5/19/2015
Status: Merged
Merged: 5/19/2015
Merged by: @MaxXor

Base: devHead: master


📝 Commits (10+)

  • ee74b61 Initial release of the Reverse Proxy
  • ce7c75c More error checks & more reliable
  • 5f83df9 NoIP.org Integration
  • b7cad28 Tiny fix for class re-namer
  • 4f8bd1b NoIP.org Integration
  • 58fcbe9 Target Server/Port fixed in ListView
  • 1103226 Improved NoIP.org Integration
  • 6b581b7 Fixed Stopping the proxy server
  • f727452 Merge pull request #115 from MaxXor/pr/114
  • ecb6845 Edited Readme

📊 Changes

148 files changed (+5205 additions, -1882 deletions)

View changed files

Client.Tests/Client.Tests.csproj (+97 -0)
Client.Tests/Core/Compression/JpgCompression.Tests.cs (+24 -0)
Client.Tests/Core/Encryption/AES.Tests.cs (+44 -0)
Client.Tests/Core/Encryption/SHA256.Tests.cs (+20 -0)
Client.Tests/Core/Information/GeoIP.Tests.cs (+21 -0)
Client.Tests/Properties/AssemblyInfo.cs (+36 -0)
📝 Client/Client.csproj (+12 -0)
📝 Client/Core/Client.cs (+101 -31)
📝 Client/Core/Commands/CommandHandler.cs (+3 -932)
Client/Core/Commands/ConnectionHandler.cs (+98 -0)
Client/Core/Commands/FileHandler.cs (+244 -0)
Client/Core/Commands/MiscHandler.cs (+221 -0)
Client/Core/Commands/SurveillanceHandler.cs (+135 -0)
Client/Core/Commands/SystemHandler.cs (+287 -0)
📝 Client/Core/Elevation/FrmElevation.cs (+14 -1)
📝 Client/Core/Encryption/AES.cs (+6 -3)
📝 Client/Core/Helper/UnsafeStreamCodec.cs (+88 -78)
📝 Client/Core/Packets/ClientPackets/DesktopResponse.cs (+1 -1)
📝 Client/Core/Packets/ClientPackets/DirectoryResponse.cs (+1 -1)
📝 Client/Core/Packets/ClientPackets/DownloadFileResponse.cs (+1 -1)

...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/151 **Author:** [@MaxXor](https://github.com/MaxXor) **Created:** 5/19/2015 **Status:** ✅ Merged **Merged:** 5/19/2015 **Merged by:** [@MaxXor](https://github.com/MaxXor) **Base:** `dev` ← **Head:** `master` --- ### 📝 Commits (10+) - [`ee74b61`](https://github.com/quasar/Quasar/commit/ee74b6112d651e686c06183fb1d569799984f8b0) Initial release of the Reverse Proxy - [`ce7c75c`](https://github.com/quasar/Quasar/commit/ce7c75c56c0dbc9f076c7c76d092a35335189b3d) More error checks & more reliable - [`5f83df9`](https://github.com/quasar/Quasar/commit/5f83df91e51b3bef20f3f92b34019159731f40d7) NoIP.org Integration - [`b7cad28`](https://github.com/quasar/Quasar/commit/b7cad28b83f58b48bfd71fbc5c4fd3d92506d088) Tiny fix for class re-namer - [`4f8bd1b`](https://github.com/quasar/Quasar/commit/4f8bd1b431b709eaae14adb5ae20feecdb590952) NoIP.org Integration - [`58fcbe9`](https://github.com/quasar/Quasar/commit/58fcbe96f0edc51f7263c942da3d09a439acdd21) Target Server/Port fixed in ListView - [`1103226`](https://github.com/quasar/Quasar/commit/11032266c9cb3b1c538b6a4a5fe63fdc385a3b31) Improved NoIP.org Integration - [`6b581b7`](https://github.com/quasar/Quasar/commit/6b581b731cf7fa0e05ed733d87cea16059c59a18) Fixed Stopping the proxy server - [`f727452`](https://github.com/quasar/Quasar/commit/f727452426a2f696f835c2b0871a7014c7a86c4e) Merge pull request #115 from MaxXor/pr/114 - [`ecb6845`](https://github.com/quasar/Quasar/commit/ecb684537ac331e8bcbcf6f348d9af48f491ef44) Edited Readme ### 📊 Changes **148 files changed** (+5205 additions, -1882 deletions) <details> <summary>View changed files</summary> ➕ `Client.Tests/Client.Tests.csproj` (+97 -0) ➕ `Client.Tests/Core/Compression/JpgCompression.Tests.cs` (+24 -0) ➕ `Client.Tests/Core/Encryption/AES.Tests.cs` (+44 -0) ➕ `Client.Tests/Core/Encryption/SHA256.Tests.cs` (+20 -0) ➕ `Client.Tests/Core/Information/GeoIP.Tests.cs` (+21 -0) ➕ `Client.Tests/Properties/AssemblyInfo.cs` (+36 -0) 📝 `Client/Client.csproj` (+12 -0) 📝 `Client/Core/Client.cs` (+101 -31) 📝 `Client/Core/Commands/CommandHandler.cs` (+3 -932) ➕ `Client/Core/Commands/ConnectionHandler.cs` (+98 -0) ➕ `Client/Core/Commands/FileHandler.cs` (+244 -0) ➕ `Client/Core/Commands/MiscHandler.cs` (+221 -0) ➕ `Client/Core/Commands/SurveillanceHandler.cs` (+135 -0) ➕ `Client/Core/Commands/SystemHandler.cs` (+287 -0) 📝 `Client/Core/Elevation/FrmElevation.cs` (+14 -1) 📝 `Client/Core/Encryption/AES.cs` (+6 -3) 📝 `Client/Core/Helper/UnsafeStreamCodec.cs` (+88 -78) 📝 `Client/Core/Packets/ClientPackets/DesktopResponse.cs` (+1 -1) 📝 `Client/Core/Packets/ClientPackets/DirectoryResponse.cs` (+1 -1) 📝 `Client/Core/Packets/ClientPackets/DownloadFileResponse.cs` (+1 -1) _...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:52:46 +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#1006
No description provided.