Skip to content

Commit 24c9800

Browse files
authored
Merge pull request #769 from thunderbird/v14.1.9
V14.1.9
2 parents fcbac40 + a097645 commit 24c9800

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"title": "ImportExportTools NG",
33
"name": "import-export-tools-ng",
4-
"version": "14.1.8",
4+
"version": "14.1.9",
55
"description": "Import and export next-gen tools for messages and folders",
66
"author": "Christopher Leidigh",
77
"engines": {

src/chrome/content/mboximport/importMboxModule-5.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ var { ietngUtils } = ChromeUtils.importESModule("chrome://mboximport/content/mbo
3434
var mboximportbundle = Services.strings.createBundle("chrome://mboximport/locale/mboximport.properties");
3535

3636
// as a module loaded by an ES6 module we bump name version so we avoid cache
37-
console.log("IETNG: importMboxModule.js -v6");
37+
console.log("IETNG: importMboxModule.js -v7");
3838

3939
// if these are const or let they produce redeclaration error5
4040
// Common RFC822 header field-names for From_ exception analysis
@@ -78,7 +78,7 @@ async function mboxCopyImport(options) {
7878
// const kReadChunk = (50 * 1000) + 15; // 211 ex 19492 msg write bndry exc
7979

8080
const kReadChunk = (150 * 1000) + 0; // 211 ex 19492 msg write bndry exc
81-
const kExceptWin = 300;
81+
const kExceptWin = 600;
8282

8383
// we take the easy AND safe approach for the rare and
8484
// onerous CR line breaks from OSX 9-

src/chrome/content/mboximport/messengerOL.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ window.ietngAddon = {};
1010
window.ietngAddon.window = window;
1111

1212
// use global date obj for our es6 module queries
13-
window.ietngAddon.dateForDebugging = "";
14-
//window.ietngAddon.dateForDebugging = new Date();
13+
//window.ietngAddon.dateForDebugging = "";
14+
window.ietngAddon.dateForDebugging = new Date();
1515

1616
Services.scriptloader.loadSubScript("chrome://mboximport/content/mboximport/mboximport.js", window, "UTF-8");
1717
Services.scriptloader.loadSubScript("chrome://mboximport/content/mboximport/exportTools.js", window, "UTF-8");

src/manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"manifest_version": 2,
33
"name": "__MSG_extensionName__",
4-
"version": "14.1.8",
4+
"version": "14.1.9",
55
"description": "__MSG_extensionDescription__",
66
"author": "Christopher Leidigh",
77
"applications": {
88
"gecko": {
99
"id": "ImportExportToolsNG@cleidigh.kokkini.net",
10-
"strict_min_version": "115.0",
11-
"strict_max_version": "138.*"
10+
"strict_min_version": "128.0",
11+
"strict_max_version": "139.*"
1212
}
1313
},
1414
"browser_action": {
515 KB
Binary file not shown.
515 KB
Binary file not shown.

0 commit comments

Comments
 (0)