diff options
Diffstat (limited to 'tools/inno.tmpl')
-rwxr-xr-x | tools/inno.tmpl | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tools/inno.tmpl b/tools/inno.tmpl index cc8583779..ce800b1de 100755 --- a/tools/inno.tmpl +++ b/tools/inno.tmpl @@ -3,10 +3,10 @@ # result = "" ; Default Template for NimInst [Setup] -AppName=$c.name -AppVerName=$c.name $c.version +AppName=$c.displayName +AppVerName=$c.displayName $c.version DefaultDirName={code:GiveMeAPath|nimrod} -DefaultGroupName=$c.name +DefaultGroupName=$c.displayName AllowNoIcons=yes LicenseFile=${expandFilename(c.license)} OutputBaseFilename=${c.name}_${c.version} @@ -27,16 +27,16 @@ Source: ${expandFilename(f)}; DestDir: {app}\${splitFile(f).dir}; Flags: ignorev [Icons] #if c.app == appConsole: -Name: {group}\Console for $c.name; Filename: {cmd} +Name: {group}\Console for $c.displayName; Filename: {cmd} #else: -Name: {group}\$c.name; Filename: {app} +Name: {group}\$c.displayName; Filename: {app} #end if Name: {group}\Documentation; Filename: {app}\doc\overview.html -Name: {group}\{cm:UninstallProgram,$c.name}; Filename: {uninstallexe} +Name: {group}\{cm:UninstallProgram,$c.displayName}; Filename: {uninstallexe} #if c.binPaths.len > 0: [Tasks] -Name: modifypath; Description: &Add $c.name to your system path (if not in path already); +Name: modifypath; Description: &Add $c.displayName to your system path (if not in path already); #end if [Code] |