7 Commits

Author SHA1 Message Date
Storm Dragon
9da925c80d Fixed merge conflict. 2024-12-21 17:52:38 -05:00
Storm Dragon
9c45ca1b5f Fixed bug in Fenrir configuration tool. 2024-12-21 17:46:23 -05:00
Storm Dragon
d1be848ebb Merge branch 'testing' got rid of the scm dependency." 2024-12-20 14:11:51 -05:00
Storm Dragon
bc4319bf5e Forgot to get rid of the scm stuff since moving back to setup.py. 2024-12-20 14:08:25 -05:00
Storm Dragon
6f8139ed8f Change codename to stable for tag. 2024-12-20 13:33:23 -05:00
Storm Dragon
f1a6c75459 Merged setup fixes to master. Went back to setup.py just with some updates to minimize python's grumbling. Also, merged the locale setup. 2024-12-20 12:50:32 -05:00
Storm Dragon
1d746eb709 Minimal pyproject.tmol added. 2024-12-20 12:30:56 -05:00
3 changed files with 3 additions and 6 deletions

View File

@@ -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'),

View File

@@ -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"

View File

@@ -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()