Dexter Chua
Dexter Chua
I think the `generated` part can be solved by reexporting everything by adding `pub use generated::*` in `lib.rs`.
I have two machines, both running Arch linux * On the first machine, the problem as described by @billeranton occurs * On my second machine, the problem does not occur...
I can think of two ways to avoid this: ```rust conn.create_window(24, win_id, screen.root, 0, 0, width, height, 0, WindowClass::InputOutput, 0) .event_mask(EventMask::Exposure | EventMask::StructureNotify | EventMask::NoEvent) .background_pixel(screen.white_pixel) .win_gravity(Gravity::NorthWest) .send(); ``` This...
I added a (failing) test in https://github.com/dalcde/lzw/tree/add-test . I checked that my fix indeed fixes the test, but it breaks other tests, so it is definitely incorrect. I can try...
Empirically some programs seem to produce TIFF files that are missing these end codes. Someone else has run into it here: https://stackoverflow.com/questions/55674925/decoding-tiff-lzw-codes-not-yet-in-the-dictionary It would be helpful to support this case...
I think that makes it a bit awkward to write a Read wrapper around it; you want this to fail after the user asks for the *next* byte, so you...
I'm happy to file this with the tiff library instead, but it's not wrong for lzw to ignore the remaining input after the output buffer is filled, and there should...
Did you add the registration file to the homeserver config?
It's top level but it should be a list, so app_service_config_files: - /path/to/file
Oh this should be put in synapse's homeserver.yaml, not the bridge's config file.