Skip to content

Releases: haruki7049/hrtor

v0.2.1

01 Oct 02:07
f2f9103
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.2.0...v0.2.1

v0.2.0

01 Oct 01:46
86f449d
Compare
Choose a tag to compare

v0.2.0

  • Deleted lua-config
  • Separated programs into /cli, /constants, /file_loader and /processor.

What's Changed

Full Changelog: v0.1.1...v0.2.0

v0.1.1

12 Mar 11:10
63e8a03
Compare
Choose a tag to compare

Changes

  1. Notation of init.lua

Notation of init.lua

The notation is changed as:

hrtor.register_command(
  hrtor.command.new {
    action = function()
      hrtor.api.echo('FooFoo!!')
      hrtor.api.quit()
    end,
    trigger = {
      'q'
    },
  }
)

hrtor.register_command(
  hrtor.command.new {
    action = function()
      hrtor.api.echo('mama!!')
    end,
    trigger = {
      'papa'
    },
  }
)

v0.1.0

10 Nov 00:13
Compare
Choose a tag to compare
v0.1.0 Pre-release
Pre-release
  • lua configuration file to change commands' alias
  • CommandLine Arguments

commands' list

  • ADD
  • PRINT
  • DELETE_ALL
  • WRITE
  • EXIT