make wantedScripts an ordered list #3
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "claude/aproxy-readme-todo-01Xkjy2nyHBYcMqRcFXVbH2x"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
this is a breaking change to the config file format, but i think its for the best to keep ordering consistent. better than an
ordernumber imoThis ensures scripts execute in the order they appear in the config file, resolving the TODO in the README. The config format has been changed from a table with script names as keys to an ordered list of script entries. Changes: - ctx.lua: Use ipairs() instead of pairs() to iterate in order - config.lua: Update validation to handle new list structure - conf.lua: Update example config to use new format - README.md: Remove TODO and clarify execution order New config format: wantedScripts = { {name = 'script1', config = {...}}, {name = 'script2', config = {...}} }a9fdd6599dtoc01c6d0ba1