From f4b82f624bdb84fb2db17d256cc69b7561ac8bc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mark=20C=C3=B4t=C3=A9?= Date: Tue, 11 Dec 2012 23:28:42 -0800 Subject: [PATCH] Updated NEWS.md for issue #49. --- NEWS.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/NEWS.md b/NEWS.md index b47c8cb..213aa6e 100644 --- a/NEWS.md +++ b/NEWS.md @@ -13,9 +13,9 @@ the dates are displayed. If null, the dates are displayed as UTC. If "browser", the dates are displayed in the time zone of the user's browser. Date/time formatting has changed and now follows a proper subset of the -standard strftime specifiers. Additionally, if a strftime function is found in -the Date object's prototype, it will be used instead of the built-in -formatter. +standard strftime specifiers, plus one nonstandard specifier for quarters. +Additionally, if a strftime function is found in the Date object's prototype, +it will be used instead of the built-in formatter. Axis labels are now drawn with canvas text with some parsing to support newlines. This solves various issues but also means that they no longer @@ -29,6 +29,9 @@ The base and overlay canvas are now using the CSS classes "flot-base" and ### Changes ### + - Addition of nonstandard %q specifier to date/time formatting. (patch + by risicle, issue 49) + - Date/time formatting follows proper subset of strftime specifiers, and support added for Date.prototype.strftime, if found. (patch by Mark Cote, issues 419 and 558)