Skip to content

Commit

Permalink
1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zombieyang committed Oct 3, 2024
1 parent fc1dbfa commit 316c756
Show file tree
Hide file tree
Showing 13 changed files with 549 additions and 1,489 deletions.
9 changes: 9 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## [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
3. optimize: getLinkedLayer and getLayersInGroup now support filtering (text, image, first)
4. optimize: optimize the speed of image transmission
5. new feature: support multiple photoshop connections at the same time, now you can share a comfyUI with multiple people and multiple photoshop
6. new feature: getDocument node adds a save `.psd` function. You can save the current selected psd into the workflow for sharing. Others can open the workflow and directly select the imported psd in the getDocument node (if you need to clear the saved psd in the workflow, right-click the node->properties panel->delete the content in the psd box)
7. new feature: wide screen mode, click the menu icon in the upper right corner of the panel to enter WideMode, you can directly edit the workflow in Photoshop. (May not work in some MacOS)

## [1.3.1] - 2024-09-10
1. feature: zh-cn support
2. fix: support for 16bit colored layer.
Expand Down
2 changes: 1 addition & 1 deletion javascript/entries/a1111-entry.mjs

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions javascript/entries/a1111-entry.mjs.LICENSE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,9 @@
* (c) 2014-2023 Guillermo Rauch
* Released under the MIT License.
*/

/*!
* https://github.com/Starcounter-Jack/JSON-Patch
* (c) 2017-2021 Joachim Wester
* MIT license
*/
2 changes: 1 addition & 1 deletion javascript/entries/comfy-entry.js

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions javascript/entries/comfy-entry.js.LICENSE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,15 @@
* (c) 2014-2023 Guillermo Rauch
* Released under the MIT License.
*/

/*!
* https://github.com/Starcounter-Jack/JSON-Patch
* (c) 2017-2021 Joachim Wester
* MIT license
*/

/*!
* https://github.com/Starcounter-Jack/JSON-Patch
* (c) 2017-2022 Joachim Wester
* MIT licensed
*/
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.3.1",
"version": "1.4.0",
"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
1,648 changes: 202 additions & 1,446 deletions photoshop/dist/index.js

Large diffs are not rendered by default.

33 changes: 13 additions & 20 deletions photoshop/dist/manifest.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
{
"id": "sd-ppp",
"name": "SD-PPP",
"version": "1.3.1",
"version": "1.4.0",
"main": "index.html",
"manifestVersion": 5,
"host": {
"app": "PS",
"minVersion": "24.4.0"
},
"featureFlags": {
"enableAlerts": true
},
"requiredPermissions": {
"enableUserInfo": true,
"enableUserInfo": true,
"network": {
"domains": "all"
"domains": "all"
},
"allowCodeGenerationFromStrings": true,
"launchProcess": {
Expand All @@ -26,9 +29,8 @@
},
"webview": {
"allow": "yes",
"domains": [
"https://*.adobe.com"
]
"domains": "all",
"enableMessageBridge": "localAndRemote"
}
},
"entrypoints": [
Expand All @@ -40,28 +42,19 @@
},
"minimumSize": {
"width": 300,
"height": 160
"height": 100
},
"maximumSize": {
<<<<<<< HEAD
"width": 300,
"height": 500
=======
"width": 400,
"height": 160
>>>>>>> tl/develop_sio_multi_user
"width": 1280,
"height": 960
},
"preferredDockedSize": {
"width": 300,
"height": 160
"height": 100
},
"preferredFloatingSize": {
"width": 300,
<<<<<<< HEAD
"height": 500
=======
"height": 160
>>>>>>> tl/develop_sio_multi_user
"height": 200
},
"icons": [
{
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.3.1",
"version": "1.4.0",
"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.

Loading

0 comments on commit 316c756

Please sign in to comment.