diff --git a/Readme.md b/Readme.md index 4d5c492..5009d3d 100644 --- a/Readme.md +++ b/Readme.md @@ -88,7 +88,7 @@ Windowsの場合は、Windowsの検索窓で「環境変数を編集」で検索 以下のリンクから ZundaGPT2.ZIP をダウンロードして、作成したフォルダに展開するのだ。 -https://github.com/led-mirage/ZundaGPT2/releases/tag/v1.2.0 +https://github.com/led-mirage/ZundaGPT2/releases/tag/v1.2.1 #### 3. 実行 @@ -183,9 +183,9 @@ OpenAIやGoogle GeminiのAPIキーはあなただけのものなので、人に これが嫌な人は(ボクも嫌だけど)、Python本体をインストールしてPythonから普通に実行して欲しいのだ。実行ファイルのほうが手軽だし、そのほうがPythonに詳しくない人にとっては簡単なんだけど、誤認問題がついて回ることは覚えておいて欲しいのだ。 VirusTotalでのチェック結果は以下の通りなのだ。 -(74個中5個のアンチウィルスエンジンで検出 :2024/06/23 v1.2.0)。 +(74個中4個のアンチウィルスエンジンで検出 :2024/07/06 v1.2.1)。 - + ### ⚡ 免責事項 @@ -374,3 +374,8 @@ VirusTotalでのチェック結果は以下の通りなのだ。 - アプリケーションアイコンの追加 - 印刷する場合、codeブロックの中のテキストを右端で折り返すように修正 + +### 1.2.1 (2024/7/06) + +- 回答表示処理中にブラウザでエラー(OUT OF MEMORYなど)が発生する場合がある問題に対処 + parsedSentenceメソッド中のMathJax.typesetPromise()をコメントアウト diff --git a/app/html/index.html b/app/html/index.html index e8c4c27..5d8d0df 100644 --- a/app/html/index.html +++ b/app/html/index.html @@ -582,7 +582,7 @@ // Pythonから呼び出される関数 // センテンスの読み上げが終わったときに呼び出される function parsedSentence(sentence) { - MathJax.typesetPromise(); + //MathJax.typesetPromise(); } // Pythonから呼び出される関数 diff --git a/app/main.py b/app/main.py index a5a13f6..b34df61 100644 --- a/app/main.py +++ b/app/main.py @@ -22,7 +22,7 @@ from chat_log import ChatLog APP_NAME = "ZundaGPT2" -APP_VERSION = "1.2.0" +APP_VERSION = "1.2.1" COPYRIGHT = "Copyright 2024 led-mirage" # アプリケーションクラス diff --git a/doc/virustotal_1.2.1.png b/doc/virustotal_1.2.1.png new file mode 100644 index 0000000..edae110 Binary files /dev/null and b/doc/virustotal_1.2.1.png differ