1
mirror of https://invent.kde.org/network/falkon.git synced 2024-12-20 18:56:34 +01:00

Fix StartPage search engine default configuration

BUG: 419530
FIXED-IN: 23.08.4

CherryPicked from: f2460c1f8e

Signed-off-by: Juraj Oravec <jurajoravec@mailo.com>
This commit is contained in:
Juraj Oravec 2023-11-26 23:00:14 +01:00
parent 71bf556bd6
commit 00a1b8c100
Signed by: SGOrava
GPG Key ID: 13660A3F1D9F093B
2 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,6 @@
Version 23.08.4 Version 23.08.4
* Fix crash when starting new session after crash (BUG: 408701) * Fix crash when starting new session after crash (BUG: 408701)
* Fix Startpage search engine default configuration (BUG: 419530)
Version 23.08.0 Version 23.08.0
* A bit faster restoring of session with a lot of tabs * A bit faster restoring of session with a lot of tabs

View File

@ -165,12 +165,11 @@ void SearchEnginesManager::restoreDefaults()
duck.suggestionsUrl = "https://ac.duckduckgo.com/ac/?q=%s&type=list"; duck.suggestionsUrl = "https://ac.duckduckgo.com/ac/?q=%s&type=list";
Engine sp; Engine sp;
sp.name = "StartPage"; sp.name = "Startpage";
sp.icon = QIcon(":/icons/sites/startpage.png"); sp.icon = QIcon(":/icons/sites/startpage.png");
sp.url = "https://startpage.com/do/search"; sp.url = "https://www.startpage.com/sp/search?query=%s&cat=web&pl=opensearch";
sp.postData = "query=%s&cat=web&language=english";
sp.shortcut = "sp"; sp.shortcut = "sp";
sp.suggestionsUrl = "https://startpage.com/cgi-bin/csuggest?output=json&lang=english&query=%s"; sp.suggestionsUrl = "https://www.startpage.com/osuggestions?q=%s";
Engine wiki; Engine wiki;
wiki.name = "Wikipedia (en)"; wiki.name = "Wikipedia (en)";