File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 38
38
" onCommand:gitpod.api.autoTunnel" ,
39
39
" onCommand:gitpod.showReleaseNotes" ,
40
40
" onAuthenticationRequest:gitpod" ,
41
- " onUri"
41
+ " onUri" ,
42
+ " onStartupFinished"
42
43
],
43
44
"contributes" : {
44
45
"authentication" : [
Original file line number Diff line number Diff line change @@ -113,10 +113,10 @@ class ReleaseNotesPanel {
113
113
if ( ! info ) {
114
114
return content ;
115
115
}
116
-
116
+ const releaseDate = Intl . DateTimeFormat ( 'en-US' , { dateStyle : 'long' } ) . format ( new Date ( releaseId ) ) ;
117
117
return [
118
118
`# ${ info . title } ` ,
119
- `> Published at ${ releaseId } , see also https://gitpod.io/changelog` ,
119
+ `> Published on ${ releaseDate } , see also https://www. gitpod.io/changelog` ,
120
120
`` ,
121
121
content ,
122
122
] . join ( '\n\n' ) ;
You can’t perform that action at this time.
0 commit comments