-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
241 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
Bin/ | ||
Build/ | ||
Build/ | ||
*.aps |
Submodule InnoSetup
updated
84 files
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,2 @@ | ||
@"%~dp0Dependencies\StrawberryPerl\perl\bin\perl.exe" installer.pl %* | ||
@exit /b %ERRORLEVEL% |
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,150 @@ | ||
; This script uses Inno Setup Preprocessor (ISPP) by Alex Yackimoff. | ||
; To download and install ISPP, get the Inno Setup QuickStart Pack from http://www.jrsoftware.org/isdl.php#qsp | ||
|
||
#define _AppName "P4Win" | ||
#define _AppMutex "EShellMenu" | ||
#define _AppPublisher "gorlak" | ||
#define _AppPublisherURL "https://github.com/gorlak/P4Win" | ||
|
||
#ifndef _AppVersionMajor | ||
#define _AppVersionMajor "0" | ||
#endif | ||
|
||
#ifndef _AppVersionMinor | ||
#define _AppVersionMinor "0" | ||
#endif | ||
|
||
#ifndef _AppVersionPatch | ||
#define _AppVersionPatch "0" | ||
#endif | ||
|
||
#define _AppVersion _AppVersionMajor + "." + _AppVersionMinor + "." + _AppVersionPatch | ||
|
||
#ifndef _BuildConfig | ||
#define _BuildConfig "Release" | ||
#endif | ||
|
||
#define _VersionInfoComments "P4Win is a Windows client for Perforce (Helix VCS) built in MFC." | ||
#define _VersionInfoCopyright "Copyright (C) " + _AppPublisher | ||
#define _VersionInfoDescription "EShell Menu" | ||
#define _VersionInfoVersion _AppVersion | ||
|
||
[Setup] | ||
AllowNoIcons=yes | ||
AlwaysShowDirOnReadyPage=yes | ||
; 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={{1068CD05-61D1-4371-96EC-FD6AA4BC9E27} | ||
AppName={#_AppName} | ||
AppMutex={#_AppMutex} | ||
AppVerName={cm:NameAndVersion,{#_AppName},{#_AppVersion}} | ||
AppPublisher={#_AppPublisher} | ||
AppPublisherURL={#_AppPublisherURL} | ||
AppSupportURL={#_AppPublisherURL} | ||
AppUpdatesURL={#_AppPublisherURL} | ||
ArchitecturesAllowed=x64 | ||
ArchitecturesInstallIn64BitMode=x64 | ||
Compression=lzma | ||
CreateUninstallRegKey=yes | ||
DefaultDirName={pf64}\{#_AppName} | ||
DisableDirPage=no | ||
DefaultGroupName={#_AppName} | ||
OutputDir=.\ | ||
OutputBaseFilename=P4WinSetup | ||
PrivilegesRequired=admin | ||
SetupIconFile=Source\gui\res\P4win.ico | ||
SolidCompression=yes | ||
Uninstallable=yes | ||
UninstallDisplayIcon={uninstallexe} | ||
UsePreviousAppDir=yes | ||
UsePreviousGroup=yes | ||
UsePreviousTasks=yes | ||
VersionInfoCompany={#_AppPublisher} | ||
VersionInfoCopyright={#_AppName} {#_AppVersion} | ||
VersionInfoDescription={#_VersionInfoDescription} | ||
VersionInfoProductName={#_AppName} | ||
VersionInfoProductVersion={#_VersionInfoVersion} | ||
VersionInfoTextVersion={#_VersionInfoVersion} | ||
VersionInfoVersion={#_VersionInfoVersion} | ||
|
||
[Languages] | ||
Name: "english"; MessagesFile: "compiler:Default.isl" | ||
|
||
[Tasks] | ||
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked | ||
Name: "quicklaunchicon"; Description: "{cm:CreateQuickLaunchIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked | ||
|
||
[Files] | ||
; NOTE: Don't use "Flags: ignoreversion" on any shared system files | ||
Source: "Bin\{#_BuildConfig}\P4Win.exe"; DestDir: "{app}"; Flags: ignoreversion | ||
Source: "Bin\{#_BuildConfig}\P4Win.pdb"; DestDir: "{app}"; Flags: ignoreversion | ||
Source: "Bin\{#_BuildConfig}\P4.exe"; DestDir: "{app}"; Flags: ignoreversion | ||
Source: "Bin\{#_BuildConfig}\P4.pdb"; DestDir: "{app}"; Flags: ignoreversion | ||
|
||
[Icons] | ||
Name: "{group}\{#_AppName}"; Filename: "{app}\P4Win.exe"; Comment: {#_VersionInfoComments} | ||
Name: "{group}\{cm:UninstallProgram,{#_AppName}}"; Filename: "{uninstallexe}"; Comment: {#_VersionInfoComments} | ||
Name: "{commondesktop}\{#_AppName}"; Filename: "{app}\P4Win.exe"; Comment: {#_VersionInfoComments}; Tasks: desktopicon | ||
Name: "{userappdata}\Microsoft\Internet Explorer\Quick Launch\{#_AppName}"; Filename: "{app}\P4Win.exe"; Comment: {#_VersionInfoComments}; Tasks: quicklaunchicon | ||
|
||
[Run] | ||
Filename: "{app}\P4Win.exe"; Description: "Run {#_AppName}"; Flags: nowait postinstall shellexec | ||
|
||
[Code] | ||
///////////////////////////////////////////////////////////////////// | ||
function GetUninstallString(): String; | ||
var | ||
sUnInstPath: String; | ||
sUnInstallString: String; | ||
begin | ||
sUnInstPath := ExpandConstant('Software\Microsoft\Windows\CurrentVersion\Uninstall\{#emit SetupSetting("AppId")}_is1'); | ||
sUnInstallString := ''; | ||
if not RegQueryStringValue(HKLM, sUnInstPath, 'UninstallString', sUnInstallString) then | ||
RegQueryStringValue(HKCU, sUnInstPath, 'UninstallString', sUnInstallString); | ||
Result := sUnInstallString; | ||
end; | ||
///////////////////////////////////////////////////////////////////// | ||
function IsUpgrade(): Boolean; | ||
begin | ||
Result := (GetUninstallString() <> ''); | ||
end; | ||
///////////////////////////////////////////////////////////////////// | ||
function UnInstallOldVersion(): Integer; | ||
var | ||
sUnInstallString: String; | ||
iResultCode: Integer; | ||
begin | ||
// Return Values: | ||
// 1 - uninstall string is empty | ||
// 2 - error executing the UnInstallString | ||
// 3 - successfully executed the UnInstallString | ||
// default return value | ||
Result := 0; | ||
// get the uninstall string of the old app | ||
sUnInstallString := GetUninstallString(); | ||
if sUnInstallString <> '' then begin | ||
sUnInstallString := RemoveQuotes(sUnInstallString); | ||
if Exec(sUnInstallString, '/SILENT /NORESTART /SUPPRESSMSGBOXES','', SW_HIDE, ewWaitUntilTerminated, iResultCode) then | ||
Result := 3 | ||
else | ||
Result := 2; | ||
end else | ||
Result := 1; | ||
end; | ||
///////////////////////////////////////////////////////////////////// | ||
procedure CurStepChanged(CurStep: TSetupStep); | ||
begin | ||
if (CurStep=ssInstall) then | ||
begin | ||
if (IsUpgrade()) then | ||
begin | ||
UnInstallOldVersion(); | ||
end; | ||
end; | ||
end; |
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,68 @@ | ||
#!/usr/bin/perl -w | ||
use strict; | ||
use Data::Dumper; | ||
use File::Basename; | ||
use File::Copy; | ||
use File::Path; | ||
use Getopt::Long; | ||
|
||
|
||
# | ||
# globals | ||
# | ||
|
||
my $g_ISCCFilePath = File::Spec->catfile( 'Dependencies', 'InnoSetup', 'ISCC.exe' ); | ||
my $g_ISSFilePath = 'installer.iss'; | ||
my $g_OutputBaseFilename = 'P4WinSetup'; | ||
my $g_OutputDir = 'Bin\\Release'; | ||
my $g_VersionFilePath = 'Source\\gui\\resource.h'; | ||
my $g_OutputFilePath = File::Spec->catfile( $g_OutputDir, "$g_OutputBaseFilename.exe" ); | ||
|
||
|
||
# | ||
# extract version | ||
# | ||
|
||
my $g_MajorVersion = 0; | ||
my $g_MinorVersion = 0; | ||
my $g_PatchVersion = 0; | ||
|
||
open IN, "<$g_VersionFilePath" or die "could not read $g_VersionFilePath: $!"; | ||
my @VersionFileContent = <IN>; | ||
close IN or die "could not close $g_VersionFilePath: $!"; | ||
chomp @VersionFileContent; | ||
|
||
foreach my $line ( @VersionFileContent ) | ||
{ | ||
if ( $line =~ /VERSION_MAJOR\s+(\d+)/i ) | ||
{ | ||
$g_MajorVersion = $1; | ||
} | ||
elsif ( $line =~ /VERSION_MINOR\s+(\d+)/i ) | ||
{ | ||
$g_MinorVersion = $1; | ||
} | ||
elsif ( $line =~ /VERSION_PATCH\s+(\d+)/i ) | ||
{ | ||
$g_PatchVersion = $1; | ||
} | ||
} | ||
my $g_PrintVersion = "${g_MajorVersion}.${g_MinorVersion}.${g_PatchVersion}"; | ||
|
||
|
||
# | ||
# build installer | ||
# | ||
|
||
print( "\n o Building installer for $g_PrintVersion...\n" ); | ||
|
||
if ( -e $g_OutputFilePath ) | ||
{ | ||
system( "del /Q /F \"$g_OutputFilePath\"" ); | ||
} | ||
|
||
mkpath( $g_OutputDir ); | ||
|
||
system( "\"$g_ISCCFilePath\" \"$g_ISSFilePath\" /q /o\"$g_OutputDir\" /f\"$g_OutputBaseFilename\" /d\"_AppVersionMajor=$g_MajorVersion\" /d\"_AppVersionMinor=$g_MinorVersion\" /d\"_AppVersionPatch=$g_PatchVersion\"" ); | ||
|
||
exit $? >> 8; |