Skip to content

Commit

Permalink
Merge branch 'valinet:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
deep-soft authored Apr 24, 2023
2 parents 0026e71 + 6fb998e commit 59c09f4
Show file tree
Hide file tree
Showing 7 changed files with 69 additions and 123 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,27 @@

This document includes the same release notes as in the [Releases](https://github.com/valinet/ExplorerPatcher/releases) section on GitHub.

## 22621.1555.55

Tested on OS build 22621.1555. Installer requires Internet connectivity.

#### Details

##### 1

* Weather: Fixed a bug that prevented the widget from loading when using the Microsoft icon pack. (968d969)

##### 2

* Simple Window Switcher
* Support for individual list and grouping for UWP apps (implemented grouping and naming enhancements based on using information associated with `AppUserModelID`s)
* Ability to switch between global and local window lists when the switcher is shown.
* Maintain position in the list when certain events occur, like closing windows or switching between the global and local window lists.
* `Del` key closes the currently selected window(s).
* Fixed a bug that prevented newly spawned windows while the switcher is open from going to the back of the list.
* Fixed a bug that prevented window lists from building properly when windows were slow to close.
* Fixed a bug that prevented proper activation of pop-up windows under certain conditions. For example, the switcher is now able to correctly switch to the "Error Checking" window in This PC - right click C: - Properties - Tools - Error checking - Check.

## 22621.1413.54

Tested on OS build 22621.1413.
Expand Down
2 changes: 1 addition & 1 deletion ExplorerPatcher/GUI.c
Original file line number Diff line number Diff line change
Expand Up @@ -3143,7 +3143,7 @@ static BOOL GUI_Build(HDC hDC, HWND hwnd, POINT pt)
1,
0
);
swprintf(text + 3, MAX_LINE_LENGTH, L"Disable per-application window list ( Alt + %c )", key);
swprintf(text + 3, MAX_LINE_LENGTH, L"Disable the interaction list for individual apps ( Alt + %c )", key);
}
if (tabOrder == _this->tabOrder)
{
Expand Down
8 changes: 4 additions & 4 deletions ExplorerPatcher/settings.reg
Original file line number Diff line number Diff line change
Expand Up @@ -342,13 +342,13 @@
"AltTabSettings"=dword:00000000
;s WindowSwitcher_SWS IsSWSEnabled
[HKEY_CURRENT_USER\Software\ExplorerPatcher\sws]
;b Include desktop
;b Show the desktop as the last window in the interaction list
"IncludeWallpaper"=dword:00000001
;b Always show on primary monitor
;b Always display switcher on primary monitor
"PrimaryOnly"=dword:00000000
;b Show windows only from current monitor
;b Display windows only from the monitor containing the cursor
"PerMonitor"=dword:00000000
;b Display only the most recent window (per application switcher)
;b Group windows of the same app
"SwitcherIsPerApplication"=dword:00000000
;b %PLACEHOLDER_0001%
"NoPerApplicationList"=dword:00000000
Expand Down
8 changes: 4 additions & 4 deletions ExplorerPatcher/settings10.reg
Original file line number Diff line number Diff line change
Expand Up @@ -255,13 +255,13 @@
"AltTabSettings"=dword:00000000
;t The following settings only apply to the Simple Window Switcher:
[HKEY_CURRENT_USER\Software\ExplorerPatcher\sws]
;b Include desktop
;b Show the desktop as the last window in the interaction list
"IncludeWallpaper"=dword:00000001
;b Always show on primary monitor
;b Always display switcher on primary monitor
"PrimaryOnly"=dword:00000000
;b Show windows only from current monitor
;b Display windows only from the monitor containing the cursor
"PerMonitor"=dword:00000000
;b Display only the most recent window (per application switcher)
;b Group windows of the same app
"SwitcherIsPerApplication"=dword:00000000
;b %PLACEHOLDER_0001%
"NoPerApplicationList"=dword:00000000
Expand Down
Loading

0 comments on commit 59c09f4

Please sign in to comment.