Skip to content

4.2.2_0

Choose a tag to compare

@hymkor hymkor released this 07 Oct 18:55
· 2784 commits to master since this release
  • Append the new command commands by Lua: abspath,chompf and wildcard
  • Append the forgotten builtin lua-commands reference: lua_f,kill and killall.
  • #246 Reject conversion from userdata to Object. (Thx @masamitsu-murase)
    • To assign userdata(Lua) to share[] is forbidden
    • The global userdata(Lua) are not cloned on the forked Lua instance for the background goroutine to make pipelines.
  • #247 Fixed the problem that Go's Garbage collector releases data refered by Lua and crashes (Thx @masamitsu-murase)
  • #248 Completion hook can specify displayed-titles which differ from completed-strings.(Thx @masamitsu-murase)
  • #249 Add nyagos.completion_slash option. When it is true, filename-completion uses a slash as the path-seperator as default. (Thx @masamitsu-murase)
  • New building script(make.cmd) written in PowerShell

  • 新Lua製コマンド(abspath,chompf,wildcard)を追加
  • 漏れていたLua製コマンドのリファレンスを追記: lua_f , kill , killall
  • #246 クラッシュ回避のため、Lua の userdata を share[] に代入したり、Lua インスタンスの fork 時にコピーしないようにした (Thx @masamitsu-murase)
  • #247 Go の Garbage Collector が Lua で参照中のデータを開放してクラッシュする問題を修正した (Thx @masamitsu-murase)
  • #248 補完用フックで、補完文字列とは別にリストアップ用の表示テキストを指定できるようになった。(Thx @masamitsu-murase)
  • #249 nyagos.completion_slash を追加。これが true の時、ファイル名補完はデフォルトでパス区切り文字に / を使う(Thx @masamitsu-murase)
  • PowerShell で記述したあたらしいビルドスクリプト(make.cmd) を用意