comparison debian/changelog @ 1366:edad104e7714

Updated the changelogs and my email address in the debian packaging.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Fri, 18 Nov 2011 20:27:41 +0000
parents 6ad811834512
children f0a4731bc40e
comparison
equal deleted inserted replaced
1365:c3644b818975 1366:edad104e7714
1 dwindows (2.2-1) unstable; urgency=low
2
3 * Added printing support via dw_print_new, dw_print_run and dw_print_cancel.
4 * Added pixmap font override support. In prior versions when drawing
5 text to pixmaps the font set on the associated window handle is used.
6 dw_pixmap_set_font() can now override that font setting, and now
7 pixmaps without associated windows are supported and used in printing.
8 * Added dw_pixmap_stretch_bitblt() which allows for scaling during bitblt.
9 This function is necessary largely for very hi-res printer contexts.
10 * Added dw_mutex_trylock() function to try to obtain a mutex without blocking.
11 * Added DW_TIMEOUT_INFINITE which can now be used with dw_event_wait() in
12 addition to dw_named_event_wait(), to block until the event is posted.
13 * Added DW_PERCENT_INDETERMINATE which can be passed to dw_percent_set_pos().
14 This should work on all platforms except old versions of Windows.
15 * Added the subversion revision number as the third Dynamic Windows version
16 number when building from a subversion source tree.
17 * Added dw_container_set_row_data() and dw_container_change_row_data() macros
18 which just call dw_container_set/change_row_title() but with (void *).
19 * Added dw_container_set_stripe() to set alternating row colors.
20 Currently Mac, Win and GTK are supported.
21 * Added taskbar support on the Mac, GTK (Gnome) and OS/2 (e/XCenter+Systray).
22 * Added PNG/JPG/GIF/TIFF support on Windows via GDI+.
23 * Added support for GdkPixbuf inline images in GTK 2 and 3.
24 * Added dw_draw_arc() function for drawing arcs, ellipses and circles.
25 * Added DW_DRAW_DEFAULT, DW_DRAW_FILL and DW_DRAW_FULL flags which can be passed
26 to dw_draw_arc(), dw_draw_rect() and dw_draw_polygon(). The fill parameter
27 in the latter two has been replaced with flags where DW_DRAW_FILL is the
28 same as TRUE so code using the old scheme should still work unchanged.
29 * Added DW_MENU_AUTO and DW_MENU_POPUP constants for autogenerating menu IDs.
30 * Added dw_debug() function for sending debug messages to the console.
31 * Added path and/or filename support to dw_file_browse() on OS/2, Windows,
32 GTK2, GTK3 and Mac 10.6 or higher.
33 * Added custom calendar widget for OS/2, leaving only the HTML widget missing.
34 * Improved container optimization on Mac, header width now taken into account.
35 * Fixes for incorrect return codes from the dw_event_* functions on Windows.
36 * Fixes for incorrect behavior on key_press callbacks on Mac and Windows.
37 * Fixes for MDI support in GTK3.
38 * Fixes for problems with multiple sliders/percent widgets in a box on OS/2.
39 * Fixes for lots of GTK3 layout and window positioning issues...
40 although minimum size issues are still present.
41
42 -- Brian Smith <brian@dbsoft.org> Sun, 20 Nov 2011 08:00:00 +1000
43
44 dwindows (2.1-1) unstable; urgency=low
45
46 * Added support for MacOS 10.7 Lion, version 2.0 had some issues.
47 * Changed the font point size on Windows to be system consistent.
48 Applications setting Windows fonts may need to be adjusted
49 after upgrading to version 2.1. This eliminates an old
50 workaround, but causes old fonts to potentially be wrong.
51 * Fixed issues with the tree widget on Mac not being able to add
52 nodes at the same level with the same name.
53 * Added dw_font_set_default() to set the default text widget font.
54 * Added dw_font_choose() to display a dialog to pick a font.
55 * Added dw_box_pack_at_index() like the other dw_box_pack_*()
56 functions except packing at arbitrary locations is possible.
57 * Added DW_INT_TO_POINTER/DW_POINTER_TO_INT/etc macros.
58 * Fixed gcc warnings on 64bit systems and others.
59 * Fixes for loading images from files on Windows and GTK3.
60
61 -- Brian Smith <brian@dbsoft.org> Sat, 30 Jul 2011 08:00:00 +1000
62
1 dwindows (2.0-1) unstable; urgency=low 63 dwindows (2.0-1) unstable; urgency=low
2 64
3 * Added support for MacOS 10.5 and higher Intel and PPC via Cocoa. 65 * Added support for MacOS 10.5 and higher Intel and PPC via Cocoa.
4 * Added initial (unstable) support for GTK version 3. 66 * Added initial (unstable) support for GTK version 3.
5 * Added support for Windows themes on XP and higher. 67 * Added support for Windows themes on XP and higher.