From e4cf96bb7c1dffdcba2ca148d8740e28f2196469 Mon Sep 17 00:00:00 2001 From: "Aaron D. Lee" Date: Mon, 5 Jan 2026 00:29:08 -0500 Subject: [PATCH] Add 4.1.3 plan stub (heavier features) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reserved for: 1. DCT performance optimizations 2. User management UI (admin CRUD) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- PLAN-4.1.3.md | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 PLAN-4.1.3.md diff --git a/PLAN-4.1.3.md b/PLAN-4.1.3.md new file mode 100644 index 0000000..3cad59c --- /dev/null +++ b/PLAN-4.1.3.md @@ -0,0 +1,42 @@ +# Stegasoo 4.1.3 Plan + +## Release Theme +Performance and admin features. + +--- + +## 1. DCT Performance Optimizations + +**Status:** Planned + +**Problem:** DCT encode/decode can be slow on Pi, especially for large images. + +**Ideas:** +- Vectorize block processing with NumPy +- Reduce Python loop overhead +- Parallel block processing (multiprocessing?) +- Profile and identify bottlenecks +- Consider Cython for hot paths + +--- + +## 2. User Management UI + +**Status:** Planned + +**Problem:** No way for admin to manage users via UI. Currently need direct DB access. + +**Features:** +- List all users +- Create new user (admin only) +- Delete user (admin only) +- Reset user password +- User activity/last login + +--- + +## Notes + +- These are heavier lifts than 4.1.2 +- Profile before optimizing +- Consider security implications of user management