Bug 1432310 - Fix manual update URL for beta. r=glandium

MozReview-Commit-ID: J6O26SpwVJo

--HG--
extra : rebase_source : ca7f85ebeab725d7df0d7fc826fb1b2dbc37abb3
This commit is contained in:
Panos Astithas 2018-01-29 16:02:45 -08:00
Родитель f713c5d75e
Коммит 9ff9b6731e
1 изменённых файлов: 10 добавлений и 4 удалений

Просмотреть файл

@ -9,12 +9,18 @@ pref("startup.homepage_welcome_url.additional", "");
pref("app.update.interval", 43200); // 12 hours
// Give the user x seconds to react before showing the big UI. default=192 hours
pref("app.update.promptWaitTime", 691200);
// URL user can browse to manually if for some reason all update installation
// attempts fail.
// app.update.url.manual: URL user can browse to manually if for some reason
// all update installation attempts fail.
// app.update.url.details: a default value for the "More information about this
// update" link supplied in the "An update is available" page of the update
// wizard.
#if MOZ_UPDATE_CHANNEL == beta
pref("app.update.url.manual", "https://www.mozilla.org/firefox/beta");
pref("app.update.url.details", "https://www.mozilla.org/%LOCALE%/firefox/beta/notes");
#else
pref("app.update.url.manual", "https://www.mozilla.org/firefox/");
// A default value for the "More information about this update" link
// supplied in the "An update is available" page of the update wizard.
pref("app.update.url.details", "https://www.mozilla.org/%LOCALE%/firefox/notes");
#endif
pref("app.releaseNotesURL", "https://www.mozilla.org/%LOCALE%/firefox/%VERSION%/releasenotes/?utm_source=firefox-browser&utm_medium=firefox-browser&utm_campaign=whatsnew");