[PR #161] [MERGED] Dev remake #1820

Closed
opened 2026-02-28 12:06:50 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/1Remote/1Remote/pull/161
Author: @VShawn
Created: 11/6/2021
Status: Merged
Merged: 11/6/2021
Merged by: @VShawn

Base: devHead: dev-remake


📝 Commits (10+)

  • 01700b4 color and brush resource renamed.
  • eba6451 move view from Core to App
  • bc92af7 refacing the theme: control styles
  • f927cb5 refacing the theme: control styles
  • ad124cc Merge branch 'dev-remake' of github.com:VShawn/PRemoteM into dev-remake
  • 0a3ea1b remake AutoCompleteComboBox PasswordBox ScrollViewer CheckBox styles, remove old style resources.
  • ae76f1f remake ToggleButton style
  • 27b16c9 new SliderStyle
  • 7973776 Button style improve.
  • 3d669df xaml ButtonEx to Button

📊 Changes

365 files changed (+12486 additions, -12092 deletions)

View changed files

📝 PRM.Core/DB/Dapper/DapperDb.cs (+1 -1)
📝 PRM.Core/DB/Dapper/ServerModel.cs (+3 -2)
PRM.Core/DB/DbExtensions.cs (+0 -81)
📝 PRM.Core/DB/EnumDbStatus.cs (+10 -6)
📝 PRM.Core/External/KiTTY/EnumKittyConfigKey.cs (+2 -2)
PRM.Core/External/KiTTY/IKittyConnectable.cs (+296 -0)
PRM.Core/External/KiTTY/KittyConfig.cs (+430 -0)
📝 PRM.Core/External/KiTTY/KittyConfigKeyValuePair.cs (+6 -10)
PRM.Core/External/KiTTY/PuttyThemes.cs (+26 -0)
📝 PRM.Core/External/KiTTY/PuttyThemes.json (+0 -0)
📝 PRM.Core/External/KiTTY/kitty_portable.exe (+0 -0)
📝 PRM.Core/Helper/ItemCreateHelper.cs (+16 -15)
📝 PRM.Core/I/IDb.cs (+72 -18)
PRM.Core/I/IDbServer.cs (+0 -22)
PRM.Core/I/IDbServerModel.cs (+17 -0)
PRM.Core/I/IIntegratable.cs (+10 -0)
PRM.Core/I/ILanguageService.cs (+12 -0)
📝 PRM.Core/I/ITab.cs (+1 -1)
PRM.Core/Languages/de-de.json (+0 -245)
📝 PRM.Core/Languages/de-de.xaml (+256 -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/1Remote/1Remote/pull/161 **Author:** [@VShawn](https://github.com/VShawn) **Created:** 11/6/2021 **Status:** ✅ Merged **Merged:** 11/6/2021 **Merged by:** [@VShawn](https://github.com/VShawn) **Base:** `dev` ← **Head:** `dev-remake` --- ### 📝 Commits (10+) - [`01700b4`](https://github.com/1Remote/1Remote/commit/01700b41716fda74a2cef3c96c71dda88acfd226) color and brush resource renamed. - [`eba6451`](https://github.com/1Remote/1Remote/commit/eba6451751691cf268a460ecc603709ed7147a79) move view from Core to App - [`bc92af7`](https://github.com/1Remote/1Remote/commit/bc92af73fa5c1819238e19f40ec97484ebc11119) refacing the theme: control styles - [`f927cb5`](https://github.com/1Remote/1Remote/commit/f927cb51d74d3a67fc710543f9f250ac71fa86ce) refacing the theme: control styles - [`ad124cc`](https://github.com/1Remote/1Remote/commit/ad124cc9bbcbb27a347eb9aafdc69560e0c2a0f3) Merge branch 'dev-remake' of github.com:VShawn/PRemoteM into dev-remake - [`0a3ea1b`](https://github.com/1Remote/1Remote/commit/0a3ea1bb6b65a424bb07caa9960f7a25b3d68f8a) remake AutoCompleteComboBox PasswordBox ScrollViewer CheckBox styles, remove old style resources. - [`ae76f1f`](https://github.com/1Remote/1Remote/commit/ae76f1fcf38984d9688bc4f2e371a2166d92d3b7) remake ToggleButton style - [`27b16c9`](https://github.com/1Remote/1Remote/commit/27b16c97cbb3cade6cefa93d3fd51347a49fe1fd) new SliderStyle - [`7973776`](https://github.com/1Remote/1Remote/commit/7973776eaa1eaf21ed7e032a2099bfd32a507817) Button style improve. - [`3d669df`](https://github.com/1Remote/1Remote/commit/3d669df41a02bfb9017e75bbed42d258e45c3a50) xaml ButtonEx to Button ### 📊 Changes **365 files changed** (+12486 additions, -12092 deletions) <details> <summary>View changed files</summary> 📝 `PRM.Core/DB/Dapper/DapperDb.cs` (+1 -1) 📝 `PRM.Core/DB/Dapper/ServerModel.cs` (+3 -2) ➖ `PRM.Core/DB/DbExtensions.cs` (+0 -81) 📝 `PRM.Core/DB/EnumDbStatus.cs` (+10 -6) 📝 `PRM.Core/External/KiTTY/EnumKittyConfigKey.cs` (+2 -2) ➕ `PRM.Core/External/KiTTY/IKittyConnectable.cs` (+296 -0) ➕ `PRM.Core/External/KiTTY/KittyConfig.cs` (+430 -0) 📝 `PRM.Core/External/KiTTY/KittyConfigKeyValuePair.cs` (+6 -10) ➕ `PRM.Core/External/KiTTY/PuttyThemes.cs` (+26 -0) 📝 `PRM.Core/External/KiTTY/PuttyThemes.json` (+0 -0) 📝 `PRM.Core/External/KiTTY/kitty_portable.exe` (+0 -0) 📝 `PRM.Core/Helper/ItemCreateHelper.cs` (+16 -15) 📝 `PRM.Core/I/IDb.cs` (+72 -18) ➖ `PRM.Core/I/IDbServer.cs` (+0 -22) ➕ `PRM.Core/I/IDbServerModel.cs` (+17 -0) ➕ `PRM.Core/I/IIntegratable.cs` (+10 -0) ➕ `PRM.Core/I/ILanguageService.cs` (+12 -0) 📝 `PRM.Core/I/ITab.cs` (+1 -1) ➖ `PRM.Core/Languages/de-de.json` (+0 -245) 📝 `PRM.Core/Languages/de-de.xaml` (+256 -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-28 12:06:50 +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#1820
No description provided.