Compare commits

...

4 Commits

Author SHA1 Message Date
WithoutPants
479e716385 Update changelog for bugfix release 2023-10-14 10:46:49 +11:00
WithoutPants
06c9d6f554 Fix performer select not working correctly in scrape dialog (#4199) 2023-10-13 15:43:23 +11:00
RPaetau
1f0f5eb49c slideshow delay default values changed from 5000 to 5 seconds (#4186)
* Update Lightbox.tsx to also change default delay here to 5 sec instead of 5000
* Update config.go to set default slideshow delay from 5000 sec to 5 sec
2023-10-10 14:22:39 +11:00
Emilo2
c109a58231 Fix gallery url scraping (#4187) 2023-10-10 14:08:48 +11:00
5 changed files with 9 additions and 5 deletions

View File

@@ -184,7 +184,7 @@ const (
UI = "ui"
defaultImageLightboxSlideshowDelay = 5000
defaultImageLightboxSlideshowDelay = 5
DisableDropdownCreatePerformer = "disable_dropdown_create.performer"
DisableDropdownCreateStudio = "disable_dropdown_create.studio"

View File

@@ -303,7 +303,7 @@ export const GalleryEditPanel: React.FC<IProps> = ({
}
if (galleryData.urls) {
formik.setFieldValue("url", galleryData.urls);
formik.setFieldValue("urls", galleryData.urls);
}
if (galleryData.studio?.stored_id) {

View File

@@ -151,7 +151,8 @@ export const ScrapedPerformersRow: React.FC<
isDisabled={!isNew}
onSelect={(items) => {
if (onChangeFn) {
onChangeFn(items);
// map the id back to stored_id
onChangeFn(items.map((p) => ({ ...p, stored_id: p.id })));
}
}}
values={selectValue}

View File

@@ -14,9 +14,12 @@
* Refactored the Saved Filter format. ([#4054](https://github.com/stashapp/stash/pull/4054))
### 🐛 Bug fixes
* **[0.23.1]** Fixed Performers not being set correctly from the Scene scrape dialog. ([#4199](https://github.com/stashapp/stash/pull/4199))
* **[0.23.1]** Fixed Gallery URLs not being set correctly from the scrape dialog. ([#4187](https://github.com/stashapp/stash/pull/4187))
* **[0.23.1]** Fixed default slideshow delay value. ([#4186](https://github.com/stashapp/stash/pull/4186))
* 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))
* Fixed nil pointer dereference when identifying scenes. ([#4171](https://github.com/stashapp/stash/pull/4171))

View File

@@ -70,7 +70,7 @@ const CLASSNAME_NAV = `${CLASSNAME}-nav`;
const CLASSNAME_NAVIMAGE = `${CLASSNAME_NAV}-image`;
const CLASSNAME_NAVSELECTED = `${CLASSNAME_NAV}-selected`;
const DEFAULT_SLIDESHOW_DELAY = 5000;
const DEFAULT_SLIDESHOW_DELAY = 5;
const SECONDS_TO_MS = 1000;
const MIN_VALID_INTERVAL_SECONDS = 1;
const MIN_ZOOM = 0.1;