Update Mastodon, PeerTube, miscellaneous pages

This commit is contained in:
lostinlight 2019-06-27 21:07:38 +03:00
parent 3c951a26d9
commit e0f38d85cd
5 changed files with 18 additions and 8 deletions

View File

@ -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":
[ [

View File

@ -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"]
} }
] ]
} }

View File

@ -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"}

View File

@ -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

View File

@ -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>