Skip to content

Commit

Permalink
chore(release): 0.6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
humyfred committed Jan 24, 2022
1 parent 6ab75b3 commit c6aed5f
Show file tree
Hide file tree
Showing 23 changed files with 606 additions and 515 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,29 @@

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.6.5](https://github.com/Tencent/cherry-markdown/compare/v0.6.4...v0.6.5) (2022-01-24)


### Features

* optimize error output ([ed7323c](https://github.com/Tencent/cherry-markdown/commit/ed7323c798d8daf98589d3d79d37fbdd08ff2e98))


### Bug Fixes

* **list:** adapt list cases to avoid array out of boundary ([4c5a23c](https://github.com/Tencent/cherry-markdown/commit/4c5a23c72f50ee0cc2fc1589681e9f47c91a459c))
* **ts file:** fix ts file couldn't submit ([6ab75b3](https://github.com/Tencent/cherry-markdown/commit/6ab75b36ad48ff4b4273172d39fcdcef04ab04f1))


### Performance Improvements

* **image:** fix poor performance when referencing data-url images ([37ac086](https://github.com/Tencent/cherry-markdown/commit/37ac0861ffeee052e8f1ba1dbef720b663dcb2db))


### Css or Code Change

* lint ([f4e156f](https://github.com/Tencent/cherry-markdown/commit/f4e156ffa2f9495b77d22e12ce4720ce2c310bdd))

### [0.6.4](https://github.com/Tencent/cherry-markdown/compare/v0.6.3...v0.6.4) (2022-01-13)

### [0.6.3](https://github.com/Tencent/cherry-markdown/compare/v0.6.2...v0.6.3) (2022-01-12)
Expand Down
31 changes: 31 additions & 0 deletions dist/addons/cherry-code-block-mermaid-plugin.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
export default class MermaidCodeEngine {
static TYPE: string;
static install(cherryOptions: any, ...args: any[]): void;
constructor(mermaidOptions?: {});
mermaidAPIRefs: any;
options: {
theme: string;
altFontFamily: string;
fontFamily: string;
themeCSS: string;
flowchart: {
useMaxWidth: boolean;
};
sequence: {
useMaxWidth: boolean;
};
startOnLoad: boolean;
logLevel: number;
};
dom: any;
mermaidCanvas: any;
mountMermaidCanvas($engine: any): void;
/**
* 转换svg为img,如果出错则直出svg
* @param {string} svgCode
* @param {string} graphId
* @returns {string}
*/
convertMermaidSvgToImg(svgCode: string, graphId: string): string;
render(src: any, sign: any, $engine: any): boolean;
}
3 changes: 3 additions & 0 deletions dist/cherry-markdown.core.common.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import Cherry, { MenuHookBase, SyntaxHookBase } from "./types/index.core";
export { MenuHookBase, SyntaxHookBase };
export default Cherry;
2 changes: 1 addition & 1 deletion dist/cherry-markdown.core.common.js

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions dist/cherry-markdown.core.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import Cherry, { MenuHookBase, SyntaxHookBase } from "./types/index.core";
export { MenuHookBase, SyntaxHookBase };
export default Cherry;
2 changes: 1 addition & 1 deletion dist/cherry-markdown.core.js

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions dist/cherry-markdown.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import Cherry, { MenuHookBase, SyntaxHookBase } from "./types/index";
export { MenuHookBase, SyntaxHookBase };
export default Cherry;
3 changes: 3 additions & 0 deletions dist/cherry-markdown.engine.core.common.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import CherryEngine, { MenuHookBase, SyntaxHookBase } from "./types/index.engine.core";
export { MenuHookBase, SyntaxHookBase };
export default CherryEngine;
2 changes: 1 addition & 1 deletion dist/cherry-markdown.engine.core.common.js

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions dist/cherry-markdown.engine.core.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import CherryEngine, { MenuHookBase, SyntaxHookBase } from "./types/index.engine.core";
export { MenuHookBase, SyntaxHookBase };
export default CherryEngine;
2 changes: 1 addition & 1 deletion dist/cherry-markdown.engine.core.js

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions dist/cherry-markdown.esm.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import Cherry, { MenuHookBase, SyntaxHookBase } from "./types/index";
export { MenuHookBase, SyntaxHookBase };
export default Cherry;
2 changes: 1 addition & 1 deletion dist/cherry-markdown.esm.js

Large diffs are not rendered by default.

Loading

0 comments on commit c6aed5f

Please sign in to comment.