Skip to content

Commit b2e2c7a

Browse files
committed
v0.6.0 Release
- Embedded Canvases V1. - Embed canvases into layouts. - Local Storage V1. - Store and persist data locally. - Optimize JSON data to reduce data usage and storage by 80%. - ListView Improvements - Use keys for ListView items. - Fix list view not using data length first. - Prioritize hard coded item count for list view and page view in preview mode. - Fix set variable actions on null list and map variables. - Fix set variable action for list and map items. - TextField Improvements - Implement TextField model for better shrink-wrapping. - Fix TextField not submitting on focus change. - Fix TextField not invoking onSubmitted actions. - Fix text field always being wrapped with SizedBox. - Allow horizontally shrink-wrapping text fields. - Variable Improvements - Implement custom value notifier for SDK use with controllable notify feature. - Avoid notifying variable changes when actions are executed on canvas load. - Fix canvas load crash when variables notify. - Fix ManagedListenableBuilder notifying when not mounted.
1 parent e6b016c commit b2e2c7a

File tree

2 files changed

+29
-5
lines changed

2 files changed

+29
-5
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
## 0.6.0
2+
- Embedded Canvases V1.
3+
- Embed canvases into layouts.
4+
- Local Storage V1.
5+
- Store and persist data locally.
6+
- Optimize JSON data to reduce data usage and storage by 80%.
7+
- ListView Improvements
8+
- Use keys for ListView items.
9+
- Fix list view not using data length first.
10+
- Prioritize hard coded item count for list view and page view in preview mode.
11+
- Fix set variable actions on null list and map variables.
12+
- Fix set variable action for list and map items.
13+
- TextField Improvements
14+
- Implement TextField model for better shrink-wrapping.
15+
- Fix TextField not submitting on focus change.
16+
- Fix TextField not invoking onSubmitted actions.
17+
- Fix text field always being wrapped with SizedBox.
18+
- Allow horizontally shrink-wrapping text fields.
19+
- Variable Improvements
20+
- Implement custom value notifier for SDK use with controllable notify feature.
21+
- Avoid notifying variable changes when actions are executed on canvas load.
22+
- Fix canvas load crash when variables notify.
23+
- Fix ManagedListenableBuilder notifying when not mounted.
24+
125
## 0.5.2
226
- New properties panel for Accordion widget.
327
- Optimize SDK loading performance. Load from Firestore Storage to reduce loading time by up to 90%.

pubspec.yaml

Lines changed: 5 additions & 5 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: 0.5.2
3+
version: 0.6.0
44
homepage: https://codelessly.com/
55
repository: https://github.com/Codelessly/CodelesslySDK
66

@@ -19,10 +19,10 @@ platforms:
1919
dependencies:
2020
flutter:
2121
sdk: flutter
22-
codelessly_api: 0.5.2
22+
codelessly_api: 0.6.0
23+
codelessly_json_annotation: 4.8.1
2324
equatable: ^2.0.5
2425
google_fonts: ^6.1.0
25-
codelessly_json_annotation: ^4.8.1
2626
url_launcher: ^6.2.0
2727
collection: '>=1.17.0 <2.0.0'
2828
http: '>=0.13.0 <2.0.0'
@@ -50,10 +50,10 @@ dependencies:
5050
rfc_6901: ^0.1.1 # json pointer spec
5151

5252
dev_dependencies:
53-
build_runner: ^2.4.6
5453
flutter_test:
5554
sdk: flutter
56-
codelessly_json_serializable: ^6.7.1
55+
codelessly_json_serializable: 6.7.1+1
56+
build_runner: ^2.4.6
5757
flutter_lints: ^3.0.0
5858

5959
flutter:

0 commit comments

Comments
 (0)