fix(打包配置): 添加语言目录配置并修复桌面图标任务选择
在make_config.yaml中添加languages_dir配置项,用于指定语言文件目录 修改inno_setup.sas脚本,在任务选择页面自动勾选桌面图标选项
This commit is contained in:
parent
f97a21be32
commit
e537775e71
@ -144,3 +144,10 @@ begin
|
|||||||
CleanPaths();
|
CleanPaths();
|
||||||
Result := True;
|
Result := True;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
procedure CurPageChanged(CurPageID: Integer);
|
||||||
|
begin
|
||||||
|
if CurPageID = wpSelectTasks then begin
|
||||||
|
WizardSelectTasks('desktopicon', True);
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|||||||
@ -18,3 +18,4 @@ locales:
|
|||||||
- pt
|
- pt
|
||||||
- tr
|
- tr
|
||||||
script_template: inno_setup.sas
|
script_template: inno_setup.sas
|
||||||
|
languages_dir: compiler:Languages
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user