Skip to content

Commit

Permalink
Updates for 78.6
Browse files Browse the repository at this point in the history
  • Loading branch information
jobisoft committed Dec 15, 2020
1 parent 915caa3 commit 292e910
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 8 deletions.
4 changes: 2 additions & 2 deletions cloudFile.rst
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Update a cloud file account
- ``accountId`` (string) Unique identifier of the account
- ``updateProperties`` (object)

- [``configured``] (boolean) If true, the account is configured and ready to use. Only configured accounts are offered to the user.
- [``configured``] (boolean) If true, the account is configured and ready to use. This property is currently ignored and all accounts are assumed to be configured.
- [``managementUrl``] (string) A page for configuring accounts, to be displayed in the preferences UI.
- [``spaceRemaining``] (integer) The amount of remaining space on the cloud provider, in bytes. Set to -1 if unsupported.
- [``spaceUsed``] (integer) The amount of space already used on the cloud provider, in bytes. Set to -1 if unsupported.
Expand Down Expand Up @@ -165,7 +165,7 @@ Information about a cloud file account

object:

- ``configured`` (boolean) If true, the account is configured and ready to use. Only configured accounts are offered to the user.
- ``configured`` (boolean) If true, the account is configured and ready to use. This property is currently ignored and all accounts are assumed to be configured.
- ``id`` (string) Unique identifier of the account
- ``managementUrl`` (string) A page for configuring accounts, to be displayed in the preferences UI.
- ``name`` (string) A user-friendly name for this account.
Expand Down
5 changes: 5 additions & 0 deletions composeScripts.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ __ https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/co

Registering a compose script through ``manifest.json`` is not possible at this point.

Permissions
===========

- messagesModify "Read and modify your email messages as they are displayed to you"

.. note::

The permission ``compose`` is required to use ``composeScripts``.
Expand Down
5 changes: 5 additions & 0 deletions overlay/windows.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@
}
}
]
},
{
"name": "openDefaultBrowser",
"added": "84",
"backported": "78.6"
}
],
"types": [
Expand Down
23 changes: 17 additions & 6 deletions windows.rst
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,17 @@ Removes (closes) a window, and all the tabs inside it.

- ``windowId`` (integer)

.. _windows.openDefaultBrowser:

openDefaultBrowser(url)
-----------------------

*Added in Thunderbird 84, backported to 78.6*

Opens the provided URL in the default system browser.

- ``url`` (string)

.. _Promise: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise

Events
Expand Down Expand Up @@ -186,9 +197,9 @@ CreateType

Specifies what type of browser window to create. The 'panel' and 'detached_panel' types create a popup unless the '--enable-panels' flag is set.

`string <enum_CreateType_32_>`_
`string <enum_CreateType_33_>`_

.. _enum_CreateType_32:
.. _enum_CreateType_33:

Values for CreateType:

Expand Down Expand Up @@ -236,9 +247,9 @@ WindowState

The state of this window.

`string <enum_WindowState_46_>`_
`string <enum_WindowState_47_>`_

.. _enum_WindowState_46:
.. _enum_WindowState_47:

Values for WindowState:

Expand All @@ -255,9 +266,9 @@ WindowType

The type of window this is. Under some circumstances a Window may not be assigned type property.

`string <enum_WindowType_46_>`_
`string <enum_WindowType_47_>`_

.. _enum_WindowType_46:
.. _enum_WindowType_47:

Values for WindowType:

Expand Down

0 comments on commit 292e910

Please sign in to comment.