Ability to add alt text to profile pictures #249

Open
opened 2022-11-03 23:05:48 +00:00 by Beefox · 1 comment

Im not entirely sure how AP would handle this, but a way for profile pictures to have alt text feels important for the fediverse and accessability, and as far as im aware no software allows for this, so lets be the first

Im not entirely sure how AP would handle this, but a way for profile pictures to have alt text feels important for the fediverse and accessability, and as far as im aware no software allows for this, so lets be the first
Contributor

AP-wise I guess the same as with an attachment. Add a name key (in this case to the icon property) and use that.

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
  ],
  "icon": {
    "type": "Image",
    "name": "a cool looking me",
    "url": "https://instance.tld/media/my-pfp.jpeg"
  },
}

And I guess using name instead of e.g. summary or content is (besides consistency with attachment) because it's explicitly plain text https://www.w3.org/TR/activitystreams-vocabulary/#dfn-name.

AP-wise I guess the same as with an attachment. Add a `name` key (in this case to the icon property) and use that. ``` { "@context": [ "https://www.w3.org/ns/activitystreams", ], "icon": { "type": "Image", "name": "a cool looking me", "url": "https://instance.tld/media/my-pfp.jpeg" }, } ``` And I guess using `name` instead of e.g. `summary` or `content` is (besides consistency with attachment) because it's explicitly plain text <https://www.w3.org/TR/activitystreams-vocabulary/#dfn-name>.
Sign in to join this conversation.
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: AkkomaGang/akkoma#249
No description provided.