changeset 2216:62e5cc4bc347

Updated readme and license in preparation for an early 2021 release. Also removed some debug code accidentally left in the last commit.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Mon, 14 Dec 2020 23:03:47 +0000
parents 69b0d157bc9f
children 6cdb907755cb
files license.txt readme.txt win/dw.c
diffstat 3 files changed, 7 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/license.txt	Mon Dec 14 22:43:24 2020 +0000
+++ b/license.txt	Mon Dec 14 23:03:47 2020 +0000
@@ -1,6 +1,6 @@
 
-Copyright (c) 2000-2012, Brian Smith <brian@dbsoft.org>
-Copyright (c) 2003-2011, Mark Hessling <mark@rexx.org>
+Copyright (c) 2000-2021, Brian Smith <brian@dbsoft.org>
+Copyright (c) 2003-2020, Mark Hessling <mark@rexx.org>
 Copyright (c) 2007, Alex Taylor
 Copyright (c) 2002, Nickolay V. Shmyrev <shmyrev@yandex.ru>
 Copyright (c) 2000, Achim Hasenmueller <achimha@innotek.de>
--- a/readme.txt	Mon Dec 14 22:43:24 2020 +0000
+++ b/readme.txt	Mon Dec 14 23:03:47 2020 +0000
@@ -34,7 +34,7 @@
 
 Changes from version 3.0:
 Added support for MacOS versions through Big Sur 11.0, 
-    Windows versions through 10 build 2004.
+    Windows versions through 10 build 20H2.
 Fixed handle leak on OS/2 when built with (Open)Watcom.
 Added dark mode support on MacOS Mojave 10.14 and later. 
 Added experimental dark mode support on Windows 10 build 1809 (disabled by default).
@@ -66,6 +66,10 @@
 Added support for GResource embedded images on GTK2/3 with GLib 2.32. The old 
     resouce system is still available via configure --with-deprecated if needed.
 Added support for NSView based Tree, Container and Listbox widgets on Mac 10.7+.
+Removed DW_FCF_COMPOSITED support from Windows 8 and higher. 
+    This flag will still function to create a glass effect on Windows Vista and 7.
+    The transparent key feature used to create it causes issues on 8 and 10, plus
+    the glass effect, the main reason for the flag was removed in 8.
 Fixed many small bugs, too numerous to list here.
 
 Dynamic Windows Documentation is available at:
--- a/win/dw.c	Mon Dec 14 22:43:24 2020 +0000
+++ b/win/dw.c	Mon Dec 14 23:03:47 2020 +0000
@@ -4591,8 +4591,6 @@
    /* We need the version to check capability like up-down controls */
    _dwVersion = GetVersion();
    _dwComctlVer = GetDllVersion(TEXT("comctl32.dll"));
-   dw_debug("PACKVERSION(%d,%d) %x PACKVERSION(6,1) %x PACKVERSION(6,0) %x PACKVERSION(6,2) %x PACKVERSION(10,0) %x PACKVERSION(5,1) %x\n",
-            LOBYTE(LOWORD(_dwVersion)), HIBYTE(LOWORD(_dwVersion)), PACKVERSION(LOBYTE(LOWORD(_dwVersion)),HIBYTE(LOWORD(_dwVersion))), PACKVERSION(6,1), PACKVERSION(6,0), PACKVERSION(6,3), PACKVERSION(10,0), PACKVERSION(5,1));
 
    /* We need to initialize dark mode, and thus the aero/theme subsystems before registering our window classes */
    if((huxtheme = LoadLibrary(TEXT("uxtheme"))))