diff --git a/CHANGELOG b/CHANGELOG index cb8a55f82..37a21be41 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -70,6 +70,11 @@ Release 1.5.3 (2014-05-xx) - fixed GH #290: Unicode support - fixed GH #318: Logger local time doesn't automatically account for DST - fixed GH #363: DateTimeParser tryParse/parse +- added HTMLForm Content-Length calculation (Rangel Reale) +- Make TemporaryFile append a slash to tempDir +- fixed GH #319 android build with cmake +- added hasDelegates() method to AbstractEvent +- fixed GH #230: Poco::Timer problem Release 1.5.2 (2013-09-16) ========================== diff --git a/Foundation/src/Timer.cpp b/Foundation/src/Timer.cpp index fe8543853..79fafae57 100644 --- a/Foundation/src/Timer.cpp +++ b/Foundation/src/Timer.cpp @@ -164,7 +164,7 @@ void Timer::run() } while (sleep < 0); - if (_wakeUp.tryWait(sleep)) + if (_wakeUp.tryWait(sleep > _periodicInterval ? _periodicInterval : sleep)) { Poco::FastMutex::ScopedLock lock(_mutex); _nextInvocation.update(); diff --git a/doc/99100-ReleaseNotes.page b/doc/99100-ReleaseNotes.page index 1967ca13c..46d7e840d 100644 --- a/doc/99100-ReleaseNotes.page +++ b/doc/99100-ReleaseNotes.page @@ -72,6 +72,12 @@ AAAIntroduction - fixed GH #290: Unicode support - fixed GH #318: Logger local time doesn't automatically account for DST - fixed GH #363: DateTimeParser tryParse/parse + - added HTMLForm Content-Length calculation (Rangel Reale) + - Make TemporaryFile append a slash to tempDir + - Make TemporaryFile append a slash to tempDir + - fixed GH #319 android build with cmake + - added hasDelegates() method to AbstractEvent + - fixed GH #230: Poco::Timer problem !!Incompatible Changes and Possible Transition Issues