Releases: ghaiklor/kittik
Releases · ghaiklor/kittik
v6.0.0-rc.3
Features
- 🎸 add re-export for Declaration types (4c7add3)
v6.0.0-rc.2
v6.0.0-rc.1
Bug Fixes
- 🐛 canvas is not cleaning up when switching slides (e6c6dd9)
- 🐛 deck could exit while rendering (387c15f)
- 🐛 deck is not clearing up canvas when showing\exiting (2224e57)
- 🐛 Deck uses an old call signature for creating slides (f595679)
- 🐛 image shape is not rendering in iTerm (c9b0942)
- 🐛 update terminal-canvas with fixed eraseScreen behaviour (f580d68)
- 🐛 when passing custom canvas, it still resets the original (0748ffb)
Code Refactoring
- 💡 move canvas property from deck decl to constructor (104953f)
- 💡 swap order for canvas and declaration args in Slide (3de450f)
Features
- 🎸 add a meta package kittik that reexports everything (54fdf7e)
- 🎸 Deck extends an EventEmitter and produces exit event (2d28c52)
- 🎸 DeckBuilder can accept a predefined shapes\animations (64988f6)
- 🎸 SlideBuilder can be started with predefined shapes\anim (1738ed1)
BREAKING CHANGES
- 🧨 DeckBuilder has no longer methods withShape(), withAnimation(). If you
want to add a "global" shape, you can create a predefined set of
shapes\animations and pass them into DeckBuilder.start(shapes,
animations). - 🧨 DeckDeclaration no longer accepts canvas property. Instead, it must go
into Deck constructor as a separate argument. - 🧨 Slide constructor() has changed its signature from (canvas, declaration)
to (declaration, canvas)
v5.1.0-beta.3
Features
- 🎸 improve type check and autocompletion for SlideBuilder (559e1b3)
v5.1.0-beta.2
v5.1.0-beta.1
v5.1.0-beta.0
Bug Fixes
- 🐛 issue when delay could accept NaN or Infinity values (1905b0d)
- 🐛 issue when process.stdin could be not an interactive (5055370)
- 🐛 issue with animating text with print animation (b55f6bd)
- 🐛 issue with graceful closing the process (268dccf)
- 🐛 issue with regular expression for base64 in image shape (c3f9be2)
Features
- 🎸 add a possibility to override cursor when using builder (43b03aa)
- 🎸 add Builder Pattern to Shape/Animation/Slide (d30c965)
- 🎸 add name to the slides, so you can reference them later (f45e55c)
- 🎸 DeckBuilder allows to create the whole decks via API (fc1eb56)
- 🎸 implement more user-friendly error handling in slides (c494c26)
- 🎸 implement passing cursor as an argument to renderer (594795c)
BREAKING CHANGES
- 🧨 Any shape constructor now accept not the two argument (cursor, options)
but only the one (options)