Compare commits

..

3 Commits

Author SHA1 Message Date
Dayuan Jiang
a3c9408dff chore(mcp): bump version to 0.1.3 2025-12-21 00:30:03 +09:00
github-actions[bot]
958f9410df style: auto-format with Biome 2025-12-20 15:27:47 +00:00
Dayuan Jiang
b8126bd98a feat(mcp): add XML validation and auto-fix to MCP server
- Add xml-validation.ts with validateAndFixXml function
- Integrate validation into display_diagram tool (fails if unfixable)
- Integrate validation into edit_diagram tool (auto-fix each operation)
- Fix bug: typo fixes now run before foreign tag removal
- Fix bug: use before/after comparison instead of regex .test()
2025-12-21 00:25:45 +09:00
2 changed files with 0 additions and 9 deletions

View File

@@ -452,11 +452,6 @@ export function SettingsDialog({
/>
</div>
</div>
<div className="pt-4 border-t border-border/50">
<p className="text-[0.75rem] text-muted-foreground text-center">
Version {process.env.APP_VERSION}
</p>
</div>
</DialogContent>
</Dialog>
)

View File

@@ -1,12 +1,8 @@
import type { NextConfig } from "next"
import packageJson from "./package.json"
const nextConfig: NextConfig = {
/* config options here */
output: "standalone",
env: {
APP_VERSION: packageJson.version,
},
}
export default nextConfig