[PR #775] [MERGED] 10.1: a lot of bug fixes, ui & self-hosting improvements, better security #1260

Closed
opened 2025-11-09 10:09:17 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/imputnet/cobalt/pull/775
Author: @wukko
Created: 9/23/2024
Status: Merged
Merged: 9/23/2024
Merged by: @wukko

Base: mainHead: develop


📝 Commits (10+)

  • 5e7324b web/SettingsCategory: add copy link to settings header
  • 0cc18b4 api/core: return public turnstile sitekey in server info
  • fdd5fea web: use turnstile & session only when the processing instance has them
  • a1361e8 web/about: convert pages to translatable markdown
  • d2b1a65 web/about: fix switching between pages
  • 503514d web/vite: exclude .md files from i18n chunks
  • 1a845fc web/SectionHeading: reusable component for linkable section headings
  • c92cd6d web/SidebarTab: improve animations & adjust mobile style
  • 521eb4b web/Sidebar: remove fixed width for tabs container
  • 02267b4 web/i18n/about: use section heading component

📊 Changes

52 files changed (+722 additions, -411 deletions)

View changed files

📝 api/package.json (+1 -1)
📝 api/src/config.js (+5 -0)
📝 api/src/core/api.js (+3 -4)
📝 pnpm-lock.yaml (+25 -23)
📝 web/i18n/en/a11y/save.json (+1 -0)
📝 web/i18n/en/about.json (+15 -1)
web/i18n/en/about/credits.md (+37 -0)
web/i18n/en/about/general.md (+79 -0)
web/i18n/en/about/privacy.md (+76 -0)
web/i18n/en/about/terms.md (+47 -0)
📝 web/i18n/en/button.json (+1 -0)
📝 web/i18n/en/error.json (+4 -2)
📝 web/i18n/en/settings.json (+1 -1)
📝 web/package.json (+11 -12)
📝 web/src/components/dialog/PickerItem.svelte (+2 -0)
📝 web/src/components/dialog/SavingDialog.svelte (+5 -1)
📝 web/src/components/donate/DonateBanner.svelte (+0 -2)
📝 web/src/components/donate/DonateOptionsCard.svelte (+7 -5)
📝 web/src/components/donate/DonationOption.svelte (+12 -6)
web/src/components/misc/AboutPageWrapper.svelte (+9 -0)

...and 32 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/imputnet/cobalt/pull/775 **Author:** [@wukko](https://github.com/wukko) **Created:** 9/23/2024 **Status:** ✅ Merged **Merged:** 9/23/2024 **Merged by:** [@wukko](https://github.com/wukko) **Base:** `main` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`5e7324b`](https://github.com/imputnet/cobalt/commit/5e7324bca9c2ba4ec480ae6640130416bc52ba32) web/SettingsCategory: add copy link to settings header - [`0cc18b4`](https://github.com/imputnet/cobalt/commit/0cc18b488c8831eac3e44be88ef059db7448a06d) api/core: return public turnstile sitekey in server info - [`fdd5fea`](https://github.com/imputnet/cobalt/commit/fdd5feac9249e2fc7aa54b68ba4879f225eae545) web: use turnstile & session only when the processing instance has them - [`a1361e8`](https://github.com/imputnet/cobalt/commit/a1361e846219eda90a3bd78b10cdc855302d4fdd) web/about: convert pages to translatable markdown - [`d2b1a65`](https://github.com/imputnet/cobalt/commit/d2b1a6553b8e90e697c96cfc94b0cfd1bf24870f) web/about: fix switching between pages - [`503514d`](https://github.com/imputnet/cobalt/commit/503514d98e7d1b664f9cea2f3a803e9f904dcde0) web/vite: exclude .md files from i18n chunks - [`1a845fc`](https://github.com/imputnet/cobalt/commit/1a845fcfc2a45bcd1dcebecba336b3fab5ff4b51) web/SectionHeading: reusable component for linkable section headings - [`c92cd6d`](https://github.com/imputnet/cobalt/commit/c92cd6d21c9f8936b2af5958c2a5e3a2554dc74e) web/SidebarTab: improve animations & adjust mobile style - [`521eb4b`](https://github.com/imputnet/cobalt/commit/521eb4b64376f3dfe5e6c6469c8a0b624725270c) web/Sidebar: remove fixed width for tabs container - [`02267b4`](https://github.com/imputnet/cobalt/commit/02267b4db42f752d2db45542205d88deb5e4cf7b) web/i18n/about: use section heading component ### 📊 Changes **52 files changed** (+722 additions, -411 deletions) <details> <summary>View changed files</summary> 📝 `api/package.json` (+1 -1) 📝 `api/src/config.js` (+5 -0) 📝 `api/src/core/api.js` (+3 -4) 📝 `pnpm-lock.yaml` (+25 -23) 📝 `web/i18n/en/a11y/save.json` (+1 -0) 📝 `web/i18n/en/about.json` (+15 -1) ➕ `web/i18n/en/about/credits.md` (+37 -0) ➕ `web/i18n/en/about/general.md` (+79 -0) ➕ `web/i18n/en/about/privacy.md` (+76 -0) ➕ `web/i18n/en/about/terms.md` (+47 -0) 📝 `web/i18n/en/button.json` (+1 -0) 📝 `web/i18n/en/error.json` (+4 -2) 📝 `web/i18n/en/settings.json` (+1 -1) 📝 `web/package.json` (+11 -12) 📝 `web/src/components/dialog/PickerItem.svelte` (+2 -0) 📝 `web/src/components/dialog/SavingDialog.svelte` (+5 -1) 📝 `web/src/components/donate/DonateBanner.svelte` (+0 -2) 📝 `web/src/components/donate/DonateOptionsCard.svelte` (+7 -5) 📝 `web/src/components/donate/DonationOption.svelte` (+12 -6) ➕ `web/src/components/misc/AboutPageWrapper.svelte` (+9 -0) _...and 32 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2025-11-09 10:09:17 -06:00
Sign in to join this conversation.