Skip to content

Commit

Permalink
Merge branch 'master' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
kitabatake1013 committed Jan 9, 2023
2 parents 854b6cb + ac14d84 commit c6b5c23
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 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 = "Universal Live Tracking and Recording App"#アプリケーションの完全な名前
APP_NAME="ULTRA"#アプリケーションの名前
APP_ICON = "ultra.ico"
APP_VERSION="1.5.0"
APP_VERSION="1.5.1"
APP_LAST_RELEASE_DATE="2023-01-09"
APP_COPYRIGHT_YEAR="2021-2023"
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 @@
Universal Live Tracking and Recording App(ULTRA) 更新履歴

2023/01/09 Version 1.5.1
1. Version 1.5.0において、ツイキャスへのログイン時のパスワード入力をキャンセルすると、ツイキャスの録画機能が正しく動作しなくなる問題を修正しました。

2023/01/09 Version 1.5.0
1. ツイキャス連携機能において、アカウントにログインした状態での録画に対応しました。

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 @@
Universal Live Tracking and Recording App -ULTRA-

バージョン:  ver.1.5.0
バージョン:  ver.1.5.1
リリース:   2023-01-09
開発・配布元: ACT Laboratory (https://actlab.org/)
主要開発者:  北畠一翔
Expand Down
6 changes: 4 additions & 2 deletions sources/twitcasting.py
Original file line number Diff line number Diff line change
Expand Up @@ -441,8 +441,10 @@ def toggleLogin(self, enable=None):
enable = not globalVars.app.config.getboolean("twitcasting", "login", False)
if enable:
# 有効化
self.sessionManager = SessionManager(self)
result = self.sessionManager.login()
sessionManager = SessionManager(self)
result = sessionManager.login()
if result:
self.sessionManager = sessionManager
else:
# 無効化
if hasattr(self, "sessionManager"):
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"version": "1.5.0", "release_date": "2023-01-09"}
{"version": "1.5.1", "release_date": "2023-01-09"}

0 comments on commit c6b5c23

Please sign in to comment.