This repository contains various components to create standalone installer packages or to update an existing Alias installation.
- SPDX-FileCopyrightText: © 2020 Alias Developers
- SPDX-FileCopyrightText: © 2016 SpectreCoin Developers
SPDX-License-Identifier: MIT
For the supportet Linux distributions there's a simple updater script located under the folder linux. This is the easiest way to update an existing installation, as long as we cannot provide dedicated packages.
The script is able to update an existing Alias installation resp. backup and update the Alias wallet binaries located on /usr/local/bin/.
To do so, the following additional requirements must be installed:
- bash (to execute the updater script itself)
- curl (to download components to install)
- sudo (to replace binaries)
At first, aliaswalletd must be stopped to replace the binaries.
Execute the updater script afterwards with
curl -L -s https://raw.githubusercontent.com/aliascash/installer/master/linux/updateAliaswallet.sh | sudo bash -s
This will update the local installation to the latest release.
To update with a dedicated (develop-) version, just add the corresponding
tag to the cmdline. The following example shows the installation of Build129
:
curl -L -s https://raw.githubusercontent.com/aliascash/installer/master/linux/updateAliaswallet.sh | sudo bash -s Build129
- Determine current OS by examining
/etc/os-release
- Download checksum file
- Download binary archive
- Verify sha256 hashes
- Backup current binaries if no backup of current version exists.
- Install new binaries
- Cleanup download folder
If you're using the Alias Shell UI,
the update script is fully integrated since version 2.5.
Go to Advanced -> Update
to use it.
- Inno Setup
- Plugins:
- Either
- add path to Inno Setup installation to PATH
- or
- setup env var
INNOSETUP_DIR
with path to Inno Setup folder
- Extract Alias wallet archive to
<clone-location>/windows/content/Alias/
- Execute
windows/createInstaller.bat
or - Run Inno Setup Compiler and load
<clone-location>/windows/Alias.iss
The resulting Alias-Installer.exe
will be located on <clone-location>/windows/Output/
.