Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
eliranwong committed Dec 1, 2024
1 parent b83999c commit 90f8a0b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
# https://packaging.python.org/en/latest/guides/distributing-packages-using-setuptools/
setup(
name=package,
version="0.2.4",
version="0.2.5",
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
2 changes: 1 addition & 1 deletion uniquebible/lang/language_zh_HANT.py
Original file line number Diff line number Diff line change
Expand Up @@ -1093,5 +1093,5 @@
"donate": "多納特",
"about": "關於",
"githubStatistics": "GitHub 統計資料",
"overrideCompareToUseAllTexts": "在比對所有聖經取而代之的取而代之的取而代之",
"overrideCompareToUseAllTexts": "比較所有聖經譯本而不單是最愛的譯本",
}
3 changes: 2 additions & 1 deletion xonsh/completer.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ def ub_completer(context):

# Get UniqueBible App API resources
import requests, re
url = f"https://bible.gospelchurch.uk/json?cmd=.resources"
private = f"private={ubaconfig.web_api_private}&" if ubaconfig.web_api_private else ""
url = f"""{ubaconfig.web_api_endpoint}?{private}cmd=.resources"""
response = requests.get(url)
response.encoding = "utf-8"
api_resources = response.json()
Expand Down

0 comments on commit 90f8a0b

Please sign in to comment.