From 4b4ecd51896e16155e6fc78c43bab4feac21188b Mon Sep 17 00:00:00 2001 From: RainEggplant Date: Tue, 28 Feb 2023 10:38:39 +0800 Subject: [PATCH] v2.2.0 --- README.md | 18 +++++++++++++----- package.json | 2 +- 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 1463299..e9877bd 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # ChatGPT Telegram Bot -![badge:version](https://img.shields.io/badge/version-2.1.1-brightgreen) +![badge:version](https://img.shields.io/badge/version-2.2.0-brightgreen) ![license](https://img.shields.io/badge/license-MIT-green) A ChatGPT bot for Telegram based on Node.js. Support both browserless and browser-based APIs. @@ -10,13 +10,23 @@ A ChatGPT bot for Telegram based on Node.js. Support both browserless and browse 🎉 v2 has been released!
+ 🔔 Feb. 28, 2023 (v2.2.0) + + > - Support message queue to avoid rate limit. + > - Improve Markdown parsing. +
+ +
+Previous Updates + +
🔔 Feb. 22, 2023 (v2.1.1) > - Support custom prompt prefix and suffix (allowing you to customize the bot's identity and behavior). > - Support Node.js v19.
-
+
🔔 Feb. 19, 2023 (v2.1.0) > We have added support for the unofficial proxy API by @acheong08. This API uses a proxy server that allows users to bypass Cloudflare protection and use the real ChatGPT. Please see [Usage](#usage) for more details. @@ -24,9 +34,6 @@ A ChatGPT bot for Telegram based on Node.js. Support both browserless and browse > For previous users, we've updated our API options. `api.version` is now `api.type`, with options `browser` (previously `v3`), `official` (previously `v4`), and `unofficial`. Please update your config file accordingly.
-
-Previous Updates -
🔔 Feb. 17, 2023 @@ -61,6 +68,7 @@ A ChatGPT bot for Telegram based on Node.js. Support both browserless and browse - Work in privacy mode (the bot can only see specific messages) - Bot access control based on user and group IDs - Reset chat thread and refresh session with command +- Queue messages to avoid rate limit - Typing indicator, Markdown formatting, ... - Cloudflare bypassing and CAPTCHA automation (for the browser-based API) - Customize bot identity and behavior (see https://github.com/RainEggplant/chatgpt-telegram-bot/issues/11) diff --git a/package.json b/package.json index 428cc3a..4d2f48f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "chatgpt-telegram-bot", - "version": "2.1.1", + "version": "2.2.0", "description": "", "main": "index.js", "type": "module",