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..aa24d1ba 100644 --- a/docs/trex_release-notes.md +++ b/docs/trex_release-notes.md @@ -11,6 +11,34 @@ 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). + +* 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 @@ -30,8 +58,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