|
| 1 | +# Eggent 0.1.2 - Dark Theme and Python Recovery |
| 2 | + |
| 3 | +Date: 2026-03-06 |
| 4 | +Type: Patch release snapshot |
| 5 | + |
| 6 | +## Release Name |
| 7 | +`Dark Theme and Python Recovery` |
| 8 | + |
| 9 | +This release packages three focused improvements: user-selectable dark mode, stronger Python package recovery through virtualenv fallback, and cleaner project file trees by hiding virtualenv folders. |
| 10 | + |
| 11 | +## What Is Included |
| 12 | + |
| 13 | +### 1) Settings and UI Theme |
| 14 | +- Added `Appearance -> Dark mode` toggle in `Dashboard -> Settings`. |
| 15 | +- Theme preference now applies to the root layout (`<html class="dark">`) based on saved settings. |
| 16 | + |
| 17 | +### 2) Python Runtime and Dependency Recovery |
| 18 | +- Python execution now prefers project-local interpreters from `.venv` or `venv` when available. |
| 19 | +- Python execution environment now injects virtualenv context (`VIRTUAL_ENV`, `PATH`) when using a local venv. |
| 20 | +- `install_packages` Python flow now includes fallback plan: |
| 21 | + - create local virtualenv (`python3 -m venv .venv` or `python -m venv .venv`) |
| 22 | + - install requested dependencies with `.venv/bin/python -m pip install ...` |
| 23 | +- Prompt guidance updated to route Python missing-dependency recovery through `install_packages(kind=python)` with virtualenv fallback when system pip is blocked. |
| 24 | + |
| 25 | +### 3) Project Files Visibility |
| 26 | +- Hidden project entries now include `.venv` and `venv` in addition to `.meta`. |
| 27 | + |
| 28 | +## New in 0.1.2 |
| 29 | + |
| 30 | +- Added dark mode toggle and persisted theme application in layout. |
| 31 | +- Improved Python dependency recovery with project-local virtualenv fallback. |
| 32 | +- Hid Python virtualenv directories from project file listings. |
| 33 | +- Bumped package and health version to `0.1.2`. |
| 34 | + |
| 35 | +## Upgrade Notes |
| 36 | + |
| 37 | +- No data migration required. |
| 38 | +- Existing projects continue to run as-is. |
| 39 | +- If a project has `.venv`/`venv`, Python tool execution will now prefer that interpreter. |
0 commit comments