<p>It was long-overdue... but <a href="/tags/sengi/" rel="tag">#Sengi</a> 1.8.0 is out! 🎉</p><p>This version add the much requested THEME SUPPORT functionality! 😁<br>And a light theme is already available, check the settings to enable it.</p><p>I've also documented the procedure to add a theme if some of you are interested by doing so.<br><a href="https://github.com/NicolasConstant/sengi/wiki/How-to-Create-New-Theme" rel="nofollow" class="ellipsis" title="github.com/NicolasConstant/sengi/wiki/How-to-Create-New-Theme"><span class="invisible">https://</span><span class="ellipsis">github.com/NicolasConstant/sen</span><span class="invisible">gi/wiki/How-to-Create-New-Theme</span></a></p><p><a href="/tags/mastodon/" rel="tag">#mastodon</a> <a href="/tags/pleroma/" rel="tag">#pleroma</a> <a href="/tags/app/" rel="tag">#app</a> <a href="/tags/client/" rel="tag">#client</a></p>
client
<p>We're absolutely thrilled to see the new Qlub app sitting pretty in app stores now 😍 </p><p>We worked with the team at <span class="h-card"><a href="https://qlub.social/@qlub" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@<span>qlub</span></a></span> to build an app for the amazing community in Quebec and their specific needs. </p><p>It's so exciting to see it go live and we can't wait to meet the Qlub team next week 👀 </p><p><a href="https://site.qlub.social/apps/" rel="nofollow"><span class="invisible">https://</span>site.qlub.social/apps/</a> </p><p><a href="/tags/socialmedia/" rel="tag">#SocialMedia</a> <a href="/tags/socialweb/" rel="tag">#SocialWeb</a> <a href="/tags/qlub/" rel="tag">#Qlub</a> <a href="/tags/socialapp/" rel="tag">#SocialApp</a> <a href="/tags/client/" rel="tag">#Client</a> <a href="/tags/mastodon/" rel="tag">#Mastodon</a> <a href="/tags/fediverse/" rel="tag">#Fediverse</a> <a href="/tags/app/" rel="tag">#App</a></p>
<p><a href="/tags/sengi/" rel="tag">#Sengi</a> 1.9.0 is out! 🎉 </p><p>It can now display Quote Posts properly (Creation and Notification will come later), and thanks to the work of <span class="h-card"><a href="https://hachyderm.io/@rpetti" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@<span>rpetti</span></a></span> we now have an updated emoji lib to support more types!</p><p>If you see any visual bugs on Quoted Posts, please open an issue on Github.</p><p><a href="/tags/mastodon/" rel="tag">#mastodon</a> <a href="/tags/pleroma/" rel="tag">#pleroma</a> <a href="/tags/app/" rel="tag">#app</a> <a href="/tags/client/" rel="tag">#client</a></p>
<p>I've always wanted to be able to filter my <a href="/tags/mastodon/" rel="tag">#mastodon</a> feeds by people I'm following or hashtags, instead of one huge noisy feed of both.</p><p>I've got enough working now I'd love for others to give it a shot, everything is stored in your browser, no tracking or servers collecting data.</p><p>if you have a few minutes I'd love others try it out or reshare</p><p>You can find it here: <a href="https://elefeed.app/" rel="nofollow"><span class="invisible">https://</span>elefeed.app/</a></p><p><a href="/tags/client/" rel="tag">#client</a> <a href="/tags/foss/" rel="tag">#foss</a> <a href="/tags/fediverse/" rel="tag">#fediverse</a> <a href="/tags/mastodonapp/" rel="tag">#mastodonapp</a> <a href="/tags/mastodonclient/" rel="tag">#mastodonclient</a> <a href="/tags/webapp/" rel="tag">#webapp</a> <a href="/tags/indiedev/" rel="tag">#indiedev</a> <a href="/tags/webapp/" rel="tag">#webapp</a> <a href="/tags/openweb/" rel="tag">#openweb</a> <a href="/tags/apps/" rel="tag">#apps</a> <a href="/tags/app/" rel="tag">#app</a></p>
As part of my book "ActivityPub: Programming for the Social Web", I created a coding example to show how to program for the ActivityPub API. ap is a command-line client, written in Python, for doing basic tasks with ActivityPub.For example, you can log into a server using this command:
ap login [email protected]
Once you're logged in, you can follow someone:
ap follow [email protected]
Or, you could post some content:
ap create note --public "Hello, World"
This isn't […]