Skip to content

Commit

Permalink
v17.8
Browse files Browse the repository at this point in the history
  • Loading branch information
stkb committed Feb 21, 2022
1 parent c32a0d7 commit be82ed3
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 4 deletions.
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.


---


Expand Down
2 changes: 1 addition & 1 deletion vs/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="Rewrap.stkb.4d01f0ab-ed41-47cc-a43f-777f84fcf51e" Version="17.0.0.0" Language="en-US" Publisher="stkb" />
<Identity Id="Rewrap.stkb.4d01f0ab-ed41-47cc-a43f-777f84fcf51e" Version="17.8.0.0" Language="en-US" Publisher="stkb" />
<DisplayName>Rewrap</DisplayName>
<Description xml:space="preserve">Re-wraps comments and other text</Description>
<MoreInfo>https://github.com/stkb/Rewrap</MoreInfo>
Expand Down
4 changes: 2 additions & 2 deletions vscode/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"paragraph",
"multi-root ready"
],
"version": "17.0.0",
"version": "17.8.0",
"publisher": "stkb",
"icon": "logo.png",
"repository": {
Expand Down

0 comments on commit be82ed3

Please sign in to comment.