Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: InnoSetup/AdblockPlus.iss

Issue 10969028: Removed outdated InnoSetup installer and renamed WixInstaller directory into the canonical installer (Closed)
Patch Set: Created June 20, 2013, 6:47 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | InnoSetup/License.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: InnoSetup/AdblockPlus.iss
===================================================================
deleted file mode 100644
--- a/InnoSetup/AdblockPlus.iss
+++ /dev/null
@@ -1,49 +0,0 @@
-; AdblockPlus installer for 32 & 64
-
-[Setup]
-AppVerName=Adblock Plus IE
-AppName=Adblock Plus IE
-DefaultDirName={pf}\Adblock Plus IE
-DisableProgramGroupPage=yes
-UninstallDisplayIcon={app}\Adblock Plus IE
-DisableDirPage=yes
-
-
-[Files]
-Source: "..\build\ia32\Release Test\AdblockPlus.dll"; DestDir: "{app}"
-Source: "..\build\x64\Release Test\AdblockPlusX64.dll"; DestDir: "{app}"
-Source: "..\html\static\css\*"; DestDir: "{app}\html\static\css"
-Source: "..\html\static\img\*"; DestDir: "{app}\html\static\img"
-Source: "..\html\static\img\social\*"; DestDir: "{app}\html\static\img\social"
-Source: "..\html\static\img\button-background\*"; DestDir: "{app}\html\static\img\button-background"
-Source: "..\html\static\js\*"; DestDir: "{app}\html\static\js"
-Source: "..\html\templates\*"; DestDir: "{app}\html\templates"
-Source: "..\files\settings.ini"; DestDir: "{app}"
-Source: "..\files\dictionary_w.ini"; DestDir: "{app}"
-Source: "..\files\settings_page_w.ini"; DestDir: "{app}"
-
-[Code]
-
-procedure CurStepChanged(CurStep: TSetupStep);
-var
- ResultCode: Integer;
-begin
- if CurStep = ssPostInstall then
- begin
- Exec(ExpandConstant('{sys}') + '\regsvr32', '/s ' + '"' + ExpandConstant('{app}') + '\AdblockPlus.dll' + '"', '', SW_SHOWNORMAL, ewWaitUntilTerminated, ResultCode);
- if IsWin64 then
- Exec(ExpandConstant('{sys}') + '\regsvr32', '/s ' + '"' + ExpandConstant('{app}') + '\AdblockPlusX64.dll' + '"', '', SW_SHOWNORMAL, ewWaitUntilTerminated, ResultCode);
- end
-end;
-
-procedure CurUninstallStepChanged(CurUninstallStep: TUninstallStep);
-var
- ResultCode: Integer;
-begin
- if CurUninstallStep = usUninstall then
- begin
- Exec(ExpandConstant('{sys}') + '\regsvr32', '/u /s ' + '"' + ExpandConstant('{app}') + '\AdblockPlus.dll' + '"', '', SW_SHOWNORMAL, ewWaitUntilTerminated, ResultCode);
- if IsWin64 then
- Exec(ExpandConstant('{sys}') + '\regsvr32', '/u /s ' + '"' + ExpandConstant('{app}') + '\AdblockerPlusX64.dll' + '"', '', SW_SHOWNORMAL, ewWaitUntilTerminated, ResultCode);
- end
-end;
« no previous file with comments | « no previous file | InnoSetup/License.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld