Skip to content

Commit

Permalink
chore(release): 0.8.15
Browse files Browse the repository at this point in the history
Co-authored-by: sunsonliu <[email protected]>
Co-authored-by: lyngai <[email protected]>
Co-authored-by: humyfred <[email protected]>
Co-authored-by: kiritocui <[email protected]>
  • Loading branch information
5 people committed Mar 6, 2023
1 parent 4a01849 commit d08fa86
Show file tree
Hide file tree
Showing 19 changed files with 3,680 additions and 1,186 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

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.8.15](https://github.com/Tencent/cherry-markdown/compare/v0.8.14...v0.8.15) (2023-03-06)


### Features

* 客户端增加关闭提醒和导出markdown/HTML文件功能 ([#399](https://github.com/Tencent/cherry-markdown/issues/399)) ([520eb00](https://github.com/Tencent/cherry-markdown/commit/520eb001e476c4ded2c25378ffc0d715da11f82f))
* 优化信息面板标题的背景色值 ([318740e](https://github.com/Tencent/cherry-markdown/commit/318740e5859b75f34efa1e176d192c8d9e25edfd))
* 增加手风琴语法和对应的按钮;fix: 修复换行、列表语法占位符没有行号信息的问题 ([e21cc35](https://github.com/Tencent/cherry-markdown/commit/e21cc35f180aaffafd2c86d08266f33f485bfad3))
* 增加信息面板语法和对应的按钮 ([fc7bc1f](https://github.com/Tencent/cherry-markdown/commit/fc7bc1f536022750971563cf7a99e27f77cb629e))


### Bug Fixes

* [#396](https://github.com/Tencent/cherry-markdown/issues/396) ([07ebfd5](https://github.com/Tencent/cherry-markdown/commit/07ebfd55edb12b93f1e6f50385bf89d2a16f864b))
* 修复翻译 ([4be5d37](https://github.com/Tencent/cherry-markdown/commit/4be5d37d8d7fe121a37dfb4cc64bf73fc9ab9b9e))

### [0.8.14](https://github.com/Tencent/cherry-markdown/compare/v0.8.13...v0.8.14) (2023-02-21)


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.

131 changes: 130 additions & 1 deletion dist/cherry-markdown.css
Original file line number Diff line number Diff line change
Expand Up @@ -338,6 +338,30 @@
content: "\ea65";
}

.ch-icon-mistake:before {
content: "\ea66";
}

.ch-icon-success:before {
content: "\ea67";
}

.ch-icon-danger:before {
content: "\ea68";
}

.ch-icon-info:before {
content: "\ea69";
}

.ch-icon-primary:before {
content: "\ea6a";
}

.ch-icon-warning:before {
content: "\ea6b";
}

.cherry-markdown {
word-break: break-all;
/* Specify class=linenums on a pre to get line numbering */
Expand Down Expand Up @@ -1876,6 +1900,111 @@ div[data-type=codeBlock] .token.inserted {
cursor: help;
}

.cherry-detail details {
background: rgba(248, 249, 250, 0.6666666667);
border-radius: 8px;
overflow: hidden;
margin-bottom: 10px;
}
.cherry-detail details summary {
user-select: none;
padding: 5px 10px;
background-color: #6c757d;
color: #FFF;
border-radius: 8px;
}
.cherry-detail details .cherry-detail-body {
padding: 15px 25px 0 25px;
}

.cherry-detail__multiple {
border-radius: 8px;
overflow: hidden;
}
.cherry-detail__multiple details {
margin-bottom: 1px;
border-radius: 0;
border: none;
}
.cherry-detail__multiple details summary {
border-radius: 0;
}

.cherry-panel {
margin: 10px 0;
overflow: hidden;
border-radius: 8px;
box-sizing: border-box;
border: 0.5px solid;
}
.cherry-panel .cherry-panel--title {
color: #fff;
padding: 5px 20px;
}
.cherry-panel .cherry-panel--title.cherry-panel--title__not-empty::before {
font-family: "ch-icon";
margin: 0 12px 0 -6px;
vertical-align: bottom;
}
.cherry-panel .cherry-panel--body {
padding: 5px 20px;
}

.cherry-panel__primary {
background-color: #cfe2ff;
color: #0a58ca;
}
.cherry-panel__primary .cherry-panel--title {
background-color: #0d6dfe;
}
.cherry-panel__primary .cherry-panel--title.cherry-panel--title__not-empty::before {
content: "\ea6a";
}

.cherry-panel__info {
background-color: #cff4fc;
color: #087990;
}
.cherry-panel__info .cherry-panel--title {
background-color: #099cba;
}
.cherry-panel__info .cherry-panel--title.cherry-panel--title__not-empty::before {
content: "\ea69";
}

.cherry-panel__warning {
background-color: #fff3cd;
color: #997404;
}
.cherry-panel__warning .cherry-panel--title {
background-color: #b38806;
}
.cherry-panel__warning .cherry-panel--title.cherry-panel--title__not-empty::before {
content: "\ea6b";
}

.cherry-panel__danger {
background-color: #f8d7da;
color: #b02a37;
}
.cherry-panel__danger .cherry-panel--title {
background-color: #dc3545;
}
.cherry-panel__danger .cherry-panel--title.cherry-panel--title__not-empty::before {
content: "\ea68";
}

.cherry-panel__success {
background-color: #d1e7dd;
color: #146c43;
}
.cherry-panel__success .cherry-panel--title {
background-color: #198754;
}
.cherry-panel__success .cherry-panel--title.cherry-panel--title__not-empty::before {
content: "\ea67";
}

.cherry .doing-resize-img {
-moz-user-select: none;
-webkit-user-select: none;
Expand Down Expand Up @@ -2485,7 +2614,7 @@ div[data-type=codeBlock] .token.inserted {
}

.cherry-previewer {
padding: 20px 34px;
padding: 20px 45px 20px 20px;
border-left: 2px solid #ebedee;
width: 50%;
box-sizing: border-box;
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.

Loading

0 comments on commit d08fa86

Please sign in to comment.