You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Better file sizes in Explorer details v1.5.1 (#4462)
* Fixed the IEC terms option not working in some cases.
* Fixed slow file list loading with mapped network drives.
* Excluded msedgewebview2.exe to work around a reported incompatibility with Bitdefender which could cause the Start menu search to load indefinitely.
* Excluded Windhawk as an additional safety measure to allow disabling the mod if it's stuck on init.
Copy file name to clipboardExpand all lines: mods/explorer-details-better-file-sizes.wh.cpp
+98-28Lines changed: 98 additions & 28 deletions
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
1
// ==WindhawkMod==
2
2
// @id explorer-details-better-file-sizes
3
3
// @name Better file sizes in Explorer details
4
-
// @description Optional improvements: show folder sizes, use MB/GB for large files (by default, all sizes are shown in KBs), use IEC terms (such as KiB instead of KB)
5
-
// @version 1.5
4
+
// @description Enhances file size display in Explorer details with folder sizes, human-readable units (MB/GB), and optional IEC notation (KiB/MiB)
5
+
// @version 1.5.1
6
6
// @author m417z
7
7
// @github https://github.com/m417z
8
8
// @twitter https://twitter.com/m417z
@@ -15,6 +15,9 @@
15
15
// @exclude SearchHost.exe
16
16
// @exclude ShellExperienceHost.exe
17
17
// @exclude StartMenuExperienceHost.exe
18
+
// @exclude msedgewebview2.exe
19
+
// @exclude windhawk.exe
20
+
// @exclude *\UI\VSCodium.exe
18
21
// @compilerOptions -lole32 -loleaut32 -lpropsys
19
22
// ==/WindhawkMod==
20
23
@@ -65,7 +68,7 @@ To show folder sizes via "Everything" integration:
65
68
66
69
* "Everything" must be running for the integration to work.
67
70
* Both "Everything" 1.4 and [1.5
68
-
Alpha](https://www.voidtools.com/forum/viewtopic.php?t=9787) are supported.
71
+
Beta](https://www.voidtools.com/forum/viewtopic.php?t=9787) are supported.
69
72
With version 1.5.0.1384a or newer, the mod uses the new [Everything
70
73
SDK3](https://www.voidtools.com/forum/viewtopic.php?t=15853), which results in
71
74
a much faster folder size query (can be around 20x faster).
0 commit comments