Skip to content

Commit

Permalink
chore: prepare v2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
TorchedSammy committed Dec 26, 2023
1 parent 7932fa6 commit 30830ed
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 32 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# 🎀 Changelog

## [2.2.0] - 2022-12-25
## [2.2.1] - 2023-12-26
## Fixed
- Removed a left over debug print
- Recover panic in `hilbish.goro`

## [2.2.0] - 2023-12-25
### Added
- [Native Modules](https://rosettea.github.io/Hilbish/docs/api/hilbish/hilbish.module/)
- Made a few additions to the sink type:
Expand Down Expand Up @@ -688,6 +693,7 @@ This input for example will prompt for more input to complete:
First "stable" release of Hilbish.
[2.2.1]: https://github.com/Rosettea/Hilbish/compare/v2.2.0...v2.2.1
[2.2.0]: https://github.com/Rosettea/Hilbish/compare/v2.1.0...v2.2.0
[2.1.2]: https://github.com/Rosettea/Hilbish/compare/v2.1.1...v2.1.2
[2.1.1]: https://github.com/Rosettea/Hilbish/compare/v2.1.0...v2.1.1
Expand Down
30 changes: 0 additions & 30 deletions nature/greenhouse/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -297,36 +297,6 @@ function Greenhouse:initUi()
self:input(c)
end

--[[
if c == 27 then
local c1 = read()
if c1 == 91 then
local c2 = read()
if c2 == 66 then -- arrow down
self:scroll 'down'
elseif c2 == 65 then -- arrow up
self:scroll 'up'
end
if c2 == 49 then
local c3 = read()
if c3 == 59 then
local c4 = read()
if c4 == 53 then
local c5 = read()
if c5 == 67 then
self:next()
elseif c5 == 68 then
self:previous()
end
end
end
end
end
goto continue
end
]]--

::continue::
end
end)
Expand Down
2 changes: 1 addition & 1 deletion vars.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ var (

// Version info
var (
ver = "v2.2.0"
ver = "v2.2.1"
releaseName = "Poppy"

gitCommit string
Expand Down

0 comments on commit 30830ed

Please sign in to comment.