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
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
6
6
7
7
## [Unreleased]
8
8
9
+
### Added
10
+
11
+
- Adds `gitlens.defaultDateShortFormat` setting to specify how short absolute dates will be formatted by default
12
+
13
+
### Changed
14
+
15
+
- Changes the fetch date in the _Repositories_ view to respect the date style setting (`gitlens.defaultDateStyle`) and uses the new `gitlens.defaultDateShortFormat` setting for formatting
16
+
9
17
### Fixed
10
18
11
19
- Fixes [#605](https://github.com/eamodio/vscode-gitlens/issues/605)— Show More Commits not working
|`gitlens.defaultDateFormat`| Specifies how absolute dates will be formatted by default. See the [Moment.js docs](https://momentjs.com/docs/#/displaying/format/) for valid formats |
658
+
|`gitlens.defaultDateShortFormat`| Specifies how short absolute dates will be formatted by default. See the [Moment.js docs](https://momentjs.com/docs/#/displaying/format/) for valid formats |
658
659
|`gitlens.defaultDateStyle`| Specifies how dates will be displayed by default |
659
660
|`gitlens.defaultGravatarsStyle`| Specifies the style of the gravatar default (fallback) images<br /><br />`identicon` - a geometric pattern<br />`mm` - a simple, cartoon-style silhouetted outline of a person (does not vary by email hash)<br />`monsterid` - a monster with different colors, faces, etc<br />`retro` - 8-bit arcade-style pixelated faces<br />`robohash` - a robot with different colors, faces, etc<br />`wavatar` - a face with differing features and backgrounds |
660
661
|`gitlens.insiders`| Specifies whether to enable experimental features |
Copy file name to clipboardExpand all lines: package.json
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -419,6 +419,12 @@
419
419
"markdownDescription": "Specifies how absolute dates will be formatted by default. See the [Moment.js docs](https://momentjs.com/docs/#/displaying/format/) for valid formats",
420
420
"scope": "window"
421
421
},
422
+
"gitlens.defaultDateShortFormat": {
423
+
"type": "string",
424
+
"default": null,
425
+
"markdownDescription": "Specifies how short absolute dates will be formatted by default. See the [Moment.js docs](https://momentjs.com/docs/#/displaying/format/) for valid formats",
0 commit comments