Skip to content

Commit

Permalink
version: Updated to 0.18.6 (20.06.2017)
Browse files Browse the repository at this point in the history
  • Loading branch information
Funcy-dcm committed Jun 20, 2017
1 parent 8645d8c commit b92ad3e
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 16 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Version 0.18.6 (20 Jun 2017)
* Changed: SQLite 3.19.3
* Fixed: Displaying dialogs in mode "Stay on top"
* Fixed: Mark displayed news as read when switching feeds

Version 0.18.5 (15 Jun 2017)
* Changed: SQLite 3.19.1
* Changed: OpenSSL 1.1.0f (Windows)
Expand Down
2 changes: 1 addition & 1 deletion HISTORY_EN
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<STYLE>a { color: blue; text-decoration: none; }</STYLE>
<BODY>
<!---------------------------------------------------------------------------->
<p><b>Version 0.18.5+</b> (xx Jun 2017)
<p><b>Version 0.18.6</b> (20 Jun 2017)
<ul>
<li>Changed: SQLite 3.19.3</li>

Expand Down
2 changes: 1 addition & 1 deletion HISTORY_RU
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<STYLE>a { color: blue; text-decoration: none; }</STYLE>
<BODY>
<!---------------------------------------------------------------------------->
<p><b>Версия 0.18.5+</b> (xx Июн 2017)
<p><b>Версия 0.18.6</b> (20 Июн 2017)
<ul>
<li>Изменено: Библиотека SQLite 3.19.3</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.5</string>
<string>0.18.6</string>
<key>NSHumanReadableCopyright</key>
<string>(C) 2011-2017 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 "15.06.2017\0"
#define STRPRODUCTVER "0.18.5\0"
#define STRDATE "20.06.2017\0"
#define STRPRODUCTVER "0.18.6\0"

#define VERSION 0,18,5
#define VERSION 0,18,6
#define PRODUCTVER VERSION,0
#define FILEVER VERSION,VCS_REVISION

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

treeItem.clear();
treeItem << "bg" << QString::fromUtf8("Български [BG]")
<< "0.18.5"
<< "0.18.6"
<< QString::fromUtf8("Nikolai Tsvetkov") << "[email protected]";
languageItem = new QTreeWidgetItem(treeItem);
languageItem->setIcon(1, QIcon(":/flags/flag_BG"));
languageFileList_->addTopLevelItem(languageItem);

treeItem.clear();
treeItem << "cs" << QString::fromUtf8("Čeština [CS]")
<< "0.18.5"
<< "0.18.6"
<< QString::fromUtf8("Matej Szendi") << "[email protected]";
languageItem = new QTreeWidgetItem(treeItem);
languageItem->setIcon(1, QIcon(":/flags/flag_CZ"));
Expand Down Expand Up @@ -1390,7 +1390,7 @@ void OptionsDialog::createLanguageWidget()

treeItem.clear();
treeItem << "fa" << QString::fromUtf8("فارسی [FA]")
<< "0.18.5"
<< "0.18.6"
<< "H.Mohamadi" << "";
languageItem = new QTreeWidgetItem(treeItem);
languageItem->setIcon(1, QIcon(":/flags/flag_FA"));
Expand All @@ -1406,7 +1406,7 @@ void OptionsDialog::createLanguageWidget()

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

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

treeItem.clear();
treeItem << "nl" << QString::fromUtf8("Nederlands [NL]")
<< "0.18.5"
<< "0.18.6"
<< "TeLLie" << "[email protected]";
languageItem = new QTreeWidgetItem(treeItem);
languageItem->setIcon(1, QIcon(":/flags/flag_NL"));
languageFileList_->addTopLevelItem(languageItem);

treeItem.clear();
treeItem << "pl" << QString::fromUtf8("Polski [PL]")
<< "0.18.5"
<< "0.18.6"
<< QString::fromUtf8("Piotr Pecka") << "[email protected]";
languageItem = new QTreeWidgetItem(treeItem);
languageItem->setIcon(1, QIcon(":/flags/flag_PL"));
languageFileList_->addTopLevelItem(languageItem);

treeItem.clear();
treeItem << "pt_BR" << QString::fromUtf8("Português (Brazil) [pt_BR]")
<< "0.18.5"
<< "0.18.6"
<< QString::fromUtf8("Marcos M. Ribeiro") << "";
languageItem = new QTreeWidgetItem(treeItem);
languageItem->setIcon(1, QIcon(":/flags/flag_BR"));
Expand All @@ -1502,7 +1502,7 @@ void OptionsDialog::createLanguageWidget()

treeItem.clear();
treeItem << "ro_RO" << QString::fromUtf8("Limba română [ro_RO]")
<< "0.18.5"
<< "0.18.6"
<< QString::fromUtf8("Jaff (Oprea Nicolae)") << "[email protected]";
languageItem = new QTreeWidgetItem(treeItem);
languageItem->setIcon(1, QIcon(":/flags/flag_RO"));
Expand All @@ -1518,7 +1518,7 @@ void OptionsDialog::createLanguageWidget()

treeItem.clear();
treeItem << "sk" << QString::fromUtf8("Slovenčina [SK]")
<< "0.18.5"
<< "0.18.6"
<< QString::fromUtf8("DAG Software (Ďanovský Ján)") << "[email protected]";
languageItem = new QTreeWidgetItem(treeItem);
languageItem->setIcon(1, QIcon(":/flags/flag_SK"));
Expand Down

0 comments on commit b92ad3e

Please sign in to comment.