diff options
-rw-r--r-- | Makefile.config | 2 | ||||
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | lib/Xconfig/monitor.pm | 2 |
3 files changed, 6 insertions, 1 deletions
diff --git a/Makefile.config b/Makefile.config index 216079d..c94c2a7 100644 --- a/Makefile.config +++ b/Makefile.config @@ -1,3 +1,3 @@ NAME = drakx-kbd-mouse-x11 -VERSION = 0.50 +VERSION = 0.51 BRANCH = trunk @@ -1,5 +1,8 @@ +Version 0.51 - 19 March 2008 + - XFdrake: o use 24bpp on savage (#38750) + o do use EDID HorizSync/VertRefresh on 16/10 (regression introduced in 0.50) - keyboarddrake: o default romanian keyboard is qwerty (cf #38450) o "ro" really is "ro(std_cedilla)" diff --git a/lib/Xconfig/monitor.pm b/lib/Xconfig/monitor.pm index a99439d..36222af 100644 --- a/lib/Xconfig/monitor.pm +++ b/lib/Xconfig/monitor.pm @@ -158,6 +158,8 @@ that is beyond the capabilities of your monitor: you may damage your monitor. sub _configure_automatic_LCD { my ($monitor) = @_; + $monitor->{HorizSync} && $monitor->{VertRefresh} and return; + $monitor->{preferred_resolution} && Xconfig::xfree::resolution2ratio($monitor->{preferred_resolution}) eq '16/10' or return; |