Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | change email address | marty hiatt | 2024-10-20 | 1 | -1/+1 |
| | |||||
* | eq for symbols, string= for strings | marty hiatt | 2024-08-22 | 1 | -8/+8 |
| | |||||
* | remove ;; Version: strings in buffers other than mastodon.el | marty hiatt | 2023-11-10 | 1 | -1/+0 |
| | |||||
* | manually(!) apply stephan monnier's patch, save the ts work | marty hiatt | 2023-03-21 | 1 | -4/+5 |
| | | | | thanks stephan! | ||||
* | edit description mastodon-async.el | marty hiatt | 2023-03-18 | 1 | -1/+1 |
| | |||||
* | remove first empty line in docstrings | marty hiatt | 2023-01-09 | 1 | -6/+0 |
| | |||||
* | always use --set-buffer-spec, not setq --buffer-spec | marty hiatt | 2022-11-26 | 1 | -8/+5 |
| | |||||
* | bump version in boilerplate | marty hiatt | 2022-07-31 | 1 | -1/+1 |
| | |||||
* | update homepage and copyright boilerplate | mousebot | 2022-02-05 | 1 | -4/+3 |
| | |||||
* | bump version to a round number | mousebot | 2021-12-17 | 1 | -1/+1 |
| | |||||
* | boilerplate maintainer contact | mousebot | 2021-12-17 | 1 | -0/+2 |
| | |||||
* | depend on emacs 27.1, flychecks, docstrings, etc. | mousebot | 2021-12-17 | 1 | -10/+15 |
| | | | | strictly, the 27.1 dependency is only for proper-list-p in -http.el. | ||||
* | bump version, change homepage link, readme | mousebot | 2021-12-17 | 1 | -2/+2 |
| | |||||
* | Do a bit if `if` and `progn` sanitizing. | Holger Dürer | 2021-11-06 | 1 | -3/+4 |
| | | | | | | | - A `progn` with a single form is redundant - `when` doesn't need a `progn` body - `if` has an implicit `progn` for the consequences - I converted one cascade of `if`s into a `cond`. | ||||
* | Convert most uses of `(cdr (assoc <some-symbol> <a-list>))` to `(alist-get ↵ | Holger Dürer | 2021-11-06 | 1 | -1/+1 |
| | | | | | | | <some-symbol> <a-list>)` This is more readable and actually more efficient (maybe) since it uses `eq` rather than `equal` as a test. | ||||
* | Reformat all code. | Holger Dürer | 2021-11-06 | 1 | -11/+11 |
| | | | | | | | | | | | 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. | ||||
* | Use `defvar-local` to create buffer-local vars. | Holger Dürer | 2021-11-06 | 1 | -9/+6 |
| | | | | | This is much cleaner than first using `defvar` immediately followed by `make-variable-buffer-local`. | ||||
* | Fix compilation warnings. | Holger Dürer | 2021-11-01 | 1 | -2/+12 |
| | | | | | | | | | | | | This is mostly reflowing / reworkding docstrings to keep within 80 characters limit and adding autoloads. There are two warning remaining that I don't understand: - mastodon-async.el:359:16: Warning: reference to free variable ‘url-http-end-of-headers’ - mastodon-http.el:139:8: Warning: value returned from (string-equal json-string "") is unused When adding autoloads this sorts them for better readability. | ||||
* | package-lint: bump to emacs 26.1, disable stream keybindings | mousebot | 2021-09-22 | 1 | -1/+1 |
| | |||||
* | typo in async http-layer, unless in http process-json, typo in readm | mousebot | 2021-06-21 | 1 | -1/+1 |
| | |||||
* | fix async "local" endpoint, docstrings | mousebot | 2021-06-07 | 1 | -4/+4 |
| | |||||
* | handle error on kill async buffer, begin same on borked JSON. | mousebot | 2021-06-05 | 1 | -18/+14 |
| | |||||
* | enable async stream for user notifications. | mousebot | 2021-06-03 | 1 | -27/+56 |
| | | | | creates a notifications filter for the 'user' stream, then handles display of notifications, which have their own timeline funs. | ||||
* | add basic live updates of home/local/federated timelines. | mousebot | 2021-06-01 | 1 | -0/+332 |
the code, mastodon-async.el is taken from https://github.com/alexjgriffith/mastodon-future.el and only slightly modified to make the home stream work. |