Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
3ec1e98
feat: integrate Starlark/Tronbyte app support into plugin system
Feb 18, 2026
f279e9e
fix(starlark): use bare imports instead of relative imports
Feb 18, 2026
4f438fc
fix(starlark): make API endpoints work standalone in web service
Feb 18, 2026
13ab4f7
fix(starlark): make config partial work standalone in web service
Feb 18, 2026
5f2daa5
fix(starlark): always show editable timing settings in config panel
Feb 18, 2026
942663a
feat(store): add sort, filter, search, and pagination to Plugin Store…
Feb 18, 2026
679d9cc
fix(store): move storeFilterState to global scope to fix scoping bug
Feb 18, 2026
885fdee
feat(starlark): schema-driven config forms + critical security fixes
Feb 19, 2026
c584f22
fix(starlark): use manifest filename field for .star downloads
Feb 19, 2026
a821060
fix(starlark): reload tronbyte_repository module to pick up code changes
Feb 19, 2026
45f6e7c
fix(starlark): use correct 'fileName' field from manifest (camelCase)
Feb 19, 2026
6a04e88
feat(starlark): extract schema during standalone install
Feb 19, 2026
d876679
feat(starlark): implement source code parser for schema extraction
Feb 19, 2026
0dc1a8f
fix(starlark): add List to typing imports for schema parser
Feb 19, 2026
a8609ae
fix(starlark): load schema from schema.json in standalone mode
Feb 19, 2026
8d1579a
feat(starlark): implement schema extraction, asset download, and conf…
Feb 19, 2026
5d213b5
Merge branch 'main' into feat/starlark-apps
Feb 19, 2026
441b3c5
fix(starlark): code review fixes - security, robustness, and schema p…
Feb 19, 2026
e64cacc
fix(starlark): convert Path to str in spec_from_file_location calls
Feb 19, 2026
b8564c9
fix(starlark): restore Starlark Apps section in plugins.html
Feb 19, 2026
aafb238
fix(starlark): restore Starlark JS functionality lost in merge
Feb 19, 2026
6a60a57
fix(starlark): security and race condition improvements
Feb 20, 2026
36da426
fix(starlark): critical bug fixes and code quality improvements
Feb 20, 2026
92fb098
fix(starlark): critical path traversal and exception handling fixes
Feb 20, 2026
5bb9a59
fix(starlark): logging improvements and code quality fixes
Feb 20, 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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,6 @@ plugins/*
# Binary files and backups
bin/pixlet/
config/backups/

# Starlark apps runtime storage (installed .star files and cached renders)
/starlark-apps/
Loading