mirror of https://github.com/Hilbis/Hilbish
Compare commits
1 Commits
2de1d26b39
...
8038136e8a
Author | SHA1 | Date |
---|---|---|
sammyette | 8038136e8a |
13
CHANGELOG.md
13
CHANGELOG.md
|
@ -1,15 +1,9 @@
|
|||
# 🎀 Changelog
|
||||
|
||||
## [2.3.1] - 2024-07-27
|
||||
[hehe when you see it release](https://youtu.be/AaAF51Gwbxo?si=rhj2iYuQRkqDa693&t=64)
|
||||
|
||||
## Unreleased
|
||||
### Added
|
||||
- `nature.opts.tips` was added to display random tips on start up.
|
||||
Displayed tips can be modified via the `hilbish.tips` table.
|
||||
|
||||
### Fixed
|
||||
- Fix a minor regression related to the cd command not working with relative paths
|
||||
- Updated the motd for 2.3
|
||||
- `nature.opts.tips` was added to randomly generate tips on start up.
|
||||
Follows the pattern of motd and greeting. Displays after greeting on start up.
|
||||
|
||||
## [2.3.0] - 2024-07-20
|
||||
### Added
|
||||
|
@ -769,7 +763,6 @@ This input for example will prompt for more input to complete:
|
|||
|
||||
First "stable" release of Hilbish.
|
||||
|
||||
[2.3.1]: https://github.com/Rosettea/Hilbish/compare/v2.3.0...v2.3.1
|
||||
[2.3.0]: https://github.com/Rosettea/Hilbish/compare/v2.2.3...v2.3.0
|
||||
[2.2.3]: https://github.com/Rosettea/Hilbish/compare/v2.2.2...v2.2.3
|
||||
[2.2.2]: https://github.com/Rosettea/Hilbish/compare/v2.2.1...v2.2.2
|
||||
|
|
|
@ -111,12 +111,11 @@ func (f *fs) fcd(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
|
|||
}
|
||||
path = util.ExpandHome(strings.TrimSpace(path))
|
||||
|
||||
abspath, _ := filepath.Abs(path)
|
||||
err = os.Chdir(path)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
interp.Dir(abspath)(f.runner)
|
||||
interp.Dir(path)(f.runner)
|
||||
|
||||
return c.Next(), err
|
||||
}
|
||||
|
|
|
@ -19,7 +19,7 @@ commander.register('cd', function (args, sinks)
|
|||
dirs.setOld(hilbish.cwd())
|
||||
dirs.push(path)
|
||||
|
||||
local ok, err = pcall(function() fs.cd(path) end)
|
||||
local ok, err = pcall(function() fs.cd(fs.abs(path)) end)
|
||||
if not ok then
|
||||
sinks.out:writeln(err)
|
||||
return 1
|
||||
|
|
|
@ -2,9 +2,8 @@ local bait = require 'bait'
|
|||
local lunacolors = require 'lunacolors'
|
||||
|
||||
hilbish.motd = [[
|
||||
Wait ... {magenta}2.3{reset} is basically the same as {red}2.2?{reset}
|
||||
Erm.. {blue}Ctrl-C works for Commanders,{reset} {cyan}and the sh runner has some fixes.{reset}
|
||||
Just trust me bro, this is an imporant bug fix release. {red}- 🌺 sammyette{reset}
|
||||
Finally at {red}v2.2!{reset} So much {green}documentation improvements{reset}
|
||||
and 1 single fix for Windows! {blue}.. and a feature they can't use.{reset}
|
||||
]]
|
||||
|
||||
bait.catch('hilbish.init', function()
|
||||
|
|
|
@ -1,35 +1,34 @@
|
|||
local bait = require 'bait'
|
||||
local lunacolors = require 'lunacolors'
|
||||
|
||||
local postamble = [[
|
||||
{yellow}These tips can be disabled with {reset}{invert} hilbish.opts.tips = false {reset}
|
||||
PREAMBLE = [[
|
||||
Getting Started: https://rosettea.github.io/Hilbish/docs/getting-started/
|
||||
{yellow}🛈 These tips can be disabled with hilbish.opts.tips = false{reset}
|
||||
]]
|
||||
|
||||
hilbish.tips = {
|
||||
'Join the discord and say hi! {blue}https://discord.gg/3PDdcQz{reset}',
|
||||
'{green}hilbish.alias{reset} interface manages shell aliases. See more detail by running {blue}doc api hilbish.alias.',
|
||||
'{green}hilbish.appendPath(\'path\'){reset} -> Appends the provided dir to the command path ($PATH)',
|
||||
'{green}hilbish.completions{reset} -> Used to control suggestions when tab completing.',
|
||||
'{green}hilbish.message{reset} -> Simple notification system which can be used by other plugins and parts of the shell to notify the user of various actions.',
|
||||
"Join the discord and say hi! -> https://discord.gg/3PDdcQz",
|
||||
"{green}hilbish.alias{reset} -> Sets an alias to another cmd",
|
||||
"{green}hilbish.appendPath{reset} -> Appends the provided dir to the command path ($PATH)",
|
||||
"{green}hilbish.completions{reset} -> Are use to control suggestions when tab completing.",
|
||||
"{green}hilbish.message{reset} -> Simple notification system which can be used by other plugins and parts of the shell to notify the user of various actions.",
|
||||
[[
|
||||
{green}hilbish.opts{reset} -> Simple toggle or value options a user can set.
|
||||
You may disable the startup greeting by {invert}hilbish.opts.greeting = false{reset}
|
||||
]],
|
||||
[[
|
||||
{green}hilbish.runner{reset} -> The runner interface contains functions to
|
||||
manage how Hilbish interprets interactive input. The default runners can run
|
||||
shell script and Lua code!
|
||||
]],
|
||||
[[
|
||||
Add Lua-written commands with the commander module!
|
||||
Check the command {blue}doc api commander{reset} or the web docs:
|
||||
https://rosettea.github.io/Hilbish/docs/api/commander/
|
||||
]]
|
||||
{green}hilbish.opts{reset} -> Simple toggle or value options a user can set.
|
||||
- EX: hilbish.opts.greeting = false, will cause the greeting message on start-up to not display.
|
||||
]],
|
||||
[[
|
||||
{green}hilbish.runner{reset} -> The runner interface contains functions that allow the user to change how Hilbish interprets interactive input.
|
||||
- The default runners can run shell script and Lua code.
|
||||
]],
|
||||
[[
|
||||
Add Lua-written commands with the commander module!
|
||||
Checkout the docs here -> https://rosettea.github.io/Hilbish/docs/api/commander/
|
||||
]]
|
||||
}
|
||||
|
||||
bait.catch('hilbish.init', function()
|
||||
if hilbish.interactive and hilbish.opts.tips then
|
||||
local idx = math.random(1, #hilbish.tips)
|
||||
print(lunacolors.format('{yellow}🛈 Tip:{reset} ' .. hilbish.tips[idx] .. '\n' .. postamble))
|
||||
print(lunacolors.format(PREAMBLE .. "\nTip: " .. hilbish.tips[idx]))
|
||||
end
|
||||
end)
|
||||
|
|
Loading…
Reference in New Issue