Skip to content

Commit

Permalink
Release v1.9.5
Browse files Browse the repository at this point in the history
  • Loading branch information
xsacha committed Oct 15, 2014
1 parent 4408fd1 commit 3e5fb10
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Sachesi.pro
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ TARGET="Sachesi"
win32: RC_ICONS += assets/sachesi-114.ico
else:mac: ICON = assets/sachesi-114.icns
else: ICON = assets/sachesi-114.png
VERSION = 1.9.4
VERSION = 1.9.5

# Global specific
CONFIG += c++11
Expand Down
4 changes: 2 additions & 2 deletions src/appworld.h
Original file line number Diff line number Diff line change
Expand Up @@ -208,8 +208,8 @@ class AppWorld : public QObject
xml.readNext();
if (xml.tokenType() == QXmlStreamReader::StartElement) {
if (xml.name() == "image"
&& (xml.attributes().value("imagetype").toInt() == 1)
|| (xml.attributes().value("imagetype").toInt() == 7))
&& (xml.attributes().value("imagetype").toInt() == 1
|| xml.attributes().value("imagetype").toInt() == 7))
app->setImage(xml.attributes().value("src").toString());
else if (xml.name() == "vendor") {
app->setVendorId(xml.attributes().value("id").toString());
Expand Down
2 changes: 1 addition & 1 deletion src/sachesi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Q_DECL_EXPORT int main(int argc, char *argv[])
app.setOrganizationName("Qtness");
app.setOrganizationDomain("qtness.com");
app.setApplicationName("Sachesi");
app.setApplicationVersion("1.9.4");
app.setApplicationVersion("1.9.5");

// Install translator by locale language string
QTranslator appTranslator;
Expand Down
1 change: 1 addition & 0 deletions translations.qrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<file>translations/French.qm</file>
<file>translations/Spanish.qm</file>
<file>translations/German.qm</file>
<file>translations/Dutch.qm</file>
<file>translations/Chinese.qm</file>
</qresource>
</RCC>

0 comments on commit 3e5fb10

Please sign in to comment.