Skip to content

Commit c1f18a3

Browse files
author
arcan1s
committed
release 1.8.3
1 parent 962478a commit c1f18a3

File tree

11 files changed

+980
-6
lines changed

11 files changed

+980
-6
lines changed

AUTHORS

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ Current developers:
22
Evgeniy Alekseev aka arcanis <esalexeev (at) gmail (dot) com>
33

44
Translators:
5-
@Mermouy (french translations)
5+
@Mermouy (French translations)
6+
Ernesto Avilés Vzqz (Spanish translations)

CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Ver.1.8.3:
2+
+ added Spanish translation (thanks to Ernesto Avilés Vzqz)
3+
+ added readme to the package
4+
15
Ver.1.8.2:
26
+ added different temperature units (Farenheit and Kelvin)
37

CHANGELOG-RU

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Вер.1.8.3:
2+
+ добавлен испанский перевод (Ernesto Avilés Vzqz)
3+
+ добавлены файлы readme
4+
15
Вер.1.8.2:
26
+ добавлены различные температурные единицы (Farenheit и Kelvin)
37

PKGBUILD

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
pkgname=kdeplasma-applets-pytextmonitor
44
_pkgname=pytextmonitor
5-
pkgver=1.8.2
5+
pkgver=1.8.3
66
pkgrel=1
77
pkgdesc="Minimalistic Plasmoid script written on Python2. It looks like widgets in Awesome WM"
88
arch=('i686' 'x86_64')
@@ -20,7 +20,7 @@ optdepends=("amarok: for music player monitor"
2020
makedepends=('automoc4' 'cmake')
2121
source=(https://github.com/arcan1s/pytextmonitor/releases/download/V.${pkgver}/${_pkgname}-${pkgver}-src.tar.xz)
2222
install=${pkgname}.install
23-
md5sums=('2d5f5a2587c32cce3721ea217564a4ec')
23+
md5sums=('fc23780079bd9ecf29a3b5e8328abbb3')
2424
backup=('usr/share/config/extsysmon.conf')
2525

2626
prepare() {

create_archive.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
# update english readme
4-
cp README.md readme/en.md
4+
cp README.md sources/readme/en.md
55

66
SRCDIR="sources"
77
VERSION=$(grep -m1 PROJECT_VERSION_MAJOR sources/CMakeLists.txt | awk '{print $3}' | cut -c 1).\
@@ -19,7 +19,7 @@ rm -rf "${ARCHIVE}"
1919

2020
# build widget
2121
ARCHIVE="pytextmonitor"
22-
FILES="AUTHORS CHANGELOG CHANGELOG-RU COPYING readme"
22+
FILES="AUTHORS CHANGELOG CHANGELOG-RU COPYING"
2323
IGNORELIST="build usr"
2424
# create archive
2525
[[ -e ${ARCHIVE}-${VERSION}-src.tar.xz ]] && rm -f "${ARCHIVE}-${VERSION}-src.tar.xz"

sources/CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ cmake_policy (SET CMP0015 NEW)
88
project (pytextmonitor)
99
set (PROJECT_VERSION_MAJOR 1)
1010
set (PROJECT_VERSION_MINOR 8)
11-
set (PROJECT_VERSION_PATCH 2)
11+
set (PROJECT_VERSION_PATCH 3)
1212
set (PROJECT_VERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH})
1313

1414
message (STATUS "Version: ${PROJECT_VERSION}")
@@ -25,3 +25,4 @@ endif ()
2525

2626
add_subdirectory (ext-sysmon)
2727
add_subdirectory (ptm)
28+
add_subdirectory (readme)

0 commit comments

Comments
 (0)