Files
org-social.el/org-social-pkg.el
Andros Fenollosa 49dbf4ca22 Release v2.9: Add visibility prompt when creating posts
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.
2025-12-29 15:48:42 +01:00

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: