[Setup] AppName=XChat-WDK AppVerName=XChat-WDK 1468 AppVersion=14.68 VersionInfoVersion=14.68 OutputBaseFilename=XChat-WDK 1468 AppPublisher=XChat-WDK AppPublisherURL=http://code.google.com/p/xchat-wdk/ AppCopyright=Copyright (C) 1998-2010 Peter Zelezny AppSupportURL=http://code.google.com/p/xchat-wdk/issues/list AppUpdatesURL=http://code.google.com/p/xchat-wdk/wiki/InfoXChat WizardImageFile=c:\mozilla-build\build\xchat-wdk\build\bitmaps\wizardimage.bmp WizardSmallImageFile=c:\mozilla-build\build\xchat-wdk\build\bitmaps\wizardsmallimage.bmp SetupIconFile=c:\mozilla-build\build\xchat-wdk\xchat.ico LicenseFile=COPYING UninstallDisplayIcon={app}\xchat.exe UninstallDisplayName=XChat-WDK DefaultDirName={pf}\XChat-WDK DefaultGroupName=XChat-WDK DisableProgramGroupPage=yes SolidCompression=yes SourceDir=..\..\xchat-wdk-uni OutputDir=..\xchat-wdk\build FlatComponentsList=no PrivilegesRequired=none ShowComponentSizes=no CreateUninstallRegKey=not IsTaskSelected('portable') Uninstallable=not IsTaskSelected('portable') ArchitecturesAllowed=x86 x64 ArchitecturesInstallIn64BitMode=x64 [Types] Name: "normal"; Description: "Normal Installation" Name: "full"; Description: "Full Installation" Name: "custom"; Description: "Custom Installation"; Flags: iscustom [Components] Name: "libs"; Description: "XChat-WDK"; Types: normal full custom; Flags: fixed Name: "translations"; Description: "Translations"; Types: normal full custom Name: "plugins"; Description: "Plugins"; Types: full custom Name: "plugins\ewc"; Description: "EasyWinampControl"; Types: full custom Name: "plugins\upd"; Description: "XChat-WDK Update Checker"; Types: normal full custom Name: "plugins\xdcc"; Description: "XDCC"; Types: full custom Name: "langs"; Description: "Language Interfaces"; Types: full custom Name: "langs\lua"; Description: "Lua (experimental)"; Types: full custom Name: "langs\lua\luawdk"; Description: "Lua-WDK 5.1.4-2"; Types: full custom Name: "langs\perl"; Description: "Perl (needs ActivePerl)"; Types: full custom Name: "langs\python"; Description: "Python (needs ActivePython 2.6)"; Types: full custom Name: "langs\tcl"; Description: "Tcl (needs ActiveTcl 8.5)"; Types: full custom [Tasks] Name: x86; Description: "x86"; GroupDescription: "XChat-WDK version:"; Flags: exclusive unchecked Name: x64; Description: "x64"; GroupDescription: "XChat-WDK version:"; Flags: exclusive; Check: Is64BitInstallMode Name: portable; Description: "Yes"; GroupDescription: "Portable Install (no Registry entries, no Start Menu icons, no uninstaller):"; Flags: unchecked Name: thdefault; Description: "Default"; GroupDescription: "Theme (only for portable installs)"; Flags: exclusive Name: thblack; Description: "Black"; GroupDescription: "Theme (only for portable installs)"; Flags: exclusive unchecked Name: thglyphed; Description: "Simply Glyphed Tango Dark"; GroupDescription: "Theme (only for portable installs)"; Flags: exclusive unchecked Name: xtray; Description: "X-Tray"; GroupDescription: "Tray Icon"; Flags: exclusive Name: noxtray; Description: "Plugin-Tray"; GroupDescription: "Tray Icon"; Flags: exclusive unchecked Name: perl58; Description: "5.8"; GroupDescription: "ActivePerl version:"; Flags: exclusive unchecked; Components: langs\perl Name: perl510; Description: "5.10"; GroupDescription: "ActivePerl version:"; Flags: exclusive unchecked; Components: langs\perl Name: perl512; Description: "5.12"; GroupDescription: "ActivePerl version:"; Flags: exclusive; Components: langs\perl [Files] Source: "COPYING"; DestDir: "{app}"; Components: libs Source: "LICENSE.OPENSSL"; DestDir: "{app}"; Components: libs Source: "LICENSE.ZLIB"; DestDir: "{app}"; Components: libs Source: "portable-mode"; DestDir: "{app}"; Tasks: portable Source: "themes\glyphed\*"; DestDir: "{app}\config"; Tasks: thglyphed Source: "themes\black\*"; DestDir: "{app}\config"; Tasks: thblack Source: "etc\*"; DestDir: "{app}\etc"; Flags: createallsubdirs recursesubdirs; Components: libs Source: "locale\*"; DestDir: "{app}\locale"; Flags: createallsubdirs recursesubdirs; Components: translations Source: "share\*"; DestDir: "{app}\share"; Flags: createallsubdirs recursesubdirs; Components: translations Source: "xchat.exe"; DestDir: "{app}"; Components: libs; Tasks: x86 Source: "xchat.exe.x64"; DestDir: "{app}"; DestName: "xchat.exe"; Components: libs; Tasks: x64 Source: "freetype6.dll"; DestDir: "{app}"; Components: libs; Tasks: x86 Source: "libfreetype-6.dll.x64"; DestDir: "{app}"; DestName: "libfreetype-6.dll"; Components: libs; Tasks: x64 Source: "intl.dll"; DestDir: "{app}"; Components: libs; Tasks: x86 Source: "libintl-8.dll.x64"; DestDir: "{app}"; DestName: "libintl-8.dll"; Components: libs; Ta
[Desktop Entry]
Name=HexChat
Name[zh_TW]=網路清談
Comment[de]=IRC-Client
Comment[es]=Aplicación de IRC
Comment[fi]=IRC-sovellus
Comment[fr]=Client IRC
Comment[hu]=IRC-kliens
Comment[lt]=IRC klientas
Comment[no]=IRC-klient
Comment[pl]=Klient IRC
Comment[pt_BR]=Cliente de IRC
Comment[sl]=Odjemalec IRC
Comment[sv]=IRC-klient
Comment[ro]=Client de IRC
Comment[zh_TW]=HexChat 聊天程式
Comment=Chat with other people using Internet Relay Chat
Exec=hexchat
Icon=hexchat
Terminal=false
Type=Application
Categories=Network;
StartupNotify=true
X-GNOME-UsesNotifications=true
eger; 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 not (IsTaskSelected('portable')) then begin if (CurStep=ssInstall) then begin if (IsUpgrade()) then begin UnInstallOldVersion(); end; end; end; end;