From 0a9d9d751ac824750df91c9299e92b6a56cba38d Mon Sep 17 00:00:00 2001 From: Jaakko Keränen Date: Thu, 26 Nov 2020 14:07:30 +0200 Subject: Feeds: Added "about:feeds" Show all entries in a CAPCOM-like chronological list. --- src/gmrequest.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/gmrequest.c') diff --git a/src/gmrequest.c b/src/gmrequest.c index 7443c68c..2ac580b6 100644 --- a/src/gmrequest.c +++ b/src/gmrequest.c @@ -25,8 +25,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "gmcerts.h" #include "gopher.h" #include "app.h" /* dataDir_App() */ -#include "embedded.h" +#include "feeds.h" #include "ui/text.h" +#include "embedded.h" #include "defs.h" #include @@ -259,6 +260,9 @@ static const iBlock *aboutPageSource_(iRangecc path) { if (equalCase_Rangecc(path, "debug")) { return utf8_String(debugInfo_App()); } + if (equalCase_Rangecc(path, "feeds")) { + return utf8_String(entryListPage_Feeds()); + } return src; } -- cgit v1.2.3