sturmflut icon indicating copy to clipboard operation
sturmflut copied to clipboard

A FAST (80+ Gbit/s) pixelflut client with full IPv6 and animation support

Results 9 sturmflut issues
Sort by recently updated
recently updated
newest added

real world example ``` Will send 'image.png' to IP:PORT Loading animation... 1/1 frames loaded Animation loaded Shuffling animation... 1/1 frames shuffled Shuffling complete Converting animation to pixelflut commands... 1/1 frames...

Documentation talks about `-a` flag for source ip address, but this is not implemented

Not really an issue, because I found the solution, but when trying to build on MacOS, the build failes, because MacOS doesn't have `sys/sendfile.h`. I was still able to compile...

This PR will fix the sturmflut build for darwin. Instead of including `sys/sendfile.h` the code now includes `sys/types.h`, `sys/socket.h` and `sys/uio.h` separately which should also work on darwin. Also the...

I am currently working on packaging sturmflut for nix (nixos/nixpkgs#316460) and a release with a version number would make that easier. @TobleMiner Can you please create a tagged release after...

This PR will add an install target to the Makefile to make installing and packaging sturmflut easier.

This PR fixes sending transparent images. Previously sturmflut did not work with some (but not all) images containing transparency. This had something to do with the offset for a command...

This PR adds the source files as a dependency for the `sturmflut` make target, so make rebuilds `sturmflut` after a source file changed. It also deletes the unused files `cache.h`...

This PR fixes the ability to exit sturmflut if data saving is not enabled. Previously sturmflut would hang when exiting because the sending threads would never check if they were...