We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1a5e05 commit 860dfa2Copy full SHA for 860dfa2
2 files changed
src/components/mobile/MobileWorkspace.vue
@@ -3,6 +3,7 @@
3
<div v-if="!activeChunk" class="mobile-empty">
4
<MessagesSquare class="mobile-empty-icon" />
5
<p>选择一个场景开始编辑</p>
6
+ <p>完整功能建议使用网页端~</p>
7
<button
8
class="mobile-primary-button"
9
type="button"
src/io/import/textDecoder.ts
@@ -45,7 +45,9 @@ function detectBom(bytes: Uint8Array): string | null {
45
bytes[2] === 0xfe &&
46
bytes[3] === 0xff)
47
) {
48
- throw new Error('暂不支持转换 UTF-32 编码文件,请先另存为 UTF-8。');
+ throw new Error(
49
+ '暂不支持转换 UTF-32 编码文件,请另存为 UTF-8 或使用剪切板导入',
50
+ );
51
}
52
if (bytes[0] === 0xef && bytes[1] === 0xbb && bytes[2] === 0xbf) {
53
return 'utf-8';
0 commit comments