Skip to content

Commit

Permalink
update eez-framework
Browse files Browse the repository at this point in the history
  • Loading branch information
mvladic committed Dec 10, 2024
1 parent facf918 commit da19b8b
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
Binary file modified packages/project-editor/flow/runtime/eez_runtime.wasm
Binary file not shown.
Binary file modified packages/project-editor/flow/runtime/lvgl_runtime_v8.3.wasm
Binary file not shown.
Binary file modified packages/project-editor/flow/runtime/lvgl_runtime_v9.0.wasm
Binary file not shown.
6 changes: 3 additions & 3 deletions resources/eez-framework-amalgamation/eez-flow.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Autogenerated on December 5, 2024 1:54:23 PM from eez-framework commit b9f6a088bb5b661c7c1f12674818b1bf10629907 */
/* Autogenerated on December 10, 2024 10:49:42 AM from eez-framework commit 20567d18ee9cf9571eed6954b52170f2b920b7b1 */
/*
* eez-framework
*
Expand Down Expand Up @@ -7975,7 +7975,7 @@ bool is_equal(const Value& a1, const Value& b1) {
if (a.isString() && b.isString()) {
const char *aStr = a.getString();
const char *bStr = b.getString();
if (!aStr && !aStr) {
if (!aStr && !bStr) {
return true;
}
if (!aStr || !bStr) {
Expand All @@ -7986,7 +7986,7 @@ bool is_equal(const Value& a1, const Value& b1) {
if (a.isBlob() && b.isBlob()) {
auto aBlobRef = a.getBlob();
auto bBlobRef = b.getBlob();
if (!aBlobRef && !aBlobRef) {
if (!aBlobRef && !bBlobRef) {
return true;
}
if (!aBlobRef || !bBlobRef) {
Expand Down
2 changes: 1 addition & 1 deletion resources/eez-framework-amalgamation/eez-flow.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Autogenerated on December 5, 2024 1:54:23 PM from eez-framework commit b9f6a088bb5b661c7c1f12674818b1bf10629907 */
/* Autogenerated on December 10, 2024 10:49:42 AM from eez-framework commit 20567d18ee9cf9571eed6954b52170f2b920b7b1 */
/*
* eez-framework
*
Expand Down
2 changes: 1 addition & 1 deletion wasm/eez-framework

0 comments on commit da19b8b

Please sign in to comment.