#Mitra can query outgoing follow requests now, same endpoint as #gotosocial
Notices by fedicat (fedicat@pc.cafe)
-
Embed this notice
fedicat (fedicat@pc.cafe)'s status on Saturday, 07-Mar-2026 22:18:24 JST
fedicat
-
Embed this notice
fedicat (fedicat@pc.cafe)'s status on Thursday, 19-Feb-2026 09:44:39 JST
fedicat
@apps this? https://docs.joinmastodon.org/entities/Instance/#timelines_access
-
Embed this notice
fedicat (fedicat@pc.cafe)'s status on Friday, 06-Feb-2026 23:59:04 JST
fedicat
adding a long press menu to reactions, on #pleroma #akkoma #mitra you can view who reacted
In conversation from pc.cafe permalink Attachments
-
Embed this notice
fedicat (fedicat@pc.cafe)'s status on Sunday, 18-Jan-2026 20:31:55 JST
fedicat
commencing #Bonfire support
In conversation from pc.cafe permalink Attachments
-
Embed this notice
fedicat (fedicat@pc.cafe)'s status on Sunday, 14-Dec-2025 04:36:58 JST
fedicat
#Wrapstodon account interactions
In conversation from pc.cafe permalink Attachments
-
Embed this notice
fedicat (fedicat@pc.cafe)'s status on Monday, 08-Dec-2025 07:06:39 JST
fedicat
#akkoma changelog
## 2025.12
### REMOVED
- DEPRECATE `/api/v1/timelines/direct`.In conversation from pc.cafe permalink -
Embed this notice
fedicat (fedicat@pc.cafe)'s status on Friday, 24-Oct-2025 05:47:07 JST
fedicat
I still see people talking about producthunt, maybe we need a fediverse version.
In conversation from pc.cafe permalink -
Embed this notice
fedicat (fedicat@pc.cafe)'s status on Saturday, 06-Sep-2025 05:27:21 JST
fedicat
In conversation from pc.cafe permalink Attachments
-
Embed this notice
fedicat (fedicat@pc.cafe)'s status on Thursday, 21-Aug-2025 03:07:13 JST
fedicat
hey if you move your #fediverse project to #codeberg you get to be on this list
In conversation from pc.cafe permalink -
Embed this notice
fedicat (fedicat@pc.cafe)'s status on Monday, 05-May-2025 10:40:02 JST
fedicat
In conversation from pc.cafe permalink Attachments
-
Embed this notice
fedicat (fedicat@pc.cafe)'s status on Thursday, 01-May-2025 06:07:56 JST
fedicat
special mention to #mitra for having both an openapi spec and a changelog where you can see how it's changed by release version
In conversation from pc.cafe permalink -
Embed this notice
fedicat (fedicat@pc.cafe)'s status on Monday, 28-Apr-2025 20:43:30 JST
fedicat
don’t be surprised if you get a notification in 30 years that a poll has ended #Fedicat #Mitra
In conversation from pc.cafe permalink Attachments
-
Embed this notice
fedicat (fedicat@pc.cafe)'s status on Sunday, 16-Feb-2025 04:17:18 JST
fedicat
in #Mastodon #Akkoma #Pleroma #GotoSocial you can hide your follower and following lists from public view
In conversation from pc.cafe permalink Attachments
-
Embed this notice
fedicat (fedicat@pc.cafe)'s status on Wednesday, 29-Jan-2025 05:05:41 JST
fedicat
@silverpill it just does another retrieval of the post by ID, in case there are any changes that weren't immediately returned or for whatever reason the displayed post isn't up to date, so I figured that's a good place to throw in load-replies (first part is just mitra)
public func refresh(_ post: Post) async throws -> Post {
if supportsLoadConversation {
try await loadConversation(of: post)
}
let post = try await client.refresh(post)
addAccounts(post)
return post
}In conversation from pc.cafe permalink -
Embed this notice
fedicat (fedicat@pc.cafe)'s status on Wednesday, 29-Jan-2025 04:29:32 JST
fedicat
on #Mitra the post refresh option also runs the load replies feature that you can see in the web ui
In conversation from pc.cafe permalink Attachments
-
Embed this notice
fedicat (fedicat@pc.cafe)'s status on Thursday, 16-Jan-2025 19:03:40 JST
fedicat
I’m caught up in this #Pixelfed frenzy, just got trends to show up in #Fedicat
In conversation from pc.cafe permalink Attachments
-
Embed this notice
fedicat (fedicat@pc.cafe)'s status on Saturday, 28-Dec-2024 06:48:48 JST
fedicat
added bovine
In conversation from pc.cafe permalink -
Embed this notice
fedicat (fedicat@pc.cafe)'s status on Friday, 20-Dec-2024 20:39:48 JST
fedicat
adding support in #Fedicat for the Conversation post visibility in #Mitra
In conversation from pc.cafe permalink Attachments
-
Embed this notice
fedicat (fedicat@pc.cafe)'s status on Monday, 09-Dec-2024 04:38:50 JST
fedicat
@silverpill For a while I used application/json with update_credentials for everything except the avatar/header update and that seemed to work with everything except hollo which doesn't accept application/json with update_credentials, so now I've mostly flipped it around. For fields I think I tried using that json with multipart/form to avoid all that query param construction and it worked but mastodon didn't preserve the field order.
In conversation from pc.cafe permalink -
Embed this notice
fedicat (fedicat@pc.cafe)'s status on Monday, 09-Dec-2024 04:38:49 JST
fedicat
@silverpill my field update using multipart/form
'Content-Type': 'multipart/form-data; boundary=6473FE0A-51EE-42C1-8B98-BCF838B4AA4D'
➡️ 💿 --6473FE0A-51EE-42C1-8B98-BCF838B4AA4DContent-Disposition: form-data; name="fields_attributes[0][name]"
first
--6473FE0A-51EE-42C1-8B98-BCF838B4AA4D
Content-Disposition: form-data; name="fields_attributes[0][value]"
value 1
--6473FE0A-51EE-42C1-8B98-BCF838B4AA4D
Content-Disposition: form-data; name="fields_attributes[1][name]"
second
In conversation from pc.cafe permalink