Skip to content

Commit 5d99e25

Browse files
committed
🚀 Release v1.0.1: Native Web Module, Setup EXE, Kid-Friendly Docs!
1 parent 6f9a7a5 commit 5d99e25

69 files changed

Lines changed: 3923 additions & 6317 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 45 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,46 @@
1-
.vscode/
1+
# Python cache
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
*.egg-info/
6+
*.egg
7+
*.whl
8+
9+
# Build outputs (keeps installer scripts, but ignores generated binaries)
10+
build/
11+
dist/
12+
*.spec
13+
14+
# Temp web build
15+
.tech_web_tmp/
16+
17+
# Virtual environments
18+
.venv/
19+
venv/
20+
env/
21+
22+
# IDE
23+
.vscode/settings.json
24+
.idea/
25+
*.swp
26+
*.swo
27+
28+
# OS
229
.DS_Store
3-
*.log
30+
Thumbs.db
31+
32+
# Testing
33+
.coverage
34+
htmlcov/
35+
.pytest_cache/
36+
pytest_output.txt
37+
38+
# Dev scripts
39+
debug_web.py
40+
error_output*.txt
41+
tmp_update_docs.py
42+
process_logo.py
43+
build_release_repo.py
44+
45+
# Extra image blobs
46+
ChatGPT Image*.png

0 commit comments

Comments
 (0)