Update of /cvsroot/ddccontrol/ddccontrol-db/db
In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv20839
Modified Files:
options.xml options.xml.h options.xml.in
Log Message:
Add support for Sony SDM-S205K, and generic profile for Sony LCD monitors (thanks to lardhan)
Index: options.xml.h
===================================================================
RCS file: /cvsroot/ddccontrol/ddccontrol-db/db/options.xml.h,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- options.xml.h 26 Feb 2006 14:40:37 -0000 1.12
+++ options.xml.h 27 Jul 2006 21:49:57 -0000 1.13
@@ -16,6 +16,12 @@
printf(_("Two"));
printf(_("Three"));
printf(_("Auto Level (Needs a blank line to work)"));
+printf(_("Backlight"));
+printf(_("ECO Mode"));
+printf(_("High"));
+printf(_("Middle"));
+printf(_("Low"));
+printf(_("Auto"));
printf(_("Gamma"));
printf(_("Gamma"));
printf(_("-0.5"));
@@ -27,6 +33,7 @@
printf(_("+0.5"));
printf(_("+0.7"));
printf(_("+0.9"));
+printf(_("Gamma"));
printf(_("Color maximum level"));
printf(_("Red maximum level"));
printf(_("Green maximum level"));
Index: options.xml
===================================================================
RCS file: /cvsroot/ddccontrol/ddccontrol-db/db/options.xml,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -d -r1.31 -r1.32
--- options.xml 8 Mar 2006 20:52:15 -0000 1.31
+++ options.xml 27 Jul 2006 21:49:57 -0000 1.32
@@ -20,6 +20,13 @@
<value id="three" name="Three" value="2"/>
</control>
<control id="autolevel" type="command" name="Auto Level (Needs a blank line to work)"/>
+ <control id="backlight" type="value" name="Backlight" address="0x13"/>
+ <control id="ecomode" type="list" name="ECO Mode" address="0xDC">
+ <value id="high" name="High"/>
+ <value id="middle" name="Middle"/>
+ <value id="low" name="Low"/>
+ <value id="auto" name="Auto"/>
+ </control>
</subgroup>
<subgroup name="Gamma" >
<control id="gamma" type="list" name="Gamma" address="0xF2" >
@@ -33,6 +40,7 @@
<value id="+0.7" name="+0.7"/>
<value id="+0.9" name="+0.9"/>
</control>
+ <control id="gammacont" type="value" name="Gamma" address="0x72"/>
</subgroup>
<subgroup name="Color maximum level">
<control id="red" type="value" name="Red maximum level" address="0x16"/>
Index: options.xml.in
===================================================================
RCS file: /cvsroot/ddccontrol/ddccontrol-db/db/options.xml.in,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- options.xml.in 26 Feb 2006 14:40:37 -0000 1.15
+++ options.xml.in 27 Jul 2006 21:49:57 -0000 1.16
@@ -19,6 +19,13 @@
<value id="three" name="Three" value="2"/>
</control>
<control id="autolevel" type="command" name="Auto Level (Needs a blank line to work)"/>
+ <control id="backlight" type="value" name="Backlight" address="0x13"/>
+ <control id="ecomode" type="list" name="ECO Mode" address="0xDC">
+ <value id="high" name="High"/>
+ <value id="middle" name="Middle"/>
+ <value id="low" name="Low"/>
+ <value id="auto" name="Auto"/>
+ </control>
</subgroup>
<subgroup name="Gamma" >
<control id="gamma" type="list" name="Gamma" address="0xF2" >
@@ -32,6 +39,7 @@
<value id="+0.7" name="+0.7"/>
<value id="+0.9" name="+0.9"/>
</control>
+ <control id="gammacont" type="value" name="Gamma" address="0x72"/>
</subgroup>
<subgroup name="Color maximum level">
<control id="red" type="value" name="Red maximum level" address="0x16"/>
|