From ad361503f5c10f9e17358f2f5dc74ba0649729c2 Mon Sep 17 00:00:00 2001 From: Jaroslav Bereza <13526959+jardicc@users.noreply.github.com> Date: Sat, 24 Oct 2020 17:05:36 +0200 Subject: [PATCH 1/4] Update readme.md --- readme.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index dd9f13c..ad86de0 100644 --- a/readme.md +++ b/readme.md @@ -2,6 +2,8 @@ Listens all (most of) Photoshop events. Something like actions panel in Photoshop but for scripting. Or ScriptListener plugin for ExtendScript but in panel. Also can inspect PS DOM and show PS AM descriptors from various places. +![alt Plugin screenshot](md_images/screen.png) + ## Disclaimer You are using this software at your own risk. Possibly Photoshop could crash if you ask Photoshop to do something unusual via Alchemist. So just save your work if you are concerned. @@ -14,10 +16,10 @@ In Photoshop enable Developer Mode `PS > Edit > Preferences > Plugins > Enable D Install "Adobe UXP Developer Tool" if not already installed. (Get it here: https://www.adobe.io/photoshop/uxp/devtool/#download ) Click add plugin button. And open `dist\manifest.json` in dialog. Then click "load" in actions. -## Even quicker usage - Marketplace version (Not prefered) +## Even quicker usage - Marketplace version (Not preferred) Download `installer/2bcdb900.ccx` installer file in https://github.com/jardicc/alchemist/raw/master/installer/2bcdb900.ccx And double click file in file explorer. -## Quickest usage - Marketplace version (Not prefered) +## Quickest usage - Marketplace version (Not preferred) You just click the button to add plugin automatically in Photoshop from Marketplace https://adobe.com/go/cc_plugins_discover_plugin?pluginId=2bcdb900&workflow=share ## Panel Entrypoints From bd61e9a5fdb90dc2ed003c44da940d3712dbb671 Mon Sep 17 00:00:00 2001 From: Jaroslav Bereza <13526959+jardicc@users.noreply.github.com> Date: Sat, 24 Oct 2020 17:06:17 +0200 Subject: [PATCH 2/4] Update readme.md --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index ad86de0..1d3e948 100644 --- a/readme.md +++ b/readme.md @@ -10,7 +10,7 @@ You are using this software at your own risk. Possibly Photoshop could crash if ## Difference between Marketplace and Development version Feature to listen to all Photoshop events is available only in Development version. This is intentionally forbidden by Adobe in Production version of plugin. Alchemist tries to listen to as many events as possible but it might perform badly. If you don't need Listener then it doesn't matter which version you will use. -## Quick usage - Development version (Recomended) +## Quick usage - Development version (Recommended) In Photoshop enable Developer Mode `PS > Edit > Preferences > Plugins > Enable Developer Mode`. Install "Adobe UXP Developer Tool" if not already installed. (Get it here: https://www.adobe.io/photoshop/uxp/devtool/#download ) From 1f8f451b55163894d70f52e385cd66881e18d22e Mon Sep 17 00:00:00 2001 From: Jaroslav Bereza <13526959+jardicc@users.noreply.github.com> Date: Sun, 8 Nov 2020 18:51:25 +0100 Subject: [PATCH 3/4] Adds credit --- readme.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/readme.md b/readme.md index 1d3e948..2c542c5 100644 --- a/readme.md +++ b/readme.md @@ -59,3 +59,9 @@ Load plugin as described above in quick usage section. ## Debugging In "Adobe UXP Developer Tool" click actions triple dot and click debug. + +## Credits + +- Plugin icon and logo: Petr Štefek - https://twitter.com/phobik +- Original inspiration and some derived components: https://github.com/zalmoxisus/redux-devtools-extension +- JSONViewer Component - Dave Vedder http://www.eskimospy.com/ From b2549fe1477911705a440d076410019e34686126 Mon Sep 17 00:00:00 2001 From: Jaroslav Bereza <13526959+jardicc@users.noreply.github.com> Date: Thu, 31 Dec 2020 14:03:07 +0100 Subject: [PATCH 4/4] Update readme.md Adds link to videos --- readme.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/readme.md b/readme.md index 2c542c5..73e4323 100644 --- a/readme.md +++ b/readme.md @@ -2,6 +2,12 @@ Listens all (most of) Photoshop events. Something like actions panel in Photoshop but for scripting. Or ScriptListener plugin for ExtendScript but in panel. Also can inspect PS DOM and show PS AM descriptors from various places. +Videos on how to use it from Davide Barranca series about UXP: +- #7 BatchPlay (part 2): the Alchemist listener https://www.youtube.com/watch?v=aZn_6X6nvUM +- #8 BatchPlay (part 3): the Alchemist inspector https://www.youtube.com/watch?v=qDw3mdGAG2o + +(I highly recommend you to check the whole series) + ![alt Plugin screenshot](md_images/screen.png) ## Disclaimer