diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 771dc90..d8389fa 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -9,8 +9,15 @@ jobs: - name: Checkout uses: actions/checkout@v2 - run: npm install - - uses: lannonbr/vsce-action@master + - name: Publish to Open VSX Registry + uses: HaaLeo/publish-vscode-extension@v0 + id: publishToOpenVSX with: - args: 'publish -p $VSCE_TOKEN' - env: - VSCE_TOKEN: ${{ secrets.VSCE_PAT }} + pat: ${{ secrets.OPEN_VSX_TOKEN }} + - name: Publish to Visual Studio Marketplace + uses: HaaLeo/publish-vscode-extension@v0 + with: + pat: ${{ secrets.VSCE_PAT }} + registryUrl: https://marketplace.visualstudio.com + extensionFile: ${{ steps.publishToOpenVSX.outputs.vsixPath }} + packagePath: '' diff --git a/README.md b/README.md index e6f4111..a958602 100644 --- a/README.md +++ b/README.md @@ -8,12 +8,35 @@ Write down notes directly in the sidebar using markdown. - Multiple pages - Github Flavored Markdown Support +- The notes are saved when you close the editor + +## Available configurations + +- `sidebar-markdown-notes.leftMargin`: Adds a left margin to the entire view so it aligns with other content in the sidebar. ## Release Notes +### 1.0.4 + +- Added the `sidebar-markdown-notes.leftMargin` setting +- Changed background color from `--vscode-editor-background` to `--vscode-sideBar-background` +- Added the extension to [Open VSX Registry](https://open-vsx.org/) + +### 1.0.3 + +- Fixed a bug where switching from preview/edit mode would not display anything + +### 1.0.2 + +- Fixed a bug when loading saved nodes when switching pages + +### 1.0.1 + +- Fixed a readme typo + ### 1.0.0 -Initial Release 🎉 +- Initial Release 🎉 --- diff --git a/package.json b/package.json index 94c31fa..aeefddf 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "sidebar-markdown-notes", "displayName": "sidebar-markdown-notes", "description": "Take notes in your sidebar using markdown", - "version": "1.0.3", + "version": "1.0.4", "publisher": "assisrMatheus", "author": { "email": "assisr.matheus@gmail.com",