Compare commits
7 Commits
80f549fde9
...
2024.12.20
Author | SHA1 | Date | |
---|---|---|---|
|
9da925c80d | ||
|
9c45ca1b5f | ||
|
d1be848ebb | ||
|
bc4319bf5e | ||
|
6f8139ed8f | ||
|
f1a6c75459 | ||
|
1d746eb709 |
3
setup.py
3
setup.py
@@ -60,9 +60,6 @@ def read(fname):
|
|||||||
setup(
|
setup(
|
||||||
# Application name:
|
# Application name:
|
||||||
name="fenrir-screenreader",
|
name="fenrir-screenreader",
|
||||||
# Version is now handled by setuptools_scm
|
|
||||||
use_scm_version=True,
|
|
||||||
setup_requires=['setuptools_scm'],
|
|
||||||
# description
|
# description
|
||||||
description="A TTY Screen Reader for Linux.",
|
description="A TTY Screen Reader for Linux.",
|
||||||
long_description=read('README.md'),
|
long_description=read('README.md'),
|
||||||
|
@@ -5,4 +5,4 @@
|
|||||||
# By Chrys, Storm Dragon, and contributers.
|
# By Chrys, Storm Dragon, and contributers.
|
||||||
|
|
||||||
version = "2024.12.20"
|
version = "2024.12.20"
|
||||||
codeName = "testing"
|
codeName = "stable"
|
||||||
|
@@ -201,7 +201,7 @@ class FenrirConfigTool:
|
|||||||
|
|
||||||
# Test voice configuration
|
# Test voice configuration
|
||||||
if self.test_voice(moduleChoice, voice):
|
if self.test_voice(moduleChoice, voice):
|
||||||
config = configparser.ConfigParser()
|
config = configparser.ConfigParser(interpolation=None)
|
||||||
config.read(self.settingsFile)
|
config.read(self.settingsFile)
|
||||||
|
|
||||||
if 'speech' not in config:
|
if 'speech' not in config:
|
||||||
@@ -244,7 +244,7 @@ class FenrirConfigTool:
|
|||||||
|
|
||||||
def edit_general_config(self) -> None:
|
def edit_general_config(self) -> None:
|
||||||
while True:
|
while True:
|
||||||
config = configparser.ConfigParser()
|
config = configparser.ConfigParser(interpolation=None)
|
||||||
config.read(self.settingsFile)
|
config.read(self.settingsFile)
|
||||||
sections = config.sections()
|
sections = config.sections()
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user