Skip to content

Commit

Permalink
chore(release): 0.7.9
Browse files Browse the repository at this point in the history
  • Loading branch information
humyfred committed Aug 12, 2022
1 parent 01543f8 commit e812f1b
Show file tree
Hide file tree
Showing 18 changed files with 28 additions and 18 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

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.7.9](https://github.com/Tencent/cherry-markdown/compare/v0.7.8...v0.7.9) (2022-08-12)


### Bug Fixes

* **imageLazyLoad:** 修复懒加载开关配置 ([01543f8](https://github.com/Tencent/cherry-markdown/commit/01543f8b51cdb217694efd6f7d0386e8f37add4c))


### Css or Code Change

* remove ambiguous css reset ([e159254](https://github.com/Tencent/cherry-markdown/commit/e159254333f4923f450ae36499d8024931b1e7b8))

### [0.7.8](https://github.com/Tencent/cherry-markdown/compare/v0.7.7...v0.7.8) (2022-08-04)


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

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

5 changes: 1 addition & 4 deletions dist/cherry-markdown.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
@charset "UTF-8";
.cherry * {
padding: 0;
margin: 0;
}
.cherry *::-webkit-scrollbar {
height: 7px;
width: 7px;
Expand Down Expand Up @@ -627,6 +623,7 @@
}
.cherry-markdown .toc {
margin-bottom: 16px;
padding-left: 0;
}
.cherry-markdown .toc .toc-title {
font-size: 24px;
Expand Down
2 changes: 1 addition & 1 deletion dist/cherry-markdown.engine.core.common.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/cherry-markdown.engine.core.esm.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.

7 changes: 4 additions & 3 deletions dist/cherry-markdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -37736,7 +37736,7 @@
keyword: '@',
建议模板 function
suggestListRender(valueArray) {
},
},
回填回调 function
echo(value) {

Expand Down Expand Up @@ -50497,7 +50497,8 @@
var tmpDiv = document.createElement('div');
var domContainer = this.getDomContainer(); // 把最新内容放进临时div的时候,为了防止图片加载,会强制把图片的src改成data-src

tmpDiv.innerHTML = this.lazyLoadImg.changeSrc2DataSrc(html, true);
var enableLazyLoadImage = this.options.lazyLoadImg.noLoadImgNum > -1;
tmpDiv.innerHTML = this.lazyLoadImg.changeSrc2DataSrc(html, enableLazyLoadImage);
var newHtmlList = this.$getSignData(tmpDiv);
var oldHtmlList = this.$getSignData(domContainer);

Expand Down Expand Up @@ -79128,7 +79129,7 @@
});
}

var VERSION = "0.7.6-01d51a30";
var VERSION = "0.7.9-01543f8b";
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.css

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.7.8",
"version": "0.7.9",
"description": "a new markdown editor",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/sass/ch-icon.scss
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,4 @@
.ch-icon-cherry-table-insert-right:before { content: "\EA56" }
.ch-icon-cherry-table-insert-top:before { content: "\EA57" }
.ch-icon-sort-s:before { content: "\EA58" }
.ch-icon-pinyin:before { content: "\EA59" }
.ch-icon-pinyin:before { content: "\EA59" }

0 comments on commit e812f1b

Please sign in to comment.