mirror of https://github.com/Hilbis/Hilbish
Compare commits
No commits in common. "6be65c04a663649971891a8b2acf7e31993abf83" and "d873f04f702e81332b4815f8843724e02be81145" have entirely different histories.
6be65c04a6
...
d873f04f70
15
CHANGELOG.md
15
CHANGELOG.md
|
@ -1,22 +1,14 @@
|
|||
# 🎀 Changelog
|
||||
|
||||
## [2.1.0] - 2022-02-10
|
||||
## Unreleased
|
||||
### Added
|
||||
- Documented custom userdata types (Job and Timer Objects)
|
||||
- Coming with this fix is also adding the return types for some functions that were missing it
|
||||
- Added a dedicated input and dedicated outputs for commanders (sinks - info at `doc api commander`).
|
||||
- Local docs is used if one of Hilbish's branches is found
|
||||
- Return 1 exit code on doc not found
|
||||
- `hilbish.runner.getCurrent()` to get the current runner
|
||||
- Initialize Hilbish Lua API before handling signals
|
||||
- Coming with fix is also adding the return types for some functions that were missing it
|
||||
- Added a dedicated input and dedicated outputs for commanders.
|
||||
|
||||
### Fixed
|
||||
- `index` or `_index` subdocs should not show up anymore
|
||||
- `hilbish.which` not working correctly with aliases
|
||||
- Commanders not being able to pipe with commands or any related operator.
|
||||
- Resolve symlinks in completions
|
||||
- Updated `runner-mode` docs
|
||||
- Fix `hilbish.completion` functions panicking when empty input is provided
|
||||
|
||||
## [2.0.1] - 2022-12-28
|
||||
### Fixed
|
||||
|
@ -635,7 +627,6 @@ This input for example will prompt for more input to complete:
|
|||
|
||||
First "stable" release of Hilbish.
|
||||
|
||||
[2.1.0]: https://github.com/Rosettea/Hilbish/compare/v2.0.1...v2.1.0
|
||||
[2.0.1]: https://github.com/Rosettea/Hilbish/compare/v2.0.0...v2.0.1
|
||||
[2.0.0]: https://github.com/Rosettea/Hilbish/compare/v1.2.0...v2.0.0
|
||||
[2.0.0-rc1]: https://github.com/Rosettea/Hilbish/compare/v1.2.0...v2.0.0-rc1
|
||||
|
|
|
@ -93,7 +93,7 @@ Available sections: ]] .. table.concat(modules, ', ')
|
|||
else
|
||||
return '{underline}{green}'
|
||||
end
|
||||
end):gsub('\n#+.-\n', function(t)
|
||||
end):gsub('#+.-\n', function(t)
|
||||
local signature = t:gsub('<.->(.-)</.->', '{underline}%1'):gsub('\\', '<')
|
||||
return '{bold}{yellow}' .. signature .. '{reset}'
|
||||
end)))
|
||||
|
|
|
@ -4,10 +4,6 @@ date: 2023-02-07T18:25:38-04:00
|
|||
draft: false
|
||||
---
|
||||
|
||||
> The release with full changelogs and prebuilt binaries can be
|
||||
seen at the [v2.1.0](https://github.com/Rosettea/Hilbish/releases/tag/v2.1.0)
|
||||
tag.
|
||||
|
||||
Oh look! A new release of Hilbish! This time is the v2.1 release,
|
||||
with a small amount of features and mainly documentation changes and
|
||||
bug fixes.
|
||||
|
|
Loading…
Reference in New Issue