[PR #12] [MERGED] Avnish/migrate win UI #14

Closed
opened 2026-03-03 00:05:53 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/avikeid2007/Ping-Legacy/pull/12
Author: @avikeid2007
Created: 1/14/2026
Status: Merged
Merged: 1/14/2026
Merged by: @avikeid2007

Base: devHead: avnish/migrateWinUI


📝 Commits (7)

  • c29f93d Merge pull request #1 from avikeid2007/dev
  • 1c4aeac Merge pull request #2 from avikeid2007/dev
  • fb12ac3 Merge pull request #4 from avikeid2007/dev
  • 78b72ef Merge pull request #7 from avikeid2007/dev
  • 6818047 Merge pull request #10 from avikeid2007/dev
  • a7b4fce Update README.md
  • fd03f07 WinUI 3 modernization: new shell, theming, and features

📊 Changes

46 files changed (+2987 additions, -4 deletions)

View changed files

PingTool.WinUI3.sln (+40 -0)
PingTool.WinUI3/App.xaml (+18 -0)
PingTool.WinUI3/App.xaml.cs (+39 -0)
PingTool.WinUI3/Assets/DefaultIcon.png (+0 -0)
PingTool.WinUI3/Assets/LockScreenLogo.scale-200.png (+0 -0)
PingTool.WinUI3/Assets/SplashScreen.scale-200.png (+0 -0)
PingTool.WinUI3/Assets/Square150x150Logo.scale-200.png (+0 -0)
PingTool.WinUI3/Assets/Square44x44Logo.scale-200.png (+0 -0)
PingTool.WinUI3/Assets/Square44x44Logo.targetsize-24_altform-unplated.png (+0 -0)
PingTool.WinUI3/Assets/StoreLogo.png (+0 -0)
PingTool.WinUI3/Assets/Wide310x150Logo.scale-200.png (+0 -0)
PingTool.WinUI3/Converters/TextColorConverter.cs (+37 -0)
PingTool.WinUI3/Helpers/FileHelper.cs (+34 -0)
PingTool.WinUI3/Helpers/NavHelper.cs (+19 -0)
PingTool.WinUI3/Helpers/SQLiteHelper.cs (+86 -0)
PingTool.WinUI3/MainWindow.xaml (+10 -0)
PingTool.WinUI3/MainWindow.xaml.cs (+17 -0)
PingTool.WinUI3/Models/DataUse.cs (+24 -0)
PingTool.WinUI3/Models/PingMassage.cs (+32 -0)
PingTool.WinUI3/Package.appxmanifest (+51 -0)

...and 26 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/avikeid2007/Ping-Legacy/pull/12 **Author:** [@avikeid2007](https://github.com/avikeid2007) **Created:** 1/14/2026 **Status:** ✅ Merged **Merged:** 1/14/2026 **Merged by:** [@avikeid2007](https://github.com/avikeid2007) **Base:** `dev` ← **Head:** `avnish/migrateWinUI` --- ### 📝 Commits (7) - [`c29f93d`](https://github.com/avikeid2007/Ping-Legacy/commit/c29f93df5c681c90ee982ef0bb4414aee2d93697) Merge pull request #1 from avikeid2007/dev - [`1c4aeac`](https://github.com/avikeid2007/Ping-Legacy/commit/1c4aeac681cfd65b39610af5373fb24a3d39d9aa) Merge pull request #2 from avikeid2007/dev - [`fb12ac3`](https://github.com/avikeid2007/Ping-Legacy/commit/fb12ac36ea5600b1c8bc60f0f7e8c59748255649) Merge pull request #4 from avikeid2007/dev - [`78b72ef`](https://github.com/avikeid2007/Ping-Legacy/commit/78b72efa276649655baaa8f8887357e2e8158dba) Merge pull request #7 from avikeid2007/dev - [`6818047`](https://github.com/avikeid2007/Ping-Legacy/commit/6818047b45ee1f5fbe5a422bff45dcf00011e1f4) Merge pull request #10 from avikeid2007/dev - [`a7b4fce`](https://github.com/avikeid2007/Ping-Legacy/commit/a7b4fcea9f090bc2ed10f1d47e28a7d9b0aedbd9) Update README.md - [`fd03f07`](https://github.com/avikeid2007/Ping-Legacy/commit/fd03f07ab0778871e86d5daa42a1ed7ca73728b4) WinUI 3 modernization: new shell, theming, and features ### 📊 Changes **46 files changed** (+2987 additions, -4 deletions) <details> <summary>View changed files</summary> ➕ `PingTool.WinUI3.sln` (+40 -0) ➕ `PingTool.WinUI3/App.xaml` (+18 -0) ➕ `PingTool.WinUI3/App.xaml.cs` (+39 -0) ➕ `PingTool.WinUI3/Assets/DefaultIcon.png` (+0 -0) ➕ `PingTool.WinUI3/Assets/LockScreenLogo.scale-200.png` (+0 -0) ➕ `PingTool.WinUI3/Assets/SplashScreen.scale-200.png` (+0 -0) ➕ `PingTool.WinUI3/Assets/Square150x150Logo.scale-200.png` (+0 -0) ➕ `PingTool.WinUI3/Assets/Square44x44Logo.scale-200.png` (+0 -0) ➕ `PingTool.WinUI3/Assets/Square44x44Logo.targetsize-24_altform-unplated.png` (+0 -0) ➕ `PingTool.WinUI3/Assets/StoreLogo.png` (+0 -0) ➕ `PingTool.WinUI3/Assets/Wide310x150Logo.scale-200.png` (+0 -0) ➕ `PingTool.WinUI3/Converters/TextColorConverter.cs` (+37 -0) ➕ `PingTool.WinUI3/Helpers/FileHelper.cs` (+34 -0) ➕ `PingTool.WinUI3/Helpers/NavHelper.cs` (+19 -0) ➕ `PingTool.WinUI3/Helpers/SQLiteHelper.cs` (+86 -0) ➕ `PingTool.WinUI3/MainWindow.xaml` (+10 -0) ➕ `PingTool.WinUI3/MainWindow.xaml.cs` (+17 -0) ➕ `PingTool.WinUI3/Models/DataUse.cs` (+24 -0) ➕ `PingTool.WinUI3/Models/PingMassage.cs` (+32 -0) ➕ `PingTool.WinUI3/Package.appxmanifest` (+51 -0) _...and 26 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-03 00:05:53 +03:00
Sign in to join this conversation.
No labels
pull-request
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/Ping-Legacy#14
No description provided.