Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
71f6cdc
Add LDL Windows ToolBox and docs
LoveDoLove Feb 20, 2026
6b5642f
Docs: remove citation tags and expand guides
LoveDoLove Feb 20, 2026
4a7e8d5
Add timestamped logging and concise console output
LoveDoLove Feb 20, 2026
df3e8bf
Add SFC/DISM, winget, net-reset & space calc
LoveDoLove Feb 20, 2026
23ca5e4
Create logo.png
LoveDoLove Feb 20, 2026
4d87b9f
Create README.md
LoveDoLove Feb 20, 2026
a3fed31
Merge branch 'main' into lovedolove
LoveDoLove Feb 20, 2026
61100ee
Init AGENT and MEMORY
LoveDoLove Jun 7, 2026
d191747
REMOVE OLD
LoveDoLove Jun 7, 2026
c8fe475
Complete toolbox safety features
LoveDoLove Jun 7, 2026
62209cb
Add View Log History feature
LoveDoLove Jun 7, 2026
816135b
Merge branch 'main' into lovedolove
LoveDoLove Jun 7, 2026
efd1687
Update memory and task status
LoveDoLove Jun 13, 2026
1e4a723
Add feature ideas backlog
LoveDoLove Jun 13, 2026
88db3d1
Add optimization priority roadmap
LoveDoLove Jun 13, 2026
ae4ad2e
Rewrite tool as Python uv launcher
LoveDoLove Jun 13, 2026
3b5e50e
Complete toolbox safety features
LoveDoLove Jun 16, 2026
9881a64
Refresh repository memory snapshot
LoveDoLove Jun 16, 2026
bef04c2
Complete toolbox safety features
LoveDoLove Jun 16, 2026
fbb2701
Refactor into modular architecture + add Low Latency Mode + reorganiz…
LoveDoLove Jul 5, 2026
4b587d9
Merge branch 'main' into lovedolove
LoveDoLove Jul 5, 2026
1a3a8b3
Update AGENTS.md, MEMORY.md, and README.md for current project state
LoveDoLove Jul 5, 2026
1118668
Merge branch 'main' into lovedolove
LoveDoLove Jul 5, 2026
1fdeba2
Add Y/N confirmation to features 1, 3, 7, and 12
LoveDoLove Jul 5, 2026
9c71adf
Add optional restore point before destructive operations
LoveDoLove Jul 5, 2026
74c759d
Phase 2: Progress hints and conservative cleanup
LoveDoLove Jul 5, 2026
8b60428
Phase 3: Diagnostics section with 4 new features
LoveDoLove Jul 5, 2026
bf8bca5
Phase 4: Reporting & Export section with 4 new features
LoveDoLove Jul 5, 2026
474a0b5
Phase 5: Self-update check via GitHub releases API
LoveDoLove Jul 5, 2026
0dd207a
Fix unused imports in self_update and add missing prompt_yes_no import
LoveDoLove Jul 5, 2026
11d615b
Phase 6: Advanced Features - Recovery tools, selective cleanup, exclu…
LoveDoLove Jul 5, 2026
417d00c
Phase 5 completion: read-only mode + PowerShell batching
LoveDoLove Jul 5, 2026
f2002e5
Update README.md with full 23-item menu, read-only mode, and 6-phase …
LoveDoLove Jul 5, 2026
12d873c
Production Version: ruff CI, PyInstaller packaging, ANSI UX, release …
LoveDoLove Jul 5, 2026
47c768d
CI fix: ruff format + lint compliance
LoveDoLove Jul 5, 2026
7a0fcff
Merge branch 'main' into lovedolove
LoveDoLove Jul 5, 2026
f256e9a
Fix PyInstaller spec: __file__ not defined in spec namespace, use Pat…
LoveDoLove Jul 5, 2026
052c3dc
Bump version to 1.0.5
LoveDoLove Jul 5, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LDLWinToolBox.spec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import tomllib
from pathlib import Path

here = Path(__file__).parent
here = Path.cwd()
pyproject = here / "pyproject.toml"
data = tomllib.loads(pyproject.read_text(encoding="utf-8"))
app_ver = data["project"]["version"]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "ldlwintoolbox"
version = "1.0.3"
version = "1.0.5"
description = "LDL Windows ToolBox in Python"
readme = "README.md"
requires-python = ">=3.11"
Expand Down
Loading