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
- clips: z.array(z.object({ sec: z.number(), kind: z.enum(['gen', 'ui_demo']).default('gen'), prompt: z.string(), speech: z.string().optional().nullable(), continues: z.boolean().optional().nullable() })).min(1).max(4),
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.9",
3
+ "version": "0.6.11",
4
4
  "description": "ADYou โ€” ๋Œ€ํ–‰์‚ฌ ์—†์ด, ๋‹น์‹ ์ด ์ง์ ‘. ์‚ฌ์ดํŠธ ์ฃผ์†Œ ํ•˜๋‚˜๋กœ ๊ด‘๊ณ  ์†Œ์žฌยท๋งค์ฒด ๋“ฑ๋กยท์ž๋™ ์šด์˜ยท๋ณด๊ณ ๊นŒ์ง€: AI ๊ด‘๊ณ  ์ž์œจ์ฃผํ–‰ CLI + MCP ์„œ๋ฒ„(MetaยทGoogle ยท ์ƒ์„ฑ์€ ํ•ญ์ƒ PAUSED ยท ์Šน์ธ ๋’ค ์‹œ์ž‘)",
5
5
  "type": "module",
6
6
  "license": "MIT",