mirror of https://github.com/Hilbis/Hilbish
chore: prepare for 1.0 release
parent
0637f2763b
commit
893d72a236
|
@ -1,6 +1,6 @@
|
||||||
# 🎀 Changelog
|
# 🎀 Changelog
|
||||||
|
|
||||||
## Unreleased
|
## [1.0.0] - 2021-03-04
|
||||||
### Added
|
### Added
|
||||||
- MacOS is now officialy supported, default compile time vars have been added
|
- MacOS is now officialy supported, default compile time vars have been added
|
||||||
for it
|
for it
|
||||||
|
@ -18,6 +18,7 @@ it finds the path to `binName` in $PATH
|
||||||
(like it always was) or Vim via `hilbish.inputMode()`
|
(like it always was) or Vim via `hilbish.inputMode()`
|
||||||
- Changing Vim mode throws a `hilbish.vimMode` hook
|
- Changing Vim mode throws a `hilbish.vimMode` hook
|
||||||
- The current Vim mode is also accessible with the `hilbish.vimMode` property
|
- The current Vim mode is also accessible with the `hilbish.vimMode` property
|
||||||
|
- Print errors in `hilbish.timeout()` and `hilbish.goro()` callbacks
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- Tab completion for executables
|
- Tab completion for executables
|
||||||
|
@ -341,6 +342,7 @@ This input for example will prompt for more input to complete:
|
||||||
|
|
||||||
First "stable" release of Hilbish.
|
First "stable" release of Hilbish.
|
||||||
|
|
||||||
|
[0.7.1]: https://github.com/Rosettea/Hilbish/compare/v0.7.1...v1.0.0
|
||||||
[0.7.1]: https://github.com/Rosettea/Hilbish/compare/v0.7.0...v0.7.1
|
[0.7.1]: https://github.com/Rosettea/Hilbish/compare/v0.7.0...v0.7.1
|
||||||
[0.7.0]: https://github.com/Rosettea/Hilbish/compare/v0.6.1...v0.7.0
|
[0.7.0]: https://github.com/Rosettea/Hilbish/compare/v0.6.1...v0.7.0
|
||||||
[0.6.1]: https://github.com/Rosettea/Hilbish/compare/v0.6.0...v0.6.1
|
[0.6.1]: https://github.com/Rosettea/Hilbish/compare/v0.6.0...v0.6.1
|
||||||
|
|
2
vars.go
2
vars.go
|
@ -2,7 +2,7 @@ package main
|
||||||
|
|
||||||
// String vars that are free to be changed at compile time
|
// String vars that are free to be changed at compile time
|
||||||
var (
|
var (
|
||||||
version = "v0.7.1"
|
version = "v1.0.0"
|
||||||
defaultConfDir = "" // ~ will be substituted for home, path for user's default config
|
defaultConfDir = "" // ~ will be substituted for home, path for user's default config
|
||||||
defaultHistDir = ""
|
defaultHistDir = ""
|
||||||
commonRequirePaths = "';./libs/?/init.lua;./?/init.lua;./?/?.lua'"
|
commonRequirePaths = "';./libs/?/init.lua;./?/init.lua;./?/?.lua'"
|
||||||
|
|
Loading…
Reference in New Issue