inkstitch/lib/gui/electron.py

50 wiersze
1.7 KiB
Python
Czysty Zwykły widok Historia

2021-03-12 04:17:19 +00:00
# Authors: see git history
#
# Copyright (c) 2010 Authors
# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
2019-04-11 03:37:16 +00:00
import os
import subprocess
2019-04-11 04:03:23 +00:00
import sys
2019-04-11 03:37:16 +00:00
from ..utils import get_bundled_dir
app_process = None
def open_url(url):
global app
command = []
cwd = None
2019-04-11 04:03:23 +00:00
if getattr(sys, 'frozen', None) is not None:
electron_path = os.path.join(get_bundled_dir("electron"), "inkstitch-gui")
2019-04-12 21:45:57 +00:00
if sys.platform == "darwin":
electron_path = os.path.join(sys._MEIPASS, "electron", "inkstitch-gui.app", "Contents", "MacOS", "inkstitch-gui")
2019-11-11 22:59:51 +00:00
command = ["open", "-W", "-a", electron_path, "--args", url]
2019-04-12 21:45:57 +00:00
else:
command = [electron_path, url]
2019-04-11 05:00:28 +00:00
else:
2019-04-12 21:45:57 +00:00
# if we're not running in a pyinstaller bundle, run electron directly
command = ["yarn", "dev", url]
cwd = get_bundled_dir("electron")
2019-04-11 03:37:16 +00:00
# Any output on stdout will crash inkscape.
# In macos manual install the python env paths are incomplete
# Adding the yarn path to the env paths fixes this issue
if sys.platform == "darwin" and getattr(sys, 'frozen', None) is None:
mac_dev_env = os.environ.copy()
# these are paths installed by brew or macports
yarn_path = "/usr/local/bin:/opt/local/bin:"
if yarn_path in mac_dev_env["PATH"]:
pass
else:
mac_dev_env["PATH"] = yarn_path + mac_dev_env["PATH"]
with open(os.devnull, 'w') as null:
return subprocess.Popen(command, cwd=cwd, stdout=null, env=mac_dev_env)
else:
with open(os.devnull, 'w') as null:
return subprocess.Popen(command, cwd=cwd, stdout=null)