Skip to content

Commit

Permalink
Merge pull request #4 from DeepingSource/dev
Browse files Browse the repository at this point in the history
V0.0.2 2nd try
  • Loading branch information
phibenz authored Aug 18, 2022
2 parents 0946217 + 8c96f03 commit 40f4972
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 12 deletions.
Binary file removed asset/logo.png
Binary file not shown.
4 changes: 2 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# You need pyinstaller: pip install pyinstaller
VERSION='v0.01'
pyinstaller --onefile --windowed -n "calibri-${VERSION}" --noconfirm "${PWD}/run_gui.py"
VERSION='v0.0.2'
pyinstaller --onefile --windowed -n "calibri-${VERSION}" --noconfirm "${PWD}/run_gui.py"
10 changes: 0 additions & 10 deletions src/calibgui.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,16 +70,6 @@ def __init__(self, master=None, args={}):
# Set a counter for the rows
curr_row = 0

# TODO: Fix logo
# Create an object of tkinter ImageTk
# img = Image.open("./asset/logo.png")
# img = img.resize((111, 90), Image.Resampling.LANCZOS)
# self.logo_img = ImageTk.PhotoImage(img)

# # Create a photoimage object of the image in the path
# logo_label = tk.Label(master, image=self.logo_img)
# logo_label.grid(
# column=0, row=curr_row, sticky=tk.W+tk.E, columnspan=2, padx=0, pady=0)
curr_row += 1

# Button Select images
Expand Down

0 comments on commit 40f4972

Please sign in to comment.