adyou 0.6.9 โ 0.6.11
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.
|
@@ -109,6 +109,9 @@ export function cutWords(text, limit) {
|
|
|
109
109
|
}
|
|
110
110
|
export function wordsEl(text, style, align = 'left') {
|
|
111
111
|
const words = String(text || '').split(/\s+/).filter(Boolean);
|
|
112
|
+
// ๐ด ์ผ๋ณธ์ดยท์ค๊ตญ์ด๋ ๋์ด์ฐ๊ธฐ๊ฐ ์์ด ํ ์ด์ ์ด ์ค ์ ์ฒด๋ณด๋ค ๊ธธ๋ค โ nowrap ์กฐ๊ฐ์ด ์ค๋ฅธ์ชฝ์ผ๋ก ์๋ฆผ(ISEKAI'D ์ผ๋ณธ์ด ์๋์นด๋ ยท 2026-09-17) โ ๊ธ์ ๋จ์๋ก ์ค๋ฐ๊ฟ
|
|
113
|
+
if (/[\u3040-\u30ff\u3400-\u9fff]/.test(text) && words.some((w) => [...w].length > 8))
|
|
114
|
+
return h('div', { display: 'flex', ...style, whiteSpace: 'normal', wordBreak: 'break-all', textAlign: align, justifyContent: align === 'center' ? 'center' : 'flex-start' }, String(text || '').trim());
|
|
112
115
|
const gap = Math.round(Number(style.fontSize || 16) * 0.26);
|
|
113
116
|
return h('div', { display: 'flex', flexWrap: 'wrap', justifyContent: align === 'center' ? 'center' : 'flex-start', columnGap: gap, rowGap: 0, ...style, whiteSpace: 'nowrap' }, words.map((w) => h('span', { whiteSpace: 'nowrap' }, w)));
|
|
114
117
|
}
|
|
@@ -7,7 +7,8 @@ import { FORMAT_DESC, genreStyle, PACE, playbookFor, sceneCuts, TONE_WORDS } fro
|
|
|
7
7
|
import { fit, GOOGLE_LIMITS, policyIssues, wlen } from './specs.js';
|
|
8
8
|
const BoardSchema = z.object({
|
|
9
9
|
format: z.string(), genre: z.string().optional(), hook: z.string(), captions: z.array(z.string()).min(1).max(5), voice: z.string().optional().nullable(), music: z.string().optional(),
|
|
10
|
-
|
|
10
|
+
// ๐ด kind ๋ ์ฐ๋ฆฌ ํด๋ฆฝ ๊ณํ(clipPlan)์ด ์ ํ๋ฏ๋ก ๋ชจ๋ธ์ด ใugcใใspeechใ ๊ฐ์ ๊ฐ์ ์จ๋ ๊ฑฐ์ ํ์ง ์๋๋ค(์์ด์์ธ ์ฝํฐ 2ํ ์คํจ ยท 2026-09-17) ยท sec ๋ ๊ณํ๊ฐ์ ์ด๋ค
|
|
11
|
+
clips: z.array(z.object({ sec: z.number().optional().nullable(), kind: z.string().optional().nullable(), prompt: z.string(), speech: z.string().optional().nullable(), continues: z.boolean().optional().nullable() })).min(1).max(6),
|
|
11
12
|
cast: z.string().optional().nullable(),
|
|
12
13
|
});
|
|
13
14
|
const LANG_NAME = { ko: 'Korean', en: 'English', ja: 'Japanese', 'zh-TW': 'Traditional Chinese', zh: 'Chinese', de: 'German', fr: 'French', es: 'Spanish', vi: 'Vietnamese', th: 'Thai', id: 'Indonesian', pt: 'Portuguese', it: 'Italian', nl: 'Dutch' };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "adyou",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.11",
|
|
4
4
|
"description": "ADYou โ ๋ํ์ฌ ์์ด, ๋น์ ์ด ์ง์ . ์ฌ์ดํธ ์ฃผ์ ํ๋๋ก ๊ด๊ณ ์์ฌยท๋งค์ฒด ๋ฑ๋กยท์๋ ์ด์ยท๋ณด๊ณ ๊น์ง: AI ๊ด๊ณ ์์จ์ฃผํ CLI + MCP ์๋ฒ(MetaยทGoogle ยท ์์ฑ์ ํญ์ PAUSED ยท ์น์ธ ๋ค ์์)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|