diff --git a/website/docs/assets/Tableau_shortcut_debug2.png b/website/docs/assets/Tableau_shortcut_debug2.png
new file mode 100644
index 00000000..0fcc91ed
Binary files /dev/null and b/website/docs/assets/Tableau_shortcut_debug2.png differ
diff --git a/website/docs/debug/trex_debugging.md b/website/docs/debug/trex_debugging.md
index 4e4f2e41..0d52c29f 100644
--- a/website/docs/debug/trex_debugging.md
+++ b/website/docs/debug/trex_debugging.md
@@ -44,15 +44,14 @@ Latest maintenance release of 2020.2.7+, 2020.3.6+, 2020.4.2+ | 87.0.4280 | Chro
## Start Tableau Desktop and enable debugging (Windows)
-
-1. Exit Tableau if it is already running on your computer.
+1. Exit Tableau if it is already running on your computer.
2. Open a Command Prompt window.
2. Start Tableau using the following command.
Replace `` with the version of Tableau you are using (for example, `Tableau 2018.3`).
```cli
-"C:\Program Files\Tableau\Tableau \bin\tableau.exe" --remote-debugging-port=8696
+"C:\Program Files\Tableau\Tableau \bin\tableau.exe" --webEngineArgs --remote-debugging-port=8696
```
@@ -72,9 +71,9 @@ For convenience, you could also create a shortcut for Tableau and add the remote
1. Select Tableau from the **Start** menu, and then right-click and select **Properties** or select **Open file location**.
If you open the file location, you can create a new shortcut to `Tableau.exe` (call it something like *Tableau - Debug* ). Right click the shortcut to open the Properties dialog box.
-3. In the Properties dialog box, append `-remote-debugging-port=8696` at the end of the command in the **Target** text box. The debugging option goes after the closing quotation mark for `"Tableau.exe"`.
+3. In the Properties dialog box, append `--webEngineArgs -remote-debugging-port=8696` at the end of the command in the **Target** text box. The debugging option goes after the closing quotation mark for `"Tableau.exe"`.
-
+
---
## Start Tableau Desktop and enable debugging (macOS)
@@ -85,7 +84,7 @@ If you open the file location, you can create a new shortcut to `Tableau.exe` (c
```cli
-open /Applications/Tableau\ Desktop\ .app --args --remote-debugging-port=8696
+open /Applications/Tableau\ Desktop\ .app --args --webEngineArgs --remote-debugging-port=8696
```
@@ -161,8 +160,7 @@ The debugger will pause each time the first statement of a script runs, allowing
While you are debugging your extension, there are times you might want to reload or refresh your web page to execute and debug different parts of your code. However, when you click **Reload** from the shortcut menu to reload your extension, the remote debugger loses the connection with the extension. The reason for this is that **Reload** option tears down and re-creates the browser control, which means you'll need to establish a new debugging session.
-
-Note that you do not need to close and reopen the Chromium browser every time you click **Reload**. You can start another debugging session by entering the URL (`http://localhost:8696`) in the Chromium address bar and selecting the extension from the page selector.
+Note that you don't need to close and reopen the Chromium browser every time you click **Reload**. You can start another debugging session by entering the URL (`http://localhost:8696`) in the Chromium address bar and selecting the extension from the page selector.
For more information, see [What Happens When You Reload an Extension](./trex_reload.md).
diff --git a/website/docs/trex_release-notes.md b/website/docs/trex_release-notes.md
index 1b69db33..50f78e93 100644
--- a/website/docs/trex_release-notes.md
+++ b/website/docs/trex_release-notes.md
@@ -8,6 +8,36 @@ description: What's new for each release of the Tableau Extensions API
---
+### Tableau Extensions API version 1.15.0
+
+*September 2025*
+
+* Tableau Dashboard Extensions API library: `tableau.extensions.1.15.0.js`
(download or clone the Extensions API repository on [GitHub](https://github.com/tableau/extensions-api)).
+
+* Certain features in this release are only available in Tableau Cloud and Tableau Desktop 2025.3 or later. Download [Tableau Desktop](https://www.tableau.com/support/releases).
+
+What's new in this release:
+
+* Added `Cloud`, `PublicWeb`, and `PublicDesktop` as `Environment.context` values (`ExtensionContext`). The value indicates in which context the extension is currently running.
+
+* Added `sendDialogMessageAsync` method and `DialogMessageReceived` event to the UI namespace.
+
+* The `closeDialog` method can now be called from the extension frame to forcefully close the dialog.
+
+* If you use Tableau Desktop for debugging your extension, there is a new command line argument you need to include when you launch Tableau in debug mode. You need to add `--webEngineArgs` in front of the remote debugging port option. For example, on Windows the command would look something like the following:
+
+```cli
+"C:\Program Files\Tableau\Tableau \bin\tableau.exe" --webEngineArgs --remote-debugging-port=8696
+```
+
+For more information, see [Debug Extensions in Tableau Desktop](./debug/trex_debugging.md).
+
+---
+
+## Previous Releases
+
+---
+
### Tableau Extensions API version 1.14.0
*June 2025*
@@ -26,10 +56,6 @@ What's new in this release:
---
-## Previous Releases
-
----
-
### Tableau Extensions API version 1.13.0
*March 2025*