Skip to content

Commit fddb507

Browse files
committed
v1.30.9
(2019-12-27) ! block all prompts not block first dialog on startup
1 parent c0bd9e1 commit fddb507

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed
203 KB
Binary file not shown.

src/changes.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ Firefox 57+ is no longer supported and never will be, unless mozilla pulls it's
1111
https://blog.mozilla.org/addons/2016/11/23/add-ons-in-2017/comment-page-1/
1212
If it works - good, if not - try Waterfox or Palemoon.
1313

14+
v1.30.9 (2019-12-27)
15+
! block all prompts not block first dialog on startup
16+
1417
v1.30.8.2 (2019-09-10)
1518
* support for Pale Moon 28
1619

src/chrome/content/commonDialog.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,8 @@ mapaPlus.check = function check()
167167
}
168168
this.accept();
169169
log.debug([(this.pass && (this.core.status != 1 || this.core.locked || !this.core.startupPassed)), this.pass, this.core.status != 1, this.core.locked, !this.core.startupPassed, this.core.dialogForce]);
170-
if (this.pass && (this.core.status != 1 || this.core.locked || !this.core.startupPassed))
170+
// if (this.pass && (this.core.status != 1 || this.core.locked || !this.core.startupPassed))
171+
if (this.pass && (this.core.status || this.core.locked || !this.core.startupPassed))
171172
{
172173
let first = this.core.windowFirst(this.windowType);
173174
this.windowID = this.core.windowAdd(mapaPlus, this.windowType);
@@ -222,7 +223,7 @@ log.debug(this.core.window[this.windowType]);
222223
//log.debug([this.core.startupPassed, !this.core.dialogShow, (this.core.pref("suppress") == 2 || this.core.pref_SuppressTemp), this.core.pref("suppress"),this.core.pref_SuppressTemp]);
223224
if (!this.core.dialogShow && (this.core.pref("suppress") == 2 || this.core.pref_SuppressTemp))
224225
{
225-
if ("mapaPlus" in this.mainWindow && this.mainWindow.mapaPlus && this.mainWindow.mapaPlus.suppressed)
226+
if (this.mainWindow && "mapaPlus" in this.mainWindow && this.mainWindow.mapaPlus && this.mainWindow.mapaPlus.suppressed)
226227
this.mainWindow.mapaPlus.suppressed();
227228

228229
this.core.dialogShow = false;

src/install.rdf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<Description about="urn:mozilla:install-manifest">
55
<em:id>masterpasswordtimeoutplus@vano</em:id>
6-
<em:version>1.30.8.2</em:version>
6+
<em:version>1.30.9</em:version>
77
<em:type>2</em:type>
88
<em:unpack>true</em:unpack>
99
<em:name>Master Password+</em:name>

0 commit comments

Comments
 (0)