-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathrelease-notes.html
More file actions
16 lines (11 loc) · 1.25 KB
/
release-notes.html
File metadata and controls
16 lines (11 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<meta charset="UTF-8">
<style>b { display: block; margin-top: 10px; } </style>
<ul>
<li> Minimum Thunderbird Version was set to 140 to avoid problems with deprecated APIs and to focus on modern Thunderbird versions <a href="https://github.com/RealRaven2000/SmartTemplates/issues/418">[issue 418]</a>.
Future development will focus on Thunderbird ESR 140 and the upcoming 153 release. Thunderbird platform changes require replacing legacy features such as preference storage and file access with modern APIs.
New file access APIs are currently being implemented and may only be available in newer Thunderbird versions. Most development effort over the next three months will be dedicated to this work to future-proof SmartTemplates.
</li>
<li> Fixed: Sandbox script stops functioning in Tb 150 beta 3 <a href="https://github.com/RealRaven2000/SmartTemplates/issues/417">[issue 417]</a> because string prototype modification was deprecated in Thunderbird 150.
From version 149 onward, we require the syntax `from()` when the variable has no parameters. Chaining of variables can be done using the form `(await from()).someStringFunction()`.
Added detailed diagnostics for syntax problems with literal parameters ($mail) or missing empty parameters `()`. </li>
</ul>