Skip to content

Commit

Permalink
V0.58.0
Browse files Browse the repository at this point in the history
  • Loading branch information
domhnallmorr committed Jun 24, 2024
1 parent 49a3632 commit ed54f9d
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -60,6 +60,8 @@ Note the app creates 2 files, "tk_path_finder_config.json" and "notes.db" (sqlit

[PyPDF2](https://pypi.org/project/PyPDF2/) (V3.0 or later required)

[Pillow] (V10.0.0 or later required)

pip install natsort

pip install openpyxl
@@ -72,6 +74,8 @@ pip install ttkbootstrap

pip install PyPDF2

pip install pillow


## Preview
![Main](images/main_image.PNG)
2 changes: 1 addition & 1 deletion src/main.py
Original file line number Diff line number Diff line change
@@ -35,7 +35,7 @@ def __init__(self, parent, *args, **kwargs):
self.controller = controller.Controller(root, parent, self)

# ----------------- VERSION -----------------------
self.version = "0.57.1"
self.version = "0.58.0"

# ----------------- WEEK NUMBER -----------------------
year, week_num, day_of_week = datetime.date.today().isocalendar()
2 changes: 1 addition & 1 deletion src/view/tkexplorer_icons.py
Original file line number Diff line number Diff line change
@@ -161,7 +161,7 @@ def decode_base64_image(size, data):
buf = io.BytesIO(msg)

i = Image.open(buf)
i.thumbnail(size, Image.ANTIALIAS)
i.thumbnail(size, Image.Resampling.LANCZOS)

# adding transparent padding before text
new_image = Image.new('RGBA', (size[0]+5, size[1]), (0, 0, 0, 0))

0 comments on commit ed54f9d

Please sign in to comment.