Adrien
Adrien
Revision: 53adb67 Flake snippet: ```nix packages.uploader = pkgs.deno2nix.mkExecutable { pname = "uploader"; version = self.rev; src = ./.; bin = "uploader"; lockfile = "./deno.lock"; config = "./deno.json"; entrypoint = "./uploader.ts";...
As we can see in https://github.com/justindsmith/opentelemetry-instrumentations-js/blob/36ee3edc3b313d3fe9f59c77236cbcd2c3eacb75/packages/instrumentation-remix/src/instrumentation.ts#L405 , incoming "action" requests are cloned so that some form attributes can be forwarded to span attributes. The cloning means that the entire request...
### Context Commit 85fd19396762f54c6806fdbebf0235139a67629a changed decodeHTJ2K.js to allocate a new HTJ2KDecoder with each call to decodeAsync. The old decoders somehow stay alive, and are not cleaned from the WASM memory....
### Describe the Bug Calling `StackViewport.setImageIdIndex` on a stack viewport does update `this.currentImageIdIndex`, but does not update `this.targetImageIdIndex`. `StackViewport.scroll`, on the other hand, using `this.targetImageIdIndex` as a base. As a...
Fixes: #232 Tested on couple of images locally, this seems to do the job. There are couple of items I'd like to address before considering this one ready: - add...
Hi! I was reading through the `pixeldata/src/attribute.rs` and `pixeldata/src/lib.rs` to get familiar with how dicom-rs renders pictures. Currently, if my understanding is correct: - `ImagingProperties.window` can hold one or window...
### Summary Building a dev extension is not possible if rustc is not in the system PATH ### Description I'm on a system where rustc is not directly in the...
I have a weird (broken?) DICOM file, with a multi valued UL tag of length 10 (and not 8). Both dcmtk and dcmjs manage to parse the file, but dicom-rs...
### Describe the bug axios version: 1.13.2 Setup: - dummy server on `localhost:9000` - forward proxy server on `localhost:9001` - client doing an `axios.post()` call to `localhost:9000`, with the following...
getExtent returns array indices, not dimensions. This fixes a division by zero when displaying 1x1 pixel images. ### Context Displaying 1x1 pixel images fails ### Changes & Results `Viewport.resetCamera` computes...