Sludge

Results 31 issues of Sludge

### Is your feature request related to a problem? Please describe. I want to run OctoPrint off of a read-only/overlay file system to prevent SD card corruption due to unclean...

request

## Expected ![bonzi-book](https://github.com/image-rs/image/assets/96552222/7b50019a-7c6f-4625-99c2-f1e69de95b61) This is how the animation should look (assuming your browser correctly implements APNG decoding; Firefox and Chromium-based browsers work fine in my tests). ## Actual behaviour [Screencast_20240623_180709.webm](https://github.com/image-rs/image/assets/96552222/090ec233-f1c4-43fd-abd7-f5899783ee9e)...

`WebPDecoder` fails to decode WebP animations. ## Expected It should probably work? ## Actual behaviour - One file (`piston.webp` from the zip archive below) that works fine in Firefox and...

## Bevy version 0.14.0 ## What you did In bevy 0.13, my application runs at 60 FPS in a debug build with a Cargo profile override like this: ```toml [profile.dev.package."*"]...

C-Bug
C-Performance
S-Needs-Triage
S-Needs-Investigation

# Objective When using instancing, 2 `VertexBufferLayout`s are needed, one for per-vertex and one for per-instance data. Shader locations of all attributes must not overlap, so one of the layouts...

A-Rendering
C-Usability
S-Ready-For-Final-Review

These have been stable since Rust 1.63.0, so there shouldn't be a need to incur this dependency anymore

**Describe the bug** Formatting a `Vec2` with `{:?}` leads to its `Debug` impl to format both coordinates with `{:.1}`, which discards any decimal digits after the first. https://github.com/emilk/egui/blob/a085d0b3a5a4aa70d7ca4ddedbcc9ed53c758b7b/crates/emath/src/vec2.rs#L485-L493 **To Reproduce**...

bug

As far as I can tell, the `zenity` command-line tool is *required* when making non-file dialogs on Linux without the `gtk3` feature. It would be good if this were documented,...

documentation
good first issue

Applying this patch to the `sine.rs` example causes memory unsafety: ```patch diff --git a/examples/sine.rs b/examples/sine.rs index cee0003..030beb7 100644 --- a/examples/sine.rs +++ b/examples/sine.rs @@ -15,6 +15,8 @@ fn main() { .register_port("sine_out",...

**rust-analyzer version**: 0.3.2482-standalone **rustc version**: rustc 1.86.0 (05f9846f8 2025-03-31) **editor or extension**: VSCode; v0.3.2482 **relevant settings**: none **code snippet to reproduce**: ```rust use std::hash::RandomState; fn f() { RandomState::new().build_hasher } ```

A-completion
C-bug