-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Icons, deb builder and metadata fixes
- Loading branch information
Showing
6 changed files
with
91 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
|
||
# This file defines common variables to be source'd by the various build scripts | ||
# in this directory. | ||
|
||
# pick up the release tag from git | ||
VER=$(git describe --tags --abbrev=0 | sed -e 's/^v//') | ||
META= # "release" | ||
REV="0" | ||
|
||
APP="dexc" | ||
ARCH="amd64" | ||
|
||
# The build directory will be deleted at the beginning of every build. The | ||
# directory is .gitignore'd. | ||
BUILD_DIR="./build" | ||
|
||
# DEB_NAME follows the prescribed format for debian packaging. | ||
DEB_NAME="${APP}_${VER}-${REV}_${ARCH}" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions
19
client/cmd/dexc-desktop/src/org.decred.dcrdex.metainfo.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<component type="desktop-application"> | ||
<id>org.decred.dcrdex</id> | ||
<launchable type="desktop-id">org.decred.dcrdex.desktop</launchable> | ||
<name>DCRDEX</name> | ||
<summary>Decentralized cryptocurrency exchange</summary> | ||
<metadata_license>MIT</metadata_license> | ||
<project_license>BlueOak-1.0.0</project_license> | ||
<url type="homepage">https://dex.decred.org</url> | ||
<url type="help">https://chat.decred.org/#/room/#dex:decred.org</url> | ||
<developer_name>The Decred Developers</developer_name> | ||
<description> | ||
<p> | ||
Non-custodial peer-to-peer exchange where your funds never leave your wallet. | ||
Trade Bitcoin, USDC, Ethereum, Decred, Dogecoin, Zcash and more without KYC | ||
and fees, using atomic swaps technology. | ||
</p> | ||
</description> | ||
</component> |