| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
fix(generation): reject unusable interactive scripts and surface runtime errors (#1649) Reject classic inline interactive scripts that fail to parse at generation time (extracted with parse5, checked with node:vm Script without executing), and surface iframe runtime errors on the active interactive scene. Addresses #1622 (partial: no recovery / regeneration UI). Co-authored-by: Frank-zhu0404 <Frank-zhu0404@users.noreply.github.com> | 3 天前 | |
feat(ai): add Xiaomi MiMo V2.6 models [AI-assisted] (#1655) * feat(ai): add Xiaomi MiMo V2.6 models * docs(ai): preserve Xiaomi provider references --------- Co-authored-by: wyuc <wang-yc24@mails.tsinghua.edu.cn> | 3 天前 | |
fix(mathml2omml): call includes() instead of indexing it (#681) parse.js used `textContainerNames.includes[arr[level].name]`, which reads a property of the includes function (always undefined) instead of calling it, so the "trailing text node" branch never ran and trailing text inside a MathML text container (mtext/mi/mn/mo/ms) was dropped from the OMML. Line 48 of the same file already uses the correct `includes(...)` form. dist/ is gitignored and rebuilt by postinstall, so the runtime bundle picks up the fix on install. Closes #680 Co-authored-by: ly-wang19 <ly-wang19@users.noreply.github.com> Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Co-authored-by: wyuc <wang-yc24@mails.tsinghua.edu.cn> | 2 个月前 | |
fix(pptxgenjs): use ESM import for typescript in rollup config (#616) rollup.config.mjs is ESM but handed the compiler to rollup-plugin-typescript2 via require("typescript"). When rollup loads the config as native ESM (e.g. workspace postinstall, without --bundleConfigAsCjs) this throws "require is not defined in ES module scope". Switch to a top-level `import ts from "typescript"` and add an explicit .ts/.tsx include. Supersedes #397 — keeps only the rollup fix and drops that PR's unrelated .env.example deletion and full lockfile rewrite. Co-authored-by: shunan-lu <49121953@qq.com> Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com> | 3 个月前 |