diff --git a/linux/appdata/org.kde.falkon.appdata.xml b/linux/appdata/org.kde.falkon.appdata.xml
index d8735bfaa..477ecbe81 100644
--- a/linux/appdata/org.kde.falkon.appdata.xml
+++ b/linux/appdata/org.kde.falkon.appdata.xml
@@ -80,4 +80,15 @@
Falkon 包含所有浏览器的高级功能,包括书签、历史、侧边栏和标签页。您可以通过内置的 RSS 阅读器管理 RSS 资源,通过内置的 AdBlock 插件屏蔽广告,通过 Click2Flash 屏蔽 Flash 内容,通过 SSL 管理器编辑本地 CA 认证数据库。
https://kde.org/
+
+
+ https://cdn.kde.org/screenshots/falkon/falkon.png
+
+
+ https://userbase.kde.org/Falkon
+ https://bugs.kde.org/enter_bug.cgi?format=guided&product=falkon
+ KDE
+
+ falkon
+
diff --git a/src/lib/network/schemehandlers/falkonschemehandler.cpp b/src/lib/network/schemehandlers/falkonschemehandler.cpp
index d36fb8d25..3d811511c 100644
--- a/src/lib/network/schemehandlers/falkonschemehandler.cpp
+++ b/src/lib/network/schemehandlers/falkonschemehandler.cpp
@@ -27,6 +27,7 @@
#include "iconprovider.h"
#include "sessionmanager.h"
#include "restoremanager.h"
+#include "../config.h"
#include
#include
diff --git a/src/lib/other/aboutdialog.cpp b/src/lib/other/aboutdialog.cpp
index d654e7bf3..94cfcd2a1 100644
--- a/src/lib/other/aboutdialog.cpp
+++ b/src/lib/other/aboutdialog.cpp
@@ -21,6 +21,7 @@
#include "mainapplication.h"
#include "webpage.h"
#include "useragentmanager.h"
+#include "../config.h"
#include
#include
diff --git a/src/lib/webengine/webview.cpp b/src/lib/webengine/webview.cpp
index 89059ffca..bb17205af 100644
--- a/src/lib/webengine/webview.cpp
+++ b/src/lib/webengine/webview.cpp
@@ -469,13 +469,6 @@ void WebView::slotUrlChanged(const QUrl &url)
emit titleChanged(title());
m_backgroundActivity = oldActivity;
}
-
- // Don't save blank page / speed dial in tab history
- if (!history()->canGoForward() && history()->backItems(1).size() == 1) {
- const QString s = LocationBar::convertUrlToText(history()->backItem().url());
- if (s.isEmpty())
- history()->clear();
- }
}
void WebView::slotTitleChanged(const QString &title)