• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
1

Photoshop CEP Upgrade to CEP 12.0.0.14

Adobe Employee ,
Aug 01, 2024 Aug 01, 2024

Copy link to clipboard

Copied

Hi PS developer community,

 

We're happy to announce the upgrade of CEP to CEP 12.0.0.14. 

 

This release of CEP v12 includes:
* Chromium version updated to CEF v99 (CEF 3 release branch 4844, Chromium 99.0.4844.84)
* Migration from OpenGL to Metal in Mac OS in CEP code
* Security vulnerability fixes by Chromium
* Node version updated to v17.7.1
* Critical bug fixes

 

This upgrade might impact developers or users relying on a CEP extension.

 

If you have any feedback, please let us know. 

 

CEP 12 Documentation can be found at https://github.com/Adobe-CEP/CEP-Resources/blob/CEP-12-Prerelease/CEP_12.x/Documentation/CEP%2012%20...

 

 

TOPICS
CEP , Scripting

Views

748

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Aug 02, 2024 Aug 02, 2024

Copy link to clipboard

Copied

Thanks @RachitGupta123 . Which version of Photoshop includes CEP 12?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Aug 02, 2024 Aug 02, 2024

Copy link to clipboard

Copied

Beta 25.12 as of 20240731.m.2719 currently available via the Creative Cloud Desktop app.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Aug 08, 2024 Aug 08, 2024

Copy link to clipboard

Copied

One more thing, is this only for Intel processors? That is to say, CEP is not available for Mac M1 or greater, right?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Aug 08, 2024 Aug 08, 2024

Copy link to clipboard

Copied

Yes, on Mac ARM, CEP is not available natively.  It remains available only by running Photoshop via Rosetta.
https://helpx.adobe.com/download-install/kb/apple-silicon-m1-chip.html

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Sep 18, 2024 Sep 18, 2024

Copy link to clipboard

Copied

LATEST

Hi @RachitGupta123 (CC: @erinferinferinf ),

 

We have encountered a WebSocket connection issue with the CEP plugin on Ps 25.12 (release) and Ps 25.13 (beta). However, Ps 25.11 is working fine.

 

This issue is related to our released product, and we suspect it might be related to the CEP 12 update. We would greatly appreciate any assistance with resolving this issue.

 

We have been using the WebSocket library from the following link, and updating to the latest version did not help: https://www.npmjs.com/package/websocket

 

Particular code snipped is following and caused: Error: connect ECONNREFUSED

 

var WebSocketClient = require('websocket').client;

wsocket = new WebSocketClient();
wsocket.connect('ws://localhost:12345', protocols=['json']);

wsocket.on('connectFailed', function(errorDescription) {
  console.log('connect failed: ' + errorDescription); // Error: connect ECONNREFUSED
});

 

 

The same code works fine on Ps 25.12. Additionally, the following case, without the JSON subprotocol specified, also works:

 

 

wsocket.connect('ws://localhost:12345'); // without protocol param

 

 

Thank you for your help,

Naoki

 

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines