fix to update part 2

This commit is contained in:
2026-09-01 01:11:44 -07:00
parent 57492a479b
commit 815f342ead
+10 -5
View File
@@ -13,7 +13,7 @@ import sys
import platform import platform
CURRENT_VERSION = "1.6.1" CURRENT_VERSION = "1.7.0"
APP_NAME = "flares" APP_NAME = "flares"
APP_NAME_EXPANDED = "fNIRS Lightweight Analysis, Research, & Evaluation Suite" APP_NAME_EXPANDED = "fNIRS Lightweight Analysis, Research, & Evaluation Suite"
API_URL = f"https://git.research.dezeeuw.ca/api/v1/repos/tyler/{APP_NAME}/releases" API_URL = f"https://git.research.dezeeuw.ca/api/v1/repos/tyler/{APP_NAME}/releases"
@@ -21,6 +21,7 @@ API_URL_SECONDARY = f"https://git.research2.dezeeuw.ca/api/v1/repos/tyler/{APP_N
PLATFORM_NAME = platform.system().lower() PLATFORM_NAME = platform.system().lower()
CHANGELOG_URL = f"https://git.research.dezeeuw.ca/tyler/{APP_NAME}/raw/branch/main/changelog_major.md" CHANGELOG_URL = f"https://git.research.dezeeuw.ca/tyler/{APP_NAME}/raw/branch/main/changelog_major.md"
WIKI_URL = f"https://git.research.dezeeuw.ca/tyler/{APP_NAME}/wiki" WIKI_URL = f"https://git.research.dezeeuw.ca/tyler/{APP_NAME}/wiki"
PLUGINS_URL = f"https://git.research.dezeeuw.ca/tyler/{APP_NAME}-plugins/raw/branch/main/plugins.json"
PIPELINE_STAGES = [ PIPELINE_STAGES = [
@@ -72,9 +73,13 @@ DATA_SCHEMA = [
def resource_path(relative_path: str) -> str: def resource_path(relative_path: str) -> str:
""" """Get absolute path to resource regardless of running directly or packaged using PyInstaller"""
Get absolute path to resource regardless of running directly or packaged using PyInstaller
"""
base_path = getattr(sys, "_MEIPASS", os.path.abspath(".")) base_path = getattr(sys, "_MEIPASS", os.path.abspath("."))
return os.path.join(base_path, relative_path) return os.path.join(base_path, relative_path)
def get_app_dir() -> str:
"""Returns the root directory of the application executable or working directory."""
if getattr(sys, 'frozen', False):
return os.path.dirname(sys.executable)
return os.getcwd()