-
-
Notifications
You must be signed in to change notification settings - Fork 416
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* release/1.0.6: Bump version Update changelog Support 32-bit builds Add 'Contributers' document Add multi-resolution default icon (thanks to d4k0) Add note about x86 to the README Add a note to the README about overriding API key and GUI listen address Improve Settings dialog around API key and address Ignore ~ unless it appears at the start of a path
- Loading branch information
Showing
26 changed files
with
215 additions
and
48 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Contributers | ||
============ | ||
|
||
The following individuals have contributed in same way towards making SyncTrayzor what it is is, and I'm very grateful to them. | ||
|
||
- [Joel Kåberg](https://github.com/jkaberg): SyncTrayzor's first user! Caught bugs I would never have spotted. | ||
- [d4k0](https://github.com/d4k0): Fixed some icon problems. |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,80 @@ | ||
#define AppExeName "SyncTrayzor.exe" | ||
#define AppRoot "..\.." | ||
#define Arch "x86" | ||
#define AppSrc AppRoot + "\src\SyncTrayzor" | ||
#define AppBin AppRoot +"\bin\" + Arch + "\Release" | ||
#define AppExe AppBin + "\SyncTrayzor.exe" | ||
#define AppName GetStringFileInfo(AppExe, "ProductName") | ||
#define AppVersion GetFileVersion(AppExe) | ||
#define AppPublisher "SyncTrayzor" | ||
#define AppURL "https://github.com/canton7/SyncTrayzor" | ||
#define AppDataFolder "SyncTrayzor" | ||
#define RunRegKey "Software\Microsoft\Windows\CurrentVersion\Run" | ||
|
||
|
||
[Setup] | ||
AppId={{c9bab27b-d754-4b62-ad8c-3509e1cac15c} | ||
AppName={#AppName} ({#Arch}) | ||
AppVersion={#AppVersion} | ||
;AppVerName={#AppName} {#AppVersion} | ||
AppPublisher={#AppPublisher} | ||
AppPublisherURL={#AppURL} | ||
AppSupportURL={#AppURL} | ||
AppUpdatesURL={#AppURL} | ||
DefaultDirName={pf}\{#AppName} | ||
DefaultGroupName={#AppName} | ||
AllowNoIcons=yes | ||
LicenseFile={#AppRoot}\LICENSE.txt | ||
OutputDir="." | ||
OutputBaseFilename={#AppName}Setup-{#Arch} | ||
SetupIconFile={#AppSrc}\Icons\default.ico | ||
Compression=lzma2/max | ||
SolidCompression=yes | ||
PrivilegesRequired=admin | ||
|
||
[Languages] | ||
Name: "english"; MessagesFile: "compiler:Default.isl" | ||
|
||
[Tasks] | ||
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked | ||
|
||
[Dirs] | ||
Name: "{userappdata}\{#AppDataFolder}" | ||
|
||
[Files] | ||
Source: "{#AppBin}\*.exe"; Excludes: "*.vshost.exe"; DestDir: "{app}"; Flags: ignoreversion | ||
Source: "{#AppBin}\{#AppExeName}.config"; DestDir: "{app}"; Flags: ignoreversion | ||
Source: "{#AppBin}\*.dll"; DestDir: "{app}"; Flags: ignoreversion | ||
Source: "{#AppBin}\*.pdb"; DestDir: "{app}"; Flags: ignoreversion | ||
Source: "{#AppBin}\*.pak"; DestDir: "{app}"; Flags: ignoreversion | ||
Source: "{#AppBin}\*.dat"; DestDir: "{app}"; Flags: ignoreversion | ||
Source: "{#AppBin}\locales\*"; DestDir: "{app}\locales"; Flags: ignoreversion | ||
Source: "{#AppSrc}\Icons\default.ico"; DestDir: "{app}"; Flags: ignoreversion | ||
Source: "{#AppRoot}\*.md"; DestDir: "{app}"; Flags: ignoreversion | ||
Source: "{#AppRoot}\*.txt"; DestDir: "{app}"; Flags: ignoreversion | ||
Source: "*.dll"; DestDir: "{app}"; Flags: ignoreversion | ||
Source: "syncthing.exe"; DestDir: "{app}" | ||
Source: "..\dotNet451Setup.exe"; DestDir: {tmp}; Flags: deleteafterinstall; Check: FrameworkIsNotInstalled | ||
|
||
[Icons] | ||
Name: "{group}\{#AppName}"; Filename: "{app}\{#AppExeName}" | ||
Name: "{group}\{cm:UninstallProgram,{#AppName}}"; Filename: "{uninstallexe}" | ||
Name: "{commondesktop}\{#AppName}"; Filename: "{app}\{#AppExeName}"; Tasks: desktopicon | ||
|
||
[Run] | ||
Filename: "{tmp}\dotNet451Setup.exe"; Parameters: "/passive /promptrestart"; Check: FrameworkIsNotInstalled; StatusMsg: "Microsoft .NET Framework 4.5.1 is being installed. Please wait..." | ||
Filename: "{app}\{#AppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(AppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent | ||
|
||
[Code] | ||
function FrameworkIsNotInstalled: Boolean; | ||
var | ||
exists: boolean; | ||
release: cardinal; | ||
begin | ||
exists := RegQueryDWordValue(HKEY_LOCAL_MACHINE, 'SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full', 'Release', release); | ||
result := not exists or (release < 378758); | ||
end; | ||
[UninstallDelete] | ||
Type: filesandordirs; Name: "{userappdata}\{#AppDataFolder}" | ||
Type: filesandordirs; Name: "{userappdata}\{#AppDataFolder}" |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
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
Oops, something went wrong.