[PR #15] [MERGED] For 0.4.8.2008122010 #3763

Closed
opened 2026-03-13 12:56:53 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/1Remote/1Remote/pull/15
Author: @VShawn
Created: 8/12/2020
Status: Merged
Merged: 8/12/2020
Merged by: @VShawn

Base: masterHead: dev


📝 Commits (10+)

  • 993b0e0 some enhancements of tab closing.
  • b16d1bd Merge branch 'dev' of github.com:VShawn/PRemoteM into dev
  • 513e064 Merge remote-tracking branch 'remotes/origin/master' into dev
  • 0ffdd70 update readme.md
  • 42bceae investigate RDP Gateway
  • 0b30810 add ui of RD Gateway
  • 35e105b add logic of RD Gateway
  • 8887dc4 Merge pull request #14 from VShawn/dev_RDP_Gateway_Support
  • 810719b add features:
  • b630c32 add tab mode option for decide new item goes to which tab?

📊 Changes

32 files changed (+808 additions, -134 deletions)

View changed files

📝 PRM.Core/Languages/en-us.json (+15 -2)
📝 PRM.Core/Languages/en-us.xaml (+1 -1)
📝 PRM.Core/Languages/zh-cn.json (+15 -2)
📝 PRM.Core/Languages/zh-cn.xaml (+1 -1)
📝 PRM.Core/Model/SystemConfig.DataSecurity.cs (+23 -3)
📝 PRM.Core/Model/SystemConfig.General.cs (+18 -4)
📝 PRM.Core/PRMVersion.cs (+2 -2)
📝 PRM.Core/Protocol/ProtocolServerWithAddrPortUserPwdBase.cs (+1 -1)
📝 PRM.Core/Protocol/Putty/SSH/ProtocolServerSSH.cs (+1 -1)
📝 PRM.Core/Protocol/RDP/Host/AxMsRdpClient09Host.xaml.cs (+58 -6)
📝 PRM.Core/Protocol/RDP/ProtocolServerRDP.cs (+75 -2)
📝 PRM.Core/Protocol/RDP/ProtocolServerRDPForm.xaml (+120 -1)
📝 PRM.Core/Protocol/RDP/ProtocolServerRDPForm.xaml.cs (+37 -0)
📝 PRM.Core/Resources/Style/GlobalStyle.xaml (+3 -1)
📝 PRM.Core/Ulits/SimpleLogHelper.cs (+25 -17)
📝 PRemoteM/App.xaml.cs (+7 -5)
PRemoteM/Controls/AutoCompleteComboBox.xaml (+20 -0)
PRemoteM/Controls/AutoCompleteComboBox.xaml.cs (+133 -0)
📝 PRemoteM/MainWindow.xaml (+1 -1)
📝 PRemoteM/Model/RemoteWindowPool.cs (+87 -62)

...and 12 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/1Remote/1Remote/pull/15 **Author:** [@VShawn](https://github.com/VShawn) **Created:** 8/12/2020 **Status:** ✅ Merged **Merged:** 8/12/2020 **Merged by:** [@VShawn](https://github.com/VShawn) **Base:** `master` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`993b0e0`](https://github.com/1Remote/1Remote/commit/993b0e085d6ec604c0499da73ea742090716f16c) some enhancements of tab closing. - [`b16d1bd`](https://github.com/1Remote/1Remote/commit/b16d1bddd63f06de2f445ac889e6e16b05cc445e) Merge branch 'dev' of github.com:VShawn/PRemoteM into dev - [`513e064`](https://github.com/1Remote/1Remote/commit/513e064eb231854d6f9ae8f9ee084e98c3e00663) Merge remote-tracking branch 'remotes/origin/master' into dev - [`0ffdd70`](https://github.com/1Remote/1Remote/commit/0ffdd70bd7112ca19bf307d17c0bd72fd999b1ad) update readme.md - [`42bceae`](https://github.com/1Remote/1Remote/commit/42bceaecf6b0db0ce317e157be274bd6715eaa6d) investigate RDP Gateway - [`0b30810`](https://github.com/1Remote/1Remote/commit/0b30810d697515936b9709b35060dd1a294ecde7) add ui of RD Gateway - [`35e105b`](https://github.com/1Remote/1Remote/commit/35e105bba347927bccd39def6e3e67e51192fe58) add logic of RD Gateway - [`8887dc4`](https://github.com/1Remote/1Remote/commit/8887dc412a646aeed5a5dfed72f5cfca183e12ae) Merge pull request #14 from VShawn/dev_RDP_Gateway_Support - [`810719b`](https://github.com/1Remote/1Remote/commit/810719bae1e701e8a8d4ae66ad04befdba82ac4b) add features: - [`b630c32`](https://github.com/1Remote/1Remote/commit/b630c32911883950f7bfd1b8c669adaae058ffcb) add tab mode option for decide new item goes to which tab? ### 📊 Changes **32 files changed** (+808 additions, -134 deletions) <details> <summary>View changed files</summary> 📝 `PRM.Core/Languages/en-us.json` (+15 -2) 📝 `PRM.Core/Languages/en-us.xaml` (+1 -1) 📝 `PRM.Core/Languages/zh-cn.json` (+15 -2) 📝 `PRM.Core/Languages/zh-cn.xaml` (+1 -1) 📝 `PRM.Core/Model/SystemConfig.DataSecurity.cs` (+23 -3) 📝 `PRM.Core/Model/SystemConfig.General.cs` (+18 -4) 📝 `PRM.Core/PRMVersion.cs` (+2 -2) 📝 `PRM.Core/Protocol/ProtocolServerWithAddrPortUserPwdBase.cs` (+1 -1) 📝 `PRM.Core/Protocol/Putty/SSH/ProtocolServerSSH.cs` (+1 -1) 📝 `PRM.Core/Protocol/RDP/Host/AxMsRdpClient09Host.xaml.cs` (+58 -6) 📝 `PRM.Core/Protocol/RDP/ProtocolServerRDP.cs` (+75 -2) 📝 `PRM.Core/Protocol/RDP/ProtocolServerRDPForm.xaml` (+120 -1) 📝 `PRM.Core/Protocol/RDP/ProtocolServerRDPForm.xaml.cs` (+37 -0) 📝 `PRM.Core/Resources/Style/GlobalStyle.xaml` (+3 -1) 📝 `PRM.Core/Ulits/SimpleLogHelper.cs` (+25 -17) 📝 `PRemoteM/App.xaml.cs` (+7 -5) ➕ `PRemoteM/Controls/AutoCompleteComboBox.xaml` (+20 -0) ➕ `PRemoteM/Controls/AutoCompleteComboBox.xaml.cs` (+133 -0) 📝 `PRemoteM/MainWindow.xaml` (+1 -1) 📝 `PRemoteM/Model/RemoteWindowPool.cs` (+87 -62) _...and 12 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-03-13 12:56:53 +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/1Remote#3763
No description provided.