mirror of https://github.com/Hilbis/Hilbish
Compare commits
3 Commits
d873f04f70
...
6be65c04a6
Author | SHA1 | Date |
---|---|---|
sammyette | 6be65c04a6 | |
sammyette | 7bfd7b12c4 | |
sammyette | d48a66e393 |
15
CHANGELOG.md
15
CHANGELOG.md
|
@ -1,14 +1,22 @@
|
||||||
# 🎀 Changelog
|
# 🎀 Changelog
|
||||||
|
|
||||||
## Unreleased
|
## [2.1.0] - 2022-02-10
|
||||||
### Added
|
### Added
|
||||||
- Documented custom userdata types (Job and Timer Objects)
|
- Documented custom userdata types (Job and Timer Objects)
|
||||||
- Coming with fix is also adding the return types for some functions that were missing it
|
- 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.
|
- 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
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
- `index` or `_index` subdocs should not show up anymore
|
||||||
- `hilbish.which` not working correctly with aliases
|
- `hilbish.which` not working correctly with aliases
|
||||||
- Commanders not being able to pipe with commands or any related operator.
|
- 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
|
## [2.0.1] - 2022-12-28
|
||||||
### Fixed
|
### Fixed
|
||||||
|
@ -627,6 +635,7 @@ This input for example will prompt for more input to complete:
|
||||||
|
|
||||||
First "stable" release of Hilbish.
|
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.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]: 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
|
[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
|
else
|
||||||
return '{underline}{green}'
|
return '{underline}{green}'
|
||||||
end
|
end
|
||||||
end):gsub('#+.-\n', function(t)
|
end):gsub('\n#+.-\n', function(t)
|
||||||
local signature = t:gsub('<.->(.-)</.->', '{underline}%1'):gsub('\\', '<')
|
local signature = t:gsub('<.->(.-)</.->', '{underline}%1'):gsub('\\', '<')
|
||||||
return '{bold}{yellow}' .. signature .. '{reset}'
|
return '{bold}{yellow}' .. signature .. '{reset}'
|
||||||
end)))
|
end)))
|
||||||
|
|
|
@ -4,6 +4,10 @@ date: 2023-02-07T18:25:38-04:00
|
||||||
draft: false
|
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,
|
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
|
with a small amount of features and mainly documentation changes and
|
||||||
bug fixes.
|
bug fixes.
|
||||||
|
|
Loading…
Reference in New Issue