Skip to content

Commit 2c61de7

Browse files
committed
0.0.29
1 parent 3bbcae2 commit 2c61de7

File tree

2 files changed

+34
-23
lines changed

2 files changed

+34
-23
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 32 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,16 @@
22
"name": "vscode-demo-time",
33
"displayName": "Demo Time",
44
"description": "Unlock a new dimension in presenting coding demos – effortlessly click through them as if they were presentation slides, thanks to this VSCode extension.",
5-
"version": "0.0.28",
5+
"version": "0.0.29",
66
"preview": true,
77
"publisher": "eliostruyf",
88
"galleryBanner": {
99
"color": "#86836D",
1010
"theme": "dark"
1111
},
1212
"icon": "assets/demo-time-128x128.png",
13-
"badges": [{
13+
"badges": [
14+
{
1415
"description": "version",
1516
"url": "https://img.shields.io/github/package-json/v/estruyf/vscode-demo-time?color=green&label=vscode-demo-time&style=flat-square",
1617
"href": "https://github.com/estruyf/vscode-demo-time"
@@ -93,7 +94,8 @@
9394
}
9495
}
9596
},
96-
"commands": [{
97+
"commands": [
98+
{
9799
"command": "demo-time.start",
98100
"title": "Start",
99101
"category": "Demo Time",
@@ -165,7 +167,8 @@
165167
}
166168
],
167169
"menus": {
168-
"commandPalette": [{
170+
"commandPalette": [
171+
{
169172
"command": "demo-time.runById",
170173
"when": "false"
171174
},
@@ -194,7 +197,8 @@
194197
"when": "false"
195198
}
196199
],
197-
"view/title": [{
200+
"view/title": [
201+
{
198202
"command": "demo-time.togglePresentationMode",
199203
"when": "view == demo-time && !config.demoTime.presentationMode",
200204
"group": "navigation@0"
@@ -215,7 +219,8 @@
215219
"group": "navigation@-1"
216220
}
217221
],
218-
"view/item/context": [{
222+
"view/item/context": [
223+
{
219224
"command": "demo-time.start",
220225
"when": "view == demo-time && viewItem == demo-time.file",
221226
"group": "inline@1"
@@ -238,21 +243,27 @@
238243
]
239244
},
240245
"views": {
241-
"explorer": [{
242-
"id": "demo-time",
243-
"name": "Demo Time",
244-
"icon": "assets/logo-small.svg"
245-
}]
246+
"explorer": [
247+
{
248+
"id": "demo-time",
249+
"name": "Demo Time",
250+
"icon": "assets/logo-small.svg"
251+
}
252+
]
246253
},
247-
"viewsWelcome": [{
248-
"view": "demo-time",
249-
"contents": "Hello and welcome to Demo Time! You can use this extension to help you during coding demos.\n\nGet started creating a `.demo/demo.json` file in your workspace or by clicking on the initialize button.\n\n[Initialize](command:demo-time.initialize)"
250-
}],
251-
"keybindings": [{
252-
"command": "demo-time.start",
253-
"key": "right",
254-
"when": "demo-time.presentation"
255-
}]
254+
"viewsWelcome": [
255+
{
256+
"view": "demo-time",
257+
"contents": "Hello and welcome to Demo Time! You can use this extension to help you during coding demos.\n\nGet started creating a `.demo/demo.json` file in your workspace or by clicking on the initialize button.\n\n[Initialize](command:demo-time.initialize)"
258+
}
259+
],
260+
"keybindings": [
261+
{
262+
"command": "demo-time.start",
263+
"key": "right",
264+
"when": "demo-time.presentation"
265+
}
266+
]
256267
},
257268
"scripts": {
258269
"vscode:prepublish": "npm run compile",
@@ -274,4 +285,4 @@
274285
"tsup": "^8.0.1",
275286
"typescript": "^5.2.2"
276287
}
277-
}
288+
}

0 commit comments

Comments
 (0)