From: Nicolas B. <nbo...@us...> - 2007-06-21 10:02:52
|
Update of /cvsroot/ddccontrol/ddccontrol-db/db In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv15766 Modified Files: options.xml options.xml.h options.xml.in Log Message: Add support for Samsung SyncMaster 225BW. SAM027D.xml was for Samsung SyncMaster 206BW and not for Samsung SyncMaster 226BW. Thanks to Oleg Artamonov. Index: options.xml.h =================================================================== RCS file: /cvsroot/ddccontrol/ddccontrol-db/db/options.xml.h,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- options.xml.h 14 Oct 2006 06:17:20 -0000 1.18 +++ options.xml.h 21 Jun 2007 10:02:49 -0000 1.19 @@ -11,6 +11,7 @@ printf(_("Sport")); printf(_("Entertain")); printf(_("Custom")); +printf(_("Dynamic Contrast")); printf(_("Super Bright Mode")); printf(_("One")); printf(_("Two")); @@ -22,6 +23,11 @@ printf(_("Middle")); printf(_("Low")); printf(_("Auto")); +printf(_("f-Engine")); +printf(_("Normal")); +printf(_("User")); +printf(_("Text")); +printf(_("Movie")); printf(_("Gamma")); printf(_("Gamma")); printf(_("-0.5")); Index: options.xml =================================================================== RCS file: /cvsroot/ddccontrol/ddccontrol-db/db/options.xml,v retrieving revision 1.39 retrieving revision 1.40 diff -u -d -r1.39 -r1.40 --- options.xml 14 Oct 2006 06:36:02 -0000 1.39 +++ options.xml 21 Jun 2007 10:02:49 -0000 1.40 @@ -13,6 +13,7 @@ <value id="sport" name="Sport"/> <value id="entertain" name="Entertain"/> <value id="custom" name="Custom"/> + <value id="dynamic" name="Dynamic Contrast" /> </control> <control id="superbright" type="list" name="Super Bright Mode" address="0xF9"> <value id="one" name="One" value="0"/> @@ -27,6 +28,12 @@ <value id="low" name="Low"/> <value id="auto" name="Auto"/> </control> + <control id="fengine" type="list" name="f-Engine"> + <value id="normal" name="Normal" /> + <value id="user" name="User" /> + <value id="text" name="Text" /> + <value id="movie" name="Movie" /> + </control> </subgroup> <subgroup name="Gamma" > <control id="gamma" type="list" name="Gamma" address="0xF2" > Index: options.xml.in =================================================================== RCS file: /cvsroot/ddccontrol/ddccontrol-db/db/options.xml.in,v retrieving revision 1.21 retrieving revision 1.22 diff -u -d -r1.21 -r1.22 --- options.xml.in 14 Oct 2006 06:17:20 -0000 1.21 +++ options.xml.in 21 Jun 2007 10:02:49 -0000 1.22 @@ -12,6 +12,7 @@ <value id="sport" name="Sport"/> <value id="entertain" name="Entertain"/> <value id="custom" name="Custom"/> + <value id="dynamic" name="Dynamic Contrast" /> </control> <control id="superbright" type="list" name="Super Bright Mode" address="0xF9"> <value id="one" name="One" value="0"/> @@ -26,6 +27,12 @@ <value id="low" name="Low"/> <value id="auto" name="Auto"/> </control> + <control id="fengine" type="list" name="f-Engine"> + <value id="normal" name="Normal" /> + <value id="user" name="User" /> + <value id="text" name="Text" /> + <value id="movie" name="Movie" /> + </control> </subgroup> <subgroup name="Gamma" > <control id="gamma" type="list" name="Gamma" address="0xF2" > |