新的提交

This commit is contained in:
cc
2026-01-10 13:01:37 +08:00
commit 01641834de
188 changed files with 34865 additions and 0 deletions

18
installer.nsh Normal file
View File

@@ -0,0 +1,18 @@
; 高 DPI 支持
ManifestDPIAware true
!include "WordFunc.nsh"
!macro customInit
; 设置 DPI 感知
System::Call 'USER32::SetProcessDPIAware()'
!macroend
; 在安装开始前修正安装目录
!macro preInit
; 如果安装目录不以 WeFlow 结尾,自动追加
${WordFind} "$INSTDIR" "\" "-1" $R0
${If} $R0 != "WeFlow"
StrCpy $INSTDIR "$INSTDIR\WeFlow"
${EndIf}
!macroend