Gregory Conrad

Results 109 comments of Gregory Conrad

Hi @mdmm13 👋 About your comments: 1. Mimir internally wraps around Meilisearch, which itself uses LMDB (which I believe is the original project MDBX was forked out of). My desire...

With this issue as-is, I am not going to fix this. Not worth the time and it would be an absolute pain. Even once/if LMDB is patched as necessary, `lmdb-rs`...

If anyone stumbles across this issue worried, please do know that iOS/iPadOS should be ok for the App Store. I will support iOS for submission to the App Store in...

Web support is only going to be possible through a different backend (something other than LMDB, probably redb), which we could actually just set as the default in macOS, which...

Update: unlikely this will be supported as I am probably just going to provide an IndexedDB shim over in heed. If milli ever switches to a different K/V backend, then...

This might be possible once we have Native Assets; we can add an environment variable of the application group id to the embedded_milli Cargo.toml and then check for the environment...

I'm going to mess around with a `redb` backend in heed, which hopefully will be able to support WASI for #10. When that is done, and Native Assets are in...

Not really sure if you're looking for a fix here or a workaround, but wasi-libc builds fine on my M1 Mac using homebrew's llvm (`brew install llvm`): ```bash # Set...

Well, I was able to modify my existing approach with a LayoutBuilder to calculate the header height: ```dart return LayoutBuilder( builder: (context, constraints) { const footerHeight = 80.0; const imposedSlidePadding...

Thanks for the quick reply! Padding is the only thing that immediately comes to mind. Perhaps it can be set via the `FlutterDeckConfiguration`/`FlutterDeckSlideConfiguration` like other global and slide-specific properties? I...