David Baumgold

Results 115 comments of David Baumgold

I tried to build the latest version of the `development` branch on my M1 Macbook Pro, and it failed due to missing `macosx-arm64` builds. I [filed this issue with `javacpp-presets`](https://github.com/bytedeco/javacpp-presets/issues/1347),...

> Could you pull again and make sure it's OK also for your Mac environment? Using commit 5b8204a0fcf88f13244557f6807c6de135f6e4c1, I was able to build and install Audiveris on my M1 Mac,...

> It looks like you're missing Freetype library JPodRenderer needs for rasterizing PDFs. Freetype is installed on my system already, but JPodRenderer probably doesn't know where to find it. On...

> Symlink in `/usr/lib` that points to `/opt/homebrew/lib/libfreetype.dylib` maybe? I was not able to do that -- macOS [System Integrity Protection](https://support.apple.com/en-us/HT204899) prevents any modification of the `/usr/lib` directory, even when...

I haven't made any progress. However, I'm not sure closing it is the best option; this is still a problem on macOS, and leaving the issue open might allow others...

> Reducing duplication only really makes sense if there's a non-trivial process to install a resource which usually does not seem to be the case. Caching is already efficient/shared when...

Maybe your server is behind a TLS termination proxy that is not set up in a way that Flask understands? If so, this page might help you out: https://flask.palletsprojects.com/en/3.0.x/deploying/proxy_fix/ EDIT:...

Glad it's helpful! Try hooking into the "oauth_error" signal and returning a Response object with a redirect to where you want the user to go. https://flask-dance.readthedocs.io/en/latest/signals.html Does that help?

My apologies, it looks like I never actually built that feature! Flask-Dance had a similar feature for the `oauth_authorized` signal, but not for the `oauth_error` signal. Oops! Well, as of...

To be honest, I don't think I've ever written a `Makefile` in my life -- the one in the `docs` directory was auto-generated when I set up Sphinx, and I've...