From a296df3da40a640b71c22b8121e0605d8cd1adf8 Mon Sep 17 00:00:00 2001 From: Markus Hofknecht Date: Sat, 24 Jun 2023 20:01:04 +0200 Subject: [PATCH] Child processes won't elevate (#488), version 1.3.2.2 --- Properties/AssemblyInfo.cs | 4 ++-- README.md | 1 + UserInterface/AppContextMenu.cs | 2 +- Utilities/Log.cs | 1 + 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs index 9bcf6d1..0076f1f 100644 --- a/Properties/AssemblyInfo.cs +++ b/Properties/AssemblyInfo.cs @@ -39,5 +39,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.3.2.1")] -[assembly: AssemblyFileVersion("1.3.2.1")] +[assembly: AssemblyVersion("1.3.2.2")] +[assembly: AssemblyFileVersion("1.3.2.2")] diff --git a/README.md b/README.md index b11401d..8f34214 100644 --- a/README.md +++ b/README.md @@ -293,6 +293,7 @@ Thanks for ideas, reporting issues and contributing! #462 [verdammt89x](https://github.com/verdammt89x), #463 Dirk S., #466 [Dean-Corso](https://github.com/Dean-Corso) +#488 [DailenG](https://github.com/DailenG) Donations diff --git a/UserInterface/AppContextMenu.cs b/UserInterface/AppContextMenu.cs index 597c5a0..e81690c 100644 --- a/UserInterface/AppContextMenu.cs +++ b/UserInterface/AppContextMenu.cs @@ -93,7 +93,7 @@ namespace SystemTrayMenu.Helper aboutBox.AppMoreInfo += "#298 phanirithvij, #306 wini2, #370 dna5589, #372 not-nef, #376 Michelle H., "; aboutBox.AppMoreInfo += "#377 SoenkeHob, #380 #394 TransLucida, #384 #434 #435 boydfields, #386 visusys, #387 #411 #444 yrctw" + Environment.NewLine; aboutBox.AppMoreInfo += "#446 timinformatica, #450 ppt-oldoerp, #453 fubaWoW, #454 WouterVanGoey" + Environment.NewLine; - aboutBox.AppMoreInfo += "#462 verdammt89x, #463 Dirk S., #466 Dean-Corso" + Environment.NewLine; + aboutBox.AppMoreInfo += "#462 verdammt89x, #463 Dirk S., #466 Dean-Corso, #488 DailenG" + Environment.NewLine; aboutBox.AppMoreInfo += @" Sponsors - Thank you! ------------------ diff --git a/Utilities/Log.cs b/Utilities/Log.cs index ada3aa5..ad4015b 100644 --- a/Utilities/Log.cs +++ b/Utilities/Log.cs @@ -168,6 +168,7 @@ namespace SystemTrayMenu.Utilities WorkingDirectory = workingDirectory, CreateNoWindow = createNoWindow, UseShellExecute = true, + Verb = "runas", }, }; p.Start();