Skip to content

Commit

Permalink
Merge pull request #192 from yjg30737/hotfix/all
Browse files Browse the repository at this point in the history
v1.8.1
  • Loading branch information
yjg30737 authored Nov 17, 2024
2 parents d28dc75 + d82b09b commit f3e7334
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "pyqt-openai"
version = "1.8.0"
version = "1.8.1"
description = "Python multipurpose chatbot that user can use GPT, other AI models altogether (Release Name: VividNode)"
authors = [{ name = "Jung Gyu Yoon", email = "[email protected]" }]
license = { text = "MIT" }
Expand Down
2 changes: 1 addition & 1 deletion pyqt_openai/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# For the sake of following the PEP8 standard, we will declare module-level dunder names.
# PEP8 standard about dunder names: https://peps.python.org/pep-0008/#module-level-dunder-names

__version__ = "1.8.0"
__version__ = "1.8.1"
__author__ = "Jung Gyu Yoon"

# Constants
Expand Down
8 changes: 4 additions & 4 deletions pyqt_openai/chat_widget/prompt_gen_widget/formPage.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,14 +230,14 @@ def __initUi(self):
)

for i in range(len(self.__entries)):
name = self.__entries[i].name
content = self.__entries[i].content
act = self.__entries[i].act
prompt = self.__entries[i].prompt

item1 = QTableWidgetItem(name)
item1 = QTableWidgetItem(act)
item1.setData(Qt.ItemDataRole.UserRole, self.__entries[i].id)
item1.setTextAlignment(Qt.AlignmentFlag.AlignCenter)

item2 = QTableWidgetItem(content)
item2 = QTableWidgetItem(prompt)
item2.setTextAlignment(Qt.AlignmentFlag.AlignCenter)

self.__table.setItem(i, 0, item1)
Expand Down
8 changes: 4 additions & 4 deletions version_info.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
#
VSVersionInfo(
ffi=FixedFileInfo(
filevers=(1, 8, 0),
prodvers=(1, 8, 0),
filevers=(1, 8, 1),
prodvers=(1, 8, 1),
mask=0x3f,
flags=0x0,
OS=0x4,
Expand All @@ -19,10 +19,10 @@ VSVersionInfo(
[
StringTable(
u'040904B0',
[StringStruct(u'FileVersion', u'1.8.0'),
[StringStruct(u'FileVersion', u'1.8.1'),
StringStruct(u'ProductName', u'VividNode'),
StringStruct(u'LegalCopyright', u'Copyright © 2024 Jung Gyu Yoon'),
StringStruct(u'ProductVersion', u'1.8.0')])
StringStruct(u'ProductVersion', u'1.8.1')])
]),
VarFileInfo([VarStruct(u'Translation', [1033, 1200])])
]
Expand Down

0 comments on commit f3e7334

Please sign in to comment.