Add generated image actions to finder

This commit is contained in:
somebody
2022-11-27 19:41:05 -06:00
parent 7028da9905
commit 089aa476c1

View File

@@ -79,6 +79,11 @@ var finder_actions = [
{name: "Download Story", icon: "file_download", type: "action", func: function() { document.getElementById('download_iframe').src = 'json'; }}, {name: "Download Story", icon: "file_download", type: "action", func: function() { document.getElementById('download_iframe').src = 'json'; }},
{name: "Import Story", icon: "file_download", desc: "Import a prompt from aetherroom.club, formerly prompts.aidg.club", type: "action", func: openClubImport }, {name: "Import Story", icon: "file_download", desc: "Import a prompt from aetherroom.club, formerly prompts.aidg.club", type: "action", func: openClubImport },
// Imggen
{name: "Download Generated Image", icon: "file_download", type: "action", func: imgGenDownload},
{name: "View Generated Image", icon: "image", type: "action", func: imgGenView},
{name: "Clear Generated Image", icon: "image_not_supported", type: "action", func: imgGenClear},
// Locations // Locations
{name: "Setting Presets", icon: "open_in_new", type: "location", func: function() { highlightEl(".var_sync_model_selected_preset") }}, {name: "Setting Presets", icon: "open_in_new", type: "location", func: function() { highlightEl(".var_sync_model_selected_preset") }},
{name: "Memory", icon: "open_in_new", type: "location", func: function() { highlightEl("#memory") }}, {name: "Memory", icon: "open_in_new", type: "location", func: function() { highlightEl("#memory") }},