[Feature] Delete/Null Scene Fields but keep the Scenes
Is your feature request related to a problem? Please describe. If you let a scrapper write to the scene fields and the scene fields are completely wrong, it is a pain to manually update each field. Deleting all scenes is the only UI option. There is an ability to edit multiple scenes at once but not a way clear the Title, Studio Code, Date, Director, Details, and URL that can be overwritten by a scrapper identification task.
Describe the solution you'd like Have a way to cleanup a scrapper's mistakes.
- Option 1: Update the Edit Multiple Scenes modal to include an option to Remove Title, Studio Code, Date, Director, Details, and/or URL.
- Option 2: Include a Purge Scene Metadata button under Tasks
- Option 3: Include an option for the "Identifying all Scenes." task to create a backup of the database before the task starts
Describe alternatives you've considered You can connect to the sqlite database to NULL out all fields.
UPDATE scenes
SET title = NULL, details = NULL, url = NULL, date = NULL, studio_id = NULL, code = NULL, director = NULL;
Alternatively or a complimentary location for this would be the menu activated by the overflow button when multiple scenes are selected.
Since this is a destructive task it should initiate a modal confirmation window.
This duplicate FR https://github.com/stashapp/stash/issues/5276 I created (because I forgot) a year later has a better modal concept...
@echo6ix I'm assuming this means that there's not currently a way to clear all playback history?
This issue has been mentioned on Stash. There might be relevant details there:
https://discourse.stashapp.cc/t/interest-in-a-remove-wipe-metadata-option/4944/2