You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-1
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,7 @@ With Auto-Photoshop-StableDiffusion-Plugin, you can directly use the capabilitie
26
26
- [prompt shortcut:](#prompt-shortcut)
27
27
- [Rule of thumbs:](#rule-of-thumbs)
28
28
-[FAQ and Known Issues](#faq-and-known-issues)
29
+
- [What Photoshop version do I need to run the plugin?](#what-photoshop-version-do-i-need-to-run-the-plugin)
29
30
- [Plugin Load Failed](#plugin-load-failed)
30
31
- [No application are connected to the service](#no-application-are-connected-to-the-service)
31
32
- [Load command failed in App with ID PS and Version X.X.X](#load-command-failed-in-app-with-id-ps-and-version-xxx)
@@ -162,6 +163,8 @@ as long as you have defined the relationsip in the prompt library tab
162
163
* Don't open multiple photoshop documents. For now, this will break the plugin. Only work on one project at a time.
163
164
164
165
# FAQ and Known Issues
166
+
## What Photoshop version do I need to run the plugin?
167
+
The minimum Photoshop version that the plugin supports is Photoshop v24
165
168
166
169
## Plugin Load Failed
167
170
There are a few issues that can result in this error, please follow the instructions for the corresponding error message in the UDT logs
@@ -170,7 +173,7 @@ There are a few issues that can result in this error, please follow the instruct
170
173
This error occurs when Photoshop is not started before the plugin is attempted to be loaded. Simply start photoshop then restart UXP and load the plugin
171
174
172
175
### Load command failed in App with ID PS and Version X.X.X
173
-
This error occurs when the version of Photoshop is mistmatched with the expected version of the plugin. This may be solved by editing the [manifest.json](manifest.json) file on line 8 to match your version of Photoshop.
176
+
This error occurs when the version of Photoshop is mistmatched with the expected version of the plugin. This may be solved by editing the [manifest.json](manifest.json) file on line 8 to match your version of Photoshop.
174
177
```
175
178
"host": [
176
179
{
@@ -179,6 +182,7 @@ This error occurs when the version of Photoshop is mistmatched with the expected
179
182
}
180
183
],
181
184
```
185
+
However, if you later upgraded your Photoshop to v24 or higher. you may need to change minVersion back to ```"minVersion": "24.0.0"``` for the plugin to function correctly.
182
186
183
187
## Exception in ASGI application / Expecting value: line 1 column 1
184
188
This error occurs due to mismatched expectations between the plugin and the Automatic1111 backend.
The save function is batchPlay. This is the only way I found to control the compression type. I could get the DOM to save as PNG. However, I could never get it to control the compressions type for PNG. That may be possible with the DOM but not documented... not sure.
138
+
139
+
For the save function, if running UXP AP1 version 1 then use "wait" for modalBehavior. This was a workaround for a PS bug that was causing issues with "fail".
140
+
141
+
If running on UXP API version 2 then use "execute" for modalBahavior, or remove the options and use {} so the options go to default.
0 commit comments