Skip to content

Commit e133c0b

Browse files
committed
Update .gitignore to exclude theme configuration files; make ErrorWindow non-resizable
Add requirements.txt for customtkinter and requests dependencies
1 parent 57e131b commit e133c0b

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@
22
App/build/
33
App/dist/
44
App/packing/
5+
App/Linux/*.ini
6+
App/Windows/*.ini

App/Linux/OllamaGUIChat.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ def __init__(self):
102102

103103
self.title("Error logs")
104104
self.geometry("600x400")
105+
self.resizable(False, False)
105106
self.attributes("-topmost", True)
106107

107108
self.error_output = ctk.CTkTextbox(self, height=390, width=590, cursor="arrow")

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,10 @@ Start: **27.03.2025**
141141
* [x] ~**Add stop button**~
142142
* [x] ~**Add auto search for models**~
143143
* [x] ~**Add progress bar**~
144-
* **Improve UI**
145-
* **Change theme handling**
144+
* [x] ~**Improve UI**~
145+
* [x] ~**Change theme handling**~
146+
147+
Finished: **01.04.2025**
146148

147149
## License
148150

requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
customtkinter>=5.2.2
2+
requests>=2.32.3

0 commit comments

Comments
 (0)