Skip to content

Commit 5becc63

Browse files
committed
ref #18 Bump up version to 1.0.0
1 parent 28b26ac commit 5becc63

File tree

3 files changed

+22
-8
lines changed

3 files changed

+22
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to "Partial Diff" extension will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8-
## Unreleased
8+
## [1.0.0] - 2018-04-19
99
### Added
1010
- Text normalisation rules can now be toggled off without changing the configuration. [#18](https://github.com/ryu1kn/vscode-partial-diff/issues/18)
1111

README.md

Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,29 @@
1515

1616
## Commands
1717

18-
* `Select Text for Compare`: Marks the selected text as the text to compare the next selection with.
19-
* `Compare Text with Previous Selection`: Compares the selected text to the first selection.
20-
* `Compare Text with Clipboard`: Compares the current clipboard to the selected text.
21-
* `Compare Text in Visible Editors`: Compares text in 2 visible editors.
22-
* `Toggle Pre-Comparison Text Normalization Rules`: Toggle pre-comparison text normalization rules.
18+
* `Select Text for Compare` (**Command ID:** `extension.partialDiff.markSection1`)
19+
20+
Marks the selected text as the text to compare the next selection with.
21+
22+
* `Compare Text with Previous Selection` (**Command ID:** `extension.partialDiff.markSection2AndTakeDiff`)
23+
24+
Compares the selected text to the first selection.
25+
26+
* `Compare Text with Clipboard` (**Command ID:** `extension.partialDiff.diffSelectionWithClipboard`)
27+
28+
Compares the current clipboard to the selected text.
29+
30+
* `Compare Text in Visible Editors` (**Command ID:** `extension.partialDiff.diffVisibleEditors`)
31+
32+
Compares text in 2 visible editors.
33+
34+
* `Toggle Pre-Comparison Text Normalization Rules` (**Command ID:** `extension.partialDiff.togglePreComparisonTextNormalizationRules`)
35+
36+
Toggle pre-comparison text normalization rules.
2337

2438
**NOTE:**
2539

26-
* A diff will be shown only after selecting comparison text first (using `Select Text for Compare`).
40+
* A diff will be shown only after selecting comparison text first (using `Select Text for Compare`) except `Compare Text in Visible Editors`.
2741
* Executing `Select Text for Compare`, `Compare Text with Previous Selection` or `Compare Text in Visible Editors` command without selecting any text will use the entire text of the current file.
2842

2943
## Configurations

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "partial-diff",
33
"displayName": "Partial Diff",
44
"description": "Compare (diff) text selections within a file, across files, or to the clipboard",
5-
"version": "0.6.0",
5+
"version": "1.0.0",
66
"publisher": "ryu1kn",
77
"license": "SEE LICENSE IN LICENSE.txt",
88
"icon": "images/partial-diff_128x128.png",

0 commit comments

Comments
 (0)