Roope Salmi
Roope Salmi
We're working on an [audio editor / DAW](https://github.com/RustyDAW/multitrack-audio-editor), and full duplex audio IO is a fairly important feature for such software that is currently missing from CPAL. For reference, duplex...
These apply to the experiment branch. - [x] `.with_min` `.with_max` should be `.with_min_max` or `.with_range`. (should never need to set them separately) initial value on the same go too? -...
```rust state.insert_event(Event::new(WindowEvent::Redraw).direct(Entity::root())); ``` is intended to cause a new redraw immediately, and in fact does so on Linux. However, it does not work on Windows. **Workaround:** Use a perpetual animation....
Stacked on top of #880 As discussed in https://github.com/pulldown-cmark/pulldown-cmark/pull/870#issuecomment-2068144932, instead of ```rust escape_html(&mut writer, text); ``` write ```rust write!(writer, "{}", EscapedHtml(text)); ``` At the same time we can make `StrWrite`...
Demonstration:  If the `
### How to reproduce: Using version 0.4.1, Atom 1.0.0, Ubuntu 15.04. - Create a commit with some HTML in it (for example, a ``-tag) - View it in the log...
- [x] Platform support - [x] Linux - [x] macOS - [x] Windows? - [x] CMake - [ ] CPack and bundled dependencies / platform specific packages with proper dependencies?...
As of [705d2f](https://github.com/RustyDAW/rusty-daw-io/commit/705d2ffbab04e8ef61c825bc52547adf9f61b243) ## Enumeration - Maybe the backend could be described and selected as an enum? All variants should be available in the enum regardless if support for them...
These should both output `Less`: ```rust dbg!(human_sort::compare("x101", "x1000")); dbg!(human_sort::compare("x101", "x2000")); ``` But, ``` human_sort::compare("x101", "x1000") = Greater human_sort::compare("x101", "x2000") = Less ``` This happens because digits are consumed normally if...