-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from VanDerSam/master
Improvements for program
- Loading branch information
Showing
49 changed files
with
88,765 additions
and
890 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
This directory contents script files for building installers (installation programs) for zNotes. | ||
The directory "is" contents scripts for building an installer with "Inno Setup Compiler". | ||
The directory "qtifw" contents scripts for building an installer with "Qt Installer Framework". | ||
To build an installer with "Inno Setup Compiler" it needs to run command: | ||
"<path to Inno Setup directory>\iscc.exe" script.iss | ||
in "is" directory. | ||
|
||
To build an installer with "Qt Installer Framework" it needs to run command: | ||
<path to Qt Installer Framework bin directory>\binarycreator.exe --offline-only -p packages -c config\config.xml zNotesInstaller.exe | ||
in "qtifw" directory. |
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
; Script generated by the Inno Setup Script Wizard. | ||
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! | ||
|
||
#define MyAppName "zNotes" | ||
#define MyAppVersion "0.4.5" | ||
#define MyAppPublisher "Muratov Sergey" | ||
#define MyAppURL "http://sourceforge.net/projects/znotes" | ||
#define MyAppExeName "znotes.exe" | ||
|
||
[Setup] | ||
; NOTE: The value of AppId uniquely identifies this application. | ||
; Do not use the same AppId value in installers for other applications. | ||
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.) | ||
AppId={{E5F2F832-E3D5-4C00-AC23-89574C15E236} | ||
AppName={#MyAppName} | ||
AppVersion={#MyAppVersion} | ||
;AppVerName={#MyAppName} {#MyAppVersion} | ||
AppPublisher={#MyAppPublisher} | ||
AppPublisherURL={#MyAppURL} | ||
AppSupportURL={#MyAppURL} | ||
AppUpdatesURL={#MyAppURL} | ||
DefaultDirName={pf}\{#MyAppName} | ||
DefaultGroupName={#MyAppName} | ||
LicenseFile=data\LICENSE.GPL | ||
OutputBaseFilename=zNotesInstaller | ||
Compression=lzma | ||
SolidCompression=yes | ||
;----------------------------------------------------- | ||
;Next entries customize user interface of an installer | ||
;----------------------------------------------------- | ||
SetupIconFile=data\znotes.ico | ||
WizardSmallImageFile=data\logo.bmp | ||
WizardImageFile=data\watermark.bmp | ||
UninstallDisplayIcon=data\znotes.ico | ||
|
||
[Languages] | ||
Name: "english"; MessagesFile: "compiler:Default.isl" | ||
Name: "russian"; MessagesFile: "compiler:Languages\Russian.isl" | ||
|
||
[Tasks] | ||
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked | ||
|
||
[Dirs] | ||
Name: "{app}\bin" | ||
Name: "{app}\bin\translations" | ||
|
||
[Files] | ||
Source: "data\bin\znotes.exe"; DestDir: "{app}\bin"; Flags: ignoreversion | ||
Source: "data\bin\libgcc_s_dw2-1.dll"; DestDir: "{app}\bin"; Flags: ignoreversion | ||
Source: "data\bin\mingwm10.dll"; DestDir: "{app}\bin"; Flags: ignoreversion | ||
Source: "data\bin\QtCore4.dll"; DestDir: "{app}\bin"; Flags: ignoreversion | ||
Source: "data\bin\QtGui4.dll"; DestDir: "{app}\bin"; Flags: ignoreversion | ||
Source: "data\bin\QtNetwork4.dll"; DestDir: "{app}\bin"; Flags: ignoreversion | ||
Source: "data\bin\QtXml4.dll"; DestDir: "{app}\bin"; Flags: ignoreversion | ||
Source: "data\bin\translations\*"; DestDir: "{app}\bin\translations"; Flags: ignoreversion recursesubdirs createallsubdirs | ||
; NOTE: Don't use "Flags: ignoreversion" on any shared system files | ||
|
||
[Icons] | ||
Name: "{group}\{#MyAppName}"; Filename: "{app}\bin\{#MyAppExeName}" | ||
Name: "{group}\{cm:UninstallProgram,{#MyAppName}}"; Filename: "{uninstallexe}" | ||
Name: "{commondesktop}\{#MyAppName}"; Filename: "{app}\bin\{#MyAppExeName}"; Tasks: desktopicon | ||
|
||
[Run] | ||
Filename: "{app}\bin\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Contains the configuration for the installer of the zNotes. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0"?> | ||
<Installer> | ||
<Name>zNotes</Name> | ||
<Title>Simple application to control your notes</Title> | ||
<Version>0.4.5</Version> | ||
<Publisher>Muratov Sergey</Publisher> | ||
<ProductUrl>http://sourceforge.net/projects/znotes/</ProductUrl> | ||
<Logo>logo.png</Logo> | ||
<Watermark>watermark.jpg</Watermark> | ||
<UninstallerName>Uninstaller</UninstallerName> | ||
|
||
<!-- Tweaked for windows in installscript.qs --> | ||
<TargetDir>@homeDir@/znotes</TargetDir> | ||
</Installer> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0"?> | ||
<Package> | ||
<DisplayName>zNotes Binaries</DisplayName> | ||
<Description>Installs the binaries, translations.</Description> | ||
<Version>0.4.5</Version> | ||
<ReleaseDate>2014-06-18</ReleaseDate> | ||
<Default>True</Default> | ||
</Package> |
Oops, something went wrong.