Skip to content

Commit

Permalink
Fix Inno Setup
Browse files Browse the repository at this point in the history
  • Loading branch information
mxd authored Feb 5, 2024
1 parent f93104c commit cc0c904
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions Setup.iss
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
; 脚本由 Inno Setup 脚本向导 生成!
; 有关创建 Inno Setup 脚本文件的详细资料请查阅帮助文档!
; 脚本由 Inno Setup 脚本向导 生成!
; 有关创建 Inno Setup 脚本文件的详细资料请查阅帮助文档!
; 此脚本仅供参考,请勿直接使用此脚本,否则APP将会有错误的打包!
; Inno Setup 脚本 Fix
; Date:2024/02/05

#define MyAppName "Browser"
#define MyAppVersion "1.0"
#define MyAppPublisher "mxdabc"
#define MyAppURL "https://browser.mxdyeah.top/"
#define MyAppURL "https://app.imxd.top/cgi-bin/pyqt5-browser.html"
#define MyAppExeName "Browser.exe"

[Setup]
; 注: AppId的值为单独标识该应用程序。
; 不要为其他安装程序使用相同的AppId值。
; (若要生成新的 GUID,可在菜单中点击 "工具|生成 GUID"。)
; 注: AppId的值为单独标识该应用程序。
; 不要为其他安装程序使用相同的AppId值。
; (若要生成新的 GUID,可在菜单中点击 "工具|生成 GUID"。)
AppId={{DEADCC1E-CB6A-49E7-AD51-5ADAEB36081B}
AppName={#MyAppName}
AppVersion={#MyAppVersion}
Expand All @@ -22,7 +25,8 @@ AppUpdatesURL={#MyAppURL}
DefaultDirName={autopf}\{#MyAppName}
DisableProgramGroupPage=yes
LicenseFile=h:\w10Users\1\Downloads\LICENSE.txt
; 以下行取消注释,以在非管理安装模式下运行(仅为当前用户安装)。
; 以下行取消注释,以在非管理安装模式下运行(仅为当前用户安装)。
; 注释是小写分号,不要写错了
;PrivilegesRequired=lowest
PrivilegesRequiredOverridesAllowed=dialog
OutputDir=h:\w10Users\1\Downloads
Expand Down Expand Up @@ -117,7 +121,7 @@ Source: "h:\w10Users\1\Documents\code\pythonOUT\Browser\VCRUNTIME140_1.dll"; Des
Source: "h:\w10Users\1\Documents\code\pythonOUT\Browser\win32api.pyd"; DestDir: "{app}"; Flags: ignoreversion
Source: "h:\w10Users\1\Documents\code\pythonOUT\Browser\win32trace.pyd"; DestDir: "{app}"; Flags: ignoreversion
Source: "h:\w10Users\1\Documents\code\pythonOUT\Browser\win32ui.pyd"; DestDir: "{app}"; Flags: ignoreversion
; 注意: 不要在任何共享系统文件上使用“Flags: ignoreversion”
; 注意: 不要在任何共享系统文件上使用“Flags: ignoreversion”

[Icons]
Name: "{autoprograms}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
Expand Down

0 comments on commit cc0c904

Please sign in to comment.