Skip to content

Commit

Permalink
integrate commentary with ToolMate AI
Browse files Browse the repository at this point in the history
  • Loading branch information
eliranwong committed Oct 21, 2024
1 parent 21290da commit 03fe95c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
# https://packaging.python.org/en/latest/guides/distributing-packages-using-setuptools/
setup(
name=package,
version="0.1.06",
version="0.1.07",
python_requires=">=3.8, <3.13",
description=f"UniqueBible App is a cross-platform & offline bible application, integrated with high-quality resources and unique features. Developers: Eliran Wong and Oliver Tseng",
long_description=long_description,
Expand Down
1 change: 1 addition & 0 deletions tests/test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
print("testing")
4 changes: 3 additions & 1 deletion uniquebible/util/ConfigUtil.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ def swapTerminalColors():
#config.terminalSwapColors = (config.terminalResourceLinkColor.startswith("ansibright"))

@staticmethod
def setup(noQt=None, cli=None, enableCli=None, enableApiServer=None, enableHttpServer=None):
def setup(noQt=None, cli=None, enableCli=None, enableApiServer=None, enableHttpServer=None, runMode=None):
if runMode is not None:
config.runMode = runMode
if noQt is not None:
config.noQt = noQt
if cli is not None:
Expand Down

0 comments on commit 03fe95c

Please sign in to comment.