From 968131ace8b22b34d6a416eaf43ba507ca0580a5 Mon Sep 17 00:00:00 2001
From: d45 <3d.hagen@gmail.com>
Date: Tue, 14 Jun 2022 12:16:51 -0700
Subject: [PATCH 1/2] Doc updates for v1.9. Release notes;About Help topic;
privacy URL change
---
_includes/docs_menu.html | 3 +++
_includes/footer.html | 2 +-
docs/trex_release-notes.md | 22 ++++++++++++++++++++--
docs/trex_tableau_help.md | 21 +++++++++++++++++++++
4 files changed, 45 insertions(+), 3 deletions(-)
create mode 100644 docs/trex_tableau_help.md
diff --git a/_includes/docs_menu.html b/_includes/docs_menu.html
index 173cf938..d3377401 100644
--- a/_includes/docs_menu.html
+++ b/_includes/docs_menu.html
@@ -17,6 +17,9 @@
Dashboard Extension Samples
+
+ About Tableau Help
+
Tableau Extensions API Basics
diff --git a/_includes/footer.html b/_includes/footer.html
index 5f43b459..b0e69522 100644
--- a/_includes/footer.html
+++ b/_includes/footer.html
@@ -3,7 +3,7 @@
This site is open source. Suggestions and pull requests are welcome on our GitHub page.
-
LEGAL PRIVACY © 2003– TABLEAU SOFTWARE LLC. ALL RIGHTS RESERVED
+
LEGAL PRIVACY © 2003– TABLEAU SOFTWARE LLC. ALL RIGHTS RESERVED
Documentation last generated on: {{ site.time }}
diff --git a/docs/trex_release-notes.md b/docs/trex_release-notes.md
index 186ec15a..78ca142d 100644
--- a/docs/trex_release-notes.md
+++ b/docs/trex_release-notes.md
@@ -11,6 +11,25 @@ layout: docs
----
See also: [Known Issues]({{site.baseurl}}/docs/trex_known_issues.html)
+### Tableau Dashboard Extensions API version 1.9.0
+
+*June 2022*
+
+* Tableau Dashboard Extensions API library: `tableau.extensions.1.9.0.js`
(download or clone the Extensions API repository on [GitHub](https://github.com/tableau/extensions-api){:target="_blank"}.)
+
+* Download [Tableau Desktop](https://www.tableau.com/support/releases){:target="_blank"} or [Tableau Server](https://www.tableau.com/support/releases/server){:target="_blank"}.
+
+* To preview new features and test your extension with the latest version of Tableau in the Developer Sandbox, join the [Tableau Developer Program](http://www.tableau.com/developer){:target="_blank"} and request your own Tableau Online developer site.
+
+About this release:
+
+* Added support for [`Filter.getAppliedWorksheets()`]({{site.baseurl}}/docs//interfaces/filter.html#getappliedworksheetsasync) and [`Filter.setAppliedWorksheets()`]({{site.baseurl}}/docs/interfaces/filter.html#setappliedworksheetsasync).
+
+* Added support for [`Dashboard.getFiltersAsync()`]({{site.baseurl}}/docs/interfaces/dashboard.html#getfiltersasync) and [`Dashboard.applyFilterAsync()`]({{site.baseurl}}/docs/interfaces/dashboard.html#applyfilterasync).
+
+* Added support for [`Worksheet.applyRelativeDateFilterAsync()`]({{site.baseurl}}/docs/interfaces/worksheet.html#applyrelativedatefilterasync).
+
+----
### Tableau Dashboard Extensions API version 1.8.1
@@ -30,8 +49,7 @@ About this release:
* New versions of the JavaScript library and TypeScript types (`1.8.1`). See [Use TypeScript with the Extensions API]({{site.baseurl}}/docs/trex_typescript.html).
-
----
+----
### Tableau Dashboard Extensions API version 1.8
diff --git a/docs/trex_tableau_help.md b/docs/trex_tableau_help.md
new file mode 100644
index 00000000..8ba9a51b
--- /dev/null
+++ b/docs/trex_tableau_help.md
@@ -0,0 +1,21 @@
+---
+title: About Tableau Help
+layout: docs
+---
+
+
+## Addressing Implicit Bias in Technical Language
+
+In an effort to align with one of our core company values, equality, we have changed terminology to be more inclusive where possible. Because changing terms in code can break current implementations, we maintain the current terminology in the following places:
+
+* Tableau APIs: methods, parameters, and variables
+
+* Tableau CLIs: commands and options
+
+* Installers, installation directories, and terms in configuration files
+
+* (Undefined variable: `Variables.PT_server_long`) (we plan to make changes to non-inclusive terminology in the web interface, error messages, and related documentation soon.)
+
+* Third-party systems documentation
+
+For more information about our ongoing effort to address implicit bias, see [Salesforce Updates Technical Language in Ongoing Effort to Address Implicit Bias](https://www.salesforce.com/news/stories/salesforce-updates-technical-language-in-ongoing-effort-to-address-implicit-bias/?_ga=2.61225580.1994005306.1652119972-235774019.1630077324) on the Salesforce website.
\ No newline at end of file
From 92021e78f4ee4b309795a330a90056d09c52912b Mon Sep 17 00:00:00 2001
From: d45 <3d.hagen@gmail.com>
Date: Mon, 20 Jun 2022 10:22:13 -0700
Subject: [PATCH 2/2] Added Benton Sans and Tableau fonts support to the
release notes
---
docs/trex_release-notes.md | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/docs/trex_release-notes.md b/docs/trex_release-notes.md
index 78ca142d..aa24d1ba 100644
--- a/docs/trex_release-notes.md
+++ b/docs/trex_release-notes.md
@@ -29,6 +29,15 @@ About this release:
* Added support for [`Worksheet.applyRelativeDateFilterAsync()`]({{site.baseurl}}/docs/interfaces/worksheet.html#applyrelativedatefilterasync).
+* Starting with this release, you can now load Benton Sans fonts and Tableau fonts by default during extension initialization. You can set the Tableau and Benton Sans fonts in the style portion of your extension. To see how you can use the fonts in an dashboard extension, see the [Formatting](https://github.com/tableau/extensions-api/tree/master/Samples/Formatting?=target="_blank") sample.
+
+ ```css
+
+ body {
+ font-family: 'Benton Sans', Arial, Helvetica, sans-serif;
+ }
+ ```
+
----
### Tableau Dashboard Extensions API version 1.8.1