From 11b22c483a0f6d114416e61415c609737624ac9c Mon Sep 17 00:00:00 2001 From: Melissa Autumn Date: Mon, 23 Oct 2023 12:26:45 -0700 Subject: [PATCH] Rename instances of thundernest to thunderbird. --- README.md | 4 ++-- SUMMARY.md | 2 +- add-ons/hello-world-add-on/README.md | 4 ++-- .../hello-world-add-on/using-a-background-page.md | 2 +- .../hello-world-add-on/using-content-scripts.md | 2 +- .../hello-world-add-on/using-webextension-apis.md | 2 +- add-ons/mailextensions/README.md | 6 +++--- add-ons/mailextensions/experiments.md | 2 +- add-ons/resources.md | 4 ++-- add-ons/updating/tb102/README.md | 2 +- .../adapt-to-changes-in-thunderbird-92-102.md | 2 +- add-ons/updating/tb115/README.md | 2 +- .../adapt-to-changes-in-thunderbird-103-115.md | 8 ++++---- add-ons/updating/tb68/changes.md | 2 +- add-ons/updating/tb68/overlays.md | 2 +- add-ons/updating/tb78/README.md | 14 +++++++------- add-ons/updating/tb78/changes.md | 2 +- add-ons/updating/tb91/README.md | 2 +- add-ons/updating/tb91/changes.md | 4 ++-- add-ons/web-extension-themes.md | 2 +- add-ons/whats-new.md | 2 +- 21 files changed, 36 insertions(+), 36 deletions(-) diff --git a/README.md b/README.md index 4e779009..adb56749 100644 --- a/README.md +++ b/README.md @@ -33,9 +33,9 @@ Thunderbird uses Mozilla's Bugzilla platform to report and track bugs. The site Creating a performance profile can be useful for developers to find the causes of high CPU load or slowness in Thunderbird. -### [Thundernest on GitHub](https://github.com/thundernest) +### [Thunderbird on GitHub](https://github.com/thunderbird) -If you want to contribute to the Thunderbird website, this documentation, or addons.thunderbird.net - you can find those repositories and their issue trackers on the Thundernest GitHub page. You'll need a GitHub account to contribute there. +If you want to contribute to the Thunderbird website, this documentation, or addons.thunderbird.net - you can find those repositories and their issue trackers on the Thunderbird GitHub page. You'll need a GitHub account to contribute there. ## Getting Plugged into the Community diff --git a/SUMMARY.md b/SUMMARY.md index 78b7fe6b..988cb366 100644 --- a/SUMMARY.md +++ b/SUMMARY.md @@ -54,7 +54,7 @@ * [Supported Manifest Keys](add-ons/mailextensions/supported-manifest-keys.md) * [Supported UI Elements](add-ons/mailextensions/supported-ui-elements.md) * [Supported WebExtension APIs](add-ons/mailextensions/supported-webextension-api.md) - * [Examples in the Sample Extensions Repository](https://github.com/thundernest/sample-extensions) + * [Examples in the Sample Extensions Repository](https://github.com/thunderbird/sample-extensions) * [Introducing Experiments](add-ons/mailextensions/experiments.md) * [A Guide to Themes](add-ons/web-extension-themes.md) * [Manifest V3](add-ons/manifest-v3.md) diff --git a/add-ons/hello-world-add-on/README.md b/add-ons/hello-world-add-on/README.md index 9d4792e0..1ed4f48d 100644 --- a/add-ons/hello-world-add-on/README.md +++ b/add-ons/hello-world-add-on/README.md @@ -44,7 +44,7 @@ Extensions require a `manifest.json` file that tells Thunderbird a few basic inf ``` {% endcode %} -You can grab the icons we use for this example from the [example repository](https://github.com/thundernest/sample-extensions/tree/master/hello-world/images). Make sure to create an `images` directory in the `hello-world` project folder for them. +You can grab the icons we use for this example from the [example repository](https://github.com/thunderbird/sample-extensions/tree/master/hello-world/images). Make sure to create an `images` directory in the `hello-world` project folder for them. ## Using a `browser_action` @@ -119,7 +119,7 @@ Now we want to create the CSS file referenced in our HTML file. We'll call it `p ## Testing the Extension -First, let's double-check that we created [the correct files](https://github.com/thundernest/sample-extensions/commit/230eba3fd9f5c633cb30c0a83d5500e532c283c4?diff=unified) and have them in the right places: +First, let's double-check that we created [the correct files](https://github.com/thunderbird/sample-extensions/commit/230eba3fd9f5c633cb30c0a83d5500e532c283c4?diff=unified) and have them in the right places: ``` hello-world/ diff --git a/add-ons/hello-world-add-on/using-a-background-page.md b/add-ons/hello-world-add-on/using-a-background-page.md index cb0f7058..a18f7776 100644 --- a/add-ons/hello-world-add-on/using-a-background-page.md +++ b/add-ons/hello-world-add-on/using-a-background-page.md @@ -219,7 +219,7 @@ Using the `notifications` API requires the `notificatio ## Testing the Extension -Let's double-check that we made the [correct changes](https://github.com/thundernest/sample-extensions/commit/bb719ee48994101c52a3d8849d7c07ac6a46db01?diff=unified) and have all the files in the right places: +Let's double-check that we made the [correct changes](https://github.com/thunderbird/sample-extensions/commit/bb719ee48994101c52a3d8849d7c07ac6a46db01?diff=unified) and have all the files in the right places: ``` hello-world/ diff --git a/add-ons/hello-world-add-on/using-content-scripts.md b/add-ons/hello-world-add-on/using-content-scripts.md index 5e6e83e9..925e332e 100644 --- a/add-ons/hello-world-add-on/using-content-scripts.md +++ b/add-ons/hello-world-add-on/using-content-scripts.md @@ -191,7 +191,7 @@ The listener should only return a Promise for messages it is actually supposed t ## Testing the Extension -Let's double-check that we made the [correct changes](https://github.com/thundernest/sample-extensions/commit/65df906647525b85fa0d2367bd20dc8c3599558d?diff=unified) and have all the files in the right places: +Let's double-check that we made the [correct changes](https://github.com/thunderbird/sample-extensions/commit/65df906647525b85fa0d2367bd20dc8c3599558d?diff=unified) and have all the files in the right places: ``` hello-world/ diff --git a/add-ons/hello-world-add-on/using-webextension-apis.md b/add-ons/hello-world-add-on/using-webextension-apis.md index 00886176..dbd405c4 100644 --- a/add-ons/hello-world-add-on/using-webextension-apis.md +++ b/add-ons/hello-world-add-on/using-webextension-apis.md @@ -152,7 +152,7 @@ The [`getFull`](https://webextension-api.thunderbird.net/en/91/messages.html#get ## Testing the Extension -Let's double-check that we made the [correct changes](https://github.com/thundernest/sample-extensions/commit/73f5b3776b0d4f9c0e9281168de8f9313cc474f8?diff=unified) and have all the files in the right places: +Let's double-check that we made the [correct changes](https://github.com/thunderbird/sample-extensions/commit/73f5b3776b0d4f9c0e9281168de8f9313cc474f8?diff=unified) and have all the files in the right places: ``` hello-world/ diff --git a/add-ons/mailextensions/README.md b/add-ons/mailextensions/README.md index ff826186..9217013a 100644 --- a/add-ons/mailextensions/README.md +++ b/add-ons/mailextensions/README.md @@ -219,7 +219,7 @@ Content scripts (including [compose scripts](https://webextension-api.thunderbir * [menus.getTargetElement](https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/menus/getTargetElement) * [storage](https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/storage).\* -Content scripts can [communicate with background scripts](https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Content\_scripts#Communicating\_with\_background\_scripts) using runtime messaging, and thereby can indirectly access the WebExtension APIs. See our [messageDisplayScript example extension](https://github.com/thundernest/sample-extensions/tree/master/manifest\_v3/messageDisplayScript.pdfPreview). +Content scripts can [communicate with background scripts](https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Content\_scripts#Communicating\_with\_background\_scripts) using runtime messaging, and thereby can indirectly access the WebExtension APIs. See our [messageDisplayScript example extension](https://github.com/thunderbird/sample-extensions/tree/master/manifest\_v3/messageDisplayScript.pdfPreview). ### CloudFile Management Scripts @@ -271,12 +271,12 @@ If you'd like to learn more about experiments, check out this detailed introduct Developers can share and re-use Experiments, if their add-ons have similar needs. Before starting to work on your own Experiment, check if any of the following APIs could already provide the functionality you need. Using them and providing feedback to their developers will help to improve these APIs. -
NameDescription
CachingFixAdding this Experiment API will automatically fix caching issues when the add-on is updated, disabled or uninstalled.
CalendarπŸ’¬ πŸ“Draft for calendar-related APIs in Thunderbird.
ComposeMessageHeaders

Adds missing functionality to add headers to a newly composed message.

Note: Adding X- headers is supported by the compose API since Thunderbird 102.

CustomUIπŸ’¬β€‹A generic UI extension framework based on iframes registered at fixed extension points.

Note: Does not yet fully support Thunderbird Supernova
FileSystemAn API to access files in the users profile folder. Until Mozilla has made a final decision about including the Chrome FileSystem API, this API can be used as an interim solution.
LegacyCSSLoad custom CSS files into Thunderbird windows.
LegacyPrefsAccess Thunderbird system preferences.
NotificationBarπŸ’¬ πŸ“Add Thunderbird notification bars.
NotifyToolsProvides a messaging system between legacy code and the WebExtension background.
ResourceUrlRegister a custom resource:// URL to be able to load custom JSM files.

Note: Thunderbird is moving away from JSM files and their use should be avoided.
Runtime.onDisablePermit WebExtensions to perform (time-limited) cleanup tasks after the add-on is disabled or uninstalled.
TCPTCP support based on ArrayBuffers (currently client side only).
+
NameDescription
CachingFixAdding this Experiment API will automatically fix caching issues when the add-on is updated, disabled or uninstalled.
CalendarπŸ’¬ πŸ“Draft for calendar-related APIs in Thunderbird.
ComposeMessageHeaders

Adds missing functionality to add headers to a newly composed message.

Note: Adding X- headers is supported by the compose API since Thunderbird 102.

CustomUIπŸ’¬β€‹A generic UI extension framework based on iframes registered at fixed extension points.

Note: Does not yet fully support Thunderbird Supernova
FileSystemAn API to access files in the users profile folder. Until Mozilla has made a final decision about including the Chrome FileSystem API, this API can be used as an interim solution.
LegacyCSSLoad custom CSS files into Thunderbird windows.
LegacyPrefsAccess Thunderbird system preferences.
NotificationBarπŸ’¬ πŸ“Add Thunderbird notification bars.
NotifyToolsProvides a messaging system between legacy code and the WebExtension background.
ResourceUrlRegister a custom resource:// URL to be able to load custom JSM files.

Note: Thunderbird is moving away from JSM files and their use should be avoided.
Runtime.onDisablePermit WebExtensions to perform (time-limited) cleanup tasks after the add-on is disabled or uninstalled.
TCPTCP support based on ArrayBuffers (currently client side only).
πŸ’¬: API has a public announcement post\ πŸ“: API has a public interface discussion -If you have created an Experiment API which you think could be beneficial to other developers, please [tell us about it](https://github.com/thundernest/developer-docs/issues/new), so we can include it here. +If you have created an Experiment API which you think could be beneficial to other developers, please [tell us about it](https://github.com/thunderbird/developer-docs/issues/new), so we can include it here. ### Proposing APIs to be included in Thunderbird diff --git a/add-ons/mailextensions/experiments.md b/add-ons/mailextensions/experiments.md index 5ec53ca9..df72ed27 100644 --- a/add-ons/mailextensions/experiments.md +++ b/add-ons/mailextensions/experiments.md @@ -76,7 +76,7 @@ Check out the [Experiment Generator](https://darktrojan.github.io/generator/gene {% endhint %} {% hint style="info" %} -Check out the [Example Experiment API](https://github.com/thundernest/sample-extensions/tree/master/manifest\_v3/experiment) in our sample-extensions repository. +Check out the [Example Experiment API](https://github.com/thunderbird/sample-extensions/tree/master/manifest\_v3/experiment) in our sample-extensions repository. {% endhint %} {% hint style="warning" %} diff --git a/add-ons/resources.md b/add-ons/resources.md index 8b049c27..4c067dc7 100644 --- a/add-ons/resources.md +++ b/add-ons/resources.md @@ -17,9 +17,9 @@ A few helpful resources relevant for developing add-ons for Thunderbird. | [Debugging Guide](https://extensionworkshop.com/documentation/develop/debugging/) | A guide from the extension workshop with the most recent information on debugging add-ons. It is written for Mozilla Firefox but applies for Thunderbird as well. | | [Supercharge your Thunderbird extension debugging](https://arndissler.net/supercharge-your-thunderbird-extension-debugging/) | A guide how to use Visual Studio Code to debug Thunderbird extension. | | [MailExtension APIs Documentation](https://webextension-api.thunderbird.net/) |

Documentation of all Extension APIs created specifically for Thunderbird. They are called MailExtension APIs to distinguish them from the standard WebExtension APIs inherited from Firefox.

Note: Thunderbird 115 and Thunderbird Beta supports Manifest V3. The new specification is not finalized yet and will continue to change.

| -| [Thundernest Sample Extension Repository](https://github.com/thundernest/sample-extensions) | A collection of explanatory sample extensions. | +| [Thunderbird Sample Extension Repository](https://github.com/thunderbird/sample-extensions) | A collection of explanatory sample extensions. | | [MDN Sample Extension Repository](https://github.com/mdn/webextensions-examples) | A collection of WebExtensions. They probably won’t work directly in Thunderbird, but they may provide hints on how to use some of the WebExtension APIs that Thunderbird inherited from Firefox. | -| [Thundernest Add-On Developer Support Repository](https://github.com/thundernest/addon-developer-support) | The add-on developer support repository provides useful code snippets, examples and tools in order to better "weather" the transition to the new extension structure of Thunderbird 78. | +| [Thunderbird Add-On Developer Support Repository](https://github.com/thunderbird/addon-developer-support) | The add-on developer support repository provides useful code snippets, examples and tools in order to better "weather" the transition to the new extension structure of Thunderbird 78. | | [ThunderKdB](https://cleidigh.github.io/ThunderKdB/index.html) | Overall add-on statistics and a very powerful search in the code of all add-ons listed on addons.thunderbird.net (ATN) and a few other public repositories. | | [Bugzilla](https://bugzilla.mozilla.org) |

Central bug tracking for Mozilla projects. Some useful pages related to Thunderbird:

| | [Mozilla Developer Documentation (MDN)](https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions) |

The main documentation for Mozilla developers. As Thunderbird is based on the Mozilla platform, some Mozilla documentation is valid for Thunderbird as well. Useful MDN pages on WebExtension are:

| diff --git a/add-ons/updating/tb102/README.md b/add-ons/updating/tb102/README.md index 7c1a950c..e55371e7 100644 --- a/add-ons/updating/tb102/README.md +++ b/add-ons/updating/tb102/README.md @@ -31,4 +31,4 @@ If you have encountered a change which is not yet listed there, please [contact If you are using any of the shared Experiments, you probably do not have to update them on your own. Check if an updated version is already available: * [Shared Experiments on DTN](../../mailextensions/#sharing-experiment-apis) -* [Wrapper Experiments available in the ADS repository](https://github.com/thundernest/addon-developer-support/tree/master/wrapper-apis) +* [Wrapper Experiments available in the ADS repository](https://github.com/thunderbird/addon-developer-support/tree/master/wrapper-apis) diff --git a/add-ons/updating/tb102/adapt-to-changes-in-thunderbird-92-102.md b/add-ons/updating/tb102/adapt-to-changes-in-thunderbird-92-102.md index 331d3362..e04fc752 100644 --- a/add-ons/updating/tb102/adapt-to-changes-in-thunderbird-92-102.md +++ b/add-ons/updating/tb102/adapt-to-changes-in-thunderbird-92-102.md @@ -235,7 +235,7 @@ Since Thunderbird 101, it is no longer possible to load JSMs via extension URLs, var { myModule } = ChromeUtils.import(extension.rootURI.resolve("myModule.jsm")); ``` -It is now mandatory to register an internal URL, for example a `resource://` URL. We have created the [ResourceUrl Experiment API](https://github.com/thundernest/addon-developer-support/tree/master/auxiliary-apis/ResourceUrl), which is doing the heavy lifting. It is used by our [Experiment API example](https://github.com/thundernest/sample-extensions/tree/master/experiment). +It is now mandatory to register an internal URL, for example a `resource://` URL. We have created the [ResourceUrl Experiment API](https://github.com/thunderbird/addon-developer-support/tree/master/auxiliary-apis/ResourceUrl), which is doing the heavy lifting. It is used by our [Experiment API example](https://github.com/thunderbird/sample-extensions/tree/master/experiment). ### DisplayNameUtils.getCardForEmail() diff --git a/add-ons/updating/tb115/README.md b/add-ons/updating/tb115/README.md index 8d5f465d..2053a4d8 100644 --- a/add-ons/updating/tb115/README.md +++ b/add-ons/updating/tb115/README.md @@ -31,4 +31,4 @@ If you have encountered a change which is not yet listed there, please [contact If you are using any of the shared Experiments, you probably do not have to update them on your own. Check if an updated version is already available: * [Shared Experiments on DTN](../../mailextensions/#sharing-experiment-apis) -* [Wrapper Experiments available in the ADS repository](https://github.com/thundernest/addon-developer-support/tree/master/wrapper-apis) +* [Wrapper Experiments available in the ADS repository](https://github.com/thunderbird/addon-developer-support/tree/master/wrapper-apis) diff --git a/add-ons/updating/tb115/adapt-to-changes-in-thunderbird-103-115.md b/add-ons/updating/tb115/adapt-to-changes-in-thunderbird-103-115.md index 1eafe3a5..5a915073 100644 --- a/add-ons/updating/tb115/adapt-to-changes-in-thunderbird-103-115.md +++ b/add-ons/updating/tb115/adapt-to-changes-in-thunderbird-103-115.md @@ -66,11 +66,11 @@ It is recommended to leverage WebExtension APIs as much a possible. Instead of a There may already be a shared Experiment, which could help with add-on updates (or which could give helpful hints): -* [LegacyCSS API](https://github.com/thundernest/addon-developer-support/tree/master/auxiliary-apis/LegacyCSS): Inject into `about:3pane` or `about:message`, to style the `folderpane` (see [Hide Local Folders](https://addons.thunderbird.net/addon/hide-local-folders-for-tb78/versions/?page=1#version-3.0.1) Add-on), the `threadpane` or the message display area. -* [WindowListener API](https://github.com/thundernest/addon-developer-support/tree/master/wrapper-apis/WindowListener): Inject into `about:3pane` or `about:message`, to manipulate the `folderpane` (see [Phoenity Icons](https://addons.thunderbird.net/addon/phoenity-icons/versions/?page=1#version-3.9) Add-On), the `threadpane` or the message display area. -* [UnifiedFolders API](https://github.com/thundernest/addon-developer-support/tree/master/auxiliary-apis/UnifiedFolders): Interact with the "smart" folder display mode. +* [LegacyCSS API](https://github.com/thunderbird/addon-developer-support/tree/master/auxiliary-apis/LegacyCSS): Inject into `about:3pane` or `about:message`, to style the `folderpane` (see [Hide Local Folders](https://addons.thunderbird.net/addon/hide-local-folders-for-tb78/versions/?page=1#version-3.0.1) Add-on), the `threadpane` or the message display area. +* [WindowListener API](https://github.com/thunderbird/addon-developer-support/tree/master/wrapper-apis/WindowListener): Inject into `about:3pane` or `about:message`, to manipulate the `folderpane` (see [Phoenity Icons](https://addons.thunderbird.net/addon/phoenity-icons/versions/?page=1#version-3.9) Add-On), the `threadpane` or the message display area. +* [UnifiedFolders API](https://github.com/thunderbird/addon-developer-support/tree/master/auxiliary-apis/UnifiedFolders): Interact with the "smart" folder display mode. -More interesting Experiments are available at the [addon-developer-support](https://github.com/thundernest/addon-developer-support/tree/master/auxiliary-apis) repository and on [DTN](https://developer.thunderbird.net/add-ons/mailextensions#sharing-experiment-apis). +More interesting Experiments are available at the [addon-developer-support](https://github.com/thunderbird/addon-developer-support/tree/master/auxiliary-apis) repository and on [DTN](https://developer.thunderbird.net/add-ons/mailextensions#sharing-experiment-apis). ### Unified Toolbar diff --git a/add-ons/updating/tb68/changes.md b/add-ons/updating/tb68/changes.md index d5ad24c6..9de1c814 100644 --- a/add-ons/updating/tb68/changes.md +++ b/add-ons/updating/tb68/changes.md @@ -389,7 +389,7 @@ and remove only that via `notificationbox.removeNotification(notification);` {% endhint %} -You can still add notification boxes wherever you want, if you do not want to use the build in notification boxes (or if there is none). More details can be found [here](https://github.com/thundernest/developer-docs/issues/31#issuecomment-508872843). +You can still add notification boxes wherever you want, if you do not want to use the build in notification boxes (or if there is none). More details can be found [here](https://github.com/thunderbird/developer-docs/issues/31#issuecomment-508872843). ### \ diff --git a/add-ons/updating/tb68/overlays.md b/add-ons/updating/tb68/overlays.md index 7071a851..c429aee0 100644 --- a/add-ons/updating/tb68/overlays.md +++ b/add-ons/updating/tb68/overlays.md @@ -95,7 +95,7 @@ Those errors come from the old system, which no longer deals with such things. You might see the same line, but regarding `interfaces`. {% hint style="danger" %} -**Registering your own interfaces using `.xpt`files is no longer possible.** However, they can be converted to JavaScript Modules \(the Quicktext add-on includes an [example migration](https://github.com/thundernest/quicktext/commit/e1ef58dce2816ac1e685f562d30882968e24a391)\). +**Registering your own interfaces using `.xpt`files is no longer possible.** However, they can be converted to JavaScript Modules \(the Quicktext add-on includes an [example migration](https://github.com/thunderbird/quicktext/commit/e1ef58dce2816ac1e685f562d30882968e24a391)\). {% endhint %} ## Notes about `