1; Script generated by the Inno Setup Script Wizard.
2; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
3
4#define MyAppName "zNotes"
5#define MyAppVersion "0.4.5"
6#define MyAppPublisher "Muratov Sergey"
7#define MyAppURL "http://sourceforge.net/projects/znotes"
8#define MyAppExeName "znotes.exe"
9
10[Setup]
11; NOTE: The value of AppId uniquely identifies this application.
12; Do not use the same AppId value in installers for other applications.
13; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
14AppId={{E5F2F832-E3D5-4C00-AC23-89574C15E236}
15AppName={#MyAppName}
16AppVersion={#MyAppVersion}
17;AppVerName={#MyAppName} {#MyAppVersion}
18AppPublisher={#MyAppPublisher}
19AppPublisherURL={#MyAppURL}
20AppSupportURL={#MyAppURL}
21AppUpdatesURL={#MyAppURL}
22DefaultDirName={pf}\{#MyAppName}
23DefaultGroupName={#MyAppName}
24LicenseFile=data\LICENSE.GPL
25OutputBaseFilename=zNotesInstaller
26Compression=lzma
27SolidCompression=yes
28;-----------------------------------------------------
29;Next entries customize user interface of an installer
30;-----------------------------------------------------
31SetupIconFile=data\znotes.ico
32WizardSmallImageFile=data\logo.bmp
33WizardImageFile=data\watermark.bmp
34UninstallDisplayIcon=data\znotes.ico
35
36[Languages]
37Name: "english"; MessagesFile: "compiler:Default.isl"
38Name: "russian"; MessagesFile: "compiler:Languages\Russian.isl"
39
40[Tasks]
41Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
42
43[Dirs]
44Name: "{app}\bin"
45Name: "{app}\bin\translations"
46
47[Files]
48Source: "data\bin\znotes.exe"; DestDir: "{app}\bin"; Flags: ignoreversion
49Source: "data\bin\libgcc_s_dw2-1.dll"; DestDir: "{app}\bin"; Flags: ignoreversion
50Source: "data\bin\mingwm10.dll"; DestDir: "{app}\bin"; Flags: ignoreversion
51Source: "data\bin\QtCore4.dll"; DestDir: "{app}\bin"; Flags: ignoreversion
52Source: "data\bin\QtGui4.dll"; DestDir: "{app}\bin"; Flags: ignoreversion
53Source: "data\bin\QtNetwork4.dll"; DestDir: "{app}\bin"; Flags: ignoreversion
54Source: "data\bin\QtXml4.dll"; DestDir: "{app}\bin"; Flags: ignoreversion
55Source: "data\bin\translations\*"; DestDir: "{app}\bin\translations"; Flags: ignoreversion recursesubdirs createallsubdirs
56; NOTE: Don't use "Flags: ignoreversion" on any shared system files
57
58[Icons]
59Name: "{group}\{#MyAppName}"; Filename: "{app}\bin\{#MyAppExeName}"
60Name: "{group}\{cm:UninstallProgram,{#MyAppName}}"; Filename: "{uninstallexe}"
61Name: "{commondesktop}\{#MyAppName}"; Filename: "{app}\bin\{#MyAppExeName}"; Tasks: desktopicon
62
63[Run]
64Filename: "{app}\bin\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent
65
66