File: changelog

package info (click to toggle)
vdr-plugin-xineliboutput 1.1.0%2Bcvs20150907-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,480 kB
  • ctags: 4,398
  • sloc: ansic: 35,664; sh: 393; makefile: 286; cpp: 11
file content (981 lines) | stat: -rw-r--r-- 31,896 bytes parent folder | download
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
vdr-plugin-xineliboutput (1.1.0+cvs20150907-3) unstable; urgency=medium

  * Fixed Vcs-Git
  * Disable po update to get a reproducible build

 -- Tobias Grimm <etobi@debian.org>  Sat, 10 Oct 2015 12:32:15 +0200

vdr-plugin-xineliboutput (1.1.0+cvs20150907-2) unstable; urgency=medium

  * Fixed installation of *.mo translations

 -- Tobias Grimm <etobi@debian.org>  Sat, 26 Sep 2015 23:22:12 +0200

vdr-plugin-xineliboutput (1.1.0+cvs20150907-1) unstable; urgency=medium

  * New Upstream Snapshot
  * Fixed get-vcs-snapshot
  * Added truecolor patch to add a --truecolor option which forces true color
    even if no client is conncected (required by some skins)

 -- Tobias Grimm <etobi@debian.org>  Tue, 08 Sep 2015 00:18:47 +0200

vdr-plugin-xineliboutput (1.1.0+cvs20150211-4) unstable; urgency=medium

  * Now supporting the /etc/vdr/conf.d mechanism

 -- Tobias Grimm <etobi@debian.org>  Mon, 23 Mar 2015 23:30:11 +0100

vdr-plugin-xineliboutput (1.1.0+cvs20150211-3) unstable; urgency=medium

  * Build-depend on vdr-dev (>= 2.2.0)

 -- Tobias Grimm <etobi@debian.org>  Thu, 19 Feb 2015 12:40:02 +0100

vdr-plugin-xineliboutput (1.1.0+cvs20150211-2) unstable; urgency=medium

  * Build-depend on vdr-dev (>= 2.1.10)
  * Standards-Version: 3.9.6
  * Added vdr-2.1.10-compat.patch from Lars Hanisch / yaVDR

 -- Tobias Grimm <etobi@debian.org>  Sat, 14 Feb 2015 13:41:18 +0100

vdr-plugin-xineliboutput (1.1.0+cvs20150211-1) unstable; urgency=medium

  * New Upstream Snapshot
  * Build-depend on vdr-dev >= 2.1.9

 -- Tobias Grimm <etobi@debian.org>  Wed, 11 Feb 2015 21:48:20 +0100

vdr-plugin-xineliboutput (1.1.0-2) unstable; urgency=medium

  * Build-depend on vdr-dev (>= 2.0.6)
  * Standards-Version: 3.9.5

 -- Tobias Grimm <etobi@debian.org>  Sun, 26 Oct 2014 14:30:00 +0100

vdr-plugin-xineliboutput (1.1.0-1) unstable; urgency=low

  * New upstream release

 -- Tobias Grimm <etobi@debian.org>  Sat, 14 Sep 2013 21:18:41 +0200

vdr-plugin-xineliboutput (1.0.7+cvs20130223.2117-6) unstable; urgency=low

  * Added *-dbg packages

 -- Tobias Grimm <etobi@debian.org>  Mon, 01 Apr 2013 19:20:55 +0200

vdr-plugin-xineliboutput (1.0.7+cvs20130223.2117-5) unstable; urgency=low

  * Build-depend on vdr-dev (>= 2.0.0)

 -- Tobias Grimm <etobi@debian.org>  Sun, 31 Mar 2013 14:00:25 +0200

vdr-plugin-xineliboutput (1.0.7+cvs20130223.2117-4) unstable; urgency=low

  * Build-depend on vdr-dev (>= 1.7.42)

 -- Tobias Grimm <etobi@debian.org>  Sat, 23 Mar 2013 20:48:32 +0100

vdr-plugin-xineliboutput (1.0.7+cvs20130223.2117-3) unstable; urgency=low

  * Build-depend on vdr-dev (>= 1.7.41)

 -- Tobias Grimm <etobi@debian.org>  Sun, 17 Mar 2013 19:52:58 +0100

vdr-plugin-xineliboutput (1.0.7+cvs20130223.2117-2) unstable; urgency=low

  * Build-depend on vdr-dev (>= 1.7.40)

 -- Tobias Grimm <etobi@debian.org>  Sun, 10 Mar 2013 19:41:53 +0100

vdr-plugin-xineliboutput (1.0.7+cvs20130223.2117-1) unstable; urgency=low

  * New Upstream Snapshot
  * Debhelper 9
  * Updated debian/copyright
  * Build-depend on vdr-dev (>= 1.7.39)

 -- Tobias Grimm <etobi@debian.org>  Sun, 24 Feb 2013 09:38:54 +0100

vdr-plugin-xineliboutput (1.0.7+cvs20120609.1902-1) unstable; urgency=low

  * New Upstream Snapshot
  * Build-depend on vdr-dev (>= 1.7.28)

 -- Tobias Grimm <etobi@debian.org>  Sat, 09 Jun 2012 21:04:39 +0200

vdr-plugin-xineliboutput (1.0.7+cvs20120529.1722-1) unstable; urgency=low

  * New Upstream Snapshot

 -- Tobias Grimm <etobi@debian.org>  Tue, 29 May 2012 19:22:47 +0200

vdr-plugin-xineliboutput (1.0.7+cvs20120506.1319-1) unstable; urgency=low

  * New Upstream Snapshot

 -- Tobias Grimm <etobi@debian.org>  Sun, 06 May 2012 15:20:54 +0200

vdr-plugin-xineliboutput (1.0.7+cvs20120419.2159-1) unstable; urgency=low

  * New Upstream Snapshot
  * Build-depend on vdr-dev (>= 1.7.27)

 -- Tobias Grimm <etobi@debian.org>  Fri, 20 Apr 2012 00:00:43 +0200

vdr-plugin-xineliboutput (1.0.7+cvs20120325.0846-1) unstable; urgency=low

  * New Upstream Snapshot
  * Build-depend on vdr-dev (>= 1.7.26)
  * Standards-Version: 3.9.3

 -- Tobias Grimm <etobi@debian.org>  Sun, 25 Mar 2012 10:46:53 +0200

vdr-plugin-xineliboutput (1.0.7+cvs20120214.0259-2) unstable; urgency=low

  * Added fix-segfault.patch (Closes #659655)

 -- Tobias Grimm <etobi@debian.org>  Tue, 14 Feb 2012 21:38:10 +0100

vdr-plugin-xineliboutput (1.0.7+cvs20120214.0259-1) unstable; urgency=low

  * New Upstream Snapshot

 -- Tobias Grimm <etobi@debian.org>  Tue, 14 Feb 2012 03:59:37 +0100

vdr-plugin-xineliboutput (1.0.7+cvs20120130.2334-2) unstable; urgency=low

  * Switching to libxine2

 -- Tobias Grimm <etobi@debian.org>  Fri, 03 Feb 2012 22:11:52 +0100

vdr-plugin-xineliboutput (1.0.7+cvs20120130.2334-1) unstable; urgency=low

  * New Upstream Snapshot (Closes: #657063, #656732)
  * Build-depend on vdr-dev (>= 1.7.23)

 -- Tobias Grimm <etobi@debian.org>  Sun, 29 Jan 2012 01:51:20 +0100

vdr-plugin-xineliboutput (1.0.7+cvs20120115.0019-1) unstable; urgency=low

  * New Upstream Snapshot

 -- Tobias Grimm <etobi@debian.org>  Sun, 15 Jan 2012 01:19:23 +0100

vdr-plugin-xineliboutput (1.0.7+cvs20111211.1625-1) unstable; urgency=low

  * New Upstream Snapshot
  * Build-depend on vdr-dev (>= 1.7.22)

 -- Tobias Grimm <etobi@debian.org>  Sun, 11 Dec 2011 17:26:04 +0100

vdr-plugin-xineliboutput (1.0.7+cvs20111029.0956-1) unstable; urgency=low

  * New Upstream Snapshot
  * Switched to GIT using pristine tar

 -- Tobias Grimm <etobi@debian.org>  Sat, 29 Oct 2011 11:56:16 +0200

vdr-plugin-xineliboutput (1.0.7+cvs20111023.1141-1) unstable; urgency=low

  * New Upstream Snapshot
  * Support epoch in libxine version

 -- Tobias Grimm <etobi@debian.org>  Sun, 23 Oct 2011 13:41:14 +0200

vdr-plugin-xineliboutput (1.0.7+cvs20110918.1632-1) unstable; urgency=low

  * New Upstream Snapshot
  * Build-depend on vdr-dev (>= 1.7.21)

 -- Tobias Grimm <etobi@debian.org>  Sun, 18 Sep 2011 18:23:54 +0200

vdr-plugin-xineliboutput (1.0.7+cvs20110820.1342-1) unstable; urgency=low

  * New Upstream Snapshot
  * Build-depend on vdr-dev (>= 1.7.20)

 -- Tobias Grimm <etobi@debian.org>  Sat, 20 Aug 2011 15:26:09 +0200

vdr-plugin-xineliboutput (1.0.6+cvs20110619.1841-1) unstable; urgency=low

  * New Upstream Snapshot
  * Build-Depend on vdr-dev (>= 1.7.19)

 -- Tobias Grimm <etobi@debian.org>  Sun, 19 Jun 2011 20:41:31 +0200

vdr-plugin-xineliboutput (1.0.6+cvs20110605.1714-1) unstable; urgency=low

  * New Upstream Snapshot
  * Standards-Version: 3.9.2

 -- Tobias Grimm <etobi@debian.org>  Sun, 05 Jun 2011 19:21:12 +0200

vdr-plugin-xineliboutput (1.0.6+cvs20110417.2013-1) unstable; urgency=low

  * New Upstream Snapshot

 -- Tobias Grimm <etobi@debian.org>  Sun, 17 Apr 2011 22:13:49 +0200

vdr-plugin-xineliboutput (1.0.6+cvs20110410.1300-2) unstable; urgency=low

  * Build-depend on vdr-dev (>= 1.7.18)

 -- Tobias Grimm <etobi@debian.org>  Sun, 17 Apr 2011 20:06:39 +0200

vdr-plugin-xineliboutput (1.0.6+cvs20110410.1300-1) unstable; urgency=low

  * New Upstream Snapshot (Closes: #615635, #615791)
  * source/format 3.0 (quilt)
  * Build-Depend on vdr-dev (>= 1.7.17)
  * Updated debian/copyright

 -- Tobias Grimm <etobi@debian.org>  Sun, 10 Apr 2011 15:00:16 +0200

vdr-plugin-xineliboutput (1.0.6+cvs20110325.1728-1) unstable; urgency=low

  * New Upstream Snapshot

 -- Tobias Grimm <etobi@debian.org>  Fri, 25 Mar 2011 18:28:49 +0100

vdr-plugin-xineliboutput (1.0.6+cvs20110319.2357-1) unstable; urgency=low

  * New Upstream Snapshot
  * Build-depend to freeglut3-dev for OpenGL support

 -- Tobias Grimm <etobi@debian.org>  Sun, 20 Mar 2011 00:57:17 +0100

vdr-plugin-xineliboutput (1.0.6+cvs20110213.0131-1) unstable; urgency=low

  * New Upstream Snapshot

 -- Tobias Grimm <etobi@debian.org>  Sun, 13 Feb 2011 02:31:11 +0100

vdr-plugin-xineliboutput (1.0.6+cvs20110105.1949-1) unstable; urgency=low

  * New Upstream Snapshot
  * Don't symlink the doc dirs, because dpkg isn't capable of replacing a
    directory with a symlink (see bug #406715)

 -- Tobias Grimm <etobi@debian.org>  Wed, 05 Jan 2011 20:50:15 +0100

vdr-plugin-xineliboutput (1.0.6+cvs20101204.1657-1) unstable; urgency=low

  * New Upstream Snapshot
  * Switched to debhelper 7 and dropped cdbs
  * Install doc dir as symlink to libxine1-xvdr where possible
  * Updated README.Debian and install it only with the plugin package

 -- Tobias Grimm <etobi@debian.org>  Sat, 04 Dec 2010 17:57:39 +0100

vdr-plugin-xineliboutput (1.0.6+cvs20101019.1826-1) unstable; urgency=low

  * New Upstream Snapshot

 -- Tobias Grimm <etobi@debian.org>  Tue, 19 Oct 2010 20:26:16 +0200

vdr-plugin-xineliboutput (1.0.6+cvs20101003.1156-1) unstable; urgency=low

  * New Upstream Snapshot
  * Standards-Version: 3.9.1

 -- Tobias Grimm <etobi@debian.org>  Sun, 03 Oct 2010 13:56:19 +0200

vdr-plugin-xineliboutput (1.0.6+cvs20100618.2132-1) unstable; urgency=low

  * New Upstream Snapshot

 -- Tobias Grimm <etobi@debian.org>  Fri, 18 Jun 2010 23:32:22 +0200

vdr-plugin-xineliboutput (1.0.6+cvs20100608.2009-1) unstable; urgency=low

  * New Upstream Snapshot
  * Fixed postrm bug

 -- Tobias Grimm <etobi@debian.org>  Tue, 08 Jun 2010 22:09:31 +0200

vdr-plugin-xineliboutput (1.0.6+cvs20100524.1147-1) unstable; urgency=low

  * New Upstream Snapshot
  * Clean up build-depends (Closes: #581978)
    - dropped libxv-dev
    - dropped sharutils
    - dropped libmagick++9-dev | libmagick++-dev
    - added x11proto-core-dev
    - added libxinerama-dev
    - added libxrender-dev,
  * source/format 3.0 (quilt)

 -- Tobias Grimm <etobi@debian.org>  Mon, 24 May 2010 13:47:06 +0200

vdr-plugin-xineliboutput (1.0.6+cvs20100513.0630-1) unstable; urgency=low

  * New Upstream Snapshot
  * source/format 1.0
  * Minor debian/copyright update

 -- Tobias Grimm <etobi@debian.org>  Thu, 13 May 2010 08:37:40 +0200

vdr-plugin-xineliboutput (1.0.6+cvs20100308.2219-2) unstable; urgency=low

  * Build-depend on vdr-dev >= 1.6.0-16

 -- Tobias Grimm <etobi@debian.org>  Sun, 28 Mar 2010 15:23:07 +0200

vdr-plugin-xineliboutput (1.0.6+cvs20100308.2219-1) unstable; urgency=low

  * New Upstream Snapshot

 -- Tobias Grimm <etobi@debian.org>  Mon, 08 Mar 2010 23:19:50 +0100

vdr-plugin-xineliboutput (1.0.6+cvs20100306.2146-1) unstable; urgency=low

  * New Upstream Snapshot

 -- Tobias Grimm <etobi@debian.org>  Sat, 06 Mar 2010 23:10:54 +0100

vdr-plugin-xineliboutput (1.0.6~cvs20100306.1448-1) unstable; urgency=low

  * New upstream release - getting in sync with the upstream release
    versioning again (Closes: #571379)
    Remark: This is for VDR 1.6 only!

 -- Tobias Grimm <etobi@debian.org>  Sat, 06 Mar 2010 16:01:49 +0100

vdr-plugin-xineliboutput (1.0.4+cvs20100306.1448-1) UNRELEASED; urgency=low

  * New Upstream Snapshot

 -- Tobias Grimm <etobi@debian.org>  Sat, 06 Mar 2010 15:48:39 +0100

vdr-plugin-xineliboutput (1.0.4+cvs20100227.2311-1) UNRELEASED; urgency=low

  * New Upstream Snapshot

 -- Thomas Schmidt <tschmidt@debian.org>  Sun, 28 Feb 2010 00:39:20 +0100

vdr-plugin-xineliboutput (1.0.4+cvs20100223.2049-1) unstable; urgency=low

  * New Upstream Snapshot

 -- Tobias Grimm <etobi@debian.org>  Tue, 23 Feb 2010 21:50:00 +0100

vdr-plugin-xineliboutput (1.0.4+cvs20100219.2148-1) unstable; urgency=low

  [ Thomas Schmidt ]
  * New Upstream Snapshot
  * Build-Depend on libjpeg-dev instead of libjpeg62-dev

  [ Tobias Grimm ]
  * Updated standards version to 3.8.4 (no changes needed)

 -- Tobias Grimm <etobi@debian.org>  Fri, 19 Feb 2010 22:58:46 +0100

vdr-plugin-xineliboutput (1.0.4+cvs20100130.1112-1) unstable; urgency=low

  * New Upstream Snapshot

 -- Tobias Grimm <etobi@debian.org>  Sat, 30 Jan 2010 12:12:15 +0100

vdr-plugin-xineliboutput (1.0.4+cvs20100128.1850-1) unstable; urgency=low

  * New Upstream Snapshot
  * Install dektop/menu icons for vdr-sxfe / vdr-fbfe based on OppTupacShakur's
    packaging

 -- Tobias Grimm <etobi@debian.org>  Thu, 28 Jan 2010 20:05:55 +0100

vdr-plugin-xineliboutput (1.0.4+cvs20100125.1922-1) unstable; urgency=low

  * New Upstream Snapshot
  * Don't let postinst fail, if there are no relevant settings in svdrphost.conf

 -- Tobias Grimm <etobi@debian.org>  Mon, 25 Jan 2010 20:19:25 +0100

vdr-plugin-xineliboutput (1.0.4+cvs20100121.1750-1) unstable; urgency=low

  * New Upstream Snapshot
  * Don't install custom no-signal image, use upstream version
  * Try to automatically take over svdrphosts.conf settings into
    allowed_hosts.conf
  * Dropped TODO - all done
  * Install /var/lib/vdr/plugins/xineliboutput, writable for the plugin
    (it writes a config there)

 -- Tobias Grimm <etobi@debian.org>  Fri, 22 Jan 2010 00:01:03 +0100

vdr-plugin-xineliboutput (1.0.4+cvs20100117.1236-1) unstable; urgency=low

  * New Upstream Snapshot

 -- Thomas Schmidt <tschmidt@debian.org>  Sun, 17 Jan 2010 13:39:01 +0100

vdr-plugin-xineliboutput (1.0.4+cvs20100106.2318-1) unstable; urgency=low

  * New Upstream Snapshot

 -- Tobias Grimm <etobi@debian.org>  Thu, 07 Jan 2010 00:18:11 +0100

vdr-plugin-xineliboutput (1.0.4+cvs20100102.1601-1) unstable; urgency=low

  * New Upstream Snapshot

 -- Tobias Grimm <etobi@debian.org>  Sat, 02 Jan 2010 17:01:55 +0100

vdr-plugin-xineliboutput (1.0.4+cvs20091215.2049-2) unstable; urgency=low

  * Build-depend on libvdpau-dev

 -- Tobias Grimm <etobi@debian.org>  Thu, 17 Dec 2009 10:17:24 +0100

vdr-plugin-xineliboutput (1.0.4+cvs20091215.2049-1) unstable; urgency=low

  * New Upstream Snapshot

 -- Tobias Grimm <etobi@debian.org>  Tue, 15 Dec 2009 21:49:05 +0100

vdr-plugin-xineliboutput (1.0.4+cvs20091016.1108-3) unstable; urgency=low

  * Removed non-standard shebang line from debian/rules (Closes: #552662)
  * Added README.source

 -- Tobias Grimm <etobi@debian.org>  Mon, 09 Nov 2009 00:34:53 +0100

vdr-plugin-xineliboutput (1.0.4+cvs20091016.1108-2) unstable; urgency=low

  * Fixed NEWS.Debian installation

 -- Tobias Grimm <etobi@debian.org>  Fri, 16 Oct 2009 13:53:49 +0200

vdr-plugin-xineliboutput (1.0.4+cvs20091016.1108-1) unstable; urgency=low

  * New Upstream Snapshot (Closes: #551143)
  * Added note to NEWS.Debian about the deprecated demux:mpeg_block option
    (Closes: #550861)

 -- Tobias Grimm <etobi@debian.org>  Fri, 16 Oct 2009 13:31:04 +0200

vdr-plugin-xineliboutput (1.0.4+cvs20091004.1123-1) unstable; urgency=low

  * New Upstream Snapshot
  * Standards-Version: 3.8.3

 -- Tobias Grimm <etobi@debian.org>  Sun, 04 Oct 2009 13:23:34 +0200

vdr-plugin-xineliboutput (1.0.4+cvs20090826.1640-1) unstable; urgency=low

  * New Upstream Snapshot

 -- Tobias Grimm <etobi@debian.org>  Wed, 26 Aug 2009 18:40:21 +0200

vdr-plugin-xineliboutput (1.0.4+cvs20090823.1048-1) unstable; urgency=low

  * New Upstream Snapshot
  * Fixed typo in README.Debian

 -- Tobias Grimm <etobi@debian.org>  Sun, 23 Aug 2009 12:48:17 +0200

vdr-plugin-xineliboutput (1.0.4+cvs20090725.1814-1) unstable; urgency=low

  * New Upstream Snapshot

 -- Tobias Grimm <etobi@debian.org>  Sat, 25 Jul 2009 21:33:42 +0200

vdr-plugin-xineliboutput (1.0.4+cvs20090717.1529-1) unstable; urgency=low

  * New Upstream Snapshot

 -- Tobias Grimm <etobi@debian.org>  Fri, 17 Jul 2009 17:30:00 +0200

vdr-plugin-xineliboutput (1.0.4+cvs20090716.2018-1) unstable; urgency=low

  * New Upstream Snapshot

 -- Tobias Grimm <etobi@debian.org>  Thu, 16 Jul 2009 22:18:45 +0200

vdr-plugin-xineliboutput (1.0.4+cvs20090711.0933-1) unstable; urgency=low

  * New Upstream Snapshot
  * Bumped standards version to 3.8.2
  * Build-Depend on libmagick++9-dev | libmagick++-dev

 -- Tobias Grimm <etobi@debian.org>  Mon, 15 Jun 2009 21:36:43 +0200

vdr-plugin-xineliboutput (1.0.4+cvs20090626.1737-1) unstable; urgency=low

  * New Upstream Snapshot

 -- Thomas Günther <tom@toms-cafe.de>  Fri, 26 Jun 2009 19:37:20 +0200

vdr-plugin-xineliboutput (1.0.4+cvs20090615.1936-1) unstable; urgency=low

  * New Upstream CVS Snapshot

 -- Tobias Grimm <etobi@debian.org>  Mon, 15 Jun 2009 21:36:43 +0200

vdr-plugin-xineliboutput (1.0.4+cvs20090425.1834-2) unstable; urgency=low

  * Release for vdrdevel 1.7.6
  * Updated debian/copyright
  * Changed section to "video"

 -- Thomas Günther <tom@toms-cafe.de>  Wed, 29 Apr 2009 23:11:14 +0200

vdr-plugin-xineliboutput (1.0.4+cvs20090425.1834-1) unstable; urgency=low

  * New Upstream CVS Snapshot (Quickfix for vdr-1.7.5 TS replay)

 -- Tobias Grimm <etobi@debian.org>  Sat, 25 Apr 2009 20:37:57 +0200

vdr-plugin-xineliboutput (1.0.4+cvs20090419.1002-1) unstable; urgency=low

  * New Upstream CVS Snapshot (Fixes problems with TS playback for VDR 1.7.5)
  * Updated debian/rules get-orig-source target
  * Let *-fbfe depend on libxine1-console and *-sxfe on libxine1-x
    (as recommended by Darren Salt in 
     http://lists.debian.org/debian-devel/2009/03/msg01442.html)
  * Bumped standards version to 3.8.1
  * Added ${misc:Depends}

 -- Tobias Grimm <etobi@debian.org>  Sun, 19 Apr 2009 12:36:59 +0200

vdr-plugin-xineliboutput (1.0.4-1) unstable; urgency=low

  *  New upstream release

 -- Tobias Grimm <etobi@debian.org>  Sat, 21 Feb 2009 21:25:40 +0100

vdr-plugin-xineliboutput (1.0.3-2) unstable; urgency=low

  * Build-Depend on libextractor-dev, so meta tags extraction (e.g. ID3 tags)
    will be supported

 -- Tobias Grimm <etobi@debian.org>  Tue, 30 Dec 2008 21:46:25 +0100

vdr-plugin-xineliboutput (1.0.3-1) unstable; urgency=low

  * New upstream release
  * Changed my maintainer/uploader email address
  * Removed 02_playfile-timeout.dpatch (fixed upstream)
  * Added manpages for vdr-sxfe and vdr-fbfe (Closes: #452688)

 -- Tobias Grimm <etobi@debian.org>  Sat, 15 Nov 2008 13:24:20 +0100

vdr-plugin-xineliboutput (1.0.1-6) unstable; urgency=low

  * Added 02_playfile-timeout.dpatch to work around problems whith
    stream playback

 -- Tobias Grimm <tg@e-tobi.net>  Sun, 10 Aug 2008 00:24:08 +0200

vdr-plugin-xineliboutput (1.0.1-5) unstable; urgency=low

  [ Tobias Grimm ]
  * Dropped patchlevel control field
  * Build-Depend on vdr-dev (>=1.6.0-5)
  * Bumped Standards-Version to 3.8.0

 -- Thomas Schmidt <tschmidt@debian.org>  Sat, 19 Jul 2008 18:41:38 +0200

vdr-plugin-xineliboutput (1.0.1-4) unstable; urgency=medium

  * Temporarily disabled 01_gnome-screensaver.dpatch to fix segfault
    of vdr-sxfe on amd64 (closes: #487410) (LP: #197400)

 -- Thomas Schmidt <tschmidt@debian.org>  Fri, 04 Jul 2008 23:58:35 +0200

vdr-plugin-xineliboutput (1.0.1-3) unstable; urgency=low

  * Upload to unstable

 -- Thomas Schmidt <tschmidt@debian.org>  Mon, 09 Jun 2008 00:17:12 +0200

vdr-plugin-xineliboutput (1.0.1-2) experimental; urgency=low

  * Added dbus to dependencies of libxineliboutput-sxfe and xineliboutput-sxfe,
    because 01_gnome-screensaver.dpatch seems to fail, if it can't open a dbus
    connection.

 -- Tobias Grimm <tg@e-tobi.net>  Sun, 18 May 2008 01:12:09 +0200

vdr-plugin-xineliboutput (1.0.1-1) experimental; urgency=low

  * New upstream release
  * Modified debian/watch to mangle rc and pre upstream versions to ~rc and ~pre
  * Updated 01_gnome-screensaver.dpatch
  * Dropped 02_vdr-include-path.dpatch
  * By default now setting --remote=127.0.0.1:37890, which allows vdr-sxfe to
    connect locally by default. Also documented this in README.Debian so that
    there should be no obscurities about this anymore (Closes: #438116)
  * COMPAT=5, Depend on debhelper (>= 5)

 -- Tobias Grimm <tg@e-tobi.net>  Mon, 12 May 2008 18:06:44 +0200

vdr-plugin-xineliboutput (1.0.0~rc2+cvs20080223.2030-2) experimental; urgency=low

  [ Thomas Schmidt ]
  * Build-Depend on vdr-dev (>=1.6.0)
  * Updated debian/copyright

 -- Tobias Grimm <tg@e-tobi.net>  Fri, 04 Apr 2008 19:37:48 +0200

vdr-plugin-xineliboutput (1.0.0~rc2+cvs20080223.2030-1) experimental; urgency=low

  * New Upstream Snapshot (should fix a problem with running vdr-sxfe from within
    a script, as reported by Stefan Wagner)

 -- Tobias Grimm <tg@e-tobi.net>  Sat, 23 Feb 2008 21:37:02 +0100

vdr-plugin-xineliboutput (1.0.0~rc2+cvs20080216.1656-2) experimental; urgency=low

  * Force rebuild for vdr 1.5.15

 -- Tobias Grimm <tg@e-tobi.net>  Mon, 18 Feb 2008 21:09:35 +0100

vdr-plugin-xineliboutput (1.0.0~rc2+cvs20080216.1656-1) experimental; urgency=low

  * New Upstream Snapshot
  * Build-depend on vdr-dev (>= 1.5.7-1)
  * Removed 90_xineliboutput-1.0.0rc2-1.5.3.dpatch
  * Updated 02_vdr-include-path.dpatch

 -- Tobias Grimm <tg@e-tobi.net>  Sat, 16 Feb 2008 18:25:40 +0100

vdr-plugin-xineliboutput (1.0.0~rc2-18) unstable; urgency=medium

  * Unexport CFLAGS too, this should now really fix the FTBFS on amd64
    (closes: #477404), many thanks to Stefan Lippers-Hollmann for pointing out
    that the bug was not fixed in -17

 -- Thomas Schmidt <tschmidt@debian.org>  Wed, 23 Apr 2008 21:35:07 +0200

vdr-plugin-xineliboutput (1.0.0~rc2-17) unstable; urgency=medium

  * Unexport CXXFLAGS and LDFLAGS in debian/rules - this should fix the 
    FTBFS on amd64, caused by the new dpkg, which is exporting these
    variables by default now (closes: #477404)

 -- Thomas Schmidt <tschmidt@debian.org>  Wed, 23 Apr 2008 09:19:22 +0200

vdr-plugin-xineliboutput (1.0.0~rc2-16) unstable; urgency=medium

  * debian/rules: changed code to add the xine:Depends substvar to put the
    result into debian/libxine1-xvdr.substvars instead of debian/substvars, 
    otherwise the wrong dependency of libxine1 (>=1.1.8) instead of (>=1.1.12) 
    is generated, many thanks to Tobias Grimm for the hint

 -- Thomas Schmidt <tschmidt@debian.org>  Sun, 20 Apr 2008 23:19:52 +0200

vdr-plugin-xineliboutput (1.0.0~rc2-15) unstable; urgency=medium

  * Build-Depend on libxine-dev (>=1.1.12 (closes: #476501, #477014)
  * Removed debian/shlibs.local, use ${xine:Depends} and a short snippet of
    code from Darren Salt to determine the correct dependency during
    build-time (closes: #473434)
  * Set urgency to high to speed up transition to testing
  * Do not Build-Depend on libxine-dev (<=1.1.12) anymore

 -- Thomas Schmidt <tschmidt@debian.org>  Sun, 20 Apr 2008 21:04:14 +0200

vdr-plugin-xineliboutput (1.0.0~rc2-14) unstable; urgency=high

  * Build-Depend on libxine-dev (>=1.1.11) (closes: #472548)
  * Set urgency to high to speed up xine-lib's transition of xine-lib to testing

 -- Thomas Schmidt <tschmidt@debian.org>  Mon, 24 Mar 2008 23:02:23 +0100

vdr-plugin-xineliboutput (1.0.0~rc2-13) unstable; urgency=high

  * Build-Depend on libxine-dev (>=1.1.10)
  * Set urgency to high to not delay the transition of xine-lib to testing

 -- Thomas Schmidt <tschmidt@debian.org>  Sun, 27 Jan 2008 13:24:50 +0100

vdr-plugin-xineliboutput (1.0.0~rc2-12) unstable; urgency=low

  * Build-Depend on libxine-dev (>=1.1.9) (Closes: #460239, #461025)

 -- Tobias Grimm <tg@e-tobi.net>  Fri, 11 Jan 2008 21:33:18 +0100

vdr-plugin-xineliboutput (1.0.0~rc2-11) unstable; urgency=low

  * Added Provides: libxine-xvdr to libxine1-xvdr (Closes: #440605)

 -- Thomas Schmidt <tschmidt@debian.org>  Sun, 30 Dec 2007 01:13:27 +0100

vdr-plugin-xineliboutput (1.0.0~rc2-10) unstable; urgency=low

  [ Tobias Grimm ]
  * Fixed typo in package description (Closes: #455066)

  [ Thomas Schmidt ]
  * Switched Build-System to cdbs, Build-Depend on cdbs
  * Added Homepage field to debian/control
  * Renamed XS-Vcs-* fields to Vcs-* in debian/control
  * Bumped Standards-Version to 3.7.3
  * Use ${binary:Version} instead of ${Source-Version} to make package
    binNMUable

 -- Thomas Schmidt <tschmidt@debian.org>  Sun, 30 Dec 2007 00:54:47 +0100
 
vdr-plugin-xineliboutput (1.0.0~rc2-9) unstable; urgency=low

  * Force rebuild for new vdr release

 -- Tobias Grimm <tg@e-tobi.net>  Wed, 28 Nov 2007 09:19:03 +0100

vdr-plugin-xineliboutput (1.0.0~rc2-8) unstable; urgency=low

  * Build-Depend on libxine-dev (>=1.1.8) and bumped shlibs accordingly
    (Closes: #441641, #441881)

 -- Thomas Schmidt <tschmidt@debian.org>  Tue, 11 Sep 2007 20:53:00 +0200

vdr-plugin-xineliboutput (1.0.0~rc2-7) unstable; urgency=low

  * Renamed and fixed libxine-xvdr.install and fixed MAKE_OPTIONS to point to
    the correct NOSIGNAL_IMAGE_FILE (Closes: #439987)

 -- Thomas Schmidt <tschmidt@debian.org>  Wed, 29 Aug 2007 09:35:53 +0200

vdr-plugin-xineliboutput (1.0.0~rc2-6) unstable; urgency=low

  * Fixed installation of libxine1-xvdr

 -- Tobias Grimm <tg@e-tobi.net>  Sat, 25 Aug 2007 14:34:20 +0200

vdr-plugin-xineliboutput (1.0.0~rc2-5) unstable; urgency=low

  * Reformatted debian/copyright
  * Renamed libxine-xvdr to libxine1-xvdr to match common xine plugin
    naming scheme
  * Let libxine1-xvdr depend on libxine1-ffmpeg

 -- Tobias Grimm <tg@e-tobi.net>  Sun, 12 Aug 2007 16:47:22 +0200

vdr-plugin-xineliboutput (1.0.0~rc2-4) unstable; urgency=low

  * Added 01_gnome-screensaver.dpatch
  * Build-Depend on libdbus-glib-1-dev

 -- Thomas Schmidt <tschmidt@debian.org>  Mon,  2 Jul 2007 21:47:02 +0200

vdr-plugin-xineliboutput (1.0.0~rc2-3) unstable; urgency=low

  * As suggested by Reinhard Tartler, force a tighter dependency on libxine1
    by using a shlibs.local and build-depending on (libxine-dev << 1.1.8),
    (libxine-dev >= 1.1.7)

 -- Tobias Grimm <tg@e-tobi.net>  Thu, 28 Jun 2007 23:23:12 +0200

vdr-plugin-xineliboutput (1.0.0~rc2-2) unstable; urgency=low

  * Release for vdrdevel 1.5.5
  * Added 90_xineliboutput-1.0.0rc2-1.5.3.dpatch
  * Build-Depend on vdr-dev (>= 1.4.7-2)

 -- Thomas Günther <tom@toms-cafe.de>  Thu, 28 Jun 2007 00:43:09 +0200

vdr-plugin-xineliboutput (1.0.0~rc2-1) unstable; urgency=low

  [ Thomas Schmidt ]
  * Added XS-Vcs-Svn and XS-Vcs-Browser fields to debian/control

  [ Tobias Grimm ]
  * New upstream release
  * Updated watch file to point to SourceForge download
  * Removed 01_udp-crash-fix.dpatch - fixed upstream
  * Added more copyright notes

 -- Tobias Grimm <tg@e-tobi.net>  Thu, 24 May 2007 21:56:36 +0200

vdr-plugin-xineliboutput (1.0.0~rc1-4) experimental; urgency=low

  * Fixed licensing issues reported by Joerg Jaspert
    - Added full GPL licence header to debian/copyright
    - Added copyright years 

 -- Thomas Schmidt <tschmidt@debian.org>  Sun, 13 May 2007 22:55:44 +0200

vdr-plugin-xineliboutput (1.0.0~rc1-3) unstable; urgency=low

  * Release for vdrdevel 1.5.2

 -- Thomas Günther <tom@toms-cafe.de>  Sat, 28 Apr 2007 00:00:52 +0200

vdr-plugin-xineliboutput (1.0.0~rc1-2) unstable; urgency=low

  * Added 02_vdr-include-path.dpatch to let the Makefile point to the
    vdr headers installed in /usr/include/vdr

 -- Tobias Grimm <tg@e-tobi.net>  Sat, 31 Mar 2007 20:56:16 +0200

vdr-plugin-xineliboutput (1.0.0~rc1-1) unstable; urgency=low

  * New upstream release
  * Changed new upstream homepage and upstream author address in
    debian/copyright
  * Removed 11_posix-fixes.dpatch (fixed upstream)
  * Removed 91_xineliboutput-1.0.0pre7-1.5.1.dpatch (fixed upstream)
  * Added 01_udp-crash-fix.dpatch

 -- Tobias Grimm <tg@e-tobi.net>  Fri, 30 Mar 2007 23:36:26 +0200

vdr-plugin-xineliboutput (1.0.0~pre7-4) experimental; urgency=low

  * First upload to the official archive (closes: Bug#397350) 

 -- Thomas Schmidt <tschmidt@debian.org>  Sat, 10 Mar 2007 19:17:33 +0100

vdr-plugin-xineliboutput (1.0.0~pre7-3) experimental; urgency=low

  * Release for vdrdevel 1.5.1
  * Added 91_xineliboutput-1.0.0pre7-1.5.1.dpatch
  * Added myself to Uploaders

 -- Thomas Günther <tom@toms-cafe.de>  Tue, 27 Feb 2007 19:59:26 +0100

vdr-plugin-xineliboutput (1.0.0~pre7-2) experimental; urgency=low

  * Extracted POSIX fixes to 11_posix-fixes.dpatch
  * Allow use of awk again

 -- Tobias Grimm <tg@e-tobi.net>  Mon, 22 Jan 2007 20:35:26 +0100

vdr-plugin-xineliboutput (1.0.0~pre7-1+c0.kanotix.1) feisty; urgency=low

  * Non-maintainer upload.
  * POSIX fixes.
  * awk replaced by cut.

 -- Joerg Schirottke <master@kanotix.com>  Mon, 22 Jan 2007 15:31:47 +0100

vdr-plugin-xineliboutput (1.0.0~pre7-1) experimental; urgency=low

  [ Thomas Günther ]
  * Replaced VDRdevel adaptions in debian/rules with make-special-vdr
  * Adapted call of dependencies.sh and patchlevel.sh to the new location
    in /usr/share/vdr-dev/

  [ Tobias Grimm ]
  * Build-Depend on vdr-dev (>=1.4.5-1)
  * New upstream release

 -- Tobias Grimm <tg@e-tobi.net>  Sun, 14 Jan 2007 20:23:44 +0100

vdr-plugin-xineliboutput (1.0.0~pre5+cvs20061017-2) unstable; urgency=low

  * Build-Depend on vdr-dev (>=1.4.4-1)

 -- Tobias Grimm <tg@e-tobi.net>  Sun,  5 Nov 2006 00:00:47 +0100

vdr-plugin-xineliboutput (1.0.0~pre5+cvs20061017-1) unstable; urgency=low

  * New CVS snaphsot

 -- Tobias Grimm <tg@e-tobi.net>  Tue, 17 Oct 2006 17:44:52 +0200

vdr-plugin-xineliboutput (1.0.0~pre5-1) unstable; urgency=low

  [ Thomas Schmidt ]
  * Build-Depend on vdr-dev (>=1.4.3-1)
  * Build-Depend on sharutils
  * Added myself to Uploaders
  * Added note about the Debian maintainers to debian/copyright

  [ Tobias Grimm ]
  * New upstream release
  * Removed 99_nosignal-order.dpatch - fixed upstream

 -- Tobias Grimm <tg@e-tobi.net>  Sat, 30 Sep 2006 16:02:53 +0200

vdr-plugin-xineliboutput (0.99rc4+cvs20060910-2) unstable; urgency=low

  * Added author of nosignal.mpg to copyright file
    (Steven J. Robinson (cathbard) <stevenjrobinson@yahoo.com>)
  * Added installation of Xine post process plugins

 -- Tobias Grimm <tg@e-tobi.net>  Mon, 11 Sep 2006 22:28:39 +0200

vdr-plugin-xineliboutput (0.99rc4+cvs20060910-1) unstable; urgency=low

  * New CVS snaphsot
  * Added installation of custom nosignal.mpg
  * Stripped comments from plugin.xineliboutput.conf and added README.Debian

 -- Tobias Grimm <tg@e-tobi.net>  Sun, 10 Sep 2006 21:01:31 +0200

vdr-plugin-xineliboutput (0.99rc4+cvs20060826-2) unstable; urgency=low

  * Fixed stupid typo in package naming (libxineliboutput-sxfb ->
    libxineliboutput-sxfe) (Reported by Helmar Gerloni)
  * Build-Depend on vdr-dev (>=1.4.2-1)
  * Bumped Standards-Version to 3.7.2

 -- Tobias Grimm <tg@e-tobi.net>  Mon, 28 Aug 2006 18:47:14 +0200

vdr-plugin-xineliboutput (0.99rc4+cvs20060826-1) unstable; urgency=low

  * New CVS snaphsot

 -- Tobias Grimm <tg@e-tobi.net>  Sun, 27 Aug 2006 11:20:22 +0200

vdr-plugin-xineliboutput (0.99rc4+cvs20060825-1) unstable; urgency=low

  * New CVS snaphsot

 -- Tobias Grimm <tg@e-tobi.net>  Fri, 25 Aug 2006 19:38:19 +0200

vdr-plugin-xineliboutput (0.99rc4+cvs20060824-1) unstable; urgency=low

  * New CVS snaphsot
  * Removed 01_restore-channel-on-primary-device.dpatch

 -- Tobias Grimm <tg@e-tobi.net>  Thu, 24 Aug 2006 19:48:01 +0200

vdr-plugin-xineliboutput (0.99rc4+cvs20060821-2) unstable; urgency=low

  * Added 01_restore-channel-on-primary-device.dpatch

 -- Tobias Grimm <tg@e-tobi.net>  Mon, 21 Aug 2006 22:40:04 +0200

vdr-plugin-xineliboutput (0.99rc4+cvs20060821-1) unstable; urgency=low

  * New CVS snaphsot

 -- Tobias Grimm <tg@e-tobi.net>  Mon, 21 Aug 2006 21:20:25 +0200

vdr-plugin-xineliboutput (0.99rc4+cvs20060816-1) unstable; urgency=low

  * New CVS snaphsot
  * Added build-dep to libjpeg62-dev
  * Removed 01_clean.dpatch - fixed upstream
  * Removed 02_mismatched-delete.dpatch - fixed upstream
  * Removed 03_memleaks.dpatch - fixed upstream

 -- Tobias Grimm <tg@e-tobi.net>  Wed, 16 Aug 2006 23:25:44 +0200

vdr-plugin-xineliboutput (0.99rc4+cvs20060811-1) unstable; urgency=low

  * New CVS snaphsot
  * Now install to correct Xine plugin directory, independent of the Xine version
  * Renamed frontend packages to xineliboutput-fbfe and xineliboutput-sxfe
  * Renamed local frontend libs to libxineliboutput-sxfe and
    libxineliboutput-fbfe
  * Added 01_clean.dpatch
  * Added 02_mismatched-delete.dpatch
  * Added 03_memleaks.dpatch

 -- Tobias Grimm <tg@e-tobi.net>  Sun, 13 Aug 2006 20:27:02 +0200

vdr-plugin-xineliboutput (0.99rc4-1) unstable; urgency=low

  * Tobias Grimm <tg@e-tobi.net>
    - Initial Release.
  * Thomas Schmidt <tschmidt@debian.org>
    - Build-Depend on vdr-dev (>=1.4.1-1)

 -- Debian VDR Team <pkg-vdr-dvb-devel@lists.alioth.debian.org>  Thu, 15 Jun 2006 08:23:13 +0200