Releases: astariul/swole
Releases · astariul/swole
v0.0.4
What's new ?
- The first, full version of the Documentation is out ! #18
- Add one-click deploy badges for examples
- Add argument to specify
favicon
image for pages #8 Page
creation are recorded (similarly toWidget
), so it's easier to deploy a simple app #12Input
widget now have alabel
argument #16- Added texture example for easy front-end debugging
- Base skin updated
Button
andInput
now have awide
argument
New Widget
Header
Title
SubHeader
Internal improvements
v0.0.3
Package fixes
Documentation
- Added documentation on ReadTheDocs (empty, just the theme)
Bug fixes
- Fix emoji not displayed on PyPi README
- Fix images not displayed on PyPi README
- Fix skins (CSS files) not included in the package
Initial release
Initial release of the package swole
.
⚠️ This is just a proof-of-concept
Contains the core of the library : Application
, Page
, Skin
, a few Widget
, and a single working example.
Widgets added
Button
: Allow to create a button, with a possible callback.Input
: Input field. For now, can only create a number input.Markdown
: An incomplete widget for markdown. Markdown not supported yet, just plain text.
Examples added
basic_addition.py
: Most basic, working example for doing addition.basic_addition_oop.py
: Same asbasic_addition.py
, but using only OOP interface (no shortcut => more ugly).