diff --git a/constants.py b/constants.py index b5d6228..a503898 100644 --- a/constants.py +++ b/constants.py @@ -9,7 +9,7 @@ APP_FULL_NAME = "windows Native Peing Connector"#アプリケーションの完全な名前 APP_NAME="NPC"#アプリケーションの名前 APP_ICON = None -APP_VERSION="1.3.1" +APP_VERSION="1.3.2" APP_LAST_RELEASE_DATE="2022-02-02" APP_COPYRIGHT_YEAR="2021" APP_LICENSE="Apache License 2.0" diff --git a/public/history.txt b/public/history.txt index e38fdc8..49c0197 100644 --- a/public/history.txt +++ b/public/history.txt @@ -1,5 +1,8 @@ windows Native Peing Connector(NPC) 更新履歴 +2022/02/02 Version 1.3.2 +1. リスト上の項目を選択していない状態でソフトウェアを終了しようとした場合、エラーとなってしまう不具合を修正しました。 + 2022/02/02 Version 1.3.1 1. 回答者がPeingIDを変更したことをNPCが検知した後で変更後のPeingIdをNPCに登録しようとした場合に、既に登録されているというエラーが表示されていた不具合を修正しました。 2. [Twitterのフォローリストから一括登録]が正しく動作しなくなった問題を修正しました。 diff --git a/public/readme.txt b/public/readme.txt index 6f436b2..c16423e 100644 --- a/public/readme.txt +++ b/public/readme.txt @@ -1,6 +1,6 @@ windows Native Peing Connector -NPC- - バージョン:  ver.1.3.1 + バージョン:  ver.1.3.2 リリース:   2022-02-02 開発・配布元: ACT Laboratory (https://actlab.org/) 主要開発者:  吹雪 diff --git a/version.json b/version.json index 547ca19..a0404dc 100644 --- a/version.json +++ b/version.json @@ -1 +1 @@ -{"version": "1.3.1", "release_date": "2022-02-02"} \ No newline at end of file +{"version": "1.3.2", "release_date": "2022-02-02"} \ No newline at end of file diff --git a/views/main.py b/views/main.py index 01d46fc..f4f4d2e 100644 --- a/views/main.py +++ b/views/main.py @@ -637,7 +637,8 @@ def showError(self,code,parent=None): def OnExit(self, event): # 最終閲覧位置を記録 index = self.parent.lst.GetFirstSelected() - self.parent.app.config[self.parent.identifier]["last_cursor_item"] = self.parent.answerIdList[index] + if index >= 0: + self.parent.app.config[self.parent.identifier]["last_cursor_item"] = self.parent.answerIdList[index] # リスト表示設定の保存 self.parent.lst.saveColumnInfo()