From 5588f90aa1ed70adf0ac36575dbaa76a14ad50b9 Mon Sep 17 00:00:00 2001 From: rayliverified Date: Sun, 14 Jul 2024 13:26:19 -0500 Subject: [PATCH] v2.2.0 Release MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Restore Windows support! Codelessly CloudUI™ now works on all Flutter platforms. --- CHANGELOG.md | 3 +++ lib/src/model/privacy_base.dart | 3 +++ pubspec.yaml | 9 +-------- 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f3df00..255ebc1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 2.2.0 +- Restore Windows support! Codelessly CloudUI™ now works on all Flutter platforms. + ## 2.1.1 - Fix Firebase exception on web. - Fix Text Input `Set Value` action not working. diff --git a/lib/src/model/privacy_base.dart b/lib/src/model/privacy_base.dart index d33cda8..a14efa3 100644 --- a/lib/src/model/privacy_base.dart +++ b/lib/src/model/privacy_base.dart @@ -151,4 +151,7 @@ class PrivacyBaseImpl extends PrivacyBase { @override Map toJson() => _$PrivacyBaseImplToJson(this); + + factory PrivacyBaseImpl.fromJson(Map json) => + _$PrivacyBaseImplFromJson(json); } diff --git a/pubspec.yaml b/pubspec.yaml index addd8cf..90adc77 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: codelessly_sdk 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! -version: 2.1.1 +version: 2.2.0 homepage: https://codelessly.com/ repository: https://github.com/Codelessly/CodelesslySDK @@ -8,13 +8,6 @@ environment: sdk: ">=3.3.0 <4.0.0" flutter: ">=3.10.0" -platforms: - android: - ios: - linux: - macos: - web: - dependencies: flutter: sdk: flutter