From: Nicolas B. <nbo...@us...> - 2006-10-11 03:46:17
|
Update of /cvsroot/ddccontrol/ddccontrol-db/db In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv23652 Modified Files: options.xml options.xml.h options.xml.in Log Message: Improve LG LCD entry (Thanks to Evgeny Stambulchik). Index: options.xml.h =================================================================== RCS file: /cvsroot/ddccontrol/ddccontrol-db/db/options.xml.h,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- options.xml.h 30 Jul 2006 16:57:00 -0000 1.14 +++ options.xml.h 11 Oct 2006 03:46:09 -0000 1.15 @@ -201,4 +201,7 @@ printf(_("Power control")); printf(_("Off")); printf(_("On")); +printf(_("Power LED")); +printf(_("Off")); +printf(_("On")); } Index: options.xml =================================================================== RCS file: /cvsroot/ddccontrol/ddccontrol-db/db/options.xml,v retrieving revision 1.34 retrieving revision 1.35 diff -u -d -r1.34 -r1.35 --- options.xml 30 Jul 2006 17:27:56 -0000 1.34 +++ options.xml 11 Oct 2006 03:46:09 -0000 1.35 @@ -253,6 +253,12 @@ <value id="off" name="Off"/> <value id="on" name="On"/> </control> + <!-- a switch to enable/disable the power led only (no other functionality, + it seems) --> + <control id="powerled" type="list" name="Power LED" address="0xfd"> + <value id="off" name="Off"/> + <value id="on" name="On"/> + </control> </subgroup> </group> </options> Index: options.xml.in =================================================================== RCS file: /cvsroot/ddccontrol/ddccontrol-db/db/options.xml.in,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- options.xml.in 30 Jul 2006 16:57:00 -0000 1.17 +++ options.xml.in 11 Oct 2006 03:46:09 -0000 1.18 @@ -252,6 +252,12 @@ <value id="off" name="Off"/> <value id="on" name="On"/> </control> + <!-- a switch to enable/disable the power led only (no other functionality, + it seems) --> + <control id="powerled" type="list" name="Power LED" address="0xfd"> + <value id="off" name="Off"/> + <value id="on" name="On"/> + </control> </subgroup> </group> </options> |