comparison debian/changelog @ 2947:edb4307ac7ce

Update copyright date, readme, license and changelog for upcoming release.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Mon, 02 Jan 2023 13:49:59 +0000
parents 904c3d1d0ec4
children 0577a97fe36d
comparison
equal deleted inserted replaced
2946:11fd5cf0ee99 2947:edb4307ac7ce
1 dwindows (3.3-1) unstable; urgency=low
2
3 * Fixed an API inconsistency in dw_notebook_page_destroy/set().
4 The page ID had been unsigned int when it should be unsigned long.
5 On some platforms apps compiled for versions prior to 3.3 may
6 malfunction when calling these API calls, so recompile with 3.3.
7 * Added tree widget/control support for iOS and Android.
8 * Removed the lib and dll directories previously used on Windows and OS/2.
9 * Added DW_FEATURE_CONTAINER_MODE on Mobile platforms: iOS and Android.
10 DW_CONTAINER_MODE_DEFAULT: Minimal container; icon and text only.
11 DW_CONTAINER_MODE_EXTRA: Extra columns displayed on a second line.
12 DW_CONTAINER_MODE_MULTI: A separate clickable line for each column.
13 * Added return values to several functions previously returning void.
14 Previous code should just be able to ignore the new return values.
15 Currently affected: dw_window_set_bitmap(_from_data)
16 * Added C++ language bindings in dw.hpp and an example C++ test
17 application in the form of dwtestoo.cpp, similar to godwindows.
18 * Added variadic versions of dw_debug() and dw_messagebox().
19 This is how the standard library does it so we can call the new
20 va_list versions from C++: dw_vdebug() and dw_vmessagebox().
21
22 -- Brian Smith <brian@dbsoft.org> Fri, 6 Jan 2023 08:00:00 +1000
23
1 dwindows (3.2-1) unstable; urgency=low 24 dwindows (3.2-1) unstable; urgency=low
2 25
3 * Added support for initial beta support for GTK 4. --with-gtk4 is now available. 26 * Added support for initial beta support for GTK 4. --with-gtk4 is now available.
4 * Added support for Wayland on both GTK 3 and GTK 4. 27 * Added support for Wayland on both GTK 3 and GTK 4.
5 * Added DW_FEATURE_WINDOW_PLACEMENT, DW_FEATURE_TREE and DW_FEATURE_TASKBAR. 28 * Added DW_FEATURE_WINDOW_PLACEMENT, DW_FEATURE_TREE and DW_FEATURE_TASKBAR.
19 via GLib's G_APP_INFO_CREATE_NEEDS_TERMINAL instead of launching an xterm. 42 via GLib's G_APP_INFO_CREATE_NEEDS_TERMINAL instead of launching an xterm.
20 * Fixed GTK warnings on GTK3 caused by using Pango style font syntax. 43 * Fixed GTK warnings on GTK3 caused by using Pango style font syntax.
21 * Fixed GTK3 leaks when setting fonts or colors on a widget repeatedly. 44 * Fixed GTK3 leaks when setting fonts or colors on a widget repeatedly.
22 * Fixed a bug in dw_listbox_set_text() on GTK3. 45 * Fixed a bug in dw_listbox_set_text() on GTK3.
23 46
24 -- Brian Smith <brian@dbsoft.org> Wed, 6 Jan 2022 08:00:00 +1000 47 -- Brian Smith <brian@dbsoft.org> Thu, 6 Jan 2022 08:00:00 +1000
25 48
26 dwindows (3.1-1) unstable; urgency=low 49 dwindows (3.1-1) unstable; urgency=low
27 50
28 * Added notification APIs: dw_notification_new() dw_notification_send() dw_app_id_set() 51 * Added notification APIs: dw_notification_new() dw_notification_send() dw_app_id_set()
29 Unix requires a desktop file link with the application ID used in dw_app_id_set(). 52 Unix requires a desktop file link with the application ID used in dw_app_id_set().