Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add pushlog feature for all branches (#51) #197

Closed
wants to merge 13 commits into from
2 changes: 1 addition & 1 deletion extension/chrome/content/browser.js
Expand Up @@ -4,7 +4,7 @@

var nightlyApp = {

repository: ['mozilla-central','mozilla-aurora'],
repository: ['mozilla-central','mozilla-aurora','mozilla-beta','mozilla-release','mozilla-esr38','mozilla-esr31','mozilla-esr24','mozilla-esr17','mozilla-esr10'],
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Everything below mozilla-esr38 is unsupported. No need to get those added. Also I wonder if we should better have a centralized config file to handle updates to those settings more easily.


storedTitle: document.documentElement.getAttribute("titlemodifier"),

Expand Down
2 changes: 1 addition & 1 deletion extension/chrome/content/messenger.js
Expand Up @@ -4,7 +4,7 @@

var nightlyApp = {

repository: ['comm-central','comm-aurora'],
repository: ['comm-central','comm-aurora','comm-beta','comm-release','comm-esr38','comm-esr31','comm-esr24','comm-esr17','comm-esr10'],
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same here as above.


savedTabmailSetDocumentTitle: null,
tabmailSetDocumentTitle: null,
Expand Down
6 changes: 2 additions & 4 deletions extension/chrome/content/nightly.js
Expand Up @@ -64,9 +64,7 @@ isTrunk: function() {
isNightlyRepo = isNightlyRepo || nightly.getRepo().indexOf(repo) != -1;
}

return isNightlyRepo
&& (nightly.variables.platformversion.indexOf("pre") != -1 ||
nightly.variables.platformversion.indexOf(".0a") != -1);
return isNightlyRepo;
},

/**
Expand Down Expand Up @@ -131,7 +129,7 @@ init: function() {

var changeset = nightly.getChangeset();
var currChangeset = nightly.preferences.getCharPref("currChangeset");
if (nightly.isTrunk() && (!currChangeset || changeset != currChangeset)) {
if (!currChangeset || changeset != currChangeset) {
// keep track of previous nightly's changeset for pushlog
nightly.preferences.setCharPref("prevChangeset", currChangeset);
nightly.preferences.setCharPref("currChangeset", changeset);
Expand Down
2 changes: 1 addition & 1 deletion extension/chrome/content/suite.js
Expand Up @@ -4,7 +4,7 @@

var nightlyApp = {

repository: ['comm-central','comm-aurora'],
repository: ['comm-central','comm-aurora','comm-beta','comm-release','comm-esr38','comm-esr31','comm-esr24','comm-esr17','comm-esr10'],
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

And here too.


_oldUpdateTitlebar: null,
debugQATitleModifierWorkaround: null,
Expand Down