Skip to content

Commit f5b8e9b

Browse files
committed
feat(plugin-obs): add script to auto record video
1 parent 402d7df commit f5b8e9b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+3674
-1994
lines changed

demo/love/.browserslistrc

Lines changed: 0 additions & 3 deletions
This file was deleted.

demo/love/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"scripts": {
77
"build": "adv build",
88
"dev": "nodemon -w '../../packages/**/dist/*.js' --exec \"adv ./index.adv.md --open=false --log=info\"",
9+
"export": "adv export",
910
"preview": "vite preview --host",
1011
"preview-https": "serve dist"
1112
},

demo/starter/.browserslistrc

Lines changed: 0 additions & 3 deletions
This file was deleted.

docs/.vitepress/config.ts

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ function sidebarAGUI(): DefaultTheme.SidebarItem[] {
178178
function sidebarGuide(): DefaultTheme.SidebarItem[] {
179179
return [
180180
{
181-
text: 'Guide',
181+
text: '指南',
182182
collapsed: false,
183183
items: [
184184
{
@@ -197,6 +197,10 @@ function sidebarGuide(): DefaultTheme.SidebarItem[] {
197197
text: '导出',
198198
link: '/guide/export',
199199
},
200+
{
201+
text: '录制视频',
202+
link: '/guide/record/video',
203+
},
200204
],
201205
},
202206
{
@@ -207,6 +211,11 @@ function sidebarGuide(): DefaultTheme.SidebarItem[] {
207211
text: '基础配置',
208212
link: '/guide/config/',
209213
},
214+
215+
{
216+
text: '动画',
217+
link: '/guide/config/animation',
218+
},
210219
],
211220
},
212221
{
@@ -231,14 +240,9 @@ function sidebarGuide(): DefaultTheme.SidebarItem[] {
231240
{ text: '基础语法', link: '/guide/advscript/syntax' },
232241
{ text: '扩展语法', link: '/guide/advscript/code' },
233242
{ text: '常见问题', link: '/guide/advscript/faq' },
234-
],
235-
},
236-
{
237-
text: 'TypeScript',
238-
collapsed: false,
239-
items: [
243+
240244
{
241-
text: '如何使用',
245+
text: '与 TypeScript 使用',
242246
link: '/guide/typescript/how',
243247
},
244248
],
@@ -342,6 +346,7 @@ const ContributingSidebar: DefaultTheme.SidebarItem[] = [
342346
],
343347
},
344348
]
349+
345350
const sidebar: DefaultTheme.Config['sidebar'] = {
346351
'/api/': typedocSidebar,
347352

docs/guide/config/animation.md

Lines changed: 5 additions & 0 deletions

docs/guide/export.md

Lines changed: 10 additions & 2 deletions

docs/guide/record.md

Lines changed: 8 additions & 0 deletions

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"@iconify-json/file-icons": "catalog:",
2121
"@iconify-json/logos": "catalog:",
2222
"@iconify-json/vscode-icons": "catalog:",
23-
"typedoc-plugin-markdown": "^4.4.1",
23+
"typedoc-plugin-markdown": "^4.4.2",
2424
"typedoc-plugin-merge-modules": "catalog:",
2525
"typedoc-vitepress-theme": "^1.1.2",
2626
"unocss": "catalog:",

editor/core/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"type": "module",
44
"version": "0.0.1",
55
"private": true,
6-
"packageManager": "[email protected]",
76
"description": "ADV.JS Editor",
87
"scripts": {
98
"build": "nuxi build",

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"type": "module",
44
"version": "0.0.1",
55
"private": true,
6-
"packageManager": "pnpm@9.15.4",
6+
"packageManager": "pnpm@10.5.2",
77
"description": "面向未来与前端的 ADV 文字冒险游戏引擎。",
88
"author": {
99
"name": "YunYouJun",
@@ -72,9 +72,9 @@
7272
"@advjs/plugin-babylon": "workspace:*",
7373
"@advjs/theme-default": "workspace:*",
7474
"@advjs/types": "workspace:*",
75-
"@antfu/eslint-config": "^4.1.0",
75+
"@antfu/eslint-config": "^4.3.0",
7676
"@antfu/ni": "catalog:",
77-
"@playwright/test": "^1.50.0",
77+
"@playwright/test": "^1.50.1",
7878
"@types/fs-extra": "catalog:",
7979
"@types/howler": "catalog:",
8080
"@types/node": "catalog:",
@@ -83,7 +83,7 @@
8383
"@types/unist": "catalog:",
8484
"@types/wicg-file-system-access": "catalog:",
8585
"@types/yargs": "catalog:",
86-
"@unocss/eslint-plugin": "^65.4.3",
86+
"@unocss/eslint-plugin": "^65.5.0",
8787
"@webgpu/types": "catalog:",
8888
"advjs": "workspace:*",
8989
"bumpp": "catalog:",
@@ -98,7 +98,7 @@
9898
"tsup": "catalog:",
9999
"tsx": "catalog:",
100100
"typedoc": "catalog:",
101-
"typescript": "^5.7.3",
101+
"typescript": "^5.8.2",
102102
"unbuild": "catalog:",
103103
"vite": "catalog:",
104104
"vitest": "catalog:",

0 commit comments

Comments
 (0)