diff --git a/ui/v2.5/src/components/Changelog/Changelog.tsx b/ui/v2.5/src/components/Changelog/Changelog.tsx index cc9756af6..d08fda112 100644 --- a/ui/v2.5/src/components/Changelog/Changelog.tsx +++ b/ui/v2.5/src/components/Changelog/Changelog.tsx @@ -28,6 +28,7 @@ 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 V0240 from "src/docs/en/Changelog/v0240.md"; import { MarkdownPage } from "../Shared/MarkdownPage"; const Changelog: React.FC = () => { @@ -63,9 +64,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.23.0"; + const currentVersion = stashVersion || "v0.24.0"; const currentDate = buildDate; - const currentPage = V0230; + const currentPage = V0240; const releases: IStashRelease[] = [ { @@ -74,6 +75,11 @@ const Changelog: React.FC = () => { page: currentPage, defaultOpen: true, }, + { + version: "v0.23.1", + date: "2023-10-14", + page: V0230, + }, { version: "v0.22.1", date: "2023-08-21", diff --git a/ui/v2.5/src/docs/en/Changelog/v0240.md b/ui/v2.5/src/docs/en/Changelog/v0240.md new file mode 100644 index 000000000..49eba4874 --- /dev/null +++ b/ui/v2.5/src/docs/en/Changelog/v0240.md @@ -0,0 +1,33 @@ +### ✨ New Features +* Added manager for installing, updating and uninstalling scrapers and plugins. ([#4242](https://github.com/stashapp/stash/pull/4242)) +* Added support for enabling and disabling plugins in the UI. ([#4141](https://github.com/stashapp/stash/pull/4141)) +* Added support for plugin settings. ([#4143](https://github.com/stashapp/stash/pull/4143)) +* Added support for plugin assets, external scripts and CSP overrides. ([#4260](https://github.com/stashapp/stash/pull/4260)) +* Added UI plugin API to better support UI-based plugins. ([#4256](https://github.com/stashapp/stash/pull/4256)) +* Added Studio Code and Photographer to Galleries. ([#4195](https://github.com/stashapp/stash/pull/4195)) +* Added Details, Studio Code and Photographer to Images. ([#4217](https://github.com/stashapp/stash/pull/4217)) +* Added scene framerate filter. ([#4161](https://github.com/stashapp/stash/pull/4161)) +* Added option to Duplicate Checker to select all files except the highest resolution. ([#4286](https://github.com/stashapp/stash/pull/4286)) + +### 🎨 Improvements +* Show Performer image in Performer select list. ([#4227](https://github.com/stashapp/stash/pull/4227)) +* Match Performers by alias during scraping and tagging if no Performer is found with the exact name (only if a single performer is found with the alias). ([#4182](https://github.com/stashapp/stash/pull/4182)) +* Show Performer disambiguation and add stash-box links to Studio in tagger results. ([#4180](https://github.com/stashapp/stash/pull/4180)) +* Show endpoints with stash ids. ([#4216](https://github.com/stashapp/stash/pull/4216)) +* Load card thumbnails and similar images lazily when a component comes into view, instead of all at once. ([#4228](https://github.com/stashapp/stash/pull/4228)) +* Made the random sorting more random. ([#4246](https://github.com/stashapp/stash/pull/4246)) +* Added more VR projection modes. ([#3799](https://github.com/stashapp/stash/pull/3799)) +* Improved the filtering behaviour when selecting a folder. ([#4277](https://github.com/stashapp/stash/pull/4277)) + +### 🐛 Bug fixes +* Fixed submitting to stash-box not working after switching to another scene using the queue. ([#4354](https://github.com/stashapp/stash/pull/4354)) +* Fixed UI crash when clearing a value from a URL or alias list. ([#4344](https://github.com/stashapp/stash/pull/4344)) +* Fixed panic when exporting galleries. ([#4311](https://github.com/stashapp/stash/pull/4311)) +* Fixed error when setting performer height with decimals. ([#4283](https://github.com/stashapp/stash/pull/4283)) +* Fixed Performer stash ids being overwritten instead of merged when saving a Performer in the Performer tagger. ([#4215](https://github.com/stashapp/stash/pull/4215)) +* Fixed organized being set to false if `Mark as Organized on save` is false when saving a scene in the tagger. ([#4213](https://github.com/stashapp/stash/pull/4213)) +* Fixed URLs not populating correctly when scraping galleries. ([#4206](https://github.com/stashapp/stash/pull/4206)) +* Fixed not being able to click next/previous scene if the applicable scenes had not been loaded by the queue. ([#4325](https://github.com/stashapp/stash/pull/4325)) +* Fixed desktop notifications not appearing on macos. ([#4153](https://github.com/stashapp/stash/pull/4153)) +* Fixed video sometimes pausing when clicking on the scene scrubber. ([#4295](https://github.com/stashapp/stash/pull/4295)) +* Fixed file paths not being shown when deleting image clips. ([#4323](https://github.com/stashapp/stash/pull/4323))