mirror of
https://github.com/usetrmnl/inker.git
synced 2026-04-29 13:45:07 -07:00
- BYOD: Register any e-ink device manually with custom resolution - Canvas zoom: Auto-fit, +/-/fit controls, Ctrl+scroll - Alternative device types: /api/setup HTTP_MODEL header → dimensions lookup - Local network data sources: Settings toggle with SSRF safety guardrails - CORS: Same-origin default, opt-in via CORS_ORIGINS env - Models tab removed (devices have width/height, designer has presets) - Dashboard Connect Device buttons redirect to /devices/new - Version bumped to 0.2.0 across all packages and Swagger
16 lines
459 B
HTML
16 lines
459 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Inker</title>
|
|
<!-- Local fonts for consistent rendering -->
|
|
<link href="/fonts/fonts.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|