From 23c2631c10063bbe86bd49ef0eef5b98b675e943 Mon Sep 17 00:00:00 2001 From: GreLI Date: Wed, 5 Aug 2015 17:13:20 +0300 Subject: [PATCH] v0.5.5 --- CHANGELOG.md | 3 +++ package.json | 2 +- plugins/transformsWithOnePath.js | 6 +++--- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d801effa1..226f9ec24 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +### [ [>](https://github.com/svg/svgo/tree/v0.5.5) ] 0.5.5 / 05.08.2015 +* Reverted debugging changes. + ### [ [>](https://github.com/svg/svgo/tree/v0.5.4) ] 0.5.4 / 05.08.2015 * New parameter `useShortTags` by @bradbarrow. Now svgo can produce correct non-selfclosing tags (useful in HTML in old browsers). * Fixed failing on empty transformation (which could be produced by two opposite). diff --git a/package.json b/package.json index 8fb7307ea..05b7eb5d7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "svgo", - "version": "0.5.4", + "version": "0.5.5", "description": "Nodejs-based tool for optimizing SVG vector graphics files", "keywords": [ "svgo", "svg", "optimize", "minify" ], "homepage": "https://github.com/svg/svgo", diff --git a/plugins/transformsWithOnePath.js b/plugins/transformsWithOnePath.js index c7e4efe06..f4dec7e61 100644 --- a/plugins/transformsWithOnePath.js +++ b/plugins/transformsWithOnePath.js @@ -6,14 +6,14 @@ exports.type = 'full'; -exports.active = !false; +exports.active = false; exports.description = 'performs a set of operations on SVG with one path inside (disabled by default)'; exports.params = { // width and height to resize SVG and rescale inner Path - width: 32, - height: 32, + width: false, + height: false, // scale inner Path without resizing SVG scale: false,