File tree 5 files changed +10
-4
lines changed 5 files changed +10
-4
lines changed Original file line number Diff line number Diff line change
1
+ Ver.1.10.2:
2
+ - fix error with tempUnits in hddtemp label
3
+
1
4
Ver.1.10.1:
2
5
- fix error with number formats in ps label
3
6
- fix first initialization of DataEngine
Original file line number Diff line number Diff line change
1
+ Вер.1.10.2:
2
+ - фикс ошибки с tempUnits в поле hddtemp
3
+
1
4
Вер.1.10.1:
2
5
- пофикшена ошибка с форматами чисел в поле ps
3
6
- пофикшена инициализация значений в DataEngine
Original file line number Diff line number Diff line change 2
2
3
3
pkgname=kdeplasma-applets-pytextmonitor
4
4
_pkgname=pytextmonitor
5
- pkgver=1.10.1
5
+ pkgver=1.10.2
6
6
pkgrel=1
7
7
pkgdesc=" Minimalistic Plasmoid script written on Python2. It looks like widgets in Awesome WM"
8
8
arch=(' i686' ' x86_64' )
@@ -21,7 +21,7 @@ optdepends=("amarok: for music player monitor"
21
21
makedepends=(' automoc4' ' cmake' )
22
22
source=(https://github.com/arcan1s/pytextmonitor/releases/download/V.${pkgver} /${_pkgname} -${pkgver} -src.tar.xz)
23
23
install=${pkgname} .install
24
- md5sums=(' a494d131062ef26037cf273fe581a1f1 ' )
24
+ md5sums=(' 62b7cb57cb996282bb7decc2dbdf27c1 ' )
25
25
backup=(' usr/share/config/extsysmon.conf' )
26
26
27
27
prepare () {
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ cmake_policy (SET CMP0015 NEW)
8
8
project (pytextmonitor)
9
9
set (PROJECT_VERSION_MAJOR 1)
10
10
set (PROJECT_VERSION_MINOR 10)
11
- set (PROJECT_VERSION_PATCH 1 )
11
+ set (PROJECT_VERSION_PATCH 2 )
12
12
set (PROJECT_VERSION ${PROJECT_VERSION_MAJOR} .${PROJECT_VERSION_MINOR} .${PROJECT_VERSION_PATCH} )
13
13
14
14
message (STATUS "Version: ${PROJECT_VERSION} " )
Original file line number Diff line number Diff line change @@ -510,7 +510,7 @@ def hddtempText(self):
510
510
for i in devices :
511
511
if (line .split ('$hddtemp' + str (i ))[0 ] != line ):
512
512
line = line .split ('$hddtemp' + str (i ))[0 ] + \
513
- getTemp (str (self .ptm ['values' ]['hddtemp' ][self .ptm ['names' ]['hddtemp' ][i ]]), self .ptm ['vars' ]['adv' ]['tempUnit ' ]) + \
513
+ getTemp (str (self .ptm ['values' ]['hddtemp' ][self .ptm ['names' ]['hddtemp' ][i ]]), self .ptm ['vars' ]['adv' ]['tempUnits ' ]) + \
514
514
line .split ('$hddtemp' + str (i ))[1 ]
515
515
text = self .ptm ['vars' ]['app' ]['format' ][0 ] + line + self .ptm ['vars' ]['app' ]['format' ][1 ]
516
516
self .setText ("hddtemp" , text )
You can’t perform that action at this time.
0 commit comments