Page 1 of 1

Pale Moon on Linux not Pale Moon on Linux for AMO

Posted: 2014-10-25, 09:42
by SvenG
When I want to install a Linux specific addon, AMO tells me I do not have a Linux OS.... Example
https://addons.mozilla.org/de/firefox/a ... /versions/
after manual download the addon works perfectly.

Re: Pale Moon on Linux not Pale Moon on Linux for AMO

Posted: 2014-10-25, 10:14
by Moonchild
Since AMO requires a specific override, the OS passed in that override will be fixed.

To work around this, change the about:config preference general.useragent.override.addons.mozilla.org to something more applicable to your OS.
e.g.

Code: Select all

Mozilla/5.0 (Linux; X11; rv:24.9) Gecko/20100101 Firefox/24.9 PaleMoon/24.9
There is currently no automated way built in for this for Linux-specific addons through AMO (thanks to their UA sniffing and refusing service accordingly).
The UA override for AMO is something for the Linux maintainer to change in the branding prefs when building.

Re: Pale Moon on Linux not Pale Moon on Linux for AMO

Posted: 2014-10-25, 10:20
by SvenG
Okay, so these overwrite the general user agent... didn't think about that. But, yes, the default value should be changed during build time.

Thanks.

Re: Pale Moon on Linux not Pale Moon on Linux for AMO

Posted: 2014-10-28, 07:53
by access2godzilla
This could also be added in the following manner:

browser/app/profile/firefox.js:

Code: Select all

#ifdef XP_LINUX
pref("general.useragent.override.addons.mozilla.org","Mozilla/5.0 (Linux; X11; rv:24.9) Gecko/20100101 Firefox/24.9 PaleMoon/24.9");
#elif XP_WIN
pref("general.useragent.override.addons.mozilla.org","Mozilla/5.0 (Windows NT 6.3; rv:24.9) Gecko/20100101 Firefox/24.9 PaleMoon/24.9");
#elif XP_MACOSX
// [...]
#endif

Re: Pale Moon on Linux not Pale Moon on Linux for AMO

Posted: 2014-10-28, 08:41
by New Tobin Paradigm
access2godzilla wrote:This could also be added in the following manner:

browser/app/profile/firefox.js:

Code: Select all

#ifdef XP_LINUX
pref("general.useragent.override.addons.mozilla.org","Mozilla/5.0 (Linux; X11; rv:24.9) Gecko/20100101 Firefox/24.9 PaleMoon/24.9");
#elif XP_WIN
pref("general.useragent.override.addons.mozilla.org","Mozilla/5.0 (Windows NT 6.3; rv:24.9) Gecko/20100101 Firefox/24.9 PaleMoon/24.9");
#elif XP_MACOSX
// [...]
#endif
That is a solution. a2g.. why not create a patch and do a pull request.