mirror of
https://github.com/Ocelot-Social-Community/ocelot.social.git
synced 2026-04-06 01:25:18 +00:00
Merge pull request #217 from Ocelot-Social-Community/29-content-for-news-page
feat(content): add news page to website
This commit is contained in:
commit
250d84a312
@ -27,6 +27,10 @@ export default hopeTheme({
|
||||
copyright: '© von <a href="https://busfaktor.org" target="_blank">busFaktor() e.V.</a> & Freunde | <a href="/de/imprint/">Impressum</a> | <a href="/de/privacy-policy/">Datenschutz</a>',
|
||||
footer: 'Unter der <a class="vt-link link link" href="https://opensource.org/licenses/MIT" target="_blank" rel="noopener noreferrer"><!--[-->MIT Lizenz<!--]--><!----></a> ausgeliefert.',
|
||||
navbar: [
|
||||
{
|
||||
text: 'News',
|
||||
link: '/de/news/'
|
||||
},
|
||||
{
|
||||
text: 'Funktionen',
|
||||
link: '/de/features/'
|
||||
@ -60,6 +64,10 @@ export default hopeTheme({
|
||||
copyright: '© by <a href="https://busfaktor.org" target="_blank">busFaktor() e.V.</a> & Friends | <a href="/en/imprint/">Imprint</a> | <a href="/en/privacy-policy/">Privacy Policy</a>',
|
||||
footer: 'Released under the <a class="vt-link link link" href="https://opensource.org/licenses/MIT" target="_blank" rel="noopener noreferrer"><!--[-->MIT License<!--]--><!----></a>.',
|
||||
navbar: [
|
||||
{
|
||||
text: 'News',
|
||||
link: '/en/news/'
|
||||
},
|
||||
{
|
||||
text: 'Features',
|
||||
link: '/en/features/'
|
||||
@ -87,12 +95,16 @@ export default hopeTheme({
|
||||
],
|
||||
},
|
||||
'/es/': {
|
||||
lang: 'es', // se establecerá como el atributo lang en <html>
|
||||
lang: 'es-ES', // se establecerá como el atributo lang en <html>
|
||||
title: 'Ocelot.Social',
|
||||
description: 'Ocelot.Social: software libre y de código abierto para crear y gestionar tu propia red social.',
|
||||
copyright: '© por <a href="https://busfaktor.org" target="_blank">busFaktor() e.V.</a> & Amigos | <a href="/en/imprint/">Aviso legal</a> | <a href="/en/privacy-policy/">Política de Privacidad</a>',
|
||||
footer: 'Liberado bajo la <a class="vt-link link link" href="https://opensource.org/licenses/MIT" target="_blank" rel="noopener noreferrer"><!--[-->Licencia MIT<!--]--><!----></a>.',
|
||||
navbar: [
|
||||
{
|
||||
text: 'Noticias',
|
||||
link: '/es/news/'
|
||||
},
|
||||
{
|
||||
text: 'Funcionalidades',
|
||||
link: '/es/features/'
|
||||
@ -127,6 +139,10 @@ export default hopeTheme({
|
||||
copyright: '© par <a href="https://busfaktor.org" target="_blank">busFaktor() e.V.</a> & amis | <a href="/fr/imprint/">Mentions légales</a> | <a href="/fr/privacy-policy/">Protection des données</a>',
|
||||
footer: 'Publié sous la <a class="vt-link link link" href="https://opensource.org/licenses/MIT" target="_blank" rel="noopener noreferrer"><!--[-->licence MIT<!--]--><!----></a>.',
|
||||
navbar: [
|
||||
{
|
||||
text: 'Actualités',
|
||||
link: '/fr/news/'
|
||||
},
|
||||
{
|
||||
text: 'Fonctionnalités',
|
||||
link: '/fr/features/'
|
||||
|
||||
@ -46,6 +46,35 @@ h1, h2, h3, h4 {
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
// Blog
|
||||
|
||||
.vp-blog-hero {
|
||||
display: none;
|
||||
}
|
||||
|
||||
// 2 columns from desktop width for article overviews
|
||||
@media (min-width: 1024px) {
|
||||
|
||||
#article-list,
|
||||
.vp-article-list {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: 1.25rem;
|
||||
}
|
||||
|
||||
#article-list>*,
|
||||
.vp-article-list>* {
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
// crop article image
|
||||
.page-cover img {
|
||||
max-height: 420px !important;
|
||||
}
|
||||
|
||||
// Button
|
||||
|
||||
.theme-hope-content Button {
|
||||
font-size: 1.1em;
|
||||
color: var(--text-color);
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
---
|
||||
home: true
|
||||
article: false
|
||||
icon: home
|
||||
sidebar: false
|
||||
lang: de-DE
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
---
|
||||
home: false
|
||||
# icon: home
|
||||
article: false
|
||||
sidebar: false
|
||||
lang: de-DE
|
||||
title: Kontakt
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
---
|
||||
home: false
|
||||
# icon: home
|
||||
article: false
|
||||
sidebar: true
|
||||
lang: de-DE
|
||||
title: Mitmachen
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
---
|
||||
home: false
|
||||
# icon: home
|
||||
article: false
|
||||
sidebar: false
|
||||
lang: de-DE
|
||||
title: Spenden
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
---
|
||||
home: false
|
||||
# icon: home
|
||||
article: false
|
||||
sidebar: false
|
||||
lang: de-DE
|
||||
title: Funktionen
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
---
|
||||
home: false
|
||||
# icon: home
|
||||
article: false
|
||||
sidebar: false
|
||||
lang: de-DE
|
||||
title: Einstieg
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
---
|
||||
home: false
|
||||
# icon: home
|
||||
article: false
|
||||
sidebar: false
|
||||
lang: de-DE
|
||||
title: Impressum
|
||||
|
||||
@ -1,10 +1,10 @@
|
||||
---
|
||||
home: false
|
||||
# icon: home
|
||||
article: false
|
||||
sidebar: false
|
||||
lang: de-DE
|
||||
title: Lernen
|
||||
description: Erweitere dein Wissen mit den Ressourcen von ocelot.social! Entdecke die FAQs und finde die Benutzeranleitung und die Installationsanleitung der Software.
|
||||
description: Erweitere dein Wissen mit den Ressourcen von ocelot.social! Entdecke die FAQs und finde die Benutzeranleitung und die Installationsanleitung der Software.
|
||||
---
|
||||
|
||||
<!-- ## X -->
|
||||
|
||||
@ -0,0 +1,33 @@
|
||||
---
|
||||
home: false
|
||||
article: true # Kennzeichnet die Seite als Blog-Artikel
|
||||
sidebar: false
|
||||
lang: de-DE
|
||||
date: 2025-07-05
|
||||
category:
|
||||
- News
|
||||
tag:
|
||||
- Releases
|
||||
cover: /de/news/2025-07-05-release-3-11-0-with-numerous-improvements/ocelot-social-release-v3-11-0.jpg
|
||||
title: "Version 3.11.0 mit zahlreichen Verbesserungen"
|
||||
description: "Diese Version der ocelot.social-Software verbessert die Stabilität und Nutzung des Chats und behebt einige Fehler."
|
||||
---
|
||||
|
||||
Mit dieser Version der *ocelot.social*-Software verbessert sich die Stabilität und Nutzung des Chats.
|
||||
Zudem wurden einige Fehler behoben.
|
||||
|
||||
## Das Wichtigste in Kürze
|
||||
|
||||
- Chat:
|
||||
- Fehler im Video-Player des Safari-Browsers behoben
|
||||
- keine leeren Nachrichten mehr, wenn das Hochladen von Dateien fehlschlägt
|
||||
- Texthinweis beim Hochladen von Dateien anzeigen
|
||||
- weitere Fehler behoben
|
||||
- weitere Software-Aktualisierungen
|
||||
|
||||
Alle Details findest du in diesem [Änderungsprotokoll](https://github.com/Ocelot-Social-Community/Ocelot-Social/releases/tag/3.11.0) (in Englisch).
|
||||
|
||||
## Unterstütze *ocelot.social*
|
||||
|
||||
- [Mitmachen](/de/contribute/)
|
||||
- [Spenden](/de/donate/)
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 71 KiB |
@ -0,0 +1,39 @@
|
||||
---
|
||||
home: false
|
||||
article: true # Kennzeichnet die Seite als Blog-Artikel
|
||||
sidebar: false
|
||||
lang: de-DE
|
||||
date: 2025-08-18
|
||||
category:
|
||||
- News
|
||||
tag:
|
||||
- Releases
|
||||
cover: /de/news/2025-08-18-tech-day-fusion-von-utopia-und-ocelot/fusion-of-utopia-and-ocelot.jpeg
|
||||
title: "Tech-Day – Fusion von Utopia und Ocelot!?"
|
||||
description: "An diesem Tech-Day vom 21.8.2025 beleuchten wir die Frage, ob Utopia Map und ocelot.social zusammengebracht werden können. Wir freuen uns auf deine Teilnahme."
|
||||
---
|
||||
|
||||
Diese Woche findet im Rahmen des [**Tech-Days**](https://www.busfaktor.org/de/projekte/tech-day) des [**busFaktor()**](https://www.busfaktor.org/de) wieder ein Vortrag statt, diesmal zum Thema:
|
||||
|
||||
**Fusion von Utopia und Ocelot!?**
|
||||
Referent: Anton Tranelis
|
||||
|
||||
Am Donnerstag, den 21.8.2025, um 14 Uhr (MESZ), [**online**](https://cloud.mfwerk.de/index.php/apps/bbb/b/E794JMdzi3iQc4xE) (wird aufgezeichnet)
|
||||
|
||||
## Worum geht es?
|
||||
|
||||
[**Utopia**](https://utopia-map.org/) und [**Ocelot**](https://ocelot.social/de/) sind zwei freie Open-Source-Projekte, die vom [**busFaktor()**](https://www.busfaktor.org/de) und [**IT4Change**](https://it4c.dev/) gepflegt und weiterentwickelt werden.
|
||||
Beide Projekte haben ähnliche Ausrichtungen: Sie wollen Menschen im Sinne des gesellschaftlichen Wandels zusammen und in Aktion bringen.
|
||||
|
||||
Obwohl beide weitgehend gleiche Komponenten und Services benötigen, werden diese bisher nicht miteinander geteilt. Verbesserungen an einem Projekt kommen so dem anderen Projekt nicht zugute. Zusätzlich konkurrieren sie um die gleichen Entwickler.
|
||||
Unterschiedliche Tech-Stacks erschweren es, Synergien zu nutzen.
|
||||
|
||||
In diesem Vortrag wollen wir die Gemeinsamkeiten beleuchten, schauen wie wir Synergien nutzen und unsere verfügbaren Ressourcen effektiv einsetzen können, um unsere gemeinsamen Ziele zu erreichen.
|
||||
Anschließend findet ein gemeinsamer Austausch dazu statt.
|
||||
|
||||
Wir freuen uns auf deine Teilnahme.
|
||||
|
||||
## Unterstütze *ocelot.social*
|
||||
|
||||
- [Mitmachen](/de/contribute/)
|
||||
- [Spenden](/de/donate/)
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 244 KiB |
9
docs/de/news/README.md
Normal file
9
docs/de/news/README.md
Normal file
@ -0,0 +1,9 @@
|
||||
---
|
||||
home: true
|
||||
article: false
|
||||
layout: Blog
|
||||
sidebar: false
|
||||
lang: de-DE
|
||||
title: News
|
||||
description: Hier findest du alle Neuigkeiten zur Open-Source-Software ocelot.social.
|
||||
---
|
||||
@ -1,10 +1,10 @@
|
||||
---
|
||||
home: false
|
||||
# icon: home
|
||||
article: false
|
||||
sidebar: false
|
||||
lang: de-DE
|
||||
title: Datenschutz
|
||||
description: In unserer Datenschutzerklärung erfahrst du mehr über unsere Verpflichtung zum Schutz deiner Daten beim Besuch unserer Website.
|
||||
description: In unserer Datenschutzerklärung erfährst du mehr über unseren Umgang mit deinen Daten beim Besuch unserer Website.
|
||||
---
|
||||
|
||||
Aktualisiert am 20. Mai 2024
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
---
|
||||
home: true
|
||||
article: false
|
||||
icon: home
|
||||
lang: en-US
|
||||
title: Ocelot.Social - Free software for your social network
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
---
|
||||
home: false
|
||||
# icon: home
|
||||
article: false
|
||||
sidebar: false
|
||||
lang: en-US
|
||||
title: Contact
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
---
|
||||
home: false
|
||||
# icon: home
|
||||
article: false
|
||||
sidebar: false
|
||||
lang: en-US
|
||||
title: Contribute
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
---
|
||||
home: false
|
||||
# icon: home
|
||||
article: false
|
||||
sidebar: false
|
||||
lang: en-US
|
||||
title: Donate
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
---
|
||||
home: false
|
||||
# icon: home
|
||||
article: false
|
||||
sidebar: false
|
||||
lang: en-US
|
||||
title: Features
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
---
|
||||
home: false
|
||||
# icon: home
|
||||
article: false
|
||||
sidebar: false
|
||||
lang: en-US
|
||||
title: Get Started
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
---
|
||||
home: false
|
||||
# icon: home
|
||||
article: false
|
||||
sidebar: false
|
||||
lang: en-US
|
||||
title: Imprint
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
---
|
||||
home: false
|
||||
# icon: home
|
||||
article: false
|
||||
sidebar: false
|
||||
lang: en-US
|
||||
title: Learn
|
||||
|
||||
@ -0,0 +1,33 @@
|
||||
---
|
||||
home: false
|
||||
article: true # Kennzeichnet die Seite als Blog-Artikel
|
||||
sidebar: false
|
||||
lang: en-US
|
||||
date: 2025-07-05
|
||||
category:
|
||||
- News
|
||||
tag:
|
||||
- Releases
|
||||
cover: /de/news/2025-07-05-release-3-11-0-with-numerous-improvements/ocelot-social-release-v3-11-0.jpg
|
||||
title: "Version 3.11.0 with numerous improvements"
|
||||
description: "This version of the ocelot.social software improves the stability and usability of the chat and fixes several bugs."
|
||||
---
|
||||
|
||||
This version of the ocelot.social software improves the stability and usability of the chat.
|
||||
In addition, several bugs have been fixed.
|
||||
|
||||
## The key facts in a nutshell
|
||||
|
||||
- Chat:
|
||||
- fix video player in Safari browser
|
||||
- avoid empty messages on failed file uploads
|
||||
- display text prompt when uploading files
|
||||
- additional bug fixes
|
||||
- additional software updates
|
||||
|
||||
For details see this [change log](https://github.com/Ocelot-Social-Community/Ocelot-Social/releases/tag/3.11.0).
|
||||
|
||||
## Support *ocelot.social*
|
||||
|
||||
- [Contribute](/en/contribute/)
|
||||
- [Donate](/en/donate/)
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 71 KiB |
@ -0,0 +1,40 @@
|
||||
---
|
||||
home: false
|
||||
article: true # Kennzeichnet die Seite als Blog-Artikel
|
||||
sidebar: false
|
||||
lang: en-US
|
||||
date: 2025-08-18
|
||||
category:
|
||||
- News
|
||||
tag:
|
||||
- Releases
|
||||
cover: /de/news/2025-08-18-tech-day-fusion-von-utopia-und-ocelot/fusion-of-utopia-and-ocelot.jpeg
|
||||
title: "Tech-Day – Fusion of Utopia and Ocelot!?"
|
||||
description: "On this Tech Day on August 21, 2025, we will explore the question of whether Utopia Map and ocelot.social can be brought together. We look forward to your participation."
|
||||
---
|
||||
|
||||
This week, another lecture will take place as part of [**Tech Day**](https://www.busfaktor.org/de/projekte/tech-day) organized by [**busFaktor()**](https://www.busfaktor.org/de), this time on the topic:
|
||||
|
||||
**Fusion of Utopia and Ocelot!?**
|
||||
Speaker: Anton Tranelis
|
||||
Language: German
|
||||
|
||||
Thursday, August 21, 2025, at 2 p.m. CEST, [**online**](https://cloud.mfwerk.de/index.php/apps/bbb/b/E794JMdzi3iQc4xE) (will be recorded)
|
||||
|
||||
## What is it about?
|
||||
|
||||
[**Utopia**](https://utopia-map.org/) and [**Ocelot**](https://ocelot.social/en/) are two free open source projects maintained and developed by [**busFaktor()**](https://www.busfaktor.org/de) and [**IT4Change**](https://it4c.dev/).
|
||||
Both projects have similar goals: they want to bring people together and get them involved in social change.
|
||||
|
||||
Although both require largely the same components and services, these have not been shared with each other so far. Improvements to one project do not benefit the other project. In addition, they compete for the same developers.
|
||||
Different tech stacks make it difficult to exploit synergies.
|
||||
|
||||
In this presentation, we want to highlight the similarities, look at how we can exploit synergies, and use our available resources effectively to achieve our common goals.
|
||||
This will be followed by a joint discussion on the topic.
|
||||
|
||||
We look forward to your participation.
|
||||
|
||||
## Support *ocelot.social*
|
||||
|
||||
- [Contribute](/en/contribute/)
|
||||
- [Donate](/en/donate/)
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 244 KiB |
9
docs/en/news/README.md
Normal file
9
docs/en/news/README.md
Normal file
@ -0,0 +1,9 @@
|
||||
---
|
||||
home: true
|
||||
article: false
|
||||
layout: Blog
|
||||
sidebar: false
|
||||
lang: en-US
|
||||
title: News
|
||||
description: Here you can find all the latest news about the open source software ocelot.social.
|
||||
---
|
||||
@ -1,6 +1,6 @@
|
||||
---
|
||||
home: false
|
||||
# icon: home
|
||||
article: false
|
||||
sidebar: false
|
||||
lang: en-US
|
||||
title: Privacy Policy
|
||||
|
||||
@ -1,15 +1,11 @@
|
||||
---
|
||||
home: true
|
||||
# layout: BlogHome
|
||||
article: false
|
||||
icon: home
|
||||
# title: Ocelot.Social
|
||||
heroFullScreen: false
|
||||
# heroImage: /logo.svg
|
||||
# heroText: Das freie soziale Open-Source-Netzwerk für eine aktive Zivilgesellschaft.
|
||||
tagLine:
|
||||
# actions:
|
||||
# - text: Demo
|
||||
# link: https://stage.ocelot.social/
|
||||
sidebar: false
|
||||
lang: es-ES
|
||||
title: Ocelot.Social – software libre para tu red social
|
||||
description: "Un software libre y de código abierto con el que puedes gestionar una red social para tu grupo: escalable, ampliable y también autohospedable."
|
||||
---
|
||||
|
||||
<!-- markdownlint-disable no-inline-html first-line-heading -->
|
||||
|
||||
@ -1,8 +1,10 @@
|
||||
---
|
||||
home: false
|
||||
# icon: home
|
||||
title: Contacto
|
||||
article: false
|
||||
sidebar: false
|
||||
lang: es-ES
|
||||
title: Contacto
|
||||
description: ¿Tienes alguna pregunta o comentario sobre ocelot.social, el software libre y de código abierto para redes sociales de cualquier tamaño? ¡No dudes en ponerte en contacto con nosotros!
|
||||
---
|
||||
|
||||
## Asociación de desarrolladores
|
||||
|
||||
@ -1,9 +1,10 @@
|
||||
---
|
||||
home: false
|
||||
# layout: BlogHome
|
||||
# icon: home
|
||||
title: Contribuir
|
||||
article: false
|
||||
sidebar: false
|
||||
lang: es-ES
|
||||
title: Contribuir
|
||||
description: Contribuye a la comunidad ocelot.social aportando ideas, comentarios y sugerencias, y mejorando el software de código abierto para redes sociales.
|
||||
---
|
||||
|
||||
## ¿Cómo puedes contribuir, participar y apoyar?
|
||||
|
||||
@ -1,8 +1,10 @@
|
||||
---
|
||||
home: false
|
||||
# icon: home
|
||||
title: Donar
|
||||
article: false
|
||||
sidebar: false
|
||||
lang: es-ES
|
||||
title: Donar
|
||||
description: Apoya el software de código abierto ocelot.social con una donación. Tu contribución nos ayuda a proporcionar, mantener y mejorar el software.
|
||||
---
|
||||
|
||||
*Ocelot.social* es un software de código abierto que está disponible gratuitamente.
|
||||
|
||||
@ -1,8 +1,10 @@
|
||||
---
|
||||
home: false
|
||||
# icon: home
|
||||
title: Características
|
||||
article: false
|
||||
sidebar: false
|
||||
lang: es-ES
|
||||
title: Características
|
||||
description: Descubre las numerosas funciones de ocelot.social, un software libre, moderno y ampliable de código abierto para redes sociales de cualquier tamaño.
|
||||
---
|
||||
|
||||
*Ocelot.social* ofrece una creciente variedad de características básicas y avanzadas de redes sociales que pueden ampliarse mediante [donaciones](/es/donate/) de la comunidad.
|
||||
|
||||
@ -1,8 +1,10 @@
|
||||
---
|
||||
home: false
|
||||
# icon: home
|
||||
title: Comenzar
|
||||
article: false
|
||||
sidebar: false
|
||||
lang: es-ES
|
||||
title: Comenzar
|
||||
description: ¿Listo para crear tu propia red social? Descubre cómo instalar el software ocelot.social para autohospedarlo o instalarlo en el proveedor que elijas.
|
||||
---
|
||||
|
||||
## Pruébalo, luego instálalo
|
||||
|
||||
@ -1,8 +1,10 @@
|
||||
---
|
||||
home: false
|
||||
# icon: home
|
||||
title: Aviso Legal
|
||||
article: false
|
||||
sidebar: false
|
||||
lang: es-ES
|
||||
title: Aviso Legal
|
||||
description: Descubre más sobre ocelot.social, quiénes somos y cómo puedes contactarnos. En nuestro aviso legal encontrarás información sobre el proyecto y nuestros datos de contacto.
|
||||
---
|
||||
|
||||
## Responsable de la Operación de este Sitio Web
|
||||
|
||||
@ -1,8 +1,10 @@
|
||||
---
|
||||
home: false
|
||||
# icon: home
|
||||
title: Aprender
|
||||
article: false
|
||||
sidebar: false
|
||||
lang: es-ES
|
||||
title: Aprender
|
||||
description: ¡Amplía tus conocimientos con los recursos de ocelot.social! Descubre las preguntas frecuentes y encuentra el manual de usuario y las instrucciones de instalación del software.
|
||||
---
|
||||
|
||||
<!-- ## XXX -->
|
||||
|
||||
@ -0,0 +1,33 @@
|
||||
---
|
||||
home: false
|
||||
article: true # Kennzeichnet die Seite als Blog-Artikel
|
||||
sidebar: false
|
||||
lang: de-DE
|
||||
date: 2025-07-05
|
||||
category:
|
||||
- News
|
||||
tag:
|
||||
- Releases
|
||||
cover: /de/news/2025-07-05-release-3-11-0-with-numerous-improvements/ocelot-social-release-v3-11-0.jpg
|
||||
title: "Versión 3.11.0 con numerosas mejoras"
|
||||
description: "Esta versión del software ocelot.social mejora la estabilidad y el uso del chat y corrige algunos errores."
|
||||
---
|
||||
|
||||
Con esta versión del software *ocelot.social* se mejora la estabilidad y el uso del chat.
|
||||
Además, se han corregido algunos errores.
|
||||
|
||||
## Lo más importante en resumen
|
||||
|
||||
- Chat:
|
||||
- Se ha corregido un error en el reproductor de vídeo del navegador Safari.
|
||||
- No más mensajes vacíos cuando falla la carga de archivos.
|
||||
- Mostrar aviso de texto al cargar archivos.
|
||||
- Se han corregido otros errores.
|
||||
- Más actualizaciones de software.
|
||||
|
||||
Encontrarás todos los detalles en este [registro de cambios](https://github.com/Ocelot-Social-Community/Ocelot-Social/releases/tag/3.11.0) (en inglés).
|
||||
|
||||
## Apoya a *ocelot.social*
|
||||
|
||||
- [Contribuir](/es/contribute/)
|
||||
- [Donar](/es/donate/)
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 71 KiB |
9
docs/es/news/README.md
Normal file
9
docs/es/news/README.md
Normal file
@ -0,0 +1,9 @@
|
||||
---
|
||||
home: true
|
||||
article: false
|
||||
layout: Blog
|
||||
sidebar: false
|
||||
lang: es-ES
|
||||
title: Noticias
|
||||
description: Aquí encontrarás todas las novedades sobre el software de código abierto ocelot.social.
|
||||
---
|
||||
@ -1,8 +1,10 @@
|
||||
---
|
||||
home: false
|
||||
# icon: home
|
||||
title: Política de Privacidad
|
||||
article: false
|
||||
sidebar: false
|
||||
lang: es-ES
|
||||
title: Política de Privacidad
|
||||
description: En nuestra política de privacidad encontrarás más información sobre cómo tratamos tus datos cuando visitas nuestro sitio web.
|
||||
---
|
||||
|
||||
Actualizado el 20 de mayo de 2024
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
---
|
||||
home: true
|
||||
article: false
|
||||
icon: home
|
||||
lang: fr-FR
|
||||
title: Ocelot.Social - Logiciel libre pour ton réseau social
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
---
|
||||
home: false
|
||||
# icon: home
|
||||
article: false
|
||||
sidebar: false
|
||||
lang: fr-FR
|
||||
title: Contact
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
---
|
||||
home: false
|
||||
# icon: home
|
||||
article: false
|
||||
sidebar: false
|
||||
lang: fr-FR
|
||||
title: Contribuer
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
---
|
||||
home: false
|
||||
# icon: home
|
||||
article: false
|
||||
sidebar: false
|
||||
lang: fr-FR
|
||||
title: Donner
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
---
|
||||
home: false
|
||||
# icon: home
|
||||
article: false
|
||||
sidebar: false
|
||||
lang: fr-FR
|
||||
title: Fonctions
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
---
|
||||
home: false
|
||||
# icon: home
|
||||
article: false
|
||||
sidebar: false
|
||||
lang: fr-FR
|
||||
title: Commencer
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
---
|
||||
home: false
|
||||
# icon: home
|
||||
article: false
|
||||
sidebar: false
|
||||
lang: fr-FR
|
||||
title: Impressum
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
---
|
||||
home: false
|
||||
# icon: home
|
||||
article: false
|
||||
sidebar: false
|
||||
lang: fr-FR
|
||||
title: Apprendre
|
||||
|
||||
@ -0,0 +1,33 @@
|
||||
---
|
||||
home: false
|
||||
article: true # Kennzeichnet die Seite als Blog-Artikel
|
||||
sidebar: false
|
||||
lang: fr-FR
|
||||
date: 2025-07-05
|
||||
category:
|
||||
- News
|
||||
tag:
|
||||
- Releases
|
||||
cover: /de/news/2025-07-05-release-3-11-0-with-numerous-improvements/ocelot-social-release-v3-11-0.jpg
|
||||
title: "Version 3.11.0 avec de nombreuses améliorations"
|
||||
description: "Cette version du logiciel ocelot.social améliore la stabilité et l’utilisation du chat et corrige quelques bugs."
|
||||
---
|
||||
|
||||
Cette version du logiciel *ocelot.social* améliore la stabilité et l’utilisation du chat.
|
||||
De plus, plusieurs bugs ont été corrigés.
|
||||
|
||||
## L’essentiel en bref
|
||||
|
||||
- Chat:
|
||||
- Correction d’un bug du lecteur vidéo dans le navigateur safari
|
||||
- Plus de messages vides lorsque le téléchargement de fichiers échoue
|
||||
- Affichage d’une note textuelle lors du téléchargement de fichiers
|
||||
- Autres erreurs corrigées
|
||||
- autres mises à jour logicielles
|
||||
|
||||
Tu trouveras tous les détails dans ce [journal des modifications](https://github.com/Ocelot-Social-Community/Ocelot-Social/releases/tag/3.11.0) (en anglais).
|
||||
|
||||
## Soutiens *ocelot.social*
|
||||
|
||||
- [Contribuer](/fr/contribute/)
|
||||
- [Donner](/fr/donate/)
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 71 KiB |
9
docs/fr/news/README.md
Normal file
9
docs/fr/news/README.md
Normal file
@ -0,0 +1,9 @@
|
||||
---
|
||||
home: true
|
||||
article: false
|
||||
layout: Blog
|
||||
sidebar: false
|
||||
lang: fr-FR
|
||||
title: Actualités
|
||||
description: Tu trouveras ici toutes les actualités concernant le logiciel open source ocelot.social.
|
||||
---
|
||||
@ -1,6 +1,6 @@
|
||||
---
|
||||
home: false
|
||||
# icon: home
|
||||
article: false
|
||||
sidebar: false
|
||||
lang: fr-FR
|
||||
title: Protection des données
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user