This commit is contained in:
yuejiajun 2025-08-19 11:26:23 +08:00
parent a439414753
commit 8e466e7d4f
6 changed files with 25 additions and 25 deletions

View File

@ -1,7 +1,7 @@
;iss
#define MyAppName "基础环境"
#define MyAppVersion "1.0.0"
#define MyAppVersion "1.0.1"
#define MyAppPublisher "X"
#define MyAppURL "~"
#define MyAppExeName "command"
@ -18,7 +18,7 @@
; 默认配置
[Setup]
; 不得复用每个应用必须有唯一AppId
AppId={{517C2278-C7C9-43D0-8E94-BFD2039C7BB8}
AppId={{517C2278-C7C9-43D0-8E94-BFD2039C1690}
; 默认安装路径
DefaultDirName={autopf}\{#MyAppFirstPath}
; 是否加密
@ -88,12 +88,12 @@ Name: "custom"; Description: "自定义组件安装"; Flags: iscustom;
[Components]
;; ============================================== 自定义组件的 Types 可以不参与任何固定式 ==============================================
Name: "MainApp"; Description: "{#MyAppName}主程序"; Types: full mini; Flags: checkablealone;
Name: "JDK"; Description: "JDK程序"; Types: full; Flags: checkablealone;
Name: "Redis"; Description: "Redis程序"; Types: full; Flags: checkablealone;
Name: "MinIO"; Description: "MinIO程序"; Types: full; Flags: checkablealone;
Name: "RocketMQ"; Description: "RocketMQ程序"; Types: full; Flags: checkablealone;
Name: "Nginx"; Description: "Nginx程序"; Types: full; Flags: checkablealone;
Name: "MySQL"; Description: "MySQL程序"; Types: full; Flags: checkablealone;
Name: "JDK"; Description: "JDK"; Types: full; Flags: checkablealone;
Name: "Redis"; Description: "Redis"; Types: full; Flags: checkablealone;
Name: "MinIO"; Description: "MinIO"; Types: full; Flags: checkablealone;
Name: "RocketMQ"; Description: "RocketMQ"; Types: full; Flags: checkablealone;
Name: "Nginx"; Description: "Nginx"; Types: full; Flags: checkablealone;
Name: "MySQL"; Description: "MySQL"; Types: full; Flags: checkablealone;
;; 引入文件列表

View File

@ -1,7 +1,7 @@
;iss
#define MyAppName "基础环境"
#define MyAppVersion "1.0.0"
#define MyAppVersion "1.0.1"
#define MyAppPublisher "X"
#define MyAppURL "~"
#define MyAppExeName "command"

View File

@ -1,7 +1,7 @@
;iss
#define MyAppName "效能评估"
#define MyAppVersion "1.0.0"
#define MyAppVersion "1.0.1"
#define MyAppPublisher "X"
#define MyAppURL "~"
#define MyAppExeName "eval"
@ -101,24 +101,24 @@ Name: Data; Description: {#MyAppName} Data; Types: full;
;; 安装包引入文件列表
[Files]
; 后端工程+启动器
;Source: "Resources\{#MyAppExeName}.exe"; DestDir: "{app}\{#MyAppExeName}"; Flags: ignoreversion; Components: Starter
;Source: "Resources\{#MyAppExeName}-console.exe"; DestDir: "{app}\{#MyAppExeName}"; Flags: ignoreversion; Components: Starter
;Source: "Resources\{#MyAppExeName}-x64.exe"; DestDir: "{app}\{#MyAppExeName}"; Flags: ignoreversion; Components: Starter
;Source: "Resources\{#MyAppExeName}-x86.exe"; DestDir: "{app}\{#MyAppExeName}"; Flags: ignoreversion; Components: Starter
;Source: "Resources\patch.exe"; DestDir: "{app}\{#MyAppExeName}"; Flags: ignoreversion; Components: Starter
;Source: "{#MyAppResources}\{#MyAppExeName}.exe"; DestDir: "{app}\{#MyAppExeName}"; Flags: ignoreversion; Components: Starter
;Source: "{#MyAppResources}\{#MyAppExeName}-console.exe"; DestDir: "{app}\{#MyAppExeName}"; Flags: ignoreversion; Components: Starter
;Source: "{#MyAppResources}\{#MyAppExeName}-x64.exe"; DestDir: "{app}\{#MyAppExeName}"; Flags: ignoreversion; Components: Starter
;Source: "{#MyAppResources}\{#MyAppExeName}-x86.exe"; DestDir: "{app}\{#MyAppExeName}"; Flags: ignoreversion; Components: Starter
;Source: "{#MyAppResources}\patch.exe"; DestDir: "{app}\{#MyAppExeName}"; Flags: ignoreversion; Components: Starter
Source: "Resources\{#MyAppExeName}.bat"; DestDir: "{app}\{#MyAppExeName}"; DestName: "{#MyAppExeName}.bat"; Flags: ignoreversion; Components: Starter
Source: "Resources\server\demo-0.0.1.jar"; DestDir: "{app}\{#MyAppExeName}\bin"; Flags: ignoreversion; Components: Server
Source: "{#MyAppResources}\{#MyAppExeName}.bat"; DestDir: "{app}\{#MyAppExeName}"; DestName: "{#MyAppExeName}.bat"; Flags: ignoreversion; Components: Starter
Source: "{#MyAppResources}\server\demo-0.0.1.jar"; DestDir: "{app}\{#MyAppExeName}\bin"; Flags: ignoreversion; Components: Server
Source: "Resources\lib\*"; DestDir: "{app}\eval\lib"; Flags: ignoreversion recursesubdirs createallsubdirs; Components: Server
Source: "Resources\fonts\*"; DestDir: "{app}\eval\fonts"; Flags: ignoreversion recursesubdirs createallsubdirs; Components: Server
Source: "{#MyAppResources}\lib\*"; DestDir: "{app}\eval\lib"; Flags: ignoreversion recursesubdirs createallsubdirs; Components: Server
Source: "{#MyAppResources}\fonts\*"; DestDir: "{app}\eval\fonts"; Flags: ignoreversion recursesubdirs createallsubdirs; Components: Server
; 更新数据库脚本
Source: "Resources\script\*"; DestDir: "{app}\{#MyAppExeName}\script"; Flags: ignoreversion recursesubdirs createallsubdirs; Components: Data
Source: "{#MyAppResources}\script\*"; DestDir: "{app}\{#MyAppExeName}\script"; Flags: ignoreversion recursesubdirs createallsubdirs; Components: Data
; 前端工程 + Nginx
Source: "Resources\web\*"; DestDir: "{app}\{#MyAppExeName}\web"; Flags: ignoreversion recursesubdirs createallsubdirs; Components: Starter;
Source: "Resources\dist\*"; DestDir: "{app}\{#MyAppExeName}\web\dist"; Flags: ignoreversion recursesubdirs createallsubdirs; Components: UI;
Source: "{#MyAppResources}\web\*"; DestDir: "{app}\{#MyAppExeName}\web"; Flags: ignoreversion recursesubdirs createallsubdirs; Components: Starter;
Source: "{#MyAppResources}\dist\*"; DestDir: "{app}\{#MyAppExeName}\web\dist"; Flags: ignoreversion recursesubdirs createallsubdirs; Components: UI;

View File

@ -1,7 +1,7 @@
;iss
#define MyAppName "模型管理"
#define MyAppVersion "1.0.0"
#define MyAppVersion "1.0.1"
#define MyAppPublisher "X"
#define MyAppURL "~"
#define MyAppExeName "model"

View File

@ -1,7 +1,7 @@
;iss
#define MyAppName "想定筹划"
#define MyAppVersion "1.0.0"
#define MyAppVersion "1.0.1"
#define MyAppPublisher "X"
#define MyAppURL "~"
#define MyAppExeName "scenario"

View File

@ -1,7 +1,7 @@
;iss
#define MyAppName "仿真实验"
#define MyAppVersion "1.0.0"
#define MyAppVersion "1.0.1"
#define MyAppPublisher "X"
#define MyAppURL "~"
#define MyAppExeName "simulation"