Skip to content

Commit

Permalink
feat: 支持长路径 (#960)
Browse files Browse the repository at this point in the history
  • Loading branch information
Blinue authored Jun 30, 2024
1 parent c24c32e commit bc3f7a9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion src/Magpie/app.manifest
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@
<windowsSettings>
<!-- 使程序可以枚举到沉浸式窗口(immersive windows),如很多类名为 “Windows.UI.Core.CoreWindow” 的系统窗口 -->
<disableWindowFiltering xmlns="http://schemas.microsoft.com/SMI/2011/WindowsSettings">true</disableWindowFiltering>
<!-- 表示程序可以感知 DPI 缩放。PerMonitorV2 在 Win10 v1703 中引入 -->
<!-- 使程序可以感知 DPI 缩放。PerMonitorV2 在 Win10 v1703 中引入 -->
<dpiAwareness xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">PerMonitorV2</dpiAwareness>
<!-- 表示程序支持长度大于 MAX_PATH 的路径,但用户需要修改注册表才能起作用 -->
<longPathAware xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">true</longPathAware>
<!-- 在 Win10 v2004 和更高版本中启用 Segment Heap,这可以有效减少内存占用,但会稍微降低性能 -->
<heapType xmlns="http://schemas.microsoft.com/SMI/2020/WindowsSettings">SegmentHeap</heapType>
</windowsSettings>
Expand Down
4 changes: 3 additions & 1 deletion src/TouchHelper/app.manifest
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@

<application xmlns="urn:schemas-microsoft-com:asm.v3">
<windowsSettings>
<!-- 表示程序可以感知 DPI 缩放。PerMonitorV2 在 Win10 v1703 中引入 -->
<!-- 使程序可以感知 DPI 缩放。PerMonitorV2 在 Win10 v1703 中引入 -->
<dpiAwareness xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">PerMonitorV2</dpiAwareness>
<!-- 表示程序支持长度大于 MAX_PATH 的路径,但用户需要修改注册表才能起作用 -->
<longPathAware xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">true</longPathAware>
<!-- 在 Win10 v2004 和更高版本中启用 Segment Heap,这可以有效减少内存占用,但会稍微降低性能 -->
<heapType xmlns="http://schemas.microsoft.com/SMI/2020/WindowsSettings">SegmentHeap</heapType>
</windowsSettings>
Expand Down
4 changes: 3 additions & 1 deletion src/Updater/app.manifest
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@

<application xmlns="urn:schemas-microsoft-com:asm.v3">
<windowsSettings>
<!-- 表示程序可以感知 DPI 缩放。PerMonitorV2 在 Win10 v1703 中引入 -->
<!-- 使程序可以感知 DPI 缩放。PerMonitorV2 在 Win10 v1703 中引入 -->
<dpiAwareness xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">PerMonitorV2</dpiAwareness>
<!-- 表示程序支持长度大于 MAX_PATH 的路径,但用户需要修改注册表才能起作用 -->
<longPathAware xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">true</longPathAware>
<!-- 在 Win10 v2004 和更高版本中启用 Segment Heap,这可以有效减少内存占用,但会稍微降低性能 -->
<heapType xmlns="http://schemas.microsoft.com/SMI/2020/WindowsSettings">SegmentHeap</heapType>
</windowsSettings>
Expand Down

0 comments on commit bc3f7a9

Please sign in to comment.