3 Commits

Author SHA1 Message Date
Raphire
342f498344 Bump version 2026-04-05 20:19:31 +02:00
Raphire
6c321f9d97 Remove DisableSearchHighlights from default mode
This is already implicitely disabled with DisableBing
2026-04-05 20:11:32 +02:00
Raphire
69354d823e Fix: block window resizing beyond min. height/width 2026-04-04 22:34:49 +02:00
3 changed files with 1 additions and 6 deletions

View File

@@ -29,10 +29,6 @@
"Name": "DisableStoreSearchSuggestions", "Name": "DisableStoreSearchSuggestions",
"Value": true "Value": true
}, },
{
"Name": "DisableSearchHighlights",
"Value": true
},
{ {
"Name": "DisableCopilot", "Name": "DisableCopilot",
"Value": true "Value": true

View File

@@ -25,7 +25,6 @@ function Show-MainWindow {
mmi.ptMaxSize.x = wa.Width; mmi.ptMaxSize.x = wa.Width;
mmi.ptMaxSize.y = wa.Height; mmi.ptMaxSize.y = wa.Height;
System.Runtime.InteropServices.Marshal.StructureToPtr(mmi, lParam, true); System.Runtime.InteropServices.Marshal.StructureToPtr(mmi, lParam, true);
handled = true;
} }
return System.IntPtr.Zero; return System.IntPtr.Zero;
} }

View File

@@ -108,7 +108,7 @@ param (
# Define script-level variables & paths # Define script-level variables & paths
$script:Version = "2026.04.04" $script:Version = "2026.04.05"
$script:AppsListFilePath = "$PSScriptRoot/Config/Apps.json" $script:AppsListFilePath = "$PSScriptRoot/Config/Apps.json"
$script:DefaultSettingsFilePath = "$PSScriptRoot/Config/DefaultSettings.json" $script:DefaultSettingsFilePath = "$PSScriptRoot/Config/DefaultSettings.json"
$script:FeaturesFilePath = "$PSScriptRoot/Config/Features.json" $script:FeaturesFilePath = "$PSScriptRoot/Config/Features.json"