blob: 4da182cc96a9e9d6f7c6644c27c92d1c54370a65 (
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
|
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
|