mirror of
https://github.com/stashapp/stash.git
synced 2025-12-07 00:43:12 +01:00
Add 0.21 changelog (#3668)
This commit is contained in:
parent
b85c5d928a
commit
2cf73ded83
2 changed files with 21 additions and 2 deletions
|
|
@ -25,6 +25,7 @@ import V0170 from "src/docs/en/Changelog/v0170.md";
|
||||||
import V0180 from "src/docs/en/Changelog/v0180.md";
|
import V0180 from "src/docs/en/Changelog/v0180.md";
|
||||||
import V0190 from "src/docs/en/Changelog/v0190.md";
|
import V0190 from "src/docs/en/Changelog/v0190.md";
|
||||||
import V0200 from "src/docs/en/Changelog/v0200.md";
|
import V0200 from "src/docs/en/Changelog/v0200.md";
|
||||||
|
import V0210 from "src/docs/en/Changelog/v0210.md";
|
||||||
import { MarkdownPage } from "../Shared/MarkdownPage";
|
import { MarkdownPage } from "../Shared/MarkdownPage";
|
||||||
|
|
||||||
const Changelog: React.FC = () => {
|
const Changelog: React.FC = () => {
|
||||||
|
|
@ -60,9 +61,9 @@ const Changelog: React.FC = () => {
|
||||||
// after new release:
|
// after new release:
|
||||||
// add entry to releases, using the current* fields
|
// add entry to releases, using the current* fields
|
||||||
// then update the current fields.
|
// then update the current fields.
|
||||||
const currentVersion = stashVersion || "v0.20.0";
|
const currentVersion = stashVersion || "v0.21.0";
|
||||||
const currentDate = buildDate;
|
const currentDate = buildDate;
|
||||||
const currentPage = V0200;
|
const currentPage = V0210;
|
||||||
|
|
||||||
const releases: IStashRelease[] = [
|
const releases: IStashRelease[] = [
|
||||||
{
|
{
|
||||||
|
|
@ -71,6 +72,11 @@ const Changelog: React.FC = () => {
|
||||||
page: currentPage,
|
page: currentPage,
|
||||||
defaultOpen: true,
|
defaultOpen: true,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
version: "v0.20.2",
|
||||||
|
date: "2023-04-08",
|
||||||
|
page: V0200,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
version: "v0.19.1",
|
version: "v0.19.1",
|
||||||
date: "2023-02-21",
|
date: "2023-02-21",
|
||||||
|
|
|
||||||
13
ui/v2.5/src/docs/en/Changelog/v0210.md
Normal file
13
ui/v2.5/src/docs/en/Changelog/v0210.md
Normal 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))
|
||||||
Loading…
Reference in a new issue