Skip to content

Commit

Permalink
chore(monaco-editor): release v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Zuoqiu-Yingyi committed Aug 11, 2023
1 parent 25c4e4a commit 6b4071a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ permissions:

env:
PACKAGE_NAME: monaco-editor
PACKAGE_VERSION: 0.1.0
PACKAGE_VERSION: 0.1.1

jobs:
release-please:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "monaco-editor",
"private": true,
"version": "0.0.0",
"version": "0.1.1",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
4 changes: 2 additions & 2 deletions public/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"name": "monaco-editor",
"author": "Zuoqiu Yingyi",
"url": "https://github.com/Zuoqiu-Yingyi/siyuan-plugin-webview",
"version": "0.1.0",
"minAppVersion": "2.9.8",
"version": "0.1.1",
"minAppVersion": "2.9.9",
"backends": [
"all"
],
Expand Down
2 changes: 2 additions & 0 deletions src/editor/markdown/completion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ export class MarkdownCompletion implements Monaco.languages.CompletionItemProvid
this.displayMathSuggestionsJSON = JSON.stringify(this.displayMathSuggestions);
}

/* 提供建议列表 */
async provideCompletionItems(
model: Monaco.editor.ITextModel,
position: Monaco.Position,
Expand Down Expand Up @@ -153,6 +154,7 @@ export class MarkdownCompletion implements Monaco.languages.CompletionItemProvid
};
}

/* 当前聚焦的建议 */
async resolveCompletionItem(
item: Monaco.languages.CompletionItem,
token: Monaco.CancellationToken,
Expand Down

0 comments on commit 6b4071a

Please sign in to comment.