create-pixi-vn 2.1.4 → 2.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/template-lib/package.json +3 -0
- package/template-nqtr-react-vite-muijoy/package.json +2 -2
- package/template-nqtr-react-vite-muijoy/src/assets/index.ts +2 -11
- package/template-nqtr-react-vite-muijoy/src/assets/manifest.gen.json +2 -7
- package/template-nqtr-react-vite-muijoy/src/components/menus/settings/index.tsx +15 -6
- package/template-nqtr-react-vite-muijoy/src/components/menus/settings/menus/diagnostics.tsx +266 -0
- package/template-nqtr-react-vite-muijoy/src/components/menus/settings/quick-menus.tsx +25 -1
- package/template-nqtr-react-vite-muijoy/src/lib/hooks/device-diagnostics-hooks.ts +68 -0
- package/template-nqtr-react-vite-muijoy/src/lib/hooks/hotkeys-hooks.ts +16 -0
- package/template-nqtr-react-vite-muijoy/src/lib/utils/device-diagnostics-utility.ts +382 -0
- package/template-nqtr-react-vite-muijoy/src/locales/en.json +50 -0
- package/template-nqtr-react-vite-muijoy/src/pixi-vn.keys.gen.ts +4 -7
- package/template-nqtr-react-vite-muijoy-ink/package.json +3 -3
- package/template-nqtr-react-vite-muijoy-ink/src/assets/index.ts +2 -11
- package/template-nqtr-react-vite-muijoy-ink/src/assets/manifest.gen.json +2 -7
- package/template-nqtr-react-vite-muijoy-ink/src/components/menus/settings/index.tsx +15 -6
- package/template-nqtr-react-vite-muijoy-ink/src/components/menus/settings/menus/diagnostics.tsx +266 -0
- package/template-nqtr-react-vite-muijoy-ink/src/components/menus/settings/quick-menus.tsx +25 -1
- package/template-nqtr-react-vite-muijoy-ink/src/lib/hooks/device-diagnostics-hooks.ts +68 -0
- package/template-nqtr-react-vite-muijoy-ink/src/lib/hooks/hotkeys-hooks.ts +16 -0
- package/template-nqtr-react-vite-muijoy-ink/src/lib/utils/device-diagnostics-utility.ts +382 -0
- package/template-nqtr-react-vite-muijoy-ink/src/locales/en.json +50 -0
- package/template-nqtr-react-vite-muijoy-ink/src/pixi-vn.keys.gen.ts +4 -7
- package/template-nqtr-react-vite-muijoy-ink-tauri/.vscode/launch.json +1 -1
- package/template-nqtr-react-vite-muijoy-ink-tauri/.vscode/tasks.json +1 -35
- package/template-nqtr-react-vite-muijoy-ink-tauri/_github/workflows/mobile.yml +76 -13
- package/template-nqtr-react-vite-muijoy-ink-tauri/package.json +3 -3
- package/template-nqtr-react-vite-muijoy-ink-tauri/src/assets/index.ts +2 -11
- package/template-nqtr-react-vite-muijoy-ink-tauri/src/assets/manifest.gen.json +2 -7
- package/template-nqtr-react-vite-muijoy-ink-tauri/src/components/menus/settings/index.tsx +15 -6
- package/template-nqtr-react-vite-muijoy-ink-tauri/src/components/menus/settings/menus/diagnostics.tsx +332 -0
- package/template-nqtr-react-vite-muijoy-ink-tauri/src/components/menus/settings/quick-menus.tsx +32 -1
- package/template-nqtr-react-vite-muijoy-ink-tauri/src/content/ink/hashtag-commands.ts +17 -0
- package/template-nqtr-react-vite-muijoy-ink-tauri/src/lib/hooks/device-diagnostics-hooks.ts +96 -0
- package/template-nqtr-react-vite-muijoy-ink-tauri/src/lib/hooks/hotkeys-hooks.ts +16 -0
- package/template-nqtr-react-vite-muijoy-ink-tauri/src/lib/system-info.ts +54 -0
- package/template-nqtr-react-vite-muijoy-ink-tauri/src/lib/utils/device-diagnostics-utility.ts +511 -0
- package/template-nqtr-react-vite-muijoy-ink-tauri/src/locales/en.json +66 -0
- package/template-nqtr-react-vite-muijoy-ink-tauri/src/pixi-vn.keys.gen.ts +4 -7
- package/template-nqtr-react-vite-muijoy-ink-tauri/src-tauri/Cargo.toml +1 -0
- package/template-nqtr-react-vite-muijoy-ink-tauri/src-tauri/src/lib.rs +34 -22
- package/template-nqtr-react-vite-muijoy-ink-tauri/src-tauri/src/system_info.rs +33 -0
- package/template-nqtr-react-vite-muijoy-tauri/.vscode/launch.json +1 -1
- package/template-nqtr-react-vite-muijoy-tauri/.vscode/tasks.json +1 -35
- package/template-nqtr-react-vite-muijoy-tauri/_github/workflows/mobile.yml +76 -13
- package/template-nqtr-react-vite-muijoy-tauri/package.json +2 -2
- package/template-nqtr-react-vite-muijoy-tauri/src/assets/index.ts +2 -11
- package/template-nqtr-react-vite-muijoy-tauri/src/assets/manifest.gen.json +2 -7
- package/template-nqtr-react-vite-muijoy-tauri/src/components/menus/settings/index.tsx +15 -6
- package/template-nqtr-react-vite-muijoy-tauri/src/components/menus/settings/menus/diagnostics.tsx +332 -0
- package/template-nqtr-react-vite-muijoy-tauri/src/components/menus/settings/quick-menus.tsx +32 -1
- package/template-nqtr-react-vite-muijoy-tauri/src/lib/hooks/device-diagnostics-hooks.ts +96 -0
- package/template-nqtr-react-vite-muijoy-tauri/src/lib/hooks/hotkeys-hooks.ts +16 -0
- package/template-nqtr-react-vite-muijoy-tauri/src/lib/system-info.ts +54 -0
- package/template-nqtr-react-vite-muijoy-tauri/src/lib/utils/device-diagnostics-utility.ts +511 -0
- package/template-nqtr-react-vite-muijoy-tauri/src/locales/en.json +66 -0
- package/template-nqtr-react-vite-muijoy-tauri/src/pixi-vn.keys.gen.ts +4 -7
- package/template-nqtr-react-vite-muijoy-tauri/src-tauri/Cargo.toml +1 -0
- package/template-nqtr-react-vite-muijoy-tauri/src-tauri/src/lib.rs +32 -20
- package/template-nqtr-react-vite-muijoy-tauri/src-tauri/src/system_info.rs +33 -0
- package/template-react-vite-muijoy/package.json +1 -1
- package/template-react-vite-muijoy/src/assets/index.ts +55 -55
- package/template-react-vite-muijoy/src/assets/manifest.gen.json +2 -7
- package/template-react-vite-muijoy/src/components/menus/settings/index.tsx +15 -6
- package/template-react-vite-muijoy/src/components/menus/settings/menus/diagnostics.tsx +266 -0
- package/template-react-vite-muijoy/src/components/menus/settings/quick-menus.tsx +25 -1
- package/template-react-vite-muijoy/src/lib/hooks/device-diagnostics-hooks.ts +68 -0
- package/template-react-vite-muijoy/src/lib/hooks/hotkeys-hooks.ts +16 -0
- package/template-react-vite-muijoy/src/lib/utils/device-diagnostics-utility.ts +382 -0
- package/template-react-vite-muijoy/src/locales/en.json +50 -0
- package/template-react-vite-muijoy/src/pixi-vn.keys.gen.ts +2 -3
- package/template-react-vite-muijoy-ink/ink/second_part.ink +0 -1
- package/template-react-vite-muijoy-ink/ink/start.ink +4 -6
- package/template-react-vite-muijoy-ink/package.json +2 -2
- package/template-react-vite-muijoy-ink/src/assets/index.ts +55 -55
- package/template-react-vite-muijoy-ink/src/assets/manifest.gen.json +2 -7
- package/template-react-vite-muijoy-ink/src/components/menus/settings/index.tsx +15 -6
- package/template-react-vite-muijoy-ink/src/components/menus/settings/menus/diagnostics.tsx +266 -0
- package/template-react-vite-muijoy-ink/src/components/menus/settings/quick-menus.tsx +25 -1
- package/template-react-vite-muijoy-ink/src/lib/hooks/device-diagnostics-hooks.ts +68 -0
- package/template-react-vite-muijoy-ink/src/lib/hooks/hotkeys-hooks.ts +16 -0
- package/template-react-vite-muijoy-ink/src/lib/utils/device-diagnostics-utility.ts +382 -0
- package/template-react-vite-muijoy-ink/src/locales/en.json +50 -0
- package/template-react-vite-muijoy-ink/src/pixi-vn.keys.gen.ts +2 -3
- package/template-react-vite-muijoy-ink-tauri/.vscode/launch.json +1 -1
- package/template-react-vite-muijoy-ink-tauri/.vscode/tasks.json +1 -35
- package/template-react-vite-muijoy-ink-tauri/_github/workflows/mobile.yml +76 -13
- package/template-react-vite-muijoy-ink-tauri/ink/second_part.ink +0 -1
- package/template-react-vite-muijoy-ink-tauri/ink/start.ink +4 -6
- package/template-react-vite-muijoy-ink-tauri/package-lock.json +12 -12
- package/template-react-vite-muijoy-ink-tauri/package.json +2 -2
- package/template-react-vite-muijoy-ink-tauri/src/assets/index.ts +55 -55
- package/template-react-vite-muijoy-ink-tauri/src/assets/manifest.gen.json +2 -7
- package/template-react-vite-muijoy-ink-tauri/src/components/menus/settings/index.tsx +15 -6
- package/template-react-vite-muijoy-ink-tauri/src/components/menus/settings/menus/diagnostics.tsx +332 -0
- package/template-react-vite-muijoy-ink-tauri/src/components/menus/settings/quick-menus.tsx +32 -1
- package/template-react-vite-muijoy-ink-tauri/src/lib/hooks/device-diagnostics-hooks.ts +96 -0
- package/template-react-vite-muijoy-ink-tauri/src/lib/hooks/hotkeys-hooks.ts +16 -0
- package/template-react-vite-muijoy-ink-tauri/src/lib/system-info.ts +54 -0
- package/template-react-vite-muijoy-ink-tauri/src/lib/utils/device-diagnostics-utility.ts +511 -0
- package/template-react-vite-muijoy-ink-tauri/src/locales/en.json +66 -0
- package/template-react-vite-muijoy-ink-tauri/src/pixi-vn.keys.gen.ts +2 -3
- package/template-react-vite-muijoy-ink-tauri/src-tauri/Cargo.toml +1 -0
- package/template-react-vite-muijoy-ink-tauri/src-tauri/src/lib.rs +32 -20
- package/template-react-vite-muijoy-ink-tauri/src-tauri/src/system_info.rs +33 -0
- package/template-react-vite-muijoy-tauri/.vscode/launch.json +1 -1
- package/template-react-vite-muijoy-tauri/.vscode/tasks.json +1 -35
- package/template-react-vite-muijoy-tauri/_github/workflows/mobile.yml +76 -13
- package/template-react-vite-muijoy-tauri/package.json +1 -1
- package/template-react-vite-muijoy-tauri/src/assets/index.ts +55 -55
- package/template-react-vite-muijoy-tauri/src/assets/manifest.gen.json +2 -7
- package/template-react-vite-muijoy-tauri/src/components/menus/settings/index.tsx +15 -6
- package/template-react-vite-muijoy-tauri/src/components/menus/settings/menus/diagnostics.tsx +332 -0
- package/template-react-vite-muijoy-tauri/src/components/menus/settings/quick-menus.tsx +32 -1
- package/template-react-vite-muijoy-tauri/src/lib/hooks/device-diagnostics-hooks.ts +96 -0
- package/template-react-vite-muijoy-tauri/src/lib/hooks/hotkeys-hooks.ts +16 -0
- package/template-react-vite-muijoy-tauri/src/lib/system-info.ts +54 -0
- package/template-react-vite-muijoy-tauri/src/lib/utils/device-diagnostics-utility.ts +511 -0
- package/template-react-vite-muijoy-tauri/src/locales/en.json +66 -0
- package/template-react-vite-muijoy-tauri/src/pixi-vn.keys.gen.ts +2 -3
- package/template-react-vite-muijoy-tauri/src-tauri/Cargo.toml +1 -0
- package/template-react-vite-muijoy-tauri/src-tauri/src/lib.rs +32 -20
- package/template-react-vite-muijoy-tauri/src-tauri/src/system_info.rs +33 -0
|
@@ -15,11 +15,11 @@ export const manifest: AssetsManifest = {
|
|
|
15
15
|
assets: [
|
|
16
16
|
{
|
|
17
17
|
alias: "bgm_cheerful",
|
|
18
|
-
src: "https://
|
|
18
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/audio/bgm_cheerful.wav",
|
|
19
19
|
},
|
|
20
20
|
{
|
|
21
21
|
alias: "sfx_whoosh",
|
|
22
|
-
src: "https://
|
|
22
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/audio/sfx_whoosh.wav",
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
},
|
|
@@ -29,7 +29,7 @@ export const manifest: AssetsManifest = {
|
|
|
29
29
|
assets: [
|
|
30
30
|
{
|
|
31
31
|
alias: "background_main_menu",
|
|
32
|
-
src: "https://
|
|
32
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/main-menu.png",
|
|
33
33
|
},
|
|
34
34
|
],
|
|
35
35
|
},
|
|
@@ -39,7 +39,7 @@ export const manifest: AssetsManifest = {
|
|
|
39
39
|
assets: [
|
|
40
40
|
{
|
|
41
41
|
alias: "bg01-hallway",
|
|
42
|
-
src: "https://
|
|
42
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/bg01-hallway.webp",
|
|
43
43
|
},
|
|
44
44
|
],
|
|
45
45
|
},
|
|
@@ -48,7 +48,7 @@ export const manifest: AssetsManifest = {
|
|
|
48
48
|
assets: [
|
|
49
49
|
{
|
|
50
50
|
alias: "bg02-dorm",
|
|
51
|
-
src: "https://
|
|
51
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/bg02-dorm.webp",
|
|
52
52
|
},
|
|
53
53
|
],
|
|
54
54
|
},
|
|
@@ -58,67 +58,67 @@ export const manifest: AssetsManifest = {
|
|
|
58
58
|
assets: [
|
|
59
59
|
{
|
|
60
60
|
alias: "fm01-body",
|
|
61
|
-
src: "https://
|
|
61
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/fm01/fm01-body.webp",
|
|
62
62
|
},
|
|
63
63
|
{
|
|
64
64
|
alias: "fm01-eyes-grin",
|
|
65
|
-
src: "https://
|
|
65
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/fm01/fm01-eyes-grin.webp",
|
|
66
66
|
},
|
|
67
67
|
{
|
|
68
68
|
alias: "fm01-eyes-smile",
|
|
69
|
-
src: "https://
|
|
69
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/fm01/fm01-eyes-smile.webp",
|
|
70
70
|
},
|
|
71
71
|
{
|
|
72
72
|
alias: "fm01-eyes-soft",
|
|
73
|
-
src: "https://
|
|
73
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/fm01/fm01-eyes-soft.webp",
|
|
74
74
|
},
|
|
75
75
|
{
|
|
76
76
|
alias: "fm01-eyes-upset",
|
|
77
|
-
src: "https://
|
|
77
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/fm01/fm01-eyes-upset.webp",
|
|
78
78
|
},
|
|
79
79
|
{
|
|
80
80
|
alias: "fm01-eyes-wow",
|
|
81
|
-
src: "https://
|
|
81
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/fm01/fm01-eyes-wow.webp",
|
|
82
82
|
},
|
|
83
83
|
{
|
|
84
84
|
alias: "fm01-mouth-grin00",
|
|
85
|
-
src: "https://
|
|
85
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/fm01/fm01-mouth-grin00.webp",
|
|
86
86
|
},
|
|
87
87
|
{
|
|
88
88
|
alias: "fm01-mouth-serious00",
|
|
89
|
-
src: "https://
|
|
89
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/fm01/fm01-mouth-serious00.webp",
|
|
90
90
|
},
|
|
91
91
|
{
|
|
92
92
|
alias: "fm01-mouth-serious01",
|
|
93
|
-
src: "https://
|
|
93
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/fm01/fm01-mouth-serious01.webp",
|
|
94
94
|
},
|
|
95
95
|
{
|
|
96
96
|
alias: "fm01-mouth-smile00",
|
|
97
|
-
src: "https://
|
|
97
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/fm01/fm01-mouth-smile00.webp",
|
|
98
98
|
},
|
|
99
99
|
{
|
|
100
100
|
alias: "fm01-mouth-smile01",
|
|
101
|
-
src: "https://
|
|
101
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/fm01/fm01-mouth-smile01.webp",
|
|
102
102
|
},
|
|
103
103
|
{
|
|
104
104
|
alias: "fm01-mouth-soft00",
|
|
105
|
-
src: "https://
|
|
105
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/fm01/fm01-mouth-soft00.webp",
|
|
106
106
|
},
|
|
107
107
|
{
|
|
108
108
|
alias: "fm01-mouth-soft01",
|
|
109
|
-
src: "https://
|
|
109
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/fm01/fm01-mouth-soft01.webp",
|
|
110
110
|
},
|
|
111
111
|
{
|
|
112
112
|
alias: "fm01-mouth-upset00",
|
|
113
|
-
src: "https://
|
|
113
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/fm01/fm01-mouth-upset00.webp",
|
|
114
114
|
},
|
|
115
115
|
{
|
|
116
116
|
alias: "fm01-mouth-upset01",
|
|
117
|
-
src: "https://
|
|
117
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/fm01/fm01-mouth-upset01.webp",
|
|
118
118
|
},
|
|
119
119
|
{
|
|
120
120
|
alias: "fm01-mouth-wow01",
|
|
121
|
-
src: "https://
|
|
121
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/fm01/fm01-mouth-wow01.webp",
|
|
122
122
|
},
|
|
123
123
|
],
|
|
124
124
|
},
|
|
@@ -127,63 +127,63 @@ export const manifest: AssetsManifest = {
|
|
|
127
127
|
assets: [
|
|
128
128
|
{
|
|
129
129
|
alias: "fm02-body",
|
|
130
|
-
src: "https://
|
|
130
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/fm02/fm02-body.webp",
|
|
131
131
|
},
|
|
132
132
|
{
|
|
133
133
|
alias: "fm02-eyes-bawl",
|
|
134
|
-
src: "https://
|
|
134
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/fm02/fm02-eyes-bawl.webp",
|
|
135
135
|
},
|
|
136
136
|
{
|
|
137
137
|
alias: "fm02-eyes-joy",
|
|
138
|
-
src: "https://
|
|
138
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/fm02/fm02-eyes-joy.webp",
|
|
139
139
|
},
|
|
140
140
|
{
|
|
141
141
|
alias: "fm02-eyes-nervous",
|
|
142
|
-
src: "https://
|
|
142
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/fm02/fm02-eyes-nervous.webp",
|
|
143
143
|
},
|
|
144
144
|
{
|
|
145
145
|
alias: "fm02-eyes-smile",
|
|
146
|
-
src: "https://
|
|
146
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/fm02/fm02-eyes-smile.webp",
|
|
147
147
|
},
|
|
148
148
|
{
|
|
149
149
|
alias: "fm02-eyes-upset",
|
|
150
|
-
src: "https://
|
|
150
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/fm02/fm02-eyes-upset.webp",
|
|
151
151
|
},
|
|
152
152
|
{
|
|
153
153
|
alias: "fm02-eyes-wow",
|
|
154
|
-
src: "https://
|
|
154
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/fm02/fm02-eyes-wow.webp",
|
|
155
155
|
},
|
|
156
156
|
{
|
|
157
157
|
alias: "fm02-mouth-cry01",
|
|
158
|
-
src: "https://
|
|
158
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/fm02/fm02-mouth-cry01.webp",
|
|
159
159
|
},
|
|
160
160
|
{
|
|
161
161
|
alias: "fm02-mouth-nervous00",
|
|
162
|
-
src: "https://
|
|
162
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/fm02/fm02-mouth-nervous00.webp",
|
|
163
163
|
},
|
|
164
164
|
{
|
|
165
165
|
alias: "fm02-mouth-nervous01",
|
|
166
|
-
src: "https://
|
|
166
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/fm02/fm02-mouth-nervous01.webp",
|
|
167
167
|
},
|
|
168
168
|
{
|
|
169
169
|
alias: "fm02-mouth-smile00",
|
|
170
|
-
src: "https://
|
|
170
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/fm02/fm02-mouth-smile00.webp",
|
|
171
171
|
},
|
|
172
172
|
{
|
|
173
173
|
alias: "fm02-mouth-smile01",
|
|
174
|
-
src: "https://
|
|
174
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/fm02/fm02-mouth-smile01.webp",
|
|
175
175
|
},
|
|
176
176
|
{
|
|
177
177
|
alias: "fm02-mouth-upset00",
|
|
178
|
-
src: "https://
|
|
178
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/fm02/fm02-mouth-upset00.webp",
|
|
179
179
|
},
|
|
180
180
|
{
|
|
181
181
|
alias: "fm02-mouth-upset01",
|
|
182
|
-
src: "https://
|
|
182
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/fm02/fm02-mouth-upset01.webp",
|
|
183
183
|
},
|
|
184
184
|
{
|
|
185
185
|
alias: "fm02-mouth-wow01",
|
|
186
|
-
src: "https://
|
|
186
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/fm02/fm02-mouth-wow01.webp",
|
|
187
187
|
},
|
|
188
188
|
],
|
|
189
189
|
},
|
|
@@ -192,79 +192,79 @@ export const manifest: AssetsManifest = {
|
|
|
192
192
|
assets: [
|
|
193
193
|
{
|
|
194
194
|
alias: "m01-body",
|
|
195
|
-
src: "https://
|
|
195
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/m01/m01-body.webp",
|
|
196
196
|
},
|
|
197
197
|
{
|
|
198
198
|
alias: "m01-eyes-annoy",
|
|
199
|
-
src: "https://
|
|
199
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/m01/m01-eyes-annoy.webp",
|
|
200
200
|
},
|
|
201
201
|
{
|
|
202
202
|
alias: "m01-eyes-concern",
|
|
203
|
-
src: "https://
|
|
203
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/m01/m01-eyes-concern.webp",
|
|
204
204
|
},
|
|
205
205
|
{
|
|
206
206
|
alias: "m01-eyes-cry",
|
|
207
|
-
src: "https://
|
|
207
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/m01/m01-eyes-cry.webp",
|
|
208
208
|
},
|
|
209
209
|
{
|
|
210
210
|
alias: "m01-eyes-grin",
|
|
211
|
-
src: "https://
|
|
211
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/m01/m01-eyes-grin.webp",
|
|
212
212
|
},
|
|
213
213
|
{
|
|
214
214
|
alias: "m01-eyes-smile",
|
|
215
|
-
src: "https://
|
|
215
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/m01/m01-eyes-smile.webp",
|
|
216
216
|
},
|
|
217
217
|
{
|
|
218
218
|
alias: "m01-eyes-wow",
|
|
219
|
-
src: "https://
|
|
219
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/m01/m01-eyes-wow.webp",
|
|
220
220
|
},
|
|
221
221
|
{
|
|
222
222
|
alias: "m01-mouth-annoy00",
|
|
223
|
-
src: "https://
|
|
223
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/m01/m01-mouth-annoy00.webp",
|
|
224
224
|
},
|
|
225
225
|
{
|
|
226
226
|
alias: "m01-mouth-annoy01",
|
|
227
|
-
src: "https://
|
|
227
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/m01/m01-mouth-annoy01.webp",
|
|
228
228
|
},
|
|
229
229
|
{
|
|
230
230
|
alias: "m01-mouth-concern00",
|
|
231
|
-
src: "https://
|
|
231
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/m01/m01-mouth-concern00.webp",
|
|
232
232
|
},
|
|
233
233
|
{
|
|
234
234
|
alias: "m01-mouth-concern01",
|
|
235
|
-
src: "https://
|
|
235
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/m01/m01-mouth-concern01.webp",
|
|
236
236
|
},
|
|
237
237
|
{
|
|
238
238
|
alias: "m01-mouth-cry00",
|
|
239
|
-
src: "https://
|
|
239
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/m01/m01-mouth-cry00.webp",
|
|
240
240
|
},
|
|
241
241
|
{
|
|
242
242
|
alias: "m01-mouth-cry01",
|
|
243
|
-
src: "https://
|
|
243
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/m01/m01-mouth-cry01.webp",
|
|
244
244
|
},
|
|
245
245
|
{
|
|
246
246
|
alias: "m01-mouth-grin00",
|
|
247
|
-
src: "https://
|
|
247
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/m01/m01-mouth-grin00.webp",
|
|
248
248
|
},
|
|
249
249
|
{
|
|
250
250
|
alias: "m01-mouth-neutral00",
|
|
251
|
-
src: "https://
|
|
251
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/m01/m01-mouth-neutral00.webp",
|
|
252
252
|
},
|
|
253
253
|
{
|
|
254
254
|
alias: "m01-mouth-neutral01",
|
|
255
|
-
src: "https://
|
|
255
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/m01/m01-mouth-neutral01.webp",
|
|
256
256
|
},
|
|
257
257
|
{
|
|
258
258
|
alias: "m01-mouth-smile00",
|
|
259
|
-
src: "https://
|
|
259
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/m01/m01-mouth-smile00.webp",
|
|
260
260
|
},
|
|
261
261
|
{
|
|
262
262
|
alias: "m01-mouth-smile01",
|
|
263
|
-
src: "https://
|
|
263
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/m01/m01-mouth-smile01.webp",
|
|
264
264
|
},
|
|
265
265
|
{
|
|
266
266
|
alias: "m01-mouth-wow01",
|
|
267
|
-
src: "https://
|
|
267
|
+
src: "https://pub-72ff059a2c6642fb9eab15df80fb3b45.r2.dev/breakdown/m01/m01-mouth-wow01.webp",
|
|
268
268
|
},
|
|
269
269
|
],
|
|
270
270
|
},
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { About } from "@/components/menus/settings/about";
|
|
2
2
|
import { DialoguesControls } from "@/components/menus/settings/dialogues-controls";
|
|
3
3
|
import { ControlsListSettingsPage } from "@/components/menus/settings/menus/controls";
|
|
4
|
+
import { DiagnosticsSettingsPage } from "@/components/menus/settings/menus/diagnostics";
|
|
4
5
|
import { HistoryListSettingsPage } from "@/components/menus/settings/menus/history";
|
|
5
6
|
import { SaveLoadSettingsPage } from "@/components/menus/settings/menus/save-load";
|
|
6
7
|
import { QuickMenus } from "@/components/menus/settings/quick-menus";
|
|
@@ -23,7 +24,7 @@ import { ArrowLeftIcon } from "lucide-react";
|
|
|
23
24
|
import { Fragment } from "react";
|
|
24
25
|
import { useTranslation } from "react-i18next";
|
|
25
26
|
|
|
26
|
-
type SettingsTabPath = "menus/controls" | "menus/history" | "menus/save-load";
|
|
27
|
+
type SettingsTabPath = "menus/controls" | "menus/history" | "menus/save-load" | "menus/diagnostics";
|
|
27
28
|
|
|
28
29
|
type BreadcrumbEntry = {
|
|
29
30
|
id: string;
|
|
@@ -38,7 +39,8 @@ export function Settings() {
|
|
|
38
39
|
const normalizedTab: SettingsTabPath | undefined =
|
|
39
40
|
currentTab === "menus/controls" ||
|
|
40
41
|
currentTab === "menus/history" ||
|
|
41
|
-
currentTab === "menus/save-load"
|
|
42
|
+
currentTab === "menus/save-load" ||
|
|
43
|
+
currentTab === "menus/diagnostics"
|
|
42
44
|
? (currentTab as SettingsTabPath)
|
|
43
45
|
: undefined;
|
|
44
46
|
|
|
@@ -55,7 +57,8 @@ export function Settings() {
|
|
|
55
57
|
if (
|
|
56
58
|
normalizedTab === "menus/controls" ||
|
|
57
59
|
normalizedTab === "menus/history" ||
|
|
58
|
-
normalizedTab === "menus/save-load"
|
|
60
|
+
normalizedTab === "menus/save-load" ||
|
|
61
|
+
normalizedTab === "menus/diagnostics"
|
|
59
62
|
) {
|
|
60
63
|
trail.push({ id: "menus", label: t("menus") });
|
|
61
64
|
trail.push({
|
|
@@ -64,13 +67,17 @@ export function Settings() {
|
|
|
64
67
|
? "menus-controls"
|
|
65
68
|
: normalizedTab === "menus/history"
|
|
66
69
|
? "menus-history"
|
|
67
|
-
: "menus
|
|
70
|
+
: normalizedTab === "menus/save-load"
|
|
71
|
+
? "menus-save-load"
|
|
72
|
+
: "menus-diagnostics",
|
|
68
73
|
label:
|
|
69
74
|
normalizedTab === "menus/controls"
|
|
70
75
|
? t("hotkeys_menu")
|
|
71
76
|
: normalizedTab === "menus/history"
|
|
72
77
|
? t("history")
|
|
73
|
-
:
|
|
78
|
+
: normalizedTab === "menus/save-load"
|
|
79
|
+
? `${t("save")}/${t("load")}`
|
|
80
|
+
: t("diagnostics"),
|
|
74
81
|
});
|
|
75
82
|
}
|
|
76
83
|
return trail;
|
|
@@ -112,7 +119,8 @@ export function Settings() {
|
|
|
112
119
|
if (
|
|
113
120
|
normalizedTab === "menus/controls" ||
|
|
114
121
|
normalizedTab === "menus/history" ||
|
|
115
|
-
normalizedTab === "menus/save-load"
|
|
122
|
+
normalizedTab === "menus/save-load" ||
|
|
123
|
+
normalizedTab === "menus/diagnostics"
|
|
116
124
|
) {
|
|
117
125
|
return (
|
|
118
126
|
<>
|
|
@@ -130,6 +138,7 @@ export function Settings() {
|
|
|
130
138
|
{normalizedTab === "menus/controls" ? <ControlsListSettingsPage /> : null}
|
|
131
139
|
{normalizedTab === "menus/history" ? <HistoryListSettingsPage /> : null}
|
|
132
140
|
{normalizedTab === "menus/save-load" ? <SaveLoadSettingsPage /> : null}
|
|
141
|
+
{normalizedTab === "menus/diagnostics" ? <DiagnosticsSettingsPage /> : null}
|
|
133
142
|
</>
|
|
134
143
|
);
|
|
135
144
|
}
|