aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon-inspect.el
Commit message (Collapse)AuthorAgeFilesLines
* change email addressmarty hiatt2024-10-201-2/+2
|
* bump version, copyrightmarty hiatt2024-10-181-1/+1
|
* remove ;; Version: strings in buffers other than mastodon.elmarty hiatt2023-11-101-1/+0
|
* toot-id>item-id, toot-json>item-json, item-type for nav, byline still neededmarty hiatt2023-10-151-13/+13
|
* remove package-requires from inspect.elmarty hiatt2023-05-101-1/+0
|
* update copyright/author attributionmarty hiatt2022-11-271-0/+2
|
* bump version in boilerplatemarty hiatt2022-08-271-1/+1
|
* update homepage and copyright boilerplatemousebot2022-02-051-1/+1
|
* bump version to a round numbermousebot2021-12-171-1/+1
|
* boilerplate maintainer contactmousebot2021-12-171-0/+1
|
* depend on emacs 27.1, flychecks, docstrings, etc.mousebot2021-12-171-1/+3
| | | | strictly, the 27.1 dependency is only for proper-list-p in -http.el.
* bump version, change homepage link, readmemousebot2021-12-171-2/+2
|
* Fix new warnings in `mastodon-inspect.el`.Holger Dürer2021-11-061-0/+3
| | | | Just some autoload and defvar needed to keep the compiler quiet.
* Reformat all code.Holger Dürer2021-11-061-1/+1
| | | | | | | | | | | Basically, in Emacs for each file: select all text and `indent-region`. - This also removes one redundant comment, and - fixes an error with json decoding where the `json-read-from-string` was actually not within the intended `unless` clause (which explains the warning about "result of (string-equal "" json-string) will be ignored" which I never understood.
* inspect functions for search.elmousebot2021-11-061-1/+33
|
* package-lint: bump to emacs 26.1, disable stream keybindingsmousebot2021-09-221-1/+1
|
* bump masto version, bump emacs version to 25.1, dependency in readmemousebot2021-05-311-2/+2
|
* Update copyright and bump versionJohnson Denen2019-03-041-2/+2
|
* Bump to version 0.8.0Johnson Denen2018-08-101-1/+1
|
* Tiny fixes to `mastodon-inspect--dump-json-in-buffer` (#195)H Durer2018-08-101-4/+5
| | | | - Erase buffer before adding new contents - Don't globally set `print-level` and `print-length`; just temporarily let them to the locally desired values.
* Give mastodon-media--inline-images a saner interface. (#191)H Durer2018-08-101-1/+1
| | | | | | | | Instead of making it search the whole buffer every time to find images to load, give it a range where this work should be done. We then call this immediately after inserting a single status, notification, ... There should be no big noticible difference - images might load a tiny bit sooner although I doubt you can see that. This should be more efficient on large buffers although Alex didn't notice any problems when testing streamed buffers. We should still do it as it make things easier to understand. I was always worried about these global operations.
* Clean up code to remove compilation warnings.Holger Durer2018-08-101-0/+1
| | | | | We used to be clean but have slipped recently. Let's clean up the code so it's easier to see real code smell warnings in the compilation.
* Bump to 0.7.2 and shorten long code lines (#172)Alexander Griffith2018-03-051-1/+1
| | | | | | * Bump version numbers to 0.7.2 * Adjusted functions to bring line length below 90.
* Closes #152 and extends the fix for #150 as well as a host of bug fixesAlexander Griffith2018-02-281-1/+1
| | | | | | | | | | | | | | | | | | We now kill the http get request buffer once JSON has been extracted. mastodon-tl--as-string was implemented and replaced any occurrence of number-to-string or int-to-string Added variable mastodon-tl--display-media-p. By default it is 't but can be made a local buffer variable and set to nil. When nil rather than displaying the media it just provides a link Media::<link> Fixed checking for faves and boosts, they should now render properly. The return from json-read-from-string for nil is :json-false which evaluates to 't in elisp. Fixed the format string that gets printed when faving and boosting Fixed mastodon-tl--thread updating and requesting and changed its behaviour such that it tries to open the original toot thread rather than the boosted thread. Added tests for both the new mastodon-tl--as-string function and the mastodon-tl--toot-id utility. enter mastodon mode before defining local buffer variable mastodon-tl--buffer-spec. This fixes some oddities with the local buffer variable.
* Bump version to 0.7.1Johnson Denen2017-06-191-1/+1
|
* Bump to v0.7.0Johnson Denen2017-05-181-1/+1
|
* replaced declare-function with autoloadalexjgriffith2017-05-181-6/+6
|
* Replace uses of replace-regexp with search-forward and replace-match.Holger Dürer2017-05-181-2/+4
|
* Remove most byte-compile warnings.Holger Dürer2017-05-181-2/+6
| | | | | | | We do this by - moving vars into the files where they are (mostly) used - "declaring" vars used elsewhere with the (defvar <var-name>) pattern, - declaring functions defined in others functions rather than loading the file via require.
* Bump to v0.6.3Johnson Denen2017-05-151-1/+1
|
* Use lexical-binding in all files.Holger Dürer2017-05-151-1/+1
| | | | | We only support Emacs 24 and 25 so are free to use sane bindings by default. To keep the linter happy, we need to declare dependency on Emacs 24 in all files.
* Clean up use of progn.Holger Dürer2017-05-051-6/+6
| | | | | - Lambda, defun, let, etc. all have an implicit progn. - A progn with a single form is identical to that single form.
* Added tooling for downloading individual tootsAlexander Griffith2017-05-051-0/+24
|
* Bump to v0.6.2Johnson Denen2017-04-291-1/+1
|
* Bump to v0.6.1Johnson Denen2017-04-281-1/+1
|
* #87 added support for inspection toot under PointAlexander Griffith2017-04-271-0/+59