Skip to content

Commit 15db2da

Browse files
committed
Add v0.30.0 changelog
1 parent 892858a commit 15db2da

File tree

2 files changed

+34
-4
lines changed

2 files changed

+34
-4
lines changed

ui/v2.5/src/components/Changelog/Changelog.tsx

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,10 @@ import V0260 from "src/docs/en/Changelog/v0260.md";
3434
import V0270 from "src/docs/en/Changelog/v0270.md";
3535
import V0280 from "src/docs/en/Changelog/v0280.md";
3636
import V0290 from "src/docs/en/Changelog/v0290.md";
37+
import V0300 from "src/docs/en/Changelog/v0300.md";
38+
39+
import V0290ReleaseNotes from "src/docs/en/ReleaseNotes/v0290.md";
3740

38-
import V020ReleaseNotes from "src/docs/en/ReleaseNotes/v0290.md";
3941
import { MarkdownPage } from "../Shared/MarkdownPage";
4042
import { FormattedMessage } from "react-intl";
4143

@@ -73,17 +75,22 @@ const Changelog: React.FC = () => {
7375
// after new release:
7476
// add entry to releases, using the current* fields
7577
// then update the current fields.
76-
const currentVersion = stashVersion || "v0.29.0";
78+
const currentVersion = stashVersion || "v0.30.0";
7779
const currentDate = buildDate;
78-
const currentPage = V0290;
80+
const currentPage = V0300;
7981

8082
const releases: IStashRelease[] = [
8183
{
8284
version: currentVersion,
8385
date: currentDate,
8486
page: currentPage,
8587
defaultOpen: true,
86-
releaseNotes: V020ReleaseNotes,
88+
},
89+
{
90+
version: "v0.29.3",
91+
date: "2025-11-06",
92+
page: V0290,
93+
releaseNotes: V0290ReleaseNotes,
8794
},
8895
{
8996
version: "v0.28.1",
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
### ✨ New Features
2+
* Added stash-ids to Tags. ([#6255](https://github.com/stashapp/stash/pull/6255))
3+
* Added support for multiple Studio URLs. ([#6223](https://github.com/stashapp/stash/pull/6223))
4+
* Added option to add markers to front page. ([#6065](https://github.com/stashapp/stash/pull/6065))
5+
* Added duration filter to scene list sidebar. ([#6264](https://github.com/stashapp/stash/pull/6264))
6+
* Added experimental support for JPEG XL images. ([#6184](https://github.com/stashapp/stash/pull/6184))
7+
8+
### 🎨 Improvements
9+
* Selected stash-box is now remembered in the scene tagger view. ([#6192](https://github.com/stashapp/stash/pull/6192))
10+
* Added hardware encoding support for Rockchip RKMPP devices. ([#6182](https://github.com/stashapp/stash/pull/6182))
11+
* Added `inputURL` and `inputHostname` fields to scraper specs. ([#6250](https://github.com/stashapp/stash/pull/6250))
12+
* Added extra studio fields to scraper specs. ([#6249](https://github.com/stashapp/stash/pull/6249))
13+
* Added o-count to group cards. ([#6122](https://github.com/stashapp/stash/pull/6122))
14+
* Added options to filter and sort groups by o-count. ([#6122](https://github.com/stashapp/stash/pull/6122))
15+
* Added o-count to performer details page. ([#6171](https://github.com/stashapp/stash/pull/6171))
16+
* Added option to sort by total scene direction for performers, studios and tags. ([#6172](https://github.com/stashapp/stash/pull/6172))
17+
* Added option to sort scenes by Performer age. ([#6009](https://github.com/stashapp/stash/pull/6009))
18+
* Added option to sort scenes by Studio. ([#6155](https://github.com/stashapp/stash/pull/6155))
19+
* Added option to show external links on Performer cards. ([#6153](https://github.com/stashapp/stash/pull/6153))
20+
* 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))
21+
22+
### 🐛 Bug fixes
23+
* stash-ids are now set when creating new objects from the scrape dialog. ([#6269](https://github.com/stashapp/stash/pull/6269))

0 commit comments

Comments
 (0)