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 Feb 11, 2023
2 parents efcab6d + 8abbf5a commit 269c82e
Show file tree
Hide file tree
Showing 21 changed files with 1,050 additions and 657 deletions.
1 change: 1 addition & 0 deletions DefaultSettings.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ def get():
"defaultVolume": 100,
"audioDelay": 10,
"device": "",
"login": False,
}
config["fx"] = {
"playCommentReceivedSound": True,
Expand Down
4 changes: 2 additions & 2 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def _import():
from views import main
import manager
import twitcasting.accountManager
import twitcasting.postItem
import twitcasting.advancedAccountManager

class Main(AppBase.MainBase):
def __init__(self):
Expand Down Expand Up @@ -55,7 +55,7 @@ def initialize(self):
self.accountManager = twitcasting.accountManager.AccountManager()
self.hasAccountIssue = False
self.Manager = manager.manager(self.hMainView)
self.postItem = twitcasting.postItem.PostItem()
self.advancedAccountManager = twitcasting.advancedAccountManager.AdvancedAccountManager()
if len(self.accountManager.tokens) == 0:
simpleDialog.dialog(_("アカウント登録"), _("アカウントが登録されていません。ライブに接続する前に、設定メニューのアカウントマネージャからアカウントの登録を行ってください。"))
self.hasAccountIssue = True
Expand Down
4 changes: 2 additions & 2 deletions constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
#アプリケーション基本情報
APP_NAME="TCV"
APP_FULL_NAME = "TwitCasting Viewer"
APP_VERSION="3.3.0"
APP_VERSION="3.4.0"
APP_LAST_RELEASE_DATE = "2021-07-24"
APP_ICON = None
APP_COPYRIGHT_YEAR="2019-2022"
APP_COPYRIGHT_YEAR="2019-2023"
APP_LICENSE="GNU General Public License2.0 or later"
APP_DEVELOPERS="Kazto Kitabatake, ACT Laboratory"
APP_DEVELOPERS_URL="https://actlab.org/"
Expand Down
Binary file modified locale/en-us/LC_MESSAGES/messages.mo
Binary file not shown.
Loading

0 comments on commit 269c82e

Please sign in to comment.