Timothée Crozat

Results 29 comments of Timothée Crozat

hi i dare to exhume this topic because i've just installed Jamstash on my server and i would like that anyone could connect to it as long as they have...

everything works fine when I define my path the hard way : ``` # Returns the path to the *first* config file discovered def configuration_path "/path/to/my/website/_config.yml" # sanitized_path configuration.config_files(overrides).first end...

I just wonder how... I'm not skilled at all with Python... https://py2app.readthedocs.io/en/latest/

I just built it with `python3 setup.py py2app --packages six` and the error changed... I'm back working on it...

I imported `six`, `pkg_resources` and `setuptools` with : ``` from setuptools import setup APP = ['jellyfin-mpv-desktop'] DATA_FILES = ['jellyfin-mpv-shim'] OPTIONS = { 'iconfile':'jellyfin.icns', 'packages':'six,pkg_resources,setuptools' } setup( app=APP, name='Jellyfin MPV Desktop',...

argh I did plenty of mistakes previously and my jellyfin-mpv-desktop file py2app was trying to work on was not even the original one. using the good one it doesn't seem...

ok, I think I'm close to something working with this `setup.py` : ``` from setuptools import setup APP = ['jellyfin-mpv-desktop'] OPTIONS = { 'argv_emulation' : True, 'iconfile' : 'jellyfin.icns', 'extra_scripts'...

I tried with `extra_script` because it copies mpv at the same level a the main executable (and because of the _not for code !_ mention in the doc). no error...

Thanks ! I changed this line with : `"mpv_location": "../Resources/mpv",` And now I don't have any error message. It is still not working though. Werkzeug returns an infinity of 404...

for a summary, here is what my `setup.py` looks like : ``` from setuptools import setup APP = ['/usr/local/bin/jellyfin-mpv-desktop'] OPTIONS = { 'argv_emulation' : True, 'iconfile' : 'jellyfin.icns', 'resources' :...