blob: 22575772500dafe8d23de8ca036fc564601e33ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
/*
* ----------------------------------------------
* seduatmo Plugin - Revision History
* ----------------------------------------------
*
* (c) 2012-2018 Jörg Wendel
*
*/
#define _VERSION "0.0.10"
#define VERSION_DATE "21.08.2020"
#ifdef GIT_REV
# define VERSION _VERSION "-GIT" GIT_REV
#else
# define VERSION _VERSION
#endif
/*
* ------------------------------------
2020-08-21: Version 0.0.10
- added: Auto poweroff by TV state (option -t <ip|dns>)
2019-12-20: Version 0.0.9
Added config RGB order for each LED
2019-12-20: Version 0.0.8
Added support of softhdvaapi and softhddrm plugin
2018-10-14: Version 0.0.7
- added: Plugin service interface to change mode
2018-10-04: Version 0.0.6
Added support of softhdcuvid plugin
2018-09-24: Version 0.0.5
Auto device detection configurable
2018-02-29: Version 0.0.4
Improved recover handling
2015-10-11: Version 0.0.3
Fixed menu handling
2012-11-26: Version 0.0.2
2012-11-07: Version 0.0.1
- Initial revision.
* ------------------------------------
*/
|