Skip to content

Commit 24e64b2

Browse files
authored
💄 (#9)
1 parent cba7177 commit 24e64b2

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

‎package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@
3838
"onCommand:gitpod.api.autoTunnel",
3939
"onCommand:gitpod.showReleaseNotes",
4040
"onAuthenticationRequest:gitpod",
41-
"onUri"
41+
"onUri",
42+
"onStartupFinished"
4243
],
4344
"contributes": {
4445
"authentication": [

‎src/releaseNotes.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,10 +113,10 @@ class ReleaseNotesPanel {
113113
if (!info) {
114114
return content;
115115
}
116-
116+
const releaseDate = Intl.DateTimeFormat('en-US', { dateStyle: 'long' }).format(new Date(releaseId));
117117
return [
118118
`# ${info.title}`,
119-
`> Published at ${releaseId}, see also https://gitpod.io/changelog`,
119+
`> Published on ${releaseDate}, see also https://www.gitpod.io/changelog`,
120120
`![${info.alt ?? 'image'}](https://www.gitpod.io/images/changelog/${info.image})`,
121121
content,
122122
].join('\n\n');

0 commit comments

Comments
 (0)