Skip to content

Commit

Permalink
v1.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stkb committed Jul 20, 2020
1 parent 9439581 commit 51010c4
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 19 deletions.
17 changes: 11 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
See also [https://github.com/stkb/vscode-rewrap/releases](https://github.com/stkb/vscode-rewrap/releases) (for working links to issues)

## Unreleased

- Markdown: Fix preserving indents in blockquote (#204) [attempt 2].
## 1.13.0

- Change to how the indent of comment content is handled. Now, instead of taking
the indent of the first line and applying it to rest of the comment, the whole
comment is taken as-is with all indents being relative to the least indented
line (that has text). [This allows the first line of a comment to be an
indented code
block](https://github.com/stkb/Rewrap/issues/203#issuecomment-637767932),
which previously wasn't possible.
- Fix issues that broke wrapping for extension-contributed languages in v1.12.0.
- Markdown: Fix preserving indents in blockquote (#204).
- Fix HTML not working in Visual Studio.
- Change how comment content is handled to allow indented code block on first
line.
- Fix issues that broke extension-contributed languages

## 1.12.0

Expand Down
16 changes: 5 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,10 @@
**Latest version: 1.12.0**. New in this version ([full
**Latest version: 1.13.0**. New in this version ([full
changelog](https://github.com/stkb/vscode-rewrap/releases)):

Lots of minor improvements. General:
- Can now preserve a line break after any line by ending it with two spaces (was just for Markdown, now for all types).
- VSCode: support new ruler objects in settings.

Language-specific:
- LaTeX: break after a paragraph that ends in an end-of-line comment.
- LaTeX: allow any number of optional arguments to commands.
- Python & Julia: all triple-quote strings should now work (however rST support is not there yet).
- Support Octave
- .Net XML docs: Only preserve line breaks before/after certain "block" elements; wrap all other elements inline.
- Change to how the indent of comment content is handled. This allows the first line of a comment to be an indented code block, which previously wasn't possible.
- Fix issues that broke wrapping for extension-contributed languages in v1.12.0.
- Markdown: Fix preserving indents in blockquote.
- Fix HTML not working in Visual Studio.


# Rewrap
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"fill",
"multi-root ready"
],
"version": "1.12.1-beta.6",
"version": "1.13.0",
"publisher": "stkb",
"icon": "images/logo.png",
"repository": {
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="1.12.0.6" Language="en-US" Publisher="stkb" />
<Identity Id="Rewrap.stkb.4d01f0ab-ed41-47cc-a43f-777f84fcf51e" Version="1.13.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

0 comments on commit 51010c4

Please sign in to comment.