mirror of
https://github.com/haveno-dex/haveno.git
synced 2024-11-17 00:07:49 +00:00
a4223a6aab
Some checks failed
CI / build (macos-13) (push) Has been cancelled
CI / build (ubuntu-22.04) (push) Has been cancelled
CI / build (windows-latest) (push) Has been cancelled
Codacy Coverage Reporter / Publish coverage (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled
114 lines
4.6 KiB
Markdown
114 lines
4.6 KiB
Markdown
Follow these instructions to create installers for the Haveno Java desktop application on each platform.
|
|
|
|
> **Note**
|
|
> These steps will delete the previously built Haveno binaries, so they'll need rebuilt after.
|
|
|
|
## Linux
|
|
|
|
From x86_64 machine:
|
|
|
|
1. `sudo apt-get update`
|
|
2. `sudo apt install -y rpm libfuse2 flatpak flatpak-builder appstream`
|
|
3. `flatpak remote-add --if-not-exists --user flathub https://dl.flathub.org/repo/flathub.flatpakrepo`
|
|
4. `./gradlew clean build --refresh-keys --refresh-dependencies` (or `make clean && skip-tests` after refreshed)
|
|
5. `./gradlew packageInstallers`
|
|
6. Confirm prompts.
|
|
7. Path to installer is printed at the end. Execute to install, e.g.: `sudo dpkg -i <path>.deb` or open `<path>.deb` with Software Install.
|
|
|
|
Note: Please see [flatpak.md](../../docs/flatpak.md) for information on
|
|
distributing Haveno via Flatpak.
|
|
|
|
Haveno data folder on Linux: `/home/<username>/.local/share/Haveno/`
|
|
|
|
## macOS
|
|
|
|
From x86_64 machine:
|
|
|
|
1. `./gradlew clean build --refresh-keys --refresh-dependencies` (or `make clean && skip-tests` after refreshed)
|
|
2. `./gradlew packageInstallers`
|
|
3. Confirm prompts.
|
|
4. Path to installer printed at end.
|
|
5. `open <path>`
|
|
6. Open installer and drag Haveno.app to Applications.
|
|
7. `sudo xattr -rd com.apple.quarantine /Applications/Haveno.app`
|
|
8. Right click /Applications/Haveno.app > Open. Repeat again if necessary, despite being "damaged".
|
|
|
|
Haveno data folder on Mac: `/Users/<username>/Library/Application Support/Haveno/`
|
|
|
|
## Windows
|
|
|
|
1. Enable .NET Framework 3.5:
|
|
1. Open the Control Panel on your Windows system.
|
|
2. Click on "Programs and Features" or "Uninstall a Program."
|
|
3. On the left-hand side, click on "Turn Windows features on or off."
|
|
4. In the "Windows Features" dialog box, scroll down and find the ".NET Framework 3.5 (includes .NET 2.0 and 3.0)" option.
|
|
5. Check the box next to it to select it.
|
|
6. Click "OK" to save the changes and exit the dialog box.
|
|
7. Windows will download and install the required files and components to enable the .NET Framework 3.5. This may take several minutes, depending on your internet connection speed and system configuration.
|
|
8. Once the installation is complete, you will need to restart your computer to apply the changes.
|
|
2. Install Wix Toolset 3: <https://github.com/wixtoolset/wix3/releases/tag/wix314rtm>
|
|
3. Open MSYS2 for the following commands.
|
|
4. `export PATH=$PATH:$JAVA_HOME/bin:"C:\Program Files (x86)\WiX Toolset v3.14\bin"`
|
|
5. `./gradlew clean build --refresh-keys --refresh-dependencies` (or `make clean && skip-tests` after refreshed)
|
|
6. `./gradlew packageInstallers`
|
|
7. Confirm prompts.
|
|
8. Path to installer is printed at the end. Execute to install.
|
|
|
|
Haveno data folder on Windows: `~\AppData\Roaming\Haveno\`
|
|
|
|
## Copying installer and rebuilding Haveno binaries
|
|
|
|
1. Copy the installer to a safe location because it will be deleted in the next step.
|
|
2. `make clean && make` (or `make clean && make skip-tests`) to rebuild Haveno apps.
|
|
|
|
## Additional Notes
|
|
|
|
### Icons
|
|
|
|
Icons (Haveno.zip) were obtained from <https://github.com/haveno-dex/haveno-meta/issues/1#issuecomment-819741689>.
|
|
|
|
### Building for Linux
|
|
|
|
The linux package requires the correct packaging tools installed. You may run into the following errors:
|
|
|
|
```sh
|
|
Error: Invalid or unsupported type: [deb]
|
|
```
|
|
|
|
```sh
|
|
Error: Invalid or unsupported type: [rpm]
|
|
```
|
|
|
|
On Ubuntu, resolve by running `sudo apt install rpm`. For deb, ensure dpkg is installed.
|
|
|
|
```sh
|
|
Exception in thread "main" java.io.IOException: Failed to rename /tmp/Haveno-stripped15820156885694375398.tmp to /storage/src/haveno/desktop/build/libs/fatJar/desktop-1.0.0-SNAPSHOT-all.jar
|
|
at haveno.tools.Utils.renameFile(Utils.java:36)
|
|
at io.github.zlika.reproducible.StipZipFile.strip(StipZipFile.java:35)
|
|
at haveno.tools.DeterministicBuildTool.main(DeterministicBuildTool.java:24)
|
|
|
|
```
|
|
|
|
This may happen if the source folder is on a different hard drive than the system `tmp` folder. The tools-1.0.jar calls renameTo to rename the deterministic jar back to the fat jar location. You can temporarily change your temp directory on linux:
|
|
|
|
```sh
|
|
export _JAVA_OPTIONS="-Djava.io.tmpdir=/storage/tmp"
|
|
```
|
|
|
|
### Building for macOS
|
|
|
|
Svg was converted into a 1024x1024 pixel PNG using
|
|
<https://webkul.github.io/myscale/>, then converted to icns for macosx
|
|
here <https://cloudconvert.com/png-to-icns>
|
|
|
|
#### Known Issues
|
|
|
|
Signing is not implemented.
|
|
|
|
### Building for Windows
|
|
|
|
Pngs were resized and pasted into the WixUi images using paint. [CloudConvert](https://cloudconvert.com) was used to convert the Haveno png icon to ico.
|
|
|
|
#### Known Issues
|
|
|
|
The installer's final step "Launch Haveno" has a different background color. The setup executable does not have an icon.
|