mirror of
https://github.com/boldsuck/haveno.git
synced 2024-12-22 12:09:22 +00:00
updates to flatpak installer
This commit is contained in:
parent
662eaee7c3
commit
a4223a6aab
4 changed files with 10 additions and 8 deletions
|
@ -8,11 +8,12 @@ Follow these instructions to create installers for the Haveno Java desktop appli
|
|||
From x86_64 machine:
|
||||
|
||||
1. `sudo apt-get update`
|
||||
2. `sudo apt install -y rpm fuse flatpak flatpak-builder`
|
||||
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 is printed at the end. Execute to install, e.g.: `sudo dpkg -i <path>.deb` or open `<path>.deb` with Software Install.
|
||||
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.
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
<description>
|
||||
<p>Haveno (pronounced ha‧ve‧no) is a platform for people who want to exchange Monero for fiat currencies like EUR, GBP, and USD or other cryptocurrencies like BTC, ETH, and BCH.</p>
|
||||
<ul>
|
||||
<li>All communications are routed through Tor, to preserve your privacy
|
||||
<li>All communications are routed through Tor, to preserve your privacy
|
||||
</li>
|
||||
<li>Trades are peer-to-peer: trades on Haveno will happen between people only, there is no central authority.
|
||||
</li>
|
||||
|
@ -44,7 +44,7 @@
|
|||
</description>
|
||||
<screenshots>
|
||||
<screenshot type="default">
|
||||
<image>https://files.catbox.moe/8pahgg.png</image>
|
||||
<image>https://github.com/haveno-dex/haveno/blob/master/desktop/package/linux/preview.png</image>
|
||||
<caption>Recent Trades page</caption>
|
||||
</screenshot>
|
||||
</screenshots>
|
||||
|
|
BIN
desktop/package/linux/preview.png
Normal file
BIN
desktop/package/linux/preview.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 630 KiB |
|
@ -415,7 +415,8 @@ task packageInstallers {
|
|||
} else {
|
||||
throw new GradleException("DEFAULT_APP_NAME not found in HavenoExecutable.java")
|
||||
}
|
||||
// copy the manifest to a new tmp one in the same place
|
||||
|
||||
// Copy the manifest to a new tmp one in the same place
|
||||
// and add a --filesystem=.local/share/${name} to the flatpak manifest
|
||||
def manifest = file(flatpakManifestFile)
|
||||
def newManifest = file('exchange.haveno.Haveno.yaml')
|
||||
|
|
Loading…
Reference in a new issue