Commit graph

226 commits

Author SHA1 Message Date
Ayaka Mikazuki 2ff858bf99 Add woff2 web fonts 2023-06-04 23:35:39 +08:00
Ayaka Mikazuki c33c1a27e4 remove redundant variable 2023-06-01 00:00:24 +08:00
Andrie 11650a79f8
Somewhat romanian translations (#301)
* Create .env

* Add Romanian Translations

* Polished Romanian Translations

* Removed Trailing Comma

* Fix formatting

* Fix formatting

---------

Co-authored-by: Ayaka Mikazuki <ayaka@mail.shn.hk>
2023-05-31 23:49:38 +08:00
Ayaka Mikazuki ad77b61f6d style: prefer Roboto font 2023-05-31 23:33:14 +08:00
Ayaka Mikazuki 087ef24d8c style: increase gap 2023-05-31 22:57:36 +08:00
Othman El houfi 52fa56c1da
Azure OpenAI API Fix (#297)
* Azure OpenAI API Fix

* improve code

* improve code

---------

Co-authored-by: Jing Hua <tohjinghua123@gmail.com>
2023-05-18 00:04:06 +08:00
Jack Schedel 58cafd20a5
move clear conversation to settings + focus prompt searchbar + hid electron menubar (#285)
* hid electron menubar

* command prompt search bar automatically focused on button press

* moved clear conversation into settings, revamped to match style
2023-05-09 21:15:26 +08:00
George Adams f752a4420e
refactor: getToday (#281) 2023-05-08 19:10:05 +08:00
George Adams 6a56dd0231
refactor: remove unused code (jspdf, downloadPDF) and add code comments (#274) 2023-05-07 23:51:36 +08:00
Limour 4cfbdac7d6
Set a system role as a persistent role. (#134)
* set a system role as a persistent role

Fixes https://github.com/ztjhz/BetterChatGPT/issues/130

* handle system message exceed token limit + improve logic

---------

Co-authored-by: Jing Hua <tohjinghua123@gmail.com>
2023-05-06 11:15:12 +08:00
Jing Hua f0a0156c22
delete unused files
delete customApi.ts
2023-05-05 21:31:54 +08:00
Landry Simo 13b272bfd9
chore: remove unused file (#272)
* Delete freeApi.ts

---------

Co-authored-by: Jing Hua <59118459+ztjhz@users.noreply.github.com>
2023-05-04 23:13:19 +08:00
Jing Hua d2d14876c1 change max_tokens from null to undefined
issue #248
2023-05-03 13:53:05 +08:00
Jing Hua 3fff7968a3 feat: clear prompt library
Fixes #266
2023-05-01 21:51:27 +08:00
Jing Hua bd0f91f1a2 update token cost to prompt + completion 2023-04-30 21:29:47 +08:00
Jing Hua b7b3c0ec75 api selector hide on outside click 2023-04-29 23:09:29 +08:00
Jing Hua b419255beb fix style: api endpoint selector 2023-04-28 17:28:27 +08:00
Jing Hua 86f7313923 fix: chatgpt import 2023-04-26 15:25:36 +08:00
Jing Hua 5fdaa1dbda feat: count lifetime token usage
fixes #163
2023-04-24 13:44:03 +08:00
Jing Hua 832d56381b style: padding 2023-04-22 19:49:25 +08:00
Jing Hua 14795f5dd0 feat: toggle markdown or plaintext view
fixes #242
2023-04-21 17:54:08 +08:00
Jing Hua 4f23af860e refactor: message views 2023-04-21 17:42:27 +08:00
Jing Hua ece4778f88 feat: import openai chatgpt export 2023-04-21 17:20:38 +08:00
Tindo Arsel b3f421cde9
refactor: Add hideOnClickOutside feature to reuse code (#240)
* remove console log

* refactor: Add hideOnClickOutside feature to reuse code

This change abstracts the code repetition in three different files and promote the DRY principle by adding the hideOnClickOutside feature to the handleClickOutside function. The feature is designed to hide an element when clicking outside of its area.

* refactor: hooks

---------

Co-authored-by: Jing Hua <tohjinghua123@gmail.com>
2023-04-20 22:35:51 +08:00
Tindo N. Arsel 226944b62a
Refactor: menu NewFolder styling classnames (#224)
Changed the hidden class to mb-2,
so that the plus icon on new folder button will appear in mobile view.
2023-04-19 22:30:08 +08:00
Jing Hua 627e1cc03a feat: inline LaTeX toggle
fixes #237
2023-04-17 17:36:34 +08:00
Peng Guanwen c2d833b332
Add simple mode (#113)
* Add simple mode

The current UI is too complicated for some first time users.
This commit adds a "Advanced mode" toggle that defaults on but can be
turned off. When the toggle if switched off, the simple mode is
activated and following UI elements are hided:

- Model parameters setting
- Role switch
- Save button (This means user must save *and* submit in simple mode.)

* Simple mode: Fix ctrl-enter in non-sticky blocks

* i18n

* hide token count

* add back save button

* remove unused variables

---------

Co-authored-by: Jing Hua <tohjinghua123@gmail.com>
2023-04-15 22:03:33 +08:00
Jing Hua 3f0ada4a9d
Sync to Google Drive (#233)
* google drive api

* fix: google-api

* GoogleCloudStorage

* list files api

* Google Cloud Storage

* move button to side menu

* sync status

* rename file

* show popup for those with cloud sync

* update button style

* auto close modal after logged in

* auto popup every 59min

* set as unauthenticated if update fails

* i18n

* add spin animation

* feat: Toast

* clear toast

* electron: desktop google drive integration

This update includes integration with Google Drive for desktop access,
but requires a new URL, which may cause existing chat data to be lost.
To minimize disruption, users can export their current chat data and
import it into the newer version.

* update note

* error handling

* support multiple drive files

* feat: delete drive file

* i18n

* change style
2023-04-14 15:29:13 +08:00
Tindo N. Arsel 02697408ce
Refact: hide dropdown prompt & palette when clicked outside (#223)
* Refact: hide dropdown prompt when clicked outside

Added an event listener to hide prompts,
when anything other than the dropdown is clicked,
implemented via a click event.

* Refact: hide palette color when clicked outside

Added an event listener to hide palette color,
when anything other than the dropdown palette is clicked,
implemented via a click event.

* Refactor: event listener conditions for dropdown

Changed the event listener conditions for mousedown events,
so they are only added when dropdown menu or color palette is visible.

* shift paletteRef position

---------

Co-authored-by: Jing Hua <tohjinghua123@gmail.com>
2023-04-12 18:47:32 +08:00
Jing Hua 699ce66e3c fix: disable adding message during generation
fixes #95
2023-04-11 15:14:43 +08:00
Jing Hua 04ef5efc24 style: align buttons
fixes #65
2023-04-10 23:58:57 +08:00
Jing Hua c8f77bd23a model config click backdrop to confirm 2023-04-09 23:13:16 +08:00
Jing Hua 438d396a2e style: sponsor button height 2023-04-08 22:49:29 +08:00
Jing Hua 9adde9fe6b update readme 2023-04-08 22:42:50 +08:00
Jing Hua 90a4e3669b unhide mobile side bar new chat 2023-04-08 22:08:34 +08:00
Jing Hua f1580010df improve error message 2023-04-08 22:06:32 +08:00
Tindo N. Arsel cc82f5b29d
fix math-katex rendering (#194)
* fix math-katex rendering

* enable singleDollarTextMath option with remarkMath

* dynamic import katex.css and add yarn.lock

---------

Co-authored-by: Jing Hua <tohjinghua123@gmail.com>
2023-04-07 21:13:46 +08:00
Jing Hua 96bf1c50fb style: searchbar 2023-04-07 18:29:54 +08:00
Jing Hua 6c12e67393 style: compact side menu 2023-04-07 18:23:51 +08:00
Jing Hua a57dfce108 style: folder icon 2023-04-07 18:17:26 +08:00
Jing Hua 51f2385b75 style: compact new folder 2023-04-07 17:52:03 +08:00
Łukasz Komorowski 8f2b6dfdb8
Added Role Selector close functionality when clicking outside of it (#211)
* Added dropdown close functionality when clicking
outside.

Added an event listener to the document that checks if the user clicks
outside the dropdown and closes it if so. This behavior is implemented
using a useRef hook and a mousedown event. The cleanup function is also
added to remove the event listener when the component unmounts.

* Optimized event listener in RoleSelector component
for improved performance.
Updated event listener for RoleSelector component
to only be added when the dropdown is opened and removed
when the dropdown is closed.

* Removed package-lock.json and yarn.lock

* Revert "Removed package-lock.json and yarn.lock"

This reverts commit f9dbf056b6003377d5bcf4f3a731afe7324f000b.

* Remove yarn.lock, package-lock.json from PR

* revert yarn.lock

* optimisation

* change React.useRef to useRef

---------

Co-authored-by: Jing Hua <tohjinghua123@gmail.com>
2023-04-07 17:42:47 +08:00
Jing Hua 7e7df206ae style: padding
fixes #203
2023-04-06 02:54:22 +08:00
Jing Hua 38bc63f0ac feat: Azure OpenAI endpoint support
fixes #208
2023-04-06 02:48:12 +08:00
Jing Hua 2dcdecc842 style: textarea 2023-04-06 02:33:13 +08:00
Ayaka Mikazuki 01f5d8e4f8 Merge branch 'main' of github.com:ztjhz/ChatGPTFreeApp 2023-04-05 13:09:33 +08:00
Ayaka Mikazuki da86e93bf6 minor fix of language dropdown 2023-04-05 13:09:28 +08:00
Tindo N. Arsel f6ff1f4635
add submit placeholder for message textarea (#200)
* add submit placeholder for message textarea

* fix typo in french translation

* Update MessageContent.tsx

---------

Co-authored-by: Jing Hua <59118459+ztjhz@users.noreply.github.com>
2023-04-05 12:59:01 +08:00
Tindo N. Arsel cda88d85f9
fix folder's new chat button quickly disappear (#201) 2023-04-04 17:41:22 +08:00
Ayaka b4f3789060
Add language names (#198) 2023-04-04 16:08:02 +08:00