Skip to content

Commit

Permalink
Release 1.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
arcan1s committed Apr 10, 2014
1 parent 9c8be61 commit a357627
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Ver.1.8.1:
* change pkg update time to hour

Ver.1.8.0:
+ added scrollbar to configuration interface
+ added AC lines configuration
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG-RU
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Вер.1.8.1:
* поле pkg теперь обновляется раз в час

Вер.1.8.0:
+ добавлены скроллбары в конфигурационный интерфейс
+ добавлена настройка значений AC
Expand Down
4 changes: 2 additions & 2 deletions PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

pkgname=kdeplasma-applets-pytextmonitor
_pkgname=pytextmonitor
pkgver=1.8.0
pkgver=1.8.1
pkgrel=1
pkgdesc="Minimalistic Plasmoid script written on Python2. It looks like widgets in Awesome WM"
arch=('i686' 'x86_64')
Expand All @@ -20,7 +20,7 @@ optdepends=("amarok: for music player monitor"
makedepends=('automoc4' 'cmake')
source=(https://github.com/arcan1s/pytextmonitor/releases/download/V.${pkgver}/${_pkgname}-${pkgver}-src.tar.xz)
install=${pkgname}.install
md5sums=('9052985dc219e75ffbed88ce3ebf5a32')
md5sums=('de872b28c48b9b4903dcfa50158595dc')
backup=('usr/share/config/extsysmon.conf')

prepare() {
Expand Down
2 changes: 1 addition & 1 deletion sources/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ cmake_policy (SET CMP0015 NEW)
project (pytextmonitor)
set (PROJECT_VERSION_MAJOR 1)
set (PROJECT_VERSION_MINOR 8)
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}")
Expand Down
3 changes: 2 additions & 1 deletion sources/ptm/contents/code/dataengine.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

from PyQt4.QtCore import *
from PyQt4.QtGui import *
from PyKDE4.plasma import Plasma

import datetime

Expand Down Expand Up @@ -65,7 +66,7 @@ def connectToEngine(self, bools=None, dataEngines=None, interval=1000, names=Non
dataEngines['system'].connectSource("network/interfaces/" + names['net'] + "/transmitter/data", self.parent, interval)
dataEngines['system'].connectSource("network/interfaces/" + names['net'] + "/receiver/data", self.parent, interval)
if (bools['pkg'] > 0):
dataEngines['ext'].connectSource("pkg", self.parent, interval)
dataEngines['ext'].connectSource("pkg", self.parent, 60*60*1000, Plasma.AlignToHour)
if (bools['player'] > 0):
dataEngines['ext'].connectSource("player", self.parent, interval)
if (bools['ps'] > 0):
Expand Down

0 comments on commit a357627

Please sign in to comment.