release 1.6.1

This commit is contained in:
arcan1s 2014-03-31 20:45:27 +04:00
parent 1df3cf0def
commit 6cf7792f9a
4 changed files with 13 additions and 9 deletions

View File

@ -1,3 +1,7 @@
Ver.1.6.1:
+ added support of several devices in hddtemp label
- fixed #6
Ver.1.6.0: Ver.1.6.0:
+ added $custom tag to time and uptime labels (#8) + added $custom tag to time and uptime labels (#8)
+ russian translation + russian translation
@ -22,21 +26,21 @@ Ver.1.4.0:
+ added notifications + added notifications
Ver.1.3.6: Ver.1.3.6:
* fixed #1, #2 - fixed #1, #2
Ver.1.3.5: Ver.1.3.5:
* fix bug with definition network device - fix bug with definition network device
Ver.1.3.4: Ver.1.3.4:
+ added double click event + added double click event
+ added auto selection of network device + added auto selection of network device
* fixed yet another plasma crash - fixed yet another plasma crash
Ver.1.3.3: Ver.1.3.3:
* edited reading temperature device * edited reading temperature device
Ver.1.3.2b: Ver.1.3.2b:
* fixed plasma crash - fixed plasma crash
Ver.1.3.2: Ver.1.3.2:
+ added GPU, GPU temperature, HDD and HDD temperature labels + added GPU, GPU temperature, HDD and HDD temperature labels
@ -74,7 +78,7 @@ Ver.1.1.1:
+ added $swapmb, $memmb, $netdev, @@netdev=...@@ tags + added $swapmb, $memmb, $netdev, @@netdev=...@@ tags
* widget consists of several labels * widget consists of several labels
* edited configuration interface * edited configuration interface
* some bug fixes - some bug fixes
Ver.1.0: Ver.1.0:
First release First release

View File

@ -3,7 +3,7 @@
pkgname=kdeplasma-applets-pytextmonitor pkgname=kdeplasma-applets-pytextmonitor
_pkgname=pytextmonitor _pkgname=pytextmonitor
pkgver=1.6.0 pkgver=1.6.1
pkgrel=1 pkgrel=1
pkgdesc="Minimalistic Plasmoid script written on Python2. It looks like widgets in awesome-wm" pkgdesc="Minimalistic Plasmoid script written on Python2. It looks like widgets in awesome-wm"
arch=('i686' 'x86_64') arch=('i686' 'x86_64')
@ -19,7 +19,7 @@ optdepends=("hddtemp: for HDD temperature monitor"
makedepends=('automoc4' 'cmake') makedepends=('automoc4' 'cmake')
source=(https://github.com/arcan1s/pytextmonitor/releases/download/V.${pkgver}/${_pkgname}-${pkgver}-src.tar.xz) source=(https://github.com/arcan1s/pytextmonitor/releases/download/V.${pkgver}/${_pkgname}-${pkgver}-src.tar.xz)
install=${pkgname}.install install=${pkgname}.install
md5sums=('dddb53dd20708ddfe6ec0343005cf424') md5sums=('aa6c5f00b33c073f3732bd921171a557')
backup=('usr/share/config/extsysmon.conf') backup=('usr/share/config/extsysmon.conf')
build () { build () {

View File

@ -48,7 +48,7 @@ For edited output you must open Settings window and setup output format in lines
* label `$swap` - swap, <i>%</i> * label `$swap` - swap, <i>%</i>
* label `$swapmb` - swap, <i>MB</i> * label `$swapmb` - swap, <i>MB</i>
* label `@@/@@` (in hdd label) - mount point (`/` in example) usage, <i>%</i>. Separator for mount points list is `;`, for example `@@/;/home;/mnt/global@@` * label `@@/@@` (in hdd label) - mount point (`/` in example) usage, <i>%</i>. 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, <i>KB/s</i>. You may specify network device: something like `@@eth0@@` * label `$net` - download and upload speed, <i>KB/s</i>. You may specify network device: something like `@@eth0@@`
* label `$netdev` - current network device * label `$netdev` - current network device
* label `$bat` - battery charge, <i>%</i>. Battery device may be set below. File (`/sys/class/power_supply/BAT0/capacity` by default) must contain only battery charge in percent * label `$bat` - battery charge, <i>%</i>. Battery device may be set below. File (`/sys/class/power_supply/BAT0/capacity` by default) must contain only battery charge in percent

View File

@ -8,7 +8,7 @@ cmake_policy (SET CMP0015 NEW)
project (pytextmonitor) project (pytextmonitor)
set (PROJECT_VERSION_MAJOR 1) set (PROJECT_VERSION_MAJOR 1)
set (PROJECT_VERSION_MINOR 6) 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}) set (PROJECT_VERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH})
message (STATUS "Version: ${PROJECT_VERSION}") message (STATUS "Version: ${PROJECT_VERSION}")