Skip to content

Commit 5643d7e

Browse files
committed
version 0.3.7 is ready
1 parent d29336c commit 5643d7e

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

Diff for: src/gmail-notifier.xpi

-169 KB
Binary file not shown.

Diff for: src/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"contributors": ["CaTz", "ecaron"],
1111

1212
"url": "",
13-
"version": "0.3.6",
13+
"version": "0.3.7",
1414
"lib": "lib",
1515
"main": "main",
1616

Diff for: template/bootstrap.js

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* vim:set ts=2 sw=2 sts=2 expandtab */
21
/* This Source Code Form is subject to the terms of the Mozilla Public
32
* License, v. 2.0. If a copy of the MPL was not distributed with this
43
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
@@ -220,8 +219,6 @@ function startup(data, reasonCode) {
220219
// options used by system module.
221220
// File to write 'OK' or 'FAIL' (exit code emulation).
222221
resultFile: options.resultFile,
223-
// File to write stdout.
224-
logFile: options.logFile,
225222
// Arguments passed as --static-args
226223
staticArgs: options.staticArgs,
227224

@@ -235,6 +232,7 @@ function startup(data, reasonCode) {
235232
stopOnError: options.stopOnError,
236233
verbose: options.verbose,
237234
parseable: options.parseable,
235+
checkMemory: options.check_memory,
238236
}
239237
}
240238
});
@@ -248,7 +246,8 @@ function startup(data, reasonCode) {
248246
prefsURI: rootURI + 'defaults/preferences/prefs.js'
249247
});
250248
} catch (error) {
251-
dump('Bootstrap error: ' + error.message + '\n' +
249+
dump('Bootstrap error: ' +
250+
(error.message ? error.message : String(error)) + '\n' +
252251
(error.stack || error.fileName + ': ' + error.lineNumber) + '\n');
253252
throw error;
254253
}

0 commit comments

Comments
 (0)