Skip to content

Commit

Permalink
2.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
bookshiyi committed Dec 25, 2023
1 parent 6143e34 commit e1b3985
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 26 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.1.2

- Update README

## 2.1.1

- Fix spelling error
Expand Down
48 changes: 23 additions & 25 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
<p align="center">
<a href="https://cloudbase.net/">
<img src="https://docs.cloudbase.net/img/logo.png" alt="cloudbase" style="max-width: 70px; max-height: 70px; vertical-align:bottom; margin:4px;">
</a>
<a href="https://flutter.dev/">
<img src="https://www.vectorlogo.zone/logos/flutterio/flutterio-ar21.svg" alt="flutter" style="vertical-align:bottom; margin:4px;">
</a>
<a href="https://dart.dev/">
<img src="https://www.vectorlogo.zone/logos/dartlang/dartlang-ar21.svg" alt="dart" style="vertical-align:bottom; margin:4px;">
</a>
</p>
<div style="display: flex; justify-content: center;">
<img src="https://docs.cloudbase.net/img/logo.png" alt="cloudbase" style="max-height: 60px; margin: 10px;">
<img src="https://www.vectorlogo.zone/logos/flutterio/flutterio-ar21.svg" alt="flutter" style="margin: 10px;">
<img src="https://www.vectorlogo.zone/logos/dartlang/dartlang-ar21.svg" alt="dart" style=" margin: 10px;">
</div>

<div style="display: flex; justify-content: center;">

[![Pub Version](https://img.shields.io/pub/v/cloudbase_ce)](https://pub.dev/packages/cloudbase_ce)
[![Pub Popularity](https://img.shields.io/pub/popularity/cloudbase_ce)](https://pub.dev/packages/cloudbase_ce)
Expand All @@ -17,22 +13,24 @@
[![build-test](https://github.com/insightoptech/cloudbase_ce/actions/workflows/ci.yaml/badge.svg)](https://github.com/insightoptech/cloudbase_ce/actions/workflows/ci.yaml)
[![GitHub License](https://img.shields.io/github/license/insightoptech/cloudbase_ce)](https://github.com/insightoptech/cloudbase_ce/blob/main/LICENSE)

</div>

# Cloudbase_ce

A **community edition** of TencentCloud CloudBase(TCB) Flutter SDK.
A `community edition` of TencentCloud CloudBase(TCB) Flutter SDK.

> Official documents:[API Reference](https://docs.cloudbase.net/api-reference/flutter/install)
| Features | cloudbase_ce | Official SDK |
| Features | Official SDK | cloudbase_ce |
| --------------------------------- | :----------: | :----------: |
| **Fully compatible official SDK** | | / |
| **Support Null-safety** | | |
| **Fixed bugs** | | |
| **Support Phone authentication** | | |
| Dart3 Compatibility | | |
| Delete deprecated API calls | | |
| Latest dependencies versions | | |
| Github Actions CI/CD | | |
| **Fully compatible official SDK** | 🚫 | |
| **Support Null-safety** | | |
| **Fixed bugs** | | |
| **Support Phone authentication** | | 🔜 |
| Dart3 Compatibility | | |
| Delete deprecated API calls | | |
| Latest dependencies versions | | |
| Github Actions CI/CD | | |

## Quick Start

Expand Down Expand Up @@ -64,12 +62,12 @@ A **community edition** of TencentCloud CloudBase(TCB) Flutter SDK.
```dart
void main() async {
CloudBaseCore core = CloudBaseCore.init({
'env': 'your-env-id',
'env': 'your-env-id', // Replace with your own envID
'appAccess': {
'key': 'your-app-access-key',
'version': 'your-app-access-version'
'key': 'your-app-access-key', // Replace with your own appAccessKey
'version': 'your-app-access-version' // Replace with your own appAccessVersion
},
'timeout': 3000 // Optional
'timeout': 3000 // Optional, request timeout in milliseconds
});
}
```
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: cloudbase_ce
description: Cloudbase SDK community edition. All APIs are consistent to the official with null-safety.
version: 2.1.1
version: 2.1.2
homepage: https://github.com/insightoptech/cloudbase_ce

environment:
Expand Down

0 comments on commit e1b3985

Please sign in to comment.