- on native target, you can set the window icon with AppConfig.icon
- scancodes for F11 and F12 (windows & linux)
- scancode for LAlt (windows)
-
filesystem example in basic.rs
-
URL support in filesystem API on native targets when enabling the http feature
This breaks API compatibility as File::is_ready(&self) becomes File::is_ready(&mut self)
- fixed wasm target compilation
- keyboard and mouse API revamped KeyUp/DownEvent.code and MouseButtonEvent.button are now enums
- App:print use println on native target to have the same behavior as wasm
- support for VirtualKeyCode::Apostrophe on mac
- get_param on wasm crashing if the URL had no parameters
- right mouse button context menu was not disabled on web platform
- upgrade to rust edition 2021
- upgrade to glutin 0.29.1
- replace unmaintained cargo-web/stdweb with wasm_bindgen/web-sys
- support for DroppedFile events via App::get_dropped_files()
- upgrade to glutin 0.23
- App::get_screen_resolution()
- support for text input via winit's ReceivedCharacter event
- upgrade to stdweb 0.4.14
- upgrade to glutin 0.17
- now compiles on stable rust
- App::exit()
- arrow and pageup/pagedown keys on linux
- initial release