Adds:
- BukkitRunnable factory using LuaFunction objects via
util.getBukkitRunnable(function)
Fixes:
- Coercing a Lua
number
to Java would produce anInteger
object and not a primitive.
Changes:
- Removed LuaJ-JME dependency
- Version bump to 2.1.2
- Updated pom package naming and include directories
Assets
3
It may be next to nothing but at least I've got motivation to do this :p
Changes:
- Set commands to run async by default (ties in to #29 )
Fixes:
runDelayed
causes server hang and timeout (fixes #29 )NoSuchFieldException
when reloading or shutting down
Assets
3
This rewrite was first started by @jammehcow and has been developed slowly, but is now ready for release. I don't expect it to be perfect, so please post bugs in issues. Plugins that are written for Lukkit 1.0 will not work on 2.0, but a wiki has been created to explain every detail of creating a Lukkit plugin.
Assets
3
jammehcow
released this
This release fixes logging of an update when one wasn't available.
Apologies to all who were confused.
Assets
3
jammehcow
released this
What's new in this release
Major changes:
- Updated event callbacks to 1.11
- Implemented config option to disable the /lukkit run command
- Added permission node "lukkit.run" to allow non-ops to use
- Added a Lukkit config file (related to the can-run-code key)
Minor changes:
- Cleaned a bit of code here and there, no biggie.
Cheers to @hintss and @SwadicalRag for submitting some PRs on things I didn't originally pick up on.
Cheers!
Assets
3
jammehcow
released this
1.10.2 compatibility
With this release brings the long awaited update to 1.10.2 (the latest version of Minecraft).
Lukkit's development has been dead for a while with the previous version being released back in 2012, so I thought it was time to pick it back up from @UnwrittenFun and update it.
What's new in this release
Major changes:
- Updated event callbacks to 1.10.2
- Upgraded LuaJ to 3.0.1
- Implemented a /lukkit plugins command to display all loaded plugins
- Added a TabCompleter for /lukkit [sub-command]
Minor changes:
- Made the transition from Bukkit API to Spigot API
For those who use it, if you have any suggestions, submit and issue and I'll tag it. The more the merrier.
EDIT: the jar is no longer 20MB. My mistake, apologies.
Assets
3
UnwrittenFun
released this
- Release for 1.7.9
Assets
3
UnwrittenFun
released this
- Add ability to read and write files to plugin folder
local fileContents = plugin.readFile(filename)
plugin.writeFile(filename, content)
- Add interface for config files
-- Set the value if not already in the config
-- plugin.config.setDefault(path, value)
plugin.config.setDefault("test.bool", false)
plugin.config.setDefault("test.int", 45)
-- Set the value regardless of if it already exists
-- plugin.config.set(path, value)
plugin.config.set("test.float", 4.7)
plugin.config.set("test.string", "a string")
-- plugin.config.get(path, default)
plugin.config.get("test.bool", true)
-- Save the config to file
plugin.config.save()