diff --git a/MSIXPkg/Package.appxmanifest b/MSIXPkg/Package.appxmanifest
index 236d1d6..c70b07a 100644
--- a/MSIXPkg/Package.appxmanifest
+++ b/MSIXPkg/Package.appxmanifest
@@ -9,7 +9,7 @@
+ Version="2.4.0.0" />
RainbowTaskbar.
diff --git a/RainbowTaskbar.sln b/RainbowTaskbar.sln
index f1cbbb6..f6639eb 100644
--- a/RainbowTaskbar.sln
+++ b/RainbowTaskbar.sln
@@ -33,10 +33,10 @@ Global
{03366AEB-0D3C-453B-BB5F-50DFB417D325}.Debug|ARM.Build.0 = Debug|Any CPU
{03366AEB-0D3C-453B-BB5F-50DFB417D325}.Debug|ARM64.ActiveCfg = Debug|Any CPU
{03366AEB-0D3C-453B-BB5F-50DFB417D325}.Debug|ARM64.Build.0 = Debug|Any CPU
- {03366AEB-0D3C-453B-BB5F-50DFB417D325}.Debug|x64.ActiveCfg = Debug|Any CPU
- {03366AEB-0D3C-453B-BB5F-50DFB417D325}.Debug|x64.Build.0 = Debug|Any CPU
- {03366AEB-0D3C-453B-BB5F-50DFB417D325}.Debug|x86.ActiveCfg = Debug|Any CPU
- {03366AEB-0D3C-453B-BB5F-50DFB417D325}.Debug|x86.Build.0 = Debug|Any CPU
+ {03366AEB-0D3C-453B-BB5F-50DFB417D325}.Debug|x64.ActiveCfg = Debug|x64
+ {03366AEB-0D3C-453B-BB5F-50DFB417D325}.Debug|x64.Build.0 = Debug|x64
+ {03366AEB-0D3C-453B-BB5F-50DFB417D325}.Debug|x86.ActiveCfg = Debug|x86
+ {03366AEB-0D3C-453B-BB5F-50DFB417D325}.Debug|x86.Build.0 = Debug|x86
{03366AEB-0D3C-453B-BB5F-50DFB417D325}.Release|Any CPU.ActiveCfg = Release|Any CPU
{03366AEB-0D3C-453B-BB5F-50DFB417D325}.Release|Any CPU.Build.0 = Release|Any CPU
{03366AEB-0D3C-453B-BB5F-50DFB417D325}.Release|ARM.ActiveCfg = Release|Any CPU
@@ -45,8 +45,8 @@ Global
{03366AEB-0D3C-453B-BB5F-50DFB417D325}.Release|ARM64.Build.0 = Release|Any CPU
{03366AEB-0D3C-453B-BB5F-50DFB417D325}.Release|x64.ActiveCfg = Release|x64
{03366AEB-0D3C-453B-BB5F-50DFB417D325}.Release|x64.Build.0 = Release|x64
- {03366AEB-0D3C-453B-BB5F-50DFB417D325}.Release|x86.ActiveCfg = Release|Any CPU
- {03366AEB-0D3C-453B-BB5F-50DFB417D325}.Release|x86.Build.0 = Release|Any CPU
+ {03366AEB-0D3C-453B-BB5F-50DFB417D325}.Release|x86.ActiveCfg = Release|x86
+ {03366AEB-0D3C-453B-BB5F-50DFB417D325}.Release|x86.Build.0 = Release|x86
{3FF5D07D-44D1-4B85-9465-4793B3A9EE8A}.Debug|Any CPU.ActiveCfg = Debug|Win32
{3FF5D07D-44D1-4B85-9465-4793B3A9EE8A}.Debug|Any CPU.Build.0 = Debug|Win32
{3FF5D07D-44D1-4B85-9465-4793B3A9EE8A}.Debug|ARM.ActiveCfg = Debug|x64
@@ -116,7 +116,11 @@ Global
{55D00CB5-0D90-4265-BCD1-B5853C499968}.Release|ARM64.Build.0 = Release|ARM64
{55D00CB5-0D90-4265-BCD1-B5853C499968}.Release|ARM64.Deploy.0 = Release|ARM64
{55D00CB5-0D90-4265-BCD1-B5853C499968}.Release|x64.ActiveCfg = Release|x64
+ {55D00CB5-0D90-4265-BCD1-B5853C499968}.Release|x64.Build.0 = Release|x64
+ {55D00CB5-0D90-4265-BCD1-B5853C499968}.Release|x64.Deploy.0 = Release|x64
{55D00CB5-0D90-4265-BCD1-B5853C499968}.Release|x86.ActiveCfg = Release|x86
+ {55D00CB5-0D90-4265-BCD1-B5853C499968}.Release|x86.Build.0 = Release|x86
+ {55D00CB5-0D90-4265-BCD1-B5853C499968}.Release|x86.Deploy.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
diff --git a/RainbowTaskbar/Editor.xaml.cs b/RainbowTaskbar/Editor.xaml.cs
index 03247e2..359b9d4 100644
--- a/RainbowTaskbar/Editor.xaml.cs
+++ b/RainbowTaskbar/Editor.xaml.cs
@@ -82,7 +82,6 @@ private void AppBarButton_Click(object sender, RoutedEventArgs e) {
private void OpenContextMenu_Click(object sender, RoutedEventArgs e) {
var contextMenu = App.trayWindow.TrayIcon.ContextMenu;
Button button = sender as Button;
- contextMenu.PlacementTarget = button;
contextMenu.IsOpen = true;
}
}
\ No newline at end of file
diff --git a/RainbowTaskbar/RainbowTaskbar.csproj b/RainbowTaskbar/RainbowTaskbar.csproj
index 40653ac..c988a28 100644
--- a/RainbowTaskbar/RainbowTaskbar.csproj
+++ b/RainbowTaskbar/RainbowTaskbar.csproj
@@ -4,7 +4,7 @@
WinExe
net6.0-windows
true
- 2.3.2
+ 2.4
https://ad2017.dev/rnb
RainbowTaskbar is a Windows utility to customize the shell taskbar.
Ad2017, zCri
@@ -18,8 +18,8 @@
latest
disable
prompt
- 2.3.2
- 2.3.2
+ 2.4
+ 2.4
False
None
diff --git a/RainbowTaskbar/UserControls/TrayContextMenu.xaml.cs b/RainbowTaskbar/UserControls/TrayContextMenu.xaml.cs
index 13e559c..dcc3107 100644
--- a/RainbowTaskbar/UserControls/TrayContextMenu.xaml.cs
+++ b/RainbowTaskbar/UserControls/TrayContextMenu.xaml.cs
@@ -47,7 +47,7 @@ private void ProjectPage_Click(object sender, RoutedEventArgs e) {
private void Exit_Click(object sender, RoutedEventArgs e) => App.Exit();
private void IssueOrRequest_Click(object sender, RoutedEventArgs e) {
- Process.Start(new ProcessStartInfo("https://github.com/ad2017gd/RainbowTaskbar/issues/new") { UseShellExecute = true });
+ Process.Start(new ProcessStartInfo("https://github.com/ad2017gd/RainbowTaskbar/issues/new/choose") { UseShellExecute = true });
e.Handled = true;
}