mirror of
https://github.com/feather-wallet/feather.git
synced 2024-12-22 19:49:28 +00:00
installers: delete obsolete windows installer
This commit is contained in:
parent
b9f1a3744b
commit
a60519c840
1 changed files with 0 additions and 68 deletions
|
@ -1,68 +0,0 @@
|
||||||
; Feather Wallet Installer for Windows
|
|
||||||
; Copyright (c) 2021-2022, The Monero Project
|
|
||||||
|
|
||||||
#define AppName "Feather Wallet"
|
|
||||||
#define AppVersion "2.0.0"
|
|
||||||
#define AppPublisher "Feather Wallet"
|
|
||||||
#define AppURL "https://featherwallet.org"
|
|
||||||
#define AppExeName "feather.exe"
|
|
||||||
|
|
||||||
[Setup]
|
|
||||||
AppId={{E3C599C7-4DF1-49F2-9C35-918A288677A4}
|
|
||||||
AppName={#AppName}
|
|
||||||
AppVersion={#AppVersion}
|
|
||||||
;AppVerName={#AppName} {#AppVersion}
|
|
||||||
AppPublisher={#AppPublisher}
|
|
||||||
AppPublisherURL={#AppURL}
|
|
||||||
AppSupportURL={#AppURL}
|
|
||||||
AppUpdatesURL={#AppURL}
|
|
||||||
DefaultDirName={autopf}\{#AppName}
|
|
||||||
DisableDirPage=no
|
|
||||||
DisableProgramGroupPage=yes
|
|
||||||
; Uncomment the following line to run in non administrative install mode (install for current user only.)
|
|
||||||
;PrivilegesRequired=lowest
|
|
||||||
OutputBaseFilename=FeatherWalletSetup
|
|
||||||
SetupIconFile=appicon.ico
|
|
||||||
Compression=lzma
|
|
||||||
SolidCompression=yes
|
|
||||||
WizardStyle=modern
|
|
||||||
|
|
||||||
ArchitecturesInstallIn64BitMode=x64
|
|
||||||
ArchitecturesAllowed=x64
|
|
||||||
DisableReadyPage=yes
|
|
||||||
|
|
||||||
WizardSmallImageFile=compiler:WizClassicSmallImage.bmp
|
|
||||||
WizardImageFile=compiler:WizClassicImage.bmp
|
|
||||||
|
|
||||||
UninstallDisplayIcon={app}\{#AppExeName}
|
|
||||||
|
|
||||||
[Messages]
|
|
||||||
SetupWindowTitle=Setup - Feather Wallet {#AppVersion}
|
|
||||||
|
|
||||||
[Languages]
|
|
||||||
Name: "english"; MessagesFile: "compiler:Default.isl"
|
|
||||||
|
|
||||||
[Tasks]
|
|
||||||
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}";
|
|
||||||
|
|
||||||
[Files]
|
|
||||||
Source: "bin\{#AppExeName}"; DestDir: "{app}"; Flags: ignoreversion
|
|
||||||
Source: "LICENSE.txt"; DestDir: "{app}"; Flags: ignoreversion
|
|
||||||
Source: "tor\*"; DestDir: "{app}\tor"; Flags: ignoreversion
|
|
||||||
|
|
||||||
;Source: "C:\Users\dev\Desktop\feather setup\finishbanner.bmp"; Flags: dontcopy
|
|
||||||
; NOTE: Don't use "Flags: ignoreversion" on any shared system files
|
|
||||||
|
|
||||||
[Code]
|
|
||||||
procedure CurPageChanged(CurPageID: Integer);
|
|
||||||
begin
|
|
||||||
if CurPageID = wpSelectTasks then
|
|
||||||
WizardForm.NextButton.Caption := SetupMessage(msgButtonInstall)
|
|
||||||
end;
|
|
||||||
|
|
||||||
[Icons]
|
|
||||||
Name: "{autoprograms}\{#AppName}"; Filename: "{app}\{#AppExeName}"
|
|
||||||
Name: "{autodesktop}\{#AppName}"; Filename: "{app}\{#AppExeName}"; Tasks: desktopicon
|
|
||||||
|
|
||||||
[Run]
|
|
||||||
Filename: "{app}\{#AppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(AppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent
|
|
Loading…
Reference in a new issue