File tree Expand file tree Collapse file tree 4 files changed +24
-3
lines changed
Expand file tree Collapse file tree 4 files changed +24
-3
lines changed Original file line number Diff line number Diff line change 1+ ## 1.2.0
2+ - Cache system improvements to load layouts better.
3+ - Inkwell improvements.
4+ - Implement isTrue and isFalse operators for conditions.
5+ - Refactor operator filtering to use index if available.
6+ - ** Fixes**
7+ - Fix doc data validation on creation.
8+ - Fix canvas with auto-scale always aligning at top center.
9+ - Fix list remove operation type mismatch.
10+ - Fix download and cache system optimizations.
11+
112## 1.1.0
213- New AutoComplete support for Variables.
314- New ` createdAt ` and ` updatedAt ` variables to support sorting by date.
Original file line number Diff line number Diff line change @@ -10,6 +10,11 @@ include(${EPHEMERAL_DIR}/generated_config.cmake)
1010# https://github.com/flutter/flutter/issues/57146.
1111set (WRAPPER_ROOT "${EPHEMERAL_DIR} /cpp_client_wrapper" )
1212
13+ # Set fallback configurations for older versions of the flutter tool.
14+ if (NOT DEFINED FLUTTER_TARGET_PLATFORM)
15+ set (FLUTTER_TARGET_PLATFORM "windows-x64" )
16+ endif ()
17+
1318# === Flutter Library ===
1419set (FLUTTER_LIBRARY "${EPHEMERAL_DIR} /flutter_windows.dll" )
1520
@@ -92,7 +97,7 @@ add_custom_command(
9297 COMMAND ${CMAKE_COMMAND} -E env
9398 ${FLUTTER_TOOL_ENVIRONMENT}
9499 "${FLUTTER_ROOT} /packages/flutter_tools/bin/tool_backend.bat"
95- windows-x64 $<CONFIG>
100+ ${FLUTTER_TARGET_PLATFORM} $<CONFIG>
96101 VERBATIM
97102)
98103add_custom_target (flutter_assemble DEPENDS
Original file line number Diff line number Diff line change @@ -31,6 +31,11 @@ bool FlutterWindow::OnCreate() {
3131 this ->Show ();
3232 });
3333
34+ // Flutter can complete the first frame before the "show window" callback is
35+ // registered. The following call ensures a frame is pending to ensure the
36+ // window is shown. It is a no-op if the first frame hasn't completed yet.
37+ flutter_controller_->ForceRedraw ();
38+
3439 return true ;
3540}
3641
Original file line number Diff line number Diff line change 11name : codelessly_sdk
22description : Codelessly CloudUI™ - Supercharge your Flutter apps with dynamic UI and real-time updates. Build and publish UI without code!
3- version : 1.1 .0
3+ version : 1.2 .0
44homepage : https://codelessly.com/
55repository : https://github.com/Codelessly/CodelesslySDK
66
@@ -19,7 +19,7 @@ platforms:
1919dependencies :
2020 flutter :
2121 sdk : flutter
22- codelessly_api : 1.1 .0
22+ codelessly_api : 1.2 .0
2323 codelessly_json_annotation : 4.8.1
2424 firebase_core : ^2.25.4
2525 firebase_auth : ^4.17.4
You can’t perform that action at this time.
0 commit comments