1
0
Fork 0
mirror of synced 2024-06-29 19:50:26 +12:00

Updated changelog

This commit is contained in:
Eldad Fux 2020-04-12 10:47:58 +03:00
parent ea5e080809
commit eab3b8bd5c
4 changed files with 14 additions and 4 deletions

View file

@ -1,3 +1,8 @@
## 0.1.0
- Added examples file
- Some minor style fixes
## 0.0.14 ## 0.0.14
- Using MultipartFile for file uploads - Using MultipartFile for file uploads

View file

@ -8,7 +8,7 @@ Init your Appwrite client:
client client
.setEndpoint('https://localhost/v1') // Your Appwrite Endpoint .setEndpoint('https://localhost/v1') // Your Appwrite Endpoint
.setProject('5e8cf4f46b5e8') // Your project ID .setProject('5e8cf4f46b5e8') // Your project ID
.setSelfSigned() .setSelfSigned() // Remove in production
; ;
``` ```

View file

@ -1,3 +1,8 @@
## 0.1.0
- Added examples file
- Some minor style fixes
## 0.0.14 ## 0.0.14
- Using MultipartFile for file uploads - Using MultipartFile for file uploads

View file

@ -16,11 +16,11 @@ Init your Appwrite client:
Create a new user and session: Create a new user and session:
```dart ```dart
Account account = Account(client); Account account = Account(client);
Response user = await account.create(email: 'me@appwrite.io', password: 'password', name: 'My Name'); Response user = await account.create(email: 'me@appwrite.io', password: 'password', name: 'My Name');
Response session = await account.createSession(email: 'me@appwrite.io', password: 'password'); Response session = await account.createSession(email: 'me@appwrite.io', password: 'password');
``` ```