From 33cd2c5ef66ac143f41b65e9f01de1564e82e6dd Mon Sep 17 00:00:00 2001 From: Niklas von Hertzen Date: Mon, 19 Jan 2015 22:52:04 +0200 Subject: [PATCH] Move Changelog away from Readme --- CHANGELOG.md | 53 ++++++++++++++++++++++++++++++++++++++++++++++++++++ readme.md | 43 ------------------------------------------ 2 files changed, 53 insertions(+), 43 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..4c387f3 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,53 @@ +### Changelog ### + +v0.5.0-alpha - 19.1.2015 + * Complete rewrite of library + * Switched interface to return Promise + * Uses hidden iframe window to perform rendering, allowing async rendering and doesn't force the viewport to be scrolled to the top anymore. + * Better support for unicode + * Checkbox/radio button rendering + * SVG rendering + * iframe rendering + * Changed format for proxy requests, permitting binary responses with CORS headers as well + * Fixed many layering issues (see z-index tests) + +v0.4.1 - 7.9.2013 + * Added support for bower + * Improved z-index ordering + * Basic implementation for CSS transformations + * Fixed inline text in top element + * Basic implementation for text-shadow + +v0.4.0 - 30.1.2013 + * Added rendering tests with webdriver + * Switched to using grunt for building + * Removed support for IE<9, including any FlashCanvas bits + * Support for border-radius + * Support for multiple background images, size, and clipping + * Support for :before and :after pseudo elements + * Support for placeholder rendering + * Reformatted all tests to small units to test specific features + +v0.3.4 - 26.6.2012 + +* Removed (last?) jQuery dependencies (niklasvh) +* SVG-powered rendering (niklasvh) +* Radial gradients (SunboX) +* Split renderers to their own objects (niklasvh) +* Simplified API, cleaned up code (niklasvh) + +v0.3.3 - 2.3.2012 + +* SVG taint fix, and additional taint testing options for rendering (niklasvh) +* Added support for CORS images and option to create canvas as tainted (niklasvh) +* Improved minification saved ~1K! (cobexer) +* Added integrated support for Flashcanvas (niklasvh) +* Fixed a variety of legacy IE bugs (niklasvh) + +v0.3.2 - 20.2.2012 + +* Added changelog! +* Added bookmarklet (cobexer) +* Option to select single element to render (niklasvh) +* Fixed closure compiler warnings (cobexer) +* Enable profiling in FF (cobexer) diff --git a/readme.md b/readme.md index fd96c9e..a1709ba 100644 --- a/readme.md +++ b/readme.md @@ -84,46 +84,3 @@ For more information and examples, please visit the [homepage](http://html2canva ### Contributing ### If you wish to contribute to the project, please send the pull requests to the develop branch. Before submitting any changes, try and test that the changes work with all the support browsers. If some CSS property isn't supported or is incomplete, please create appropriate tests for it as well before submitting any code changes. - -### Changelog ### - -v0.4.1 - 7.9.2013 - * Added support for bower - * Improved z-index ordering - * Basic implementation for CSS transformations - * Fixed inline text in top element - * Basic implementation for text-shadow - -v0.4.0 - 30.1.2013 - * Added rendering tests with webdriver - * Switched to using grunt for building - * Removed support for IE<9, including any FlashCanvas bits - * Support for border-radius - * Support for multiple background images, size, and clipping - * Support for :before and :after pseudo elements - * Support for placeholder rendering - * Reformatted all tests to small units to test specific features - -v0.3.4 - 26.6.2012 - -* Removed (last?) jQuery dependencies (niklasvh) -* SVG-powered rendering (niklasvh) -* Radial gradients (SunboX) -* Split renderers to their own objects (niklasvh) -* Simplified API, cleaned up code (niklasvh) - -v0.3.3 - 2.3.2012 - -* SVG taint fix, and additional taint testing options for rendering (niklasvh) -* Added support for CORS images and option to create canvas as tainted (niklasvh) -* Improved minification saved ~1K! (cobexer) -* Added integrated support for Flashcanvas (niklasvh) -* Fixed a variety of legacy IE bugs (niklasvh) - -v0.3.2 - 20.2.2012 - -* Added changelog! -* Added bookmarklet (cobexer) -* Option to select single element to render (niklasvh) -* Fixed closure compiler warnings (cobexer) -* Enable profiling in FF (cobexer)