Merge branch 'master' into add-translation-check-workflow

This commit is contained in:
mahula 2025-11-03 16:47:04 +01:00 committed by GitHub
commit 4db29e5716
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
13 changed files with 2961 additions and 1719 deletions

View File

@ -10,10 +10,10 @@ jobs:
- name: Checkout code
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4.1.7
- name: Setup Node 20
- name: Setup Node
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v4.0.3
with:
node-version: '20'
node-version-file: '.nvmrc'
- name: npm-install
run: npm install

View File

@ -10,10 +10,10 @@ jobs:
- name: Checkout code
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4.1.7
- name: Setup Node 20
- name: Setup Node
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v4.0.3
with:
node-version: '20'
node-version-file: '.nvmrc'
- name: npm-install
run: npm install

View File

@ -12,10 +12,10 @@ jobs:
- name: Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4.1.7
- name: Setup Node 20
- name: Setup Node
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v4.0.3
with:
node-version: 20
node-version-file: '.nvmrc'
- name: Build Vuepress Pages
run: npm install && npm run build

2
.nvmrc
View File

@ -1 +1 @@
v20.5.0
v22.11.0

View File

@ -24,7 +24,7 @@ module.exports = {
'doubled-spaces': true,
'common-misspellings': {
// Misspellings to be ignored (case-insensitive)
ignore: ['Exemple'],
ignore: ['Autor', 'Exemple'],
},
'write-good': false,
'apostrophe': true,

View File

@ -17,7 +17,7 @@ export default hopeTheme({
center: ["Links"],
end: ["Language", "Repo", "Outlook", "Search"],
},
locales:{
locales: {
// The key is the path for the locale to be nested under.
// As a special case, the default locale can use '/' as its path.
'/de/': {
@ -170,22 +170,23 @@ export default hopeTheme({
],
}
},
mdEnhance: {
align: true,
demo: true,
sub: true,
sup: true,
vPre: true,
},
plugins: {
blog: {
excerptLength: 0,
},
mdEnhance: {
align: true,
demo: true,
sub: true,
sup: true,
vPre: true,
},
redirect: {
autoLocale: true,
defaultBehavior: 'defaultLocale',
defaultLocale: '/de/',
localeConfig: {
'/de/': ['de-DE', 'de'],
'/en/': ['en-US', 'en'],
@ -194,19 +195,9 @@ export default hopeTheme({
},
localeFallback: false,
},
searchPro: {
slimsearch: {
indexContent: true,
autoSuggestions: true,
customFields: [
{
getter: (page) => page.frontmatter.category,
formatter: "Category: $content",
},
{
getter: (page) => page.frontmatter.tag,
formatter: "Tag: $content",
},
],
},
seo: {
fallbackImage: '/logo.svg',

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

View File

@ -73,6 +73,19 @@ h1, h2, h3, h4 {
max-height: 420px !important;
}
figure.blog-post-image {
padding-top: 25px;
}
figure.blog-post-image + p {
padding-top: 18px;
}
figcaption.blog-post-image-capture {
font-size: 0.87rem;
padding-top: 5px;
}
// Button
.theme-hope-content Button {

View File

@ -0,0 +1,47 @@
---
home: false
article: true # Kennzeichnet die Seite als Blog-Artikel
sidebar: false
lang: de-DE
date: 2025-10-28
category:
- News
tag:
- Releases
cover: /blog/ocelot-social-release-v3-13-0.jpg
coverAlt: "Ocelot.social Version 3.13.0"
title: "Version 3.13.0 bringt Verbesserungen beim Kommentieren"
description: "Diese Version fügt Beiträgen eine Möglichkeit für Nutzer hinzu, die Kommentarfunktion aktivieren zu können."
---
Die neue Version 3.13.0 macht es dir einfacher, das Kommentieren freizuschalten.
## Worum geht es?
In eingen Fällen ist bei Beiträgen die Kommentarfunktion deaktiviert:
- Wenn du den Autor des Beitrags blockiert hast.
- Wenn du nicht Mitglied der Gruppe bist, in welcher der Beitrag erscheint.
Bisher bekamst du nur einen kurzen Hinweis darauf.
Jetzt mit der neuen Version der *ocelot.social*-Software kannst du auf einen Knopf klicken, um den Autor auf seinem Profil zu deblockieren beziehungsweise der Gruppe direkt beizutreten.
<figure class="blog-post-image">
<img src="/blog/post-view-action-enter-group--de.png" alt="Aktion, um der Gruppe beizutreten" />
<figcaption class="blog-post-image-capture">
Aktion, um der Gruppe beizutreten.
</figcaption>
</figure>
Nebenbei wurden einige technische Verbesserungen in der Software gemacht und Fehler behoben.
Alle Details findest du in diesem [Änderungsprotokoll](https://github.com/Ocelot-Social-Community/Ocelot-Social/releases/tag/3.13.0) (in Englisch).
## Unterstütze *ocelot.social*
Wenn du von der Verwendung von *ocelot.social* profitierst, hilf bitte mit deiner Unterstützung.
Vielen Dank!
- [Mitmachen](/de/contribute/)
- [Spenden](/de/donate/)

View File

@ -0,0 +1,47 @@
---
home: false
article: true # Kennzeichnet die Seite als Blog-Artikel
sidebar: false
lang: en-US
date: 2025-10-28
category:
- News
tag:
- Releases
cover: /blog/ocelot-social-release-v3-13-0.jpg
coverAlt: "Ocelot.social version 3.13.0"
title: "Version 3.13.0 brings improvements to commenting"
description: "This version adds a feature to posts that allows users to enable the comment function."
---
The new version 3.13.0 makes it easier for you to enable commenting.
## What is it about?
In some cases, the comment function is disabled for posts:
- If you have blocked the author of the post.
- If you are not a member of the group in which the post appears.
Previously, you only received a brief notification about this.
Now, with the new version of the *ocelot.social* software, you can click a button to unblock the author on their profile or join the group directly.
<figure class="blog-post-image">
<img src="/blog/post-view-action-enter-group--de.png" alt="Action to join the group" />
<figcaption class="blog-post-image-capture">
Action to join the group.
</figcaption>
</figure>
In addition, several technical improvements were made to the software and bugs were fixed.
For details see this [change log](https://github.com/Ocelot-Social-Community/Ocelot-Social/releases/tag/3.13.0).
## Support *ocelot.social*
If you benefit from using *ocelot.social*, please help us with your support.
Thank you very much!
- [Contribute](/en/contribute/)
- [Donate](/en/donate/)

4520
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -23,7 +23,8 @@
"devDependencies": {
"@textlint-rule/textlint-rule-no-unmatched-pair": "^2.0.4",
"@vuepress/bundler-vite": "^2.0.0-rc.18",
"@vuepress/plugin-redirect": "^2.0.0-rc.60",
"@vuepress/plugin-redirect": "2.0.0-rc.66",
"@vuepress/plugin-slimsearch": "2.0.0-rc.67",
"sass-embedded": "^1.91.0",
"textlint": "^15.2.3",
"textlint-filter-rule-comments": "^1.2.2",
@ -36,8 +37,7 @@
"textlint-rule-no-start-duplicated-conjunction": "^2.0.2",
"textlint-rule-no-todo": "^2.0.1",
"textlint-rule-no-zero-width-spaces": "^1.0.1",
"vuepress": "^2.0.0-rc.18",
"vuepress-plugin-search-pro": "^2.0.0-rc.59",
"vuepress-theme-hope": "^2.0.0-rc.59"
"vuepress": "^2.0.0-rc.19",
"vuepress-theme-hope": "2.0.0-rc.66"
}
}