Skip to content

Commit 396d902

Browse files
committed
Merge branch 'release/1.0.4'
2 parents 2dd8ef0 + d5c29f0 commit 396d902

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hidpi-canvas",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"homepage": "https://github.com/jondavidjohn/hidpi-canvas-polyfill",
55
"authors": [
66
"Jonathan Johnson <jon@crowdfavorite.com>"

dist/hidpi-canvas.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* HiDPI Canvas Polyfill (1.0.3)
2+
* HiDPI Canvas Polyfill (1.0.4)
33
*
44
* Author: Jonathan D. Johnson (http://jondavidjohn.com)
55
* Homepage: https://github.com/jondavidjohn/hidpi-canvas-polyfill
@@ -43,7 +43,8 @@
4343
'quadraticCurveTo': 'all',
4444
'rect': 'all',
4545
'translate': 'all',
46-
'createRadialGradient': 'all'
46+
'createRadialGradient': 'all',
47+
'createLinearGradient': 'all'
4748
};
4849

4950
forEach(ratioArgs, function(value, key) {

dist/hidpi-canvas.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "hidpi-canvas",
33
"description": "A JavaScript drop-in module to polyfill consistent and automatic HiDPI Canvas support.",
4-
"version": "1.0.3",
4+
"version": "1.0.4",
55
"license": "Apache 2.0",
66
"homepage": "https://github.com/jondavidjohn/hidpi-canvas-polyfill",
77
"bugs": "https://github.com/jondavidjohn/hidpi-canvas-polyfill/issues",

src/CanvasRenderingContext2D.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@
3535
'quadraticCurveTo': 'all',
3636
'rect': 'all',
3737
'translate': 'all',
38-
'createRadialGradient': 'all'
38+
'createRadialGradient': 'all',
39+
'createLinearGradient': 'all'
3940
};
4041

4142
forEach(ratioArgs, function(value, key) {

0 commit comments

Comments
 (0)