Skip to content

Commit 46ca506

Browse files
authored
Merge pull request #496 from d45/d45_docs_1_9
Doc updates for v1.9. Release notes;About Help topic; privacy URL change
2 parents 951685f + 92021e7 commit 46ca506

File tree

4 files changed

+54
-3
lines changed

4 files changed

+54
-3
lines changed

_includes/docs_menu.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
<li>
1818
<a href="{{ site.baseurl }}/docs/trex_examples.html">Dashboard Extension Samples</a>
1919
</li>
20+
<li>
21+
<a href="{{ site.baseurl }}/docs/trex_tableau_help.html">About Tableau Help</a>
22+
</li>
2023
<li class="nav-header">Basic Concepts</li>
2124
<li>
2225
<a href="{{ site.baseurl }}/docs/trex_api_about.html">Tableau Extensions API Basics</a>

_includes/footer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<div class="row">
44
<hr class="footer-hr">
55
<p>This site is open source. Suggestions and pull requests are welcome on our <a href="https://github.com/tableau/extensions-api">GitHub page</a>.</p>
6-
<p><a href="https://www.tableau.com/en-us/legal" class="aLegal">LEGAL</a> <a href="https://www.tableau.com/en-us/privacy" class="aLegal">PRIVACY</a> &copy; 2003&ndash;<script>document.write(new Date().getFullYear())</script> TABLEAU SOFTWARE LLC. ALL RIGHTS RESERVED</p>
6+
<p><a href="https://www.tableau.com/en-us/legal" class="aLegal">LEGAL</a> <a href="https://www.salesforce.com/company/privacy" class="aLegal">PRIVACY</a> &copy; 2003&ndash;<script>document.write(new Date().getFullYear())</script> TABLEAU SOFTWARE LLC. ALL RIGHTS RESERVED</p>
77
<sub>Documentation last generated on: {{ site.time }}</sub>
88
</div>
99
</footer>

docs/trex_release-notes.md

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,34 @@ layout: docs
1111
----
1212
See also: [Known Issues]({{site.baseurl}}/docs/trex_known_issues.html)
1313

14+
### Tableau Dashboard Extensions API version 1.9.0
15+
16+
*June 2022*
17+
18+
* Tableau Dashboard Extensions API library: `tableau.extensions.1.9.0.js` <br>(download or clone the Extensions API repository on [GitHub](https://github.com/tableau/extensions-api){:target="_blank"}.) <br/>
19+
20+
* Download [Tableau Desktop](https://www.tableau.com/support/releases){:target="_blank"} or [Tableau Server](https://www.tableau.com/support/releases/server){:target="_blank"}.
21+
22+
* 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.
23+
24+
About this release:
25+
26+
* Added support for [`Filter.getAppliedWorksheets()`]({{site.baseurl}}/docs//interfaces/filter.html#getappliedworksheetsasync) and [`Filter.setAppliedWorksheets()`]({{site.baseurl}}/docs/interfaces/filter.html#setappliedworksheetsasync).
27+
28+
* Added support for [`Dashboard.getFiltersAsync()`]({{site.baseurl}}/docs/interfaces/dashboard.html#getfiltersasync) and [`Dashboard.applyFilterAsync()`]({{site.baseurl}}/docs/interfaces/dashboard.html#applyfilterasync).
29+
30+
* Added support for [`Worksheet.applyRelativeDateFilterAsync()`]({{site.baseurl}}/docs/interfaces/worksheet.html#applyrelativedatefilterasync).
31+
32+
* 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.
33+
34+
```css
35+
36+
body {
37+
font-family: 'Benton Sans', Arial, Helvetica, sans-serif;
38+
}
39+
```
40+
41+
----
1442

1543
### Tableau Dashboard Extensions API version 1.8.1
1644

@@ -30,8 +58,7 @@ About this release:
3058

3159
* 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).
3260

33-
34-
---
61+
----
3562

3663

3764
### Tableau Dashboard Extensions API version 1.8

docs/trex_tableau_help.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
title: About Tableau Help
3+
layout: docs
4+
---
5+
6+
7+
## Addressing Implicit Bias in Technical Language
8+
9+
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:
10+
11+
* Tableau APIs: methods, parameters, and variables
12+
13+
* Tableau CLIs: commands and options
14+
15+
* Installers, installation directories, and terms in configuration files
16+
17+
* (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.)
18+
19+
* Third-party systems documentation
20+
21+
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.

0 commit comments

Comments
 (0)