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
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
|
2010-03-13 tag v3_6_6
2010-03-13 amair
* HISTORY, vdradmind.pl:
Updated for release v3.6.6.
2010-03-07 amair
* po/cs.po, po/de.po, po/es.po, po/fi.po, po/fr.po, po/it.po,
po/nl.po, po/ru.po, po/vdradmin.pot:
Updated.
2010-03-02 scop
* po/fi.po:
Finnish translation update.
2010-03-02 amair
* HISTORY, vdradmind.pl, template/default/epgsearch_new.html:
Added: Support new epgsearch v0.9.25-git settings "unmute" and "min. description match".
2010-02-21 scop
* install.sh, vdradmind.pl.1:
Change man page section to 8.
2010-02-21 scop
* HISTORY, vdradmind.pl:
Log to syslog by default (if logging is enabled).
2010-02-21 scop
* vdradmind.pl:
Remove extra trailing newlines from log messages.
2010-02-21 scop
* HISTORY, vdradmind.pl:
Fall back to stderr if setting up syslog fails.
2010-02-21 scop
* vdradmind.pl:
Don't load Sys::Syslog when not logging.
2010-02-21 scop
* vdradmind.pl:
Return earlier from Log() when not logging.
2010-02-21 amair
* HISTORY, make.sh, vdradmind.pl, template/default/about.html,
template/default/at_timer_list.html,
template/default/at_timer_new.html, template/default/config.html,
template/default/epgsearch_config.html,
template/default/epgsearch_list.html,
template/default/epgsearch_new.html, template/default/error.html,
template/default/help_at_timer_list.html,
template/default/help_at_timer_new.html,
template/default/help_config.html,
template/default/help_edit_epg.html,
template/default/help_no.html,
template/default/help_rec_list.html,
template/default/help_timer_list.html,
template/default/help_timer_new.html,
template/default/index.html, template/default/navigation.html,
template/default/noauth.html, template/default/noperm.html,
template/default/prog_detail.html,
template/default/prog_detail_form.html,
template/default/prog_list.html,
template/default/prog_list2.html,
template/default/prog_summary.html,
template/default/prog_summary2.html,
template/default/prog_timeline.html, template/default/rc.html,
template/default/rec_edit.html, template/default/rec_list.html,
template/default/timer_list.html,
template/default/timer_new.html, template/default/tv.html,
template/default/vdr_cmds.html:
Get character encoding from configured locale or environment variables (Submitted by Tobias Grimm).
2010-02-21 amair
* HISTORY, vdradmind.pl:
Encode SVDRP commands sent to VDR if needed (Submitted by Tobias Grimm).
2010-02-14 amair
* HISTORY, po/it.po:
Updated.
2010-02-12 amair
* HISTORY, po/es.po, po/nl.po:
Updated.
2010-02-06 scop
* vdradmind.pl:
Do not require write access to templatedir, it should not be needed.
2010-02-06 scop
* HISTORY, vdradmind.pl:
Improve default mail settings.
2010-02-05 scop
* po/.cvsignore:
Ignore *.utf8.po.
2010-02-05 scop
* vdradmind.pl, po/cs.po, po/de.po, po/es.po, po/fi.po, po/fr.po,
po/it.po, po/nl.po, po/ru.po, po/vdradmin.pot:
Writeable -> writable spelling fix.
2010-02-05 scop
* vdradmind.pl:
Trim trailing whitespace.
2010-02-05 scop
* vdradmind.pl:
Fix CA file existence check; it's a file, not a dir.
2010-02-03 amair
* HISTORY, vdradmind.pl:
Check if "GUI_POPUP_WIDTH" and "GUI_POPUP_HEIGHT" are numeric and set them to the defaults if they are not (Reported by Jan).
2010-02-01 scop
* po/fi.po:
̈́Finnish translation update.
2010-02-01 amair
* HISTORY, vdradmind.pl:
Support VDR 1.7.12+ commands.conf and reccmds.conf (means: skip lines ending in "{" and lines with only "}" in them).
2010-01-31 amair
* HISTORY, install.sh, vdradmind.pl:
- Added: check file and directory permissions on startup abort on error.
- Changed: Default directory for PID file to /var/run/vdradmin.
- Changed: Default directory for log file to /var/log/vdradmin.
2010-01-31 amair
* HISTORY, vdradmind.pl:
Use "cache" directory in the current directory if $SEARCH_FILES_IN_SYSTEM is not set.
2010-01-30 amair
* po/cs.po, po/de.po, po/es.po, po/fi.po, po/fr.po, po/it.po,
po/nl.po, po/ru.po, po/vdradmin.pot:
Updated.
2010-01-30 amair
* template/default/epgsearch_new.html:
Use new text as it changed in epgsearch.
2010-01-30 amair
* vdradmind.pl:
Use new test as it changed in epgsearch.
2010-01-30 amair
* template/default/help_config.html:
Sync text with text used in config.html.
2010-01-30 amair
* HISTORY, vdradmind.pl, template/default/prog_detail.html,
template/default/prog_list.html,
template/default/prog_list2.html,
template/default/prog_summary.html,
template/default/prog_summary2.html:
Hide "record" button in EPG lists there's already a timer for that broadcast (Based on patch by Dave Pickles).
2010-01-30 amair
* HISTORY, vdradmind.pl, template/default/config.html,
template/default/help_config.html,
template/default/prog_summary2.html:
New options to show or hide a broadcast's subtitle and/or summary in EPG lists and to set a day's "start time" in "Playing today?" (Based on patch by Dave Pickles).
2010-01-30 amair
* HISTORY, vdradmind.pl, template/default/epgsearch_new.html:
- Set minimum required epgsearch version to 0.9.24.
- Hide epgsearch search timer actions that are not available in 0.9.24.
2010-01-30 amair
* vdradmind.pl, template/default/about.html:
Moved *VERSION* variables to %FEATURES so that they are accessible in the templates.
2010-01-26 amair
* HISTORY, vdradmind.pl, template/default/epgsearch_new.html:
Support for new epgsearch search timer actions (Bug #557).
2010-01-15 amair
* HISTORY, vdradmind.pl:
"--ipv6" only enables IPv6 for connections to VDRAdmin-AM, to also use IPv6 for SVDRP connection one can use "--ipv6-all" (if he really knows what he's doing!).
2010-01-15 amair
* HISTORY, vdradmind.pl:
Check encoding for every SVDRP connection (Submitted by Tobias Grimm).
2010-01-08 amair
* HISTORY, README, install.sh, vdradmind.pl, vdradmind.pl.1:
- Changed: Warn about missing key or certificate if --ssl is used.
- Changed: Certificates for --ssl option must be located in $ETCDIR/certs.
2010-01-08 amair
* make.sh:
Fixed usage message.
2010-01-08 amair
* install.sh:
doInstall: Create all required directories and display all created directories on exit.
2010-01-08 amair
* HISTORY, template/default/prog_timeline.html:
Fixed: Resizing browser window in "Timelin" showed "file not found" (Reported by tag @vdr-portal.de).
2010-01-08 amair
* template/default/timer_list.html:
Only show REC in timer list if timer is active and recording.
2010-01-02 amair
* HISTORY, po/it.po:
Updated.
2009-12-30 scop
* vdradmind.pl:
Set version to 3.6.5+cvs.
2009-12-30 scop
* HISTORY, contrib/README.Streaming, po/cs.po, po/de.po, po/es.po,
po/fi.po, po/fr.po, po/it.po, po/nl.po, po/ru.po,
po/vdradmin.pot, template/default/about.html,
template/default/help_config.html:
Update links to EPGSearch and Streamdev homepages.
2009-12-30 scop
* HISTORY, po/fi.po:
Tiny Finnish translation update.
2009-12-30 tag v3_6_5
2009-12-30 amair
* HISTORY, vdradmind.pl, template/default/about.html:
Updated for v3.6.5 release.
2009-12-30 amair
* po/cs.po, po/de.po, po/es.po, po/fi.po, po/fr.po, po/it.po,
po/nl.po, po/ru.po, po/vdradmin.pot:
Updated.
2009-12-30 scop
* HISTORY, README, install.sh, vdradmind.pl:
Use HTTP::Date for HTTP date/time formatting.
2009-12-29 scop
* vdradmind.pl:
Remove unused variables flagged by perlcritic.
2009-12-29 scop
* vdradmind.pl:
Fix numeric/string comparison issue flagged by perltidy.
2009-12-29 scop
* HISTORY, vdradmind.pl:
Create fewer SVDRP connections.
2009-10-11 amair
* README:
Updated link to VDR homepage.
2009-08-06 amair
* vdradmind.pl:
Removed $DEBUG (IMHO it's easier to use "-n" and "-l" for debugging).
2009-08-05 scop
* vdradmind.pl, template/default/timeline.js:
Cosmetic: trim trailing whitespace.
2009-08-05 scop
* template/default/library.js:
Add jslint settings, fix some warnings.
2009-08-05 scop
* template/default/timeline.js:
Add jslint settings, fix more warnings.
2009-08-05 scop
* HISTORY, template/default/timeline.js:
Get rid of jslint "used before defined" warnings (big diff, just reordering functions, no other changes).
2009-08-05 scop
* vdradmind.pl:
Migrate log level config.
2009-08-05 scop
* vdradmind.pl:
Add warning log level, set default to it, replace warn() calls with appropriate logging calls.
2009-08-05 scop
* vdradmind.pl:
Use DAEMON instead of USER syslog facility.
2009-08-05 scop
* vdradmind.pl:
Turn off daemon mode with -h|--help, -c|--config, -k|--kill, -i|--displaycall, and -m|--message (affects logging).
2009-08-05 scop
* HISTORY, vdradmind.pl:
Improve config file read/write error handling.
2009-08-05 scop
* vdradmind.pl:
Drop dead code.
2009-08-05 scop
* HISTORY, vdradmind.pl:
Send Last-Modified header for static resources.
2009-08-05 scop
* vdradmind.pl:
Avoid some unnecessary stat() calls.
2009-08-05 scop
* vdradmind.pl:
Fix syslog priority string for errors ("err", not "error").
2009-08-05 amair
* vdradmind.pl:
Don't stop reading parameters after "-n|--nofork".
2009-08-05 amair
* HISTORY, README, vdradmind.pl:
Added "-l" and "--log" parameter.
2009-08-05 amair
* HISTORY, README, vdradmind.pl, vdradmind.pl.1:
Changed "-nf" option to "-n".
2009-08-05 amair
* HISTORY, vdradmind.pl:
Reworked logging.
2009-07-23 amair
* README:
Updated.
2009-07-23 amair
* HISTORY, install.sh, vdradmind.pl:
Added "--ssl" switch to accept https instead of http.
2009-07-23 amair
* HISTORY, vdradmind.pl:
Find VDR 1.7.2+ TS recordings.
2009-07-23 amair
* HISTORY:
Updated.
2009-07-22 scop
* vdradmind.pl:
Note that -p is ignored with -nf.
2009-07-22 scop
* HISTORY, vdradmind.pl:
Make non-daemon mode always turn on logging to stderr.
2009-07-22 scop
* HISTORY, README, install.sh, vdradmind.pl:
Add ability to log to syslog ("LOGFILE = syslog" in config).
2009-07-22 scop
* vdradmind.pl:
Simplify Log() a bit further.
2009-07-22 scop
* HISTORY, vdradmind.pl:
Include reason in pid file deletion error message.
2009-07-22 amair
* vdradmind.pl:
Delete pidfile only if running as daemon.
2009-07-21 scop
* vdradmind.pl:
Log() code cleanups (3-argument open(), eliminate unnecessary sprintf()).
2009-07-21 scop
* HISTORY, vdradmind.pl:
Warn if log file cannot be written to.
2009-07-21 scop
* HISTORY:
Typo fix.
2009-07-21 scop
* .cvsignore:
Ignore log and pid files.
2009-07-21 scop
* HISTORY, vdradmind.pl:
Improve error message when binding the server socket fails.
2009-07-21 scop
* vdradmind.pl:
Start without compiled template caching but warn if compile dir is not writable.
2009-07-15 scop
* HISTORY, install.sh, vdradmind.pl:
Improve template caching defaults (remove useless CACHE_SIZE, set STAT_TTL to one hour, set CACHE_DIR to /var/cache/vdradmin).
2009-07-15 scop
* HISTORY, README, install.sh:
Note that Template::Plugin::JavaScript is required.
2009-07-15 scop
* README:
Note that Compress::Zlib is optional.
2009-07-15 scop
* README:
Point to official VDR homepage URL, fix indentation.
2009-07-15 scop
* HISTORY, vdradmind.pl:
Use text/javascript for JavaScript in HTTP headers.
2009-07-14 scop
* HISTORY, po/fi.po, po/vdradmin.pot, template/default/config.html:
Add autotimer schedule change tracking option in UI.
2009-02-09 amair
* po/it.po:
Updated.
2009-01-21 amair
* vdradmind.pl:
Fixed: epgsearch uses seconds in aux field of timers, not minutes.
2009-01-21 amair
* vdradmind.pl:
Fix bug #507 "EPGsearch custom categories no longer show".
2009-01-03 scop
* vdradmind.pl:
use() fine tuning.
2009-01-03 scop
* vdradmind.pl:
Improve pid file deletion logic, avoid warning noise.
2009-01-03 amair
* HISTORY, vdradmind.pl:
Fixed: Saving the config showed error message "1".
2009-01-03 amair
* CREDITS, template/default/about.html:
Added Manuel Gomez to list of translators.
2008-12-31 scop
* vdradmind.pl:
Sanity check pid file contents on read.
2008-12-31 scop
* HISTORY, vdradmind.pl:
Improve pid file error handling.
2008-12-31 scop
* HISTORY, vdradmind.pl:
Always exit with status 1 from --kill if no processes were killed.
2008-12-31 scop
* HISTORY, vdradmind.pl:
Fix "is the process with this pid a vdradmind" logic (outputs of "ps ax" differ); now uses/requires POSIX compliant "ps".
2008-12-31 amair
* po/es.po:
Reworked by Manuel Gomez.
2008-12-25 scop
* po/cs.po, po/de.po, po/es.po, po/fi.po, po/fr.po, po/it.po,
po/nl.po, po/ru.po, po/vdradmin.pot,
template/default/help_at_timer_new.html,
template/default/help_config.html:
Some English message fixes.
2008-12-25 scop
* po/.cvsignore:
Ignore *.mo.
2008-12-25 amair
* po/cs.po, po/de.po, po/es.po, po/fi.po, po/fr.po, po/it.po,
po/nl.po, po/ru.po, po/vdradmin.pot, tools/tmplgettext:
Sort HTML templates alphanumeric so that the ordering of the messages in the .po files doesn't change.
2008-12-20 tag v3_6_4
2008-12-20 amair
* HISTORY:
Fixed typo.
2008-12-19 amair
* HISTORY, vdradmind.pl:
Updated for release v3.6.4.
2008-12-18 scop
* vdradmind.pl:
Debug log message fix.
2008-12-18 scop
* po/fi.po:
Add some missing translations.
2008-12-18 amair
* tools/update-po:
Added "--check-only" param to list the number of untranslated and fuzzy messages.
2008-12-18 amair
* po/de.po:
Updated.
2008-12-18 amair
* po/cs.po, po/de.po, po/es.po, po/fi.po, po/fr.po, po/it.po,
po/nl.po, po/ru.po, po/vdradmin.pot:
Added new messages.
2008-12-17 amair
* HISTORY, vdradmind.pl:
- Added: Use ".update" in VDR's video directory to check if recordings cache needs to be refreshed.
- Added: CACHE_REC_ENABLED option in vdradmind.conf to enable (1) or disable (2) recordings caching.
2008-12-16 amair
* vdradmind.pl:
- Display error message in configuration menu if config could not be saved.
- Display warning message in configuration menu if config file is not writable by current user.
2008-12-16 amair
* template/default/at_timer_list.html,
template/default/at_timer_new.html, template/default/config.html,
template/default/epgsearch_config.html,
template/default/epgsearch_list.html,
template/default/epgsearch_new.html,
template/default/prog_detail_form.html,
template/default/prog_list.html,
template/default/prog_list2.html,
template/default/prog_summary.html,
template/default/prog_summary2.html,
template/default/prog_timeline.html,
template/default/rec_edit.html, template/default/rec_list.html,
template/default/timer_list.html,
template/default/timer_new.html, template/default/tv.html,
template/default/vdr_cmds.html:
Added block to show error messages.
2008-12-16 amair
* install.sh:
Check for more required Perl modules.
2008-12-16 amair
* HISTORY, vdradmind.pl:
Encode.pm now is optional and no recoding will happen if it's missing.
2008-12-13 scop
* po/fi.po:
More Finnish translation updates/additions.
2008-12-13 scop
* vdradmind.pl:
Fix setting process name (top-level "my $PROCNAME" was not available in BEGIN).
2008-12-13 scop
* template/default/about.html:
Mention myself as a Finnish translator.
2008-12-13 scop
* HISTORY, po/fi.po:
Finnish translation updates.
2008-12-13 tag v3_6_3
2008-12-13 amair
* vdradmind.pl:
Replaced $0 by $EXENAME.
2008-12-13 amair
* HISTORY, vdradmind.pl:
Updated for release 3.6.3.
2008-12-12 amair
* vdradmind.pl:
Move Template-Toolkit init after command line evaluation.
2008-12-12 amair
* HISTORY:
Updated.
2008-12-11 amair
* vdradmind.pl, template/default/prog_list.html,
template/default/prog_list2.html, template/default/timeline.js,
template/default/timer_list.html:
Added tooltips for previous/next arrow buttons to show the destination.
2008-12-11 amair
* po/es.po:
Updated.
2008-12-05 amair
* vdradmind.pl, template/default/config.html,
template/default/epgsearch_new.html,
template/default/prog_list2.html,
template/default/prog_summary.html,
template/default/prog_summary2.html,
template/default/prog_timeline.html,
template/default/timer_list.html,
template/default/timer_new.html, template/default/vdr_cmds.html:
Fix problems with variables having quotes when used in '<input value="<?% var %?>'>.
2008-12-03 amair
* install.sh, vdradmind.pl:
Changed process name to "vdradmind".
2008-12-03 amair
* po/it.po:
Updated.
2008-12-02 amair
* INSTALL, README, README.translators, install.sh, make.sh,
vdradmind.pl, vdradmind.pl.1, po/cs.po, po/de.po, po/es.po,
po/fi.po, po/fr.po, po/it.po, po/nl.po, po/ru.po,
po/vdradmin.pot:
Changed executable's name from "vdradmind.pl" to "vdradmind".
2008-12-02 amair
* po/nl.po:
Updated.
2008-12-01 amair
* vdradmind.pl.1:
Updated.
2008-12-01 amair
* tools/update-po:
Disable fuzzy matching.
2008-12-01 amair
* vdradmind.pl:
Hide CVS folders from skin and template list.
2008-12-01 amair
* template/default/epgsearch_new.html:
Initially hide content area to reduce flickering if JavaScript is used.
2008-09-26 amair
* make.sh:
cs_CS should be cs_CZ.
2008-09-26 amair
* po/de.po:
Change encoding to ISO-8859-15.
2008-09-26 amair
* make.sh:
Fixed *.po to *.utf8.po recoding.
2008-09-26 amair
* po/cs.po, po/de.po, po/es.po, po/fi.po, po/fr.po, po/it.po,
po/nl.po, po/ru.po, po/vdradmin.pot:
Added new translation strings.
2008-09-26 amair
* template/default/navigation.html, template/default/tv.html:
Reworked open_tv() JavaScript function.
2008-09-26 amair
* template/default/epgsearch_new.html:
When editing templates print "Name" instead of "Search Term".
2008-09-24 amair
* template/default/navigation.html, template/default/rc.html,
template/default/tv.html, template/default/default/fern_41.jpg,
template/default/default/fern_42.jpg,
template/default/default/fern_43.jpg,
template/default/default/fern_44.jpg,
template/default/default/fern_45.jpg,
template/default/default/fern_46.jpg,
template/default/default/fern_47.jpg,
template/default/default/fern_48.jpg:
Added Play/Stop/FastForward/etc. buttons to remote controls (based on patch by L.Locke @vdr-portal.de).
2008-09-19 amair
* vdradmind.pl, template/default/epgsearch_list.html,
template/default/epgsearch_new.html:
Added: epgsearch templates can be created, modified and deleted.
2008-09-10 amair
* vdradmind.pl:
Read used character encoding in SVDRP connections and recode result to the encoding used in the current locale.
2008-08-04 amair
* po/it.po:
Updated.
2008-07-16 amair
* po/it.po:
Updated.
2008-07-09 amair
* template/default/library.js:
"_new" should be "_blank".
2008-07-09 amair
* po/it.po:
Updated.
2008-07-08 amair
* vdradmind.pl, po/cs.po, po/de.po, po/es.po, po/fi.po, po/fr.po,
po/it.po, po/nl.po, po/ru.po, po/vdradmin.pot,
template/default/help_config.html, tools/tmplgettext,
tools/update-po:
- Included missing translation.
- Fixed bugs in .po creating.
2008-07-08 amair
* po/it.po:
Updated.
2008-07-07 amair
* CREDITS, HISTORY, po/it.po, template/default/about.html:
Changed "Gringo" to "Diego Pierotto".
2008-06-30 scop
* install.sh:
Drop dead EPGDATA.
2008-06-30 tag v3_6_2
2008-06-30 amair
* HISTORY, vdradmind.pl, po/cs.po, po/de.po, po/es.po, po/fi.po,
po/fr.po, po/it.po, po/nl.po, po/ru.po, po/vdradmin.pot:
Updated for v3.6.2 release.
2008-06-30 amair
* make.sh:
Added "help", "-h" and "--help" options.
2008-06-30 amair
* template/default/tv.html:
Added note.
2008-06-30 amair
* template/default/about.html:
Fixed ë.
2008-06-24 amair
* vdradmind.pl, template/default/config.html,
template/default/help_config.html:
Removed unused code.
2008-06-24 amair
* template/default/config.html:
Re-add "</table>" which had been wrongly removed by the previous commit.
2008-06-24 amair
* vdradmind.pl, template/default/config.html,
template/default/help_config.html:
Removed VDRVFAT config option and try to find the folders/files by using both codings.
2008-06-23 amair
* template/default/tv.html:
Reworked changing the grabbed image.
2008-06-20 amair
* template/default/tv.html:
Fixed some bugs.
2008-06-10 amair
* vdradmind.pl:
Fixed command line options parsing.
2008-05-19 amair
* template/default/epgsearch_new.html:
Fixed pattern titles that contain double quotes.
2008-05-19 amair
* vdradmind.pl:
Fixed timer titles that contain double quotes.
2008-05-09 amair
* po/cs.po, po/de.po, po/es.po, po/fi.po, po/fr.po, po/it.po,
po/ru.po, po/vdradmin.pot:
Updated.
2008-05-08 amair
* HISTORY, vdradmind.pl:
Added new command line switch "--ipv6" to use IO::Socket::INET6 for networking (See bug report #462).
2008-05-08 amair
* template/default/about.html:
Updated copyright.
2008-05-08 amair
* tools/update-po:
Do not wrap long lines.
2008-05-08 amair
* make.sh:
Check for missing folder before changing into it.
2008-05-05 amair
* po/nl.po:
Updated.
2008-04-21 amair
* HISTORY, vdradmind.pl:
- Added: ST_STREAMDEV_HOST config option to set the name/ip to be used for streaming.
- Fixed: m3u files for Xine (Reported by Robert C. Helling).
2008-04-17 amair
* po/it.po:
Updated.
2008-04-11 amair
* po/es.po:
Updated.
2008-03-31 amair
* po/fi.po:
Updated.
2008-03-25 amair
* po/cs.po, po/de.po, po/es.po, po/fi.po, po/fr.po, po/it.po,
po/nl.po, po/ru.po, po/vdradmin.pot:
Updated.
2008-03-14 amair
* HISTORY, vdradmind.pl, template/default/epgsearch_list.html,
template/default/epgsearch_new.html, template/default/library.js,
template/default/prog_list.html,
template/default/prog_list2.html,
template/default/prog_summary.html,
template/default/prog_summary2.html,
template/default/prog_timeline.html,
template/default/rec_list.html, template/default/timeline.js,
template/default/timer_list.html:
Introduced new config options "GUI_POPUP_WIDTH" and "GUI_POPUP_HEIGHT" for setting the prog_detail's window size.
2008-03-13 amair
* template/default/style.css:
Added space between each day/channel in prog_list/prog_list2.
2008-03-13 amair
* HISTORY, vdradmind.pl, template/default/prog_list.html:
Added prev/next arrows in prog_list after each day.
2008-03-12 amair
* HISTORY, vdradmind.pl:
Show channel in prog_list even if it's not in the current channel list; this is useful if prog_list is called by a link (e.g. timer_list).
2008-02-13 amair
* vdradmind.pl:
Set LANG environment variable when changing the locale.
2008-02-13 amair
* install.sh, make.sh:
Generate and install UTF8 locales by default.
2008-02-11 amair
* HISTORY, vdradmind.pl, po/cs.po, po/de.po, po/es.po, po/fi.po,
po/fr.po, po/it.po, po/nl.po, po/ru.po, po/vdradmin.pot,
template/default/epgsearch_config.html,
template/default/epgsearch_list.html,
template/default/epgsearch_new.html, template/default/style.css,
template/default/default/configure.png:
Added support for modifying EPGSearch blacklists.
2008-01-30 amair
* HISTORY, vdradmind.pl, template/default/prog_summary.html,
template/default/prog_summary2.html:
Show stream and switch buttons in prog_summary on channels without EPG information.
2008-01-29 scop
* vdradmind.pl:
Trivial code simplifications.
2008-01-11 amair
* vdradmind.pl:
Show channelname in recording's details.
2008-01-07 amair
* po/it.po:
Updated.
2007-12-19 tag v3_6_1
2007-12-19 amair
* HISTORY, README.translators, po/cs.po, po/de.po, po/es.po,
po/fi.po, po/fr.po, po/it.po, po/nl.po, po/ru.po,
po/vdradmin.pot, tools/tmplgettext, tools/update-po,
vdradmind.pl:
Updated for release v3.6.1.
2007-12-05 amair
* template/default/config.html:
Fixed: show textfield if no locales found.
2007-11-13 amair
* template/default/about.html:
Changed license text.
2007-11-12 amair
* CREDITS, README:
Updated for infoboxes.js.
2007-11-12 amair
* template/default/about.html:
Added license info.
2007-11-12 amair
* template/default/infobox.js:
Updated to latest release.
2007-11-12 amair
* vdradmind.pl:
Fixed wrong sorting in find results.
2007-10-26 amair
* HISTORY, vdradmind.pl:
Introduced new function trim(), ltrim() and rtrim().
Remove leading and trailing whitespaces from timer's title.
2007-10-19 amair
* HISTORY, vdradmind.pl, template/default/epgsearch_new.html:
Changed minimal required EPGsearch version to v0.9.23.
Added support for features introduced in EPGsearch v0.9.23 (e.g. auto delete searches, timeframe for searches).
2007-10-19 amair
* vdradmind.pl:
Close connection to VDR after AutoTimer update.
2007-09-21 tag v3_6_0
2007-09-21 amair
* po/it.po:
Fixed typo.
2007-09-21 amair
* HISTORY, LGPL.txt, README, install.sh, make.sh, vdradmind.pl,
po/cs.po, po/de.po, po/es.po, po/fi.po, po/fr.po, po/it.po,
po/nl.po, po/ru.po, po/vdradmin.pot, tools/tmplgettext:
- Added missing license information.
- Updated for v3.6.0 release.
2007-09-19 amair
* vdradmind.pl:
Changed: prog_timeline uses global channels array instead of copying it locally.
Fixed: Bug in prog_timeline introduced in 3.6.0beta.
2007-09-14 amair
* po/it.po:
Updated.
2007-09-13 amair
* po/es.po:
Updated.
2007-08-28 amair
* vdradmind.pl:
Channel range in epgsearch_new didn't work.
2007-08-27 scop
* HISTORY:
Fix copy-pasto
2007-08-27 amair
* HISTORY, vdradmind.pl:
Updated for v3.6.0rc release.
2007-08-27 amair
* po/fi.po:
Updated.
2007-08-24 amair
* po/cs.po, po/de.po, po/es.po, po/fi.po, po/fr.po, po/it.po,
po/nl.po, po/ru.po, po/vdradmin.pot:
Updated.
2007-08-24 amair
* template/default/help_config.html:
Fixed typo.
2007-08-23 amair
* po/fr.po:
Updated.
2007-08-21 amair
* vdradmind.pl:
Reworked configuration part: selected channels work again and settings are only applied if "save" or "apply" is pressed in config menu.
2007-08-20 amair
* vdradmind.pl:
Fixed initialisation if CHANNEL_WANTED_<area> config options.
2007-08-17 scop
* po/fi.po:
Finnish translation update.
2007-08-17 tag v3_6_0beta
2007-08-17 amair
* make.sh:
Delete all utf8 message files.
2007-08-17 amair
* HISTORY, vdradmind.pl, po/cs.po, po/de.po, po/es.po, po/fi.po,
po/fr.po, po/it.po, po/nl.po, po/ru.po, po/vdradmin.pot,
template/default/about.html, template/default/prog_detail.html:
Updated for v3.6.0beta release.
2007-08-14 amair
* vdradmind.pl:
Fixed typo to make LiveTV streaming working again.
2007-08-14 amair
* vdradmind.pl, template/default/config.html,
template/default/navigation.html,
template/default/prog_list.html,
template/default/prog_list2.html,
template/default/prog_summary.html,
template/default/prog_summary2.html,
template/default/prog_timeline.html, template/default/rc.html,
template/default/tv.html, template/default/vdr_cmds.html:
- VDRAdmin-AM now holds four default channel groups: all channels / selected channels / tv channels / radio channels.
- Added channel list to rc.
- Added dropdown box to prog_list, prog_list2, prog_timeline, prog_summary, prog_summary2, rc and tv to switch used channel group.
- Removed setting for using selected channels in config menu in favour of above-mentioned dropdown box.
- Added export of channels in each channel group as m3u playlist in vdr_cmds.
2007-08-10 amair
* vdradmind.pl, template/default/navigation.html,
template/default/tv.html:
Changed default for tv.html to only show the grabbed picture (for VDR streamingtool).
2007-08-10 amair
* vdradmind.pl, template/default/config.html,
template/default/help_config.html,
template/default/prog_list2.html,
template/default/prog_summary.html,
template/default/prog_summary2.html,
template/default/timeline.js,
template/default/prog_timeline.html:
- Added config option "Show channels without EPG information".
- Improved performance in "What's on new" when using selected channels.
2007-08-07 amair
* vdradmind.pl:
Fixed bug introduced with "Don't sort EPG with recent VDR" change.
2007-08-06 amair
* vdradmind.pl:
- Fixed channel_id generation.
- Don't sort EPG with recent VDR.
2007-08-06 amair
* template/default/timeline.js:
Fixed wrong background color for some broadcasts having timers.
2007-07-30 amair
* template/default/default/rec.gif:
Last frame now shows "REC" (see bug report #249).
2007-07-27 amair
* vdradmind.pl, template/default/config.html,
template/default/help_config.html:
- New configure options for AutoTimer: start/stop buffer.
- Priority and lifetime can be set to "0" (See bug report #232).
- Priority/Lifetime/Buffer Start/Buffer Stop in (Auto)Timer can now be empty ("") which means "use default set in configuration".
2007-07-27 amair
* vdradmind.pl:
Reduce memory usage of EPG tree.
2007-07-27 amair
* install.sh:
Make LOGDIR work again with latest vdradmind.pl LOGDIR change.
2007-07-26 amair
* vdradmind.pl:
Handle symbolic links when find'ing video files for a recording.
2007-07-26 amair
* vdradmind.pl:
- Fixed LOGFILE config file option.
- Added "stderr" as special LOGFILE target to log to stderr (=console?).
- Changed some print() calls to Log() calls.
- Removed some obsolete print()s.
- Added Log() calls around building the internal EPG tree.
2007-07-26 amair
* template/default/epgsearch_new.html:
Allow more than two characters in EPGsearch's "record" action (See bug report #286).
2007-07-26 amair
* vdradmind.pl, template/default/config.html,
template/default/help_config.html:
- Joined CACHE_TIMEOUT and AT_TIMEOUT options to CACHE_TIMEOUT.
- Added option for background EPG updates.
- Fetch EPG data from VDR at startup only if background EPG updates enabled.
- Don't execute CheckTimers() if AutoTimers disabled.
2007-07-16 amair
* po/cs.po, po/de.po, po/es.po, po/fi.po, po/fr.po, po/it.po,
po/nl.po, po/ru.po, po/vdradmin.pot:
Updated.
2007-07-16 amair
* template/default/help_edit_epg.html,
template/default/prog_detail.html,
template/default/prog_detail_form.html,
template/default/prog_list.html,
template/default/prog_list2.html,
template/default/prog_summary.html,
template/default/prog_summary2.html, HISTORY, vdradmind.pl:
Added new buttons in EPG views to edit the EPG entry.
2007-07-05 amair
* FAQ, HISTORY, vdradmind.pl.1:
Updated.
2007-07-05 amair
* vdradmind.pl:
- New command line option "--pid".
- Increased minimum required EPGSearch release to 0.9.21.
2007-07-04 amair
* vdradmind.pl:
Provide extended information in m3u files used for LiveTV streaming.
2007-07-04 amair
* template/default/default/udef_search.png,
template/default/help_config.html:
- IMDb search URL can be modified.
- Optional user defined external search.
2007-07-04 amair
* vdradmind.pl, template/default/config.html,
template/default/prog_detail.html,
template/default/prog_list.html,
template/default/prog_list2.html,
template/default/prog_summary.html,
template/default/prog_summary2.html:
- IMDb search URL can be modified.
- Optional user defined external search.
2007-07-04 amair
* template/default/timer_new.html:
Fixed saving of wrong timer if repeating timers have no day set (= "-------").
2007-04-23 amair
* install.sh:
Use bash for script.
2007-02-08 amair
* vdradmind.pl, template/default/epgsearch_list.html,
template/default/epgsearch_new.html:
Added record button to epgsearch result list if no timer is set.
2007-02-08 amair
* vdradmind.pl, template/default/timer_new.html:
- Changed minimum required epgsearch release to 0.9.20.
- Support for epgsearch's timer checking.
2007-01-25 tag v3_5_3
2007-01-25 amair
* vdradmind.pl, template/default/config.html,
template/default/help_config.html:
Disable EPG_DIRECT because it no longer works with the "lste" speedup patch.
2007-01-25 amair
* HISTORY:
Fixed year.
2007-01-25 amair
* HISTORY, po/cs.po, po/de.po, po/es.po, po/fi.po, po/fr.po,
po/it.po, po/nl.po, po/ru.po, po/vdradmin.pot:
Update for release 3.5.3.
2007-01-25 amair
* vdradmind.pl:
Handle "command not found" for epgsearch's LSTT and DEFT commands.
Another fix for VDR connect error in index.html.
2007-01-24 amair
* vdradmind.pl:
Fixed: epgsearch's LSTT command needs at least epgsearch v0.9.20.
2007-01-11 amair
* vdradmind.pl:
Include Klaus Schmidinger's "lste" speedup patch.
2007-01-11 amair
* vdradmind.pl:
Fixed: Access VDRAdmin-AM if VDR didn't run before starting VDRAdmin-AM.
Changed: Do not send every HTTP header line in its own TCP packet.
2007-01-09 amair
* vdradmind.pl:
Display error message if VDRAdmin-AM can't connect to VDR if index.html is requested.
This should reduce "I can't see the EPGsearch menu item" bug reports.
2007-01-09 amair
* template/default/epgsearch_new.html:
Added warning if neither "title", "subtitle" nor "description" is checked.
2007-01-07 scop
* template/default/rec_list.html:
Don't show recording commands drop-down if there are no reccmds.
2007-01-07 scop
* vdradmind.pl, template/default/timer_new.html:
HTML escaping fixes.
2007-01-07 scop
* vdradmind.pl:
When sorting recordings by name, sort folders by name too.
2007-01-07 scop
* vdradmind.pl:
Warning cleanups.
2007-01-07 scop
* vdradmind.pl:
Use constants instead of magic numbers.
2006-12-09 scop
* po/fi.po:
Finnish translation updates.
2006-12-08 tag v3_5_2
2006-12-08 amair
* HISTORY, vdradmind.pl, po/cs.po, po/de.po, po/es.po, po/fi.po,
po/fr.po, po/it.po, po/nl.po, po/ru.po, po/vdradmin.pot,
template/default/epgsearch_list.html,
template/default/library.js:
Fixed: "Are you sure you want to delete" confirms couldn't be canceled.
Release v3.5.2.
2006-12-08 amair
* FAQ:
Added "Watch TV".
2006-12-03 scop
* COPYING:
Sync license text with http://www.gnu.org/licenses/COPYING (FSF address, cosmetics).
2006-12-03 scop
* vdradmind.pl:
Update FSF address.
2006-12-03 scop
* vdradmind.pl:
Warning cleanups.
2006-12-02 scop
* CREDITS:
Spelling fix.
2006-12-01 tag v3_5_1
2006-12-01 amair
* HISTORY, vdradmind.pl:
Release v3.5.1.
2006-12-01 amair
* CREDITS, FAQ, INSTALL, README.translators, REQUIREMENTS,
install.sh, make.sh, vdradmind.pl, po/cs.po, po/de.po, po/es.po,
po/fi.po, po/fr.po, po/it.po, po/nl.po, po/ru.po,
po/vdradmin.pot, template/default/about.html, tools/update-po:
Added Italian translation (Submitted by Gringo).
Reworked documentation.
Fixed crash with invalid timer lines.
2006-11-27 amair
* vdradmind.pl:
Fixed crash if URL starts with two slashes; example: http://1.2.3.4:8001//
2006-11-24 amair
* HISTORY, po/de.po, po/vdradmin.pot:
Updated for v3.5.1beta release.
2006-11-24 amair
* vdradmind.pl:
Changed handling of critical/colliding timers on encrypted channels in timer_list.
2006-11-24 amair
* vdradmind.pl:
- Lost info on selected extepginfos if testing an epgsearch in epgsearch_new.
- Don't use an epgsearch template's name as pattern if adding a new epgsearch.
2006-11-22 amair
* vdradmind.pl:
Didn't select the right channel group in epgsearch_new.
2006-11-20 amair
* vdradmind.pl:
Fixed """ in prog_timeline.
2006-11-16 amair
* vdradmind.pl, template/default/epgsearch_list.html:
New epgsearches can be based on epgsearch's templates.
2006-11-13 amair
* make.sh:
Exclude ".#*" files from distribution tarball.
2006-11-13 amair
* vdradmind.pl:
Added missing localisation for headlines in epgsearch results/favourites.
2006-11-10 tag v3_5_0
2006-11-10 amair
* HISTORY, vdradmind.pl, po/cs.po, po/fr.po,
template/default/style.css:
Updated for 3.5.0 release.
2006-11-03 scop
* vdradmind.pl:
Trim trailing whitespace.
2006-11-03 scop
* vdradmind.pl:
Save config values always in the "C" locale collation order.
2006-11-02 tag v3_5_0rc
2006-11-02 amair
* HISTORY:
Updated for v3.5.0rc release.
2006-11-02 amair
* vdradmind.pl:
Set version to 3.5.0rc.
2006-10-31 amair
* template/default/epgsearch_list.html, vdradmind.pl:
Added button to manually start epgsearch timer update thread.
2006-10-31 amair
* po/de.po, po/es.po, po/fi.po, po/nl.po, po/ru.po,
po/vdradmin.pot:
Updated.
2006-10-31 amair
* vdradmind.pl:
Do not set AT_OFFER=2 (=use AT) if AT_FUNC=1 and vdradmind.at is not empty. This allows users to first try epgsearch and after they've converted remove all there AutoTimers and set AT_FUNC=0 in config menu to completely hide AT feature.
2006-10-30 amair
* template/default/style.css, template/default/timer_list.html:
Fixed bold black line in MSIE.
2006-10-30 amair
* template/default/config.html:
Hide AutoTimer config if AT feature not wanted.
2006-10-30 amair
* template/default/timer_new.html:
Hide "AutoTimer Checking" setting unless using AutoTimer.
2006-10-30 amair
* template/default/style.css:
Fixed MSIE hack.
2006-10-30 amair
* template/default/at_timer_new.html:
Prepared for easier adding new lines.
2006-10-30 amair
* vdradmind.pl, template/default/config.html:
Removed unused code.
2006-10-27 tag v3_5_0beta
2006-10-27 amair
* HISTORY, autotimer2searchtimer.pl, make.sh, vdradmind.pl,
lib/Template/Plugin/HTML.pm, lib/Template/Plugin/JavaScript.pm,
po/cs.po, po/de.po, po/es.po, po/fi.po, po/fr.po, po/nl.po,
po/ru.po, po/vdradmin.pot, template/default/about.html,
template/default/at_timer_list.html,
template/default/epgsearch_list.html,
template/default/epgsearch_new.html, template/default/library.js,
template/default/navigation.html, template/default/rec_list.html,
template/default/style.css, template/default/timer_list.html:
Added epgsearch plugin support.
Release v3.5.0beta.
2006-10-27 amair
* vdradmind.pl:
Fixed crash if a timer's length is 0 + buffer start + buffer stop.
2006-10-26 amair
* template/default/style.css, template/default/prog_list2.html:
Some layout fixes.
2006-10-26 amair
* vdradmind.pl:
Remove trailing "\n" from "hostname" output.
2006-10-20 amair
* template/default/error.html,
template/default/default/sauerei.gif:
Removed "sauerei.gif" on error page.
2006-10-20 amair
* template/default/about.html, template/default/at_timer_list.html,
template/default/at_timer_new.html, template/default/config.html,
template/default/help_at_timer_list.html,
template/default/help_at_timer_new.html,
template/default/help_config.html,
template/default/help_rec_list.html,
template/default/help_timer_list.html,
template/default/help_timer_new.html,
template/default/index.html, template/default/prog_list.html,
template/default/prog_list2.html,
template/default/prog_summary.html,
template/default/prog_summary2.html,
template/default/prog_timeline.html,
template/default/rec_edit.html, template/default/rec_list.html,
template/default/style.css, template/default/timer_list.html,
template/default/timer_new.html, template/default/tv.html,
template/default/vdr_cmds.html:
* MSIE6 fix for too wide lists having a scrollbar at the left.
* Fixed some (X)HTML bugs.
2006-10-02 amair
* template/default/about.html:
Added Karel Borkovec to translation team (Reported by Jörg Bornkessel)
Sort languages by date they were added.
2006-10-02 amair
* vdradmind.pl:
Log error for Net::SMTP only if module really missing (Provided by Tobias Grimm).
2006-09-30 scop
* template/default/navigation.html, template/default/rec_list.html:
Small HTML cleanups/fixes.
2006-09-30 scop
* po/fi.po:
Add some missing Finnish translations.
2006-09-29 tag v3_4_7
2006-09-29 amair
* HISTORY, vdradmind.pl, po/cs.po, po/de.po, po/es.po, po/fi.po,
po/fr.po, po/nl.po, po/ru.po, po/vdradmin.pot:
Release v3.4.7.
2006-09-27 amair
* HISTORY, vdradmind.pl:
Autosave now takes care of the number of lines to show in commands menu.
2006-09-27 amair
* tools/tmplgettext, tools/update-po:
Cleaned.
2006-09-27 amair
* template/default/rec_list.html:
Added missing space.
2006-09-11 scop
* vdradmind.pl:
Fix running the first (index=0) commands.conf command.
2006-09-06 amair
* HISTORY, po/cs.po, po/de.po, po/es.po, po/fi.po, po/fr.po,
po/nl.po, po/ru.po, po/vdradmin.pot:
Updated for v3.4.7beta release.
2006-09-06 amair
* contrib/user.css.example:
Added more examples.
2006-09-06 amair
* template/default/style.css:
Hilight links in about and help.
2006-09-06 amair
* vdradmind.pl:
Encode quotes in channel name in prog_timeline.
2006-09-04 amair
* template/default/about.html:
Fixed forgotten <tmpl_var ...> statements.
Changed the way missing and available features are displayed.
2006-09-04 amair
* template/default/config.html:
Hide select boxes for templates and skins if it contains only a single choice.
2006-09-04 amair
* vdradmind.pl:
Another fix for the refering pages problem(s).
2006-09-01 amair
* template/default/navigation.html:
Hide "AutoTimer" menu item unless $FEATURE{AUTOTIMER} is set.
2006-09-01 amair
* vdradmind.pl, template/default/config.html:
Changed $FEAT_something to $FEATURES{something}.
Made %CONFIG and %FEATURES available for every template.
2006-09-01 amair
* tools/tmplgettext:
Fix problems with text extraction in prog_timeline.html.
2006-09-01 amair
* template/default/about.html, template/default/at_timer_new.html,
template/default/config.html, template/default/error.html,
template/default/index.html, template/default/navigation.html,
template/default/noauth.html, template/default/prog_detail.html,
template/default/prog_list.html,
template/default/prog_list2.html,
template/default/prog_summary.html,
template/default/prog_summary2.html,
template/default/prog_timeline.html,
template/default/timer_list.html, template/default/tv.html:
Use gettext('...') in templates everywere.
2006-08-30 amair
* vdradmind.pl:
Changed: Use date instead of empty subtitle in timers programed by AutoTimer with activated "Episode" option.
Fixed: Don't show outdated broadcast as search result.
Fixed: Don't purge AutoTimer done list if in test mode.
2006-08-30 amair
* tools/tmplgettext:
Updated to new start/end tags for translations.
2006-08-30 amair
* template/default/at_timer_list.html,
template/default/prog_list.html,
template/default/prog_list2.html,
template/default/prog_summary.html,
template/default/prog_summary2.html,
template/default/prog_timeline.html,
template/default/rec_list.html, template/default/timer_list.html:
Display warning message if lists is empty.
2006-08-30 amair
* template/default/help_at_timer_new.html,
template/default/help_config.html:
Added help for "Save settings on exit".
2006-08-28 scop
* vdradmind.pl:
Include Auto-Submitted header in mails per RFC 3834.
2006-08-27 scop
* vdradmind.pl:
Detach from STDIN when daemonizing, check fork() return value.
2006-08-24 amair
* HISTORY, vdradmind.pl:
Fixed: AutoTimer test feature didn't find broadcasts if they were in vdradmind.done.
2006-08-22 amair
* HISTORY, vdradmind.pl, template/default/about.html,
template/default/at_timer_list.html,
template/default/at_timer_new.html, template/default/config.html,
template/default/error.html,
template/default/help_at_timer_list.html,
template/default/help_at_timer_new.html,
template/default/help_config.html, template/default/help_no.html,
template/default/help_rec_list.html,
template/default/help_timer_list.html,
template/default/help_timer_new.html,
template/default/index.html, template/default/navigation.html,
template/default/noauth.html, template/default/noperm.html,
template/default/prog_detail.html,
template/default/prog_list.html,
template/default/prog_list2.html,
template/default/prog_summary.html,
template/default/prog_summary2.html,
template/default/prog_timeline.html, template/default/rc.html,
template/default/rec_edit.html, template/default/rec_list.html,
template/default/style.css, template/default/timer_list.html,
template/default/timer_new.html, template/default/tv.html,
template/default/vdr_cmds.html:
Changed: Only use Template-Toolkit's Template.pm.
Removed: HTML::Template dependency.
2006-08-07 amair
* template/default/prog_summary2.html:
Only show switch button if broadcast is running.
2006-08-07 amair
* vdradmind.pl:
Fix previous commit: streamurl != switchurl :(
2006-08-07 amair
* vdradmind.pl:
Check for streamdev-client plugin and disable LiveTV streaming if absent.
2006-08-07 amair
* make.sh:
Added UTF8 locales patch by Zoolook (see Bug #124).
2006-08-06 scop
* template/default/at_timer_new.html,
template/default/prog_list2.html, template/default/tv.html:
Escape channel names.
2006-08-06 scop
* template/default/about.html, template/default/prog_timeline.html,
vdradmind.pl:
XHTML validity fixes.
2006-08-04 amair
* template/default/default/cut.png,
template/default/default/play.png:
Added missing icons for PLAY and EDIT actions in rec_list.
2006-07-28 scop
* template/default/at_timer_new.html, template/default/config.html,
template/default/prog_list.html,
template/default/prog_list2.html,
template/default/prog_summary.html,
template/default/prog_summary2.html,
template/default/timer_list.html,
template/default/timer_new.html, template/default/tv.html:
XHTML validity fixes.
2006-07-28 amair
* .cvsignore, make.sh:
Added more files to .cvsignore.
Added "cl" target to make.sh.
Changed "dist" target to also call "cvs", "po" and "cl".
2006-07-27 scop
* .cvsignore:
Ignore more generated files.
2006-07-27 scop
* .cvsignore, make.sh:
Autogenerate ChangeLog from CVS.
2006-07-26 scop
* vdradmind.pl:
Add (X)Emacs coding style settings.
2006-07-24 amair
* HISTORY:
Updated.
2006-07-24 amair
* vdradmind.pl, template/default/rec_list.html,
template/default/style.css:
Fixed: Initial display of rec_list was empty.
Added: New PLAY and EDIT actions in rec_list.
Modified Files:
vdradmind.pl
template/default/rec_list.html
template/default/style.css
2006-07-24 amair
* vdradmind.pl, template/default/tv.html:
Remember selected size and interval in TV.
Modified Files:
vdradmind.pl
template/default/tv.html
2006-07-20 amair
* vdradmind.pl, template/default/about.html,
template/default/rec_list.html:
Added check for features available with VDR's SVDRP, disable missing ones and show them in about.html (ATM used for RENR).
Modified Files:
vdradmind.pl
template/default/about.html
template/default/rec_list.html
2006-07-20 amair
* INSTALL:
Added notes for CVS.
2006-07-19 amair
* vdradmind.pl, template/default/config.html:
New option to autosave config on exit (also saves sorting state in lists and viewmode in prog_summary).
Modified Files:
vdradmind.pl
template/default/config.html
2006-07-19 amair
* vdradmind.pl, template/default/rec_list.html:
Changed handling of sorting in rec_list (should always keep the current sorting).
Modified Files:
vdradmind.pl
template/default/rec_list.html
2006-07-19 amair
* vdradmind.pl:
Fixed bug with latest "sorting" modification.
2006-07-19 amair
* vdradmind.pl, template/default/at_timer_list.html:
Changed handling of sorting in at_timer_list (should always keep the current sorting).
Modified Files:
vdradmind.pl
template/default/at_timer_list.html
2006-07-18 amair
* vdradmind.pl:
Removed unneeded sortby/desc param passing in timer_list.
2006-07-18 amair
* CREDITS, README.translators, install.sh, make.sh, vdradmind.pl,
po/cs.po, tools/update-po:
Added Czech translation (Submitted by Karel Borkovec).
Modified Files:
CREDITS
README.translators
install.sh
make.sh
vdradmind.pl
tools/update-po
Added Files:
po/cs.po
2006-07-18 amair
* CREDITS:
Updated.
2006-07-18 amair
* vdradmind.pl, template/default/timer_list.html:
Changed handling of sorting in timer_list (should always keep the current sorting).
Modified Files:
vdradmind.pl
template/default/timer_list.html
2006-07-18 amair
* template/default/favicon.ico, template/default/index.html,
template/default/default/favicon.ico:
Moved favicon.ico from a template's skin folder to the template's main folder.
Modified Files:
template/default/index.html
Added Files:
template/default/favicon.ico
Removed Files:
template/default/default/favicon.ico
2006-07-14 tag v3_4_6
2006-07-14 amair
* vdradmind.pl:
Release v3.4.6
2006-07-14 amair
* HISTORY:
Release v3.4.6
2006-07-14 amair
* make.sh:
Added comments.
2006-07-14 amair
* po/de.po, po/es.po, po/fi.po, po/fr.po, po/nl.po, po/ru.po,
po/vdradmin.pot:
Updated.
Modified Files:
po/de.po
po/es.po
po/fi.po
po/fr.po
po/nl.po
po/ru.po
po/vdradmin.pot
2006-07-11 tag v3_4_6rc2a
2006-07-11 amair
* HISTORY, template/default/at_timer_list.html,
template/default/prog_list.html,
template/default/prog_list2.html,
template/default/prog_summary2.html,
template/default/rec_list.html, template/default/style.css,
template/default/timer_list.html:
Added: Hilighting of row beneath mouse pointer in lists.
Modified Files:
HISTORY
template/default/at_timer_list.html
template/default/prog_list.html
template/default/prog_list2.html
template/default/prog_summary2.html
template/default/rec_list.html
template/default/style.css
template/default/timer_list.html
2006-07-11 amair
* vdradmind.pl:
(Hopefully) fixed "unknown URL" bug if "record" is clicked in prog_detail called from list of repeats (Reported by anso20030).
2006-07-11 tag v3_4_6rc2
2006-07-11 amair
* po/de.po:
Fixed typo.
2006-07-11 amair
* HISTORY, vdradmind.pl, template/default/prog_timeline.html,
template/default/timeline.js:
Bugfixes in prog_timeline.
Modified Files:
template/default/timeline.js
template/default/prog_timeline.html
vdradmind.pl
HISTORY
|