Compare commits

..

15 Commits

Author SHA1 Message Date
mattuy 76fae3a73b Merge pull request 'feat: 自动适配系统暗黑模式' (#6) from feat/dark-mode into main
Reviewed-on: #6
2026-07-25 15:47:17 +00:00
necobot 6c436be847 feat: 自动适配系统暗黑模式 2026-07-25 23:26:10 +08:00
mattuy 2f058981a6 Merge pull request 'fix: 排除破坏行框的组合字符' (#5) from fix/stable-unicode-layout into main 2026-07-25 15:22:40 +00:00
necobot 03bbb76a2c fix: 排除破坏行框的组合字符 2026-07-25 23:11:25 +08:00
mattuy 48c17799bc Merge pull request 'feat: 扩大体量和显影参数范围' (#4) from feat/wide-volume-range into main 2026-07-25 09:04:25 +00:00
necobot 143823f953 fix: 让显影参数覆盖完整范围 2026-07-25 16:41:47 +08:00
necobot 9650d8a243 feat: 扩大体量参数范围 2026-07-25 16:40:44 +08:00
mattuy bd6f3daa73 Merge pull request 'fix: 移除输入框黄色焦点圈' (#3) from fix/textarea-focus into main 2026-07-25 08:38:00 +00:00
necobot 4655e56820 fix: 移除输入框黄色焦点圈 2026-07-25 16:36:52 +08:00
mattuy 73f094b72d add lock 2026-07-25 16:35:19 +08:00
mattuy 9efb5ad3ac Merge pull request 'fix: 避免顶部文字重叠' (#2) from fix/header-overlap into main 2026-07-25 08:33:52 +00:00
necobot fe11c9a1cc fix: 避免顶部文字重叠 2026-07-25 16:33:03 +08:00
mattuy da9b354e4c Merge pull request 'feat: 初始化文字马赛克生成器' (#1) from feat/initial-app into main
Reviewed-on: #1
2026-07-25 08:27:17 +00:00
necobot c580d069b1 feat: 初始化文字马赛克生成器 2026-07-25 16:19:26 +08:00
mattuy 0001f72635 Initial commit 2026-07-25 07:58:15 +00:00
3 changed files with 0 additions and 49 deletions
-5
View File
@@ -1,5 +0,0 @@
.git
.worktrees
dist
node_modules
*.log
-16
View File
@@ -1,16 +0,0 @@
FROM oven/bun:1.3.11-alpine AS build
WORKDIR /app
COPY package.json index.html tsconfig.json ./
COPY scripts ./scripts
COPY src ./src
RUN bun run build
FROM nginxinc/nginx-unprivileged:1.29.4-alpine
COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY --from=build /app/dist /usr/share/nginx/html
EXPOSE 8080
-28
View File
@@ -1,28 +0,0 @@
server {
listen 8080;
server_name _;
absolute_redirect off;
port_in_redirect off;
root /usr/share/nginx/html;
index index.html;
location = /healthz {
access_log off;
default_type text/plain;
return 200 "ok\n";
}
location = /index.html {
add_header Cache-Control "no-cache, must-revalidate";
}
location ~* \.(?:css|js)$ {
try_files $uri =404;
add_header Cache-Control "public, max-age=31536000, immutable";
}
location / {
try_files $uri $uri/ /index.html;
}
}