Skip to content

Commit add44db

Browse files
Fix support, privacy, and terms links to point to /plugins/* paths
1 parent c599aea commit add44db

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

manifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<Description DefaultValue="Pull DataSetIQ series directly into Excel with custom functions." />
1313
<IconUrl DefaultValue="https://plugins.datasetiq.com/assets/icon-32.png" />
1414
<HighResolutionIconUrl DefaultValue="https://plugins.datasetiq.com/assets/icon-64.png" />
15-
<SupportUrl DefaultValue="https://datasetiq.com/support" />
15+
<SupportUrl DefaultValue="https://datasetiq.com/plugins/support" />
1616
<AppDomains>
1717
<AppDomain>https://datasetiq.com</AppDomain>
1818
<AppDomain>https://plugins.datasetiq.com</AppDomain>

public/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@
297297
<a href="https://datasetiq.com">Home</a>
298298
<a href="https://datasetiq.com/docs">Documentation</a>
299299
<a href="https://datasetiq.com/pricing">Pricing</a>
300-
<a href="https://datasetiq.com/support">Support</a>
300+
<a href="https://datasetiq.com/plugins/support">Support</a>
301301
</nav>
302302
<button class="mobile-menu-btn" id="mobileMenuBtn" aria-label="Toggle menu">
303303
@@ -362,8 +362,8 @@ <h2>Add-in Resources</h2>
362362

363363
<footer class="footer">
364364
<p>&copy; 2025 DataSetIQ. All rights reserved. |
365-
<a href="https://datasetiq.com/privacy">Privacy</a> |
366-
<a href="https://datasetiq.com/terms">Terms</a>
365+
<a href="https://datasetiq.com/plugins/privacy">Privacy</a> |
366+
<a href="https://datasetiq.com/plugins/terms">Terms</a>
367367
</p>
368368
</footer>
369369

src/functions/functions.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"name": "DSIQ",
55
"description": "Returns a dynamic array with Date and Value columns (newest first).",
6-
"helpUrl": "https://datasetiq.com/support",
6+
"helpUrl": "https://datasetiq.com/plugins/support",
77
"parameters": [
88
{ "name": "series_id", "description": "Series identifier", "type": "string" },
99
{ "name": "frequency", "description": "Optional frequency override", "type": "string", "optional": true },
@@ -14,14 +14,14 @@
1414
{
1515
"name": "DSIQ_LATEST",
1616
"description": "Returns the latest value available for a series.",
17-
"helpUrl": "https://datasetiq.com/support",
17+
"helpUrl": "https://datasetiq.com/plugins/support",
1818
"parameters": [{ "name": "series_id", "description": "Series identifier", "type": "string" }],
1919
"result": { "type": "number" }
2020
},
2121
{
2222
"name": "DSIQ_VALUE",
2323
"description": "Returns the value on or before the specified date.",
24-
"helpUrl": "https://datasetiq.com/support",
24+
"helpUrl": "https://datasetiq.com/plugins/support",
2525
"parameters": [
2626
{ "name": "series_id", "description": "Series identifier", "type": "string" },
2727
{ "name": "date", "description": "Date (YYYY-MM-DD)", "type": "string" }
@@ -31,14 +31,14 @@
3131
{
3232
"name": "DSIQ_YOY",
3333
"description": "Returns pre-calculated year-over-year change.",
34-
"helpUrl": "https://datasetiq.com/support",
34+
"helpUrl": "https://datasetiq.com/plugins/support",
3535
"parameters": [{ "name": "series_id", "description": "Series identifier", "type": "string" }],
3636
"result": { "type": "number" }
3737
},
3838
{
3939
"name": "DSIQ_META",
4040
"description": "Returns metadata fields (units, frequency, title, last_updated).",
41-
"helpUrl": "https://datasetiq.com/support",
41+
"helpUrl": "https://datasetiq.com/plugins/support",
4242
"parameters": [
4343
{ "name": "series_id", "description": "Series identifier", "type": "string" },
4444
{ "name": "field", "description": "Metadata field name", "type": "string" }

0 commit comments

Comments
 (0)