Mercurial > hg-website
annotate templates/data @ 297:b697437f8494
downloads: Updated TortoiseHg download
author | David Soria Parra <dsp@php.net> |
---|---|
date | Thu, 03 Dec 2009 15:10:21 +0100 |
parents | a55b41733185 |
children | dd116d3107d8 |
rev | line source |
---|---|
260
dd7fababf8b6
Working version of the download button with simple OS detection
David Soria Parra <dsp@php.net>
parents:
258
diff
changeset
|
1 {% set downloads = { |
296
a55b41733185
downloads: Downloads for Mercurial 1.4.1
David Soria Parra <dsp@php.net>
parents:
292
diff
changeset
|
2 'current': '1.4.1', |
a55b41733185
downloads: Downloads for Mercurial 1.4.1
David Soria Parra <dsp@php.net>
parents:
292
diff
changeset
|
3 '1.4.1': { |
297
b697437f8494
downloads: Updated TortoiseHg download
David Soria Parra <dsp@php.net>
parents:
296
diff
changeset
|
4 'Windows (TortoiseHg)': 'http://bitbucket.org/tortoisehg/stable/downloads/TortoiseHg-0.9.1.1-hg-1.4.1.exe', |
296
a55b41733185
downloads: Downloads for Mercurial 1.4.1
David Soria Parra <dsp@php.net>
parents:
292
diff
changeset
|
5 'Windows': 'http://mercurial.berkwood.com/binaries/Mercurial-1.4.1.exe', |
a55b41733185
downloads: Downloads for Mercurial 1.4.1
David Soria Parra <dsp@php.net>
parents:
292
diff
changeset
|
6 'Mac OS X 10.6': 'http://mercurial.berkwood.com/binaries/Mercurial-1.4.1-py2.6-macosx10.6.zip', |
a55b41733185
downloads: Downloads for Mercurial 1.4.1
David Soria Parra <dsp@php.net>
parents:
292
diff
changeset
|
7 'Mac OS X 10.5': 'http://mercurial.berkwood.com/binaries/Mercurial-1.4.1-py2.5-macosx10.5.zip', |
a55b41733185
downloads: Downloads for Mercurial 1.4.1
David Soria Parra <dsp@php.net>
parents:
292
diff
changeset
|
8 'Source code': 'http://mercurial.selenic.com/release/mercurial-1.4.1.tar.gz'}, |
291
257adca09001
downloads: Downloads for Mercurial 1.4
David Soria Parra <dsp@php.net>
parents:
283
diff
changeset
|
9 '1.4': { |
292
0e4c3d6a2fe7
Fix typo Tortoise HG -> TortoiseHg
David Soria Parra <dsp@php.net>
parents:
291
diff
changeset
|
10 'Windows (TortoiseHg)': 'http://bitbucket.org/tortoisehg/stable/downloads/TortoiseHg-0.9-hg-1.4.exe', |
291
257adca09001
downloads: Downloads for Mercurial 1.4
David Soria Parra <dsp@php.net>
parents:
283
diff
changeset
|
11 'Windows': 'http://mercurial.berkwood.com/binaries/Mercurial-1.4.exe', |
257adca09001
downloads: Downloads for Mercurial 1.4
David Soria Parra <dsp@php.net>
parents:
283
diff
changeset
|
12 'Mac OS X 10.6': 'http://mercurial.berkwood.com/binaries/Mercurial-1.4-py2.6-macosx10.6.zip', |
257adca09001
downloads: Downloads for Mercurial 1.4
David Soria Parra <dsp@php.net>
parents:
283
diff
changeset
|
13 'Mac OS X 10.5': 'http://mercurial.berkwood.com/binaries/Mercurial-1.4-py2.5-macosx10.5.zip', |
257adca09001
downloads: Downloads for Mercurial 1.4
David Soria Parra <dsp@php.net>
parents:
283
diff
changeset
|
14 'Source code': 'http://mercurial.selenic.com/release/mercurial-1.4.tar.gz'}, |
260
dd7fababf8b6
Working version of the download button with simple OS detection
David Soria Parra <dsp@php.net>
parents:
258
diff
changeset
|
15 '1.3.1': { |
292
0e4c3d6a2fe7
Fix typo Tortoise HG -> TortoiseHg
David Soria Parra <dsp@php.net>
parents:
291
diff
changeset
|
16 'Windows (TortoiseHg)': 'http://bitbucket.org/tortoisehg/stable/downloads/TortoiseHg-0.8.1-hg-1.3.1.exe', |
260
dd7fababf8b6
Working version of the download button with simple OS detection
David Soria Parra <dsp@php.net>
parents:
258
diff
changeset
|
17 'Windows': 'http://mercurial.berkwood.com/binaries/Mercurial-1.3.1.exe', |
dd7fababf8b6
Working version of the download button with simple OS detection
David Soria Parra <dsp@php.net>
parents:
258
diff
changeset
|
18 'Mac OS X 10.6': 'http://mercurial.berkwood.com/binaries/Mercurial-1.3.1-py2.6-macosx10.6.zip', |
dd7fababf8b6
Working version of the download button with simple OS detection
David Soria Parra <dsp@php.net>
parents:
258
diff
changeset
|
19 'Mac OS X 10.5': 'http://mercurial.berkwood.com/binaries/Mercurial-1.3.1-py2.5-macosx10.5.zip', |
283
b7d5f97e1034
simplify urls: point to mercurial.selenic.com, remove index.cgi from wiki urls
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents:
260
diff
changeset
|
20 'Source code': 'http://mercurial.selenic.com/release/mercurial-1.3.1.tar.gz'}} |
260
dd7fababf8b6
Working version of the download button with simple OS detection
David Soria Parra <dsp@php.net>
parents:
258
diff
changeset
|
21 %} |