-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHISTORY.h
1609 lines (1151 loc) · 53 KB
/
HISTORY.h
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
/*
* -----------------------------------
* EPG Daemon - epgd Revision History
* -----------------------------------
*/
#define _VERSION "1.3.29"
#define VERSION_DATE "13.02.2025"
#define DB_API 8
#ifdef GIT_REV
# define VERSION _VERSION "-GIT" GIT_REV
#else
# define VERSION _VERSION
#endif
/*
* ------------------------------------
2025-02-13: version 1.3.29 (horchi)
- Change: downgarded jquery(ui) du to problems
2025-02-11: version 1.3.28 (horchi)
- Bugfix: Fixed python crash at exit
2025-02-11: version 1.3.27 (horchi)
- Change: Updated jquery / jqueryui version
2025-01-19: version 1.3.26 (horchi)
- Change: Fixed warnings g++ 13 warnings, minor improvements
2025-01-18: version 1.3.25 (horchi)
- Change: Porting to python lib >= 3.12
2024-05-26: version 1.3.24 (horchi)
- Bugfix: Fixed python init (patch from seahawk1986)
2024-02-22: version 1.3.23 (horchi)
- Bugfix: Fixed elglvr on empty strings
2023-02-14: version 1.3.22 (horchi)
- Added: Theme handling via build process
2023-02-13: version 1.3.21 (horchi)
- Bugfix: Fixed search fallback to shorttext on empty episode-part-name
- Bugfix: Fixed search timer dialog scrolling on large result set
2023-02-12: version 1.3.20 (horchi)
- Change: Improved (or fixed?) episoden search for auto timer and WEBIF
2023-02-12: version 1.3.19 (horchi)
- Added: Perl Compatible regular expressions (PCRE) for auto timer
2023-02-12: version 1.3.18 (horchi)
- Added: Added log eloquence for EPG plugins
- Bugfix: Fixed gub in json handling for WEBIF
2023-02-12: version 1.3.17 (horchi)
- Bugfix: Fixed timer creation from WEBIF
2023-02-11: version 1.3.16 (horchi)
- Change: Ingnoring unknown config parameters
2023-02-11: version 1.3.15 (horchi)
- Bugfix: Fixed crash ob epghttpd start
2023-02-11: version 1.3.14 (horchi)
- Change: Changed log message handling from level to bitmask (update and rebuild all plugins)
2023-02-11: version 1.3.13 (horchi)
- Bugfix: Fixed crash at exit with deactivated TVDB scraper
- Change: Trigger eplist match for new external events
2023-02-07: version 1.3.12 (horchi)
- change: Minor code cleanup and log message improvements
2023-02-06: version 1.3.11 (horchi)
- change: Improved series lookup and constable merge for bad provider data
(e.g. if title and episode name are supplied together in the title of the program)
2023-02-06: version 1.3.10 (horchi)
- change: Force category 'Serie' for recording with eplist match
2023-02-05: version 1.3.9 (horchi)
- change: Now using LV distance of 20% for recordings eplist lookup
2023-02-05: version 1.3.8 (horchi)
- change: Improved series scraper lookup for recordings
2023-01-29: version 1.3.7 (horchi)
- added: Database tuning parameters to the README
2023-01-28: version 1.3.6 (horchi)
- change: Using syslog severity (Tkx to kfb77)
2023-01-28: version 1.3.5 (horchi)
- bugfix: Fixed initial start without tables (again)
2023-01-27: version 1.3.4 (horchi)
- bugfix: Fixed handling of file links for constable series
2023-01-27: version 1.3.3 (horchi)
- bugfix: Fixed initial start without tables
2023-01-22: version 1.3.2 (horchi)
- change: More dynamic detection of python version (Thx to kfb77)
2023-01-22: version 1.3.1 (horchi)
- change: Increased DVAPI version to 8
- added: Auto mirgrate database to new DBAPI and tvdb API V4
2023-01-01: version 1.3.0 (horchi)
- added: Support of TVDB V4
2023-01-06: version 1.2.5 (horchi)
- bugfix: Fixed delete button of page 'Timer' -> 'kürzliche Aufträge'
- bugfix: Fixed compile problem (again)
2022-10-12: version 1.2.4 (horchi)
- bugfix: Fixed compile problem
2022-04-25: version 1.2.3 (horchi)
- bugfix: Fixed syntax error in Makefile (thx to Michael Schaffner)
2022-01-04: version 1.2.2 (horchi)
- bugfix: Fixed build dependencies
2022-01-04: version 1.2.1 (horchi)
- change: Makefile change du to more distribution compatibility
2022-01-03: version 1.2.0 (horchi)
- change: Removed dependency to mysql-compat package
2020-11-01: version 1.1.165 (horchi)
- change: Check HTTP Codes 600 nad 500
- change: Add result check of fromJpeg/scaleJpegBuffer
2020-10-31: version 1.1.164 (horchi)
- bugfix: fixed error handling in curl downloadFile (thx to Alexander Grothe)
- bugfix: improved error handling of jpeg processing (patch by NemoN)
2020-08-17: version 1.1.163 (horchi, patch by kfb77)
- change: Improved match of series
2020-07-28: version 1.1.162 (Alexander Grothe, horchi)
- change: Improved curl handling
2020-07-27: version 1.1.161 (Alexander Grothe, horchi)
- change: Porting to new libmicrohttpd
2020-07-27: version 1.1.160 (horchi)
- change: Minor change of README
2020-02-29: version 1.1.159 (horchi)
- change: Don't set end of timer by webif
2020-02-24: version 1.1.158 (horchi)
- bugfix: Fixed move of timer by webif
2020-02-17: version 1.1.157 (horchi)
- bugfix: Fixed conflicting timer start times
2020-02-12: version 1.1.156 (horchi)
- added: New fields for future fetures
2020-02-11: version 1.1.155 (horchi)
- bugfix: Fixed crash due to wrong handling of python object (thx to Alexander Grothe)
2020-02-10: version 1.1.154 (horchi)
- change: Tray to fix mysterious sql result (mariaDb)
2020-02-10: version 1.1.153 (horchi)
- added: More debug messages
2020-02-10: version 1.1.152 (horchi)
- bugfix: Fixed problem with detection of table changes
2020-02-09: version 1.1.151 (horchi)
- bugfix: Added missing commit after timer cleanup
- added: Debug messages for alter table
2020-01-28: version 1.1.150 (horchi)
- added: Using pkg-config for libxml2 (by Alexander Grothe)
2019-12-15: version 1.1.149 (horchi)
- added: Added cleanup for old wasted timers
- added: Added _endtime to table timers
2019-12-09: version 1.1.148 (horchi)
- change: Improved epglv method to avoid problems on some special characters
2019-11-28: version 1.1.147 (horchi)
- added: Support of python 3.8 (by Alexander Grothe)
2018-10-21: version 1.1.146 (horchi)
change: Fixed gentoo compile problem
2018-10-04: version 1.1.145 (horchi)
change: Optimized mysql password handling in epgd scripts
2018-10-03: version 1.1.144 (horchi)
change: Fixed g++-8 warnings
2018-10-02: version 1.1.143 (horchi)
change: Fixed compile problem of epglv
2018-09-02: version 1.1.142 (horchi)
added: Auto update of modified channelids
change: systemd now default in Make.config
2018-05-14: version 1.1.141 (horchi)
added: Compatibility for newer MariaBD librarys (patch by provided by marco)
added: execution shell to scripts
2018-04-21: version 1.1.140 (rechner)
change: Added UI for Prepared search timer filter by channel number
2018-04-18: version 1.1.139 (horchi)
change: Prepared search timer filter by channel number (to be added to WEBIF)
2018-03-11: version 1.1.138 (horchi)
change: Fixed image problem with epgdata
due to interface change by epgdata (patch by seahawk1986)
2018-03-09: version 1.1.137 (horchi)
bugfix: Try to fixed potential problem at timer modification
2018-03-08: version 1.1.136 (rechner)
- added: if repeatFields shorttext checked, title is also checked and disabled
- removed: description field in repeatFields
- added: parameter osdTimerNotify
2018-03-07: version 1.1.135 (horchi)
- bugfix: Fixed minor problem with auto timer and empty episode/shorttext
2018-02-14: version 1.1.134 (horchi)
- bugfix: Fixed handling of timer type change by WEBIF
2018-02-14: version 1.1.133 (horchi)
- bugfix: Fixed display of external timer in WEBIF lists
2018-02-10: version 1.1.132 (rechner)
- change: text for swichtimer and highlight recIcon on success
2018-02-10: version 1.1.131 (horchi)
- added: Support delete for switch timer
- added: Table for recording images (still under development)
2018-02-09: version 1.1.130 (rechner)
- added: Icons for timertypes
- added: switchtimer on eventDetail
2018-02-09: version 1.1.129 (horchi)
- added: Table for recording images
2018-02-08: version 1.1.128 (horchi)
- change: don't store 'switch' timer to timersdone
2018-02-08: version 1.1.127 (horchi)
- change: store timer type to support 'switch' timer
2018-01-02: version 1.1.126 (ckone)
- change: improved handling of reinstated events in merge procedure
2017-12-22: version 1.1.125 (horchi)
- change: new field in 'recordinglist' to store the original description
2017-12-21: version 1.1.124 (horchi)
- change: gcc 7 porting
2017-12-02: version 1.1.123 (horchi)
- added: Trigger osd2web plugins of running VDRs on new recording
2017-10-09: version 1.1.122 (horchi)
- change: Fixed curl SSL mode
2017-08-01: version 1.1.121 (rechner)
- fixed: error, if no vdr available
2017-07-25: version 1.1.120 (rechner)
- added: show constable in eventdetail, if episodename is available
- added: show constable extracol 1-3 in eventdetail
- fixed: if recording view was reloaded the functionallity in bar was lost
2017-06-28: version 1.1.119 (rechner)
- added: Link to osd2web, if available
2017-06-25: version 1.1.119 (rechner)
- fixed: check, if channel list is loaded in magazine View
2017-06-24: version 1.1.118 (rechner)
- fixed: Fixed error while click on channel in pageNow View
2017-06-09: version 1.1.117 (horchi)
- change: Fixed install of eventviews*
2017-06-08: version 1.1.116 (horchi)
- change: Modified user views for better skin support
2017-05-16: version 1.1.115 (horchi)
- change: Changed apple-mobile-web-app-status-bar-style to black
- bugfix: Fixed typo in eventsviews
2017-03-23: version 1.1.114 (horchi)
- change: Minor view change for peding features
2017-03-20: version 1.1.113 (horchi)
- added: Add validity check of the API key for https://www.themoviedb.org (by 3po)
- change: Removed compiler warnings when using clang
- added: Added clang++ to Make.config (as optional compiler)
2017-03-18: version 1.1.112 (horchi)
- bugfix: fixed imagecount value in events table
2017-03-18: version 1.1.111 (horchi)
- change: modified repeaing timer check statement to handle '' values like null values again
- added: new view eventsview-perlbo.sql
- change: fixed some typos
2017-03-16: version 1.1.110 (horchi)
- added: Congig option for MovieDb api-key
2017-03-16: version 1.1.109 (horchi)
- change: Fixed git merge problems
2017-03-16: version 1.1.108 (horchi)
- change: Improved error message on failed downloads
- added: sleep 1 second every 50 scraper downloads due to server limit
2017-03-12: version 1.1.108 (rechner)
- bugfix: namingmode searchtimer shows always 10 instead of template
2017-03-09: version 1.1.106 (rechner)
- bugfix: default namingmode on searchtimer was shown if VDR was stored
2017-03-09: version 1.1.106 (horchi)
- bugfix: Fixed missing INIT_AFTER in Make.config
2017-03-06: version 1.1.105 (horchi)
- added: Added column for future features to vdrs table
2017-03-06: version 1.1.104 (horchi)
- change: Fixed order of push/tag in Makefile
2017-03-03: version 1.1.103 (horchi)
- bugfix: Fixed os release detection for SuSe (fixed by 3po)
2017-03-01: version 1.1.102 (horchi)
- Added: last merge to vdrs table (only for statistics/support reason)
2017-02-27: version 1.1.101 (horchi)
- Added: Added support for systemd support in build environment
2017-02-26: version 1.1.100 (horchi)
- bugfix: Fixed mail spam on invalid manuel timer
2017-02-24: version 1.1.99 (ckone)
- change: Improved merge match duration due to some verry short events
2017-02-24: version 1.1.98 (horchi)
- bugfix: Fixed problem with empty shorttext in timersdone
2017-02-22: version 1.1.97 (horchi)
- changed: Modified Makefile to support more simultaneously make jobs
2017-02-22: version 1.1.96 (horchi)
- added: 'After' template for systemd init
2017-02-16: version 1.1.95 (horchi)
- added: Optional mail notification on create of 'auto-timer'
2017-02-15: version 1.1.94 (horchi)
- bugfix: Fixed missing ! in some mails
2017-02-14: version 1.1.93 (horchi)
- bugfix: Fixed timer delete on missing event
2017-02-13: version 1.1.92 (horchi)
- bugfix: Fixed problem with autotimer update on simultaneous timer adjust
2017-02-08: version 1.1.91 (horchi)
- changed: minor log level change
2017-02-07: version 1.1.90 (rechner)
- fixed: sorting records for title
- fixed: multiple highlights on sorting-context-menu
- changed: newpath on moving improved
2017-02-07: version 1.1.89 (horchi)
- changed: Timer 'start time change' messages only on changes greater 2 minutes
2017-01-25: version 1.1.88 (horchi)
- bugfix: fixed auto adjust of timer start time
- bugfix: fixed handling of timer mails
2017-01-24: version 1.1.87 (rechner)
- bugfix: fixed refresh of searchtimer-table after saving from dialog
2017-01-20: version 1.1.86 (horchi)
- bugfix: fixed compile with python 3
2017-01-19: version 1.1.85 (rechner)
- added: defaultvalues for namingmode template
- added: placeholder for quicklinks in defaults
- fixed: click onsubmenu line
2017-01-19: version 1.1.84 (horchi)
- bugfix: fixed minor problem with naming mode for sinlge timer create via web
2017-01-19: version 1.1.83 (horchi)
- changed: changed length of template input box
2017-01-19: version 1.1.82 (horchi)
- added: support of namingmode 'template' by epgd/epghttpd
2017-01-19: version 1.1.81 (horchi)
- changed: Update of web help text for timer
2017-01-18: version 1.1.80 (rechner)
- added: namingmode 6 = template in searchdialog added (missing in backend)
2017-01-18: version 1.1.79 (horchi)
- bugfix: Fixed double escape of recording name
2017-01-14: version 1.1.78 (horchi)
- changed: Compatibility to libmicrohttpd version <= 0x00095102
2017-01-13: version 1.1.77 (horchi)
- changed: Compatibility to libmicrohttpd version <= 0x00090000
2017-01-13: version 1.1.76 (horchi)
- added: Experimental TLS support
2017-01-12: version 1.1.75 (horchi)
- bugfix: fixed config parser
2017-01-12: version 1.1.74 (horchi)
- bugfix: fixed handling of null values in WEBIF communication
2017-01-03: version 1.1.73 (rechner)
- bugfix: disabled state on user-rights again
2017-01-02: version 1.1.72 (rechner)
- bugfix: disabled state on user-rights
2017-01-02: version 1.1.71 (rechner)
- changed: layout from edit User
- bugfix: load users without cache
2016-12-14: version 1.1.70 (horchi)
- bugfix: fixed sql syntax error in epgd-dropall (Thx to Michael Schaffner)
2016-12-13: version 1.1.69 (horchi)
- bugfix: send TCC mails only once
2016-12-12: version 1.1.68 (horchi)
- bugfix: fixed sql syntax error in epgd-dropall (Thx to Michael Schaffner)
2016-12-12: version 1.1.67 (horchi)
- bugfix: fixed crash on epghttpd shutdown
2016-12-05: version 1.1.66 (horchi)
- bugfix: mask ' signs at mal body
2016-12-04: version 1.1.65 (rechner)
- bugfix: canceling von delete Timer no longer ignored
2016-12-03: version 1.1.63 (rechner)
- added: recordigs could be selected and delete
2016-12-02: version 1.1.62 (rechner)
- fixed: icons in WebIf
2016-12-02: version 1.1.61 (horchi)
- change: moved TCC mails to message interface
2016-12-02: version 1.1.60 (horchi)
- bugfix: fixed message config
2016-12-01: version 1.1.59 (rechner)
- added: messages view in WebIf
2016-12-01: version 1.1.58 (horchi)
- added: optional notification mails
- change: internal API redesign
2016-12-01: version 1.1.57 (horchi)
- change: added pause on state change to prevent seldom 'deadlocks' on epg2vdr side
2016-11-30: version 1.1.56 (horchi)
- change: merging of lib
2016-11-30: version 1.1.55 (horchi)
- added: Delete / Modify of timers on event changes
2016-11-28: version 1.1.54 (rechner)
- fixed: drag and drop for mobile in recording
- fixed: positioning of elements while drag and drop in recording
2016-11-25: version 1.1.53 (horchi)
- change: Install systemd script only on change
2016-11-24: version 1.1.52 (rechner)
- added: search in recordings
- change: drag and drop in recordings
- fixed: moving recording
2016-11-24: version 1.1.51 (horchi)
- added: constabel test to lib/test tool
2016-11-24: version 1.1.50 (horchi)
- bugfix: fixed sql syntax error
2016-11-24: version 1.1.49 (horchi)
- added: recording by name service for webif requests
2016-11-24: version 1.1.48 (horchi)
- fixed: Fix rename of recordings for webif service
2016-11-21: version 1.1.47 (horchi)
- change: Added curl option for "CURLOPT_UNRESTRICTED_AUTH"
- fixed: URL in conflict mails
- change: Added more systemd watchdog notification
2016-11-19: version 1.1.46 (rechner)
- fixed: Fix app for ipad and old browser (let was not supported)
2016-11-19: version 1.1.45 (horchi)
- change: adjusted time format of timer conflict mails
2016-11-18: version 1.1.44 (rechner)
- fixed: Fix app for ipad and old browser (let was not supported)
- change: optimze html-code for conflict mails
2016-11-18: version 1.1.43 (horchi)
- change: new format of conflict mails
2016-11-12: version 1.1.42 (rechner)
- fixed: SQL for mysql 5.7 changed (ckone)
- fixed: simple Aprostoph replace with special Aprostoph, because sending of Timerkonflikt-Mails failed
- fixed: search for recordigs
2016-11-03: version 1.1.41 (horchi)
- added: started implementaion of message service for web
2016-11-03: version 1.1.40 (horchi)
- added: support of redirect on file download
2016-11-02: version 1.1.39 (horchi)
- bugfix: fixed parameter name (lastEpisodeFullRun)
2016-11-01: version 1.1.38 (rechner)
- changed: https://ssl.constabel-it.de/eplists.constabel.net to https://www.eplists.de
2016-11-01: version 1.1.37 (rechner)
- fixed: drag and drop not initialised
2016-11-01: version 1.1.36 (rechner)
- added search for recordigs
- rechanged: match-density withot gradiant
- fixed: bug while changed between different resolutions
2016-11-01: version 1.1.35 (horchi)
- bugfix: fixed epglv makefile
2016-10-31: version 1.1.34 (rechner)
- changed: uses gradient for match-density and show % as title
2016-10-31: version 1.1.32 (horchi)
- bugfix: Fixed timzone display for WEBIF
2016-10-30: version 1.1.31 (horchi)
- change: skipping epgsearch timer at timer check
2016-10-29: version 1.1.30 (horchi)
- change: added recording owner to event at web sercive protocol
2016-10-27: version 1.1.29 (horchi)
- added: notify vdr on timer modification
2016-10-26: version 1.1.28 (horchi)
- added: renaming recording on events data change (for pending timers)
2016-10-26: version 1.1.27 (horchi)
- changed: renamed vdruuid to owner for web protocol
2016-10-25: version 1.1.26 (rechner)
- added: show matching recording data of event detail
2016-10-25: version 1.1.25 (horchi)
- bugfix: fixed minor error message
2016-10-20: version 1.1.24 (horchi)
- bugfix: fixed (removed) string escape for sql bindings
2016-10-20: version 1.1.23 (horchi)
- bugfix: minor fix of log message
2016-10-20: version 1.1.22 (horchi)
- added: started implementaion of timer check on changed events (only log messages)
-> to be continues ;)
2016-10-20: version 1.1.21 (horchi)
- bugfix: minor fix
2016-10-20: version 1.1.20 (horchi)
- bugfix: fixed error handling of mysql udf epglv
2016-10-19: version 1.1.19 (horchi)
- added: match density to recording data of event detail service
2016-10-18: version 1.1.18 (horchi)
- added: recording data to event detail service
- change: improved epgd-dropall script
2016-10-16: version 1.1.17 (horchi)
- change: improved db reconnect handling of searchtimer code
2016-10-11: version 1.1.16 (rechner)
- fix: detailview on devices > 900
- added: parameter for defaultsort in recordings
2016-09-08: version 1.1.15 (rechner)
- fix: detailview on devices > 768 and < 1139
2016-08-30: version 1.1.14 (horchi)
- bugfix: fixed minor webif bug according safari browser (rechner)
2016-08-29: version 1.1.13 (horchi)
- change: Update of epgd-tool by 3po
2016-08-26: version 1.1.12 (horchi)
- added: support of long eventids for tvsp (merged dev into master)
2016-07-25: version 1.1.11 (rechner)
- bugfix: if wrong channelsort from backend, channel will also shown right
2016-07-21: version 1.1.10 (rechner)
- fixed: scrping must also using int64
2016-07-20: version 1.1.9 (rechner)
- fixed: imageid must also using int64
2016-07-19: version 1.1.8 (rechner)
- rechange: increased event id to unsigned int64 even for searchtimer
- change: increased event id to unsigned int64 even for lib/pytst
2016-07-16: version 1.1.7 (rechner)
- change: increased event id to unsigned int64 even for searchtimer
2016-07-15: version 1.1.6 (horchi)
- change: increased event id to unsigned int64 even for epghttps plugin
2016-07-15: version 1.1.5 (horchi)
- bugfix: fixed 'optimized Makefiles' (by Alexander Grothe)
- change: minor code review
2016-07-13: version 1.1.4 (horchi)
- change: increased event id to unsigned int64 for epgdata plugin
2016-07-13: version 1.1.3 (horchi)
- change: started increase of event id to unsigned int64
2016-07-08: version 1.1.2 (horchi)
- change: optimized Makefiles (by Alexander Grothe)
2016-07-06: version 1.1.1 (horchi)
- change: Update of epgd-tool by 3po
2016-07-04: version 1.1.0 (horchi)
- change: Merged http branch into master
2016-06-25: version 1.0.106 (rechner)
- fixed: avoid errormessage, if no channel has no data
2016-06-19: version 1.0.104 (rechner)
- added: tv-switch channel icon to channels
- fixed: edit searchtimer from timerlist
2016-06-12: version 1.0.103 (rechner)
- changed: logs an erroe, if defaultVDR is invalid or no vdr found
2016-06-12: version 1.0.102 (rechner)
- fixed: failed open detailview
- added Make.config to ignore list
2016-06-03: version 1.0.101 (horchi)
- change: Changed Makefile for epglv
2016-06-02: version 1.0.100 (rechner)
- fix: storing of namingmode
2016-06-01: version 1.0.99 (horchi)
- change: system notification thread more silent
2016-06-01: version 1.0.98 (horchi)
- change: updated README
- change: improved init system integration
- register before tables are initialized
- implemented notrification timeout for alter tables (alter can take a long time)
2016-06-01: version 1.0.97 (horchi)
- added: eventsview-uti.sql
2016-06-01: version 1.0.96 (horchi)
- added: install of init scripts with 'make install' (for upstart and systemd)
the init system can set in Make.config
2016-05-31: version 1.0.95 (horchi)
- change: update of views
2016-05-31: version 1.0.94 (horchi)
- change: increased file topic to 1000 and the max image size to 512k
2016-05-31: version 1.0.93 (horchi)
- change: log level für 'Check rights of' set to 2
- change: adjusted path in systemd start files
2016-05-31: version 1.0.92 (horchi)
- bugfix: set visible flag on initial create of channelmap
2016-05-26: version 1.0.91 (rechner)
- fix: deleting of multiple timers
2016-05-26: version 1.0.90 (rechner)
- fix: deleting of timers
2016-05-25: version 1.0.89 (rechner)
- change: deleting and selecting from table rows are now only on visible rows
- added: shows count of deleting entries in confirm dialog
- fixed: 'visible' flag for channels only for flagvalue 1
- fixed: wrong timerdialog on record in eventdetail
2016-05-25: version 1.0.88 (horchi)
- bugfix: Fixed scrap for recordings - don't lookup events data for 'old' recordings
- change: Chenged order of recording scrap - fist honor the user scrap info
2016-05-25: version 1.0.87 (horchi)
- bugfix: Fixed initial 'visible' flag for new sources of existing channel
2016-05-24: version 1.0.86 (rechner)
- added: detail dialog for donetimer
- bugfix: some fixes
2016-05-24: version 1.0.85 (horchi)
- change: minor change in thread context
2016-05-24: version 1.0.84 (horchi)
- added: data/donetimer for webif request
2016-05-23: version 1.0.83 (rechner)
- bugfix: could not open eventdetail after view settings
2016-05-23: version 1.0.82 (horchi)
- change: modified repeaing timer check statement to handle '' values like null values
2016-05-23: version 1.0.81 (horchi)
- change: let unset EPISODE* fields of timersdone 'null'
2016-05-23: version 1.0.80 (horchi)
- change: adjusted log levels
2016-05-21: version 1.0.79 (rechner)
- bugfix: css for thumb, if image is 4:30
- changed: tip to Goldtip in searchdialog
- added: =! for quicktime, which should not be hihlighted in magazine view
2016-05-21: version 1.0.78 (rechner)
- bugfix: now could not open after first call
- removed: parameter ratings
- bugfix: timerdone duration was wrong calculated
2016-05-20: version 1.0.77 (horchi)
- change: update of epgdate xslt
2016-05-20: version 1.0.76 (horchi)
- change: improved views for new rating info (ckone)
2016-05-20: version 1.0.75 (horchi)
- change: fixed autotimer default name
2016-05-20: version 1.0.74 (horchi)
- change: speed up web done-timers requests
2016-05-20: version 1.0.73 (horchi)
- change: speed up web recording requests
2016-05-20: version 1.0.72 (horchi)
- added: new column for textual rating and commentator
- change: removed unused info column
- change: updated merge procedure, views and xslt for new columns (ckone)
2016-05-19: version 1.0.71 (rechner)
- bugfix: some fixes
- added: commentator and txtrating to eventdetail
- added: magazine - quicktimes colored
2016-05-18: version 1.0.70 (rechner)
- added: tipp to data/events and shows in now and magazine
2016-05-18: version 1.0.69 (horchi)
- change: improved stop of system notification thread
2016-05-18: version 1.0.68 (horchi)
- added: new timer trigger field _starttime for internal usage
2016-05-18: version 1.0.67 (horchi)
- added: auto wakeup VDR for not assumed timers within two days
2016-05-18: version 1.0.66 (horchi)
- change: updated sql scripts
- change: updated merge procedure (ckone)
- change: table row fromat (at table create) now DYNAMIC
2016-05-17: version 1.0.65 (rechner)
- added: tipp to data/event and shows in eventdetail
2016-05-15: version 1.0.64 (rechner)
- removed: tipp from data/event, data/evetns, data/search
- added: parameter ratings
2016-05-15: version 1.0.63 (rechner)
- added: numrating on data/event, data/evetns, data/search
- removed: tipp/tagestipp/toptipp from webview, uses numrating instead
2016-05-15: version 1.0.62 (rechner)
- added: WOL on VDR menu item
- changed: topmenu has now submenus instead of tabs
2016-05-15: version 1.0.61 (horchi)
- added: index for timers table
2016-05-13: version 1.0.60 (horchi)
- added: wakeup vdr (WOL) for webif requests
2016-05-11: version 1.0.59 (horchi)
- bugfix: Fixed event insert state handling for epgdata plugin
- change: Ported 'groub by' clause to mysql 5.7
- change: minor changes
2016-05-10: version 1.0.58 (horchi)
- added: optional config option 'seriesMail' for constabel login
2016-05-10: version 1.0.57 (horchi)
- change: ported some SQL statements für mysql 5.7
2016-05-09: version 1.0.56 (horchi)
- fixed: added sql string-escape for python return
2016-05-06: version 1.0.55 (rechner)
- fixed: magazine view for iphone
2016-05-04: version 1.0.54 (horchi)
- change: update of eventsview-ck.sql
- change: increased field fileref to ASCII 100
2016-05-03: version 1.0.53 (rechner)
- bugfix: error on sort or delete record
2016-05-03: version 1.0.52 (rechner)
- bugfix: doubled login call removed
- added: show count of recordings in List
2016-05-03: version 1.0.51 (horchi)
- bugfix: fixed replay recording via webif
2016-05-03: version 1.0.50 (horchi)
- added: curl option for 'gzip'
2016-05-02: version 1.0.49 (horchi)
- change: removed 'groub by' clause of TCC due to compatibility to new mysql versions
2016-04-29: version 1.0.48 (rechner)
- fixed: pages_now qucksesarch position
2016-04-28: version 1.0.47 (rechner)
- fixed: calendar skiped a day
2016-04-27: version 1.0.46 (rechner)
- added: global error handling with log
2016-04-27: version 1.0.45 (horchi)
- change: new files for fedora (thx to marco)
2016-04-26: version 1.0.44 (rechner)
- fixed: calendar starts had ignored start of week
- added: EpgViewWeb in epgd.config configurable
2016-04-25: version 1.0.43 (rechner)
- changed: calendar starts now with minEventDay
2016-04-24: version 1.0.42 (rechner)
- added: now it is possible to override css via custom.css
- changed: added owner to data/replayrecording
2016-04-24: version 1.0.41 (rechner)
- fixed: play record on VDR
2016-04-24: version 1.0.40 (horchi)
- change: modified log messages for systemd integration (thx to seahawk1986)
2016-04-23: version 1.0.39 (rechner)
- added: quicklinks added to now-View
- changed: eventdetail: if we have scrapper series info, constabel will be shown
2016-04-23: version 1.0.38 (rechner)
- fixed: timerdialog window centered in magazine view
- fixed: encode & in title for canstable links
- fixed: typo in bugfix: removed timer with state '-' from web request
2016-04-22: version 1.0.37 (horchi)
- bugfix: removed timer with state '-' from web request
2016-04-22: version 1.0.36 (horchi)
- bugfix: fixed build of pytst
2016-04-21: version 1.0.35 (rechner)
- fixed: error on save timer if list container not initialist
- added: if error in loader-func, loader also closed
2016-04-20: version 1.0.34 (rechner)
- fixed: some typos (thanks to Lars)
2016-04-20: version 1.0.33 (rechner)
- fixed: magazine: use difference of startimes for heigt calc instead of duration
2016-04-20: version 1.0.32 (horchi)
- bugfix: fixed done check with null values
2016-04-20: version 1.0.31 (horchi)
- change: episodename search now case insensitiv
- bugfix: fixed range search
2016-04-20: version 1.0.30 (horchi)
- bugfix: fixed field format of AUTOTIMERNAME
2016-04-20: version 1.0.29 (horchi)
- bugfix: fixed redundant recordings
2016-04-19: version 1.0.28 (rechner)
- added: Version as parameter on epgd.js, epgd.css and common.js to prevent cached
- added: show thump on check count hits for save searchtimer
- added: help extended
2016-04-19: version 1.0.27 (horchi)
- change: fix of makefile to new systemd version (thx to seahawk1986)
2016-04-19: version 1.0.26 (horchi)
- bugfix: fixed field name
2016-04-19: version 1.0.25 (horchi)
- change: ported makefile to new systemd version (thx to seahawk1986)
2016-04-18: version 1.0.24 (rechner)
- fixed: data/search delete timer name on test and search
- changed: if page changed, while recordings loading, page will not changed back to recordings
- changed: searchdialog - delete and copy button added
2016-04-18: version 1.0.23 (horchi)
- added: update of autotimer name (in timers and timersdone) on change
- added: timer-name suport for data/search
2016-04-18: version 1.0.22 (horchi)
- added: type parameter to data/searchtimers query
- added: curl wrapper enhancement for request headers (thx to chriszero)
- added: autotimername to table timersdone
2016-04-18: version 1.0.21 (horchi)
- bugfix: fixed fedora files
2016-04-17: version 1.0.20 (rechner)
- added: if button drown is pressed in searchtimerlist, the searchresult will be shown like timer from searchtimer
2016-04-17: version 1.0.19 (horchi)
- change: new files for fedora (thx to marco)
2016-04-16: version 1.0.18 (rechner)
- added: fixed start/max critiria for data/search
- fixed: searchdialog not closed on save
- added: maxListEntries as Parameter for data/search
2016-04-16: version 1.0.17 (horchi)
- added: fixed start/max critiria for data/search
2016-04-15: version 1.0.16 (rechner)
- added: todos now shown in help/about
- added: copy button in Searchtimerdialog
- added: ask on searchtimerdialog, if result > 50
- added: quicktime < current time in calendar -1, we changed also the day
- changed: timerdialogs: name moved to top
- fixed: on change from timerdialog to searchtimerdialog, search-in-title is checked
- fixed: repeat on eventdetail crashed
2016-04-15: version 1.0.15 (horchi)
- added: start to data/search for paging
2016-04-15: version 1.0.14 (horchi)
- added: autotimername to table timers
- added: limit for data/search