From a2432ac912946a2c099302eb0137945b86fb2aed Mon Sep 17 00:00:00 2001 From: WithoutPants <53250216+WithoutPants@users.noreply.github.com> Date: Mon, 9 Oct 2023 14:40:03 +1100 Subject: [PATCH] Add v0230 changelog (#4183) --- .../src/components/Changelog/Changelog.tsx | 10 +++++++-- ui/v2.5/src/docs/en/Changelog/v0230.md | 22 +++++++++++++++++++ 2 files changed, 30 insertions(+), 2 deletions(-) create mode 100644 ui/v2.5/src/docs/en/Changelog/v0230.md diff --git a/ui/v2.5/src/components/Changelog/Changelog.tsx b/ui/v2.5/src/components/Changelog/Changelog.tsx index 0bdb79c90bb..cc9756af67a 100644 --- a/ui/v2.5/src/components/Changelog/Changelog.tsx +++ b/ui/v2.5/src/components/Changelog/Changelog.tsx @@ -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", diff --git a/ui/v2.5/src/docs/en/Changelog/v0230.md b/ui/v2.5/src/docs/en/Changelog/v0230.md new file mode 100644 index 00000000000..3534d259fa5 --- /dev/null +++ b/ui/v2.5/src/docs/en/Changelog/v0230.md @@ -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)) \ No newline at end of file