Dom Kiva Meyer
Dom Kiva Meyer
> It depends on whether this requires a third-party dependency. We aim to minimize them in the toolkit. In any case, adding extensibility to the `AudioParser` for the app to...
Thanks for the explanation! It sounds like `Publication.Builder.Transform` will be sufficient for adding table of contents information since it is able to modify the manifest, as long as the audiobook...
Would you accept a PR that changes `AudioParser` to include additional information in the manifest without requiring any other dependencies? I would like to include resource durations, bitrates, etc.
Apologies if this is the wrong place to ask, but is it possible to convert TestApp to async await with the current `streamer.open` API and strict concurrency checking? I'm having...
Thanks. My question was unclear. I was referring to your [comment on May 23 where you noted the goal to "Migrate existing Test App Promise/completion-block based APIs to async/await."](https://github.com/readium/swift-toolkit/issues/60#issuecomment-1559436937) I'm...
Thanks and sorry for the slow response. I'm having issues building on MacOS Sonoma due to Boot incompatibility. Unfortunately, I'm not using Serene (or even Clojure) these days so, while...
@nicklockwood Could `--selfrequired` perhaps accept type names in addition to function names?
Sure thing, @arbscht. 1. Install [Boot](http://boot-clj.com/) 2. Run `boot -d optimus repl` 3. Run `(require 'optimus.optimizations.minify)` 4. Run `(require 'optimus.optimizations.minify :reload-all)` ``` shell ↪ boot -d optimus repl nREPL server...
Sure. Let's use `com.facebook/react` as an example. This jar adds `"react/react.js"` to the classpath. ``` clojure (clojure.java.io/resource "react/react.js") ;=> # ``` We can load this through Optimus if we specify...
I ended up using [webjars-locator](https://github.com/webjars/webjars-locator) since it circumvented this issue for WebJars assets. Perhaps adding a note in the exception [here](https://github.com/magnars/optimus/blob/a089f4598330ab23e26b85d4312ba18e9a3e51f8/src/optimus/assets/creation.clj#L92) about only scanning project files might help users avoid...