Skip to content

Commit

Permalink
* Fixed image dimensions to force proper rendering
Browse files Browse the repository at this point in the history
* Updated version number and packaging
  • Loading branch information
ebruck committed May 14, 2017
1 parent 39d794b commit b57ff87
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
----------
Expand All @@ -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
----
Expand Down
2 changes: 1 addition & 1 deletion debian/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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}..." )
Expand Down
8 changes: 7 additions & 1 deletion debian/changelog
Original file line number Diff line number Diff line change
@@ -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.

2 changes: 1 addition & 1 deletion debian/copyright
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Upstream-Contact: Edward G. Bruck <ed.bruck1@gmail.com>
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.
Binary file modified icons/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified icons/2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified icons/3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified icons/4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified icons/5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified icons/6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 1 addition & 3 deletions indicator-doom-cpu
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,10 @@ with this program. If not, see <http://www.gnu.org/licenses/>.
'''
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

Expand Down

0 comments on commit b57ff87

Please sign in to comment.