Skip to content

Commit

Permalink
[bug 808149] Add Firefox 18, hide Firefox 14.
Browse files Browse the repository at this point in the history
  • Loading branch information
rlr committed Nov 13, 2012
1 parent 97f6132 commit 2c15b07
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions apps/wiki/config.py
Expand Up @@ -26,14 +26,16 @@
'id, name, long, slug, max_version, show_in_ui, '
'is_default')
DESKTOP_FIREFOX_VERSIONS = (
VersionMetadata(31, _lazy(u'Firefox 18'),
_lazy(u'Firefox 18'), 'fx18', 18.9999, True, False),
VersionMetadata(29, _lazy(u'Firefox 17'),
_lazy(u'Firefox 17'), 'fx17', 17.9999, True, False),
VersionMetadata(27, _lazy(u'Firefox 16'),
_lazy(u'Firefox 16'), 'fx16', 16.9999, True, True),
VersionMetadata(25, _lazy(u'Firefox 15'),
_lazy(u'Firefox 15'), 'fx15', 15.9999, True, False),
VersionMetadata(23, _lazy(u'Firefox 14'),
_lazy(u'Firefox 14'), 'fx14', 14.9999, True, False),
_lazy(u'Firefox 14'), 'fx14', 14.9999, False, False),
VersionMetadata(21, _lazy(u'Firefox 13'),
_lazy(u'Firefox 13'), 'fx13', 13.9999, False, False),
VersionMetadata(19, _lazy(u'Firefox 12'),
Expand All @@ -60,14 +62,16 @@
VersionMetadata(3, _lazy(u'Firefox 3.0'),
_lazy(u'Firefox 3.0'), 'fx3', 3.4999, False, False))
MOBILE_FIREFOX_VERSIONS = (
VersionMetadata(30, _lazy(u'Firefox 18'), _lazy(u'Firefox 18 for Mobile'),
'm18', 18.9999, True, False),
VersionMetadata(28, _lazy(u'Firefox 17'), _lazy(u'Firefox 17 for Mobile'),
'm17', 17.9999, True, False),
VersionMetadata(26, _lazy(u'Firefox 16'), _lazy(u'Firefox 16 for Mobile'),
'm16', 16.9999, True, True),
VersionMetadata(24, _lazy(u'Firefox 15'), _lazy(u'Firefox 15 for Mobile'),
'm15', 15.9999, True, False),
VersionMetadata(22, _lazy(u'Firefox 14'), _lazy(u'Firefox 14 for Mobile'),
'm14', 14.9999, True, False),
'm14', 14.9999, False, False),
# Firefox 13 for Mobile was skipped.
VersionMetadata(20, _lazy(u'Firefox 12'), _lazy(u'Firefox 12 for Mobile'),
'm12', 12.9999, False, False), # 11 and 12 for mobile were skipped.
Expand Down

0 comments on commit 2c15b07

Please sign in to comment.