Skip to content

Commit 31c16d4

Browse files
committed
version 0.3.5 is ready
1 parent 16380bd commit 31c16d4

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

Diff for: src/gmail-notifier.xpi

-2 Bytes
Binary file not shown.

Diff for: src/lib/main.js

+1-6
Original file line numberDiff line numberDiff line change
@@ -425,12 +425,7 @@ var welcome = function () {
425425
if (!prefs.newVersion) return;
426426
if (prefs.welcome) {
427427
timer.setTimeout(function () {
428-
if (prefs.newVersion == "install") {
429-
open(config.homepage);
430-
}
431-
else {
432-
open(config.update + "?v=" + self.version);
433-
}
428+
open((prefs.newVersion == "install" ? config.homepage : config.update) + "?v=" + self.version);
434429
prefs.newVersion = "";
435430
}, 3000);
436431
}

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.5b3",
13+
"version": "0.3.5",
1414
"lib": "lib",
1515
"main": "main",
1616

0 commit comments

Comments
 (0)