Skip to content

Commit

Permalink
chore(release): 0.5.17
Browse files Browse the repository at this point in the history
  • Loading branch information
humyfred committed Dec 21, 2021
1 parent fd55600 commit c633202
Show file tree
Hide file tree
Showing 12 changed files with 17 additions and 8 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [0.5.17](https://github.com/Tencent/cherry-markdown/compare/v0.5.16...v0.5.17) (2021-12-21)


### Bug Fixes

* **upload:** fix wrong input type ([fd55600](https://github.com/Tencent/cherry-markdown/commit/fd55600e7dd07d76e2e901aed3694b11df56d6db))

### [0.5.16](https://github.com/Tencent/cherry-markdown/compare/v0.5.15...v0.5.16) (2021-12-20)


Expand Down
2 changes: 1 addition & 1 deletion dist/cherry-markdown.core.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/cherry-markdown.engine.core.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/cherry-markdown.esm.js

Large diffs are not rendered by default.

6 changes: 4 additions & 2 deletions dist/cherry-markdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -49181,6 +49181,7 @@
/**
* 上传文件的逻辑
* @param {string} type 上传文件的类型
* @param {string} [_accept] TODO: 限定可选择的文件类型,接收 mime type 或后缀名字符串(以逗号分隔)
*/

}, {
Expand All @@ -49189,9 +49190,10 @@
var _this2 = this;

var type = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'image';

// type为上传文件类型 image|video|audio|pdf|word
var input = document.createElement('input');
input.type = type || 'file';
input.type = 'file';
input.id = 'fileUpload';
input.value = '';
input.style.display = 'none'; // document.body.appendChild(input);
Expand Down Expand Up @@ -82093,7 +82095,7 @@
});
}

var VERSION = "0.5.16-e6fc6b83";
var VERSION = "0.5.17-fd55600e";
var CherryStatic = /*#__PURE__*/function () {
function CherryStatic() {
_classCallCheck(this, CherryStatic);
Expand Down
2 changes: 1 addition & 1 deletion dist/cherry-markdown.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/cherry-markdown.min.js

Large diffs are not rendered by default.

Binary file modified dist/fonts/ch-icon.eot
Binary file not shown.
Binary file modified dist/fonts/ch-icon.ttf
Binary file not shown.
Binary file modified dist/fonts/ch-icon.woff
Binary file not shown.
Binary file modified dist/fonts/ch-icon.woff2
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "cherry-markdown",
"license": "Apache-2.0",
"version": "0.5.16",
"version": "0.5.17",
"description": "a new markdown editor",
"repository": {
"type": "git",
Expand Down

0 comments on commit c633202

Please sign in to comment.