From bd28aa6fd977481c09467d4c3d0287249f3befc3 Mon Sep 17 00:00:00 2001 From: WithoutPants <53250216+WithoutPants@users.noreply.github.com> Date: Wed, 2 Aug 2023 16:15:25 +1000 Subject: [PATCH] Add v0.22.0 changelog (#3991) --- .../src/components/Changelog/Changelog.tsx | 10 ++++-- ui/v2.5/src/docs/en/Changelog/v0220.md | 33 +++++++++++++++++++ 2 files changed, 41 insertions(+), 2 deletions(-) create mode 100644 ui/v2.5/src/docs/en/Changelog/v0220.md diff --git a/ui/v2.5/src/components/Changelog/Changelog.tsx b/ui/v2.5/src/components/Changelog/Changelog.tsx index 865fc4acd..0bdb79c90 100644 --- a/ui/v2.5/src/components/Changelog/Changelog.tsx +++ b/ui/v2.5/src/components/Changelog/Changelog.tsx @@ -26,6 +26,7 @@ import V0180 from "src/docs/en/Changelog/v0180.md"; import V0190 from "src/docs/en/Changelog/v0190.md"; import V0200 from "src/docs/en/Changelog/v0200.md"; import V0210 from "src/docs/en/Changelog/v0210.md"; +import V0220 from "src/docs/en/Changelog/v0220.md"; import { MarkdownPage } from "../Shared/MarkdownPage"; const Changelog: React.FC = () => { @@ -61,9 +62,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.21.0"; + const currentVersion = stashVersion || "v0.22.0"; const currentDate = buildDate; - const currentPage = V0210; + const currentPage = V0220; const releases: IStashRelease[] = [ { @@ -72,6 +73,11 @@ const Changelog: React.FC = () => { page: currentPage, defaultOpen: true, }, + { + version: "v0.21.0", + date: "2023-06-13", + page: V0210, + }, { version: "v0.20.2", date: "2023-04-08", diff --git a/ui/v2.5/src/docs/en/Changelog/v0220.md b/ui/v2.5/src/docs/en/Changelog/v0220.md new file mode 100644 index 000000000..6754bd785 --- /dev/null +++ b/ui/v2.5/src/docs/en/Changelog/v0220.md @@ -0,0 +1,33 @@ +### ✨ New Features +* Added Studio Tagger. ([#3510](https://github.com/stashapp/stash/pull/3510)) +* Added options to skip multiple results and single name performers during Identify. ([#3707](https://github.com/stashapp/stash/pull/3707)) +* Added folder move detection during scan. ([#3817](https://github.com/stashapp/stash/pull/3817)) +* Changed Scene to accept multiple URLs. ([#3852](https://github.com/stashapp/stash/pull/3852)) +* Added ability to choose from multiple images in the performer scrape dialog. ([#3965](https://github.com/stashapp/stash/pull/3965)) +* Added AirPlay and Chromecast support. ([#3907](https://github.com/stashapp/stash/pull/3907)) +* Added support for creating Movies from the Movie select dropdown. ([#3928](https://github.com/stashapp/stash/pull/3928)) +* Added Optimise Database task. ([#3929](https://github.com/stashapp/stash/pull/3929)) +* Added support for serving interactive CSVs directly to Handy. ([#3756](https://github.com/stashapp/stash/pull/3756)) +* Added video and audio codec filters for scene queries. ([#3843](https://github.com/stashapp/stash/pull/3843)) + +### 🎨 Improvements +* Significantly redesigned the Movie, Performer, Studio, and Tag detail pages. ([#3946](https://github.com/stashapp/stash/pull/3946)) +* Added age, gender, country and image to Performer stash-box results. ([#3964](https://github.com/stashapp/stash/pull/3964)) +* Refactored graphql client cache invalidation to improve performance when creating objects. ([#3912](https://github.com/stashapp/stash/pull/3912)) +* Added Gallery card to the Gallery tab on the Scene page. ([#3927](https://github.com/stashapp/stash/pull/3927)) +* Added more stats to the stats page. ([#3812](https://github.com/stashapp/stash/pull/3812)) +* Added support for `-v/--version` command line flag. ([#3883](https://github.com/stashapp/stash/pull/3883)) + +### 🐛 Bug fixes +* Fixed parent/child tags not showing popover. ([#3968](https://github.com/stashapp/stash/pull/3968)) +* Fixed scrape not returning any results if only relationship fields were set. ([#3954](https://github.com/stashapp/stash/pull/3954)) +* Fixed rotating in iOS causing scene player to exit fullscreen. ([#3919](https://github.com/stashapp/stash/pull/3919)) +* Repositioned the tag popover to the right on drop-down tag select control. ([#3939](https://github.com/stashapp/stash/pull/3939)) +* Fixed on-screen controls not showing correctly on iPad in Safari. ([#3882](https://github.com/stashapp/stash/pull/3882)) +* Fixed marker tag exclude filtering. ([#3846](https://github.com/stashapp/stash/pull/3846)) +* Fixed error after deleting studio or tag. ([#3835](https://github.com/stashapp/stash/pull/3835)) +* Fixed scene queue show more button appending scenes incorrectly. ([#3851](https://github.com/stashapp/stash/pull/3851)) +* Fixed path sorting ordering numbers before special characters. ([#3829](https://github.com/stashapp/stash/pull/3829)) +* Fixed scene player not staying in full screen when loading a new scene. ([#3828](https://github.com/stashapp/stash/pull/3828)) +* Fixed badge counter value for sub-tags/studios. ([#3816](https://github.com/stashapp/stash/pull/3816)) +* Adjusted dimensions for resolution display and filtering. ([#3798](https://github.com/stashapp/stash/pull/3798))