Releases: haruki7049/hrtor
Releases · haruki7049/hrtor
v0.2.1
What's Changed
- fix(Cargo.toml): Edit deps' version by @haruki7049 in #118
- feat: Release 0.2.1 by @haruki7049 in #119
Full Changelog: v0.2.0...v0.2.1
v0.2.0
v0.2.0
- Deleted lua-config
- Separated programs into
/cli
,/constants
,/file_loader
and/processor
.
What's Changed
- Edit refactoring.md by @haruki7049 in #83
- Added shell.nix by @haruki7049 in #81
- fix: Added Cargo.lock by @haruki7049 in #85
- ci: Init some files by @haruki7049 in #87
- test!: Init some tests for file_loader by @haruki7049 in #89
- ci: Init coverage-checker by @haruki7049 in #90
- chore: Init envrc by @haruki7049 in #92
- test: Init test for push_context by @haruki7049 in #93
- test: Init test for handle_command by @haruki7049 in #94
- fix: Remove some warning by @haruki7049 in #95
- ci: Init llvm-cov by @haruki7049 in #99
- chore(flakes): Change to flake-parts by @haruki7049 in #101
- chore(rust-toolchain): Update by @haruki7049 in #102
- feat(file_loader): Init file_loader crate by @haruki7049 in #103
- feat(cli): Init cli crate by @haruki7049 in #104
- docs(CONTRIBUTING.md,CODEOWNERS,SUPPORT.md,CODE_OF_CONDUCT.md): Move to project root by @haruki7049 in #105
- feat(constants): Init constants crate by @haruki7049 in #107
- feat(action): Init processor crate by @haruki7049 in #106
- Fix(cli): Delete config by @haruki7049 in #108
- fix(file_loader_derive): Delete unused use by @haruki7049 in #109
- style(processor): Move to actions.rs by @haruki7049 in #110
- style(flake.nix): Change nixpkgs-fmt to nixfmt by @haruki7049 in #111
- docs(README): Delete example command using --config by @haruki7049 in #113
- ci(main-branch-builder): Init by @haruki7049 in #114
- fix(main-branch-builder): Edit CI name by @haruki7049 in #115
- chore(Cargo.toml,Cargo.lock): Update version to 0.2.0-dev by @haruki7049 in #116
- feat: Release v0.2.0 by @haruki7049 in #117
Full Changelog: v0.1.1...v0.2.0
v0.1.1
Changes
- 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
- lua configuration file to change commands' alias
- CommandLine Arguments
commands' list
- ADD
- DELETE_ALL
- WRITE
- EXIT