summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcel O'Neil2018-11-14 15:50:59 -0500
committerMarcel O'Neil2018-11-14 15:50:59 -0500
commitc58997d3caf8ec8eefd350fce0370f0bef933d66 (patch)
treeae2cf9c6efb34e19bc2603142cd140526e6ea905
parentd8b451389ff7689477f3e40b3076fc91dcd74deb (diff)
downloadaur-c58997d3caf8ec8eefd350fce0370f0bef933d66.tar.gz
3.3.2
* UTXO (coin) level freezing (accessible from Coins tab) * Bugfix to network code reared its head when user switches forks in unlikely circumstances * Checkpoint code (ElectrumX 1.4) protocol upgrade for faster blockchain header downloads * Updated servers list * BitPay support now works flawlessly * Fork icon indicates chain splits to allow user to select an alternate chain * UI glitches fixed * Various bug fixes (address exceptions) * Translations on Windows working again * More Spanish language translations!
-rw-r--r--.SRCINFO11
-rw-r--r--PKGBUILD13
-rw-r--r--electron-cash.install23
3 files changed, 8 insertions, 39 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 52327adb9eff..e04d74526fe1 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,8 @@
pkgbase = electron-cash
pkgdesc = Lightweight Bitcoin Cash wallet
- pkgver = 3.3.1
- pkgrel = 2
+ pkgver = 3.3.2
+ pkgrel = 1
url = http://www.electroncash.org/
- install = electron-cash.install
arch = any
license = MIT
makedepends = git
@@ -35,10 +34,8 @@ pkgbase = electron-cash
optdepends = zbar: QR code reading support
provides = electron-cash
conflicts = electron-cash
- source = electron-cash-3.3.1.tar.gz::https://github.com/Electron-Cash/Electron-Cash/archive/3.3.1.tar.gz
- source = electron-cash.install
- sha256sums = 801cae343108de64e607a21baa482a332e9400b7478a1ce63c5ade47e4749ca1
- sha256sums = d682766321f9981ee38aee26dc050209882d8c1c6006e3e509649b47fa1bb073
+ source = electron-cash-3.3.2.tar.gz::https://github.com/Electron-Cash/Electron-Cash/archive/3.3.2.tar.gz
+ sha256sums = 80999300f15233b81952e9722eb5c4659ff9d981e275bebad29baa93d125e60b
pkgname = electron-cash
diff --git a/PKGBUILD b/PKGBUILD
index 46fa6356d3d7..7e5e66594739 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,10 +6,9 @@
pkgname='electron-cash'
pkgdesc='Lightweight Bitcoin Cash wallet'
-pkgver=3.3.1
-pkgrel=2
+pkgver=3.3.2
+pkgrel=1
url='http://www.electroncash.org/'
-install="${pkgname}.install"
arch=('any')
license=('MIT')
makedepends=(
@@ -47,12 +46,8 @@ optdepends=(
)
provides=("${pkgname}")
conflicts=("${pkgname}")
-install="${pkgname}.install"
-source=(
- "${pkgname}-${pkgver}.tar.gz::https://github.com/Electron-Cash/Electron-Cash/archive/${pkgver/.0}.tar.gz"
- "${pkgname}.install")
-sha256sums=('801cae343108de64e607a21baa482a332e9400b7478a1ce63c5ade47e4749ca1'
- 'd682766321f9981ee38aee26dc050209882d8c1c6006e3e509649b47fa1bb073')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Electron-Cash/Electron-Cash/archive/${pkgver/.0}.tar.gz")
+sha256sums=('80999300f15233b81952e9722eb5c4659ff9d981e275bebad29baa93d125e60b')
build() {
cd "Electron-Cash-${pkgver/.0}"
diff --git a/electron-cash.install b/electron-cash.install
deleted file mode 100644
index c14de3d340f8..000000000000
--- a/electron-cash.install
+++ /dev/null
@@ -1,23 +0,0 @@
-post_install() {
- if [[ -x /usr/bin/update-desktop-database ]]; then
- update-desktop-database -q
- fi
-
- if [[ -x /usr/bin/xdg-icon-resource ]]; then
- xdg-icon-resource forceupdate --theme hicolor
- fi
-
- if [[ -x /usr/bin/gtk-update-icon-cache ]]; then
- gtk-update-icon-cache -f -q /usr/share/icons/hicolor
- fi
-}
-
-post_upgrade() {
- post_install
-}
-
-post_remove() {
- post_install
-}
-
-# vim: ts=2 sw=2 et: