ge0rdi
7770e3b98b
Make FixFolderScroll available in all Windows versions ( #1887 )
2024-03-30 18:11:32 +01:00
ge0rdi
211d12be70
Don't install new Immersive skin on Windows 7
...
It uses metro colors so it works only on Win8+.
https://github.com/Open-Shell/Open-Shell-Menu/discussions/1866#discussioncomment-8906191
2024-03-25 20:10:34 +01:00
ge0rdi
ccf14504c9
Install new Immersive skin on all systems
...
There is no need to limit it just to Win10+ as it works well also on
older Windows.
https://github.com/Open-Shell/Open-Shell-Menu/discussions/1866
2024-03-13 19:54:52 +01:00
floppyD
d105c2567e
Update pt-BR localization ( #1846 )
2024-02-18 12:17:09 +01:00
Lixkote
7e83c56d80
Update Start Menu style previews.
...
Update the old blurry start menu previews to a more modern pixel-perfect ones that resemble the new default immersive skin.
2024-02-17 12:48:58 +01:00
ge0rdi
8359cfcc81
Fix potential division by zero in DetectGrayscaleImage ( #1696 )
2023-09-13 10:27:02 +02:00
ge0rdi
aac293832c
Avoid recursive Start menu initialization ( #1675 )
...
It may happen that during `InitStartMenuDLL` execution some component
posts a message that is then intercepted by (still active) `HookInject`
that will call `InitStartMenuDLL` again (and everything will repeat).
To prevent such endless recursion during initialization, we will make
sure that `InitStartMenuDLL` will be executed just once.
2023-08-24 20:55:13 +02:00
ge0rdi
422b0481bc
Rename Align to corner of the screen setting to Align to edge of taskbar
...
The setting was improperly named and evoked that custom button should be
"moved" to the corner of screen even for center aligned taskbar on Windows 11.
What the setting does (and always did) is to align button to the edge of
taskbar (e.g. bottom edge in case of bottom taskbar) instead of centering it.
Hopefully it will be now more clear.
2023-08-24 11:42:26 +02:00
ge0rdi
c517e21465
Display "Searching..." progress always
...
Commit be8568c that introduced option to disable "See more results" also
changed behavior of "Searching..." item that indicates search in progress.
We will now make sure that the search progress indicator is displayed
always. No matter of options.
2023-08-16 15:39:47 +02:00
ge0rdi
8f1a696e94
Fix search results overlapping ( #1648 )
...
Changes in be8568 commit caused that under certain circumstances search
results may overlap "Search the Internet" item.
2023-08-16 15:39:47 +02:00
ge0rdi
4047d726ac
Fix checkboxes in settings dialog with custom themes ( #1630 )
2023-08-16 15:39:47 +02:00
ge0rdi
4b26b4d9e6
Allow negative horizontal/vertical menu offsets ( #1629 )
...
Menu offsets were previously applied to s_MainMenuLimits.
Though when deciding where to put start menu (CalculateCorner) we are
now taking into account also position of start button (as since Win11 it
may not be in corner of the screen).
This broke negative menu offsets.
We will fix it by applying menu offsets in CalculateCorner as a last
step once we have determined start menu position.
This should make even more sense than previous approach.
2023-08-16 15:39:47 +02:00
ge0rdi
2f251c4f63
Separate taskbar icon for Open-Shell menu settings dialog
...
It will be now separate from Explorer's icons in taskbar.
Open-Shell icon will be displayed for better clarity.
https://github.com/Open-Shell/Open-Shell-Menu/issues/31#issuecomment-1656611895
2023-08-16 15:39:47 +02:00
ge0rdi
f897241a08
Use nlohmann.json NuGet package instead of direct file
...
This way it will be easier to update to new version (when released).
And it will be also clear that we have dependency on this 3rd party
library.
2023-07-26 12:05:44 +02:00
ge0rdi
bbe2aa5d2f
Setup: Change symbols package name to OpenShellSymbols_*
...
This way it will be nicely sorted after main OpenShellSetup_* package in assets page.
2023-07-24 18:37:35 +02:00
ge0rdi
12f1742f71
Show shutdown warning if there are multiple users logged in ( #1303 )
2023-07-24 18:09:49 +02:00
ge0rdi
931e5e831f
Setup: Upload Utility.exe artifact
...
Utility tool can be used for multiple purposes - like enabling logging,
or manual uninstall.
We will upload and deploy it along other binaries.
2023-07-19 19:45:45 +02:00
ge0rdi
6c6e1515ef
Utility: Various fixes
...
* Add files/keys from more recent Open-Shell versions
* Fix website links
2023-07-19 19:44:50 +02:00
ge0rdi
b2b734f295
Update BUILDME.txt
...
Update WiX version used for builds.
2023-07-07 09:15:15 +02:00
ge0rdi
9800b03b63
Remove GetDocRelativePath function
...
Help is always located in the same folder as binary that is using it.
2023-06-10 21:50:46 +02:00
ge0rdi
4377817bef
Copy *L10N.ini files to output folder
...
So that they can be used during debugging.
2023-06-10 21:50:46 +02:00
ge0rdi
8fee436996
Build: Change output paths
...
All output (and intermediate) files will go to folder outside of source tree.
2023-06-10 21:50:46 +02:00
ge0rdi
9f949dd99b
Remove old updating mechanism
...
We have our own updating already and don't plan to use old one.
There is no need to keep it around.
2023-06-09 17:52:18 +02:00
ge0rdi
714c98130a
Simplify project files
...
Put common build settings into separate props file.
This way it will be much easier to do changes that should affect all
projects in the future.
2023-06-09 17:52:18 +02:00
ge0rdi
fc79fb76c1
Add menu animation fps logging
2023-06-09 14:08:22 +02:00
ge0rdi
9878f02f70
Improve menu animation timing
...
Use steady_clock with 1ms resolution instead of GetTickCount that has typical resolution 10-16ms.
This should result in more smooth menu animations.
2023-06-09 14:08:22 +02:00
ge0rdi
9c149334fa
Properly round font size
...
Use MulDiv for proper rounding to nearest integer.
Fixes #1547 .
2023-05-27 13:33:41 +02:00
ge0rdi
2130047bd6
Prevent potential Explorer crash
...
Fixes #1523
2023-04-09 19:07:58 +02:00
vodek3
bcc76dd6ab
Help: Add custom button tutorial
...
Based on original Classic Shell tutorial:
http://www.classicshell.net/tutorials/buttontutorial.html
2023-02-07 19:54:54 +01:00
vodek3
e7bbe0e235
Help: Add skinning tutorial
...
Based on original Classic Shell tutorial:
http://www.classicshell.net/tutorials/skintutorial.html
2023-02-07 19:54:54 +01:00
vodek3
8ffed5651d
Help: Change title of help window
2023-02-07 19:54:54 +01:00
vodek3
faa666b54d
Skin: Adding the ability to localize Immersive/Immersive7 skins
2023-02-07 19:54:54 +01:00
ge0rdi
42aaaed045
Don't show first-time settings dialog if settings were imported from XML already ( #1319 )
2023-02-07 16:22:31 +01:00
ge0rdi
4705b35694
Fix Aero button alignment on multiple monitors ( #1310 )
...
Shift Aero button slightly when it is positioned in corner of any
monitor (not just primary one).
Moreover this shift should be done only for top/bottom taskbar.
2023-02-03 08:55:26 +01:00
ge0rdi
073035bee9
Override SearchFiles description in ADML
...
So that it will not depend on whether Windows Search service is running or not.
Fixes #1318
2023-01-31 14:05:18 +01:00
ge0rdi
ab4771e015
Setup: Don't install Classic IE by default
...
IE was deprecated long ago. There is no need to install Classic IE by
default.
Users will be still able to install it if they want.
2023-01-30 19:34:23 +01:00
ge0rdi
d0ad10429f
Skin: Suppress warning regarding use of wildcards in project files
...
Skin projects are created just once and then they are not supposed to be
changed (from within VS).
So we can mark them as _read only_ projects.
https://learn.microsoft.com/en-us/cpp/build/reference/vcxproj-files-and-wildcards?view=msvc-170
2023-01-29 16:11:38 +01:00
ge0rdi
21eea53dfd
Properly scale default skin font according to DPI ( #1110 )
...
Original fix introduced in 528d15 was not correct.
The problem is that `SystemParametersInfo` uses DPI that current session
started with.
We should use `SystemParametersInfoForDpi` (available since Win10 1607)
that returns properly scaled font size.
Fixes #1110
2023-01-19 08:27:02 +01:00
ge0rdi
2d6fb1f3bb
Setup: Recognize also /h and /help parameters ( #1278 )
...
Otherwise they will get passed to `msiexec` that will display its help
window that may confuse our users (as they expect our help to be displayed).
2023-01-13 16:42:16 +01:00
ge0rdi
528d15e6c9
Properly scale default skin font according to DPI ( #1110 )
...
If skin doesn't specify font to be used (such as `Classic Skin`) we will
use default system font (used for menus).
But we didn't scale the font size according to DPI.
This commit will fix that.
Fixes #1110
2023-01-13 16:42:16 +01:00
ge0rdi
615fe66544
Start menu keyboard hotkey fix for Win11 Insider ( #1165 )
...
Windows 11 Insider builds started to register global shell hotkey for
Win key (and Ctrl+Esc) that are used to trigger start menu.
The problem is that it is not (easily) possible to intercept messages
about these hotkeys.
Thus we will unregister them during init and install hook that will
prevent their further registration.
Fixes #1165
2023-01-13 16:42:16 +01:00
Eli Farmer
ecd17cb628
New default Immersive skin for Win10/11 ( #538 )
...
Fixes #538
2023-01-06 18:05:01 +01:00
ge0rdi
134b414f0b
Use proper modern settings icon ( #495 )
...
Fixes #495
2023-01-06 18:05:01 +01:00
ge0rdi
421f55192e
Properly scale modern task icons ( #518 )
...
Fixes #518
2023-01-06 18:05:01 +01:00
ge0rdi
cf763d3a32
Optimize main icon for size
...
Bigger icons are stored as PNG.
2023-01-06 18:05:01 +01:00
ge0rdi
4a417cc02c
Skin: Common skin project props
2023-01-06 18:05:01 +01:00
Mr-Update
c6924a8b92
Update StartMenuL10N.ini (German)
2023-01-02 20:42:26 +01:00
ge0rdi
344aa60893
Select Apps icon based on Windows version
...
We now have nicer Apps icons for Win10/11 so we will select proper icon
based on Windows version.
2022-12-30 18:14:22 +01:00
Eli Farmer
7f492f3a9f
Modern looking icons for Apps folder on Win10/11.
2022-12-30 18:14:22 +01:00
ge0rdi
1c95f17460
Fixed typo [skip ci]
2022-12-29 10:24:53 +01:00