Skip to content

Commit

Permalink
version: Updated to 0.18.12 (02.07.2018)
Browse files Browse the repository at this point in the history
  • Loading branch information
Funcy-dcm committed Jul 1, 2018
1 parent 196c514 commit b4adf1f
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 9 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
Version 0.18.12 (02 Jul 2018)
* Added: Share. Hacker News
* Changed: Support for Qt 5.11 (Linux)
* Changed: High DPI support
* Changed: SQLite 3.24.0
* Fixed: Downloading feeds' icons for some feeds

Version 0.18.11 (31 May 2018)
* Added: Notifications. Option "Close notification after opening news"
* Added: Support for Youtube feeds
Expand Down
11 changes: 11 additions & 0 deletions HISTORY_EN
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@
<STYLE>a { color: blue; text-decoration: none; }</STYLE>
<BODY>
<!---------------------------------------------------------------------------->
<p><b>Version 0.18.12</b> (02 Jul 2018)
<ul>
<li>Added: Share. Hacker News</li>

<li>Changed: Support for Qt 5.11 (Linux)</li>
<li>Changed: High DPI support</li>
<li>Changed: SQLite 3.24.0</li>

<li>Fixed: Downloading feeds' icons for some feeds</li>
</ul>
<!---------------------------------------------------------------------------->
<p><b>Version 0.18.11</b> (31 May 2018)
<ul>
<li>Added: Notifications. Option "Close notification after opening news"</li>
Expand Down
11 changes: 11 additions & 0 deletions HISTORY_RU
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@
<STYLE>a { color: blue; text-decoration: none; }</STYLE>
<BODY>
<!---------------------------------------------------------------------------->
<p><b>Версия 0.18.12</b> (02 Июл 2018)
<ul>
<li>Добавлено: Поделиться. Hacker News</li>

<li>Изменено: Поддержка Qt 5.11 (Linux)</li>
<li>Изменено: Поддержка High DPI</li>
<li>Изменено: Библиотека SQLite 3.24.0</li>

<li>Исправлено: Загрузка иконки ленты для некоторых лент</li>
</ul>
<!---------------------------------------------------------------------------->
<p><b>Версия 0.18.11</b> (31 Май 2018)
<ul>
<li>Добавлено: Уведомления. Опция "Закрыть уведомление после открытия новости"</li>
Expand Down
2 changes: 1 addition & 1 deletion Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<key>CFBundleDisplayName</key>
<string>@EXECUTABLE@</string>
<key>CFBundleShortVersionString</key>
<string>0.18.11</string>
<string>0.18.12</string>
<key>NSHumanReadableCopyright</key>
<string>(C) 2011-2018 QuiteRSS Team</string>
<key>NSPrincipalClass</key>
Expand Down
6 changes: 3 additions & 3 deletions src/VersionNo.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#include "VersionRev.h"

#define STRDATE "31.05.2018\0"
#define STRPRODUCTVER "0.18.11\0"
#define STRDATE "02.07.2018\0"
#define STRPRODUCTVER "0.18.12\0"

#define VERSION 0,18,11
#define VERSION 0,18,12
#define PRODUCTVER VERSION,0
#define FILEVER VERSION,VCS_REVISION

Expand Down
10 changes: 5 additions & 5 deletions src/optionsdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1409,7 +1409,7 @@ void OptionsDialog::createLanguageWidget()

treeItem.clear();
treeItem << "fr" << QString::fromUtf8("Français [FR]")
<< "0.18.10"
<< "0.18.12"
<< "Glad Deschrijver" << "[email protected]";
languageItem = new QTreeWidgetItem(treeItem);
languageItem->setIcon(1, QIcon(":/flags/flag_FR"));
Expand Down Expand Up @@ -1441,7 +1441,7 @@ void OptionsDialog::createLanguageWidget()

treeItem.clear();
treeItem << "it" << QString::fromUtf8("Italiano [IT]")
<< "0.18.10"
<< "0.18.12"
<< "ZeroWis" << "[email protected]";
languageItem = new QTreeWidgetItem(treeItem);
languageItem->setIcon(1, QIcon(":/flags/flag_IT"));
Expand Down Expand Up @@ -1473,7 +1473,7 @@ void OptionsDialog::createLanguageWidget()

treeItem.clear();
treeItem << "nl" << QString::fromUtf8("Nederlands [NL]")
<< "0.18.10"
<< "0.18.12"
<< "TeLLie" << "[email protected]";
languageItem = new QTreeWidgetItem(treeItem);
languageItem->setIcon(1, QIcon(":/flags/flag_NL"));
Expand Down Expand Up @@ -1521,7 +1521,7 @@ void OptionsDialog::createLanguageWidget()

treeItem.clear();
treeItem << "sk" << QString::fromUtf8("Slovenčina [SK]")
<< "0.18.10"
<< "0.18.12"
<< QString::fromUtf8("DAG Software (Ďanovský Ján)") << "[email protected]";
languageItem = new QTreeWidgetItem(treeItem);
languageItem->setIcon(1, QIcon(":/flags/flag_SK"));
Expand Down Expand Up @@ -1553,7 +1553,7 @@ void OptionsDialog::createLanguageWidget()

treeItem.clear();
treeItem << "tr" << QString::fromUtf8("Türkçe [TR]")
<< "0.13.3"
<< "0.18.12"
<< QString::fromUtf8("Mert Başaranoğlu") << "[email protected]";
languageItem = new QTreeWidgetItem(treeItem);
languageItem->setIcon(1, QIcon(":/flags/flag_TR"));
Expand Down

0 comments on commit b4adf1f

Please sign in to comment.