Add v0.26.0 changelog (#4875)

This commit is contained in:
WithoutPants
2024-05-24 12:13:30 +10:00
committed by GitHub
parent c314515b8f
commit bf0e0f2210
2 changed files with 46 additions and 2 deletions

View File

@@ -30,6 +30,7 @@ import V0220 from "src/docs/en/Changelog/v0220.md";
import V0230 from "src/docs/en/Changelog/v0230.md"; import V0230 from "src/docs/en/Changelog/v0230.md";
import V0240 from "src/docs/en/Changelog/v0240.md"; import V0240 from "src/docs/en/Changelog/v0240.md";
import V0250 from "src/docs/en/Changelog/v0250.md"; import V0250 from "src/docs/en/Changelog/v0250.md";
import V0260 from "src/docs/en/Changelog/v0260.md";
import { MarkdownPage } from "../Shared/MarkdownPage"; import { MarkdownPage } from "../Shared/MarkdownPage";
const Changelog: React.FC = () => { const Changelog: React.FC = () => {
@@ -65,9 +66,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.25.0"; const currentVersion = stashVersion || "v0.26.0";
const currentDate = buildDate; const currentDate = buildDate;
const currentPage = V0250; const currentPage = V0260;
const releases: IStashRelease[] = [ const releases: IStashRelease[] = [
{ {
@@ -76,6 +77,11 @@ const Changelog: React.FC = () => {
page: currentPage, page: currentPage,
defaultOpen: true, defaultOpen: true,
}, },
{
version: "v0.25.1",
date: "2023-03-13",
page: V0250,
},
{ {
version: "v0.24.3", version: "v0.24.3",
date: "2023-01-15", date: "2023-01-15",

View File

@@ -0,0 +1,38 @@
##### 💥 Note: The `Enable Scene Play History` setting has been set to true for existing systems. This setting enables play counts and resuming scenes from where they were previously played. If you do not want this enabled, please disable it explicitly in `Settings -> Interface -> Scene Player -> Enable Scene Play History`.
### ✨ New Features
* Added support for favorite Tags and Studios. ([#4728](https://github.com/stashapp/stash/pull/4728), [#4675](https://github.com/stashapp/stash/pull/4675))
* Added filtering of scenes by galleries, bitrate and last played time. ([#4632](https://github.com/stashapp/stash/pull/4632), [#4713](https://github.com/stashapp/stash/pull/4713), [#4829](https://github.com/stashapp/stash/pull/4829))
* Added support for sorting Performers by Last O At, Last Played At, and Play Count. ([#4649](https://github.com/stashapp/stash/pull/4649))
* Added filtering of Performers by Play Count. ([#4649](https://github.com/stashapp/stash/pull/4649))
* Added support for configuring the DLNA port. ([#4836](https://github.com/stashapp/stash/pull/4836))
* Add support for filtering galleries by related scenes. ([#4840](https://github.com/stashapp/stash/pull/4840))
* FFMpeg and FFProbe paths can now be set in `Settings -> System`, and can also be downloaded from this screen. ([#4688](https://github.com/stashapp/stash/pull/4688))
### 🎨 Improvements
* Scan, Generate and Auto Tag options are now saved as they are changed. ([#4591](https://github.com/stashapp/stash/pull/4591))
* Made migration an asynchronous task. No more time outs during the migration process. ([#4666](https://github.com/stashapp/stash/pull/4666))
* FFMpeg is now downloaded using a task rather than automatically during setup. ([#4688](https://github.com/stashapp/stash/pull/4688))
* Moved the details toolbar in Scene, Image and Gallery pages to above the tabs, moved rating control to the toolbar, and added other details. ([#4714](https://github.com/stashapp/stash/pull/4714))
* Improved Scene, Movie and Gallery select controls. ([#4832](https://github.com/stashapp/stash/pull/4832), [#4851](https://github.com/stashapp/stash/pull/4851))
* When enabled, full hardware transcoding is used where possible. ([#4765](https://github.com/stashapp/stash/pull/4765))
* Made directors and photographers clickable links in detail view ([#4621](https://github.com/stashapp/stash/pull/4621))
* Redundant filter pills are no longer shown on filter sub-views. ([#4705](https://github.com/stashapp/stash/pull/4705))
* Enforce whitelist for sort values (CVE-2024-32231). ([#4865](https://github.com/stashapp/stash/pull/4865))
* Changed umask when creating config file to exclude user write (CVE-2024-32233) ([#4866](https://github.com/stashapp/stash/pull/4866))
### 🐛 Bug fixes
* Fix selected tagger search result being lost when creating objects. ([#4715](https://github.com/stashapp/stash/pull/4715))
* Fixed error when adding performer with duplicate aliases using the performer tagger. ([#4801](https://github.com/stashapp/stash/pull/4801))
* Fixed interactive speed being lost when file is moved. ([#4799](https://github.com/stashapp/stash/pull/4799))
* Fixed missing studio selector in movie scrape dialog. ([#4692](https://github.com/stashapp/stash/pull/4692))
* Fixed values being reset when changing mode in bulk edit dialog. ([#4854](https://github.com/stashapp/stash/pull/4854))
* Fixed python not being resolved correctly if not in path. ([#4864](https://github.com/stashapp/stash/pull/4864))
* Fixed scraped tag exclusions not applying to galleries and performers ([#4872](https://github.com/stashapp/stash/pull/4872))
* Fixed UI not loading on Safari 12. ([#4874](https://github.com/stashapp/stash/pull/4874))
* Include director field when adding movies from the scene scrape dialog. ([#4757](https://github.com/stashapp/stash/pull/4757))
* Fixed detail items not wrapping correctly. ([#4730](https://github.com/stashapp/stash/pull/4730))
* Fixed duplicate scene checker selection logic. ([#4800](https://github.com/stashapp/stash/pull/4800))
* Fixed video streams being reencoded unnecessarily. ([#4783](https://github.com/stashapp/stash/pull/4783))
* Improved support for Samsung SmartTV for built-in DLNA server ([#4784](https://github.com/stashapp/stash/pull/4784))
* Fixed incorrect status code for `ErrUnauthorized` errors. ([#4842](https://github.com/stashapp/stash/pull/4842))