Skip to content

Commit

Permalink
1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zombieyang committed Oct 20, 2024
1 parent 49d283f commit d9e90a2
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 16 deletions.
8 changes: 8 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## [1.4.1] - 2024-10-20
1. bugfix: data synchronous bug fix
2. bugfix: bugs when send image to PS with boundary
3. bugfix: layer order not correct after move.
4. feature: show ComfyUI queue size at the panel
5. feature: show a guide after ccx downloaded
6. feature: automatic reset document if not exists

## [1.4.0] - 2024-10-03
1. optimize: getImage node add only selection option, with lasso can only get the lasso area content. The original bounds parameter is now changed to only be able to connect lines, only used to control the square area, in general, need to limit the square work area, will need to connect the area to several nodes
2. optimize: getLayerByID node now automatically searches for new layers with the same name along the original path if the layer is deleted
Expand Down
2 changes: 1 addition & 1 deletion javascript/entries/a1111-entry.mjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion javascript/entries/comfy-entry.js

Large diffs are not rendered by default.

Binary file modified javascript/plugins/sd-ppp_PS.ccx
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sdppp",
"version": "1.4.0",
"version": "1.4.1",
"scripts": {
"watch": "cd typescripts/src && webpack -w -c webpack.config.js --mode development",
"build": "cd typescripts/src && NODE_ENV=production webpack -c webpack.config.js --mode production"
Expand Down
14 changes: 5 additions & 9 deletions photoshop/dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion photoshop/dist/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "sd-ppp",
"name": "SD-PPP",
"version": "1.4.0",
"version": "1.4.1",
"main": "index.html",
"manifestVersion": 5,
"host": {
Expand Down
2 changes: 1 addition & 1 deletion photoshop/plugin/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "sd-ppp",
"name": "SD-PPP",
"version": "1.4.0",
"version": "1.4.1",
"main": "index.html",
"manifestVersion": 5,
"host": {
Expand Down
2 changes: 1 addition & 1 deletion photoshop/src/system/system.mjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion sdppp_python/sdppp.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ async def connect(sid, environ):
qs = environ['QUERY_STRING']

qsobj = dict(x.split('=') for x in qs.split('&'))
if 'api_level' not in qsobj or qsobj['api_level'] != "409":
if 'api_level' not in qsobj or qsobj['api_level'] != "410":
raise socketio.exceptions.ConnectionRefusedError('version mismatch, please reinstall PS plugin')

@sio.event
Expand Down

0 comments on commit d9e90a2

Please sign in to comment.