Skip to content

Commit 8033572

Browse files
committed
Bump version to 1.3.5 and update README with new features and installation instructions
1 parent f2a92d7 commit 8033572

File tree

3 files changed

+17
-5
lines changed

3 files changed

+17
-5
lines changed

README.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ https://github.com/Zingzy/hPyT/assets/90309290/f86df1c7-b75b-4477-974a-eb34cc117
4646
- [Stylize text](#stylize-text)
4747
- [Workaround for other libraries](#workaround-for-other-libraries)
4848
- [📜 hPyT Changelog](#-hpyt-changelog)
49+
- [v1.3.5](#v135)
4950
- [v1.3.4](#v134)
5051
- [v1.3.3](#v133)
5152
- [v1.3.2](#v132)
@@ -73,7 +74,7 @@ https://github.com/Zingzy/hPyT/assets/90309290/f86df1c7-b75b-4477-974a-eb34cc117
7374
## 📦 Installing
7475

7576
```powershell
76-
pip install hPyT==1.3.4
77+
pip install hPyT==1.3.5
7778
```
7879

7980
## 📥 Importing
@@ -213,6 +214,8 @@ title_bar_color.set_accent(window) # sets the titlebar color to the current wind
213214

214215
![Accent TitleBar](https://raw.githubusercontent.com/zingzy/hPyT/main/assets/accent_titlebar.png)
215216

217+
> [!NOTE]
218+
> *The titlebar color will automatically change when the windows accent color changes*
216219
217220
## 🖌️ Custom TitleBar Text Color
218221

@@ -240,6 +243,8 @@ border_color.set_accent(window) # sets the border color to the current windows a
240243

241244
![Accent Border](https://raw.githubusercontent.com/zingzy/hPyT/main/assets/accent_border.png)
242245

246+
> [!NOTE]
247+
> *The border color will automatically change when the windows accent color changes*
243248
244249
## 💻 Window Management
245250

@@ -362,6 +367,11 @@ rainbow_border.start(hwnd)
362367

363368
## 📜 hPyT Changelog
364369

370+
### v1.3.5
371+
372+
- Add feature for automatically changing the accent color of the titlebar and border
373+
- Fix an issue which caused ImportError when used with a python version less than 3.9
374+
365375
### v1.3.4
366376

367377
- Add method for applying the current windows accent color to the titlebar and border color
@@ -425,8 +435,10 @@ rainbow_border.start(hwnd)
425435
<br>
426436

427437
![PyPI](https://img.shields.io/pypi/v/hPyT?style=flat-square)
438+
![Python](https://img.shields.io/badge/python-3.6+-blue)
428439
![Downloads](https://img.shields.io/pypi/dm/hPyT?style=flat-square)
429-
![Contributions Welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat-square)
440+
![Stars](https://img.shields.io/github/stars/zingzy/hPyT?style=flat-square)
441+
![Contributors](https://img.shields.io/github/contributors/zingzy/hPyT?style=flat-square)
430442
![Last Commit](https://img.shields.io/github/last-commit/zingzy/hPyT?style=flat-square)
431443

432444
---

hPyT/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
hPyT - Hack Python Titlebar
33
Author - zingzy
4-
version - 1.3.4
4+
version - 1.3.5
55
License - MIT
66
Homepage - https://github.com/zingzy/hPyT
77
"""
@@ -44,4 +44,4 @@
4444
"get_accent_color",
4545
]
4646

47-
__version__ = "1.3.4"
47+
__version__ = "1.3.5"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name="hPyT",
8-
version="1.3.4",
8+
version="1.3.5",
99
description="Hack Python Titlebar - A package to manipulate windows and titlebar of GUI applications made using python.",
1010
long_description=long_description,
1111
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)