-
Notifications
You must be signed in to change notification settings - Fork 5
/
news.html
2586 lines (2089 loc) · 149 KB
/
news.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Metalinker.org - Bridging the gap</title>
<link rel="stylesheet" type="text/css" href="etc/style.css" />
<link rel="icon" href="images/favicon.ico" type="image/x-icon" />
<link rel="alternate" type="application/atom+xml" title="RSS" href="http://groups.google.com/group/metalink-announce/feed/atom_v1_0_msgs.xml" />
</head>
<body>
<!-- wrapper top image -->
<div id="wrappertop">
</div>
<!-- "wrappertop -->
<div id="wrapperbody">
<!-- header -->
<div id="header">
<a href="http://www.metalinker.org/"><img src="images/metalink_logo.png" id="logo" alt="Metalink - bridging the gap" /></a><br />
<ins>
<a href="why.html"><img src="images/nav_why.png" alt="Why Metalink?" /></a>
<a href="samples.html"><img src="images/nav_impl.png" alt="Implementation" /></a>
<a href="implementation.html"><img src="images/nav_samples.png" alt="Samples" /></a>
</ins>
</div>
<div id="rightcolumn">
<img src="images/pill-news.png" alt="" />
<table border="0">
<tr>
<td align="right" valign="top" nowrap="nowrap">04 Sep :</td>
<td valign="top"><a href="http://www.downthemall.net/" target="_blank">DownThemAll! 2.0.15 (Firefox extension)</a> is out! This is the easiest way to try out Metalink on Firefox!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">03 Sep :</td>
<td valign="top"><a href="https://github.com/rockdaboot/mget" target="_blank">mget</a> is an experimental (alpha) wget-like command line tool with Metalink (<a href="http://tools.ietf.org/html/rfc5854" target="_blank">RFC 5854</a>/<a href="http://tools.ietf.org/html/rfc6249" target="_blank">RFC 6249</a>) support!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">30 Aug :</td>
<td valign="top"><a href="http://www.downthemall.net/" target="_blank">DownThemAll! 2.0.14 (Firefox extension)</a> is out! This is the easiest way to try out Metalink on Firefox!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">29 Aug :</td>
<td valign="top">Metalink command line tools like libmetalink and curl for OS X are on <a href="http://mxcl.github.com/homebrew/" target="_blank">Homebrew</a>, try 'brew install curl --with-libmetalink'.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">28 Aug :</td>
<td valign="top"><a href="https://launchpad.net/libmetalink" target="_blank">libmetalink</a>, a Metalink library, adds Metalink functionality such as parsing Metalink XML files to programs written in C.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">20 Aug :</td>
<td valign="top"><a href="http://www.google-melange.com/gsoc/org/google/gsoc2012/metalink" target="_blank">Google Summer of Code</a> finals! 5 projects: wget, Chrome, Apache Traffic Server, KGet, and aria2/DownThemAll! See our <a href="http://www.metalinker.org/ideas.html#gsoc2012" target="_blank">Ideas page</a> for what's in progress and where we still need help!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">20 Aug :</td>
<td valign="top"><a href="https://chrome.google.com/webstore/detail/jnpljlobbiggcdikagmiepniibjdinap" target="_blank">Metalink Downloader</a> is a new Chrome extension with Metalink support! (Now on the Chrome Web Store). #gsoc</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">20 Aug :</td>
<td valign="top"><a href="http://code.downthemall.net/nightly/" target="_blank">DownThemAll!</a> (Firefox extension) with Metalink/HTTP support! (expected in a future release!) #gsoc</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">20 Aug :</td>
<td valign="top"><a href="https://github.com/ziahamza/webui-aria2" target="_blank">webui-aria2</a> is a slick new web interface for <a href="http://aria2.sourceforge.net/" target="_blank">aria2</a>! #gsoc</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">20 Aug :</td>
<td valign="top"><a href="https://github.com/ardahal/metalink-kget-nohist/tree/kget-metalink" target="_blank">KDE's KGet</a> with Metalink/HTTP support! (expected in a future release!) #gsoc</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">20 Aug :</td>
<td valign="top"><a href="https://github.com/ilimugur/GSoC-Project" target="_blank">wget</a> with Metalink support! (expected in wget 1.15!) #gsoc</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">20 Aug :</td>
<td valign="top"><a href="https://cwiki.apache.org/confluence/display/TS/Metalink" target="_blank">Apache Traffic Server Metalink plugin</a> detects Metalinks in a cache and serves identical content up faster! #gsoc</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">11 Aug :</td>
<td valign="top"><a href="https://chrome.google.com/webstore/detail/jnpljlobbiggcdikagmiepniibjdinap" target="_blank">Metalink Downloader</a> is a new Chrome extension with Metalink support! (Now on the Chrome Web Store). #gsoc</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">10 Aug :</td>
<td valign="top"><a href="http://google-opensource.blogspot.com/2012/08/whos-new-in-google-summer-of-code-2012.html" target="_blank">Google: Who's New in Google Summer of Code 2012 - Metalink.</a></td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">29 Jul :</td>
<td valign="top"><a href="https://launchpad.net/libmetalink" target="_blank">libmetalink</a>, a Metalink library, adds Metalink functionality such as parsing Metalink XML files to programs written in C.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">27 Jul :</td>
<td valign="top"><a href="http://curl.haxx.se/changes.html#7_27_0" target="_blank">curl</a> 7.27.0 adds Metalink support!!!! woowoo!!.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">26 Jul :</td>
<td valign="top"><a href="https://chrome.google.com/webstore/detail/jnpljlobbiggcdikagmiepniibjdinap" target="_blank">Metalink Downloader</a> is a new Chrome extension with Metalink support! (Now on the Chrome Web Store). #gsoc</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">16 Jul :</td>
<td valign="top"><a href="http://code.google.com/p/metalink-chrome-extension/" target="_blank">Metalink Downloader</a> is a new Chrome extension with Metalink support! #gsoc</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">13 Jul :</td>
<td valign="top"><a href="http://www.google-melange.com/gsoc/org/google/gsoc2012/metalink" target="_blank">Google Summer of Code</a> midterm! 5 projects: wget, Chrome, Apache Traffic Server, KGet, and aria2/DownThemAll! See our <a href="http://www.metalinker.org/ideas.html#gsoc2012" target="_blank">Ideas page</a> for what's in progress and where we still need help!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">04 Jul :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-bryan-metalink-client" target="_blank">Metalink/XML Clients, Publishers, and Caches IETF Internet Draft</a>.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">26 Jun :</td>
<td valign="top"><a href="https://github.com/ziahamza/webui-aria2" target="_blank">webui-aria2</a> is a slick new web interface for <a href="http://aria2.sourceforge.net/" target="_blank">aria2</a>! #gsoc</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">25 Jun :</td>
<td valign="top"><a href="http://code.google.com/p/metalink-chrome-extension/" target="_blank">Metalink Downloader</a> is a new Chrome extension with Metalink support! #gsoc</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">08 Jun :</td>
<td valign="top">KGet, part of <a href="http://www.kde.org/" target="_blank">KDE 4.8.4</a>, supports Metalink. Check the <a href="http://www.kde.org/announcements/announce-4.8.4.php" target="_blank">release announcements</a> for ways to try it out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">03 Jun :</td>
<td valign="top"><a href="http://daniel.haxx.se/blog/2012/06/03/curling-the-metalink/" target="_blank">curling the metalink</a> - Metalink comes to curl!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">30 May :</td>
<td valign="top"><a href="http://midsizeinsider.com/en-us/article/summer-of-code-why-it-should-take-note" target="_blank">Metalink on IBM Midsize Insider!</a></td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">27 May :</td>
<td valign="top"><a href="http://aria2.sourceforge.net/" target="_blank">aria2</a> 1.15.1! (Unix/Win), the high speed command line download utility with Metalink (<a href="http://tools.ietf.org/html/rfc5854" target="_blank">RFC 5854</a>/<a href="http://tools.ietf.org/html/rfc6249" target="_blank">RFC 6249</a>) support, is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">24 May :</td>
<td valign="top"><a href="http://www.webmonkey.com/2012/05/google-kicks-off-summer-of-code-2012/" target="_blank">Metalink on Wired's Webmonkey!</a></td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">24 May :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-bryan-ftp-range" target="_blank">FTP RANG Command for Byte Ranges Transfers IETF Internet Draft</a>.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">21 May :</td>
<td valign="top">Introducing <a href="http://code.google.com/p/metalink-chrome-extension/" target="_blank">Metalink Downloader</a>, a Chrome extension with Metalink support!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">04 May :</td>
<td valign="top">KGet, part of <a href="http://www.kde.org/" target="_blank">KDE 4.8.3</a>, supports Metalink. Check the <a href="http://www.kde.org/announcements/announce-4.8.3.php" target="_blank">release announcements</a> for ways to try it out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">24 Apr :</td>
<td valign="top">...sigh...<a href="https://twitter.com/#!/metalinker" target="_blank">Metalink is on twitter.</a> :)</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">23 Apr :</td>
<td valign="top">Accepted <a href="http://www.google-melange.com/gsoc/org/google/gsoc2012/metalink" target="_blank">Google Summer of Code students and proposals</a> are announced! wget, Chrome, Apache Traffic Server, KGet, and aria2/DownThemAll! See our <a href="http://www.metalinker.org/ideas.html#gsoc2012" target="_blank">Ideas page</a> for what's in progress and where we still need help!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">22 Apr :</td>
<td valign="top"><a href="http://www.mirrorbrain.org/" target="_blank">MirrorBrain</a> 2.17.0 a Download Redirector with <a href="http://tools.ietf.org/html/rfc5854" target="_blank">Metalink</a> and Torrent generator, is out! <a href="http://www.mirrorbrain.org/news/2170-release-supporting-ipv6-instance-digests-and-web-linking/" target="_blank">Details...</a></td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">20 Apr :</td>
<td valign="top">Introducing <a href="http://code.google.com/p/metalink-chrome-extension/" target="_blank">Metalink Downloader</a>, a Chrome extension with Metalink support!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">08 Apr :</td>
<td valign="top"><a href="http://aria2.sourceforge.net/" target="_blank">aria2</a> 1.15.0! (Unix/Win), the high speed command line download utility with Metalink (<a href="http://tools.ietf.org/html/rfc5854" target="_blank">RFC 5854</a>/<a href="http://tools.ietf.org/html/rfc6249" target="_blank">RFC 6249</a>) support, is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">06 Apr :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-bryan-ftpext-hash" target="_blank">FTP HASH Command for Cryptographic Hashes IETF Internet Draft</a>.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">27 Mar :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-ietf-ftpext2-hash" target="_blank">FTP HASH Command for Cryptographic Hashes IETF Internet Draft</a>.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">27 Mar :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-bryan-ftp-range" target="_blank">FTP RANG Command for Byte Ranges Transfers IETF Internet Draft</a>.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">26 Mar :</td>
<td valign="top"><a href="http://dot.kde.org/2012/03/26/kde-enhances-mirroring-network" target="_blank">KDE Enhances Mirroring Network</a> with MirrorBrain and Metalinks!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">25 Mar :</td>
<td valign="top"><a href="http://www.mirrorbrain.org/" target="_blank">MirrorBrain</a> 2.16.1 a Download Redirector with <a href="http://tools.ietf.org/html/rfc5854" target="_blank">Metalink</a> and Torrent generator, is out! <a href="http://www.mirrorbrain.org/news/2161-bug-fixes/" target="_blank">Details...</a></td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">16 Mar :</td>
<td valign="top">Welcome, <a href="http://www.google-melange.com/gsoc/org/google/gsoc2012/metalink" target="_blank">Google Summer of Code students!</a> Please check out our <a href="http://www.metalinker.org/ideas.html" target="_blank">Ideas page.</a></td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">07 Mar :</td>
<td valign="top">KGet, part of <a href="http://www.kde.org/" target="_blank">KDE 4.8.1</a>, supports Metalink. Check the <a href="http://www.kde.org/announcements/announce-4.8.1.php" target="_blank">release announcements</a> for ways to try it out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">27 Feb :</td>
<td valign="top"><a href="http://aria2.sourceforge.net/" target="_blank">aria2</a> 1.14.2! (Unix/Win), the high speed command line download utility with Metalink (<a href="http://tools.ietf.org/html/rfc5854" target="_blank">RFC 5854</a>/<a href="http://tools.ietf.org/html/rfc6249" target="_blank">RFC 6249</a>) support, is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">21 Feb :</td>
<td valign="top"><a href="http://www.mirrorbrain.org/" target="_blank">MirrorBrain</a> 2.16 a Download Redirector with <a href="http://tools.ietf.org/html/rfc5854" target="_blank">Metalink</a> and Torrent generator, is out! <a href="http://www.mirrorbrain.org/news/2160-with-bug-fixes-and-URL-signing/" target="_blank">Details...</a></td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">10 Feb :</td>
<td valign="top"><a href="http://www.downthemall.net/" target="_blank">DownThemAll! 2.0.13 (Firefox extension)</a> is out! This is the easiest way to try out Metalink!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">14 Jan :</td>
<td valign="top"><a href="http://www.downthemall.net/" target="_blank">DownThemAll! 2.0.11 (Firefox extension)</a> is out! This is the easiest way to try out Metalink!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">11 Jan :</td>
<td valign="top"><a href="http://aria2.sourceforge.net/" target="_blank">aria2</a> 1.14.1! (Unix/Win), the high speed command line download utility with Metalink (<a href="http://tools.ietf.org/html/rfc5854" target="_blank">RFC 5854</a>/<a href="http://tools.ietf.org/html/rfc6249" target="_blank">RFC 6249</a>) support, is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">^ 2012</td>
<td valign="top">2011 v</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">02 Aug :</td>
<td valign="top"><a href="http://aria2.sourceforge.net/" target="_blank">aria2</a> 1.12.1! (Unix/Win), the high speed command line download utility with Metalink (<a href="http://tools.ietf.org/html/rfc5854" target="_blank">RFC 5854</a>/<a href="http://tools.ietf.org/html/rfc6249" target="_blank">RFC 6249</a>) support, is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">16 Jul :</td>
<td valign="top"><a href="http://www.nabber.org/projects/appupdater/" target="_blank">Appupdater</a> 1.5 (Windows) keeps all your various apps up to date. Along with a <a href="http://www.nabber.org/projects/appupdater/metalink/" target="_blank">Metalink Repository</a> for lots of Windows software!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">30 Jun :</td>
<td valign="top"><a href="http://aria2.sourceforge.net/" target="_blank">aria2</a> 1.12.0! (Unix/Win), the high speed command line download utility with Metalink support, is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">29 Jun :</td>
<td valign="top"><a href="http://sourceforge.net/projects/metalinks/files/Metalink%20Checker/" target="_blank">Metalink Checker</a> (Cross Platform, Open Source) is a command line Python downloader that supports <a href="http://tools.ietf.org/html/rfc5854" target="_blank">RFC 5854</a>/<a href="http://tools.ietf.org/html/rfc6249" target="_blank">RFC 6249</a>, multi-source downloads, automatically repairs downloads, and checks mirrors listed in Metalinks.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">17 Jun :</td>
<td valign="top">We proudly announce <a href="http://tools.ietf.org/html/rfc6249" target="_blank">RFC 6249: Metalink/HTTP: Mirrors and Hashes</a> as a Proposed Standard from the IETF!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">12 Jun :</td>
<td valign="top"><a href="http://www.downthemall.net/" target="_blank">DownThemAll! 2.0.7 (Firefox extension)</a> is out! This is the easiest way to try out Metalink!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">26 May :</td>
<td valign="top"><a href="http://www.downthemall.net/" target="_blank">DownThemAll! 2.0.6 (Firefox extension)</a> is out! This is the easiest way to try out Metalink!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">30 Mar :</td>
<td valign="top"><a href="http://aria2.sourceforge.net/" target="_blank">aria2</a> 1.11.2! (Unix/Win), the high speed command line download utility with Metalink support, is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">02 May :</td>
<td valign="top"><a href="https://addons.opera.com/addons/extensions/details/metalink-access/" target="_blank">Metalink Access</a> is a great Opera extension for Metalink downloads!!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">25 Apr :</td>
<td valign="top"><a href="https://github.com/timsjoberg/metalink-ruby" target="_blank">Metalink Ruby</a> for creating Metalinks!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">30 Mar :</td>
<td valign="top"><a href="http://aria2.sourceforge.net/" target="_blank">aria2</a> 1.11.1! (Unix/Win), the high speed command line download utility with Metalink support, is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">18 Mar :</td>
<td valign="top"><a href="http://aria2.sourceforge.net/" target="_blank">aria2</a> 1.11! (Unix/Win), the high speed command line download utility with Metalink support, is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">17 Mar :</td>
<td valign="top"><a href="http://www.ietf.org/mail-archive/web/ietf-announce/current/msg08623.html" target="_blank">IETF Protocol Action: 'Metalink/HTTP: Mirrors and Hashes' to Proposed Standard</a>.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">14 Mar :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-bryan-ftp-range" target="_blank">FTP RANG Command for Byte Ranges Transfers IETF Internet Draft</a>.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">11 Mar :</td>
<td valign="top"><a href="http://www.downthemall.net/" target="_blank">DownThemAll! 2.0.2 (Firefox extension)</a> is out! This is the easiest way to try out Metalink!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">06 Mar :</td>
<td valign="top">If you'd like to contribute to our project, see our <a href="http://www.metalinker.org/ideas.html" target="_blank">ideas page</a>!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">04 Mar :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-bryan-metalinkhttp" target="_blank">Metalink/HTTP IETF Internet Draft</a>, as opposed to XML.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">27 Feb :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-bryan-metalinkhttp" target="_blank">Metalink/HTTP IETF Internet Draft</a>, as opposed to XML.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">14 Feb :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-bryan-metalinkhttp" target="_blank">Metalink/HTTP IETF Internet Draft</a>, as opposed to XML.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">07 Feb :</td>
<td valign="top"><a href="http://www.downthemall.net/" target="_blank">DownThemAll! 2.0.1 (Firefox extension)</a> is out! This is the easiest way to try out Metalink!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">01 Feb :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-ietf-ftpext2-hash" target="_blank">FTP HASH Command for Cryptographic Hashes IETF Internet Draft</a>.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">01 Feb :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-bryan-ftp-range" target="_blank">FTP RANG Command for Byte Ranges Transfers IETF Internet Draft</a>.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">26 Jan :</td>
<td valign="top">KGet, part of <a href="http://www.kde.org/" target="_blank">KDE 4.6</a>, supports Metalink. Check the <a href="http://www.kde.org/announcements/4.6" target="_blank">release announcements</a> for ways to try it out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">25 Jan :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-bryan-ftp-range" target="_blank">FTP RANG Command for Byte Ranges Transfers</a>.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">21 Jan :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-bryan-metalinkhttp" target="_blank">Metalink/HTTP IETF Internet Draft</a> is in <a href="http://www.ietf.org/mail-archive/web/ietf-announce/current/msg08386.html" target="_blank">IETF Last Call</a> until 18 Feb.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">20 Jan :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-bryan-metalinkhttp" target="_blank">Metalink/HTTP IETF Internet Draft</a>, as opposed to XML.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">11 Jan :</td>
<td valign="top"><a href="http://www.downthemall.net/" target="_blank">DownThemAll! 2.0 (Firefox extension)</a> is out! This is the easiest way to try out Metalink!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">09 Jan :</td>
<td valign="top"><a href="http://aria2.sourceforge.net/" target="_blank">aria2</a> 1.10.9! (Unix/Win), the high speed command line download utility with Metalink support, is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">07 Jan :</td>
<td valign="top">KGet, part of <a href="http://www.kde.org/" target="_blank">KDE SC 4.5.5</a>, supports Metalink. Check the <a href="http://www.kde.org/announcements/announce-4.5.5.php" target="_blank">release announcements</a> for ways to try it out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">01 Jan :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-bryan-metalinkhttp" target="_blank">Metalink/HTTP IETF Internet Draft</a>, as opposed to XML.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">^ 2011</td>
<td valign="top">2010 v</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">22 Dec :</td>
<td valign="top"><a href="http://www.nabber.org/projects/appupdater/" target="_blank">Appupdater</a> 1.4.2 (Windows) keeps all your various apps up to date. Along with a <a href="http://www.nabber.org/projects/appupdater/metalink/" target="_blank">Metalink Repository</a> for lots of Windows software!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">20 Dec :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-bryan-ftp-range" target="_blank">FTP RANG Command for Byte Ranges Transfers</a>. This is a work in progress and not meant to be implemented, only reviewed.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">18 Dec :</td>
<td valign="top"><a href="http://aria2.sourceforge.net/" target="_blank">aria2</a> 1.10.8! (Unix/Win), the high speed command line download utility with Metalink support, is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">05 Dec :</td>
<td valign="top"><a href="http://aria2.sourceforge.net/" target="_blank">aria2</a> 1.10.7! (Unix/Win), the high speed command line download utility with Metalink support, is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">02 Dec :</td>
<td valign="top">KGet, part of <a href="http://www.kde.org/" target="_blank">KDE SC 4.5.4</a>, supports Metalink. Check the <a href="http://www.kde.org/announcements/announce-4.5.4.php" target="_blank">release announcements</a> for ways to try it out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">24 Nov :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-ietf-ftpext2-hash" target="_blank">FTP Extensions for Cryptographic Hashes IETF Internet Draft</a>. This is a work in progress and not meant to be implemented, only reviewed.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">18 Nov :</td>
<td valign="top"><a href="http://tools.ietf.org/wg/ftpext2/" target="_blank">FTP Extensions Working Group</a> at the IETF is official!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">14 Nov :</td>
<td valign="top"><a href="http://www.mirrorbrain.org/" target="_blank">MirrorBrain</a> 2.15 a Download Redirector with <a href="http://tools.ietf.org/html/rfc5854" target="_blank">IETF Metalink</a> and Torrent generator, is out! <a href="http://www.mirrorbrain.org/news/2150-support-yum-mirror-lists/" target="_blank">Details...</a></td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">07 Nov :</td>
<td valign="top"><a href="http://www.downthemall.net/" target="_blank">DownThemAll! 2.0 beta 5 (Firefox extension)</a> is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">06 Nov :</td>
<td valign="top"><a href="http://www.mirrorbrain.org/" target="_blank">MirrorBrain</a> 2.14 a Download Redirector with <a href="http://tools.ietf.org/html/rfc5854" target="_blank">IETF Metalink</a> and Torrent generator, is out! <a href="http://www.mirrorbrain.org/news/2140-takes-geographical-distances-account/" target="_blank">Details...</a></td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">03 Nov :</td>
<td valign="top">KGet, part of <a href="http://www.kde.org/" target="_blank">KDE SC 4.5.3</a>, supports Metalink. Check the <a href="http://www.kde.org/announcements/announce-4.5.3.php" target="_blank">release announcements</a> for ways to try it out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">01 Nov :</td>
<td valign="top"><a href="http://aria2.sourceforge.net/" target="_blank">aria2</a> 1.10.6! (Unix/Win), the high speed command line download utility with Metalink support, is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">25 Oct :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-bryan-ftp-hash" target="_blank">FTP Extensions for Cryptographic Hashes IETF Internet Draft</a>. This is a work in progress and not meant to be implemented, only reviewed.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">19 Oct :</td>
<td valign="top"><a href="http://www.mirrorbrain.org/" target="_blank">MirrorBrain</a> 2.13.4 a Download Redirector with <a href="http://tools.ietf.org/html/rfc5854" target="_blank">IETF Metalink</a> and Torrent generator, is out! <a href="http://www.mirrorbrain.org/news/2134-usability-improvements/" target="_blank">Details...</a></td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">19 Oct :</td>
<td valign="top"><a href="http://aria2.sourceforge.net/" target="_blank">aria2</a> 1.10.5! (Unix/Win), the high speed command line download utility with Metalink support, is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">13 Oct :</td>
<td valign="top"><a href="http://www.downthemall.net/" target="_blank">DownThemAll! 2.0 beta 4 (Firefox extension)</a> is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">12 Oct :</td>
<td valign="top"><a href="http://aria2.sourceforge.net/" target="_blank">aria2</a> 1.10.4! (Unix/Win), the high speed command line download utility with Metalink support, is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">10 Oct :</td>
<td valign="top"><a href="http://releases.ubuntu.com/releases/10.10/" target="_blank">Ubuntu 10.10</a> official Metalinks.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">08 Oct :</td>
<td valign="top"><a href="http://www.halogenware.com/software/retriever.html" target="_blank">Retriever</a> (Cross Platform, Java) is a download manager that includes Metalink and BitTorrent support.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">05 Oct :</td>
<td valign="top">KGet, part of <a href="http://www.kde.org/" target="_blank">KDE SC 4.5.2</a>, supports Metalink. Check the <a href="http://www.kde.org/announcements/announce-4.5.2.php" target="_blank">release announcements</a> for ways to try it out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">28 Sep :</td>
<td valign="top"><a href="http://www.documentfoundation.org/download/" target="_blank">LibreOffice</a> downloads are powered by <a href="http://www.mirrorbrain.org/" target="_blank">MirrorBrain</a> and Metalinks!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">26 Sep :</td>
<td valign="top"><a href="http://www.mirrorbrain.org/" target="_blank">MirrorBrain</a> 2.13.3 a Download Redirector with <a href="http://tools.ietf.org/html/rfc5854" target="_blank">IETF Metalink</a> and Torrent generator, is out! <a href="http://www.mirrorbrain.org/news/2133-bug-fixes-metalink-generator-and-torrents/" target="_blank">Details...</a></td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">22 Sep :</td>
<td valign="top"><a href="http://freshmeat.net/projects/apt-metalink" target="_blank">apt-metalink</a> 0.1, for Debian/Ubuntu systems, makes the upgrade process faster.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">19 Sep :</td>
<td valign="top"><a href="http://freshmeat.net/projects/apt-metalink" target="_blank">apt-metalink</a>, for Debian/Ubuntu systems, makes the upgrade process faster.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">19 Sep :</td>
<td valign="top"><a href="http://www.mirrorbrain.org/" target="_blank">MirrorBrain</a> 2.13.2 a Download Redirector with <a href="http://tools.ietf.org/html/rfc5854" target="_blank">IETF Metalink</a> and Torrent generator, is out! <a href="http://www.mirrorbrain.org/news/2130-release-ietf-metalink-and-torrent-generator/" target="_blank">Details...</a></td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">13 Sep :</td>
<td valign="top"><a href="http://www.mirrorbrain.org/" target="_blank">MirrorBrain</a> 2.13.1 a Download Redirector with <a href="http://tools.ietf.org/html/rfc5854" target="_blank">IETF Metalink</a> and Torrent generator, is out! <a href="http://www.mirrorbrain.org/news/2130-release-ietf-metalink-and-torrent-generator/" target="_blank">Details...</a></td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">15 Sep :</td>
<td valign="top"><a href="http://aria2.sourceforge.net/" target="_blank">aria2</a> 1.10.3! (Unix/Win), the high speed command line download utility with Metalink support, is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">13 Sep :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-bryan-metalinkhttp" target="_blank">Metalink/HTTP IETF Internet Draft</a>, as opposed to XML. This is a work in progress and not meant to be implemented, only reviewed.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">06 Sep :</td>
<td valign="top"><a href="http://www.mirrorbrain.org/" target="_blank">MirrorBrain</a> 2.13.0 a Download Redirector with <a href="http://tools.ietf.org/html/rfc5854" target="_blank">IETF Metalink</a> and Torrent generator, is out! <a href="http://www.mirrorbrain.org/news/2130-release-ietf-metalink-and-torrent-generator/" target="_blank">Details...</a></td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">31 Aug :</td>
<td valign="top"><a href="http://aria2.sourceforge.net/" target="_blank">aria2</a> 1.10.2! (Unix/Win), the high speed command line download utility with Metalink support, is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">31 Aug :</td>
<td valign="top">KGet, part of <a href="http://www.kde.org/" target="_blank">KDE SC 4.5.1</a>, supports Metalink. Check the <a href="http://www.kde.org/announcements/announce-4.5.1.php" target="_blank">release announcements</a> for ways to try it out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">29 Aug :</td>
<td valign="top"><a href="http://aria2.sourceforge.net/" target="_blank">aria2</a> 1.10.1! (Unix/Win), the high speed command line download utility with Metalink support, is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">10 Aug :</td>
<td valign="top">KGet, part of <a href="http://www.kde.org/" target="_blank">KDE SC 4.5.0</a>, supports Metalink. Check the <a href="http://www.kde.org/announcements/4.5/" target="_blank">release announcements</a> for ways to try it out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">05 Aug :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-bryan-ftp-hash" target="_blank">FTP Extensions for Cryptographic Hashes IETF Internet Draft</a>. This is a work in progress and not meant to be implemented, only reviewed.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">01 Aug :</td>
<td valign="top"><a href="http://www.downthemall.net/" target="_blank">DownThemAll! 2.0 beta 3 (Firefox extension)</a> is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">19 Jul :</td>
<td valign="top"><a href="http://aria2.sourceforge.net/" target="_blank">aria2</a> 1.10.0! (Unix/Win), the high speed command line download utility with Metalink support, is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">18 Jul :</td>
<td valign="top"><a href="http://www.downthemall.net/" target="_blank">DownThemAll! 2.0 beta 2 (Firefox extension)</a> is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">09 Jul :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-bryan-ftp-hash" target="_blank">FTP Extensions for Cryptographic Hashes IETF Internet Draft</a>. This is a work in progress and not meant to be implemented, only reviewed.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">30 Jun :</td>
<td valign="top">KGet, part of <a href="http://www.kde.org/" target="_blank">KDE SC 4.4.5</a>, supports Metalink. Check the <a href="http://www.kde.org/announcements/announce-4.4.5.php" target="_blank">release announcements</a> for ways to try it out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">29 Jun :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-bryan-ftp-hash" target="_blank">FTP Extensions for Cryptographic Hashes IETF Internet Draft</a>. This is a work in progress and not meant to be implemented, only reviewed.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">28 Jun :</td>
<td valign="top"><a href="http://aria2.sourceforge.net/" target="_blank">aria2</a> 1.9.5! (Unix/Win), the high speed command line download utility with Metalink support, is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">11 Jun :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-bryan-ftp-hash" target="_blank">FTP Extensions for Cryptographic Hashes IETF Internet Draft</a>. This is a work in progress and not meant to be implemented, only reviewed.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">04 Jun :</td>
<td valign="top"><a href="http://aria2.sourceforge.net/" target="_blank">aria2</a> 1.9.4! (Unix/Win), the high speed command line download utility with Metalink support, is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">01 Jun :</td>
<td valign="top">We proudly announce <a href="http://tools.ietf.org/html/rfc5854" target="_blank">RFC 5854: The Metalink Download Description Format</a> as a Proposed Standard from the IETF!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">01 Jun :</td>
<td valign="top"><a href="http://www.nabber.org/projects/appupdater/" target="_blank">Appupdater</a> 1.4.1 (Windows) keeps all your various apps up to date. Along with a <a href="http://www.nabber.org/projects/appupdater/metalink/" target="_blank">Metalink Repository</a> for lots of Windows software!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">01 Jun :</td>
<td valign="top">KGet, part of <a href="http://www.kde.org/" target="_blank">KDE SC 4.4.4</a>, supports Metalink. Check the <a href="http://www.kde.org/announcements/announce-4.4.4.php" target="_blank">release announcements</a> for ways to try it out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">28 May :</td>
<td valign="top"><a href="http://www.downthemall.net/" target="_blank">DownThemAll! 1.1.10 (Firefox extension)</a> is out! This is the easiest way to try out Metalink!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">25 May :</td>
<td valign="top"><a href="http://mirrors.fedoraproject.org/metalink?path=pub/fedora/linux/releases/13/Live/i686/Fedora-13-i686-Live.iso">Fedora 13 Live CD Metalink!</a></td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">21 May :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-bryan-ftp-hash" target="_blank">FTP Extensions for Cryptographic Hashes IETF Internet Draft</a>. This is a work in progress and not meant to be implemented, only reviewed.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">11 May :</td>
<td valign="top"><a href="http://hueniverse.com/2010/05/metalinkhttp/" target="_blank">An introduction to Metalink/HTTP</a>.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">11 May :</td>
<td valign="top"><a href="http://www.nabber.org/projects/appupdater/" target="_blank">Appupdater</a> 1.4 (Windows) keeps all your various apps up to date. Along with a <a href="http://www.nabber.org/projects/appupdater/metalink/" target="_blank">Metalink Repository</a> for lots of Windows software!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">09 May :</td>
<td valign="top"><a href="http://aria2.sourceforge.net/" target="_blank">aria2</a> 1.9.3! (Unix/Win), the high speed command line download utility with Metalink support, is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">05 May :</td>
<td valign="top">KGet, part of <a href="http://www.kde.org/" target="_blank">KDE SC 4.4.3</a>, supports Metalink. Check the <a href="http://www.kde.org/announcements/announce-4.4.3.php" target="_blank">release announcements</a> for ways to try it out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">29 Apr :</td>
<td valign="top"><a href="http://releases.ubuntu.com/releases/10.04/" target="_blank">Ubuntu 10.04</a> official Metalinks.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">28 Apr :</td>
<td valign="top"><a href="http://aria2.sourceforge.net/" target="_blank">aria2</a> 1.9.2! (Unix/Win), the high speed command line download utility with Metalink support, is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">20 Apr :</td>
<td valign="top"><a href="http://tools.ietf.org/html/rfc5843" target="_blank">RFC 5843: Additional Hash Algorithms for HTTP Instance Digests</a>. This can be used by <a href="http://tools.ietf.org/html/draft-bryan-metalinkhttp" target="_blank">Metalink/HTTP IETF Internet Draft</a>.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">16 Apr :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-bryan-ftp-hash" target="_blank">FTP Extensions for Cryptographic Hashes IETF Internet Draft</a>. This is a work in progress and not meant to be implemented, only reviewed.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">16 Apr :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-bryan-metalinkhttp" target="_blank">Metalink/HTTP IETF Internet Draft</a>, as opposed to XML. This is a work in progress and not meant to be implemented, only reviewed.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">14 Apr :</td>
<td valign="top"><a href="http://aria2.sourceforge.net/" target="_blank">aria2</a> 1.9.1! (Unix/Win), the high speed command line download utility with Metalink support, is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">07 Apr :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-bryan-ftp-hash" target="_blank">FTP Extensions for Cryptographic Hashes IETF Internet Draft</a>. This is a work in progress and not meant to be implemented, only reviewed.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">05 Apr :</td>
<td valign="top"><a href="http://www.downthemall.net/" target="_blank">DownThemAll! 2.0 beta 1 (Firefox extension)</a> is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">30 Mar :</td>
<td valign="top">KGet, part of <a href="http://www.kde.org/" target="_blank">KDE SC 4.4.2</a>, supports Metalink. Check the <a href="http://www.kde.org/announcements/announce-4.4.2.php" target="_blank">release announcements</a> for ways to try it out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">26 Mar :</td>
<td valign="top"><a href="http://www.downthemall.net/" target="_blank">DownThemAll! 1.1.9 (Firefox extension)</a> is out! This is the easiest way to try out Metalink!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">23 Mar :</td>
<td valign="top">Announcing: <a href="http://tools.ietf.org/html/draft-bryan-ftp-hash" target="_blank">FTP Extensions for Cryptographic Hashes IETF Internet Draft</a>. This is a work in progress and not meant to be implemented, only reviewed.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">12 Mar :</td>
<td valign="top"><a href="http://aria2.sourceforge.net/" target="_blank">aria2</a> 1.9.0! (Unix/Win), the high speed command line download utility with Metalink support, is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">02 Mar :</td>
<td valign="top">KGet, part of <a href="http://www.kde.org/" target="_blank">KDE SC 4.4.1</a>, supports Metalink. Check the <a href="http://www.kde.org/announcements/announce-4.4.1.php" target="_blank">release announcements</a> for ways to try it out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">25 Feb :</td>
<td valign="top"><a href="http://www.ietf.org/mail-archive/web/ietf-announce/current/msg07109.html" target="_blank">IETF/IESG</a> <b>Protocol Action: <a href="http://tools.ietf.org/html/draft-bryan-metalink" target="_blank">'The Metalink Download Description Format'</a> to Proposed Standard!</b></td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">21 Feb :</td>
<td valign="top"><a href="http://aria2.sourceforge.net/" target="_blank">aria2</a> 1.8.3! (Unix/Win), the high speed command line download utility with Metalink support, is out! <b>Congratulations and thanks to the project, which is now 4 years old!</b></td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">20 Feb :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-bryan-metalinkhttp" target="_blank">Metalink/HTTP IETF Internet Draft</a>, as opposed to XML. This is a work in progress and not meant to be implemented, only reviewed.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">14 Feb :</td>
<td valign="top"><a href="http://labix.org/smart" target="_blank">Smart Package Manager</a> adds Metalink support.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">12 Feb :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-bryan-metalink" target="_blank">Metalink/XML IETF Internet Draft</a>. This is a work in progress and not meant to be implemented, only reviewed.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">10 Feb :</td>
<td valign="top"><a href="http://www.mirrorbrain.org/" target="_blank">MirrorBrain</a> 2.12.0 a Download Redirector and Metalink Generator, is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">09 Feb :</td>
<td valign="top">KGet, part of <a href="http://www.kde.org/" target="_blank">KDE SC 4.4.0</a>, supports Metalink. Check the <a href="http://www.kde.org/announcements/4.4/index.php" target="_blank">release announcements</a> for ways to try it out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">03 Feb :</td>
<td valign="top"><a href="http://aria2.sourceforge.net/" target="_blank">aria2</a> 1.8.2! (Unix/Win), the high speed command line download utility with Metalink support, is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">31 Jan :</td>
<td valign="top"><a href="http://mulk.sourceforge.net/" target="_blank">mulk</a> is a command line multi-connection network downloader with image filtering.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">23 Jan :</td>
<td valign="top"><a href="http://aria2.sourceforge.net/" target="_blank">aria2</a> 1.8.1! (Unix/Win), the high speed command line download utility with Metalink support, is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">21 Jan :</td>
<td valign="top"><b>IESG Agenda:</b> <a href="http://tools.ietf.org/html/draft-bryan-metalink" target="_blank">Metalink/XML IETF Internet Draft</a>. This is a work in progress and not meant to be implemented, only reviewed. Get your comments in!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">11 Jan :</td>
<td valign="top"><a href="http://www.downthemall.net/" target="_blank">DownThemAll! 1.1.8 (Firefox extension)</a> is out! This is the easiest way to try out Metalink!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">08 Jan :</td>
<td valign="top"><b>Last Call (ends 08 Jan):</b> <a href="http://tools.ietf.org/html/draft-bryan-metalink" target="_blank">Metalink/XML IETF Internet Draft</a>. This is a work in progress and not meant to be implemented, only reviewed. Get your comments in!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">08 Jan :</td>
<td valign="top"><a href="http://xbmc.org/theuni/2010/01/08/xbmc-is-growing-up-gains-cool-new-services/" target="_blank">XBMC</a> uses MirrorBrain and Metalinks for their downloads.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">08 Jan :</td>
<td valign="top"><a href="http://www.halogenware.com/software/retriever.html" target="_blank">Retriever</a> (Cross Platform, Java) is a download manager that includes Metalink and BitTorrent support.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">^ 2010</td>
<td valign="top">2009 v</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">31 Dec :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-bryan-metalinkhttp" target="_blank">Metalink/HTTP IETF Internet Draft</a>, as opposed to XML. This is a work in progress and not meant to be implemented, only reviewed.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">30 Dec :</td>
<td valign="top"><a href="http://metated.petarmaric.com/" target="_blank">metaTED</a> offers Metalinks of TED talks and software for creating them.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">27 Dec :</td>
<td valign="top"><a href="http://aria2.sourceforge.net/" target="_blank">aria2</a> 1.8.0! (Unix/Win), the high speed command line download utility with Metalink support, is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">16 Dec :</td>
<td valign="top"><a href="http://www.mirrorbrain.org/" target="_blank">MirrorBrain</a> 2.11.3 a Download Redirector and Metalink Generator, is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">11 Dec :</td>
<td valign="top">Last Call: <a href="http://tools.ietf.org/html/draft-bryan-metalink" target="_blank">Metalink/XML IETF Internet Draft</a>. This is a work in progress and not meant to be implemented, only reviewed.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">10 Dec :</td>
<td valign="top"><a href="http://hueniverse.com/2009/12/introducing-metalink/" target="_blank">Introducing Metalink</a> tries to get you acquainted.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">06 Dec :</td>
<td valign="top"><a href="http://aria2.sourceforge.net/" target="_blank">aria2</a> 1.7.1! (Unix/Win), the high speed command line download utility with Metalink support, is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">05 Dec :</td>
<td valign="top"><a href="http://www.mirrorbrain.org/" target="_blank">MirrorBrain</a> 2.11.2 a Download Redirector and Metalink Generator, is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">01 Dec :</td>
<td valign="top"><a href="http://www.mirrorbrain.org/" target="_blank">MirrorBrain</a> 2.11 a Download Redirector and Metalink Generator, is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">01 Dec :</td>
<td valign="top">KGet, part of <a href="http://www.kde.org/" target="_blank">KDE 4.3.4</a>, supports Metalink. Check the <a href="http://www.kde.org/announcements/announce-4.3.4.php" target="_blank">release announcements</a> for ways to try it out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">29 Nov :</td>
<td valign="top"><a href="http://knowledgecaps.com/2009/11/29/open-sourcehow-to-get-involved/" target="_blank">Open Ethos Podcast: Daniel Stenberg from cURL talks about getting involved in open source</a>. Other podcasts: <a href="http://knowledgecaps.com/2008/06/14/fos-fresh-online-services-appupdater/" target="_blank">Appupdater</a>, <a href="http://knowledgecaps.com/2008/05/29/fos-fresh-online-services-metalink/" target="_blank">Metalink</a>, <a href="http://knowledgecaps.com/2008/07/18/fos-fresh-online-servicescurl/" target="_blank">cURL</a>, <a href="http://knowledgecaps.com/2008/08/29/fos-fresh-online-servicesftp-vs-http/" target="_blank">FTP vs HTTP</a>, <a href="http://knowledgecaps.com/2008/09/19/fos-fresh-online-servicesopera/" target="_blank">Opera & Open Standards</a>,
<a href="http://knowledgecaps.com/2008/10/05/fos-fresh-online-servicesfirefox/" target="_blank">Firefox</a>.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">28 Nov :</td>
<td valign="top"><a href="http://www.mirrorbrain.org/" target="_blank">MirrorBrain</a> 2.10.3 a Download Redirector and Metalink Generator, is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">26 Nov :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-bryan-metalink" target="_blank">Metalink/XML IETF Internet Draft</a>. This is a work in progress and not meant to be implemented, only reviewed.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">23 Nov :</td>
<td valign="top"><a href="http://www.halogenware.com/software/retriever.html" target="_blank">Retriever</a> (Cross Platform, Java) is a download manager that includes Metalink and BitTorrent support.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">22 Nov :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-bryan-metalinkhttp" target="_blank">Metalink/HTTP IETF Internet Draft</a>, as opposed to XML. This is a work in progress and not meant to be implemented, only reviewed.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">16 Nov :</td>
<td valign="top"><a href="http://www.sagemath.org/download-linux.html" target="_blank">Sage</a>, a free open-source mathematics software system, uses Metalink.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">11 Nov :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-bryan-metalinkhttp" target="_blank">IETF Internet Draft</a> describing a Metalink/HTTP format, as opposed to XML. This is a work in progress and not meant to be implemented, only reviewed.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">07 Nov :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-bryan-metalink" target="_blank">IETF Internet Draft</a> describing a Metalink/XML format. This is a work in progress and not meant to be implemented, only reviewed.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">05 Nov :</td>
<td valign="top"><a href="http://www.mirrorbrain.org/" target="_blank">MirrorBrain</a> 2.10.2 a Download Redirector and Metalink Generator, is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">03 Nov :</td>
<td valign="top"><a href="http://www.nabber.org/projects/appupdater/" target="_blank">Appupdater</a> 1.3.1 (Windows) keeps all your various apps up to date. Along with a <a href="http://www.nabber.org/projects/appupdater/metalink/" target="_blank">Metalink Repository</a> for lots of Windows software!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">03 Nov :</td>
<td valign="top">KGet, part of <a href="http://www.kde.org/" target="_blank">KDE 4.3.3</a>, supports Metalink. Check the <a href="http://www.kde.org/announcements/announce-4.3.3.php" target="_blank">release announcements</a> for ways to try it out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">02 Nov :</td>
<td valign="top"><a href="http://aria2.sourceforge.net/" target="_blank">aria2</a> 1.6.3! (Unix/Win), the high speed command line download utility with Metalink support, is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">27 Oct :</td>
<td valign="top"><a href="http://www.downthemall.net/" target="_blank">DownThemAll! 1.1.7 (Firefox extension)</a> is out! This is the easiest way to try out Metalink!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">25 Oct :</td>
<td valign="top"><a href="http://www.nabber.org/projects/appupdater/" target="_blank">Appupdater</a> paper presented at <a href="http://www.hotswup.org/2009/" target="_blank">Second ACM Workshop on Hot Topics in Software Upgrades (HotSWUp'09).</a></td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">14 Oct :</td>
<td valign="top"><a href="http://www.nabber.org/projects/appupdater/" target="_blank">Appupdater</a> 1.3 (Windows) keeps all your various apps up to date. Along with a <a href="http://www.nabber.org/projects/appupdater/metalink/" target="_blank">Metalink Repository</a> for lots of Windows software!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">13 Oct :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-bryan-metalink" target="_blank">IETF Internet Draft</a> describing a Metalink/XML format. This is a work in progress and not meant to be implemented, only reviewed.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">13 Oct :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-bryan-metalinkhttp" target="_blank">IETF Internet Draft</a> describing a Metalink/HTTP format, as opposed to XML. This is a work in progress and not meant to be implemented, only reviewed.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">10 Oct :</td>
<td valign="top"><a href="http://aria2.sourceforge.net/" target="_blank">aria2</a> 1.6.2! (Unix/Win), the high speed command line download utility with Metalink support, is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">06 Oct :</td>
<td valign="top"><a href="http://aria2.sourceforge.net/" target="_blank">aria2</a> 1.6.1! (Unix/Win), the high speed command line download utility with Metalink support, is out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">06 Oct :</td>
<td valign="top">KGet, part of <a href="http://www.kde.org/" target="_blank">KDE 4.3.2</a>, supports Metalink. Check the <a href="http://www.kde.org/announcements/announce-4.3.2.php" target="_blank">release announcements</a> for ways to try it out!</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">05 Oct :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-bryan-metalink" target="_blank">IETF Internet Draft</a> describing a Metalink/XML format. This is a work in progress and not meant to be implemented, only reviewed.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">04 Oct :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-bryan-metalinkhttp" target="_blank">IETF Internet Draft</a> describing a Metalink/HTTP format, as opposed to XML. This is a work in progress and not meant to be implemented, only reviewed.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">30 Sep :</td>
<td valign="top">If you have a SourceForge account, please <a href="https://sourceforge.net/apps/ideatorrent/sourceforge/ideatorrent/idea/321/" target="_blank">VOTE FOR METALINK SUPPORT!</a></td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">29 Sep :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-bryan-metalink" target="_blank">IETF Internet Draft</a> describing a Metalink/XML format. This is a work in progress and not meant to be implemented, only reviewed.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">29 Sep :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-bryan-metalinkhttp" target="_blank">IETF Internet Draft</a> describing a Metalink/HTTP format, as opposed to XML. This is a work in progress and not meant to be implemented, only reviewed.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">24 Sep :</td>
<td valign="top"><a href="http://tools.ietf.org/html/draft-bryan-metalinkhttp" target="_blank">IETF Internet Draft</a> describing a Metalink/HTTP format, as opposed to XML. This is a work in progress and not meant to be implemented, only reviewed.</td>
</tr>
<tr>
<td align="right" valign="top" nowrap="nowrap">22 Sep :</td>
<td valign="top"><a href="http://www.halogenware.com/software/retriever.html" target="_blank">Retriever</a> (Cross Platform, Java) is a download manager that includes Metalink and BitTorrent support.</td>
</tr>