Skip to content

Releases: JustLikeCheese/NexLua

NexLua v0.2

15 Dec 13:25

Choose a tag to compare

NexLua Project

  • update .gitignore to hide .idea directory
  • update project README.md
  • update project official documentation website
  • add github actions workflow to auto update mirror repository
  • add maven publish script
  • split luajava and nexlua into two modules: core and native for dynamic

App

  • implement a simple editor
  • add full test activity
  • add nexlua icon

LuaJava

  • use c99 instead of c++ and refactor all sources for performance
  • update luajit static library (see git commit history)
  • simplify ClassUtils for performance
  • remove unused luajit header files
  • refactor all sources code
  • implement full luajava library
  • implement LuaMetatable interface

NexLua

  • add LuaAccessibilityService
  • add LuaResources
  • add LuaModule
  • update LuaConfig to non-static class for dynamic
  • simplify LuaUtil

Full Changelog: v0.1-beta...v0.2

v0.1-beta

13 Aug 14:18

Choose a tag to compare

v0.1-beta Pre-release
Pre-release
feat: implement a simple code editor

feat: make sendError output more detailed logs for Java Exceptions
refactor: move `isVersionChanged` logic to Main.java
fix: prevent crash caused by L.setGlobal("this") in LuaApplication
fix: remove proguard-rules.pro obfuscation to fix the issue of com.luajava.JuaAPI ClassNotFound exception.
...