Skip to content

Commit e40fcf8

Browse files
committed
Release 0.2.0
1 parent 9b8d5b7 commit e40fcf8

File tree

3 files changed

+21
-11
lines changed

3 files changed

+21
-11
lines changed

CHANGELOG.md

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
# Change Log
2+
#### Version 0.2.0
3+
- [breaking change] Added 'postfix' string. Update extension configuration with 'postfix' field
4+
- Added icon.
5+
26
#### Version 0.1.2
3-
Fix version numbering.
7+
- Fix version numbering.
48

59
#### Version 0.1.1
6-
Updated README.md
10+
- Updated README.md
711

812
#### Version 0.1.0
9-
Updated extension to meet Marketplace requirements.
13+
- Updated extension to meet Marketplace requirements.
1014

1115
#### Version 0.0.1
12-
Initial version with basic regex search, match and generate url link.
16+
- Initial version with basic regex search, match and generate url link.

README.md

+12-6
Original file line numberDiff line numberDiff line change
@@ -2,35 +2,41 @@
22
This is the README for the Visual Studio Code extension named "Regex Show Go".
33

44
## Features
5-
When hovering a line in Visual Studio Code, the line text is matched against one or several regex patterns. If a match is found, a hover box is shown with a link which is created from a match-prefix and the actual match. See Extension Settings section for configuration.
5+
When hovering a line in Visual Studio Code, the line text is matched against one or several regex patterns. If a match is found, a hover box is shown with a link which is created from a match-prefix and the actual match and a match-postfix. See Extension Settings section for configuration.
66

77
## Extension Settings
88
To use the extension, you must configure a regex match pattern and a match prefix. See configuration example:
99
```
1010
"regex_show_go.config.match": [
1111
{
1212
"match_pattern": "WIKI[0-9-]+",
13-
"prefix": "https://duckduckgo.com/?q="
13+
"prefix": "https://duckduckgo.com/?q=",
14+
"postfix" ""
1415
},
1516
{
1617
"match_pattern": "TEST[0-9-]+",
1718
"prefix": "https://www.imdb.com/find?q="
19+
"postfix": "-test"
1820
}
1921
```
2022
If a line contains the word "WIKI-123", the following link is generated "https://duckduckgo.com/?q=WIKI-123" when hovering the line.
2123

2224
## Release Notes
25+
#### Version 0.2.0
26+
- [breaking change] Added 'postfix' string. Update extension configuration with 'postfix' field
27+
- Added icon.
28+
2329
#### Version 0.1.2
24-
Fix version numbering.
30+
- Fix version numbering.
2531

2632
#### Version 0.1.1
27-
Updated README.md
33+
- Updated README.md
2834

2935
#### Version 0.1.0
30-
Updated extension to meet Marketplace requirements.
36+
- Updated extension to meet Marketplace requirements.
3137

3238
#### Version 0.0.1
33-
Initial version with basic regex search, match and generate url link.
39+
- Initial version with basic regex search, match and generate url link.
3440

3541
## Known Issues
3642
None

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "Regex Show Go",
44
"publisher": "Kjeldgaard",
55
"description": "",
6-
"version": "0.1.2",
6+
"version": "0.2.0",
77
"engines": {
88
"vscode": "^1.46.0"
99
},

0 commit comments

Comments
 (0)