From 25cab8eb3d8a4227b32a2a75eec7495d7c00a67b Mon Sep 17 00:00:00 2001 From: marty hiatt Date: Mon, 21 Oct 2024 19:17:17 +0200 Subject: flycheck: unwrap Package-Requires --- lisp/mastodon.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lisp/mastodon.el b/lisp/mastodon.el index cb5731a..ce64d65 100644 --- a/lisp/mastodon.el +++ b/lisp/mastodon.el @@ -7,8 +7,7 @@ ;; Marty Hiatt ;; Maintainer: Marty Hiatt ;; Version: 1.1.0 -;; Package-Requires: ((emacs "28.1") (request "0.3.0") -;; (persist "0.4") (tp "0.1")) +;; Package-Requires: ((emacs "28.1") (request "0.3.0") (persist "0.4") (tp "0.1")) ;; Homepage: https://codeberg.org/martianh/mastodon.el ;; This file is not part of GNU Emacs. @@ -151,7 +150,8 @@ Use. e.g. \"%c\" for your locale's date and time format." "Whether to use emojify.el to display emojis. From version 28, Emacs can display emojis natively. But currently, it doesn't seem to have a way to handle custom emoji, -while emojify,el has this feature and mastodon.el implements it.") +while emojify,el has this feature and mastodon.el implements it." + :type 'boolean) (defun mastodon-kill-window () "Quit window and delete helper." -- cgit v1.2.3 From 0cbf18f5e347aa1ff02f8569fd08947c6735962a Mon Sep 17 00:00:00 2001 From: marty hiatt Date: Mon, 21 Oct 2024 19:52:15 +0200 Subject: less restrictive visibility: flip then/else clauses. FIX #602 --- lisp/mastodon-toot.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/mastodon-toot.el b/lisp/mastodon-toot.el index fc5825a..7440fe5 100644 --- a/lisp/mastodon-toot.el +++ b/lisp/mastodon-toot.el @@ -1696,8 +1696,8 @@ The default is given by `mastodon-toot--default-reply-visibility'." (let ((less-restrictive (member (intern mastodon-toot--default-reply-visibility) mastodon-toot-visibility-list))) (if (member (intern reply-visibility) less-restrictive) - mastodon-toot--default-reply-visibility - reply-visibility)))) + reply-visibility + mastodon-toot--default-reply-visibility)))) (defun mastodon-toot--render-reply-region-str (str) "Refill STR and prefix all lines with >, as reply-quote text." -- cgit v1.2.3 From b13d93a109f896498ca0eec73ebe3acdc54f1ec3 Mon Sep 17 00:00:00 2001 From: marty hiatt Date: Tue, 22 Oct 2024 08:02:48 +0200 Subject: info attempted email address fix --- mastodon.info | 8 ++++---- mastodon.texi | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/mastodon.info b/mastodon.info index 7380080..6d44f1d 100644 --- a/mastodon.info +++ b/mastodon.info @@ -718,8 +718,8 @@ File: mastodon.info, Node: Supporting mastodonel, Next: Contributors, Prev: C If you’d like to support continued development of ‘mastodon.el’, I accept donations via paypal: paypal.me/martianh (https://paypal.me/martianh). If you would prefer a different payment -method, please write to me at and -I can provide IBAN or other bank account details. +method, please write to me at and I can provide +IBAN or other bank account details. I don’t have a tech worker’s income, so even a small tip would help out. @@ -803,8 +803,8 @@ Node: Bug reports24801 Node: Fixes and features25712 Node: Coding style26213 Node: Supporting mastodonel26837 -Node: Contributors27404 -Node: screenshots27839 +Node: Contributors27389 +Node: screenshots27824  End Tag Table diff --git a/mastodon.texi b/mastodon.texi index d1c9268..761ac8f 100644 --- a/mastodon.texi +++ b/mastodon.texi @@ -818,7 +818,7 @@ There's no need for a blank line after the first docstring line (one is added au If you'd like to support continued development of @samp{mastodon.el}, I accept donations via paypal: @uref{https://paypal.me/martianh, paypal.me/martianh}. If you would prefer a different -payment method, please write to me at and I can +payment method, please write to me at and I can provide IBAN or other bank account details. I don't have a tech worker's income, so even a small tip would help out. -- cgit v1.2.3 From 8c6b2a484923f72b7790fbf4ef4fe8d93f74f553 Mon Sep 17 00:00:00 2001 From: marty hiatt Date: Tue, 22 Oct 2024 08:04:01 +0200 Subject: bump --- lisp/mastodon.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/mastodon.el b/lisp/mastodon.el index ce64d65..89e2a87 100644 --- a/lisp/mastodon.el +++ b/lisp/mastodon.el @@ -6,7 +6,7 @@ ;; Author: Johnson Denen ;; Marty Hiatt ;; Maintainer: Marty Hiatt -;; Version: 1.1.0 +;; Version: 1.1.1 ;; Package-Requires: ((emacs "28.1") (request "0.3.0") (persist "0.4") (tp "0.1")) ;; Homepage: https://codeberg.org/martianh/mastodon.el -- cgit v1.2.3