Releases: britzl/defcon
DefCon 2.6.0
NEW: Cycle through suggestions with tab (by @Jerakin)
NEW: It is now possible to define descriptions for each command in a module by adding a key with suffix _desc
:
local M = {}
M.mycommand_desc = "This is the description for my command"
function M.mycommand()
print("Hello from my command")
end
return M
CHANGE: Reduce border size (by @Jerakin)
CHANGE: Command list is now sorted alphabetically (by @Jerakin)
DefCon 2.5.0
FIX: Script init order is no longer important when setting custom http routes from init()
lifecycle functions before the console has been started. Note that the required dependencies has been updated!
DefCon 2.4.0
NEW: console.set_environment(my_env) to modify the function environment (more info: https://github.com/britzl/defcon#set-global-environment)
DefCon 2.3.2
FIX: The whole text area now responds to key down events for easier typing of commands
FIX: The message history will no longer add duplicates if the same command is repeated multiple times in a row
Thank you to @Jerakin for the contributions!
DefCon 2.3.1
FIX: Didn't restore pprint when rerouting of the log stopped
DefCon 2.3
NEW: Added support for pprint() when streaming the console to DefCon
DefCon 2.2
NEW: Added support for customising the console port from console.script
DefCon 2.1
FIX: Starting the log multiple times without stopping it in between will result in duplicates in the log output
DefCon 2.0
NEW: Stream support for commands and routes
NEW: print() capture streaming to the console
DefCon 1.1.1
Updated DefNet dependency