From 80fe54562643b4650fccc665710d838be367f42d Mon Sep 17 00:00:00 2001 From: Will Browning <20662079+willbrowningme@users.noreply.github.com> Date: Fri, 12 Jul 2024 09:20:50 +0100 Subject: [PATCH] Update AnonAddy to new addy.io branding --- docs/privacy.md | 4 ++-- docs/widgets.md | 14 +++++++------- src/components/Widgets/WidgetBase.vue | 2 +- src/utils/defaults.js | 2 +- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/docs/privacy.md b/docs/privacy.md index 05c44c97..ce430405 100644 --- a/docs/privacy.md +++ b/docs/privacy.md @@ -131,8 +131,8 @@ Dashy supports [Widgets](/docs/widgets.md) for displaying dynamic content. Below - [BlockCypher Privacy Policy](https://www.blockcypher.com/privacy.html) - **[Code::Stats](/docs/widgets.md#code-stats)**: `https://codestats.net` - [Code::Stats Privacy Policy](https://codestats.net/tos#privacy) -- **[AnonAddy](/docs/widgets.md#anonaddy)**: `https://app.anonaddy.com` - - [AnonAddy Privacy Policy](https://anonaddy.com/privacy/) +- **[addy.io](/docs/widgets.md#addyio)**: `https://app.addy.io` + - [addy.io Privacy Policy](https://addy.io/privacy/) - **[Vulnerability Feed](/docs/widgets.md#vulnerability-feed)**: `https://www.cvedetails.com` - [CVE Details Privacy Policy](https://www.cvedetails.com/privacy.php) - **[Exchange Rate](/docs/widgets.md#exchange-rates)**: `https://v6.exchangerate-api.com` diff --git a/docs/widgets.md b/docs/widgets.md index a657693a..715b9e26 100644 --- a/docs/widgets.md +++ b/docs/widgets.md @@ -18,7 +18,7 @@ Dashy has support for displaying dynamic content in the form of widgets. There a - [Crypto Wallet Balance](#wallet-balance) - [Code Stats](#code-stats) - [Mullvad Status](#mullvad-status) - - [Email Aliases (AnonAddy)](#anonaddy) + - [Email Aliases (addy.io)](#addyio) - [Vulnerability Feed](#vulnerability-feed) - [Exchange Rates](#exchange-rates) - [Public Holidays](#public-holidays) @@ -573,11 +573,11 @@ _No Options._ --- -### AnonAddy +### addy.io -[AnonAddy](https://anonaddy.com/) is a free and open source mail forwarding service. Use it to protect your real email address, by using a different alias for each of your online accounts, and have all emails land in your normal inbox(es). Supports custom domains, email replies, PGP-encryption, multiple recipients and more +[addy.io](https://addy.io/) is a free and open source mail forwarding service. Use it to protect your real email address, by using a different alias for each of your online accounts, and have all emails land in your normal inbox(es). Supports custom domains, email replies, PGP-encryption, multiple recipients and more -This widget display email addresses / aliases from AnonAddy. Click an email address to copy to clipboard, or use the toggle switch to enable/ disable it. Shows usage stats (bandwidth, used aliases etc), as well as total messages received, blocked and sent. Works with both self-hosted and managed instances of AnonAddy. +This widget display email addresses / aliases from addy.io. Click an email address to copy to clipboard, or use the toggle switch to enable/ disable it. Shows usage stats (bandwidth, used aliases etc), as well as total messages received, blocked and sent. Works with both self-hosted and managed instances of addy.io.

@@ -585,8 +585,8 @@ This widget display email addresses / aliases from AnonAddy. Click an email addr **Field** | **Type** | **Required** | **Description** --- | --- | --- | --- -**`apiKey`** | `string` | Required | Your AnonAddy API Key / Personal Access Token. You can generate this under [Account Settings](https://app.anonaddy.com/settings) -**`hostname`** | `string` | _Optional_ | If your self-hosting AnonAddy, then supply the host name. By default it will use the public hosted instance +**`apiKey`** | `string` | Required | Your addy.io API Key / Personal Access Token. You can generate this under [Account Settings](https://app.addy.io/settings) +**`hostname`** | `string` | _Optional_ | If your self-hosting addy.io, then supply the host name. By default it will use the public hosted instance **`apiVersion`** | `string` | _Optional_ | If you're using an API version that is not version `v1`, then specify it here **`limit`** | `number` | _Optional_ | Limit the number of emails shown per page. Defaults to `10` **`sortBy`** | `string` | _Optional_ | Specify the sort order for email addresses. Defaults to `updated_at`. Can be either: `local_part`, `domain`, `email`, `emails_forwarded`, `emails_blocked`, `emails_replied`, `emails_sent`, `created_at`, `updated_at` or `deleted_at`. Precede with a `-` character to reverse order. @@ -614,7 +614,7 @@ This widget display email addresses / aliases from AnonAddy. Click an email addr - **Auth**: 🔴 Required - **Price**: 🟠 Free for Self-Hosted / Free Plan available on managed instance or $1/month for premium - **Host**: Self-Hosted or Managed -- **Privacy**: _See [AnonAddy Privacy Policy](https://anonaddy.com/privacy/)_ +- **Privacy**: _See [addy.io Privacy Policy](https://addy.io/privacy/)_ --- diff --git a/src/components/Widgets/WidgetBase.vue b/src/components/Widgets/WidgetBase.vue index 739388fa..9139cae9 100644 --- a/src/components/Widgets/WidgetBase.vue +++ b/src/components/Widgets/WidgetBase.vue @@ -46,7 +46,7 @@ const COMPAT = { 'adguard-filter-status': 'AdGuardFilterStatus', 'adguard-stats': 'AdGuardStats', 'adguard-top-domains': 'AdGuardTopDomains', - anonaddy: 'AnonAddy', + anonaddy: 'addy.io', apod: 'Apod', 'blacklist-check': 'BlacklistCheck', clock: 'Clock', diff --git a/src/utils/defaults.js b/src/utils/defaults.js index f952a18b..048f1b41 100644 --- a/src/utils/defaults.js +++ b/src/utils/defaults.js @@ -220,7 +220,7 @@ module.exports = { }, /* API endpoints for widgets that need to fetch external data */ widgetApiEndpoints: { - anonAddy: 'https://app.anonaddy.com', + anonAddy: 'https://app.addy.io', astronomyPictureOfTheDay: 'https://apod.as93.net/apod', blacklistCheck: 'https://api.blacklistchecker.com/check', codeStats: 'https://codestats.net/',