diff --git a/README.md b/README.md index 6d6f88a..bea4b2c 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ DOOM images are the property of id Software. Inspired by [DOOM CPU Monitor](https://github.com/AshFurrow/DOOM-CPU-Monitor) for the Mac. -Latest Debian package [indicator-doom-cpu-1.0.0-noarch.deb](https://github.com/ebruck/indicator-doom-cpu/releases/download/v1.0/indicator-doom-cpu-1.0.0-noarch.deb) +Latest Debian package [indicator-doom-cpu-1.0.1-noarch.deb](https://github.com/ebruck/indicator-doom-cpu/releases/download/v1.0.1/indicator-doom-cpu-1.0.1-noarch.deb) Screenshot ---------- @@ -21,7 +21,7 @@ Build Debian Package * `cd build` * `cmake ../debian/` * `make package` -* `sudo dpkg -i indicator-doom-cpu-1.0.0-noarch.deb` +* `sudo dpkg -i indicator-doom-cpu-1.0.1-noarch.deb` Todo ---- diff --git a/debian/CMakeLists.txt b/debian/CMakeLists.txt index 15392a3..ca4cfef 100644 --- a/debian/CMakeLists.txt +++ b/debian/CMakeLists.txt @@ -3,7 +3,7 @@ CMAKE_MINIMUM_REQUIRED( VERSION 2.8 ) SET( APP_VER_MAJOR 1 ) SET( APP_VER_MINOR 0 ) -SET( APP_VER_PATCH 0 ) +SET( APP_VER_PATCH 1 ) SET( APP_VERSION ${APP_VER_MAJOR}.${APP_VER_MINOR}.${APP_VER_PATCH} ) MESSAGE( "Building version: ${APP_VERSION}..." ) diff --git a/debian/changelog b/debian/changelog index 0f4ad3d..43f6c39 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +indicator-doom-cpu (1.0.1) + + * Support AppIndicator and GtkStatusIcon tray API + * Fixed image dimensions to force proper rendering + indicator-doom-cpu (1.0.0) - * Initial release. + * Initial release. + diff --git a/debian/copyright b/debian/copyright index aca8269..067291f 100644 --- a/debian/copyright +++ b/debian/copyright @@ -4,7 +4,7 @@ Upstream-Contact: Edward G. Bruck Source: https://github.com/ebruck/indicator-doom-cpu Files: * -Copyright: Copyright (C) 2014 Edward G. Bruck +Copyright: Copyright (C) 2014,2017 Edward G. Bruck License: GPL-3+ The full text of the GPL is distributed in /usr/share/common-licenses/GPL-3 on Debian systems. diff --git a/icons/1.png b/icons/1.png index 44e6d00..2a8d82f 100644 Binary files a/icons/1.png and b/icons/1.png differ diff --git a/icons/2.png b/icons/2.png index 60049c7..4650b76 100644 Binary files a/icons/2.png and b/icons/2.png differ diff --git a/icons/3.png b/icons/3.png index c78520f..c568a82 100644 Binary files a/icons/3.png and b/icons/3.png differ diff --git a/icons/4.png b/icons/4.png index 6bfb69a..9dc51de 100644 Binary files a/icons/4.png and b/icons/4.png differ diff --git a/icons/5.png b/icons/5.png index 01d85aa..0ca70ae 100644 Binary files a/icons/5.png and b/icons/5.png differ diff --git a/icons/6.png b/icons/6.png index 9ed1f5f..023109a 100644 Binary files a/icons/6.png and b/icons/6.png differ diff --git a/indicator-doom-cpu b/indicator-doom-cpu index 90e3612..a1528e3 100755 --- a/indicator-doom-cpu +++ b/indicator-doom-cpu @@ -17,12 +17,10 @@ with this program. If not, see . ''' APP_NAME = 'DOOM CPU Indicator' APP_WEBSITE = 'https://github.com/ebruck/indicator-doom-cpu' -APP_VERSION = '1.0.0' +APP_VERSION = '1.0.1' APP_COPYRIGHT = '\n'.join([c for c in str.splitlines(APP_LICENCE) if c.startswith("Copyright")]) APP_AUTHORS = [a[10:] for a in str.splitlines(APP_LICENCE) if a.startswith("Copyright")] -print(APP_AUTHORS) - import os import time