6

We have an in-house Firefox add-on at work, and I'd like to be notified of new Firefox releases so I can test our add-on right away.

I don't use Firefox as my primary browser. I'm also on Ubuntu and use the Firefox from Ubuntu, so even if I did have it as my primary browser, it takes some time before I get the latest Firefox version.

3 Answers3

4

The mozilla.announce group is the simplest way find out about the the latest releases from Mozilla. Firefox, Thunderbird, Seamonkey, and other products are included in this stream so you will need to filter it.

The Mozilla Firefox future release blog is the easiest place to keep informed on the latest Aurora, Beta, and Release versions of Firefox.

The Release Tracking wiki will give you an idea when to expect the next release.

You can also sign up for the Mozilla Firefox newsletter.

Jeremy W
  • 3,659
3

What you want is RSS subscription of this hyperlink. However, it gives updates from Thunderbird also but it will serve your purpose.

Mozilla Developer News

0

Well, if nothing else helps, you can always crawl -

import urllib2
from BeautifulSoup import BeautifulSoup

url = "http://www.mozilla.org/en-US/firefox/all.html";

page = urllib2.urlopen(url)
soup = BeautifulSoup(page)

version = soup.find('tr', {'id': 'en-US'}).find('td', {'class': 'curVersion'}).text
print version # Put a mail command here

Run the above code as cron every hour. Should work.

Bibhas
  • 2,596