Add v0.22.0 changelog (#3991)

This commit is contained in:
WithoutPants
2023-08-02 16:15:25 +10:00
committed by GitHub
parent 00ae40ad72
commit bd28aa6fd9
2 changed files with 41 additions and 2 deletions

View File

@@ -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",

View File

@@ -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))