GNU social JP
  • FAQ
  • Login
GNU social JPは日本のGNU socialサーバーです。
Usage/ToS/admin/test/Pleroma FE
  • Public

    • Public
    • Network
    • Groups
    • Featured
    • Popular
    • People

Notices by fedicat (fedicat@pc.cafe)

  1. Embed this notice
    fedicat (fedicat@pc.cafe)'s status on Monday, 05-May-2025 10:40:02 JST fedicat fedicat

    added #fedicat (and a bunch of platforms) to #fedidb

    In conversation about a month ago from pc.cafe permalink

    Attachments


    1. https://cdn.masto.host/pccafe/media_attachments/files/114/452/419/851/189/240/original/4f05f7fceafdadc1.png
  2. Embed this notice
    fedicat (fedicat@pc.cafe)'s status on Thursday, 01-May-2025 06:07:56 JST fedicat 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 about a month ago from pc.cafe permalink
  3. Embed this notice
    fedicat (fedicat@pc.cafe)'s status on Monday, 28-Apr-2025 20:43:30 JST fedicat fedicat

    don’t be surprised if you get a notification in 30 years that a poll has ended #Fedicat #Mitra

    In conversation about a month ago from pc.cafe permalink

    Attachments


    1. https://cdn.masto.host/pccafe/media_attachments/files/114/412/626/814/642/594/original/02a401dab9c7a4d8.jpeg
  4. Embed this notice
    fedicat (fedicat@pc.cafe)'s status on Sunday, 16-Feb-2025 04:17:18 JST fedicat fedicat

    in #Mastodon #Akkoma #Pleroma #GotoSocial you can hide your follower and following lists from public view

    In conversation about 4 months ago from pc.cafe permalink

    Attachments


    1. https://cdn.masto.host/pccafe/media_attachments/files/114/009/001/065/197/596/original/b9fb45ddb70ffe41.jpeg
  5. Embed this notice
    fedicat (fedicat@pc.cafe)'s status on Wednesday, 29-Jan-2025 05:05:41 JST fedicat fedicat
    in reply to
    • silverpill

    @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 about 4 months ago from pc.cafe permalink
  6. Embed this notice
    fedicat (fedicat@pc.cafe)'s status on Wednesday, 29-Jan-2025 04:29:32 JST fedicat fedicat

    on #Mitra the post refresh option also runs the load replies feature that you can see in the web ui

    In conversation about 4 months ago from pc.cafe permalink

    Attachments


    1. https://cdn.masto.host/pccafe/media_attachments/files/113/902/304/758/002/508/original/67839c8a2f303d1a.jpeg
  7. Embed this notice
    fedicat (fedicat@pc.cafe)'s status on Thursday, 16-Jan-2025 19:03:40 JST fedicat fedicat

    I’m caught up in this #Pixelfed frenzy, just got trends to show up in #Fedicat

    In conversation about 5 months ago from pc.cafe permalink

    Attachments


    1. https://cdn.masto.host/pccafe/media_attachments/files/113/837/306/470/387/479/original/34a18bca74abf602.jpeg

    2. https://cdn.masto.host/pccafe/media_attachments/files/113/837/306/594/601/185/original/1747a725e06c7a1f.jpeg

    3. https://cdn.masto.host/pccafe/media_attachments/files/113/837/306/748/084/802/original/3105c1f01a9ded1b.jpeg
  8. Embed this notice
    fedicat (fedicat@pc.cafe)'s status on Saturday, 28-Dec-2024 06:48:48 JST fedicat fedicat

    added bovine

    https://codeberg.org/technicat/fediverse-on-codeberg

    In conversation about 5 months ago from pc.cafe permalink
  9. Embed this notice
    fedicat (fedicat@pc.cafe)'s status on Friday, 20-Dec-2024 20:39:48 JST fedicat fedicat

    adding support in #Fedicat for the Conversation post visibility in #Mitra

    In conversation about 6 months ago from pc.cafe permalink

    Attachments


    1. https://cdn.masto.host/pccafe/media_attachments/files/113/683/994/862/411/015/original/480da9ffcd5080a6.jpeg
  10. Embed this notice
    fedicat (fedicat@pc.cafe)'s status on Monday, 09-Dec-2024 04:38:50 JST fedicat fedicat
    in reply to
    • silverpill

    @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 about 6 months ago from pc.cafe permalink
  11. Embed this notice
    fedicat (fedicat@pc.cafe)'s status on Monday, 09-Dec-2024 04:38:49 JST fedicat fedicat
    in reply to
    • silverpill

    @silverpill my field update using multipart/form

    'Content-Type': 'multipart/form-data; boundary=6473FE0A-51EE-42C1-8B98-BCF838B4AA4D'
    ➡️ 💿 --6473FE0A-51EE-42C1-8B98-BCF838B4AA4D

    Content-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 about 6 months ago from pc.cafe permalink
  12. Embed this notice
    fedicat (fedicat@pc.cafe)'s status on Sunday, 08-Dec-2024 05:55:11 JST fedicat fedicat
    in reply to
    • silverpill

    @silverpill It only differs from the other platforms in requiring application/json, and it should have been working on mitra already but I didn't specify the profile field limit in the platform descriptor (defaults 0). Actually I also read it from the pleroma instance metadata, be cool to have that, looks like this

    "fields_limits" : {

    "name_length" : 512,
    "value_length" : 2048,
    "max_fields" : 10,
    "max_remote_fields" : 20
    },

    In conversation about 6 months ago from pc.cafe permalink
  13. Embed this notice
    fedicat (fedicat@pc.cafe)'s status on Sunday, 08-Dec-2024 03:59:22 JST fedicat fedicat

    #Fedicat can now create and edit profile fields in #Mitra

    In conversation about 6 months ago from pc.cafe permalink

    Attachments


    1. https://cdn.masto.host/pccafe/media_attachments/files/113/612/506/844/764/205/original/872e65cb534312d4.jpeg
  14. Embed this notice
    fedicat (fedicat@pc.cafe)'s status on Saturday, 12-Oct-2024 04:51:24 JST fedicat fedicat

    #Mastodon changed their post visibility names so I might as well make up my own in #Fedicat

    In conversation about 8 months ago from pc.cafe permalink

    Attachments


    1. https://cdn.masto.host/pccafe/media_attachments/files/113/290/138/425/178/046/original/7c759e89157a8fb9.jpeg
  15. Embed this notice
    fedicat (fedicat@pc.cafe)'s status on Sunday, 01-Sep-2024 21:33:27 JST fedicat fedicat

    added the #Mitra subscribers post visibility to #Fedicat

    In conversation about 9 months ago from pc.cafe permalink

    Attachments


    1. https://cdn.masto.host/pccafe/media_attachments/files/113/060/468/058/274/288/original/d14929b92a088633.jpeg
  16. Embed this notice
    fedicat (fedicat@pc.cafe)'s status on Tuesday, 20-Aug-2024 03:19:11 JST fedicat fedicat
    in reply to
    • silverpill

    @silverpill I just started keeping the testflight release notes here because it's too slow to manually type them in appstoreconnect.

    https://codeberg.org/technicat/fedicat/src/branch/main/RELEASE.md

    In conversation about 10 months ago from pc.cafe permalink
  17. Embed this notice
    fedicat (fedicat@pc.cafe)'s status on Monday, 19-Aug-2024 18:53:38 JST fedicat fedicat

    displaying emoji reactions from #Akkoma #Pleroma #Mitra in #Fedicat

    In conversation about 10 months ago from pc.cafe permalink

    Attachments


    1. https://cdn.masto.host/pccafe/media_attachments/files/112/986/688/105/582/551/original/63ef95baa99b1a26.jpeg
  18. Embed this notice
    fedicat (fedicat@pc.cafe)'s status on Saturday, 17-Aug-2024 20:31:34 JST fedicat fedicat

    #fedicat now able to create quote posts in #Mitra and #Pleroma

    In conversation about 10 months ago from pc.cafe permalink

    Attachments


    1. https://cdn.masto.host/pccafe/media_attachments/files/112/975/685/801/025/473/original/ef91586dea4af6cb.jpeg

    2. https://cdn.masto.host/pccafe/media_attachments/files/112/975/686/026/525/707/original/f11923dc1fbe2273.jpeg
  19. Embed this notice
    fedicat (fedicat@pc.cafe)'s status on Friday, 16-Aug-2024 23:48:33 JST fedicat fedicat
    in reply to
    • silverpill

    @silverpill Actually I added this because I saw it in the Mitra changelog! I haven't tested it in Mitra yet because I don't see it in the web UI but I'm adding quote_id today so hopefully I can create quote posts in the app.

    In conversation about 10 months ago from pc.cafe permalink
  20. Embed this notice
    fedicat (fedicat@pc.cafe)'s status on Friday, 16-Aug-2024 22:26:09 JST fedicat fedicat

    adding #Pleroma quote posts to #Fedicat

    In conversation about 10 months ago from pc.cafe permalink

    Attachments


    1. https://cdn.masto.host/pccafe/media_attachments/files/112/968/700/251/056/367/original/15baa047ae6a7830.jpeg
  • Before

User actions

    fedicat

    fedicat

    Official fediverse account for Fedicat

    Tags
    • (None)

    Following 0

      Followers 0

        Groups 0

          Statistics

          User ID
          264874
          Member since
          11 Jun 2024
          Notices
          23
          Daily average
          0

          Feeds

          • Atom
          • Help
          • About
          • FAQ
          • TOS
          • Privacy
          • Source
          • Version
          • Contact

          GNU social JP is a social network, courtesy of GNU social JP管理人. It runs on GNU social, version 2.0.2-dev, available under the GNU Affero General Public License.

          Creative Commons Attribution 3.0 All GNU social JP content and data are available under the Creative Commons Attribution 3.0 license.