Franco Bugnano
Franco Bugnano
Sure, just give me the apk and I'll try it
I tried the debug build and the copy operation is about twice as fast, but still not as fast as fx. Turning on or off the battery optimization did not...
I confirm that the copy operation resumes after the standby
MilkyTracker does not support 32bit samples, and it has more limitations than SunVox, for example it does not support more than 16 samples per instrument. As I needed to convert...
This PR would fix #1058 , however, please take into consideration that chars might have a width of 0, 1 or 2, so not all chars are created equal, and...
> If that crate solves this problem right, then we should definitely use it (though I'd suggest still making sure to have a small set of unit tests that make...
From what I understand from the source that you linked ( https://gitlab.redox-os.org/redox-os/termion/-/blob/master/src/raw.rs?ref_type=heads#L44-48 ), creating a new io::stdout() / io::stderr() sets the `prev_ios` to the mode of the terminal when calling...
I managed to write a panic handler that works: ```rust use std::{ io::{self, Write}, panic, }; use anyhow::{Context, Result}; use ratatui::prelude::*; use termion::{input::MouseTerminal, raw::IntoRawMode, screen::IntoAlternateScreen}; fn initialize_panic_handler() -> Result {...
> I don't think this is of interest for most users and as it can introduce side effects it should only be added when really necessary to achieve something otherwise...
>Something that could help push this into the "this is obviously the right direction" evaluation would be examples of other idiomatic rust libraries / types (particularly if they are in...