Pale Moon on Linux not Pale Moon on Linux for AMO

Users and developers helping users with generic and technical Pale Moon issues on all operating systems.

Moderator: trava90

Forum rules
This board is for technical/general usage questions and troubleshooting for the Pale Moon browser only.
Technical issues and questions not related to the Pale Moon browser should be posted in other boards!
Please keep off-topic and general discussion out of this board, thank you!
SvenG

Pale Moon on Linux not Pale Moon on Linux for AMO

Unread post by SvenG » 2014-10-25, 09:42

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.

User avatar
Moonchild
Pale Moon guru
Pale Moon guru
Posts: 35574
Joined: 2011-08-28, 17:27
Location: Motala, SE
Contact:

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

Unread post by Moonchild » 2014-10-25, 10:14

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.
"Sometimes, the best way to get what you want is to be a good person." -- Louis Rossmann
"Seek wisdom, not knowledge. Knowledge is of the past; wisdom is of the future." -- Native American proverb
"Linux makes everything difficult." -- Lyceus Anubite

SvenG

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

Unread post by SvenG » 2014-10-25, 10:20

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.

access2godzilla

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

Unread post by access2godzilla » 2014-10-28, 07:53

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

New Tobin Paradigm

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

Unread post by New Tobin Paradigm » 2014-10-28, 08:41

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.

Locked