[PR #16] [MERGED] Version 1.3.1.0 #18

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

📋 Pull Request Information

Original PR: https://github.com/Stone-Red-Code/DesktopMagic/pull/16
Author: @Stone-Red-Code
Created: 2/6/2026
Status: Merged
Merged: 2/6/2026
Merged by: @Stone-Red-Code

Base: mainHead: develop


📝 Commits (10+)

  • a85e57a Fix titles of dialogs
  • 3dce9ab Add CreatePluginDialog for plugin creation and update search boxes with icons
  • 1b496db Replace TextBox with FileSelector for gif-path plugin setting
  • a438ab5 Add Documentation navigation item with click handler linking to GitHub
  • 9581cc1 Replace all Buttons with icons with ui:Button
  • f84dd20 Update NuGet packages
  • fec2606 Make sure date plugin updates when settings change
  • cd0bcad Add submenu options for bug reporting and feature requests via GitHub or email
  • e3056a3 Update default and post-load info messages for GIF plugin
  • 4133f61 Add customizable date format options

📊 Changes

28 files changed (+404 additions, -127 deletions)

View changed files

📝 installer/DesktopMagic-Installer.exe (+0 -0)
📝 src/DesktopMagic/BuiltInPlugins/DatePlugin.cs (+116 -6)
📝 src/DesktopMagic/BuiltInPlugins/MusicVisualizerPlugin.cs (+14 -1)
📝 src/DesktopMagic/DataContexts/PluginEntryDataContext.cs (+20 -5)
📝 src/DesktopMagic/DesktopMagic.csproj (+8 -8)
📝 src/DesktopMagic/Dialogs/ColorDialog.xaml (+1 -1)
📝 src/DesktopMagic/Dialogs/ColorDialog.xaml.cs (+1 -0)
src/DesktopMagic/Dialogs/CreatePluginDialog.xaml (+55 -0)
src/DesktopMagic/Dialogs/CreatePluginDialog.xaml.cs (+29 -0)
📝 src/DesktopMagic/Dialogs/InputDialog.xaml (+1 -1)
📝 src/DesktopMagic/Dialogs/InputDialog.xaml.cs (+1 -0)
📝 src/DesktopMagic/Dialogs/ThemeDialog.xaml (+1 -1)
📝 src/DesktopMagic/Dialogs/ThemeDialog.xaml.cs (+1 -0)
📝 src/DesktopMagic/MainWindow.xaml (+32 -6)
📝 src/DesktopMagic/MainWindow.xaml.cs (+36 -0)
📝 src/DesktopMagic/Pages/MainPage.xaml (+2 -12)
📝 src/DesktopMagic/Pages/ThemePage.xaml (+5 -18)
📝 src/DesktopMagic/Plugins/PluginEntry.xaml (+2 -12)
📝 src/DesktopMagic/Plugins/PluginManager.xaml (+7 -22)
📝 src/DesktopMagic/Plugins/PluginManager.xaml.cs (+1 -1)

...and 8 more files

📄 Description

Resolves #15


🔄 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/16 **Author:** [@Stone-Red-Code](https://github.com/Stone-Red-Code) **Created:** 2/6/2026 **Status:** ✅ Merged **Merged:** 2/6/2026 **Merged by:** [@Stone-Red-Code](https://github.com/Stone-Red-Code) **Base:** `main` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`a85e57a`](https://github.com/Stone-Red-Code/DesktopMagic/commit/a85e57ad582a01fdb75737627611cca43d5895f5) Fix titles of dialogs - [`3dce9ab`](https://github.com/Stone-Red-Code/DesktopMagic/commit/3dce9ab59a4feee9d56ff4e19820830d0459d449) Add CreatePluginDialog for plugin creation and update search boxes with icons - [`1b496db`](https://github.com/Stone-Red-Code/DesktopMagic/commit/1b496db0943b9914770c460da7465e032a64751f) Replace TextBox with FileSelector for gif-path plugin setting - [`a438ab5`](https://github.com/Stone-Red-Code/DesktopMagic/commit/a438ab547568a77760efde95b306b5518b78d75a) Add Documentation navigation item with click handler linking to GitHub - [`9581cc1`](https://github.com/Stone-Red-Code/DesktopMagic/commit/9581cc185ce8548ec1a91cba74ded0eaa3f7c749) Replace all Buttons with icons with ui:Button - [`f84dd20`](https://github.com/Stone-Red-Code/DesktopMagic/commit/f84dd20eb909cf1e4c5e7dbfdbd8e9ecaa129d15) Update NuGet packages - [`fec2606`](https://github.com/Stone-Red-Code/DesktopMagic/commit/fec26069bef33f19f4ef9c862acc6820360d707e) Make sure date plugin updates when settings change - [`cd0bcad`](https://github.com/Stone-Red-Code/DesktopMagic/commit/cd0bcad181c68ef269757a68e2bb5b24418fd933) Add submenu options for bug reporting and feature requests via GitHub or email - [`e3056a3`](https://github.com/Stone-Red-Code/DesktopMagic/commit/e3056a398a6007d6bd5760c2979f77b4eb24e590) Update default and post-load info messages for GIF plugin - [`4133f61`](https://github.com/Stone-Red-Code/DesktopMagic/commit/4133f61a5c6a4468266e51a848d2e208e643306e) Add customizable date format options ### 📊 Changes **28 files changed** (+404 additions, -127 deletions) <details> <summary>View changed files</summary> 📝 `installer/DesktopMagic-Installer.exe` (+0 -0) 📝 `src/DesktopMagic/BuiltInPlugins/DatePlugin.cs` (+116 -6) 📝 `src/DesktopMagic/BuiltInPlugins/MusicVisualizerPlugin.cs` (+14 -1) 📝 `src/DesktopMagic/DataContexts/PluginEntryDataContext.cs` (+20 -5) 📝 `src/DesktopMagic/DesktopMagic.csproj` (+8 -8) 📝 `src/DesktopMagic/Dialogs/ColorDialog.xaml` (+1 -1) 📝 `src/DesktopMagic/Dialogs/ColorDialog.xaml.cs` (+1 -0) ➕ `src/DesktopMagic/Dialogs/CreatePluginDialog.xaml` (+55 -0) ➕ `src/DesktopMagic/Dialogs/CreatePluginDialog.xaml.cs` (+29 -0) 📝 `src/DesktopMagic/Dialogs/InputDialog.xaml` (+1 -1) 📝 `src/DesktopMagic/Dialogs/InputDialog.xaml.cs` (+1 -0) 📝 `src/DesktopMagic/Dialogs/ThemeDialog.xaml` (+1 -1) 📝 `src/DesktopMagic/Dialogs/ThemeDialog.xaml.cs` (+1 -0) 📝 `src/DesktopMagic/MainWindow.xaml` (+32 -6) 📝 `src/DesktopMagic/MainWindow.xaml.cs` (+36 -0) 📝 `src/DesktopMagic/Pages/MainPage.xaml` (+2 -12) 📝 `src/DesktopMagic/Pages/ThemePage.xaml` (+5 -18) 📝 `src/DesktopMagic/Plugins/PluginEntry.xaml` (+2 -12) 📝 `src/DesktopMagic/Plugins/PluginManager.xaml` (+7 -22) 📝 `src/DesktopMagic/Plugins/PluginManager.xaml.cs` (+1 -1) _...and 8 more files_ </details> ### 📄 Description Resolves #15 --- <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:01 +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#18