[PR #643] [CLOSED] Repair RemoteDesk\RemoteCam\MouseEvent #1172

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

📋 Pull Request Information

Original PR: https://github.com/quasar/Quasar/pull/643
Author: @hucya
Created: 1/22/2018
Status: Closed

Base: masterHead: master


📝 Commits (10+)

  • 541dc98 1、改变了远程鼠标监控消息类型,增加了鼠标所有功能
  • 97839cd 1、添加了Mirror Driver使用的驱动程序
  • b1bb957 Added remote chat
  • 4028683 Improved things on client's chat form
  • 89d11f8 屏蔽跨线程错误
  • b8756c5 Fixed
  • 5d6f8ea Improved file manager and added a search function to it
  • b096fa5 some small fixes
  • 8125da2 Fix .NET version incompatibilities
  • 0614700 Hopefully fixing last of version incompatibilities

📊 Changes

99 files changed (+10650 additions, -424 deletions)

View changed files

📝 Client/Client.csproj (+17 -1)
📝 Client/Config/Settings.cs (+1 -1)
📝 Client/Core/AForge/Video.DirectShow/FilterInfoCollection.cs (+1 -1)
📝 Client/Core/AForge/Video.DirectShow/Internals/Win32.cs (+1 -1)
📝 Client/Core/AForge/Video/IVideoSource.cs (+1 -1)
📝 Client/Core/AForge/Video/VideoEvents.cs (+1 -1)
📝 Client/Core/Commands/CommandHandler.cs (+5 -1)
📝 Client/Core/Commands/FileHandler.cs (+109 -6)
📝 Client/Core/Commands/MiscHandler.cs (+32 -0)
📝 Client/Core/Commands/SurveillanceHandler.cs (+113 -40)
📝 Client/Core/Commands/WebcamHandler.cs (+27 -14)
Client/Core/Helper/DesktopMirror.cs (+480 -0)
📝 Client/Core/Helper/FileHelper.cs (+79 -1)
📝 Client/Core/Helper/GeoLocationHelper.cs (+39 -22)
📝 Client/Core/Helper/NativeMethodsHelper.cs (+30 -5)
📝 Client/Core/Helper/RegistryKeyHelper.cs (+12 -4)
📝 Client/Core/Helper/ScreenHelper.cs (+36 -16)
📝 Client/Core/Helper/SystemHelper.cs (+12 -0)
📝 Client/Core/Networking/QuasarClient.cs (+1 -0)
📝 Client/Core/Packets/ClientPackets/GetDirectoryResponse.cs (+7 -1)

...and 79 more files

📄 Description

1、Use Mirror Driver technology to improve remote desktop performance;
2、Restructured mouseEvents to support all mouse functions
3、Fixed some exception for the remote camera


🔄 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/643 **Author:** [@hucya](https://github.com/hucya) **Created:** 1/22/2018 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (10+) - [`541dc98`](https://github.com/quasar/Quasar/commit/541dc983b8a87be22c1fa7f85c6b6be4c9a70128) 1、改变了远程鼠标监控消息类型,增加了鼠标所有功能 - [`97839cd`](https://github.com/quasar/Quasar/commit/97839cd4831fc5403cb20eada7d08d013d7c8c75) 1、添加了Mirror Driver使用的驱动程序 - [`b1bb957`](https://github.com/quasar/Quasar/commit/b1bb957786c866003e80e34bf54f5276aa2bc5ce) Added remote chat - [`4028683`](https://github.com/quasar/Quasar/commit/402868386c8dca542187fd9f58d5773459a2f9c2) Improved things on client's chat form - [`89d11f8`](https://github.com/quasar/Quasar/commit/89d11f8c73aa7e2955b95a96a3b0ee7c81a0c1c1) 屏蔽跨线程错误 - [`b8756c5`](https://github.com/quasar/Quasar/commit/b8756c53a423e7b70cfc716422f321cb6e5f0583) Fixed - [`5d6f8ea`](https://github.com/quasar/Quasar/commit/5d6f8eadc4ef8e20513df6e6eb40257275b20178) Improved file manager and added a search function to it - [`b096fa5`](https://github.com/quasar/Quasar/commit/b096fa54f5f3b223b5288a35734eba510b70a50c) some small fixes - [`8125da2`](https://github.com/quasar/Quasar/commit/8125da2918ab8ecec6952e69d30c0bbdf3c75c47) Fix .NET version incompatibilities - [`0614700`](https://github.com/quasar/Quasar/commit/06147002c6ed50a51a61b0c2c23fd0d60a768233) Hopefully fixing last of version incompatibilities ### 📊 Changes **99 files changed** (+10650 additions, -424 deletions) <details> <summary>View changed files</summary> 📝 `Client/Client.csproj` (+17 -1) 📝 `Client/Config/Settings.cs` (+1 -1) 📝 `Client/Core/AForge/Video.DirectShow/FilterInfoCollection.cs` (+1 -1) 📝 `Client/Core/AForge/Video.DirectShow/Internals/Win32.cs` (+1 -1) 📝 `Client/Core/AForge/Video/IVideoSource.cs` (+1 -1) 📝 `Client/Core/AForge/Video/VideoEvents.cs` (+1 -1) 📝 `Client/Core/Commands/CommandHandler.cs` (+5 -1) 📝 `Client/Core/Commands/FileHandler.cs` (+109 -6) 📝 `Client/Core/Commands/MiscHandler.cs` (+32 -0) 📝 `Client/Core/Commands/SurveillanceHandler.cs` (+113 -40) 📝 `Client/Core/Commands/WebcamHandler.cs` (+27 -14) ➕ `Client/Core/Helper/DesktopMirror.cs` (+480 -0) 📝 `Client/Core/Helper/FileHelper.cs` (+79 -1) 📝 `Client/Core/Helper/GeoLocationHelper.cs` (+39 -22) 📝 `Client/Core/Helper/NativeMethodsHelper.cs` (+30 -5) 📝 `Client/Core/Helper/RegistryKeyHelper.cs` (+12 -4) 📝 `Client/Core/Helper/ScreenHelper.cs` (+36 -16) 📝 `Client/Core/Helper/SystemHelper.cs` (+12 -0) 📝 `Client/Core/Networking/QuasarClient.cs` (+1 -0) 📝 `Client/Core/Packets/ClientPackets/GetDirectoryResponse.cs` (+7 -1) _...and 79 more files_ </details> ### 📄 Description 1、Use Mirror Driver technology to improve remote desktop performance; 2、Restructured mouseEvents to support all mouse functions 3、Fixed some exception for the remote camera --- <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:22 +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#1172
No description provided.