pygpt-net 2.6.50__py3-none-any.whl → 2.6.51__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pygpt_net/CHANGELOG.txt +5 -0
- pygpt_net/__init__.py +1 -1
- pygpt_net/controller/calendar/calendar.py +2 -4
- pygpt_net/controller/calendar/note.py +0 -0
- pygpt_net/core/calendar/calendar.py +2 -2
- pygpt_net/data/config/config.json +2 -2
- pygpt_net/data/config/models.json +2 -2
- pygpt_net/data/css/style.dark.css +5 -0
- pygpt_net/provider/core/config/patch.py +8 -1
- {pygpt_net-2.6.50.dist-info → pygpt_net-2.6.51.dist-info}/METADATA +7 -2
- {pygpt_net-2.6.50.dist-info → pygpt_net-2.6.51.dist-info}/RECORD +13 -13
- {pygpt_net-2.6.50.dist-info → pygpt_net-2.6.51.dist-info}/LICENSE +0 -0
- {pygpt_net-2.6.50.dist-info → pygpt_net-2.6.51.dist-info}/WHEEL +0 -0
- {pygpt_net-2.6.50.dist-info → pygpt_net-2.6.51.dist-info}/entry_points.txt +0 -0
pygpt_net/CHANGELOG.txt
CHANGED
pygpt_net/__init__.py
CHANGED
|
@@ -13,7 +13,7 @@ __author__ = "Marcin Szczygliński"
|
|
|
13
13
|
__copyright__ = "Copyright 2025, Marcin Szczygliński"
|
|
14
14
|
__credits__ = ["Marcin Szczygliński"]
|
|
15
15
|
__license__ = "MIT"
|
|
16
|
-
__version__ = "2.6.
|
|
16
|
+
__version__ = "2.6.51"
|
|
17
17
|
__build__ = "2025-09-16"
|
|
18
18
|
__maintainer__ = "Marcin Szczygliński"
|
|
19
19
|
__github__ = "https://github.com/szczyglis-dev/py-gpt"
|
|
@@ -6,11 +6,9 @@
|
|
|
6
6
|
# GitHub: https://github.com/szczyglis-dev/py-gpt #
|
|
7
7
|
# MIT License #
|
|
8
8
|
# Created By : Marcin Szczygliński #
|
|
9
|
-
# Updated Date:
|
|
9
|
+
# Updated Date: 2025.09.16 11:00:00 #
|
|
10
10
|
# ================================================== #
|
|
11
11
|
|
|
12
|
-
from typing import Optional
|
|
13
|
-
|
|
14
12
|
from pygpt_net.core.tabs.tab import Tab
|
|
15
13
|
|
|
16
14
|
from .note import Note
|
|
@@ -42,7 +40,7 @@ class Calendar:
|
|
|
42
40
|
|
|
43
41
|
:return: True if calendar is loaded
|
|
44
42
|
"""
|
|
45
|
-
return hasattr(self.window.ui, 'calendar') and
|
|
43
|
+
return hasattr(self.window.ui, 'calendar') and "select" in self.window.ui.calendar
|
|
46
44
|
|
|
47
45
|
def update(self, all: bool = True):
|
|
48
46
|
"""
|
|
File without changes
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
# GitHub: https://github.com/szczyglis-dev/py-gpt #
|
|
7
7
|
# MIT License #
|
|
8
8
|
# Created By : Marcin Szczygliński #
|
|
9
|
-
# Updated Date:
|
|
9
|
+
# Updated Date: 2025.09.16 11:00:00 #
|
|
10
10
|
# ================================================== #
|
|
11
11
|
|
|
12
12
|
import datetime
|
|
@@ -102,7 +102,7 @@ class Calendar:
|
|
|
102
102
|
dt_key = datetime.datetime(note.year, note.month, note.day).strftime("%Y-%m-%d")
|
|
103
103
|
if dt_key not in self.items:
|
|
104
104
|
return False
|
|
105
|
-
note.
|
|
105
|
+
note.updated = datetime.datetime.now().strftime("%Y-%m-%dT%H:%M:%S")
|
|
106
106
|
self.items[dt_key] = note
|
|
107
107
|
self.save(note.year, note.month, note.day)
|
|
108
108
|
return True
|
|
@@ -139,4 +139,9 @@ QCalendarWidget QAbstractItemView::item:hover {{
|
|
|
139
139
|
.DebugList::item:selected:focus {{
|
|
140
140
|
color: #000;
|
|
141
141
|
selection-color: #000000;
|
|
142
|
+
}}
|
|
143
|
+
|
|
144
|
+
QCalendarWidget QMenu::item:selected:focus,
|
|
145
|
+
QCalendarWidget QMenu::item:selected {{
|
|
146
|
+
background: #3a4045;
|
|
142
147
|
}}
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
# GitHub: https://github.com/szczyglis-dev/py-gpt #
|
|
7
7
|
# MIT License #
|
|
8
8
|
# Created By : Marcin Szczygliński #
|
|
9
|
-
# Updated Date: 2025.09.
|
|
9
|
+
# Updated Date: 2025.09.16 11:00:00 #
|
|
10
10
|
# ================================================== #
|
|
11
11
|
|
|
12
12
|
import copy
|
|
@@ -97,6 +97,13 @@ class Patch:
|
|
|
97
97
|
patch_css('web-blocks.css', True)
|
|
98
98
|
updated = True
|
|
99
99
|
|
|
100
|
+
# < 2.6.51
|
|
101
|
+
if old < parse_version("2.6.51"):
|
|
102
|
+
print("Migrating config from < 2.6.51...")
|
|
103
|
+
# calendar css
|
|
104
|
+
patch_css('style.dark.css', True)
|
|
105
|
+
updated = True
|
|
106
|
+
|
|
100
107
|
# update file
|
|
101
108
|
migrated = False
|
|
102
109
|
if updated:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: pygpt-net
|
|
3
|
-
Version: 2.6.
|
|
3
|
+
Version: 2.6.51
|
|
4
4
|
Summary: Desktop AI Assistant powered by: OpenAI GPT-5, GPT-4, o1, o3, Gemini, Claude, Grok, DeepSeek, and other models supported by Llama Index, and Ollama. Chatbot, agents, completion, image generation, vision analysis, speech-to-text, plugins, internet access, file handling, command execution and more.
|
|
5
5
|
License: MIT
|
|
6
6
|
Keywords: ai,api,api key,app,assistant,bielik,chat,chatbot,chatgpt,claude,dall-e,deepseek,desktop,gemini,gpt,gpt-3.5,gpt-4,gpt-4-vision,gpt-4o,gpt-5,gpt-oss,gpt3.5,gpt4,grok,langchain,llama-index,llama3,mistral,o1,o3,ollama,openai,presets,py-gpt,py_gpt,pygpt,pyside,qt,text completion,tts,ui,vision,whisper
|
|
@@ -118,7 +118,7 @@ Description-Content-Type: text/markdown
|
|
|
118
118
|
|
|
119
119
|
[](https://snapcraft.io/pygpt)
|
|
120
120
|
|
|
121
|
-
Release: **2.6.
|
|
121
|
+
Release: **2.6.51** | build: **2025-09-16** | Python: **>=3.10, <3.14**
|
|
122
122
|
|
|
123
123
|
> Official website: https://pygpt.net | Documentation: https://pygpt.readthedocs.io
|
|
124
124
|
>
|
|
@@ -3612,6 +3612,11 @@ may consume additional tokens that are not displayed in the main window.
|
|
|
3612
3612
|
|
|
3613
3613
|
## Recent changes:
|
|
3614
3614
|
|
|
3615
|
+
**2.6.51 (2025-09-16)**
|
|
3616
|
+
|
|
3617
|
+
- Fix: Automatically reloading calendar notes.
|
|
3618
|
+
- Fix: Context menu CSS background color for calendar items.
|
|
3619
|
+
|
|
3615
3620
|
**2.6.50 (2025-09-16)**
|
|
3616
3621
|
|
|
3617
3622
|
- Optimized: Improved memory cleanup when switching profiles and unloading tabs.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
pygpt_net/CHANGELOG.txt,sha256=
|
|
1
|
+
pygpt_net/CHANGELOG.txt,sha256=KmpkFN0MFHP4vZ0br2FdZcFeGt4PxKG7A_csYtk_gJs,106711
|
|
2
2
|
pygpt_net/LICENSE,sha256=dz9sfFgYahvu2NZbx4C1xCsVn9GVer2wXcMkFRBvqzY,1146
|
|
3
|
-
pygpt_net/__init__.py,sha256=
|
|
3
|
+
pygpt_net/__init__.py,sha256=AV6WCRvOzsTzbFPQgxqbFXS-JXygj9OjhF5anPJz50g,1373
|
|
4
4
|
pygpt_net/app.py,sha256=prS80WfKSu8U_Ox9oUdxgzgHgRB1nvQQAMFTNltiECY,21954
|
|
5
5
|
pygpt_net/app_core.py,sha256=PwBOV9wZLtr-O6SxBiazABhYXMHH8kZ6OgbvSv2OiZA,3827
|
|
6
6
|
pygpt_net/config.py,sha256=SCps_FfwdrynVAgpn37Ci1qTN8BFC05IGl9sYIi9e0w,16720
|
|
@@ -28,7 +28,7 @@ pygpt_net/controller/audio/__init__.py,sha256=Ci5ClV3DKuMCLtFqQEOr5qun--tlIzKkQl
|
|
|
28
28
|
pygpt_net/controller/audio/audio.py,sha256=6_om9kTec-Hs7oSHD7qgy40fv6xRyME4d3VQ09aoQbM,15030
|
|
29
29
|
pygpt_net/controller/audio/ui.py,sha256=Cp6TOLG4ObdvzjEwJGJ7ovnZHhb66Rupe_agHTH4lJI,7790
|
|
30
30
|
pygpt_net/controller/calendar/__init__.py,sha256=AyzoNqYgxV35CMEzoi_SCSsQh4ehg_Wu_2nsK3xsbyg,512
|
|
31
|
-
pygpt_net/controller/calendar/calendar.py,sha256=
|
|
31
|
+
pygpt_net/controller/calendar/calendar.py,sha256=vM7AuoZw_jkKh5vWwCb0qo0b5jqqFF1OZhWIOT0jHV4,4388
|
|
32
32
|
pygpt_net/controller/calendar/note.py,sha256=AkOQ0FslaDkQbNwXBg95XhtPi3KzhKiFd374L8kTKBA,10169
|
|
33
33
|
pygpt_net/controller/camera/__init__.py,sha256=dwmea8rz2QwdwKT160NYaaOoWucCWeyuecWkEXIcvio,510
|
|
34
34
|
pygpt_net/controller/camera/camera.py,sha256=R9iQdt4k-V7sK4kuLSVoD-QtrSWZbECmXsBpHsILnwo,16526
|
|
@@ -210,7 +210,7 @@ pygpt_net/core/bridge/bridge.py,sha256=1pTbVza_CZMdrnXiRxq9sDROeJtMNofBMMkFzA1VQ
|
|
|
210
210
|
pygpt_net/core/bridge/context.py,sha256=YBqeR5PgV0x5KK5otN-DYQNSqQtVaNddtRLDwSSLC2Y,7154
|
|
211
211
|
pygpt_net/core/bridge/worker.py,sha256=RukudDq6IAxcg2w-wfQmu7Ia-YTT3NPgAybr1OMpxF4,8498
|
|
212
212
|
pygpt_net/core/calendar/__init__.py,sha256=AyzoNqYgxV35CMEzoi_SCSsQh4ehg_Wu_2nsK3xsbyg,512
|
|
213
|
-
pygpt_net/core/calendar/calendar.py,sha256=
|
|
213
|
+
pygpt_net/core/calendar/calendar.py,sha256=mHWU8jPTYWqxd-35tIHM6GuKaFWzmB6Up7lq8ewV2_U,7224
|
|
214
214
|
pygpt_net/core/camera/__init__.py,sha256=cny2EajFmwkFdo_pUkErJY4BhpyHp1kJVDcTCOOvkjY,510
|
|
215
215
|
pygpt_net/core/camera/camera.py,sha256=8-PZN3UEnhMQfT2whI4QvN_Qd8AYnkMWk4oo6cKtDEc,2263
|
|
216
216
|
pygpt_net/core/camera/worker.py,sha256=z2qXyslWh4-0gixJZI6qcmIFutZcLD55P2dTzAYbNaU,14063
|
|
@@ -395,8 +395,8 @@ pygpt_net/css_rc.py,sha256=PX6g9z5BsD-DXISuR2oq3jHcjiKfcJ4HsgcHez6wGMc,27762
|
|
|
395
395
|
pygpt_net/data/audio/click_off.mp3,sha256=aNiRDP1pt-Jy7ija4YKCNFBwvGWbzU460F4pZWZDS90,65201
|
|
396
396
|
pygpt_net/data/audio/click_on.mp3,sha256=qfdsSnthAEHVXzeyN4LlC0OvXuyW8p7stb7VXtlvZ1k,65201
|
|
397
397
|
pygpt_net/data/audio/ok.mp3,sha256=LTiV32pEBkpUGBkKkcOdOFB7Eyt_QoP2Nv6c5AaXftk,32256
|
|
398
|
-
pygpt_net/data/config/config.json,sha256=
|
|
399
|
-
pygpt_net/data/config/models.json,sha256=
|
|
398
|
+
pygpt_net/data/config/config.json,sha256=MX66CzgKeGJeHoSfmJWl8NgJpHVfFj5Vb5YXo7rRqi0,30845
|
|
399
|
+
pygpt_net/data/config/models.json,sha256=MrDoWnmzGvKU9cAmmznoUVMxqHvxweOKxL5_9VejZ4c,118192
|
|
400
400
|
pygpt_net/data/config/modes.json,sha256=IpjLOm428_vs6Ma9U-YQTNKJNtZw-qyM1lwhh73xl1w,2111
|
|
401
401
|
pygpt_net/data/config/presets/agent_code_act.json,sha256=GYHqhxtKFLUCvRI3IJAJ7Qe1k8yD9wGGNwManldWzlI,754
|
|
402
402
|
pygpt_net/data/config/presets/agent_openai.json,sha256=bpDJgLRey_effQkzFRoOEGd4aHUrmzeODSDdNzrf62I,730
|
|
@@ -440,7 +440,7 @@ pygpt_net/data/css/markdown.css,sha256=yaoJPogZZ_ghbqP8vTXTycwVyD61Ik5_033NpzuUz
|
|
|
440
440
|
pygpt_net/data/css/markdown.dark.css,sha256=ixAwuT69QLesZttKhO4RAy-QukplZwwfXCZsWLN9TP4,730
|
|
441
441
|
pygpt_net/data/css/markdown.light.css,sha256=UZdv0jtuFgJ_4bYWsDaDQ4X4AP9tVNLUHBAckC_oD8k,833
|
|
442
442
|
pygpt_net/data/css/style.css,sha256=dgVlVqEL38zF-4Ok-y1rwfALC8zETJAIuIbkwat_hTk,337
|
|
443
|
-
pygpt_net/data/css/style.dark.css,sha256=
|
|
443
|
+
pygpt_net/data/css/style.dark.css,sha256=PJ04XfRN1-3HyE9AO8xy1vhsaMNGrLl0tO4hH8VmCvM,2554
|
|
444
444
|
pygpt_net/data/css/style.light.css,sha256=qJumh5HSwzGiDPoYKcKz_-8cOvV8D9QM74PtxnHBOqE,4914
|
|
445
445
|
pygpt_net/data/css/web-blocks.css,sha256=naAJKmdLqFYaVey_urdbZ1rNCwUdVgbBMypUHxuQA5M,7420
|
|
446
446
|
pygpt_net/data/css/web-blocks.dark.css,sha256=J4koULn9xZynOPsCM8zI0HwG0ChwwROaac00oOduqvA,1579
|
|
@@ -2171,7 +2171,7 @@ pygpt_net/provider/core/calendar/db_sqlite/storage.py,sha256=QDclQCQdr4QyRIqjgGX
|
|
|
2171
2171
|
pygpt_net/provider/core/config/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
|
2172
2172
|
pygpt_net/provider/core/config/base.py,sha256=cbvzbMNqL2XgC-36gGubnU37t94AX7LEw0lecb2Nm80,1365
|
|
2173
2173
|
pygpt_net/provider/core/config/json_file.py,sha256=GCcpCRQnBiSLWwlGbG9T3ZgiHkTfp5Jsg2KYkZcakBw,6789
|
|
2174
|
-
pygpt_net/provider/core/config/patch.py,sha256=
|
|
2174
|
+
pygpt_net/provider/core/config/patch.py,sha256=2y7tbKO3sdsZKcjWB74AIqmgx2bTy2NhCl-uHhlm300,4465
|
|
2175
2175
|
pygpt_net/provider/core/config/patches/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2176
2176
|
pygpt_net/provider/core/config/patches/patch_before_2_6_42.py,sha256=LRjSyLwpLObmN4JWnzQpjLIdf4PHvq-l-5q6ZdNV_WY,127092
|
|
2177
2177
|
pygpt_net/provider/core/ctx/__init__.py,sha256=jQQgG9u_ZLsZWXustoc1uvC-abUvj4RBKPAM30-f2Kc,488
|
|
@@ -2570,8 +2570,8 @@ pygpt_net/ui/widget/textarea/web.py,sha256=FGS0NGSpzKgtP8AzMwnC-LHDXEOY7baHImmnx
|
|
|
2570
2570
|
pygpt_net/ui/widget/vision/__init__.py,sha256=8HT4tQFqQogEEpGYTv2RplKBthlsFKcl5egnv4lzzEw,488
|
|
2571
2571
|
pygpt_net/ui/widget/vision/camera.py,sha256=v1qEncaZr5pXocO5Cpk_lsgfCMvfFigdJmzsYfzvCl0,1877
|
|
2572
2572
|
pygpt_net/utils.py,sha256=7lZj_YSzx7ZfvqFtjYThEvRJNSBZzrJyK7ZxDAtYPAQ,9708
|
|
2573
|
-
pygpt_net-2.6.
|
|
2574
|
-
pygpt_net-2.6.
|
|
2575
|
-
pygpt_net-2.6.
|
|
2576
|
-
pygpt_net-2.6.
|
|
2577
|
-
pygpt_net-2.6.
|
|
2573
|
+
pygpt_net-2.6.51.dist-info/LICENSE,sha256=rbPqNB_xxANH8hKayJyIcTwD4bj4Y2G-Mcm85r1OImM,1126
|
|
2574
|
+
pygpt_net-2.6.51.dist-info/METADATA,sha256=XdMlu9PUgTtx4Xc9K4aNhTdOzf9bOAZYivAd67xKQKg,163681
|
|
2575
|
+
pygpt_net-2.6.51.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
2576
|
+
pygpt_net-2.6.51.dist-info/entry_points.txt,sha256=qvpII6UHIt8XfokmQWnCYQrTgty8FeJ9hJvOuUFCN-8,43
|
|
2577
|
+
pygpt_net-2.6.51.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|