Frédéric Mangano

Results 11 comments of Frédéric Mangano

You can change the default size by setting the environment variable `OSHU_WINDOW_SIZE`, but can’t currently enable full-screen on startup. Adding that feature sounds easy enough though. I think most window...

Thank you for your suggestion. Implementing raw input sounds like lot of work, but it’s probably the optimal option indeed. I don’t know if we can get the raw input...

@Shir0kamii Let's talk on IRC. I think I've got the perfect task for you.

oshu!'s current build system is pretty much as simple as it could get. Someone familiar would port it in the blink of an eye. My main concern are the dependencies:...

Thanks for the report. Regarding the *Illegal byte sequence* error, is your system encoding UTF-8? If it is, could you apply the following patch and test again: ```diff diff --git...

Well, then I am out of clues. I am reopening this issue in case someone more familiar with FreeBSD wishes to solve it.

opustags could check if the standard output is a TTY and replace the base64 block with a placeholder for display. I’ll give it a try. The whole explanation about Ogg...

That’s a tough error. Rewriting the code to use vectors instead of strings would be a work-around but that’s tedious work. According to https://en.cppreference.com/w/cpp/string/char_traits and https://en.cppreference.com/w/c/string/multibyte/char8_t I expect that changing...

std::basic_string can be made to work with other types by supplying a custom char_traits. The standard library provides std::char_traits and, esoteric platforms aside, char8_t is equivalent to unsigned char which...