summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: 8fd17083e845940e18c6b5b6e541102b1428b88d (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
2007-11-28  Edward Hervey  <bilboed@bilboed.com>

	* src/htdocs/entities.gst:
	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gst-python/0.10.9.xml:
	* src/htdocs/releases/gst-python/Makefile.am:
	Release 0.10.9 of gst-python.

2007-11-16  Jan Schmidt <jan.schmidt at sun dot com>

	Release 0.10.15 of gstreamer and gst-plugins-base.

2007-09-24  Tim-Philipp Müller  <tim at centricular dot net>

	* src/htdocs/bugs/bugs.xsl:
	  Add some more useful links.

2007-09-19  Tim-Philipp Müller  <tim at centricular dot net>

	* src/htdocs/bugs/bugs.xml:
	  Update milestones in bug list.

2007-08-08  Edward Hervey  <edward@fluendo.com>

	* src/htdocs/entities.gst:
	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gnonlin/0.10.9.xml:
	* src/htdocs/releases/gnonlin/Makefile.am:
	Release 0.10.9 of GNonLin.

2007-08-03  Jan Schmidt  <thaytan@mad.scientist.com>

	* src/htdocs/entities.gst:
	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gst-plugins-base/0.10.14.xml:
	* src/htdocs/releases/gst-plugins-base/Makefile.am:
	* src/htdocs/releases/gstreamer/0.10.14.xml:
	* src/htdocs/releases/gstreamer/Makefile.am:
	Release 0.10.14 of Core & Base.

2007-08-01  Edward Hervey  <bilboed@bilboed.com>

	* src/htdocs/entities.gst:
	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gst-python/0.10.8.xml:
	* src/htdocs/releases/gst-python/Makefile.am:
	Releasing 0.10.8 of the Python Bindings.

2007-07-17  Stefan Kost  <ensonic@users.sf.net>

	* src/htdocs/documentation/Makefile.am:
	  Improve the build.
	
	* src/htdocs/download/index.xml:
	  Fix xml breakage.

2007-07-17  Stefan Kost  <ensonic@users.sf.net>

	* src/htdocs/download/index.xml:
	  Add windows download links.

	* src/htdocs/features/index.xml:
	  Slighly update. More needed.

2007-07-05  Tim-Philipp Müller  <tim at centricular dot net>

	* src/htdocs/documentation/index.xml:
	  Add link to design docs.

2007-06-19  Jan Schmidt  <thaytan@mad.scientist.com>

	* src/htdocs/news/news.xml:
	Fix link to the 0.10.5 Bad tarball

2007-06-19  Jan Schmidt  <thaytan@mad.scientist.com>

	* src/htdocs/entities.gst:
	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gst-plugins-bad/0.10.5.xml:
	* src/htdocs/releases/gst-plugins-bad/Makefile.am:
	* src/htdocs/releases/gst-plugins-good/0.10.6.xml:
	* src/htdocs/releases/gst-plugins-good/Makefile.am:
	* src/htdocs/releases/gst-plugins-ugly/0.10.6.xml:
	* src/htdocs/releases/gst-plugins-ugly/Makefile.am:
	Release 0.10.6 of Good/Ugly and 0.10.5 of Bad

2007-06-13  Stefan Kost  <ensonic@users.sf.net>

	* src/htdocs/download/index.xml:
	Add OpenBSD packages to download page.

2007-06-05  Jan Schmidt  <thaytan@mad.scientist.com>

	* src/htdocs/releases/gstreamer/0.10.13.xml:
	Fix typo produced by the release script

2007-06-05  Jan Schmidt  <thaytan@mad.scientist.com>

	* src/htdocs/entities.gst:
	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gst-plugins-base/0.10.13.xml:
	* src/htdocs/releases/gst-plugins-base/Makefile.am:
	* src/htdocs/releases/gstreamer/0.10.13.xml:
	* src/htdocs/releases/gstreamer/Makefile.am:
	Release 0.10.13 of GStreamer core & gst-plugins-base

2007-05-05  Edward Hervey  <edward@fluendo.com>

	* src/htdocs/entities.gst:
	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gnonlin/0.10.8.xml:
	* src/htdocs/releases/gnonlin/Makefile.am:
	Releasing GNonLin 0.10.8 "Half a kilo of power points"

2007-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/artwork/Makefile.am:
	  Fix svg.  Who added this without even verifying the link ?
	* src/htdocs/artwork/index.xml:
	  Fix typos.

2007-04-18  Tim-Philipp Müller  <tim at centricular dot net>

	* src/htdocs/lists/index.xml:
	  Fix copy'n'paste mistake.

2007-04-18  Tim-Philipp Müller  <tim at centricular dot net>

	* src/htdocs/lists/index.xml:
	  Fix links to mailing list archives. Move unused lists to the bottom.

2007-04-17  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/copy/releases/releases.ics:
	  End calendar only once.

2007-04-17  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/releases/Makefile.am:
	  Fix make rule to copy on update.

2007-04-16  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/copy/releases/releases.ics:
	  Updated releases.ics file with this command:
	  moap doap -f "/home/thomas/gst/head/*/*.doap" ical

2007-04-16  Tim-Philipp Müller  <tim at centricular dot net>

	* src/htdocs/bindings/bindings.xml:
	  Add some direct links to documentation for the GStreamer-Perl
	  bindings; move gst-python link from perl to gst-python section.

2007-04-06  David Schleef  <ds@schleef.org>

	* src/htdocs/apps/index.xml:
	  Add iStream

2007-03-23  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/apps/index.xml:
	  Add an application

2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>

	* src/htdocs/bugs/bugs.xml:
	  Add more milestones (could someone upload/update the website please?
	  the auto-upload/rebuild never seems to work for me).

2007-03-07  Jan Schmidt  <thaytan@mad.scientist.com>

	* src/htdocs/entities.gst:
	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gst-plugins-base/0.10.12.xml:
	* src/htdocs/releases/gst-plugins-base/Makefile.am:
	* src/htdocs/releases/gstreamer/0.10.12.xml:
	* src/htdocs/releases/gstreamer/Makefile.am:

	Release GStreamer and Base 0.10.12.

2007-03-03  David I. Lehn  <dlehn@users.sourceforge.net>

	* bin/planet-update:
	  Config file and build dir changes (temporarily to my dir).
	* planet/config.ini:
	  Remove incomplete ChangeLogish cruft.
	  Updates for newer planet code.
	  Add atom feed.
	* planet/index.html.tmpl:
	  Updates for newer planet code.
	  Add atom feed links.
	  Too lazy to find new icon so use text feed links vs images.
	  Misc fixes.

2007-02-09  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/bindings/bindings.xml:
	  put content on the python page

2007-02-09  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/bindings/bindings.xsl:
	* src/htdocs/modules/modules.xsl:
	  Fix dotext undeclared variable errors

2007-01-31  Edward Hervey  <edward@fluendo.com>

	* src/htdocs/entities.gst:
	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gst-python/0.10.7.xml:
	* src/htdocs/releases/gst-python/Makefile.am:
	Releasing gst-python 0.10.7 "You want to feel sorry for yourself,
	Don't you ?"

2007-01-26  Edward Hervey  <edward@fluendo.com>

	* src/htdocs/entities.gst:
	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gnonlin/0.10.7.xml:
	* src/htdocs/releases/gnonlin/Makefile.am:
	* src/htdocs/releases/gnonlin/template.xml:
	Releasing GNonLin 0.10.7 "Anything better ?"

2006-12-21  Jan Schmidt  <thaytan@mad.scientist.com>

	* bin/new-release:
	  Quote some variables.

	* src/htdocs/entities.gst:
	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gst-plugins-bad/0.10.4.xml:
	* src/htdocs/releases/gst-plugins-bad/Makefile.am:
	* src/htdocs/releases/gst-plugins-good/0.10.5.xml:
	* src/htdocs/releases/gst-plugins-good/Makefile.am:
	Release Good 0.10.5 and Bad 0.10.4

2006-12-19  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/download/fedora.xml:
	* src/htdocs/download/fedora5.xml:
	  Make the difference between the two fedora pages more clear.

2006-12-14  Jan Schmidt  <thaytan@mad.scientist.com>

	* src/htdocs/entities.gst:
	* src/htdocs/news/news.xml:
	Update the entities. Fix the version number in the ffmpeg release
	notes link

2006-12-13  Jan Schmidt  <thaytan@mad.scientist.com>

	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gst-ffmpeg/0.10.2.xml:
	* src/htdocs/releases/gst-ffmpeg/Makefile.am:
	* src/htdocs/releases/gst-plugins-ugly/0.10.5.xml:
	* src/htdocs/releases/gst-plugins-ugly/Makefile.am:
	Release 0.10.2 of gst-ffmpeg and 0.10.5 of gst-plugins-ugly

2006-12-07  Jan Schmidt  <thaytan@mad.scientist.com>

	* src/htdocs/releases/gst-plugins-base/0.10.11.xml:
	Remove empty person from the persons list
	* src/htdocs/releases/gstreamer/0.10.11.xml:
	Re-add the API additions section that I'm sure I added once
	already.

2006-12-07  Jan Schmidt  <thaytan@mad.scientist.com>

	* src/htdocs/releases/gst-plugins-base/0.10.11.xml:
	Fix the api additions tags <additions><item></item>, not
	<additions><addition></addition>

2006-12-06  Jan Schmidt  <thaytan@mad.scientist.com>

	* src/htdocs/entities.gst:
	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gst-plugins-base/0.10.11.xml:
	* src/htdocs/releases/gst-plugins-base/Makefile.am:
	* src/htdocs/releases/gstreamer/0.10.11.xml:
	* src/htdocs/releases/gstreamer/Makefile.am:
	GStreamer 0.10.11 and gst-plugins-base 0.10.11 releases

2006-12-04  Edward Hervey  <edward@fluendo.com>

	* src/htdocs/entities.gst:
	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gst-python/0.10.6.xml:
	* src/htdocs/releases/gst-python/Makefile.am:
	gst-python 0.10.6 "You're not very subtle, but you are effective"
	release.

2006-11-27  Edward Hervey  <edward@fluendo.com>

	* src/htdocs/news/news.xml:
	Mention the new GNonLin release in the news

2006-11-27  Edward Hervey  <edward@fluendo.com>

	* src/htdocs/entities.gst:
	* src/htdocs/releases/gnonlin/0.10.6.xml:
	* src/htdocs/releases/gnonlin/Makefile.am:
	GNonLin 0.10.6 "Where is my beard ?" release

2006-11-01  Tim-Philipp Müller  <tim at centricular dot net>

	* HACKING:
	  Fix numbering; mention that data-get downloads a LOT of data.

2006-10-27  Michael Smith  <msmith@fluendo.com>

	* src/htdocs/releases/gstreamer/template.xml:
	  11 consecutive releases with the same spelling mistake. Does nobody
	  ever actually read the release notes?

2006-10-10  Tim-Philipp Müller  <tim at centricular dot net>

	* src/htdocs/bugs/bugs.xml:
	  Add 0.10.11 milestones for core and -base.

2006-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/releases/gst-plugins-base/0.10.10.xml:
	* src/htdocs/releases/gst-plugins-base/Makefile.am:
	* src/htdocs/releases/gstreamer/0.10.10.xml:
	* src/htdocs/releases/gstreamer/Makefile.am:
	* src/htdocs/releases/text.xsl:
	  release notes for 0.10.10

2006-09-08  Tim-Philipp Müller  <tim at centricular dot net>

	* src/htdocs/bugs/bugs.xml:
	  Add more milestones for -good and -ugly.

2006-09-01  Michael Smith  <msmith@fluendo.com>

	* src/htdocs/releases/gst-ffmpeg/template.xml:
	* src/htdocs/releases/gst-plugins-bad/template.xml:
	* src/htdocs/releases/gst-plugins-base/template.xml:
	* src/htdocs/releases/gst-plugins-good/template.xml:
	* src/htdocs/releases/gst-plugins-ugly/template.xml:
	* src/htdocs/releases/gst-python/template.xml:
	* src/htdocs/releases/gstreamer/0.10.6.xml:
	* src/htdocs/releases/gstreamer/template.xml:
	* src/htdocs/releases/releases.xsl:
	* src/htdocs/releases/text.xsl:
	Patch from bug #341758: improve release XSL, better spelling.

2006-08-31  Tim-Philipp Müller  <tim at centricular dot net>

	* HACKING:
	  Fix wrong instructions.

	* TODO:
	  Fix typo.

	* src/htdocs/documentation/index.xml:
	  Only link to HEAD documentation and hide the 'stable' column
	  completely for now, since the docs in the 'stable' column are
	  ancient and don't seem to be ever updated, but at the same time
	  those are the docs most people seem to check out first. Not good.

2006-08-14  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gst-plugins-good/0.10.4.xml:
	* src/htdocs/releases/gst-plugins-good/Makefile.am:
	* src/htdocs/releases/gst-plugins-ugly/0.10.4.xml:
	* src/htdocs/releases/gst-plugins-ugly/Makefile.am:
	  releasing 0.10.4 of good and ugly

2006-07-20  Edward Hervey  <edward@fluendo.com>

	* src/htdocs/entities.gst:
	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gst-python/0.10.5.xml:
	* src/htdocs/releases/gst-python/Makefile.am:

	Releasing gst-python 0.10.5 "My Little Poney wants some Funk"

2006-07-20  Edward Hervey  <edward@fluendo.com>

	* src/htdocs/entities.gst:
	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gnonlin/0.10.5.xml:
	* src/htdocs/releases/gnonlin/Makefile.am:

	Releasing gnonlin 0.10.5 "Beavis and Zidane"

2006-07-14  Jan Schmidt  <thaytan@mad.scientist.com>

	* src/htdocs/entities.gst:
	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gst-plugins-base/0.10.9.xml:
	* src/htdocs/releases/gst-plugins-base/Makefile.am:
	* src/htdocs/releases/gstreamer/0.10.9.xml:
	* src/htdocs/releases/gstreamer/Makefile.am:

	Release 0.10.9 of core and base

2006-06-10  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/entities.gst:
	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gstreamer/0.10.8.xml:
	* src/htdocs/releases/gstreamer/Makefile.am:
	  releasing core 0.10.8

2006-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/bugs/bugs.xml:
	* src/htdocs/entities.gst:
	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gst-plugins-base/0.10.8.xml:
	* src/htdocs/releases/gst-plugins-base/Makefile.am:
	* src/htdocs/releases/gstreamer/0.10.7.xml:
	* src/htdocs/releases/gstreamer/Makefile.am:
	  releasing core and base

2006-05-15  Jan Schmidt  <thaytan@mad.scientist.com>

	* src/htdocs/entities.gst:
	Update module versions

2006-05-14  Jan Schmidt  <thaytan@mad.scientist.com>

	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gst-plugins-base/0.10.7.xml:
	* src/htdocs/releases/gst-plugins-base/Makefile.am:
	* src/htdocs/releases/gstreamer/0.10.6.xml:
	* src/htdocs/releases/gstreamer/Makefile.am:

	 Core and base releases

2006-05-14  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/copy/images/rtpbin-nojrtp.png:
	* src/copy/images/rtpbin.png:
	* src/htdocs/documentation/rtp.xml:
	* src/htdocs/images/Makefile.am:
	* src/htdocs/images/rtp-gst.png:
	* src/htdocs/images/rtp-gst2.png:
	* src/htdocs/images/rtpbin-nojrtp.png:
	* src/htdocs/images/rtpbin.png:
	* src/htdocs/modules/modules.xml:
	* src/htdocs/news/news.xml:
	  fix rtp docs and some GStreamer misspellings

2006-05-11  Edward Hervey  <edward@fluendo.com>

	* src/htdocs/entities.gst:
	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gnonlin/0.10.4.xml:
	* src/htdocs/releases/gnonlin/Makefile.am:
	GNonlin 0.10.4 release.

2006-05-08  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/bugs/bugs.xml:
	* src/htdocs/entities.gst:
	  fix up versions and milestones

2006-05-06  Tim-Philipp Müller  <tim at centricular dot net>

	* src/htdocs/bugs/bugs.xml:
	  Even more milestones

2006-05-04  Jan Schmidt  <thaytan@mad.scientist.com>

	* src/htdocs/entities.gst:
	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gst-plugins-bad/0.10.3.xml:
	* src/htdocs/releases/gst-plugins-bad/Makefile.am:
	* src/htdocs/releases/gst-plugins-good/0.10.3.xml:
	* src/htdocs/releases/gst-plugins-good/Makefile.am:

	  Releases of good and bad 

2006-05-01  Tim-Philipp Müller  <tim at centricular dot net>

	* src/htdocs/bugs/bugs.xml:
	  Add more milestones.

2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/entities.gst:
	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gst-python/0.10.4.xml:
	* src/htdocs/releases/gst-python/Makefile.am:
	  new gst-python release

2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gst-plugins-base/0.10.6.xml:
	* src/htdocs/releases/gst-plugins-base/Makefile.am:
	* src/htdocs/releases/gstreamer/0.10.5.xml:
	* src/htdocs/releases/gstreamer/Makefile.am:
	* src/htdocs/releases/gstreamer/template.xml:
	  new releases of core and base

2006-04-25  Edward Hervey  <edward@fluendo.com>

	* src/htdocs/entities.gst:
	* src/htdocs/releases/gnonlin/0.10.3.xml:
	* src/htdocs/releases/gnonlin/Makefile.am:
	Add release notes for gnonlin 0.10.3 "Birthday Cake"

2006-04-21  Edward Hervey  <edward@fluendo.com>

	* src/htdocs/entities.gst:
	* src/htdocs/releases/gnonlin/0.10.2.xml:
	* src/htdocs/releases/gnonlin/Makefile.am:
	Add release notes for gnonlin 0.10.2

2006-04-08  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/copy/releases/releases.ics:
	* src/copy/releases/releases.rss10.xml:
	* src/copy/releases/releases.rss20.xml:
	* src/htdocs/index.xsl:
	* src/htdocs/modules/modules.xml:
	* src/htdocs/releases/Makefile.am:
	  add rss and ics files for the releases, as an experiment

2006-04-06  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/bugs/bugs.xml:
	* src/htdocs/entities.gst:
	* src/htdocs/modules/modules.xml:
	* src/htdocs/releases/gnonlin/0.10.1.xml:
	* src/htdocs/releases/gnonlin/template.xml:
	  add release notes and product info for gnonlin
	* src/htdocs/releases/releases.xsl:
	* src/htdocs/releases/text.xsl:
	  don't prefix release notes with GStreamer:

2006-04-06  Edward Hervey  <edward@fluendo.com>

	* src/htdocs/releases/gnonlin/template.xml:
	Update gnonlin release template

2006-04-06  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/configure.in:
	* src/htdocs/releases/Makefile.am:
	* src/htdocs/releases/gnonlin/Makefile.am:
	* src/htdocs/releases/gnonlin/template.xml:
	  add gnonlin release template

2006-04-05  Jan Schmidt  <thaytan@mad.scientist.com>

	* HACKING:
	  Add some simple notes on how the data directory is maintained

2006-04-04  Jan Schmidt  <thaytan@mad.scientist.com>

	* src/htdocs/documentation/index.xml:
	  Split out the gst-plugins-base library documentation, since
	  it has a different version number to the core.

2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/page.xsl:
	  add a contact address in a footnote on pages

2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/documentation/plugins.xsl:
	  add a note on why some links are broken.  See #323798

2006-03-31  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/bugs/bugs.xml:
	* src/htdocs/entities.gst:
	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gst-ffmpeg/0.10.1.xml:
	* src/htdocs/releases/gst-ffmpeg/Makefile.am:
	* src/htdocs/releases/gst-plugins-ugly/0.10.3.xml:
	* src/htdocs/releases/gst-plugins-ugly/Makefile.am:
	  releases of ffmpeg and ugly

2006-03-21  Jan Schmidt  <thaytan@mad.scientist.com>

	* src/htdocs/news/news.xml:
	* src/htdocs/entities.gst:
	* src/htdocs/releases/gst-python/0.10.3.xml:
	* src/htdocs/releases/gst-python/Makefile.am:
	  releasing

2006-03-21  Jan Schmidt  <thaytan@mad.scientist.com>

	* planet/config.ini:
	  Change philn's feed to the RSS1. Escaped HTML in a CDATA
	  section doesn't seem to translate into planet properly.

2006-03-19  Thomas Vander Stichele  <thomas at apestaart dot org>

	* bin/www-update:
	* planet/config.ini:
	* src/copy/download/gstreamer-0.10-apps.repo:
	* src/copy/download/gstreamer-0.10-deps.repo:
	* src/copy/download/gstreamer-0.10-gst.repo:
	* src/htdocs/download/Makefile.am:
	* src/htdocs/download/fedora5.xml:
	* src/htdocs/download/index.xml:
	  add the Fedora Core 5 repository, plus repo files, and change
	  the way we handle fedora package repository

2006-03-17  Jan Schmidt  <thaytan@mad.scientist.com>

	* planet/config.ini:
	  Fix the spelling of Phil Normand

2006-03-17  Jan Schmidt  <thaytan@mad.scientist.com>

	* planet/config.ini:
	  Add Phil Normandy's blog

2006-03-13  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/bugs/bugs.xml:
	* src/htdocs/entities.gst:
	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gst-plugins-base/0.10.5.xml:
	* src/htdocs/releases/gst-plugins-base/Makefile.am:
	  another release

2006-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gst-plugins-base/0.10.4.xml:
	* src/htdocs/releases/gst-plugins-base/Makefile.am:
	* src/htdocs/releases/gstreamer/0.10.4.xml:
	* src/htdocs/releases/gstreamer/Makefile.am:
	  releasing

2006-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>

	* bin/data-put:
	  fix server to upload to
	* src/htdocs/news/news.xml:
	  add news about gst-python 0.8.4

2006-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/releases/gst-python/0.8.4.xml:
	* src/htdocs/releases/gst-python/Makefile.am:
	  about to release a 0.8.4 of gst-python

2006-03-06  Stefan Kost  <ensonic@users.sf.net>

	* src/htdocs/page.xsl:
	  Add some space on the right content side 

2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>

	* src/htdocs/bugs/bugs.xml:
	  Add more milestones.

2006-02-21  Jan Schmidt  <thaytan@mad.scientist.com>

	* src/htdocs/news/news.xml:
	Grrr, fix my links.

2006-02-21  Jan Schmidt  <thaytan@mad.scientist.com>

	* src/htdocs/news/news.xml:
	Add news item for the release

2006-02-20  Jan Schmidt  <thaytan@mad.scientist.com>

	* src/htdocs/entities.gst:
	* src/htdocs/releases/gst-plugins-bad/0.10.1.xml:
	* src/htdocs/releases/gst-plugins-bad/Makefile.am:
	* src/htdocs/releases/gst-plugins-ugly/0.10.2.xml:
	* src/htdocs/releases/gst-plugins-ugly/Makefile.am:
	Release gst-plugins-bad 0.10.1 and gst-plugins-ugly 0.10.2

2006-02-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>

	* src/htdocs/entities.gst:
	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gst-plugins/0.8.12.xml:
	* src/htdocs/releases/gst-plugins/Makefile.am:
	* src/htdocs/releases/gstreamer/0.8.12.xml:
	* src/htdocs/releases/gstreamer/Makefile.am:
	  Release gstreamer 0.8.12 "Cookies" and gst-plugins 0.8.12 "Ravage".

2006-02-09  Jan Schmidt  <thaytan@mad.scientist.com>

	* src/htdocs/entities.gst:
	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gst-plugins-base/0.10.3.xml:
	* src/htdocs/releases/gst-plugins-base/Makefile.am:
	* src/htdocs/releases/gst-plugins-good/0.10.2.xml:
	* src/htdocs/releases/gst-plugins-good/Makefile.am:
	Release gst-plugins-base 0.10.3 and gst-plugins-good 0.10.2

2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>

	* src/htdocs/news/news.xml:
	New item for core 0.10.3

2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>

	* src/htdocs/entities.gst:
	* src/htdocs/releases/gstreamer/0.10.3.xml:
	* src/htdocs/releases/gstreamer/Makefile.am:
	Release core 0.10.3

2006-02-03  Jan Schmidt  <thaytan@mad.scientist.com>

	* src/htdocs/modules/modules.xml:
	Enable the entities for our modules that our now stable.

2006-02-03  Jan Schmidt  <thaytan@mad.scientist.com>
	* src/htdocs/entities.gst:
	Interesting - these are stable versions, not devel.

2006-02-03  Jan Schmidt  <thaytan@mad.scientist.com>

	* src/htdocs/entities.gst:
	Update version numbers

2006-01-19  Stefan Kost  <ensonic@users.sf.net>

	* HACKING:
	  better description
	* src/htdocs/documentation/index.xml:
	  fix html tables
	* src/html.make:
	  point to correct docs

2006-01-14  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gst-python/0.8.3.xml:
	  releasing gst-python 0.8.3

2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gst-plugins-good/0.10.1.xml:
	* src/htdocs/releases/gst-plugins-good/Makefile.am:
	* src/htdocs/releases/gst-plugins-ugly/0.10.1.xml:
	* src/htdocs/releases/gst-plugins-ugly/Makefile.am:
	  releasing good and ugly 0.10.1

2005-12-18  Tim-Philipp Müller  <tim at centricular dot net>

	* src/htdocs/bugs/bugs.xsl:
	  Add link to list unresolved bugs that are not assigned
	  to a real component yet (= "don't know" component).

2005-12-16  Andy Wingo  <wingo@pobox.com>

	* src/htdocs/news/status.xml: Dump.

2005-12-11  Tim-Philipp Müller  <tim at centricular dot net>

	* src/htdocs/bugs/bugs.xml:
	  Add new column for the 'documentation' component; add
	  0.10.0 and 0.10.1 milestones to all components.

2005-12-05  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>

	* src/htdocs/releases/gst-ffmpeg/0.10.0.xml:
	* src/htdocs/releases/gst-ffmpeg/Makefile.am:
	* src/htdocs/releases/gst-plugins-bad/0.10.0.xml:
	* src/htdocs/releases/gst-plugins-bad/Makefile.am:
	* src/htdocs/releases/gst-plugins-base/0.10.0.xml:
	* src/htdocs/releases/gst-plugins-base/Makefile.am:
	* src/htdocs/releases/gst-plugins-good/0.10.0.xml:
	* src/htdocs/releases/gst-plugins-good/Makefile.am:
	* src/htdocs/releases/gst-plugins-ugly/0.10.0.xml:
	* src/htdocs/releases/gst-plugins-ugly/Makefile.am:
	* src/htdocs/releases/gst-python/0.10.0.xml:
	* src/htdocs/releases/gst-python/Makefile.am:
	* src/htdocs/releases/gstreamer/0.10.0.xml:
	* src/htdocs/releases/gstreamer/Makefile.am:
	  releasing 0.10.0

2005-12-03  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/documentation/index.xml:
	  separate plugins and other docs

2005-12-03  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/documentation/Makefile.am:
	* src/htdocs/documentation/index.xml:
	  add plugin docs from core and bad

2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>

	* src/htdocs/news/news.xml:
	  release

2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>

	* src/htdocs/releases/gst-ffmpeg/0.9.7.xml:
	* src/htdocs/releases/gst-ffmpeg/Makefile.am:
	* src/htdocs/releases/gst-plugins-bad/0.9.7.xml:
	* src/htdocs/releases/gst-plugins-bad/Makefile.am:
	* src/htdocs/releases/gst-plugins-base/0.9.7.xml:
	* src/htdocs/releases/gst-plugins-base/Makefile.am:
	* src/htdocs/releases/gst-plugins-good/0.9.7.xml:
	* src/htdocs/releases/gst-plugins-good/Makefile.am:
	* src/htdocs/releases/gst-plugins-ugly/0.9.7.xml:
	* src/htdocs/releases/gst-plugins-ugly/Makefile.am:
	* src/htdocs/releases/gst-python/0.9.7.xml:
	* src/htdocs/releases/gst-python/Makefile.am:
	* src/htdocs/releases/gstreamer/0.9.7.xml:
	* src/htdocs/releases/gstreamer/Makefile.am:
	  releasing 0.9.7

2005-11-24  Andy Wingo  <wingo@pobox.com>

	* src/htdocs/entities.gst: Update entities

	* src/htdocs/news/status.xml: dump

2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gst-ffmpeg/0.9.6.xml:
	* src/htdocs/releases/gst-ffmpeg/Makefile.am:
	* src/htdocs/releases/gst-plugins-bad/0.9.6.xml:
	* src/htdocs/releases/gst-plugins-bad/Makefile.am:
	* src/htdocs/releases/gst-plugins-base/0.9.6.xml:
	* src/htdocs/releases/gst-plugins-base/Makefile.am:
	* src/htdocs/releases/gst-plugins-base/template.xml:
	* src/htdocs/releases/gst-plugins-good/0.9.6.xml:
	* src/htdocs/releases/gst-plugins-good/Makefile.am:
	* src/htdocs/releases/gst-plugins-ugly/0.9.6.xml:
	* src/htdocs/releases/gst-plugins-ugly/Makefile.am:
	* src/htdocs/releases/gst-python/0.9.6.xml:
	* src/htdocs/releases/gst-python/Makefile.am:
	* src/htdocs/releases/gstreamer/0.9.6.xml:
	* src/htdocs/releases/gstreamer/Makefile.am:
	  releasing 0.9.6

2005-11-19  Andy Wingo  <wingo@pobox.com>

	* src/htdocs/entities.gst: Update versions.

2005-11-11  Thomas Vander Stichele  <thomas at apestaart dot org>

	* bin/new-release:
	* bin/update-contributors:
	  update scripts a little
	* src/htdocs/releases/gst-ffmpeg/0.9.5.xml:
	* src/htdocs/releases/gst-ffmpeg/Makefile.am:
	* src/htdocs/releases/gst-ffmpeg/template.xml:
	* src/htdocs/releases/gst-plugins-bad/0.9.5.xml:
	* src/htdocs/releases/gst-plugins-bad/Makefile.am:
	* src/htdocs/releases/gst-plugins-bad/template.xml:
	* src/htdocs/releases/gst-plugins-base/0.9.5.xml:
	* src/htdocs/releases/gst-plugins-base/Makefile.am:
	* src/htdocs/releases/gst-plugins-base/template.xml:
	* src/htdocs/releases/gst-plugins-good/0.9.5.xml:
	* src/htdocs/releases/gst-plugins-good/Makefile.am:
	* src/htdocs/releases/gst-plugins-good/template.xml:
	* src/htdocs/releases/gst-plugins-ugly/0.9.5.xml:
	* src/htdocs/releases/gst-plugins-ugly/Makefile.am:
	* src/htdocs/releases/gst-plugins-ugly/template.xml:
	* src/htdocs/releases/gst-python/0.9.5.xml:
	* src/htdocs/releases/gst-python/Makefile.am:
	* src/htdocs/releases/gst-python/template.xml:
	* src/htdocs/releases/gstreamer/0.9.5.xml:
	* src/htdocs/releases/gstreamer/Makefile.am:
	* src/htdocs/releases/gstreamer/template.xml:
	  do release notes 

2005-11-11  Andy Wingo  <wingo@pobox.com>

	* src/htdocs/news/status.xml: dump

2005-11-11  Thomas Vander Stichele  <thomas at apestaart dot org>

	* bin/bugzilla:
	* bin/new-release:
	* bin/update-contributors:
	  add/update scripts to help with the release

2005-10-31  Andy Wingo  <wingo@pobox.com>

	* try again

	* src/htdocs/news/status.xml: dump

2005-10-28  Tim-Philipp Müller  <tim at centricular dot net>

	* src/htdocs/bugs/bugs.xsl:
	  Add 'create bug' row for each component.

2005-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>

	* src/htdocs/bugs/bugs.xml:
	* src/htdocs/entities.gst:
	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gst-ffmpeg/0.8.7.xml:
	* src/htdocs/releases/gst-ffmpeg/Makefile.am:
	  Release gst-ffmpeg 0.8.7 "Redneck soup".

2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>

	* bin/www-update:
	* src/htdocs/bugs/bugs.xml:
	* src/htdocs/entities.gst:
	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gst-ffmpeg/Makefile.am:
	* src/htdocs/releases/gst-plugins-bad/0.9.4.xml:
	* src/htdocs/releases/gst-plugins-bad/Makefile.am:
	* src/htdocs/releases/gst-plugins-base/0.9.4.xml:
	* src/htdocs/releases/gst-plugins-base/Makefile.am:
	* src/htdocs/releases/gst-plugins-good/0.9.4.xml:
	* src/htdocs/releases/gst-plugins-good/Makefile.am:
	* src/htdocs/releases/gst-plugins-ugly/0.9.4.xml:
	* src/htdocs/releases/gst-plugins-ugly/Makefile.am:
	* src/htdocs/releases/gst-python/0.9.4.xml:
	* src/htdocs/releases/gst-python/Makefile.am:
	* src/htdocs/releases/gstreamer/0.9.4.xml:
	* src/htdocs/releases/gstreamer/Makefile.am:
	  releasing 0.9.4 packages

2005-10-21  Andy Wingo  <wingo@pobox.com>

	* src/htdocs/news/status.xml (http): dump

2005-10-13  Andy Wingo  <wingo@pobox.com>

	* src/htdocs/news/status.xml (http): dump

2005-10-05  Andy Wingo  <wingo@pobox.com>

	* src/htdocs/news/status.xml: sump.

2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/news/news.xml:
	  releasing

2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/releases/gst-ffmpeg/Makefile.am:
	* src/htdocs/releases/gst-ffmpeg/0.9.3.xml:
	* src/htdocs/releases/gst-plugins-bad/Makefile.am:
	* src/htdocs/releases/gst-plugins-base/0.9.3.xml:
	* src/htdocs/releases/gst-plugins-base/Makefile.am:
	* src/htdocs/releases/gst-plugins-good/0.9.3.xml:
	* src/htdocs/releases/gst-plugins-good/Makefile.am:
	* src/htdocs/releases/gst-plugins-ugly/0.9.3.xml:
	* src/htdocs/releases/gst-plugins-ugly/Makefile.am:
	* src/htdocs/releases/gst-python/0.9.3.xml:
	* src/htdocs/releases/gst-python/Makefile.am:
	* src/htdocs/releases/gstreamer/0.9.3.xml:
	* src/htdocs/releases/gstreamer/Makefile.am:

2005-09-28  Andy Wingo  <wingo@pobox.com>

	* src/htdocs/news/status.xml: Dump.

2005-09-26  Andy Wingo  <wingo@pobox.com>

	* src/htdocs/news/Makefile.am: Add rule to generate
	status-rss-1.0.xml.

	* src/htdocs/news/status.xml: Dump the status into an xml file.

	* src/htdocs/news/status2rss-1.0.xsl: New file, copied from the
	news one.

2005-09-17  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/documentation/plugins.xsl:
	* src/htdocs/page.xsl:
	  make sure titles show up

2005-09-15  Philippe Khalaf <burger at speedy dor org>

	* src/htdocs/documentation/rtp.xml:
	  Updating the rtp docs
	  
2005-09-11  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/documentation/Makefile.am:
	* src/htdocs/documentation/index.xml:
	* src/htdocs/documentation/plugins.xml:
	* src/htdocs/documentation/splitup.xml:
	  First stab at centralizing docs for all plug-ins

2005-09-06  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/news/news.xml:
	  releasing 0.9.x tarballs

2005-09-06  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/releases/gstreamer/0.9.2.xml:
	  add bugs fixed

2005-09-06  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/modules/modules.xml:
	  editor -> stable
	* src/htdocs/releases/releases.xsl:
	  fix double slash in cvs links in release notes

2005-09-06  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/entities.gst:
	* src/htdocs/releases/gst-ffmpeg/0.8.0.xml:
	* src/htdocs/releases/gst-ffmpeg/0.8.1.xml:
	* src/htdocs/releases/gst-ffmpeg/0.8.2.xml:
	* src/htdocs/releases/gst-ffmpeg/0.8.3.xml:
	* src/htdocs/releases/gst-ffmpeg/0.8.4.xml:
	* src/htdocs/releases/gst-ffmpeg/0.8.5.xml:
	* src/htdocs/releases/gst-ffmpeg/0.8.6.xml:
	* src/htdocs/releases/gst-monkeysaudio/0.8.0.xml:
	* src/htdocs/releases/gst-player/0.6.0.xml:
	* src/htdocs/releases/gst-player/0.8.0.xml:
	* src/htdocs/releases/gst-plugins-bad/0.9.1.xml:
	* src/htdocs/releases/gst-plugins-base/0.9.1.xml:
	* src/htdocs/releases/gst-plugins-base/0.9.2.xml:
	* src/htdocs/releases/gst-plugins-base/Makefile.am:
	* src/htdocs/releases/gst-plugins-good/0.9.1.xml:
	* src/htdocs/releases/gst-plugins-ugly/0.9.1.xml:
	* src/htdocs/releases/gst-plugins/0.6.5.xml:
	* src/htdocs/releases/gst-plugins/0.7.3.xml:
	* src/htdocs/releases/gst-plugins/0.7.4.xml:
	* src/htdocs/releases/gst-plugins/0.7.5.xml:
	* src/htdocs/releases/gst-plugins/0.7.6.xml:
	* src/htdocs/releases/gst-plugins/0.8.0.xml:
	* src/htdocs/releases/gst-plugins/0.8.1.xml:
	* src/htdocs/releases/gst-plugins/0.8.10.xml:
	* src/htdocs/releases/gst-plugins/0.8.11.xml:
	* src/htdocs/releases/gst-plugins/0.8.2.xml:
	* src/htdocs/releases/gst-plugins/0.8.3.xml:
	* src/htdocs/releases/gst-plugins/0.8.4.xml:
	* src/htdocs/releases/gst-plugins/0.8.5.xml:
	* src/htdocs/releases/gst-plugins/0.8.6.xml:
	* src/htdocs/releases/gst-plugins/0.8.7.xml:
	* src/htdocs/releases/gst-plugins/0.8.8.xml:
	* src/htdocs/releases/gst-plugins/0.8.9.xml:
	* src/htdocs/releases/gst-python/0.7.90.xml:
	* src/htdocs/releases/gst-python/0.7.91.xml:
	* src/htdocs/releases/gst-python/0.7.92.xml:
	* src/htdocs/releases/gst-python/0.7.93.xml:
	* src/htdocs/releases/gst-python/0.7.94.xml:
	* src/htdocs/releases/gst-python/0.8.0.xml:
	* src/htdocs/releases/gst-python/0.8.1.xml:
	* src/htdocs/releases/gst-python/0.8.2.xml:
	* src/htdocs/releases/gstreamer/0.7.4.xml:
	* src/htdocs/releases/gstreamer/0.8.0.xml:
	* src/htdocs/releases/gstreamer/0.8.1.xml:
	* src/htdocs/releases/gstreamer/0.8.10.xml:
	* src/htdocs/releases/gstreamer/0.8.11.xml:
	* src/htdocs/releases/gstreamer/0.8.2.xml:
	* src/htdocs/releases/gstreamer/0.8.3.xml:
	* src/htdocs/releases/gstreamer/0.8.4.xml:
	* src/htdocs/releases/gstreamer/0.8.5.xml:
	* src/htdocs/releases/gstreamer/0.8.6.xml:
	* src/htdocs/releases/gstreamer/0.8.7.xml:
	* src/htdocs/releases/gstreamer/0.8.8.xml:
	* src/htdocs/releases/gstreamer/0.8.9.xml:
	* src/htdocs/releases/gstreamer/0.9.2.xml:
	  adding release notes for good, bad and ugly

2005-09-06  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/configure.in:
	* src/htdocs/entities.gst:
	* src/htdocs/modules/modules.xml:
	* src/htdocs/releases/Makefile.am:
	* src/htdocs/releases/gst-plugins-bad/Makefile.am:
	* src/htdocs/releases/gst-plugins-base/0.9.2.xml:
	* src/htdocs/releases/gst-plugins-good/Makefile.am:
	* src/htdocs/releases/gst-plugins-ugly/Makefile.am:
	* src/htdocs/releases/gstreamer/Makefile.am:
	  starting to prepare for a 0.9 release

2005-09-04  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/entities.gst:
	* src/htdocs/releases/gst-plugins/0.8.11.xml:
	* src/htdocs/releases/gst-plugins/Makefile.am:
	* src/htdocs/releases/gstreamer/0.8.11.xml:
	* src/htdocs/releases/gstreamer/Makefile.am:
	* src/htdocs/news/news.xml:
	  release notes for core and plugins

2005-09-04  Thomas Vander Stichele  <thomas at apestaart dot org>

	* bin/apt-rep:
	  change way of generating
	* src/htdocs/bugs/bugs.xml:
	  remove gst-player; add gst-python; add milestones
	* src/htdocs/releases/gstreamer/0.8.10.xml:

2005-08-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>

	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gst-ffmpeg/0.8.6.xml:
	* src/htdocs/releases/gst-ffmpeg/Makefile.am:
	  Release gst-ffmpeg 0.8.6 "Vamoz a la Playa".

2005-07-01  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/releases/gst-plugins/0.8.10.xml:
	* src/htdocs/releases/gst-plugins/Makefile.am:
	  release notes

2005-06-24  Stefan Kost  <ensonic@users.sf.net>

	* HACKING:
	  how to upload changed files
	* src/htdocs/dev/index.xml:
	  added link to bugzilla
	  added section about buildbots

2005-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>

	* bin/yum-rep:
	* src/configure.in:
	* src/htdocs/releases/Makefile.am:
	* src/htdocs/releases/gst-plugins-base/0.9.1.xml:
	* src/htdocs/releases/gst-plugins-base/Makefile.am:
	  release notes for 0.9.1

2005-06-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>

	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gst-ffmpeg/0.8.5.xml:
	* src/htdocs/releases/gst-ffmpeg/Makefile.am:
	  Release gst-ffmpeg 0.8.5 "For the better of the world".

2005-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>

	* bin/apt-rep:
	  add a space
	* src/htdocs/download/fedora.xml:
	  change to fc3, add a note for livna's gpg key

2005-05-25  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/releases/gst-plugins/0.8.9.xml:
	* src/htdocs/releases/gst-plugins/Makefile.am:
	  release notes

2005-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/bugs/bugs.xml:
	  add bugzilla plugins versions

2005-05-08  Andy Wingo  <wingo@pobox.com>

	* bin/planet-update: Update to work with newer planet code.

	* src/htdocs/bindings/bindings.xml: Updates for guile and perl.

2005-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/releases/gstreamer/0.8.10.xml:
	* src/htdocs/releases/gstreamer/Makefile.am:
	  add release notes

2005-04-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>

	* src/htdocs/tasks/gnome.xml:
	  Remove Totem subtitle selection task since that's completed.

2005-03-26  Stefan Kost  <ensonic@users.sf.net>

	* src/htdocs/download/index.xml:
	  people should try gentoo forums first before comming to gst-irc

2005-03-26  Stefan Kost  <ensonic@users.sf.net>

	* src/htdocs/bindings/bindings.xsl:
	* src/htdocs/bugs/bugs.xsl:
	  another litle finetuning of the tables

2005-03-26  Stefan Kost  <ensonic@users.sf.net>

	* TODO:
	  little update
	* src/htdocs/download/index.xml:
	  added gentoo as a distribution with good gstreamer support
	* src/htdocs/documentation/index.xml:
	* src/htdocs/modules/modules.xsl:
	  a litle finetuning of the tables on modules and docu-pages

2005-03-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>

	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gst-ffmpeg/0.8.4.xml:
	* src/htdocs/releases/gst-ffmpeg/Makefile.am:
	  Release of gst-ffmpeg 0.8.4 "Mellow on my fingers".

2005-03-07  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/entities.gst:
	* src/htdocs/news/news.xml:
	  releasing plugins 0.8.8

2005-03-07  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/releases/gst-plugins/0.8.8.xml:
	* src/htdocs/releases/gst-plugins/Makefile.am:
	  new plugins release notes

2005-02-08  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/entities.gst:
	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gstreamer/0.8.9.xml:
	* src/htdocs/releases/gstreamer/Makefile.am:
	  releasing core 0.8.9

2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>

	* src/htdocs/tasks/gstreamer.xml:
	  Add some more notes on XML.

2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>

	* src/htdocs/tasks/code.xml:
	* src/htdocs/tasks/gnome.xml:
	* src/htdocs/tasks/gstreamer.xml:
	* src/htdocs/tasks/people.xml:
	  Add some new 'simple' tasks (people asked for them).

2005-01-20  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>

	* src/htdocs/documentation/index.xml:
	* src/htdocs/news/news.xml:
	  fix link to new licensing page

2005-01-15  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/documentation/Makefile.am:
	* src/htdocs/documentation/licensing.xml:
	* src/htdocs/documentation/licensingfaq.xml:
	  remove faq here and point to faq in faq.  faq off.

2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/news/news.xml:
	  releasing 0.8.7

2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/releases/gst-plugins/0.8.7.xml:
	* src/htdocs/releases/gst-plugins/Makefile.am:
	  release notes for gst-plugins 0.8.7

2004-12-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>

	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gst-ffmpeg/0.8.3.xml:
	* src/htdocs/releases/gst-ffmpeg/Makefile.am:
	  Release notes for GStreamer FFmpeg 0.8.3 "Tiny Piece of Plastic".

2004-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/bugs/bugs.xml:
	* src/htdocs/entities.gst:
	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gstreamer/0.8.8.xml:
	* src/htdocs/releases/gstreamer/Makefile.am:
	  new core release

2004-12-21  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/download/fedora.xml:
	  fix up gpg verification

2004-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>

	patch by: Aurelien Mino

	* src/htdocs/bindings/bindings.xml:
	* src/htdocs/dev/index.xml:
	* src/htdocs/entities.gst:
	* src/htdocs/modules/modules.xsl:
	* src/htdocs/tasks/code.xml:
	  change gst-cvs-http and use it everywhere

2004-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/releases/gst-plugins/0.8.6.xml:
	  Christian's suggestions

2004-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>

	* bin/bugzilla:
	  fix script to handle entities
	* bin/www-update:
	* src/htdocs/releases/gst-plugins/0.8.6.xml:
	  repaste bugs

2004-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/releases/gst-plugins/0.8.6.xml:
	  new plugins release

2004-11-04  Owen Fraser-Green  <owen@discobabe.net>

	* src/htdocs/bindings/bindings.xml: Updated gst-sharp info.

2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>

	* src/htdocs/releases/gst-ffmpeg/0.8.2.xml:
	* src/htdocs/releases/gst-ffmpeg/Makefile.am:
	* src/htdocs/news/news.xml:
	  writing release notes for gst-ffmpeg 0.8.2.

2004-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/releases/gstreamer/0.8.7.xml:
	* src/htdocs/releases/gstreamer/Makefile.am:
	  writing release notes for gstreamer 0.8.7

2004-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/releases/gst-plugins/0.8.5.xml:
	* src/htdocs/releases/gst-plugins/Makefile.am:
	  writing release notes for gst-plugins 0.8.5

2004-10-05  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/entities.gst:
	* src/htdocs/news/news.xml:
	  releasing gstreamer 0.8.6

2004-10-05  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/releases/gstreamer/0.8.6.xml:
	* src/htdocs/releases/gstreamer/Makefile.am:
	  writing release notes

2004-08-31  Thomas Vander Stichele  <thomas at apestaart dot org>

	* bin/data-get:
	* src/htdocs/entities.gst:
	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gst-plugins/Makefile.am:
	  releasing gst-plugins 0.8.4

2004-08-18  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/download/fedora.xml:
	  fix download location for yum

2004-08-16  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/bugs/bugs.xml:
	* src/htdocs/entities.gst:
	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gstreamer/0.8.5.xml:
	  releasing

2004-08-16  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/releases/gstreamer/0.8.5.xml:
	  adding bugs

2004-08-12  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/page.xsl:
	* src/htdocs/releases/gstreamer/0.8.5.xml:
	* src/htdocs/releases/gstreamer/Makefile.am:
	* src/htdocs/releases/releases.xsl:
	* src/htdocs/releases/text.xsl:
	  add API changes to release notes.
	  preliminary core 0.8.5 release notes.

2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/entities.gst:
	* src/htdocs/news/news.xml:
	  releasing

2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/releases/gst-plugins/0.8.3.xml:
	* src/htdocs/releases/gst-plugins/Makefile.am:
	  preparing release

2004-07-30  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/bugs/bugs.xml:
	  add new milestones

2004-07-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>

	* src/htdocs/apps/index.xml:
	  added 3rd party apps section

2004-07-20  Thomas Vander Stichele  <thomas at apestaart dot org>

	reviewed by: <delete if not using a buddy>

	* src/htdocs/entities.gst:
	* src/htdocs/news/news.xml:

2004-07-20  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/releases/gstreamer/0.8.4.xml:
	* src/htdocs/releases/gstreamer/Makefile.am:
	  release notes

2004-07-18  David I. Lehn <dlehn@users.sourceforge.net>

	* src/htdocs/news/news2rss-1.0.xsl:
	  Add fragment id to item links

2004-07-18  David I. Lehn <dlehn@users.sourceforge.net>

	* bin/planet-update:
	  Add Planet GStreamer update script
	* src/configure.in:
	* src/htdocs/Makefile.am:
	  Planet GStreamer dir creation
	* src/htdocs/header.xml:
	* src/htdocs/news/news.xml:
	  Add Planet GStreamer to site

2004-07-18  David I. Lehn <dlehn@users.sourceforge.net>

	* src/htdocs/news/news2rss-1.0.xsl:
	  Attempt to fix rss feed escaping

2004-07-16  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/modules/modules.xml:
	* src/htdocs/news/news.xml:
	* src/htdocs/releases/gst-ffmpeg/Makefile.am:
	  releasing

2004-07-16  Thomas Vander Stichele  <thomas at apestaart dot org>

	* src/htdocs/bugs/bugs.xsl:
	  add blocker bugs
	* src/htdocs/news/news.xml:
	  fix typo
	* src/htdocs/releases/gst-ffmpeg/0.8.1.xml:
	  add release notes

2004-07-12  David I. Lehn <dlehn@users.sourceforge.net>

	* src/htdocs/index.xsl:
	* src/htdocs/news/Makefile.am:
	* src/htdocs/news/news.xsl:
	* src/htdocs/news/news2atom.xsl:
	* src/htdocs/news/news2rss-1.0.xsl:
	Generate news feed

2004-07-11  David I. Lehn <dlehn@users.sourceforge.net>

	* ChangeLog:
	Starting off a www module ChangeLog