Add v0230 changelog (#4183)

This commit is contained in:
WithoutPants 2023-10-09 14:40:03 +11:00 committed by GitHub
parent 65fa81b6be
commit b5117fd67b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 30 additions and 2 deletions

View file

@ -27,6 +27,7 @@ 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 V0230 from "src/docs/en/Changelog/v0230.md";
import { MarkdownPage } from "../Shared/MarkdownPage";
const Changelog: React.FC = () => {
@ -62,9 +63,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.22.0";
const currentVersion = stashVersion || "v0.23.0";
const currentDate = buildDate;
const currentPage = V0220;
const currentPage = V0230;
const releases: IStashRelease[] = [
{
@ -73,6 +74,11 @@ const Changelog: React.FC = () => {
page: currentPage,
defaultOpen: true,
},
{
version: "v0.22.1",
date: "2023-08-21",
page: V0220,
},
{
version: "v0.21.0",
date: "2023-06-13",

View file

@ -0,0 +1,22 @@
### ✨ New Features
* Added hoverable control at the bottom edge of the scene preview to scrub through the scene. ([#4022](https://github.com/stashapp/stash/pull/4022))
* Added support for multiple URLs for Images and Galleries. ([#4000](https://github.com/stashapp/stash/pull/4000)/[#4114](https://github.com/stashapp/stash/pull/4114))
* Added option to mark scene as Organized when saving a scene in the Tagger view. ([#4031](https://github.com/stashapp/stash/pull/4031))
* Added A/B looping support to the scene player. ([#3904](https://github.com/stashapp/stash/pull/3904))
* Added new selection options to the Duplicate Checker. ([#4006](https://github.com/stashapp/stash/pull/4006))
### 🎨 Improvements
* Movies scraped from the scene scrape dialog can now create full movies. ([#4147](https://github.com/stashapp/stash/pull/4147))
* Improved the lightbox behaviour when using a touchpad or mouse with a smooth wheel. ([#3894](https://github.com/stashapp/stash/pull/3894))
* Refactored Performer select control to be more performant and to show relevant aliases. ([#4013](https://github.com/stashapp/stash/pull/4013))
* Made x button on filter badges easier to click. ([#4029](https://github.com/stashapp/stash/pull/4029))
* Details pages now show the first populated content tab when loaded. ([#4032](https://github.com/stashapp/stash/pull/4032))
* Refactored the Saved Filter format. ([#4054](https://github.com/stashapp/stash/pull/4054))
### 🐛 Bug fixes
* Fixed data corruption that occurred when stash detected a folder had been moved. ([#4169](https://github.com/stashapp/stash/pull/4169))
* Convert movie duration from seconds during scrape if provided as a number. ([#4144](https://github.com/stashapp/stash/pull/4144))
* Fixed image clip videos not autoplaying when a page is first loaded. ([#4131](https://github.com/stashapp/stash/pull/4131))
* Fixed display of cards on the front page on mobile devices. ([#4057](https://github.com/stashapp/stash/pull/4057))
* Fixed nil pointer dereference when merging scenes. ([#4119](https://github.com/stashapp/stash/pull/4119))
* Fixed nil pointer dereference when identifying scenes. ([#4171](https://github.com/stashapp/stash/pull/4171))