mirror of
https://github.com/tanrax/org-social.el
synced 2026-01-07 05:43:32 +01:00
Add interactive visibility selection when creating new posts. Users can now choose between "public" or "mention" visibility. Changes: - Add visibility prompt in org-social-file--new-post - Update org-social-file--insert-post-template to support visibility parameter - Only prompt for new posts (not replies or group posts) - Update CHANGELOG.md with v2.9 release notes - Bump version to 2.9 in all .el files When "mention" is selected, adds VISIBILITY:mention property to the post. When "public" is selected (default), creates a normal post without VISIBILITY property.
17 lines
429 B
EmacsLisp
17 lines
429 B
EmacsLisp
(define-package "org-social" "2.8"
|
|
"An Org-social client for Emacs"
|
|
'((emacs "30.1")
|
|
(org "9.0")
|
|
(request "0.3.0")
|
|
(seq "2.20")
|
|
(emojify "1.2"))
|
|
:url "https://github.com/tanrax/org-social.el"
|
|
:keywords '("comm" "org" "social")
|
|
:lisp-dir "."
|
|
:authors '(("Andros Fenollosa" . "hi@andros.dev"))
|
|
:maintainers '(("Andros Fenollosa" . "hi@andros.dev")))
|
|
|
|
;; Local Variables:
|
|
;; no-byte-compile: t
|
|
;; End:
|