release 1.4.6

This commit is contained in:
arcan1s 2015-06-25 12:23:04 +03:00
parent d299e7d9a1
commit aed09bf798
4 changed files with 6 additions and 8 deletions

View File

@ -8,8 +8,6 @@ Ver.1.4.6
* library * library
+ implement netctl-auto support to scanWiFi() method (#44) + implement netctl-auto support to scanWiFi() method (#44)
- fix bug with invalid data in netctl-auto profile list output - fix bug with invalid data in netctl-auto profile list output
* plasmoid
- fix plasma crash on status updates (#43)
Ver.1.4.5 Ver.1.4.5
--------- ---------

View File

@ -3,7 +3,7 @@
pkgbase=netctl-gui pkgbase=netctl-gui
pkgname=('libnetctlgui' 'netctlgui-helper' 'netctl-gui' pkgname=('libnetctlgui' 'netctlgui-helper' 'netctl-gui'
'plasma5-applet-netctl-gui') 'plasma5-applet-netctl-gui')
pkgver=1.4.5 pkgver=1.4.6
pkgrel=1 pkgrel=1
pkgdesc="Qt4/Qt5 GUI for netctl. Also provides a widget for KDE" pkgdesc="Qt4/Qt5 GUI for netctl. Also provides a widget for KDE"
arch=('i686' 'x86_64') arch=('i686' 'x86_64')
@ -11,7 +11,7 @@ url="http://arcanis.name/projects/netctl-gui"
license=('GPL3') license=('GPL3')
makedepends=('cmake' 'extra-cmake-modules' 'plasma-framework' 'qt5-tools') makedepends=('cmake' 'extra-cmake-modules' 'plasma-framework' 'qt5-tools')
source=("https://github.com/arcan1s/netctl-gui/releases/download/V.${pkgver}/${pkgbase}-${pkgver}-src.tar.xz") source=("https://github.com/arcan1s/netctl-gui/releases/download/V.${pkgver}/${pkgbase}-${pkgver}-src.tar.xz")
md5sums=('9c1ddad6163290ed3fb52c3d233e1ee3') md5sums=('aed674e4c465d849c2044f9464c2671c')
prepare() { prepare() {
rm -rf "${srcdir}/build-"{plasmoid,qt5} rm -rf "${srcdir}/build-"{plasmoid,qt5}

View File

@ -4,7 +4,7 @@ pkgbase=netctl-gui-qt4
_pkgbase=netctl-gui _pkgbase=netctl-gui
pkgname=('libnetctlgui-qt4' 'netctlgui-helper-qt4' 'netctl-gui-qt4' pkgname=('libnetctlgui-qt4' 'netctlgui-helper-qt4' 'netctl-gui-qt4'
'kdeplasma-applets-netctl-gui') 'kdeplasma-applets-netctl-gui')
pkgver=1.4.5 pkgver=1.4.6
pkgrel=1 pkgrel=1
pkgdesc="Qt4 GUI for netctl. Also provides a widget for KDE4" pkgdesc="Qt4 GUI for netctl. Also provides a widget for KDE4"
arch=('i686' 'x86_64') arch=('i686' 'x86_64')
@ -12,7 +12,7 @@ url="http://arcanis.name/projects/netctl-gui"
license=('GPL3') license=('GPL3')
makedepends=('automoc4' 'cmake' 'kdelibs') makedepends=('automoc4' 'cmake' 'kdelibs')
source=("https://github.com/arcan1s/netctl-gui/releases/download/V.${pkgver}/${_pkgbase}-${pkgver}-src.tar.xz") source=("https://github.com/arcan1s/netctl-gui/releases/download/V.${pkgver}/${_pkgbase}-${pkgver}-src.tar.xz")
md5sums=('9c1ddad6163290ed3fb52c3d233e1ee3') md5sums=('aed674e4c465d849c2044f9464c2671c')
prepare() { prepare() {

View File

@ -175,8 +175,8 @@ void NetctlAdds::setDataBySource(const QString sourceName, const QVariantMap dat
if (needUpdate) { if (needUpdate) {
emit(needToBeUpdated()); emit(needToBeUpdated());
// if (sourceName == QString("active")) if (sourceName == QString("active"))
// emit(needToNotify(values[QString("active")] == QString("true"))); emit(needToNotify(values[QString("active")] == QString("true")));
} }
} }