Last updated
Last updated
This document tries to cover all the internal changes that may be needed to make add-ons compatible with Thunderbird 78. If you find changes which are not yet listed on this page, you can ask for help and advice in one of our .
The changes are grouped by category and are listed in the order we became aware of them.
As of Thunderbird 74, the built-in overlay loader has been removed, which means XUL overlay files are no longer supported. The preferred way to interact with Thunderbird is through WebExtension and MailExtension APIs, which only support HTML/CSS.
However, Thunderbird itself is still using XUL for its UI, and it is still possible to interact with that XUL based UI through experimental APIs. More information can be found in the .
Since XUL is still usable, this document includes information about deprecated and removed XUL elements.
Some XUL elements have been converted to , which have an additional is="something"
attribute. If such a custom element is to be created with createXULElement()
, the is
parameter needs to be passend in via the second argument:
Removed completely in TB71. Use
All former values of the type
parameter of the textbox
element are supported by html:input
as well. For proper styling include the following CSS file: chrome://messenger/skin/input-fields.css
The flex
parameter is no longer supported and should be removed. Attach the input-container
class to a surrounding hbox
to force the input field to behave like a former flex="1"
textbox
.
If the input fields context menu is not working, you need to include two JavaScript files by adding:
JavaScript methods that are using element.localName == "textbox"
, getElementsByTagName("textbox")
or similar need to be updated as well.
Visually compare the fields before and after the conversion to be sure the UI, sizing, and spacing doesn't change.
In TB78, the XUL element wizard
may no longer be a top level element, but must be encapsulated by a window
element which includes some fluent locales:
If you have referred to the wizard
element by document.documentElement.*
, this is now referring to the window
element. Use getElementById()
instead.
If you set the label of a wizardpage
element via JavaScript during wizard load, it will be ignored. You have to manually call _adjustWizardHeader
after the label has been set. :
With TB78, the method scrollToIndex(idx)
has been removed, replace it with:
With TB69, the default namespace for createElement has switched from XUL to HTML. So you can no longer create XUL elements with document.createElement()
(but HTML elements). To create XUL elements, use:
The first parameter used to be an array and the second one its length. This length parameter has been dropped, causing all subsequent arguments to shift by one. Furthermore, to create a default socket, you now have to pass an empty array as the first parameter, instead of null.
To stay backward compatible, check the argument count of "createTransport". In case it is 4 it is the new interface, in case it is 5 you got the old interface. Alternatively, you may also check if the version of Thunderbird is 69 or later.
Merged into nsICookie.
With TB70, window objects don't need to be and cannot be QI'ed to nsIDOMChromeWindow, nsIDOMWindow and nsIInterfaceRequestor. You can just remove its usage, this is backwards compatible to TB 68.
This does not apply to nsIXULWindow
, which for example is used in nsIWindowMediatorListener.onOpenWindow(xulWindow)
.
Equally, TreeColumns and TreeContentView don't need to be and cannot be QI'ed to nsITreeView.
Renamed. Use
Module file extension changed in TB78 from js
to jsm
, now available via
In TB78 the function AddRecipient()
in the contact sidebar has been renamed to awAddRecipientsArray()
.
In TB71 MailServices.headerParser.parseHeadersWithArray()
has been removed. Instead, use:
nsIEditorStyleSheets.addOverrideStyleSheet(uri)
-> windowUtils.loadSheetUsingURIString(uri, windowUtils.AGENT_SHEET)
\
nsIEditorStyleSheets.removeOverrideStyleSheet(uri)
-> windowUtils.removeSheet(uri, windowUtils.AGENT_SHEET)
\
nsIEditorStyleSheets.enableStyleSheet(uri, enable)
Either manually load or remove the stylesheet:
-> windowUtils.loadStyleSheetUsingURIString(uri, windowUtils.AGENT_SHEET)
-> windowUtils.removeSheet(uri, windowUtils.AGENT_SHEET)
In TB68 a nsIAbDirectory
could be searched by simply attaching a search query to the URI of the directory when calling getDirectory()
:
In TB78 getDirectory()
no longer accepts search queries and throws an error. Instead, use the search()
method, which uses an nsIAbDirSearchListener
. A simple promisified implementation could look like so:
MailServices.ab.getDirectory(uri).search(search, listener)
will not return anything, if search
is empty.
With TB70, these two attributes have been removed from XUL elements like textbox
, radio
, checkbox
and friends. This is no longer supported:
In TB78, the XUL element toolbar
with attribute customizable
has been re-implemented as a . It needs an additional is
attribute. The following example is taken from the :
Bug introduced a breaking change to the nsISocketTransportService
interface:
The 3rd parameter has been dropped, which was the length of the array passed in as the 2nd parameter. See the .
Since TB69 nsIPromptService.select()
/ Services.prompt.select()
has dropped the parameter which specifies the length of the array of the item list which the user can choose from. See the .
The in TB77 necessitates the following changes:
These two methods are leftovers from de-XBL effort and have not been working since TB68. In TB72 they have been removed completely and using them will now throw an error. They have to be replaced by , or similar methods.
The documents these methods have been used with have probably changed dramatically. Check out to learn about the current layouts.
Most of the XUL based preferences system has been long removed and had to be replaced by either using the or by manually reimplementing that functionality using thensIPrefService
.
The second approach is not affected by this change, as it has full control over the load and save process for all its preferences. The has been updated and now supports:
The nsIPrefService
is not available via WebExtension APIs. It is therefore advised to move away from storing addon preferences in a preference branch and instead use the local storage via the API. More information can be found in the .