mirror of
https://codeberg.org/fediverse/fediparty.git
synced 2024-11-25 10:01:27 +00:00
Update Mastodon, PeerTube, miscellaneous pages
This commit is contained in:
parent
3c951a26d9
commit
e0f38d85cd
|
@ -50,8 +50,9 @@
|
||||||
],
|
],
|
||||||
"forks":
|
"forks":
|
||||||
[
|
[
|
||||||
{"id": "0", "url": "https://github.com/glitch-soc/mastodon"},
|
{"id": "0", "url": "https://github.com/glitch-soc/mastodon", "descr": "Glitch-soc - fork with experimental features"},
|
||||||
{"id": "1", "url": "https://github.com/beatrix-bitrot/ephemeral.glitch.social"}
|
{"id": "1", "url": "https://github.com/beatrix-bitrot/ephemeral.glitch.social", "descr": "Ephemeral Mastodon - with disappearing toots"},
|
||||||
|
{"id": "2", "url": "https://github.com/florence-social/mastodon-fork", "descr": "Florence - community fork"}
|
||||||
],
|
],
|
||||||
"utilities":
|
"utilities":
|
||||||
[
|
[
|
||||||
|
|
|
@ -546,6 +546,19 @@
|
||||||
"diasporaClass": false,
|
"diasporaClass": false,
|
||||||
"OStatusClass": false,
|
"OStatusClass": false,
|
||||||
"categories": ["Relays"]
|
"categories": ["Relays"]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "MoonTree",
|
||||||
|
"source": "https://github.com/Faleidel/moontreeproject",
|
||||||
|
"protocols": "ActivityPub",
|
||||||
|
"site": "",
|
||||||
|
"logo": "",
|
||||||
|
"servers": "",
|
||||||
|
"apClass": true,
|
||||||
|
"zotClass": false,
|
||||||
|
"diasporaClass": false,
|
||||||
|
"OStatusClass": false,
|
||||||
|
"categories": ["Links"]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
[
|
[
|
||||||
{"id": "0", "url": "https://docs.joinpeertube.org/#/admin-following-instances"}
|
{"id": "0", "url": "https://docs.joinpeertube.org/#/admin-following-instances"}
|
||||||
],
|
],
|
||||||
"devTutorial": "",
|
"devTutorial": "https://docs.joinpeertube.org/#/install-any-os",
|
||||||
"metrics":
|
"metrics":
|
||||||
[
|
[
|
||||||
{"id": "0", "url": "https://instances.joinpeertube.org/instances/stats"}
|
{"id": "0", "url": "https://instances.joinpeertube.org/instances/stats"}
|
||||||
|
|
|
@ -111,8 +111,6 @@ crossposting: Mastodon-Twitter crossposting
|
||||||
mastoGallery: Artodon gallery
|
mastoGallery: Artodon gallery
|
||||||
feedPreview: Instance timeline preview
|
feedPreview: Instance timeline preview
|
||||||
feed2toot: RSS to Mastodon bot
|
feed2toot: RSS to Mastodon bot
|
||||||
glitchSoc: glitch-soc - fork with experimental features
|
|
||||||
mastoEphemeral: ephemeral Mastodon with disappearing toots
|
|
||||||
trunk: Mass follow users based on common interests
|
trunk: Mass follow users based on common interests
|
||||||
|
|
||||||
#GNU Social page
|
#GNU Social page
|
||||||
|
|
|
@ -11,7 +11,6 @@ network: true
|
||||||
const stats = [__('stats')];
|
const stats = [__('stats')];
|
||||||
const tools = [__('preinstalled')];
|
const tools = [__('preinstalled')];
|
||||||
const utils = [__('mastofeed'), __('crossposting'), __('feedPreview'), __('webmentions'), __('feed2toot')];
|
const utils = [__('mastofeed'), __('crossposting'), __('feedPreview'), __('webmentions'), __('feed2toot')];
|
||||||
const forkTitles = [__('glitchSoc'), __('mastoEphemeral')];
|
|
||||||
%>
|
%>
|
||||||
|
|
||||||
<%- partial('_partial/heroheader') %>
|
<%- partial('_partial/heroheader') %>
|
||||||
|
@ -82,9 +81,8 @@ network: true
|
||||||
<ul class="section-list">
|
<ul class="section-list">
|
||||||
<h4><%- __('forks') %></h4>
|
<h4><%- __('forks') %></h4>
|
||||||
<% for (item in data.forks) { %>
|
<% for (item in data.forks) { %>
|
||||||
<% let b = data.forks[item].id %>
|
|
||||||
<li>
|
<li>
|
||||||
<a href="<%= data.forks[item].url %>"><%= forkTitles[b] %></a>
|
<a href="<%= data.forks[item].url %>"><%= data.forks[item].descr %></a>
|
||||||
</li>
|
</li>
|
||||||
<% } %>
|
<% } %>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
Loading…
Reference in a new issue