Releases: mak8kammerer/bouquet
0.5.0
π bouquet 0.5.0 is released! π
Changes:
- Stabilized
bouquet.gradient
API; - Added
ConicalGradient
; RadialGradient
: addedradius
andgradient_center_pos
properties;- Various bug fixes.
From now on, gradients are product-ready!
β¬οΈ Install bouquet via:
pip install https://github.com/mak8kammerer/bouquet/releases/download/0.5.0/bouquet-0.5.0-py3-none-any.whl
π Read documentation.
Enjoy! π
0.4.0
What's new?
- Renamed
LinearGradient
toBilinearGradient
, because this is a true implementation of bilinear interpolation (#1); - Introduced
GradientBase
class for advanced gradient rendering; - Added a new
LinearGradient
widget based on theGradientBase
class (#2); RadialGradient
rebased toGradientBase
(#3);- Fixed a bug with the
width
andheight
arguments in the***Gradient.render_texture()
functions; - Added a new section with examples in the documentation;
- Added tests.
Install this version via:
pip install https://github.com/mak8kammerer/bouquet/releases/download/0.4.0/bouquet-0.4.0-py3-none-any.whl
0.3.0
π I'm glad to announce the new version of the bouquet library. Version 0.3.0 brings two important innovations:
π‘ Firstly, now any type of gradient (be it LinearGradient or RadialGradient, it doesn't matter) has a static method render_texture()
, which renders the gradient into an FBO and returns the texture. This significantly expands the possibilities of using gradients.
π΄ Secondly, now library has its own demo script. Enter the command python -m bouquet
in your console, press Enter, and you will see a small demonstration application.
π Also, the documentation has been revised and tests have been added.
π½ Install new version via:
pip install https://github.com/mak8kammerer/bouquet/releases/download/0.3.0/bouquet-0.3.0-py3-none-any.whl
Peace. π
0.2.0
0.1.0
This is first release of Bouquet library. π
Currently, these widgets are available:
- LinearGradient
- RadialGradient
To use them, simply imports bouquet.gradients
module. After that, you can use them in Python code and in KvLang.
π» You can install this version using pip:
pip install https://github.com/mak8kammerer/bouquet/releases/download/0.1.0/bouquet-0.1.0-py3-none-any.whl
π Unfortunately, the online documentation is not ready. I will try to do everything by the next release. In the meantime, you can take a look at the source code ;)
Πappy coding!