From 6cf7792f9aff2b3ae29ef0ae0b5bb96c60ab3ded Mon Sep 17 00:00:00 2001 From: arcan1s Date: Mon, 31 Mar 2014 20:45:27 +0400 Subject: [PATCH] release 1.6.1 --- CHANGELOG | 14 +++++++++----- PKGBUILD | 4 ++-- README.md | 2 +- sources/CMakeLists.txt | 2 +- 4 files changed, 13 insertions(+), 9 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index c308e35..df2599e 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +Ver.1.6.1: ++ added support of several devices in hddtemp label +- fixed #6 + Ver.1.6.0: + added $custom tag to time and uptime labels (#8) + russian translation @@ -22,21 +26,21 @@ Ver.1.4.0: + added notifications Ver.1.3.6: -* fixed #1, #2 +- fixed #1, #2 Ver.1.3.5: -* fix bug with definition network device +- fix bug with definition network device Ver.1.3.4: + added double click event + added auto selection of network device -* fixed yet another plasma crash +- fixed yet another plasma crash Ver.1.3.3: * edited reading temperature device Ver.1.3.2b: -* fixed plasma crash +- fixed plasma crash Ver.1.3.2: + added GPU, GPU temperature, HDD and HDD temperature labels @@ -74,7 +78,7 @@ Ver.1.1.1: + added $swapmb, $memmb, $netdev, @@netdev=...@@ tags * widget consists of several labels * edited configuration interface -* some bug fixes +- some bug fixes Ver.1.0: First release diff --git a/PKGBUILD b/PKGBUILD index 149e098..fb4063b 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ pkgname=kdeplasma-applets-pytextmonitor _pkgname=pytextmonitor -pkgver=1.6.0 +pkgver=1.6.1 pkgrel=1 pkgdesc="Minimalistic Plasmoid script written on Python2. It looks like widgets in awesome-wm" arch=('i686' 'x86_64') @@ -19,7 +19,7 @@ optdepends=("hddtemp: for HDD temperature monitor" makedepends=('automoc4' 'cmake') source=(https://github.com/arcan1s/pytextmonitor/releases/download/V.${pkgver}/${_pkgname}-${pkgver}-src.tar.xz) install=${pkgname}.install -md5sums=('dddb53dd20708ddfe6ec0343005cf424') +md5sums=('aa6c5f00b33c073f3732bd921171a557') backup=('usr/share/config/extsysmon.conf') build () { diff --git a/README.md b/README.md index a232c14..dbef366 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ For edited output you must open Settings window and setup output format in lines * label `$swap` - swap, % * label `$swapmb` - swap, MB * label `@@/@@` (in hdd label) - mount point (`/` in example) usage, %. Separator for mount points list is `;`, for example `@@/;/home;/mnt/global@@` -* label `@@/dev/sda@@` (in hddtemp label) - HDD (`/dev/sda` in example) temperature. `hddtemp` must be installed +* label `@@/dev/sda@@` (in hddtemp label) - HDD (`/dev/sda` in example) temperature. Separator for device list is `;`, for example `@@/dev/sda;/dev/sdb@@`. `hddtemp` must be installed * label `$net` - download and upload speed, KB/s. You may specify network device: something like `@@eth0@@` * label `$netdev` - current network device * label `$bat` - battery charge, %. Battery device may be set below. File (`/sys/class/power_supply/BAT0/capacity` by default) must contain only battery charge in percent diff --git a/sources/CMakeLists.txt b/sources/CMakeLists.txt index 4c3b594..29bcc06 100644 --- a/sources/CMakeLists.txt +++ b/sources/CMakeLists.txt @@ -8,7 +8,7 @@ cmake_policy (SET CMP0015 NEW) project (pytextmonitor) set (PROJECT_VERSION_MAJOR 1) set (PROJECT_VERSION_MINOR 6) -set (PROJECT_VERSION_PATCH 0) +set (PROJECT_VERSION_PATCH 1) set (PROJECT_VERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}) message (STATUS "Version: ${PROJECT_VERSION}")