@ -31,6 +31,6 @@ HEADERS += \
TRANSLATIONS = ts/2048-qt_zh_CN.ts ts/2048-qt_ru_RU.ts
VERSION = 0.1.5
VERSION = 0.1.6
DEFINES += APP_VERSION=\\\"$${VERSION}\\\"
@ -1,6 +1,6 @@
The MIT License (MIT)
Copyright (c) 2014 Qiaoyong Zhong
Copyright (c) 2015 Qiaoyong Zhong
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@ -51,6 +51,13 @@ And please vote it if you like it.
sudo apt-get install 2048-qt
```
### Gentoo
2048-Qt is available from the overlay maintained by [Jorge Pizarro Callejas](https://github.com/jorgicio):
layman -a jorgicio
emerge 2048-qt
### Ubuntu
From Ubuntu 14.10 on, install it through:
@ -9,7 +9,7 @@
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
Settings settings(0, "xiaoyong", "2048-Qt");
Settings settings(0, "2048-qt", "2048-Qt");
settings.setVersion(QString(APP_VERSION));
// Localization
@ -1,4 +1,4 @@
.TH 2048-QT 6 2014-05-03
.TH 2048-QT 6 2015-09-13
.SH NAME
2048-qt \- the 2048 number game implemented in Qt
.SH SYNOPSIS
@ -8,7 +8,7 @@ Move the number tiles using arrow keys and merge the same numbers. Once a 2048 t
.SH OPTIONS
2048-QT is configured graphically and does not have any commandline options.
.SH FILES
~/.config/xiaoyong/2048-Qt.conf
~/.config/2048-qt/2048-Qt.conf
.RS
Per user configuration file.
.RE
@ -319,7 +319,7 @@ ApplicationWindow {
MessageDialog {
id: aboutDialog
title: qsTr("About 2048-Qt")
text: qsTr("<p style='font-weight: bold; font-size: 24px'>2048-Qt</p><p>Version " + settings.getVersion() + "</p><p>2014 Qiaoyong Zhong <solary.sh@gmail.com></p>")
text: qsTr("<p style='font-weight: bold; font-size: 24px'>2048-Qt</p><p>Version " + settings.getVersion() + "</p><p>2015 Qiaoyong Zhong <solary.sh@gmail.com></p>")
standardButtons: StandardButton.Ok
}