Skip to content

Commit 2e36e91

Browse files
committed
Fix signup link: /register, not /signup
The free-tier signup page is at https://unirateapi.com/register, not /signup. Sidebar, README, and Marketplace listing copy all had the broken link.
1 parent dabdc28 commit 2e36e91

5 files changed

Lines changed: 9 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## v0.1.1 — 2026-05-10
4+
5+
- Fix the signup link to point at `unirateapi.com/register` (was incorrectly
6+
written as `/signup` in the sidebar, README, and Marketplace listing copy).
7+
38
## v0.1.0 — 2026-05-10
49

510
Initial release.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
`=UNIRATE("USD","EUR")` — live currency rates, historical lookups, and EU/UK
44
VAT rates as Sheets formulas, backed by the [UniRate API](https://unirateapi.com).
55

6-
> Get a free API key at [unirateapi.com/signup](https://unirateapi.com/signup) (1,000 requests/day, no card).
6+
> Get a free API key at [unirateapi.com/register](https://unirateapi.com/register) (1,000 requests/day, no card).
77
88
## Functions
99

marketplace/listing-description.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Add live currency exchange rates, historical FX data, and EU/UK VAT rates to any
2626

2727
1. Install the add-on.
2828
2. Open **Extensions → UniRate → Set API key…**.
29-
3. Paste your free key from [unirateapi.com/signup](https://unirateapi.com/signup).
29+
3. Paste your free key from [unirateapi.com/register](https://unirateapi.com/register).
3030
4. Use any of the formulas above in any cell.
3131

3232
The API key is stored in the spreadsheet's document properties only — no

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "unirate-sheets",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"private": true,
55
"description": "Google Sheets add-on exposing UniRate currency-conversion custom functions (=UNIRATE, =UNIRATE_HISTORICAL, =UNIRATE_TIMESERIES, =UNIRATE_VAT, …).",
66
"scripts": {

src/Sidebar.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<h2>UniRate API key</h2>
3535
<p class="help">
3636
Stored on this spreadsheet only. Get a free key (1,000 requests / day) at
37-
<a href="https://unirateapi.com/signup" target="_blank">unirateapi.com/signup</a>.
37+
<a href="https://unirateapi.com/register" target="_blank">unirateapi.com/register</a>.
3838
</p>
3939

4040
<div id="current" class="key-row" style="display:none;">

0 commit comments

Comments
 (0)