possible hotfix for missing portaudio

This commit is contained in:
DJ2LS 2023-01-22 21:47:14 +01:00
parent caaf613446
commit f18604a38b
4 changed files with 26 additions and 9 deletions

View file

@ -342,8 +342,8 @@ jobs:
if: ${{!startsWith(matrix.os, 'windows')}}
working-directory: tnc
run: |
if ! test -d "dist/_sounddevice_data"; then
git clone https://github.com/spatialaudio/portaudio-binaries dist/_sounddevice_data/portaudio-binaries
if ! test -d "dist/tnc/_sounddevice_data"; then
git clone https://github.com/spatialaudio/portaudio-binaries dist/tnc/_sounddevice_data/portaudio-binaries
fi
- name: Download Portaudio binaries Windows
@ -353,7 +353,7 @@ jobs:
if(Test-Path -Path "dist/_sounddevice_data"){
echo "sounddevice folder already exists"
} else {
git clone https://github.com/spatialaudio/portaudio-binaries dist/_sounddevice_data/portaudio-binaries
git clone https://github.com/spatialaudio/portaudio-binaries dist/tnc/_sounddevice_data/portaudio-binaries
}
- name: LIST ALL FILES

View file

@ -1,6 +1,6 @@
{
"name": "FreeDATA",
"version": "0.6.12-alpha.2",
"version": "0.6.12-alpha.3",
"description": "FreeDATA ",
"main": "main.js",
"scripts": {

View file

@ -262,15 +262,30 @@ class DAEMON:
# safe data to config file
config.write_entire_config(data)
import os, sys
import sys
# Try running tnc from binary, else run from source
# This helps running the tnc in a developer environment
try:
command = []
if sys.platform in ["linux", "darwin"]:
command.append("./freedata-tnc")
elif sys.platform in ["win32", "win64"]:
command.append("freedata-tnc.exe")
if getattr(sys, 'frozen', False):
# If the application is run as a bundle, the PyInstaller bootloader
# extends the sys module by a flag frozen=True and sets the app
# path into variable _MEIPASS'.
application_path = sys._MEIPASS
command.append(application_path + '/freedata-tnc')
else:
if sys.platform in ["linux", "darwin"]:
command.append("./freedata-tnc")
elif sys.platform in ["win32", "win64"]:
command.append("freedata-tnc.exe")
command += options
proc = subprocess.Popen(command)
@ -281,6 +296,7 @@ class DAEMON:
except FileNotFoundError as err1:
self.log.info("[DMN] worker: ", e=err1)
command = []
if sys.platform in ["linux", "darwin"]:
command.append("python3")
elif sys.platform in ["win32", "win64"]:
@ -288,6 +304,7 @@ class DAEMON:
command.append("main.py")
command += options
print(command)
proc = subprocess.Popen(command)
atexit.register(proc.kill)

View file

@ -11,7 +11,7 @@ Not nice, suggestions are appreciated :-)
import subprocess
from enum import Enum
VERSION = "0.6.12-alpha.2"
VERSION = "0.6.12-alpha.3"
ENABLE_EXPLORER = False