various enhancements

This commit is contained in:
2025-06-02 23:55:18 +02:00
parent 41d067e88c
commit 2bed325327
4 changed files with 19 additions and 15 deletions

View File

@ -19,7 +19,7 @@
</page>
<page name="tab_about" gui-text="About">
<label appearance="header">MightyScape Extension Collection</label>
<label>2019 - 2024 / written by Mario Voigt (Stadtfabrikanten e.V. / FabLab Chemnitz)</label>
<label>2019 - 2025 / written by Mario Voigt (Stadtfabrikanten e.V. / FabLab Chemnitz)</label>
<spacer />
<label appearance="header">Online Documentation</label>
<label appearance="url">https://y.stadtfabrikanten.org/mightyscape-overview</label>

View File

@ -32,7 +32,7 @@ class AboutUpgradeMightyScape(inkex.EffectExtension):
restart = False
def install_requirements(self):
requirements = inkex.utils.debug(os.path.abspath(os.path.join(self.ext_path()) + "/../../../requirements.txt"))
requirements = os.path.abspath(os.path.join(self.ext_path()) + "/../../../requirements.txt")
if not os.path.exists(requirements):
inkex.utils.debug("requirements.txt could not be found.")
exit(1)
@ -41,13 +41,16 @@ class AboutUpgradeMightyScape(inkex.EffectExtension):
python_venv = os.path.abspath(os.path.join(os.path.dirname(git.__file__), '../', '../', '../', '../', 'venv', 'Scripts', 'python.exe'))
else: #Linux/MacOS
python_venv = os.path.abspath(os.path.join(os.path.dirname(git.__file__), '../', '../', '../', '../', 'bin', 'python'))
command = ["{} -m pip install --upgrade --quiet --no-cache-dir -r ".format(python_venv) + requirements]
inkex.utils.debug("Executing: {}".format(command[0]))
proc = subprocess.Popen(command, shell=True, stdout=PIPE, stderr=PIPE)
command = "{} -m pip install --upgrade --no-cache-dir -r {}".format(python_venv, requirements)
inkex.utils.debug("Executing: {}".format(command))
proc = subprocess.Popen(command, shell=True, stdout=PIPE, stderr=PIPE, encoding="UTF-8")
stdout, stderr = proc.communicate()
inkex.utils.debug(stdout.decode('UTF-8'))
inkex.utils.debug(stderr.decode('UTF-8'))
try:
inkex.utils.debug(stdout)
inkex.utils.debug(stderr)
except:
pass
proc.wait()
def update(self, local_repo, remote, localCommitCount):