Commit 7cadbd15 authored by zhangbobell's avatar zhangbobell

feat(release): fix png export cache bug

parent 3738f521
......@@ -2,7 +2,7 @@
"name": "kityminder-core",
"title": "Kity Minder Core",
"description": "Powerful online mind graphic visualization and editor (command based)",
"version": "1.4.39",
"version": "1.4.40",
"main": [
"dist/kityminder.core.min.js",
"dist/kityminder.core.css"
......
/*!
* ====================================================
* kityminder - v1.4.39 - 2017-04-17
* kityminder - v1.4.40 - 2017-04-17
* https://github.com/fex-team/kityminder-core
* GitHub: https://github.com/fex-team/kityminder-core.git
* Copyright (c) 2017 Baidu FEX; Licensed MIT
......@@ -1969,7 +1969,7 @@ _p[19] = {
this.fire("finishInitHook");
}
});
Minder.version = "1.4.39";
Minder.version = "1.4.40";
Minder.registerInitHook = function(hook) {
_initHooks.push(hook);
};
......@@ -8051,7 +8051,7 @@ _p[65] = {
function xhrLoadImage(info, callback) {
return Promise(function(resolve, reject) {
var xmlHttp = new XMLHttpRequest();
xmlHttp.open("GET", info.url, true);
xmlHttp.open("GET", info.url + "?_=" + Date.now(), true);
xmlHttp.responseType = "blob";
xmlHttp.onreadystatechange = function() {
if (xmlHttp.readyState === 4 && xmlHttp.status === 200) {
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -2,7 +2,7 @@
"name": "kityminder",
"title": "kityminder",
"description": "KityMinder Core Implement",
"version": "1.4.39",
"version": "1.4.40",
"homepage": "https://github.com/fex-team/kityminder-core",
"author": {
"name": "Baidu FEX",
......
......@@ -30,7 +30,7 @@ define(function(require, exports, module) {
}
});
Minder.version = '1.4.39';
Minder.version = '1.4.40';
Minder.registerInitHook = function(hook) {
_initHooks.push(hook);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment