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 Apr 29, 2023
2 parents e7aedc1 + f29e68c commit abdc37d
Show file tree
Hide file tree
Showing 19 changed files with 629 additions and 757 deletions.
9 changes: 1 addition & 8 deletions ConfigManager.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
#ConfigManager
#Copyright (C) 2019-2022 yamahubuki <[email protected]>
#Copyright (C) 2019-2020 yamahubuki <[email protected]>

import os
import configparser
Expand All @@ -15,7 +15,6 @@ def __init__(self):
self.identifier="ConfigManager"
self.log=getLogger(self.identifier)
self.log.debug("Create config instance")
self.fileName = None

def read(self,fileName):
self.fileName=fileName
Expand Down Expand Up @@ -54,12 +53,6 @@ def write(self):
self.log.error("save failed.")
return errorCodes.ACCESS_DENIED

def getFileName(self):
return self.fileName

def getAbsFileName(self):
return os.path.abspath(self.fileName)

def __getitem__(self,key):
try:
return ConfigSection(super().__getitem__(key))
Expand Down
3 changes: 2 additions & 1 deletion DefaultSettings.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ def get():
config["view"]={
"font": "bold 'MS ゴシック' 22 windows-932",
"colorMode":"normal",
"textwrapping":"off"
"textwrapping":"off",
"enableMultiline":False,
}
config["speech"]={
"reader" : "AUTO"
Expand Down
4 changes: 2 additions & 2 deletions constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
APP_FULL_NAME = "windows Native Peing Connector"#アプリケーションの完全な名前
APP_NAME="NPC"#アプリケーションの名前
APP_ICON = None
APP_VERSION="1.3.2"
APP_LAST_RELEASE_DATE="2022-02-02"
APP_VERSION="1.4.0"
APP_LAST_RELEASE_DATE="2023-04-29"
APP_COPYRIGHT_YEAR="2021"
APP_LICENSE="Apache License 2.0"
APP_DEVELOPERS="yamahubuki, ACT Laboratory"
Expand Down
Binary file modified locale/en-us/LC_MESSAGES/messages.mo
Binary file not shown.
Loading

0 comments on commit abdc37d

Please sign in to comment.