Skip to content

Commit 6d40ee2

Browse files
committed
v1.2.0 Release
- Cache system improvements to load layouts better. - Inkwell improvements. - Implement isTrue and isFalse operators for conditions. - Refactor operator filtering to use index if available. - **Fixes** - Fix doc data validation on creation. - Fix canvas with auto-scale always aligning at top center. - Fix list remove operation type mismatch. - Fix download and cache system optimizations.
1 parent 487942a commit 6d40ee2

File tree

4 files changed

+24
-3
lines changed

4 files changed

+24
-3
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
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.

example/windows/flutter/CMakeLists.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ include(${EPHEMERAL_DIR}/generated_config.cmake)
1010
# https://github.com/flutter/flutter/issues/57146.
1111
set(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 ===
1419
set(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
)
98103
add_custom_target(flutter_assemble DEPENDS

example/windows/runner/flutter_window.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff 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

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: codelessly_sdk
22
description: 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
44
homepage: https://codelessly.com/
55
repository: https://github.com/Codelessly/CodelesslySDK
66

@@ -19,7 +19,7 @@ platforms:
1919
dependencies:
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

0 commit comments

Comments
 (0)