diff options
author | Marcel O'Neil | 2018-11-14 15:51:00 -0500 |
---|---|---|
committer | Marcel O'Neil | 2018-11-14 15:51:00 -0500 |
commit | 1d9cfd680bf060f663830d47659f13700f0d99f1 (patch) | |
tree | 96e9ed345fa8804fb346f4f728e9831fc13f3748 | |
parent | 44c7f4b4a597ea2488068785705fbad89e9f9bfd (diff) | |
download | aur-1d9cfd680bf060f663830d47659f13700f0d99f1.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-- | .SRCINFO | 5 | ||||
-rw-r--r-- | PKGBUILD | 11 | ||||
-rw-r--r-- | electron-cash-git.install | 23 |
3 files changed, 4 insertions, 35 deletions
@@ -1,9 +1,8 @@ pkgbase = electron-cash-git pkgdesc = Lightweight Bitcoin Cash wallet - pkgver = 3.3.1.r135.g624c7972 + pkgver = 3.3.2.r2.g36944362 pkgrel = 1 url = http://www.electroncash.org/ - install = electron-cash-git.install arch = any license = MIT makedepends = git @@ -36,9 +35,7 @@ pkgbase = electron-cash-git provides = electron-cash conflicts = electron-cash source = electron-cash-git::git+https://github.com/Electron-Cash/Electron-Cash.git - source = electron-cash-git.install sha256sums = SKIP - sha256sums = d682766321f9981ee38aee26dc050209882d8c1c6006e3e509649b47fa1bb073 pkgname = electron-cash-git @@ -6,10 +6,9 @@ pkgname='electron-cash-git' pkgdesc='Lightweight Bitcoin Cash wallet' -pkgver=3.3.1.r135.g624c7972 +pkgver=3.3.2.r2.g36944362 pkgrel=1 url='http://www.electroncash.org/' -install="${pkgname}.install" arch=('any') license=('MIT') makedepends=( @@ -47,12 +46,8 @@ optdepends=( ) provides=("${pkgname/-git/}") conflicts=("${pkgname/-git/}") -source=( - "${pkgname}::git+https://github.com/Electron-Cash/Electron-Cash.git" - "${pkgname}.install") -sha256sums=('SKIP' - 'd682766321f9981ee38aee26dc050209882d8c1c6006e3e509649b47fa1bb073') -install="${pkgname}.install" +source=("${pkgname}::git+https://github.com/Electron-Cash/Electron-Cash.git") +sha256sums=('SKIP') pkgver() { cd "${pkgname}" diff --git a/electron-cash-git.install b/electron-cash-git.install deleted file mode 100644 index c14de3d340f..00000000000 --- a/electron-cash-git.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: |