Skip to content

Commit

Permalink
version: Updated to 0.18.8 (24.08.2017)
Browse files Browse the repository at this point in the history
  • Loading branch information
Funcy-dcm committed Aug 24, 2017
1 parent b4f008b commit 276f04b
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 12 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Version 0.18.8 (24 Aug 2017)
* Fixed: "Show Unread" news filter was not working

Version 0.18.7 (23 Aug 2017)
* Added: Share. Reddit, Instapaper
* Changed: SQLite 3.20.0
Expand Down
5 changes: 5 additions & 0 deletions HISTORY_EN
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
<STYLE>a { color: blue; text-decoration: none; }</STYLE>
<BODY>
<!---------------------------------------------------------------------------->
<p><b>Version 0.18.8</b> (24 Aug 2017)
<ul>
<li>Fixed: "Show Unread" news filter was not working</li>
</ul>
<!---------------------------------------------------------------------------->
<p><b>Version 0.18.7</b> (23 Aug 2017)
<ul>
<li>Added: Share. Reddit, Instapaper</li>
Expand Down
7 changes: 6 additions & 1 deletion HISTORY_RU
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@
<STYLE>a { color: blue; text-decoration: none; }</STYLE>
<BODY>
<!---------------------------------------------------------------------------->
<p><b>Версия 0.18.7</b> (23 август 2017)
<p><b>Версия 0.18.8</b> (24 Авг 2017)
<ul>
<li>Исправлено: Не работал фильтр новостей "Показать непрочитанные"</li>
</ul>
<!---------------------------------------------------------------------------->
<p><b>Версия 0.18.7</b> (23 Авг 2017)
<ul>
<li>Добавлено: Поделиться. Reddit, Instapaper</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.7</string>
<string>0.18.8</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 "23.08.2017\0"
#define STRPRODUCTVER "0.18.7\0"
#define STRDATE "24.08.2017\0"
#define STRPRODUCTVER "0.18.8\0"

#define VERSION 0,18,7
#define VERSION 0,18,8
#define PRODUCTVER VERSION,0
#define FILEVER VERSION,VCS_REVISION

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

treeItem.clear();
treeItem << "fa" << QString::fromUtf8("فارسی [FA]")
<< "0.18.7"
<< "0.18.8"
<< "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.7"
<< "0.18.8"
<< "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.7"
<< "0.18.8"
<< "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.7"
<< "0.18.8"
<< "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.7"
<< "0.18.8"
<< 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.7"
<< "0.18.8"
<< 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.7"
<< "0.18.8"
<< QString::fromUtf8("Jaff (Oprea Nicolae)") << "[email protected]";
languageItem = new QTreeWidgetItem(treeItem);
languageItem->setIcon(1, QIcon(":/flags/flag_RO"));
Expand Down

0 comments on commit 276f04b

Please sign in to comment.