File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ Source: "{#ExeDir}x86\SoundSwitch.exe"; DestDir: "{app}"; Check: not Is64BitIns
68
68
Source : " {#ExeDir}x86\*.dll" ; DestDir : " {app} " ; Check : not Is64BitInstallMode
69
69
Source : " {#ExeDir}x86\fr\*.dll" ; DestDir : " {app} \fr" ; Check : not Is64BitInstallMode
70
70
71
- Source : " {#ExeDir}CHANGELOG.md " ; DestDir : " {app} "
71
+ Source : " {#ExeDir}Changelog.html " ; DestDir : " {app} "
72
72
Source : " {#ExeDir}Readme.html" ; DestDir : " {app} "
73
73
74
74
[Registry]
@@ -82,6 +82,7 @@ Name: "{commondesktop}\{#MyAppSetupName}"; Filename: "{app}\SoundSwitch.exe"; Ta
82
82
[Run]
83
83
Filename : " {app} \SoundSwitch.exe" ; Description : " {cm:LaunchProgram,{#MyAppSetupName}}" ; Flags : nowait postinstall
84
84
Filename : " {app} \Readme.html" ; Description : " View the README file" ; Flags : postinstall shellexec skipifsilent
85
+ Filename : " {app} \Changelog.html" ; Description : " View the CHANGELOG file" ; Flags : postinstall shellexec skipifsilent unchecked
85
86
86
87
[CustomMessages]
87
88
win_sp_title= Windows %1 Service Pack %2
Original file line number Diff line number Diff line change 44
44
45
45
if " %builderror% " == " 1" echo error: build failed & goto Quit
46
46
47
- echo " Copy Changelog"
48
- xcopy /y CHANGELOG.md %finalDir% 1 > nul 2 > nul
47
+ echo " Generate Changelog"
48
+ cmd.exe /c markdown-html CHANGELOG.md -o %finalDir% \Changelog.html > NUL
49
49
50
50
echo " Generate README"
51
51
cmd.exe /c markdown-html README.md -o %finalDir% \Readme.html > NUL
You can’t perform that action at this time.
0 commit comments