Bump version and update changelog

This commit is contained in:
Colin Duquesnoy 2016-06-19 14:53:30 +02:00
parent 51d6045240
commit 473d092c99
2 changed files with 5 additions and 6 deletions

View File

@ -51,7 +51,7 @@ if (!f.exists())
{ {
printf("Unable to set stylesheet, file not found\n"); printf("Unable to set stylesheet, file not found\n");
} }
else else
{ {
f.open(QFile::ReadOnly | QFile::Text); f.open(QFile::ReadOnly | QFile::Text);
QTextStream ts(&f); QTextStream ts(&f);
@ -126,6 +126,9 @@ request.
Changelog Changelog
=========== ===========
* 2.2:
- Major update of the color scheme based on the Breeze Dark theme of KDE 5
- fix issues #29, #30, #31, #32 and #35
* 2.1: * 2.1:
- Add style for QPushButton:checked - Add style for QPushButton:checked
- Improve QCheckBox and QRadioButton style - Improve QCheckBox and QRadioButton style
@ -196,7 +199,3 @@ Here are a few snapshots:
![alt text](/screenshots/QDarkStyle example 1.png "QDarkStyle example 1") ![alt text](/screenshots/QDarkStyle example 1.png "QDarkStyle example 1")
![alt text](/screenshots/QDarkStyle example 2.png "QDarkStyle example 2") ![alt text](/screenshots/QDarkStyle example 2.png "QDarkStyle example 2")
![alt text](/screenshots/01.png "Screenshot 01") ![alt text](/screenshots/01.png "Screenshot 01")

View File

@ -32,7 +32,7 @@ import logging
import platform import platform
__version__ = "2.1" __version__ = "2.2"
def _logger(): def _logger():