mirror of
https://github.com/Psychotoxical/psysonic.git
synced 2026-07-21 23:05:46 +00:00
feat(whats-new): remote release notes with dev workspace mode (#1058)
* feat(whats-new): remote release notes with dev workspace mode Add WHATS_NEW.md, CI whats-new.md asset upload, and client fetch/cache with embedded fallbacks. Dev and -dev builds read the full file from the repo for debugging; RC/stable download the release asset on first use. * fix(whats-new): render ## headings and add changelog tab Parse h2 sections in release-notes markdown; load changelog alongside highlights and let users switch views on the What's New page. * fix(whats-new): prefetch on startup and fix CI typecheck prebuild Prefetch whats-new asset when the shell loads on RC/stable builds. Run prebuild:release-notes before tsc and coverage jobs so the gitignored generated bundle exists in CI. * docs: CHANGELOG and credits for What's New remote notes (PR #1058) * fix(whats-new): always slice embedded release notes to current line Drop full CHANGELOG embed for -dev bundles; tauri:dev still reads live markdown from the repo. Ignore all of src/generated/ in git. * fix(whats-new): fetch release asset via Rust to bypass CORS Route whats-new.md download through fetch_url_bytes; rename the technical tab label; add fetch unit tests (PR #1058 review).
This commit is contained in:
@@ -1,5 +1,9 @@
|
||||
export const whatsNew = {
|
||||
title: 'Was ist neu',
|
||||
changelogTitle: 'Changelog',
|
||||
viewTabsLabel: 'Ansicht der Versionshinweise',
|
||||
viewHighlights: 'Highlights',
|
||||
viewChangelog: 'Changelog',
|
||||
empty: 'Für diese Version liegt noch kein Changelog-Eintrag vor.',
|
||||
bannerTitle: 'Changelog',
|
||||
bannerCollapsed: 'Neu in v{{version}}',
|
||||
|
||||
@@ -1,5 +1,9 @@
|
||||
export const whatsNew = {
|
||||
title: "What's New",
|
||||
changelogTitle: 'Changelog',
|
||||
viewTabsLabel: 'Release notes view',
|
||||
viewHighlights: 'Highlights',
|
||||
viewChangelog: 'Changelog',
|
||||
empty: 'No changelog entry for this version yet.',
|
||||
bannerTitle: 'Changelog',
|
||||
bannerCollapsed: "What's new in v{{version}}",
|
||||
|
||||
@@ -1,5 +1,9 @@
|
||||
export const whatsNew = {
|
||||
title: 'Novedades',
|
||||
changelogTitle: 'Changelog',
|
||||
viewTabsLabel: 'Vista de notas de la versión',
|
||||
viewHighlights: 'Destacados',
|
||||
viewChangelog: 'Changelog',
|
||||
empty: 'Aún no hay entrada de changelog para esta versión.',
|
||||
bannerTitle: 'Changelog',
|
||||
bannerCollapsed: 'Novedades en v{{version}}',
|
||||
|
||||
@@ -1,5 +1,9 @@
|
||||
export const whatsNew = {
|
||||
title: 'Quoi de neuf',
|
||||
changelogTitle: 'Changelog',
|
||||
viewTabsLabel: 'Vue des notes de version',
|
||||
viewHighlights: 'À la une',
|
||||
viewChangelog: 'Changelog',
|
||||
empty: 'Aucune entrée de changelog pour cette version.',
|
||||
bannerTitle: 'Changelog',
|
||||
bannerCollapsed: 'Nouveau dans v{{version}}',
|
||||
|
||||
@@ -1,5 +1,9 @@
|
||||
export const whatsNew = {
|
||||
title: 'Nyheter',
|
||||
changelogTitle: 'Endringslogg',
|
||||
viewTabsLabel: 'Visning av versjonsnotater',
|
||||
viewHighlights: 'Høydepunkter',
|
||||
viewChangelog: 'Endringslogg',
|
||||
empty: 'Ingen endringslogg for denne versjonen ennå.',
|
||||
bannerTitle: 'Changelog',
|
||||
bannerCollapsed: 'Nyheter i v{{version}}',
|
||||
|
||||
@@ -1,5 +1,9 @@
|
||||
export const whatsNew = {
|
||||
title: 'Wat is nieuw',
|
||||
changelogTitle: 'Changelog',
|
||||
viewTabsLabel: 'Weergave release notes',
|
||||
viewHighlights: 'Highlights',
|
||||
viewChangelog: 'Changelog',
|
||||
empty: 'Nog geen changelog-item voor deze versie.',
|
||||
bannerTitle: 'Changelog',
|
||||
bannerCollapsed: 'Nieuw in v{{version}}',
|
||||
|
||||
@@ -1,5 +1,9 @@
|
||||
export const whatsNew = {
|
||||
title: "Ce este nou",
|
||||
changelogTitle: 'Lista de schimbări',
|
||||
viewTabsLabel: 'Vizualizare note de versiune',
|
||||
viewHighlights: 'Repere',
|
||||
viewChangelog: 'Changelog',
|
||||
empty: 'Nicio intrare în lista de schimbări pentru această versiune încă.',
|
||||
bannerTitle: 'Lista de schimbări',
|
||||
bannerCollapsed: "Ce este nou în v{{version}}",
|
||||
|
||||
@@ -1,5 +1,9 @@
|
||||
export const whatsNew = {
|
||||
title: 'Что нового',
|
||||
changelogTitle: 'Журнал изменений',
|
||||
viewTabsLabel: 'Вид заметок о выпуске',
|
||||
viewHighlights: 'Главное',
|
||||
viewChangelog: 'Changelog',
|
||||
empty: 'Для этой версии пока нет записи в журнале изменений.',
|
||||
bannerTitle: 'Журнал изменений',
|
||||
bannerCollapsed: 'Что нового в v{{version}}',
|
||||
|
||||
@@ -1,5 +1,9 @@
|
||||
export const whatsNew = {
|
||||
title: '新功能',
|
||||
changelogTitle: '更新日志',
|
||||
viewTabsLabel: '版本说明视图',
|
||||
viewHighlights: '亮点',
|
||||
viewChangelog: '更新日志',
|
||||
empty: '此版本暂无更新日志。',
|
||||
bannerTitle: '更新日志',
|
||||
bannerCollapsed: 'v{{version}} 新功能',
|
||||
|
||||
Reference in New Issue
Block a user