You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,10 @@
1
1
# Change Log
2
2
3
-
## 2.3.0 (March 24, 2018) [WIP]
3
+
## 2.3.1 (March 24, 2018)
4
+
5
+
* Fix: Updating Readme
6
+
7
+
## 2.3.0 (March 24, 2018)
4
8
5
9
* Feature: Atempting to auto detect if you use a known git web interface [#15](https://github.com/Sertion/vscode-gitblame/issues/15) (Thanks to [@Fidge123](https://github.com/Fidge123), [@sabrehagen](https://github.com/sabrehagen), [@henvic](https://github.com/henvic), and an extra thanks to [@neerolyte](https://github.com/neerolyte))
6
10
* Feature: Added `gitblame.statusBarPositionPriority` for moving the status bar view [#25](https://github.com/Sertion/vscode-gitblame/issues/25) (Thanks to [@jvoigt](https://github.com/jvoigt))
- message that appears when the `gitblame.quickInfo` command executes (when you click the status bar message)
32
-
- available tokens:
33
-
-`${commit.hash}` - 40-bit hash unique to the commit
34
-
-`${commit.hash_short,length}` - the first `length` characters of the 40-bit hash unique to the commit, defaults to `7` first characters
35
-
-`${commit.summary}` - the first line of the commit message
36
-
-`${commit.filename}` - the file name where the line was committed
37
-
-`${author.name}` - the commit author's name
38
-
-`${author.email}` - the commit author's e-mail
39
-
-`${author.timestamp}` - timestamp for the commit author's commit
40
-
-`${author.tz}` - the commit author's time zone
41
-
-`${committer.name}` - the committer's name
42
-
-`${committer.email}` - the committer's e-mail
43
-
-`${committer.timestamp}` - timestamp for the committer's commit
44
-
-`${committer.tz}` - the committer's time zone
45
-
-`${time.ago}` - displays an estimation of how long ago the author committed (e.g. `10 hours ago`, `20 days ago`, `4 months ago`)
46
-
-`${time.custom,your_format}` - custom time format based on [momentjs.format(your_format)](https://momentjs.com/docs/#/displaying/format/) (uses author timestamp)
47
-
-`${time.from}` - format based on [momentjs.fromNow()](https://momentjs.com/docs/#/displaying/fromnow/) (uses author timestamp)
48
-
-`${time.c_ago}` - displays an estimation of how long ago the committer committed (e.g. `10 hours ago`, `20 days ago`, `4 months ago`)
49
-
-`${time.c_custom,your_format}` - custom time format based on [momentjs.format(your_format)](https://momentjs.com/docs/#/displaying/format/) (uses committer timestamp)
50
-
-`${time.c_from}` - format based on [momentjs.fromNow()](https://momentjs.com/docs/#/displaying/fromnow/) (uses committer timestamp)
|`${commit.hash}`| No | - | - | 40-bit hash unique to the commit |
60
+
|`${commit.hash_short,length}`| Yes |`length`| 7 | the first `length` characters of the 40-bit hash unique to the commit |
61
+
|`${commit.summary}`| No | - | - | the first line of the commit message |
62
+
|`${commit.filename}`| No | - | - | the file name where the line was committed |
63
+
|`${author.name}`| No | - | - | the commit author's name |
64
+
|`${author.email}`| No | - | - | the commit author's e-mail |
65
+
|`${author.timestamp}`| No | - | - | timestamp for the commit author's commit |
66
+
|`${author.tz}`| No | - | - | the commit author's time zone |
67
+
|`${committer.name}`| No | - | - | the committer's name |
68
+
|`${committer.email}`| No | - | - | the committer's e-mail |
69
+
|`${committer.timestamp}`| No | - | - | timestamp for the committer's commit |
70
+
|`${committer.tz}`| No | - | - | the committer's time zone |
71
+
|`${time.ago}`| No | - | - | displays an estimation of how long ago the author committed (e.g. `10 hours ago`, `20 days ago`, `4 months ago`) |
72
+
|`${time.custom,format}`| Yes |`format`|`undefined`| custom time format based on [momentjs.format(format)](https://momentjs.com/docs/#/displaying/format/) (uses author timestamp) |
73
+
|`${time.from}`| No | - | - | format based on [momentjs.fromNow()](https://momentjs.com/docs/#/displaying/fromnow/) (uses author timestamp) |
74
+
|`${time.c_ago}`| No | - | - | displays an estimation of how long ago the committer committed (e.g. `10 hours ago`, `20 days ago`, `4 months ago`) |
75
+
|`${time.c_custom,format}`| No |`format`|`undefined`| custom time format based on [momentjs.format(format)](https://momentjs.com/docs/#/displaying/format/) (uses committer timestamp) |
76
+
|`${time.c_from}`| No | - | - | format based on [momentjs.fromNow()](https://momentjs.com/docs/#/displaying/fromnow/) (uses committer timestamp) |
0 commit comments