mirror of
https://github.com/jtdaugherty/brick.git
synced 2024-11-26 09:06:56 +03:00
Bump version, update changelog
This commit is contained in:
parent
0382c09753
commit
7d5fb8cd9d
16
CHANGELOG.md
16
CHANGELOG.md
@ -2,6 +2,22 @@
|
||||
Brick changelog
|
||||
---------------
|
||||
|
||||
0.62
|
||||
----
|
||||
|
||||
API changes:
|
||||
* `Brick.Widgets.Core` got new functions
|
||||
`crop{Left,Right,Bottom,Top}To`. Unlike the `crop...By` functions,
|
||||
which crop on the specified side by a particular amount, these
|
||||
`crop...To` functions crop on the specified side and take a desired
|
||||
overall width of the final result and use that to determine how much
|
||||
to crop. A widget `x` of width `w` could thus be cropped equivalently
|
||||
with `cropLeftBy a x` and `cropLeftTo (w - a) x`.
|
||||
|
||||
Other changes:
|
||||
* Added `programs/CroppingDemo.hs` to demonstrate the new (and
|
||||
preexisting) cropping functions.
|
||||
|
||||
0.61
|
||||
----
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
name: brick
|
||||
version: 0.61
|
||||
version: 0.62
|
||||
synopsis: A declarative terminal user interface library
|
||||
description:
|
||||
Write terminal user interfaces (TUIs) painlessly with 'brick'! You
|
||||
|
Loading…
Reference in New Issue
Block a user