Skip to content

Commit

Permalink
Merge branch 'master' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
yamahubuki committed Feb 1, 2022
2 parents 9a6c98b + 43eaceb commit e7aedc1
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
3 changes: 3 additions & 0 deletions public/history.txt
Original file line number Diff line number Diff line change
@@ -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のフォローリストから一括登録]が正しく動作しなくなった問題を修正しました。
Expand Down
2 changes: 1 addition & 1 deletion public/readme.txt
Original file line number Diff line number Diff line change
@@ -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/)
主要開発者:  吹雪
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"version": "1.3.1", "release_date": "2022-02-02"}
{"version": "1.3.2", "release_date": "2022-02-02"}
3 changes: 2 additions & 1 deletion views/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit e7aedc1

Please sign in to comment.