summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiguel Mota <miguelmota2@gmail.com>2019-12-31 11:44:45 -0800
committerMiguel Mota <miguelmota2@gmail.com>2019-12-31 11:46:17 -0800
commit3ec64837dd97581e0e38a017beafdde293454afd (patch)
tree5f670ca31f4b17ec967cc0cff4dbca054f51a5ca
parentff39b35c21477c343372e62fedd49307a51db963 (diff)
Fix flathub app release version1.4.4
-rw-r--r--.flathub/com.github.miguelmota.Cointop.appdata.xml2
-rw-r--r--.flathub/com.github.miguelmota.Cointop.json27
-rw-r--r--CHANGELOG.md4
-rw-r--r--Makefile5
4 files changed, 23 insertions, 15 deletions
diff --git a/.flathub/com.github.miguelmota.Cointop.appdata.xml b/.flathub/com.github.miguelmota.Cointop.appdata.xml
index 1d8a798..14f101a 100644
--- a/.flathub/com.github.miguelmota.Cointop.appdata.xml
+++ b/.flathub/com.github.miguelmota.Cointop.appdata.xml
@@ -17,7 +17,7 @@
</screenshots>
<url type="homepage">https://cointop.sh/</url>
<releases>
- <release version="0.0.4" date="2018-05-11"/>
+ <release version="1.4.4" date="2019-12-31"/>
</releases>
<content_rating type="oars-1.0">
<content_attribute id="violence-cartoon">none</content_attribute>
diff --git a/.flathub/com.github.miguelmota.Cointop.json b/.flathub/com.github.miguelmota.Cointop.json
index 437b78e..c0e35e8 100644
--- a/.flathub/com.github.miguelmota.Cointop.json
+++ b/.flathub/com.github.miguelmota.Cointop.json
@@ -1,12 +1,15 @@
{
"app-id": "com.github.miguelmota.Cointop",
"runtime": "org.freedesktop.Platform",
- "runtime-version": "1.6",
+ "runtime-version": "19.08",
"sdk": "org.freedesktop.Sdk",
"sdk-extensions": [
"org.freedesktop.Sdk.Extension.golang"
],
"command": "cointop",
+ "finish-args": [
+ "--share=network"
+ ],
"cleanup": [
"/go",
"/bin/scripts"
@@ -18,27 +21,27 @@
{
"type": "script",
"commands": [
- ". /usr/lib/sdk/golang/enable.sh; export GOPATH=/app/go"
+ ". /usr/lib/sdk/golang/enable.sh; export GOPATH=/app/go"
],
"dest-filename": "my_enable.sh"
},
{
"type": "script",
"commands": [
- ". /app/bin/scripts/my_enable.sh; cd /app/go/src/$1; go build -o x"
+ ". /app/bin/scripts/my_enable.sh; cd /app/go/src/$1; GO111MODULE=off go build -o x"
],
"dest-filename": "build.sh"
}
],
"buildsystem": "simple",
"build-commands": [
- "mkdir -p /app/go/{src,pkg,bin} # make go workspace",
+ "mkdir -p /app/go/{src,pkg,bin}",
"install -d /app/bin/scripts",
"cp *.sh /app/bin/scripts/"
]
},
{
- "name": "hello",
+ "name": "cointop",
"buildsystem": "simple",
"build-commands": [
"cp -rpv go/* /app/go/",
@@ -50,21 +53,17 @@
"mkdir -p /app/share/metainfo",
"cp /app/go/src/github.com/miguelmota/cointop/assets/icon_64x64.png /app/share/icons/hicolor/64x64/apps/com.github.miguelmota.Cointop.png",
"cp /app/go/src/github.com/miguelmota/cointop/assets/icon_128x128.png /app/share/icons/hicolor/128x128/apps/com.github.miguelmota.Cointop.png",
- "cp /app/go/src/github.com/miguelmota/cointop/flathub/com.github.miguelmota.Cointop.appdata.xml /app/share/metainfo/com.github.miguelmota.Cointop.appdata.xml",
- "cp /app/go/src/github.com/miguelmota/cointop/flathub/com.github.miguelmota.Cointop.desktop /app/share/applications/com.github.miguelmota.Cointop.desktop"
+ "cp /app/go/src/github.com/miguelmota/cointop/.flathub/com.github.miguelmota.Cointop.appdata.xml /app/share/metainfo/com.github.miguelmota.Cointop.appdata.xml",
+ "cp /app/go/src/github.com/miguelmota/cointop/.flathub/com.github.miguelmota.Cointop.desktop /app/share/applications/com.github.miguelmota.Cointop.desktop"
],
"sources": [
{
- "type": "git",
- "url": "https://github.com/miguelmota/cointop.git",
- "commit": "8b33ac7b32c3a3f25d803afe9cc425dfb2c2c207",
+ "type": "archive",
+ "url": "https://github.com/miguelmota/cointop/archive/1.4.3.tar.gz",
+ "sha256": "842b11703e4e8c825c7d0e3d167c018f44b555d9bde467a1f57be4aba7ba8606",
"dest": "go/src/github.com/miguelmota/cointop"
}
]
}
-
- ],
- "finish-args": [
- "--share=network"
]
} \ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 939e397..4a73a43 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+## [1.4.4] - 2019-12-31
+### Fixed
+- Flathub app release version
+
## [1.4.3] - 2019-12-29
### Fixed
- Chart update bug fixes
diff --git a/Makefile b/Makefile
index 3700ec8..1380015 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,5 @@
VERSION = $$(git describe --abbrev=0 --tags)
+VERSION_DATE = $$(git log -1 --pretty='%ad' --date=format:'%Y-%m-%d' $(VERSION))
COMMIT_REV = $$(git rev-list -n 1 $(VERSION))
all: build
@@ -114,6 +115,10 @@ flatpak/install:
flatpak/run:
flatpak run com.github.miguelmota.Cointop
+flatpak/update-version:
+ xmlstarlet ed --inplace -u '/component/releases/release/@version' -v $(VERSION) .flathub/com.github.miguelmota.Cointop.appdata.xml
+ xmlstarlet ed --inplace -u '/component/releases/release/@date' -v $(VERSION_DATE) .flathub/com.github.miguelmota.Cointop.appdata.xml
+
rpm/install/deps:
sudo dnf install -y rpm-build
sudo dnf install -y dnf-plugins-core