From 2cf73ded8351974cef06260057f09e94996f710e Mon Sep 17 00:00:00 2001 From: WithoutPants <53250216+WithoutPants@users.noreply.github.com> Date: Mon, 17 Apr 2023 16:37:19 +1000 Subject: [PATCH] Add 0.21 changelog (#3668) --- ui/v2.5/src/components/Changelog/Changelog.tsx | 10 ++++++++-- ui/v2.5/src/docs/en/Changelog/v0210.md | 13 +++++++++++++ 2 files changed, 21 insertions(+), 2 deletions(-) create mode 100644 ui/v2.5/src/docs/en/Changelog/v0210.md diff --git a/ui/v2.5/src/components/Changelog/Changelog.tsx b/ui/v2.5/src/components/Changelog/Changelog.tsx index d959019a7..865fc4acd 100644 --- a/ui/v2.5/src/components/Changelog/Changelog.tsx +++ b/ui/v2.5/src/components/Changelog/Changelog.tsx @@ -25,6 +25,7 @@ import V0170 from "src/docs/en/Changelog/v0170.md"; 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 { MarkdownPage } from "../Shared/MarkdownPage"; const Changelog: React.FC = () => { @@ -60,9 +61,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.20.0"; + const currentVersion = stashVersion || "v0.21.0"; const currentDate = buildDate; - const currentPage = V0200; + const currentPage = V0210; const releases: IStashRelease[] = [ { @@ -71,6 +72,11 @@ const Changelog: React.FC = () => { page: currentPage, defaultOpen: true, }, + { + version: "v0.20.2", + date: "2023-04-08", + page: V0200, + }, { version: "v0.19.1", date: "2023-02-21", diff --git a/ui/v2.5/src/docs/en/Changelog/v0210.md b/ui/v2.5/src/docs/en/Changelog/v0210.md new file mode 100644 index 000000000..a44dd5f04 --- /dev/null +++ b/ui/v2.5/src/docs/en/Changelog/v0210.md @@ -0,0 +1,13 @@ +### ✨ New Features +* Added distance parameter to phash filter. ([#3596](https://github.com/stashapp/stash/pull/3596)) + +### 🎨 Improvements +* Changed source selector menu to require click instead of mouseover. ([#3578](https://github.com/stashapp/stash/pull/3578)) +* Updated default studio icon to be consistent with other icons. ([#3577](https://github.com/stashapp/stash/pull/3577)) +* Make cards use up the full width of the screen on mobile. ([#3576](https://github.com/stashapp/stash/pull/3576)) +* Log errors when a graphql request fails. ([#3562](https://github.com/stashapp/stash/pull/3562)) +* Use case insensitive sorting for text based sorting. ([#3560](https://github.com/stashapp/stash/pull/3560)) +* Default date sorting in descending order. ([#3560](https://github.com/stashapp/stash/pull/3560)) + +### 🐛 Bug fixes +* Fixed incorrect Twitter/Instagram URLs sent to stash-box. ([#3579](https://github.com/stashapp/stash/pull/3579))