Skip to content

Commit dac417d

Browse files
committed
CodelesslySDK v5.2.0
- Update codelessly_json_serializable to v4.9.0.
1 parent fa88977 commit dac417d

File tree

7 files changed

+8
-7
lines changed

7 files changed

+8
-7
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# The .vscode folder contains launch configuration and tasks you configure in
1919
# VS Code which you may wish to be included in version control, so this line
2020
# is commented out by default.
21-
#.vscode/
21+
.vscode/
2222

2323
# Flutter/Dart/Pub related
2424
**/doc/api/

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 5.2.0
2+
3+
- Update codelessly_json_serializable to v4.9.0.
4+
15
## 5.1.0
26
- Fix Hive CE duplicate initialization error.
37
- Update Firestore v3.5.0.

lib/src/logging/codelessly_event.dart

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import 'package:codelessly_api/codelessly_api.dart';
21
import 'package:codelessly_json_annotation/codelessly_json_annotation.dart';
32
import 'package:equatable/equatable.dart';
43
import 'package:uuid/uuid.dart';

lib/src/model/asset_model.dart

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import 'package:codelessly_api/codelessly_api.dart';
21
import 'package:codelessly_json_annotation/codelessly_json_annotation.dart';
32
import 'package:equatable/equatable.dart';
43

lib/src/model/auth_data.dart

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import 'package:codelessly_api/codelessly_api.dart';
21
import 'package:codelessly_json_annotation/codelessly_json_annotation.dart';
32

43
import '../../codelessly_sdk.dart';

lib/src/utils/image_builder.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ class _UltimateImageBuilderState extends State<UltimateImageBuilder> {
256256
widget.loadingBuilder!(context, child)
257257
: null,
258258
errorBuilder: (context, error, stackTrace) {
259-
print('Image Loading Error:' + error.toString());
259+
print('Image Loading Error: $error');
260260
return (widget.errorBuilder ?? _defaultErrorBuilder)(context);
261261
},
262262
);

pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: codelessly_sdk
22
description: Codelessly CloudUI™ - Server-driven UI for Flutter. Supercharge your Flutter apps with dynamic UI and real-time updates. Build and publish UI without code!
3-
version: 5.1.0
3+
version: 5.2.0
44
homepage: https://codelessly.com/
55
repository: https://github.com/Codelessly/CodelesslySDK
66

@@ -20,7 +20,7 @@ dependencies:
2020
flutter:
2121
sdk: flutter
2222
# Codelessly
23-
codelessly_api: 3.0.0
23+
codelessly_api: 4.0.0
2424
codelessly_json_annotation: 4.9.0+2
2525

2626
# Firebase

0 commit comments

Comments
 (0)