Skip to content

Commit c6a2e79

Browse files
authored
Ps executeAsModal page update (#470)
* Fix the uxp-documentation reference in package.json. * Imaging API typo fix * Update and edit executeAsModal page. * Changes based on feedback and review. Convert a couple of lists to tables. Move progress bar block down.
1 parent 711283d commit c6a2e79

File tree

6 files changed

+183
-123
lines changed

6 files changed

+183
-123
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "uxp-photoshop-documentation",
4-
"version": "0.1.22",
4+
"version": "0.1.23",
55
"license": "Apache-2.0",
66
"repository": {
77
"type": "git",
@@ -12,7 +12,7 @@
1212
"gatsby": "4.22.0",
1313
"react": "^17.0.2",
1414
"react-dom": "^17.0.2",
15-
"uxp-documentation": "git://github.com/adobedocs/uxp#v7.4.0"
15+
"uxp-documentation": "github:adobedocs/uxp#v7.4.0"
1616
},
1717
"scripts": {
1818
"start": "gatsby build && gatsby serve",

src/pages/ps_reference/changelog/index.md

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,25 @@ contributors:
77
---
88

99
# Photoshop API Changelog
10+
## Photoshop Beta 25.10 (May 2024)
11+
`timeOut` option added to [`executeAsModal`](../media/executeasmodal/#options-parameter). Also, the error message returned on a modal request collision was updated to include the id of the plugin that initiated the existing modal state.
1012

1113
## Photoshop Beta 25.5 (February 2024)
1214

1315
### UXP v7.4 Integration
16+
> #### Updated
17+
> - UXP Alerts ([alert](../../uxp-api/reference-js/Global%20Members/HTML%20DOM/alert.md), [prompt](../../uxp-api/reference-js/Global%20Members/HTML%20DOM/prompt.md), [confirm](../../uxp-api/reference-js/Global%20Members/HTML%20DOM/confirm.md)) have been moved back to beta due to a few inherent instabilities in this feature. While we work on addressing these issues, the feature can be accessed using the feature flag `enableAlerts` in the manifest.json file. Also, note that UXP alerts will be `available only in Plugins` and `not in scripts`.
18+
> - Wildcards (*) at the top-level `domain` name are not allowed. Please ensure you revisit the `permissions` setup in manifest.json for [WebView](../../uxp-api/reference-js/Global%20Members/HTML%20Elements/HTMLWebViewElement.md), and network calls ([XMLHttp](../../uxp-api/reference-js/Global%20Members/Data%20Transfers/XMLHttpRequest.md), [fetch](../../uxp-api/reference-js/Global%20Members/Data%20Transfers/fetch.md))
19+
> - New doc for tracking the [mapping between Spectrum widgets and Spectrum Web Components](../../uxp-api/reference-spectrum/spectrum-widgets-to-swc-mapping/index.md) in UXP
20+
>
21+
>
22+
> #### Fixed
23+
> - XMP now works in UXP Scripts.
24+
> - Plugin crashes while using [fit-content](https://forums.creativeclouddeveloper.com/t/ps-2024-crashes-when-opening-my-uxp-plugin/6840/7)
25+
> - WebView support for [file selector](https://forums.creativeclouddeveloper.com/t/macos-uxp-webview-for-photoshop-is-missing-file-selector/6843) in MacOS
26+
> - GUID returning hashed empty string
27+
> - Updated missing docs for pseudo-class [defined](../../uxp-api/reference-css/Pseudo-classes/defined.md) (Available since UXP v6.0)
1428
15-
#### Updated
16-
- UXP Alerts ([alert](../../uxp-api/reference-js/Global%20Members/HTML%20DOM/alert.md), [prompt](../../uxp-api/reference-js/Global%20Members/HTML%20DOM/prompt.md), [confirm](../../uxp-api/reference-js/Global%20Members/HTML%20DOM/confirm.md)) have been moved back to beta due to a few inherent instabilities in this feature. While we work on addressing these issues, the feature can be accessed using the feature flag `enableAlerts` in the manifest.json file. Also, note that UXP alerts will be `available only in Plugins` and `not in scripts`.
17-
- Wildcards (*) at the top-level `domain` name are not allowed. Please ensure you revisit the `permissions` setup in manifest.json for [WebView](../../uxp-api/reference-js/Global%20Members/HTML%20Elements/HTMLWebViewElement.md), and network calls ([XMLHttp](../../uxp-api/reference-js/Global%20Members/Data%20Transfers/XMLHttpRequest.md), [fetch](../../uxp-api/reference-js/Global%20Members/Data%20Transfers/fetch.md))
18-
- New doc for tracking the [mapping between Spectrum widgets and Spectrum Web Components](../../uxp-api/reference-spectrum/spectrum-widgets-to-swc-mapping/index.md) in UXP
19-
20-
21-
#### Fixed
22-
- XMP now works in UXP Scripts.
23-
- Plugin crashes while using [fit-content](https://forums.creativeclouddeveloper.com/t/ps-2024-crashes-when-opening-my-uxp-plugin/6840/7)
24-
- WebView support for [file selector](https://forums.creativeclouddeveloper.com/t/macos-uxp-webview-for-photoshop-is-missing-file-selector/6843) in MacOS
25-
- GUID returning hashed empty string
26-
- Updated missing docs for pseudo-class [defined](../../uxp-api/reference-css/Pseudo-classes/defined.md) (Available since UXP v6.0)
2729

2830

2931
## Photoshop Beta 25.2 (October 2023)
@@ -471,7 +473,7 @@ It is now possible to use the Photoshop Actions panel to help build your plugin.
471473
This event is generated when Photoshop detects that a user becomes idle, while Photoshop is the foreground application. A plugin must specify a number of idle seconds, and then may choose to batch process-intensive tasks. See [photoshopCore](../media/photoshopcore/).
472474
473475
### Interactive Mode for executeAsModal
474-
As an alterative to a UI-blocking progress bar when a plugin is within a Modal Execution scope, `interactiveMode` can be requested to allow for user interaction in specific circumstances. See [Interactive Mode](../media/executeasmodal#interactive-mode/).
476+
As an alternative to a UI-blocking progress bar when a plugin is within a Modal Execution scope, `interactiveMode` can be requested to allow for user interaction in specific circumstances. See [Interactive Mode](../media/executeasmodal/#interactive-mode).
475477
476478
----
477479
## Photoshop 23.2 (February 2022)

0 commit comments

Comments
 (0)