Skip to content

Commit

Permalink
chore: build 1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
TBXark committed Jun 20, 2024
1 parent 113793f commit bd2c707
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 9 deletions.
2 changes: 1 addition & 1 deletion dist/buildinfo.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"sha": "90cf7c6", "timestamp": 1715873504}
{"sha": "17ebf29", "timestamp": 1718863608}
6 changes: 3 additions & 3 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ var Environment = class {
// -- 版本数据 --
//
// 当前版本
BUILD_TIMESTAMP = 1715873504;
BUILD_TIMESTAMP = 1718863608;
// 当前版本 commit id
BUILD_VERSION = "90cf7c6";
BUILD_VERSION = "17ebf29";
// -- 基础配置 --
/**
* @type {I18n | null}
Expand Down Expand Up @@ -1090,7 +1090,7 @@ var LineDecoder = class {
if (typeof TextDecoder !== "undefined") {
if (bytes instanceof Uint8Array || bytes instanceof ArrayBuffer) {
(_a = this.textDecoder) !== null && _a !== void 0 ? _a : this.textDecoder = new TextDecoder("utf8");
return this.textDecoder.decode(bytes);
return this.textDecoder.decode(bytes, { stream: true });
}
throw new Error(`Unexpected: received non-Uint8Array/ArrayBuffer (${bytes.constructor.name}) in a web platform. Please report this error.`);
}
Expand Down
2 changes: 1 addition & 1 deletion dist/timestamp
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1715873504
1718863608
6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chatgpt-telegram-workers",
"version": "1.5.1",
"version": "1.7.0",
"description": "最简单快捷部署属于自己的ChatGPT Telegram机器人的方法,单文件,直接复制粘贴一把梭,无需任何依赖,无需配置本地开发环境,不用域名,免服务器。",
"main": "main.js",
"type": "module",
Expand All @@ -24,9 +24,7 @@
},
"files": [
"main.js",
"src/**/*",
"package.json",
"package-lock.json"
"src/**/*"
],
"author": "TBXark",
"license": "MIT",
Expand Down

0 comments on commit bd2c707

Please sign in to comment.