Add v0.30.0 changelog

This commit is contained in:
WithoutPants 2025-11-14 13:41:29 +11:00
parent 892858a803
commit 15db2da361
2 changed files with 34 additions and 4 deletions

View file

@ -34,8 +34,10 @@ import V0260 from "src/docs/en/Changelog/v0260.md";
import V0270 from "src/docs/en/Changelog/v0270.md";
import V0280 from "src/docs/en/Changelog/v0280.md";
import V0290 from "src/docs/en/Changelog/v0290.md";
import V0300 from "src/docs/en/Changelog/v0300.md";
import V0290ReleaseNotes from "src/docs/en/ReleaseNotes/v0290.md";
import V020ReleaseNotes from "src/docs/en/ReleaseNotes/v0290.md";
import { MarkdownPage } from "../Shared/MarkdownPage";
import { FormattedMessage } from "react-intl";
@ -73,9 +75,9 @@ const Changelog: React.FC = () => {
// after new release:
// add entry to releases, using the current* fields
// then update the current fields.
const currentVersion = stashVersion || "v0.29.0";
const currentVersion = stashVersion || "v0.30.0";
const currentDate = buildDate;
const currentPage = V0290;
const currentPage = V0300;
const releases: IStashRelease[] = [
{
@ -83,7 +85,12 @@ const Changelog: React.FC = () => {
date: currentDate,
page: currentPage,
defaultOpen: true,
releaseNotes: V020ReleaseNotes,
},
{
version: "v0.29.3",
date: "2025-11-06",
page: V0290,
releaseNotes: V0290ReleaseNotes,
},
{
version: "v0.28.1",

View file

@ -0,0 +1,23 @@
### ✨ New Features
* Added stash-ids to Tags. ([#6255](https://github.com/stashapp/stash/pull/6255))
* Added support for multiple Studio URLs. ([#6223](https://github.com/stashapp/stash/pull/6223))
* Added option to add markers to front page. ([#6065](https://github.com/stashapp/stash/pull/6065))
* Added duration filter to scene list sidebar. ([#6264](https://github.com/stashapp/stash/pull/6264))
* Added experimental support for JPEG XL images. ([#6184](https://github.com/stashapp/stash/pull/6184))
### 🎨 Improvements
* Selected stash-box is now remembered in the scene tagger view. ([#6192](https://github.com/stashapp/stash/pull/6192))
* Added hardware encoding support for Rockchip RKMPP devices. ([#6182](https://github.com/stashapp/stash/pull/6182))
* Added `inputURL` and `inputHostname` fields to scraper specs. ([#6250](https://github.com/stashapp/stash/pull/6250))
* Added extra studio fields to scraper specs. ([#6249](https://github.com/stashapp/stash/pull/6249))
* Added o-count to group cards. ([#6122](https://github.com/stashapp/stash/pull/6122))
* Added options to filter and sort groups by o-count. ([#6122](https://github.com/stashapp/stash/pull/6122))
* Added o-count to performer details page. ([#6171](https://github.com/stashapp/stash/pull/6171))
* Added option to sort by total scene direction for performers, studios and tags. ([#6172](https://github.com/stashapp/stash/pull/6172))
* Added option to sort scenes by Performer age. ([#6009](https://github.com/stashapp/stash/pull/6009))
* Added option to sort scenes by Studio. ([#6155](https://github.com/stashapp/stash/pull/6155))
* Added option to show external links on Performer cards. ([#6153](https://github.com/stashapp/stash/pull/6153))
* Added keyboard shortcuts to generate scene screenshot at current time (`c c`) and to regenerate default screenshot (`c d`). ([#5984](https://github.com/stashapp/stash/pull/5984))
### 🐛 Bug fixes
* stash-ids are now set when creating new objects from the scrape dialog. ([#6269](https://github.com/stashapp/stash/pull/6269))