mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 12:54:38 +03:00
Fix deleting folder-based gallery file deleting (#1872)
* Fix deleting gallery image files * Clarify delete file documentation
This commit is contained in:
@@ -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))
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user