Update of /cvsroot/perl-win32-gui/Win32-GUI/Win32-GUI-ReleaseNotes
In directory
sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18276/Win32-GUI-ReleaseNotes
Modified Files:
RN_1_06.pod
Log Message:
Bring releasenotes up to date
Index: RN_1_06.pod
===================================================================
RCS file: /cvsroot/perl-win32-gui/Win32-GUI/Win32-GUI-ReleaseNotes/RN_1_06.pod,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** RN_1_06.pod 20 Jan 2007 19:45:45 -0000 1.2
--- RN_1_06.pod 16 Jul 2007 19:36:59 -0000 1.3
***************
*** 13,22 ****
full detail.
! This release is a XXX release addressing the issues
! below.
=head2 New Features
! There are no new features in this release.
=head2 Bug Fixes
--- 13,54 ----
full detail.
! This release is a primarily a bug-fix release addressing the issues
! below. There are a small number of new features.
=head2 New Features
! =over
!
! =item More constants
!
! Win32::GUI::Constants now has over 2000 constants. Please keep
! reporting any that you need that are missing.
!
! =item Win32::GUI::DC::DrawFrameControl can DFCS_ADJUSTRECT
!
! DrawFrameControl() will now adjust it's input parameters
! if the DFCS_ADJUSTRECT flag is set.
!
! =item Dialog navigation for MDI Windows
!
! Salvadore Oritz submitted a patch to allow 'TAB' navigation
! between controls of an MDI child window. The '-dialogui' is
! now functional on MDI child windows.
!
! =item Confusion with GetParent() and Treeview windows
!
! The GetParent() method usually gets the parent window, but for
! the Treeview class it gets the parent node:
!
! $parent_node = $tree_view->GetParent($node);
!
! This made it difficult to get the parent window. Now, if the
! GetParent() method is called without an arguements:
!
! $parent_window = $tree_view->GetParent();
!
! Then it will give you the parent window.
!
! =back
=head2 Bug Fixes
***************
*** 26,31 ****
=item Baloon Tooltip info and warning icons swapped
! Fix inverted info and warning icon for balloon
! tooltips
=item Textfield::GetLine() truncates lines
--- 58,63 ----
=item Baloon Tooltip info and warning icons swapped
! The info and warning icon for balloon tooltips
! were the wrong way round. This is fixed.
=item Textfield::GetLine() truncates lines
***************
*** 35,38 ****
--- 67,82 ----
lines.
+ =item '-prompt' option to Textfield
+
+ The '-prompt' option to the Textfield constructor would
+ generate warnings and place the label incorrectly when
+ used to supply a label only:
+
+ -prompt => 'Some Label:',
+
+ This should now be fixed. Note that if you were relying on
+ the previouly incorrect placement (always against the left
+ border), then you may need to re-position your labels.
+
=item Error During Global Destruction
***************
*** 49,52 ****
--- 93,146 ----
Various memory leaks have been resolved.
+ =item Win32::GUI::Scintilla buffer sizes
+
+ There were several places in the Scintilla wrapper
+ code where buffer of the wrong sizes were allocated.
+ This has been fixed.
+
+ =item Win32::GUI::Scroll return value
+
+ On failure Win32::GUI::Scroll was supposed to return undef,
+ but was returning random garbage. This has been fixed,
+ along with updates to the documentation.
+
+ =item Win32::GUI::RichEdit::LimitText()
+
+ There was a typo in the function name (LimiteText()). Both
+ spellings are now supported.
+
+ =item ListView BeginLabelEdit event
+
+ The second arguement was being set incorrectly when the callback
+ was made. This is now fixed.
+
+ =item Crash when destroying a window during a callback
+
+ It is possible to write code that destroys a window during one
+ of it's one callbacks. This could crash perl. Hopefully this
+ is now fixed.
+
+ =item All Poly* drawing functions broken
+
+ Polygon(), PolyBezier(), PolyBezierTo(), PolyLine() and
+ PolyLineTo() now all work.
+
+ =item Comboxbox constructor - using multiple types
+
+ The Win32::GUI::Combobox constructor has been updated to handle
+ the '-simple', '-dropdown' and '-dropdownlist' options more
+ intuatively. The docuentation has been updated to explain that
+ only one of these options should be used, and what happens
+ if more than one is used.
+
+ =item Win32::GUI::Imagelist::AddMasked broken
+
+ This call should now work.
+
+ =item Win32::GUI::Acceptfiles() generates warning
+
+ The AcceptFiles() method was using some undefined constants.
+ They have been removed.
+
=back
***************
*** 152,155 ****
--- 246,259 ----
=item Brian Millham
+ =item Glenn Munroe
+
+ =item George
+
+ =item Glenn Linderman
+
+ =item Salvadore Oritz
+
+ =item Joseph Cordero
+
=back