diff --git a/CHANGELOG.md b/CHANGELOG.md index aa24c47..1489da4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,16 @@ # Change Log +#### Version 0.2.0 +- [breaking change] Added 'postfix' string. Update extension configuration with 'postfix' field +- Added icon. + #### Version 0.1.2 -Fix version numbering. +- Fix version numbering. #### Version 0.1.1 -Updated README.md +- Updated README.md #### Version 0.1.0 -Updated extension to meet Marketplace requirements. +- Updated extension to meet Marketplace requirements. #### Version 0.0.1 -Initial version with basic regex search, match and generate url link. +- Initial version with basic regex search, match and generate url link. diff --git a/README.md b/README.md index f3e88c3..555bdc9 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ This is the README for the Visual Studio Code extension named "Regex Show Go". ## Features -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. +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. ## Extension Settings To use the extension, you must configure a regex match pattern and a match prefix. See configuration example: @@ -10,27 +10,33 @@ To use the extension, you must configure a regex match pattern and a match prefi "regex_show_go.config.match": [ { "match_pattern": "WIKI[0-9-]+", - "prefix": "https://duckduckgo.com/?q=" + "prefix": "https://duckduckgo.com/?q=", + "postfix" "" }, { "match_pattern": "TEST[0-9-]+", "prefix": "https://www.imdb.com/find?q=" + "postfix": "-test" } ``` If a line contains the word "WIKI-123", the following link is generated "https://duckduckgo.com/?q=WIKI-123" when hovering the line. ## Release Notes +#### Version 0.2.0 +- [breaking change] Added 'postfix' string. Update extension configuration with 'postfix' field +- Added icon. + #### Version 0.1.2 -Fix version numbering. +- Fix version numbering. #### Version 0.1.1 -Updated README.md +- Updated README.md #### Version 0.1.0 -Updated extension to meet Marketplace requirements. +- Updated extension to meet Marketplace requirements. #### Version 0.0.1 -Initial version with basic regex search, match and generate url link. +- Initial version with basic regex search, match and generate url link. ## Known Issues None diff --git a/package.json b/package.json index aedb86d..1545355 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "displayName": "Regex Show Go", "publisher": "Kjeldgaard", "description": "", - "version": "0.1.2", + "version": "0.2.0", "engines": { "vscode": "^1.46.0" },