Fix deleting folder-based gallery file deleting (#1872)

* Fix deleting gallery image files
* Clarify delete file documentation
This commit is contained in:
WithoutPants
2021-10-25 09:29:03 +11:00
committed by GitHub
parent 0ab8d32687
commit d292ed0b34
5 changed files with 17 additions and 6 deletions

View File

@@ -11,6 +11,7 @@
* Optimised scanning process. ([#1816](https://github.com/stashapp/stash/pull/1816))
### 🐛 Bug fixes
* Fix image files in folder galleries not being deleting when delete file option is checked. ([#1872](https://github.com/stashapp/stash/pull/1872))
* Fix marker generation task reading video files unnecessarily. ([#1871](https://github.com/stashapp/stash/pull/1871))
* Fix accessing Stash via IPv6 link local address causing security tripwire to be activated. ([#1841](https://github.com/stashapp/stash/pull/1841))
* Fix Twitter value defaulting to freeones in built-in Freeones scraper. ([#1853](https://github.com/stashapp/stash/pull/1853))

View File

@@ -82,7 +82,9 @@ export const DeleteGalleriesDialog: React.FC<IDeleteGalleryDialogProps> = (
<Form.Check
id="delete-file"
checked={deleteFile}
label="Delete zip file and any images not attached to any other gallery."
label={intl.formatMessage({
id: "actions.delete_gallery_files",
})}
onChange={() => setDeleteFile(!deleteFile)}
/>
<Form.Check

View File

@@ -21,6 +21,7 @@
"create_marker": "Create Marker",
"created_entity": "Created {entity_type}: {entity_name}",
"delete": "Delete",
"delete_gallery_files": "Delete gallery folder/zip file and any images not attached to any other gallery.",
"delete_entity": "Delete {entityType}",
"delete_file": "Delete file",
"delete_generated_supporting_files": "Delete generated supporting files",