From 86807a54f426bfb86a8885e08227e22efa66e26d Mon Sep 17 00:00:00 2001 From: Martin Rotter Date: Wed, 10 Jun 2015 07:50:13 +0200 Subject: [PATCH] Initial Google Suggest API implementation. --- CMakeLists.txt | 6 +- resources/text/CHANGELOG | 12 ++ src/definitions/definitions.h.in | 1 + src/gui/baselineedit.cpp | 5 + src/gui/baselineedit.h | 3 + src/gui/locationlineedit.cpp | 5 +- src/gui/locationlineedit.h | 2 + src/network-web/googlesuggest.cpp | 203 ++++++++++++++++++++++++++++++ src/network-web/googlesuggest.h | 81 ++++++++++++ 9 files changed, 315 insertions(+), 3 deletions(-) mode change 100644 => 100755 src/gui/baselineedit.cpp mode change 100644 => 100755 src/gui/baselineedit.h mode change 100644 => 100755 src/gui/locationlineedit.cpp mode change 100644 => 100755 src/gui/locationlineedit.h create mode 100755 src/network-web/googlesuggest.cpp create mode 100755 src/network-web/googlesuggest.h diff --git a/CMakeLists.txt b/CMakeLists.txt index f2a12dcea..5ee953754 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -65,8 +65,8 @@ project(rssguard) set(APP_NAME "RSS Guard") set(APP_LOW_NAME "rssguard") -set(APP_VERSION "2.4.0") -set(FILE_VERSION "2,4,0,0") +set(APP_VERSION "2.4.1") +set(FILE_VERSION "2,4,1,0") set(APP_AUTHOR "Martin Rotter") set(APP_URL "http://bitbucket.org/skunkos/rssguard") set(APP_URL_ISSUES "http://bitbucket.org/skunkos/rssguard/issues") @@ -417,6 +417,7 @@ set(APP_SOURCES src/network-web/downloader.cpp src/network-web/downloadmanager.cpp src/network-web/discoverfeedsbutton.cpp + src/network-web/googlesuggest.cpp # MAIN sources. src/main.cpp @@ -503,6 +504,7 @@ set(APP_HEADERS src/network-web/downloader.h src/network-web/downloadmanager.h src/network-web/discoverfeedsbutton.h + src/network-web/googlesuggest.h ) # APP form files. diff --git a/resources/text/CHANGELOG b/resources/text/CHANGELOG index 117b1be7b..dec73ab4c 100644 --- a/resources/text/CHANGELOG +++ b/resources/text/CHANGELOG @@ -1,4 +1,16 @@ +

2.4.1

+Added: + + +Fixed: + + +

2.4.0

Added: