From c8480a74197bc6b80920f5ea1003ec82291bf2c8 Mon Sep 17 00:00:00 2001 From: cage Date: Thu, 1 Oct 2020 16:58:50 +0200 Subject: [PATCH] - tracking changes. --- ChangeLog | 75 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ NEWS.org | 10 ++++++++ 2 files changed, 85 insertions(+) diff --git a/ChangeLog b/ChangeLog index d3c4130..335563d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,78 @@ +2020-10-01 cage + + * src/program-events.lisp: + - [gemini] removed waiting for rendering of a page before going back + in browsing history. + +2020-10-01 cage + + * src/open-message-link-window.lisp, src/package.lisp, + src/program-events.lisp, src/ui-goodies.lisp: + + - [gemini] fixed the stopping of rendering the old page when a new + link is opened; + + - [gemini] added 'gemini-abort-all-downloading-event', used when + quitting. + +2020-09-30 cage + + * src/gemini-viewer.lisp, src/open-message-link-window.lisp, + src/package.lisp, src/priority-queue.lisp, src/program-events.lisp, + src/ui-goodies.lisp: + + - [gemini] remove all pending rendering events when quitting. + +2020-09-30 cage + + * src/package.lisp, src/priority-queue.lisp, + src/program-events.lisp: + + - [gemini] remove from the event queue all the lines got from a + gemtext download when aborting a download. + +2020-09-27 cage + + * src/api-client.lisp, src/api-pleroma.lisp, src/command-line.lisp, + src/package.lisp: + + - removed method to delete notifications using old API new version + of pleroma implements the same API as mastodon 3.x; + - fixed command line switch to get notification for mentions. + +2020-09-26 cage + + * src/api-client.lisp: + + - prevented crash when updating mentions The 'status' slot in a + 'mention' object can be nil, in this case expand the tree does not + makes sense and should be avoided. + +2020-09-26 cage + + * src/program-events.lisp: + + - add mentions only is not empty or nil, previous check just + tested for null. + +2020-09-24 cage + + * src/program-events.lisp: + + - added mention only if non-nil (when sending a status). + +2020-09-19 cage + + * NEWS.org, configure, configure.ac, tinmop.asd: + + - increased version. + +2020-09-19 cage + + * ChangeLog: + + - tracking changes. + 2020-09-19 cage * src/stack.lisp: diff --git a/NEWS.org b/NEWS.org index 6a898f1..f5d1181 100644 --- a/NEWS.org +++ b/NEWS.org @@ -1,3 +1,13 @@ +* 2020-10-01 + + Several improvements to the gemini browser added. + + Also a bug that made the program crash when getting mentions from + the server has been fixed. + + The command line switch "-m" to get notification when mentioned did + not works at all and has been fixed. + * 2020-09-19 cage Added adding an optional mention when composing a message.