From 6d63ca968cfd6848814971304a6317700054e264 Mon Sep 17 00:00:00 2001 From: Marcin Szczyglinski Date: Wed, 6 Mar 2024 23:29:06 +0100 Subject: [PATCH] Updated to 2.1.10 - features, issue #23 --- CHANGELOG.md | 6 ++++-- README.md | 8 ++++++-- docs/source/credits.rst | 1 + src/pygpt_net/CHANGELOG.txt | 6 ++++-- src/pygpt_net/data/config/config.json | 1 + src/pygpt_net/ui/dialog/about.py | 1 + 6 files changed, 17 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d21200262..ec1c32e66 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,8 +3,10 @@ # 2.1.10 (2024-03-06) - Added `DB Viewer` in Developer menu. -- Added label color filter in context list. -- Added context item delete option. +- Added label color filter in context list - issue #23 +- Added context item delete option - issue #23 +- Added presets for plugins - issue #23 +- Fixed and improved autonomous agents run - issue #23 # 2.1.9 (2024-03-04) diff --git a/README.md b/README.md index 0dc4a1d66..26c874bbd 100755 --- a/README.md +++ b/README.md @@ -2887,8 +2887,10 @@ may consume additional tokens that are not displayed in the main window. # 2.1.10 (2024-03-06) - Added `DB Viewer` in Developer menu. -- Added label color filter in context list. -- Added context item delete option. +- Added label color filter in context list - issue #23 +- Added context item delete option - issue #23 +- Added presets for plugins - issue #23 +- Fixed and improved autonomous agents run - issue #23 # 2.1.9 (2024-03-04) @@ -3112,6 +3114,8 @@ The full changelog is located in the **[CHANGELOG.md](CHANGELOG.md)** file in th GitHub community: +- **gfsysa** + - **kaneda2004** - **moritz-t-w** diff --git a/docs/source/credits.rst b/docs/source/credits.rst index 2b47a7879..6867c9266 100755 --- a/docs/source/credits.rst +++ b/docs/source/credits.rst @@ -27,6 +27,7 @@ Special thanks =============== GitHub community: +* **gfsysa** * **kaneda2004** * **moritz-t-w** diff --git a/src/pygpt_net/CHANGELOG.txt b/src/pygpt_net/CHANGELOG.txt index 45b944d31..c968564f9 100755 --- a/src/pygpt_net/CHANGELOG.txt +++ b/src/pygpt_net/CHANGELOG.txt @@ -1,8 +1,10 @@ 2.1.10 (2024-03-06) - Added "DB Viewer" in Developer menu. -- Added label color filter in context list. -- Added context item delete option. +- Added label color filter in context list - issue #23 +- Added context item delete option - issue #23 +- Added presets for plugins - issue #23 +- Fixed and improved autonomous agents run - issue #23 2.1.9 (2024-03-04) diff --git a/src/pygpt_net/data/config/config.json b/src/pygpt_net/data/config/config.json index 535c79240..44248a95e 100755 --- a/src/pygpt_net/data/config/config.json +++ b/src/pygpt_net/data/config/config.json @@ -146,6 +146,7 @@ }, "presence_penalty": 0.0, "preset": "current.chat", + "preset.plugins": "", "prompt": "", "render.plain": false, "send_clear": true, diff --git a/src/pygpt_net/ui/dialog/about.py b/src/pygpt_net/ui/dialog/about.py index 83c161ea8..6e92c1736 100755 --- a/src/pygpt_net/ui/dialog/about.py +++ b/src/pygpt_net/ui/dialog/about.py @@ -34,6 +34,7 @@ def get_contributors(self) -> list: :return: contributors list """ return [ + "gfsysa", "kaneda2004", "moritz-t-w", ]