aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormousebot <mousebot@riseup.net>2021-05-31 09:58:01 +0200
committermousebot <mousebot@riseup.net>2021-05-31 11:27:31 +0200
commit1ff6d8ef35f83ada24fafd3656dde0a1da57922a (patch)
treeda84687be396231feefc8dc8fab902672d4183ed
parent2f14752767a03f6e9979dd5d3897425cd7aa2e37 (diff)
bump masto version, bump emacs version to 25.1, dependency in readme
-rw-r--r--README.org3
-rw-r--r--lisp/mastodon-auth--test.el4
-rw-r--r--lisp/mastodon-auth.el4
-rw-r--r--lisp/mastodon-client.el4
-rw-r--r--lisp/mastodon-discover.el4
-rw-r--r--lisp/mastodon-http.el4
-rw-r--r--lisp/mastodon-inspect.el4
-rw-r--r--lisp/mastodon-media.el4
-rw-r--r--lisp/mastodon-notifications.el4
-rw-r--r--lisp/mastodon-profile.el4
-rw-r--r--lisp/mastodon-search.el4
-rw-r--r--lisp/mastodon-tl.el4
-rw-r--r--lisp/mastodon-toot.el4
-rw-r--r--lisp/mastodon.el4
14 files changed, 29 insertions, 26 deletions
diff --git a/README.org b/README.org
index 214d3d0..d06c93a 100644
--- a/README.org
+++ b/README.org
@@ -25,6 +25,9 @@ This updated version is not on MELPA, to use it you need to clone and require it
I did this for my own use and to learn more Elisp. If the code is terrible, feel free to improve or replace it.
+** dependency:
+This version depends on the library =request= (for uploading attachments). You can install it from melpa.
+
** bugs
As it stands the client still has some bugs. In particular, when composing a toot, you may have to hit =C-g= before sending your toot. You may also see a related error when you try to add a media attachment. You should be able to run the command again and it should work. See the issues on the original repo.
diff --git a/lisp/mastodon-auth--test.el b/lisp/mastodon-auth--test.el
index 8082536..b8705f5 100644
--- a/lisp/mastodon-auth--test.el
+++ b/lisp/mastodon-auth--test.el
@@ -3,9 +3,9 @@
;; Copyright (C) 2020 Ian Eure
;; Author: Ian Eure <ian@retrospec.tv>
-;; Version: 0.9.0
+;; Version: 0.9.1
;; Homepage: https://github.com/jdenen/mastodon.el
-;; Package-Requires: ((emacs "24.4"))
+;; Package-Requires: ((emacs "25.1"))
;; This file is not part of GNU Emacs.
diff --git a/lisp/mastodon-auth.el b/lisp/mastodon-auth.el
index cfe89b5..3c61848 100644
--- a/lisp/mastodon-auth.el
+++ b/lisp/mastodon-auth.el
@@ -2,9 +2,9 @@
;; Copyright (C) 2017-2019 Johnson Denen
;; Author: Johnson Denen <johnson.denen@gmail.com>
-;; Version: 0.9.0
+;; Version: 0.9.1
;; Homepage: https://github.com/jdenen/mastodon.el
-;; Package-Requires: ((emacs "24.4"))
+;; Package-Requires: ((emacs "25.1"))
;; This file is not part of GNU Emacs.
diff --git a/lisp/mastodon-client.el b/lisp/mastodon-client.el
index da70dea..90f1375 100644
--- a/lisp/mastodon-client.el
+++ b/lisp/mastodon-client.el
@@ -2,9 +2,9 @@
;; Copyright (C) 2017-2019 Johnson Denen
;; Author: Johnson Denen <johnson.denen@gmail.com>
-;; Version: 0.9.0
+;; Version: 0.9.1
;; Homepage: https://github.com/jdenen/mastodon.el
-;; Package-Requires: ((emacs "24.4"))
+;; Package-Requires: ((emacs "25.1"))
;; This file is not part of GNU Emacs.
diff --git a/lisp/mastodon-discover.el b/lisp/mastodon-discover.el
index 1f063b3..2387feb 100644
--- a/lisp/mastodon-discover.el
+++ b/lisp/mastodon-discover.el
@@ -2,8 +2,8 @@
;; Copyright (C) 2019 Johnson Denen
;; Author: Johnson Denen <johnson.denen@gmail.com>
-;; Version: 0.9.0
-;; Package-Requires: ((emacs "24.4"))
+;; Version: 0.9.1
+;; Package-Requires: ((emacs "25.1"))
;; Homepage: https://github.com/jdenen/mastodon.el
;; This file is not part of GNU Emacs.
diff --git a/lisp/mastodon-http.el b/lisp/mastodon-http.el
index 462b5c6..e85429f 100644
--- a/lisp/mastodon-http.el
+++ b/lisp/mastodon-http.el
@@ -2,8 +2,8 @@
;; Copyright (C) 2017-2019 Johnson Denen
;; Author: Johnson Denen <johnson.denen@gmail.com>
-;; Version: 0.9.0
-;; Package-Requires: ((emacs "24.4") (request "0.2.0"))
+;; Version: 0.9.1
+;; Package-Requires: ((emacs "25.1") (request "0.2.0"))
;; Homepage: https://github.com/jdenen/mastodon.el
;; This file is not part of GNU Emacs.
diff --git a/lisp/mastodon-inspect.el b/lisp/mastodon-inspect.el
index 44b9344..c5a8d5d 100644
--- a/lisp/mastodon-inspect.el
+++ b/lisp/mastodon-inspect.el
@@ -2,8 +2,8 @@
;; Copyright (C) 2017-2019 Johnson Denen
;; Author: Johnson Denen <johnson.denen@gmail.com>
-;; Version: 0.9.0
-;; Package-Requires: ((emacs "24.4"))
+;; Version: 0.9.1
+;; Package-Requires: ((emacs "25.1"))
;; Homepage: https://github.com/jdenen/mastodon.el
;; This file is not part of GNU Emacs.
diff --git a/lisp/mastodon-media.el b/lisp/mastodon-media.el
index da99007..6c17ae0 100644
--- a/lisp/mastodon-media.el
+++ b/lisp/mastodon-media.el
@@ -2,9 +2,9 @@
;; Copyright (C) 2017-2019 Johnson Denen
;; Author: Johnson Denen <johnson.denen@gmail.com>
-;; Version: 0.9.0
+;; Version: 0.9.1
;; Homepage: https://github.com/jdenen/mastodon.el
-;; Package-Requires: ((emacs "24.4"))
+;; Package-Requires: ((emacs "25.1"))
;; This file is not part of GNU Emacs.
diff --git a/lisp/mastodon-notifications.el b/lisp/mastodon-notifications.el
index d6fa78f..d40815a 100644
--- a/lisp/mastodon-notifications.el
+++ b/lisp/mastodon-notifications.el
@@ -2,9 +2,9 @@
;; Copyright (C) 2017-2019 Johnson Denen
;; Author: Johnson Denen <johnson.denen@gmail.com>
-;; Version: 0.7.2
+;; Version: 0.9.1
;; Homepage: https://github.com/jdenen/mastodon.el
-;; Package-Requires: ((emacs "24.4"))
+;; Package-Requires: ((emacs "25.1"))
;; This file is not part of GNU Emacs.
diff --git a/lisp/mastodon-profile.el b/lisp/mastodon-profile.el
index 17b480d..bf1a3a9 100644
--- a/lisp/mastodon-profile.el
+++ b/lisp/mastodon-profile.el
@@ -2,8 +2,8 @@
;; Copyright (C) 2017-2019 Johnson Denen
;; Author: Johnson Denen <johnson.denen@gmail.com>
-;; Version: 0.7.2
-;; Package-Requires: ((emacs "24.4") (seq "1.8"))
+;; Version: 0.9.1
+;; Package-Requires: ((emacs "25.1") (seq "1.8"))
;; Homepage: https://github.com/jdenen/mastodon.el
;; This file is not part of GNU Emacs.
diff --git a/lisp/mastodon-search.el b/lisp/mastodon-search.el
index 90158a1..5e8253f 100644
--- a/lisp/mastodon-search.el
+++ b/lisp/mastodon-search.el
@@ -2,9 +2,9 @@
;; Copyright (C) 2017-2019 Johnson Denen
;; Author: Johnson Denen <johnson.denen@gmail.com>, martyhiatt <mousebot@riseup.net>
-;; Version: 0.9.0
+;; Version: 0.9.1
;; Homepage: https://github.com/jdenen/mastodon.el
-;; Package-Requires: ((emacs "24.4"))
+;; Package-Requires: ((emacs "25.1"))
;; This file is not part of GNU Emacs.
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el
index 7b0afeb..ecaeff4 100644
--- a/lisp/mastodon-tl.el
+++ b/lisp/mastodon-tl.el
@@ -2,9 +2,9 @@
;; Copyright (C) 2017-2019 Johnson Denen
;; Author: Johnson Denen <johnson.denen@gmail.com>
-;; Version: 0.9.0
+;; Version: 0.9.1
;; Homepage: https://github.com/jdenen/mastodon.el
-;; Package-Requires: ((emacs "24.4"))
+;; Package-Requires: ((emacs "25.1"))
;; This file is not part of GNU Emacs.
diff --git a/lisp/mastodon-toot.el b/lisp/mastodon-toot.el
index 8328bb9..a0f886c 100644
--- a/lisp/mastodon-toot.el
+++ b/lisp/mastodon-toot.el
@@ -2,9 +2,9 @@
;; Copyright (C) 2017-2019 Johnson Denen
;; Author: Johnson Denen <johnson.denen@gmail.com>
-;; Version: 0.9.0
+;; Version: 0.9.1
;; Homepage: https://github.com/jdenen/mastodon.el
-;; Package-Requires: ((emacs "24.4"))
+;; Package-Requires: ((emacs "25.1"))
;; This file is not part of GNU Emacs.
diff --git a/lisp/mastodon.el b/lisp/mastodon.el
index 37876f6..b703b30 100644
--- a/lisp/mastodon.el
+++ b/lisp/mastodon.el
@@ -2,8 +2,8 @@
;; Copyright (C) 2017-2019 Johnson Denen
;; Author: Johnson Denen <johnson.denen@gmail.com>
-;; Version: 0.9.0
-;; Package-Requires: ((emacs "24.4") (request "0.2.0") (seq "1.8"))
+;; Version: 0.9.1
+;; Package-Requires: ((emacs "25.1") (request "0.2.0") (seq "1.8"))
;; Homepage: https://github.com/jdenen/mastodon.el
;; This file is not part of GNU Emacs.