ardocrat
ardocrat
**Describe the bug** After some time at `TxHashsetPibd` step synchronization is switching to non-PIBD `TxHashsetDownload` step in parallel, then coming back to `TxHashsetPibd`, sometimes it can lead to hang of...
After adding `migrate_config_file_version_none_to_2` function by this PR https://github.com/mimblewimble/grin/pull/3634, `read_config` method is not handling parsing error anymore, panic occurs at `toml::from_str` function when config file is in wrong format.
`grin-api` and `grin-servers` are using too old `tokio-0.2` crate what prevents to compile Grin for Windows ARM (`winapi-0.2.8` dependency has no `aarch64-pc-windows-msvc` target support). Solution is to migrate to `tokio-1.^`.
Also window height is too big so bottom part of UI is getting hidden. **Platform and build** * MacOSX Sonoma * Macbook Air M1 (ARM) * BEAM Wallet 7.5.13840.5763 
**Platform and build** * MacOSX Sonoma * Macbook Air M1 (ARM) * BEAM Wallet 7.5.13840.5763 
For some reason `Frame::stroke` value can not be set for each panel individually, only globally at `visuals.widgets.noninteractive.bg_stroke`. **To Reproduce** Create panel, setup frame with custom stroke. **Expected behavior** Stroke changed
When your press a Back button on Android (for example at `native-activity`), [Winit translates this key](https://github.com/rust-windowing/winit/blob/47b938dbe78702d521c2c7a43b6f741a3bb8cb0b/src/platform_impl/android/keycodes.rs#L237C42-L237C53) as `NamedKey::BrowserBack`. Added convertion to `Key::Escape` at `egui-winit` module.