diff --git a/CHANGELOG.md b/CHANGELOG.md index 685ed64..32092f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,15 @@ # Change Log All notable changes to the "blamer-vs" extension will be documented in this file. -## 0.1.0 -- Initial release +## 0.3.1 +- Removed formatting error in decoration caused by conflict with `mailto:` + +## 0.3.0 +- Linux support added. -## 0.1.1 +## 0.2.0 - Added keyboard shortcut -- Fixed readme typo \ No newline at end of file +- Fixed readme typo + +## 0.1.0 +- Initial release \ No newline at end of file diff --git a/README.md b/README.md index a26836a..88ad351 100644 --- a/README.md +++ b/README.md @@ -28,21 +28,31 @@ For example if you're working on a project and you want to see who modified a sp ## Requirements -This extension requires that you're on a Windows machine and have Tortoise SVN installed, with command-line tools. +This extension requires that you're either: + +* On a Windows machine with Tortoise SVN installed, with command-line tools. +* A Unix machine. ## Extension Settings Currently there are no settings ## Known Issues -- Likely to be imcompatible with Mac & Linux. ([Pull requests welcome!](https://github.com/BeauAgst/blamer-vs/issues)) +- Likely to be incompatible with Mac. ([Pull requests welcome!](https://github.com/BeauAgst/blamer-vs/issues/1)) - A little bit slow, because all unique logs have to be retrieved first. ([Issue](https://github.com/BeauAgst/blamer-vs/issues/3)) ## Release Notes -### 0.2.0 -Added keyboard shortcut -### 0.1.0 -Initial build of extension +## 0.3.1 +- Removed formatting error in decoration caused by conflict with `mailto:` +- Added icon to extension + +## 0.3.0 +- Linux support added. +## 0.2.0 +- Added keyboard shortcut +- Fixed readme typo +## 0.1.0 +- Initial release \ No newline at end of file diff --git a/decoration.js b/decoration.js index 6974aac..b373d6e 100644 --- a/decoration.js +++ b/decoration.js @@ -14,7 +14,7 @@ const decoration = { icon, [{ range: new vscode.Range(parseInt(line),0,parseInt(line),1000), - hoverMessage: new vscode.MarkdownString(`**${revision.email}**\n\n${revision.date}\n\n${revision.message}`) + hoverMessage: new vscode.MarkdownString(`${revision.email}\n\n${revision.date}\n\n${revision.message}`) }] ); }, diff --git a/package.json b/package.json index dbd0d8a..ff549f7 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "blamer-vs", "displayName": "SVN Gutter", "description": "Visually blame SVN-stored code line-by-line", - "version": "0.2.0", + "version": "0.3.1", "publisher": "beaugust", "repository": { "type": "git",