chore: add AGPL-3.0 license, update README and about page for open source

This commit is contained in:
2026-02-11 15:32:47 +01:00
parent 2d7d22b22f
commit 5cf04af7ab
4 changed files with 722 additions and 14 deletions

View File

@@ -28,6 +28,10 @@ class PageAbout extends HTMLElement {
<li>Open Source & selbst gehostet</li>
<li>Betrieben aus der Schweiz</li>
</ul>
<h2>Open Source</h2>
<p>Der komplette Quellcode ist öffentlich einsehbar und unter der <strong>AGPL-3.0 Lizenz</strong> verfügbar.</p>
<p><a href="https://gitea.pro/schmidt1024/kashilo" target="_blank" rel="noopener">Quellcode auf Gitea</a></p>
`,
en: /* html */`
<h1>About kashilo.com</h1>
@@ -43,6 +47,10 @@ class PageAbout extends HTMLElement {
<li>Open source & self-hosted</li>
<li>Operated from Switzerland</li>
</ul>
<h2>Open Source</h2>
<p>The complete source code is publicly available under the <strong>AGPL-3.0 License</strong>.</p>
<p><a href="https://gitea.pro/schmidt1024/kashilo" target="_blank" rel="noopener">Source code on Gitea</a></p>
`,
fr: /* html */`
<h1>À propos de kashilo.com</h1>
@@ -58,6 +66,10 @@ class PageAbout extends HTMLElement {
<li>Open source & auto-hébergé</li>
<li>Exploité depuis la Suisse</li>
</ul>
<h2>Open Source</h2>
<p>Le code source complet est disponible publiquement sous la <strong>licence AGPL-3.0</strong>.</p>
<p><a href="https://gitea.pro/schmidt1024/kashilo" target="_blank" rel="noopener">Code source sur Gitea</a></p>
`,
it: /* html */`
<h1>Informazioni su kashilo.com</h1>
@@ -73,6 +85,10 @@ class PageAbout extends HTMLElement {
<li>Open source e self-hosted</li>
<li>Gestito dalla Svizzera</li>
</ul>
<h2>Open Source</h2>
<p>Il codice sorgente completo è disponibile pubblicamente con <strong>licenza AGPL-3.0</strong>.</p>
<p><a href="https://gitea.pro/schmidt1024/kashilo" target="_blank" rel="noopener">Codice sorgente su Gitea</a></p>
`,
es: /* html */`
<h1>Acerca de kashilo.com</h1>
@@ -88,6 +104,10 @@ class PageAbout extends HTMLElement {
<li>Código abierto y autoalojado</li>
<li>Operado desde Suiza</li>
</ul>
<h2>Open Source</h2>
<p>El código fuente completo está disponible públicamente bajo la <strong>licencia AGPL-3.0</strong>.</p>
<p><a href="https://gitea.pro/schmidt1024/kashilo" target="_blank" rel="noopener">Código fuente en Gitea</a></p>
`,
pt: /* html */`
<h1>Sobre o kashilo.com</h1>
@@ -103,6 +123,10 @@ class PageAbout extends HTMLElement {
<li>Código aberto e auto-hospedado</li>
<li>Operado a partir da Suíça</li>
</ul>
<h2>Open Source</h2>
<p>O código-fonte completo está disponível publicamente sob a <strong>licença AGPL-3.0</strong>.</p>
<p><a href="https://gitea.pro/schmidt1024/kashilo" target="_blank" rel="noopener">Código-fonte no Gitea</a></p>
`,
ru: /* html */`
<h1>О kashilo.com</h1>
@@ -118,6 +142,10 @@ class PageAbout extends HTMLElement {
<li>Открытый исходный код, собственный хостинг</li>
<li>Управляется из Швейцарии</li>
</ul>
<h2>Open Source</h2>
<p>Полный исходный код доступен публично под <strong>лицензией AGPL-3.0</strong>.</p>
<p><a href="https://gitea.pro/schmidt1024/kashilo" target="_blank" rel="noopener">Исходный код на Gitea</a></p>
`
}
return content[lang] || content.de