Skip to content

Commit

Permalink
fix: add .ico icon, fix requirements and detect placeholder input fields
Browse files Browse the repository at this point in the history
fix: add icon in .ico format and fix requirements.txt file
  • Loading branch information
Axorax committed May 3, 2024
1 parent b85278a commit 7f816b5
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 88 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Folders

.env/
env/
dist/
build/
Expand All @@ -10,4 +11,5 @@ test/
# Files

main.py
*.spec
*.spec
*.txt
Binary file added assets/icon.ico
Binary file not shown.
90 changes: 5 additions & 85 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,86 +1,6 @@
aiohttp==3.8.4
aiosignal==1.3.1
altgraph==0.17.3
async-timeout==4.0.2
asyncio==3.4.3
attrs==23.1.0
blinker==1.6.2
bottle==0.12.25
cachetools==5.3.2
certifi==2021.5.30
cffi==1.15.1
chardet==4.0.0
charset-normalizer==3.2.0
click==8.1.6
clr-loader==0.2.5
certifi==2024.2.2
charset-normalizer==3.3.2
colorama==0.4.6
colorharmonies==1.0.5
colour==0.1.5
contourpy==1.2.0
CTkMessagebox==2.5
customtkinter==5.2.2
cx-Freeze==6.15.5
cx-Logging==3.1.0
cycler==0.12.1
darkdetect==0.8.0
discord-protos==0.0.2
discord.py-self @ git+https://github.com/pc111c/discord.py-self.git@e16f555c9e78411b1511fee2273448083d07ab63
distro==1.9.0
Flask==2.3.2
flaskwebgui==1.0.6
fonttools==4.49.0
frozenlist==1.3.3
google-api-core==2.15.0
google-api-python-client==2.112.0
google-auth==2.26.1
google-auth-httplib2==0.2.0
googleapis-common-protos==1.62.0
httplib2==0.22.0
idna==2.10
importlib-resources==6.1.1
itsdangerous==2.1.2
Jinja2==3.0.1
kiwisolver==1.4.5
lief==0.13.2
loguru==0.7.2
MarkupSafe==2.0.1
matplotlib==3.8.3
multidict==6.0.4
numpy==1.26.4
oauth2client==4.1.3
packaging==23.2
pathvalidate==3.2.0
pefile==2023.2.7
pillar-youtube-upload==0.3.0
pillow==10.2.0
protobuf==4.25.1
proxy-tools==0.1.0
psutil==5.9.5
pyasn1==0.5.1
pyasn1-modules==0.3.0
pycparser==2.21
pyinstaller==6.2.0
pyinstaller-hooks-contrib==2023.6
pyparsing==3.1.1
pyperclip==1.8.2
python-dateutil==2.8.2
pythonnet==3.0.1
pytube @ git+https://github.com/pishiko/pytube.git@42a7d8322dd7749a9e950baf6860d115bbeaedfc
pywebview==4.2.2
pywin32-ctypes==0.2.2
requests==2.25.1
rsa==4.9
scikit-build==0.17.6
scrapetube==2.5.1
six==1.16.0
tomli==2.0.1
tqdm==4.65.0
typing_extensions==4.7.1
tzdata==2024.1
tzlocal==5.2
uritemplate==4.1.1
urllib3==1.26.6
Werkzeug==2.3.6
win32-setctime==1.1.0
yarl==1.9.2
zipp==3.15.0
idna==3.7
requests==2.31.0
urllib3==2.2.1
6 changes: 4 additions & 2 deletions tk.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,11 @@ def textbox(i, c, p=False):
canvas.create_image({int(i['x'] + i['width'] / 2)}, {int(i['y'] + i['height'] / 2)}, image=textbox_image_{c})
textbox_{c} = {"TkForge_Entry" if p else "tk.Entry"}(
textbox_{c} = {"TkForge_Entry" if p == True else "tk.Entry"}(
bd=0,
bg="{i["background"]}",
fg="{i['foreground']}"{p}
insertbackground="{i['foreground']}",
highlightthickness=0
)
Expand All @@ -58,10 +59,11 @@ def textarea(i, c, p=False):
canvas.create_image({int(i['x'] + i['width'] / 2)}, {int(i['y'] + i['height'] / 2)}, image=textarea_image_{c})
textarea_{c} = {"TkForge_Text" if p else "tk.Text"}(
textarea_{c} = {"TkForge_Text" if p == True else "tk.Text"}(
bd=0,
bg="{i["background"]}",
fg="{i["foreground"]}"{p}
insertbackground="{i['foreground']}",
highlightthickness=0
)
Expand Down

0 comments on commit 7f816b5

Please sign in to comment.