Gary Oberbrunner

Results 255 comments of Gary Oberbrunner

Yes, there are docs. Not OpenFX-specific, just the general docs for each OS. Let's take this offline.

I may be seeing this same issue. I'm doing `nuxt generate` to generate a static site, and the icons don't show up (they are fine in dev mode). I installed...

> My solution was to use `nuxi build` instead (not purely static anymore) Sure, why not add a back end to the static site just to fetch icons?! (I thought...

As Pierre says, the core OpenFX API is C-only (see the `include` dir) and plugins should only expose a small set of C functions, so anything they do internally is...

Thanks -- this is useful info. The OpenFX API is indeed "pure C". The examples are shared libs, and only expose pure C symbols, so should be buildable with any...

I see; that's helpful. Your package is very deep; still learning! I settled on this style, which doesn't need to use the hook: ```lisp (use-package modus-themes :ensure t :init (setq...

Ah, I see why the hook is needed. Without it, switching to a different theme and back loses the customizations. ```lisp (use-package modus-themes :init (setq modus-vivendi-palette-overrides '( (bg-mode-line-active bg-blue-subtle) (border-mode-line-inactive...

I did try `pnpm upgrade --latest` but I get the same results.

There is no more `target: static` in nuxt 3, I think (I added it but it didn't change anything). Using `ssr: false` results in missing images. `ssr: true` (the default)...