Skip to content

Commit

Permalink
v1.30.9
Browse files Browse the repository at this point in the history
(2019-12-27)

! block all prompts not block first dialog on startup
  • Loading branch information
vanowm committed Dec 28, 2019
1 parent c0bd9e1 commit fddb507
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
Binary file not shown.
3 changes: 3 additions & 0 deletions src/changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ Firefox 57+ is no longer supported and never will be, unless mozilla pulls it's
https://blog.mozilla.org/addons/2016/11/23/add-ons-in-2017/comment-page-1/
If it works - good, if not - try Waterfox or Palemoon.

v1.30.9 (2019-12-27)
! block all prompts not block first dialog on startup

v1.30.8.2 (2019-09-10)
* support for Pale Moon 28

Expand Down
5 changes: 3 additions & 2 deletions src/chrome/content/commonDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,8 @@ mapaPlus.check = function check()
}
this.accept();
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]);
if (this.pass && (this.core.status != 1 || this.core.locked || !this.core.startupPassed))
// if (this.pass && (this.core.status != 1 || this.core.locked || !this.core.startupPassed))
if (this.pass && (this.core.status || this.core.locked || !this.core.startupPassed))
{
let first = this.core.windowFirst(this.windowType);
this.windowID = this.core.windowAdd(mapaPlus, this.windowType);
Expand Down Expand Up @@ -222,7 +223,7 @@ log.debug(this.core.window[this.windowType]);
//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]);
if (!this.core.dialogShow && (this.core.pref("suppress") == 2 || this.core.pref_SuppressTemp))
{
if ("mapaPlus" in this.mainWindow && this.mainWindow.mapaPlus && this.mainWindow.mapaPlus.suppressed)
if (this.mainWindow && "mapaPlus" in this.mainWindow && this.mainWindow.mapaPlus && this.mainWindow.mapaPlus.suppressed)
this.mainWindow.mapaPlus.suppressed();

this.core.dialogShow = false;
Expand Down
2 changes: 1 addition & 1 deletion src/install.rdf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<Description about="urn:mozilla:install-manifest">
<em:id>masterpasswordtimeoutplus@vano</em:id>
<em:version>1.30.8.2</em:version>
<em:version>1.30.9</em:version>
<em:type>2</em:type>
<em:unpack>true</em:unpack>
<em:name>Master Password+</em:name>
Expand Down

0 comments on commit fddb507

Please sign in to comment.