Skip to content

Commit

Permalink
Updates:
Browse files Browse the repository at this point in the history
Changelog
Version number
Decoration formatting
  • Loading branch information
unknown committed Jun 28, 2018
1 parent 78a95e1 commit 5f52c99
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 12 deletions.
14 changes: 10 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
- Fixed readme typo

## 0.1.0
- Initial release
22 changes: 16 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion decoration.js
Original file line number Diff line number Diff line change
Expand Up @@ -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}`)
}]
);
},
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 5f52c99

Please sign in to comment.