Compare commits

...

3 Commits
1.7.4 ... 1.7.5

Author SHA1 Message Date
Anton Lavrenov
e49742517e update cdn link 2017-11-01 08:47:20 +05:30
Anton Lavrenov
7c1ce9f5b6 build for 1.7.5 2017-11-01 08:47:20 +05:30
Anton Lavrenov
dc7dd00209 update CHANGELOG with new version 2017-11-01 08:47:14 +05:30
6 changed files with 19 additions and 8 deletions

View File

@@ -4,6 +4,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [Not released][Not released]
## [1.7.5][2017-11-01]
## Fixed
- Some typescript fixes
## [1.7.4][2017-10-30]
## Fixed

4
konva.d.ts vendored
View File

@@ -332,6 +332,7 @@ declare module Konva {
stroke?: string;
strokeWidth?: number;
strokeScaleEnabled?: boolean;
strokeHitEnabled?: boolean;
strokeEnabled?: boolean;
lineJoin?: string;
lineCap?: string;
@@ -476,10 +477,11 @@ declare module Konva {
interface LayerConfig extends ContainerConfig {
clearBeforeDraw?: boolean;
hitGraphEnabled?: boolean;
}
class FastLayer extends Container {
constructor (config?: ContainerConfig);
constructor (config?: LayerConfig);
drawScene(): void;
hitGraphEnabled(val: boolean): FastLayer;
batchDraw(): void;

View File

@@ -1,8 +1,8 @@
/*
* Konva JavaScript Framework v1.7.4
* Konva JavaScript Framework v1.7.5
* http://konvajs.github.io/
* Licensed under the MIT or GPL Version 2 licenses.
* Date: Mon Oct 30 2017
* Date: Wed Nov 01 2017
*
* Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS)
* Modified work Copyright (C) 2014 - 2017 by Anton Lavrenov (Konva)
@@ -38,7 +38,7 @@
var Konva = {
// public
version: '1.7.4',
version: '1.7.5',
// private
stages: [],
@@ -51,7 +51,9 @@
isBrowser:
typeof window !== 'undefined' &&
// browser case
({}.toString.call(window) === '[object Window]' ||
// electron case
{}.toString.call(window) === '[object global]'),
// configurations

6
konva.min.js vendored

File diff suppressed because one or more lines are too long

View File

@@ -1,6 +1,6 @@
{
"name": "konva",
"version": "1.7.4",
"version": "1.7.5",
"author": "Anton Lavrenov",
"files": [
"README.md",

View File

@@ -51,7 +51,9 @@
isBrowser:
typeof window !== 'undefined' &&
// browser case
({}.toString.call(window) === '[object Window]' ||
// electron case
{}.toString.call(window) === '[object global]'),
// configurations