Skip to content

Piero Bosio Social Web Site Personale Logo Fediverso

Social Forum federato con il resto del mondo. Non contano le istanze, contano le persone

PeerTube v4, prenez le pouvoir pour présenter vos vidéos (Framablog, novembre 2021)


Gli ultimi otto messaggi ricevuti dalla Federazione
Post suggeriti
  • 0 Votes
    1 Posts
    11 Views
    Week in Fediverse 2026-02-27Servers- Bookwyrm v0.8.5- Gush! v0.0.31- Hollo v0.7.4- flohmarkt v0.16.0- Mastodon v4.5.7- Wafrn v2026.02.02- GoToSocial v0.21.0- Loops v1.0.0-beta.10- Ktistec v3.3.1- Mitra v4.19.0- Stegodon v1.8.0- Hometown v1.2.0- gathio v1.6.1- Castopod v1.15.5- NodeBB v4.9.0- PieFed v1.6.7Clients- Pachli v3.4.0- tooi v0.22.0- Summit v1.78.1- Photon v2.3.0- Blorp v1.10.3- Phanpy changelogTools and Plugins- Poduptime v6.2.1- Fediverse invitationFor developers- Fedify v2.0Protocol- FEP-a427: Server Domain Migration- FEP-fc48: Generic ActivityPub serverArticles- Self-Hosting Pixelfed: Federated Instagram Without the Algorithm-----#WeekInFediverse #Fediverse #ActivityPubPrevious edition: https://mitra.social/objects/019c7c6f-742a-7930-2413-73b1d9611c99
  • 0 Votes
    1 Posts
    6 Views
    mstdn.jp や #fedibird では .mp3 の音声ファイルがインライン表示されるのに、mastodon.social でインライン表示されないのはどうしてだ?贈る側のJSONの問題かな?#WordPress のプラグイン #ActivityPub の抜粋ではなく全コンテンツを送る設定の投稿なんだけど…。
  • 1 Votes
    21 Posts
    48 Views
    @phnt can be enabled by an admin via ui?
  • 0 Votes
    1 Posts
    18 Views
    Mastodon has a concept called "pinned statuses", which is a special collection attached to a Person actor. https://docs.joinmastodon.org/spec/activitypub/#featured It wasn't readily known how this collection is updated and federated (not without code achaeology), but claire@social.sitedethib.com recently shared some additional info :smiley: The actor itself will issue an Add activity targeting the collection with the status in object. This activity is sent to all followers of the actor. No activity is sent if the actor has no remote followers. A Remove is sent when a pinned post is unpinned. This is what the Add looks like: { "@context": "https://www.w3.org/ns/activitystreams", "type": "Add", "actor": "https://example.org/users/testUser", "target": "https://example.org/users/testUser/collections/featured", "object": "https://example.org/users/testUser/statuses/115266412340579560" } The corresponding Remove is identical except for type, which is of course, Remove.