Skip to content

Tags: FrankCYB/JavaGPT

Tags

v1.3.2

Toggle v1.3.2's commit message
1.3.2 Update

- Resolved an issue causing HTTPS proxies not to initialize

v1.3.1

Toggle v1.3.1's commit message
1.3.1 Update

- Added ability to adjust FontSize of DisplayArea text.
	- Configurable in config.properties via "FontSize=" property.
	- "Font Size" entry under "Options" menu allows you to adjust the current "FontSize=" on the fly.
- Resolved issue causing new lines to be added at the end of text instead of from the position of the caret in ChatArea.

v1.3.0

Toggle v1.3.0's commit message
1.3.0 Update

- Unicode is now supported!
- Added support for SOCKS & HTTP proxies (configurable via config.properties)
	- proxyip= // Proxy IP
	- proxyport= // Proxy port number
	- proxytype= // Options: SOCKS,HTTP,HTTPS
- The "autosave" property has been renamed to "chat_history" to more accurately reflect its function.
- Removed "Auto Save" button as it was redundant

v1.2.9

Toggle v1.2.9's commit message
1.2.9 Update

- You can now submit prompts using the Enter key by default and make a new line by pressing (Shift + Enter)
- New "EnterToSubmit" property in config.properties. When false, pressing enter in ChatArea will create new lines instead of submitting.
  Also (CTRL + Enter) hotkey will work to submit when this property is set to false.
- Added several comments to my source code to explain certain functions and components in JavaGPT

v1.2.8

Toggle v1.2.8's commit message
1.2.8 Update

- Added (CTRL + Enter) hotkey to submit prompts from "ChatArea"
- Resolved issue causing overlapping messages when starting a "New Chat" while streamChatCompletion is active. Now, streamChatCompletion will terminate before starting a new conversation.

v1.2.7

Toggle v1.2.7's commit message
1.2.7 Update

- Made "Revert"s happen in RAM. This means with autosave on, it wont overwrite saved chats until you submit another response
- Fixed right-click paste issue in ChatArea. Now it will properly overwrite highlighted text when pasted
- Corrected a flaw in the "Cancel Req" feature, which previously failed to remove the last user prompt from the ChatMessage List.
- Renamed the "Reset" button to "New Chat"

v1.2.5

Toggle v1.2.5's commit message
1.2.5 Update 2

- Added "autoscroll=" property in config.properties. If true, chat (DisplayArea) will automatically scroll as new text is appended

- Fixed bug with new "Revert" feature that kept the filename extension in the title bar after a revert

v1.2.0

Toggle v1.2.0's commit message
1.2.0 Update

- Added "HTML View" under "Options" menu which allows you to see your current chat content in HTML with markdown language support
- Added "Form Size" under "Option" menu which allows you to adjust the "WindowSize=" property on the fly
- Added ability to sort your "Chat History" by date or alphabetically via a right click popmenu item in the "Chat History" window (formally known as "Chat Loader")
- Renamed "Chat Loader" to "Chat History". Still accessible via the "Load Chat" button

v1.0.7

Toggle v1.0.7's commit message
1.0.7 Update

- Added "refresh" popup menu when no elements are selected in ChatLoader and user right clicks

v1.0.5

Toggle v1.0.5's commit message
1.0.5 Update

- Added "large" option for "WindowSize="
- Fixed a bug where the JFrame title window would get stuck on "ChatGPT is generating a title. Please wait..." if AutoTitle(); named the file as an existing file. The issue has been resolved, and the title window now restores its original title.