diff --git a/Cargo.lock b/Cargo.lock index b7d282ef..183fd7eb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1218,7 +1218,7 @@ dependencies = [ [[package]] name = "eframe" -version = "0.21.2" +version = "0.21.3" dependencies = [ "bytemuck", "dark-light", diff --git a/crates/eframe/CHANGELOG.md b/crates/eframe/CHANGELOG.md index 164b16d7..4f5e50cc 100644 --- a/crates/eframe/CHANGELOG.md +++ b/crates/eframe/CHANGELOG.md @@ -5,6 +5,9 @@ NOTE: [`egui-winit`](../egui-winit/CHANGELOG.md), [`egui_glium`](../egui_glium/C ## Unreleased + + +## 0.21.3 - 2023-02-15 * Fix typing the letter 'P' on web ([#2740](https://github.com/emilk/egui/pull/2740)). diff --git a/crates/eframe/Cargo.toml b/crates/eframe/Cargo.toml index 07d14f63..0e08e6fe 100644 --- a/crates/eframe/Cargo.toml +++ b/crates/eframe/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "eframe" -version = "0.21.2" +version = "0.21.3" authors = ["Emil Ernerfeldt "] description = "egui framework - write GUI apps that compiles to web and/or natively" edition = "2021" diff --git a/docs/egui_demo_app.js b/docs/egui_demo_app.js index 13ba2e76..c57636c3 100644 --- a/docs/egui_demo_app.js +++ b/docs/egui_demo_app.js @@ -224,7 +224,7 @@ function makeMutClosure(arg0, arg1, dtor, f) { function __wbg_adapter_28(arg0, arg1) { try { const retptr = wasm.__wbindgen_add_to_stack_pointer(-16); - wasm._dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__he2ead792e86f6629(retptr, arg0, arg1); + wasm._dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h19340d09680f5ee3(retptr, arg0, arg1); var r0 = getInt32Memory0()[retptr / 4 + 0]; var r1 = getInt32Memory0()[retptr / 4 + 1]; if (r1) { @@ -236,7 +236,7 @@ function __wbg_adapter_28(arg0, arg1) { } function __wbg_adapter_31(arg0, arg1, arg2) { - wasm._dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h37098c33fc6abd40(arg0, arg1, addHeapObject(arg2)); + wasm._dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h9fbcfb319cb46254(arg0, arg1, addHeapObject(arg2)); } function makeClosure(arg0, arg1, dtor, f) { @@ -393,10 +393,6 @@ async function load(module, imports) { function getImports() { const imports = {}; imports.wbg = {}; - imports.wbg.__wbg_webhandle_new = function(arg0) { - const ret = WebHandle.__wrap(arg0); - return addHeapObject(ret); - }; imports.wbg.__wbindgen_object_drop_ref = function(arg0) { takeObject(arg0); }; @@ -404,6 +400,10 @@ function getImports() { const ret = getStringFromWasm0(arg0, arg1); return addHeapObject(ret); }; + imports.wbg.__wbg_webhandle_new = function(arg0) { + const ret = WebHandle.__wrap(arg0); + return addHeapObject(ret); + }; imports.wbg.__wbindgen_cb_drop = function(arg0) { const obj = takeObject(arg0).original; if (obj.cnt-- == 1) { diff --git a/docs/egui_demo_app_bg.wasm b/docs/egui_demo_app_bg.wasm index 19e57c34..4b0b3656 100644 Binary files a/docs/egui_demo_app_bg.wasm and b/docs/egui_demo_app_bg.wasm differ