2 Commits

Author SHA1 Message Date
aee4270235 docs: document semantic versioning policy 2026-05-09 12:09:06 +08:00
daabfdaa0f docs: document virtual environment setup 2026-05-09 12:02:47 +08:00
2 changed files with 9 additions and 1 deletions

View File

@@ -85,6 +85,7 @@ python3 EmbeddedAnimPacker.py --help
- 不要提交 `.venv/``frames/``littlefs/anim/``lvgl/`、缓存目录或本地编辑器文件。 - 不要提交 `.venv/``frames/``littlefs/anim/``lvgl/`、缓存目录或本地编辑器文件。
- Commit messages must be written in English and follow Conventional Commits 1.0.0, for example `feat: add frame prefix option` or `fix: validate GIF input path`. - Commit messages must be written in English and follow Conventional Commits 1.0.0, for example `feat: add frame prefix option` or `fix: validate GIF input path`.
- Version numbers must follow Semantic Versioning 2.0.0.
- 如果需要新增示例输入素材,确认文件大小合理,并在 `README.md` 中说明用途。 - 如果需要新增示例输入素材,确认文件大小合理,并在 `README.md` 中说明用途。
- 如果修改默认输出位置、颜色格式或压缩格式,请同步检查 `.gitignore` 和文档。 - 如果修改默认输出位置、颜色格式或压缩格式,请同步检查 `.gitignore` 和文档。

View File

@@ -4,7 +4,14 @@
## 使用 ## 使用
先安装 GIF 读取依赖 建议先创建并启用 Python 虚拟环境
```bash
python3 -m venv .venv
. .venv/bin/activate
```
然后安装 GIF 读取依赖:
```bash ```bash
python3 -m pip install -r requirements.txt python3 -m pip install -r requirements.txt