Skip to content

Releases: Zingzy/hPyT

hPyT v1.3.1

07 Jun 14:15
Compare
Choose a tag to compare

Changelog

v1.3.1

  • Added Kivy support by @manahter in #15
  • Add support for UI libraries like PySimpleGUI, PyGame, etc.
  • Improve the rainbow titlebar & border effects.
  • Improve the center_relative function & examples.

For detailed information and previews please refer the README.md file

hPyT v1.3.0

25 Apr 15:36
Compare
Choose a tag to compare

Changelog

v1.3.0

  • Add support for setting custom border color
  • Add support for rainbow border color effect
  • Add support for resetting the titleBar color and titleText color
  • Fix an issue which caused the titleBar to appear black after the rainbow titleBar effect was stopped

For detailed information and previews please refer the README.md file

hPyT v1.2.1

28 Feb 09:17
Compare
Choose a tag to compare

Changelog

v1.2.1

  • Minor Bug Fixes

For detailed information and previews please refer the README.md file

hPyt Preview App v1.2.0

24 Aug 10:42
25fbf9a
Compare
Choose a tag to compare

This is the official Preview App of hPyt, you can install the app and test out the package before using it in your project.

hPyT-Preview-1.2.0.mp4

hPyT v1.2.0

27 Feb 21:54
Compare
Choose a tag to compare

Changelog

v1.2.0

  • Add support for rainbow titlebar
  • Add support for styling title text
  • Add support for vertical, horizontal shake and circle motion window animations
  • Add support for centering a window on the screen
  • Add support for centering a window relative to another window
  • Add support for moving/resizing/maximizing/minimizing/restoring a window
  • Add support for setting custom titlebar color
  • Add support for setting custom titlebar text color

For detailed information and previews please refer the README.md file

hPyT v1.1.3

18 Feb 11:55
Compare
Choose a tag to compare

CHANGELOG

v1.1.3

  • Add flashing inverval support

CODE SAMPLES

Flashing Window

window_flash.flash(window, 10, 100) # flashes the window 10 times with 50ms interval
# window_flash.stop(window) # stops the flashing immediately

Flashing Interval starts from 10ms, default 1000ms

Flashing Window

hPyT v1.1.2

18 Feb 09:46
14e2f72
Compare
Choose a tag to compare

CHANGELOG

v1.1.2

  • Add window flashing support
  • Add window opacity support
  • Add support for PyGTK

CODE SAMPLES

Opacity

opacity.set(window, 0.5) # sets the window opacity to 50%
# opacity.set(window, 1) # resets the window opacity to 100%

Opacity 0.5 preview

Flashing Window

window_flash.flash(window, 10) # flashes the window 10 times
# window_flash.stop(window) # stops the flashing immediately

Flashing Window