Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
204eec9
proxy
Fishydo Apr 8, 2026
6282773
Fix staticsjv2 folder
Fishydo Apr 8, 2026
10daf6c
Fix proxy static app paths and embed settings loading
Fishydo Apr 9, 2026
1ecd5cd
Restore installer/settings apps and fix proxy static runtime
Fishydo Apr 9, 2026
0761482
Merge pull request #2 from Fishydo/codex/fix-404-errors-for-proxy-apps
Fishydo Apr 9, 2026
eb8e7cf
Add single-file offline build and proxy app path/config fixes
Fishydo Apr 10, 2026
4daad9e
Merge pull request #3 from Fishydo/codex/add-offline-one-file-html-bu…
Fishydo Apr 10, 2026
b6e177a
Inline image references as data URIs in offline build
Fishydo Apr 10, 2026
a66cec9
Merge branch 'main' into codex/add-offline-one-file-html-build-functi…
Fishydo Apr 10, 2026
ad6c7cc
Merge pull request #4 from Fishydo/codex/add-offline-one-file-html-bu…
Fishydo Apr 10, 2026
7c164f2
Fix app icons for offline single-file build
Fishydo Apr 10, 2026
a5da9fc
Merge pull request #5 from Fishydo/codex/load-app-icons-in-one-file-b…
Fishydo Apr 10, 2026
a0c6b55
Add offline-friendly embedded proxy app installer
Fishydo Apr 10, 2026
475117b
67
Fishydo Apr 10, 2026
673583e
Support offline app loading and docked proxy app installs
Fishydo Apr 10, 2026
3d2eebc
Merge pull request #7 from Fishydo/codex/enable-offline-mode-for-apps
Fishydo Apr 10, 2026
133cc3d
Improve proxy app launching and wisp settings management
Fishydo Apr 10, 2026
39ba3ba
Merge pull request #8 from Fishydo/codex/fix-app-installation-and-pro…
Fishydo Apr 10, 2026
5dbf7ef
Update app store UI and implement dock app limit
qwen-intl Apr 11, 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
75 changes: 71 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,72 @@
/node_modules/
/dist/
/.vscode/
```
# Compiled and build artifacts
*.pyc
__pycache__/
*.o
*.obj
dist/
build/
*.class
*.exe
*.dll
*.so
*.a
*.out

# Dependencies
.venv/
venv/
node_modules/
target/
.gradle/
.mypy_cache/
.pytest_cache/

# Logs and temp files
*.log
*.tmp
*.swp
*.swo

# Environment
.env
.env.local
*.env.*

# Editors
.vscode/
.idea/

# System files
.DS_Store
.idea/
Thumbs.db

# Coverage
coverage/
htmlcov/
.coverage

# Compressed files
*.zip
*.gz
*.tar
*.tgz
*.bz2
*.xz
*.7z
*.rar
*.zst
*.lz4
*.lzh
*.cab
*.arj
*.rpm
*.deb
*.Z
*.lz
*.lzo
*.tar.gz
*.tar.bz2
*.tar.xz
*.tar.zst
```
Loading