Prep for 6.28 release

This commit is contained in:
Gregory Nutt 2013-06-14 14:30:00 -06:00
parent 981a0b1a78
commit c62e1b5cc4
2 changed files with 39 additions and 3 deletions

View File

@ -345,7 +345,7 @@
* NxWidgets::CNxWidgets: Allow overriding of the checkCollision() method.
From Petteri Aimonen (2013-4-22).
1.8 2013-xx-xx Gregory Nutt <gnutt@nuttx.org>
1.8 2013-06-14 Gregory Nutt <gnutt@nuttx.org>
* NxWM::CMediaPlayer: shell application for an MP3 Media Player with
Kconfig settings to enable it. I plan to write this app to help
@ -362,7 +362,7 @@
should be 100, not 50, to be consistent with other default priorities.
* NxWidgets::CGlyphSliderHorizontal and NxWidgets::CGlyphSliderHorizontalGrip:
New widgets added by Ken Pettit (2013-5-15).
* NxWidgets/UnitTests/CGlyphSliderHorizontal: Addes a unit test for the
* NxWidgets/UnitTests/CGlyphSliderHorizontal: Adds a unit test for the
NxWidgets::CGlyphSliderHorizontal class. From Ken Pettit (2013-5-17) .
* NxWidgets::CGlyphSliderHorizontal: Fix a drawing error. From Ken
Pettit (2013-5-17).
@ -379,3 +379,4 @@
state due to e.g. powerdown or other manual intervention. From
Petteri Aimonen (2013-6-4).
1.9 2013-xx-xx Gregory Nutt <gnutt@nuttx.org>

View File

@ -169,7 +169,7 @@ Additional new features and extended functionality in Version 1.5:
* NxWM::CScrollingPanel::scrollChildren(): Avoid unnecessary redraws in
CScrollingPanel
* Kconfig: Added several "enabling" settings that must be selected to
override the default setting.
override the default setting.
* UnitTests: Changes for compatibility with NuttX-6.25
Bugfixes:
@ -284,3 +284,38 @@ Bugfixes:
* NxWM::CScrollbarPanel: Fix spelling error in class name: CScollbarPanel
should be CScrollbarPanel
* NxWidgets::CGlyphButton: Prevent drawing outside of the bitmap size.
NxWidgets-1.8
=============
The 9th release of the NxWidgets package was made on June 14, 2013. This
release depends on NuttX-6.26 or above and should not be used with older
NuttX releases.
Note: Most of the changes between 1.7 and 1.8 were the result of the
efforts of Ken Pettit and Petteri Aimonen.
Additional new features and extended functionality in Version 1.8:
* NxWM::CMediaPlayer: Shell application for an MP3 Media Player (from Ken
Pettit).
* NxWidgets::CGlyphSliderHorizontal and NxWidgets::CGlyphSliderHorizontalGrip:
New widgets added by Ken Pettit. Includes a Unit Test.
* NxWidgets::CImage: Allow a NULL pointer for a bitmap (from Petteri
Aimonen).
* NxWidgets::CNumericEdit: Delay before auto-incrementing now varies: A
longer delay is required to start auto-incrementing and speed increases
while pressed (from Petteri Aimonen).
* NxWM::CTaskbar: Add a method to redraw the taskbar and the current
application. This should only be necessary if the display loses state due
to e.g. powerdown or other manual intervention (from Petteri Aimonen).
Bugfixes:
* NxWM::CCalibration: Fix a race condition that would cause the calibration
screen to fail to come up when its icon was touched (from Ken Pettit).
* Default priorities for NxWidget and NxWM threads should be 100, not 50, to
be consistent with other default priorities.
* NxWidgets::CGlyphSliderHorizontal: Fix a drawing error (from Ken Pettit).
* Update the way that NSH the Unit Tests are registered as built-in NSH
applications.