From be82ed35717a01a6281db1db5f91422917367b01 Mon Sep 17 00:00:00 2001 From: Steve Baker Date: Mon, 21 Feb 2022 12:40:59 +0100 Subject: [PATCH] v17.8 --- CHANGELOG.md | 34 ++++++++++++++++++++++++++++++++ vs/source.extension.vsixmanifest | 2 +- vscode/package-lock.json | 4 ++-- vscode/package.json | 2 +- 4 files changed, 38 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b4743b8..b2ab887 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,39 @@ See also [https://github.com/stkb/vscode-rewrap/releases](https://github.com/stkb/vscode-rewrap/releases) (for working links to issues) +#### 17.8 +- Fix error when using "Rewrap At..." command (#324) +#### 17.7 +- New feature: Run rewrap on save (#165) +- Markdown: Fix front-matter marker rules (#321) +- Support VS Code for the Web (#314): Attempt 2 +#### 17.6 +- Support .rmd files as markdown (#245) +- Basic support for Textile files as markdown (#271) +- Support FIDL (#255), Pascal/Delphi (#97) & pylintrc files (#121) +- Shell script: Ignore shebangs (#129) +- Attempt at supporting VS Code for the Web (#314) +#### 17.5 +- Add '//'-comments to CSS (workaround for #309) +- Fix batch files: case-insensitive "REM" and "@" prefix (#313) +- Fix the document being 'modified' if there were no actual changes (#308, #315) +- Rewritten code that applies edits to the document and fixes the selections after + wrapping. Is more efficient and should hopefully fix issues with autowrap when typing + too fast (#207). For the most part you should notice no changes but please report any + bugs where the selection after wrapping is not as expected. +#### 17.4 +- Make the rule of ending a line with 2 spaces to preserve the line-break after work everywhere. +- Support Prisma (#306) +#### 17.3 +- MDX files: Treat as Markdown. +#### 17.2 +- Lua: Support `--[=[` block comments (#290) +- VS Code: Attempt to prevent rare "TextEditor has been disposed" error (#100) +#### 17.1 +- VS Code: Change extension activation event from on startup to "onStartupFinished". This + should help to avoid slowing down VS Code startup. Testing to see if any problems come + from this. + + --- diff --git a/vs/source.extension.vsixmanifest b/vs/source.extension.vsixmanifest index 0eabe9c..de83823 100644 --- a/vs/source.extension.vsixmanifest +++ b/vs/source.extension.vsixmanifest @@ -1,7 +1,7 @@ - + Rewrap Re-wraps comments and other text https://github.com/stkb/Rewrap diff --git a/vscode/package-lock.json b/vscode/package-lock.json index 60217ef..353a36b 100644 --- a/vscode/package-lock.json +++ b/vscode/package-lock.json @@ -1,12 +1,12 @@ { "name": "rewrap", - "version": "17.0.0", + "version": "17.8.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "rewrap", - "version": "17.0.0", + "version": "17.8.0", "license": "SEE LICENSE IN LICENSE", "devDependencies": { "fast-diff": "^1.2.0", diff --git a/vscode/package.json b/vscode/package.json index 56302f9..41a1660 100644 --- a/vscode/package.json +++ b/vscode/package.json @@ -12,7 +12,7 @@ "paragraph", "multi-root ready" ], - "version": "17.0.0", + "version": "17.8.0", "publisher": "stkb", "icon": "logo.png", "repository": {