[PR #17] [MERGED] Version 1.3.2.0 #19

Closed
opened 2026-09-04 00:46:02 +02:00 by Stone_Red · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Stone-Red-Code/DesktopMagic/pull/17
Author: @Stone-Red-Code
Created: 4/21/2026
Status: Merged
Merged: 4/21/2026
Merged by: @Stone-Red-Code

Base: mainHead: develop


📝 Commits (5)

  • 3d98c8b Set MainWindow.Topmost based on editMode in SetEditMode method
  • 3683e75 Add update dialog showing latest release info after app update
  • 2916f09 Add meeting countdown and agenda plugins
  • 51b4f15 Set TextWrapping to NoWrap and enforce MaxWidth of 200 on controls
  • 2c82c93 Update version in manifest and update installer

📊 Changes

17 files changed (+858 additions, -13 deletions)

View changed files

📝 installer/DesktopMagic-Installer.exe (+0 -0)
📝 src/DesktopMagic/App.xaml (+5 -2)
src/DesktopMagic/BuiltInPlugins/AgendaPlugin.cs (+279 -0)
src/DesktopMagic/BuiltInPlugins/NextMeetingCountdownPlugin.cs (+233 -0)
📝 src/DesktopMagic/DesktopMagic.csproj (+5 -3)
src/DesktopMagic/Dialogs/ReleaseInfoDialog.xaml (+48 -0)
src/DesktopMagic/Dialogs/ReleaseInfoDialog.xaml.cs (+40 -0)
src/DesktopMagic/Helpers/GitHubReleaseService.cs (+51 -0)
src/DesktopMagic/Helpers/IcsCalendarHelper.cs (+89 -0)
📝 src/DesktopMagic/Helpers/SettingElementGenerator.cs (+1 -1)
📝 src/DesktopMagic/MainWindow.xaml.cs (+80 -2)
📝 src/DesktopMagic/Manager.cs (+6 -1)
📝 src/DesktopMagic/Pages/MainPage.xaml.cs (+1 -0)
📝 src/DesktopMagic/Resources/Strings/StringResources.de.xaml (+8 -1)
📝 src/DesktopMagic/Resources/Strings/StringResources.en.xaml (+8 -1)
📝 src/DesktopMagic/Settings/DesktopMagicSettings.cs (+3 -1)
📝 src/MsixPackaging/Package.appxmanifest (+1 -1)

📄 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/Stone-Red-Code/DesktopMagic/pull/17 **Author:** [@Stone-Red-Code](https://github.com/Stone-Red-Code) **Created:** 4/21/2026 **Status:** ✅ Merged **Merged:** 4/21/2026 **Merged by:** [@Stone-Red-Code](https://github.com/Stone-Red-Code) **Base:** `main` ← **Head:** `develop` --- ### 📝 Commits (5) - [`3d98c8b`](https://github.com/Stone-Red-Code/DesktopMagic/commit/3d98c8b196ac3076df2ec19cbf0183b112d51079) Set MainWindow.Topmost based on editMode in SetEditMode method - [`3683e75`](https://github.com/Stone-Red-Code/DesktopMagic/commit/3683e75a1702357ab361386413ecbd9ada415e25) Add update dialog showing latest release info after app update - [`2916f09`](https://github.com/Stone-Red-Code/DesktopMagic/commit/2916f0983afe50881f85c948103755c798ce15e7) Add meeting countdown and agenda plugins - [`51b4f15`](https://github.com/Stone-Red-Code/DesktopMagic/commit/51b4f15cf1c2b84a0ac33348e9ffad0ff0bfa93a) Set TextWrapping to NoWrap and enforce MaxWidth of 200 on controls - [`2c82c93`](https://github.com/Stone-Red-Code/DesktopMagic/commit/2c82c9373f404bf1f7f8532fa1962b4aecee0239) Update version in manifest and update installer ### 📊 Changes **17 files changed** (+858 additions, -13 deletions) <details> <summary>View changed files</summary> 📝 `installer/DesktopMagic-Installer.exe` (+0 -0) 📝 `src/DesktopMagic/App.xaml` (+5 -2) ➕ `src/DesktopMagic/BuiltInPlugins/AgendaPlugin.cs` (+279 -0) ➕ `src/DesktopMagic/BuiltInPlugins/NextMeetingCountdownPlugin.cs` (+233 -0) 📝 `src/DesktopMagic/DesktopMagic.csproj` (+5 -3) ➕ `src/DesktopMagic/Dialogs/ReleaseInfoDialog.xaml` (+48 -0) ➕ `src/DesktopMagic/Dialogs/ReleaseInfoDialog.xaml.cs` (+40 -0) ➕ `src/DesktopMagic/Helpers/GitHubReleaseService.cs` (+51 -0) ➕ `src/DesktopMagic/Helpers/IcsCalendarHelper.cs` (+89 -0) 📝 `src/DesktopMagic/Helpers/SettingElementGenerator.cs` (+1 -1) 📝 `src/DesktopMagic/MainWindow.xaml.cs` (+80 -2) 📝 `src/DesktopMagic/Manager.cs` (+6 -1) 📝 `src/DesktopMagic/Pages/MainPage.xaml.cs` (+1 -0) 📝 `src/DesktopMagic/Resources/Strings/StringResources.de.xaml` (+8 -1) 📝 `src/DesktopMagic/Resources/Strings/StringResources.en.xaml` (+8 -1) 📝 `src/DesktopMagic/Settings/DesktopMagicSettings.cs` (+3 -1) 📝 `src/MsixPackaging/Package.appxmanifest` (+1 -1) </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
Stone_Red added the pull-request label 2026-09-04 00:46:02 +02:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Stone_Red/DesktopMagic#19