Skip to content

Commit

Permalink
Merge branch 'feature/encoding' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
unknown committed Jul 25, 2018
2 parents d2d8e44 + 598e2ab commit e8cea80
Show file tree
Hide file tree
Showing 5 changed files with 3,062 additions and 28 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,20 @@ This extension requires that you're either:
Currently there are no settings
## Known Issues

- Likely to be incompatible with Mac. ([Pull requests welcome!](https://github.com/BeauAgst/blamer-vs/issues/1))
- Possibly 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.3.2
- Fixed decoration issue causing characters to show incorrectly dependant on the language [#6](https://github.com/BeauAgst/blamer-vs/issues/6)

## 0.3.1
- Removed formatting error in decoration caused by conflict with `mailto:`
- Added icon to extension

## 0.3.0
- Linux support added.
- Linux support added. [#2](https://github.com/BeauAgst/blamer-vs/issues/2)

## 0.2.0
- Added keyboard shortcut
Expand Down
2 changes: 1 addition & 1 deletion functions/formatDate.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ module.exports = (dateString) => {
const monthIndex = date.getMonth();
const year = date.getFullYear();

return `${days[dayIndex]} the ${day}${nth(day)} of ${months[monthIndex]} ${year}`;
return `${days[dayIndex]} ${day}${nth(day)} ${months[monthIndex]} ${year}`;
};
Loading

0 comments on commit e8cea80

Please sign in to comment.