mirror of
https://github.com/lfnovo/open-notebook.git
synced 2026-04-28 11:30:00 +00:00
* chore: post-i18n cleanup and version bump to 1.5.0
- Restore missing .dockerignore entries (notebook_data, surreal_data, docs, etc.)
- Fix lint command for Next.js 16 (use eslint directly instead of next lint)
- Remove aria-describedby={undefined} causing Radix UI warnings
- Bump version to 1.5.0
- Update CHANGELOG with i18n features
- Add multi-language UI mention to README
- Add i18n contribution guide to README.dev
- Document i18n system in CLAUDE.md files
Closes #344, #349, #360
* docs: fix provider order in CLAUDE.md to match layout.tsx
52 lines
No EOL
496 B
Text
52 lines
No EOL
496 B
Text
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Python
|
|
__pycache__
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.venv
|
|
venv
|
|
ENV
|
|
env
|
|
.pytest_cache
|
|
.mypy_cache
|
|
.ruff_cache
|
|
|
|
# Frontend
|
|
frontend/node_modules
|
|
frontend/.next
|
|
frontend/dist
|
|
frontend/out
|
|
frontend/.env*
|
|
frontend/*.log
|
|
|
|
# Project data
|
|
.antigravity
|
|
.gemini
|
|
tmp
|
|
data
|
|
mydata
|
|
notebook_data
|
|
surreal_data
|
|
surreal-data
|
|
surreal_single_data
|
|
*.db
|
|
*.log
|
|
docker.env
|
|
.env
|
|
docker-compose*
|
|
|
|
# Documentation & CI (not needed in image)
|
|
docs
|
|
.github
|
|
|
|
# IDE and OS files
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store |