Add 0.21 changelog (#3668)

This commit is contained in:
WithoutPants 2023-04-17 16:37:19 +10:00 committed by GitHub
parent b85c5d928a
commit 2cf73ded83
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 2 deletions

View file

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

View file

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