Skip to content

Commit 279e2f9

Browse files
fix user agent string
1 parent 3da54fc commit 279e2f9

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.0.3
2+
- Fix user agent by using `packageName` instead of `appName`
3+
- Upgrade `flutter_web_auth` to `0.3.1`
4+
15
## 1.0.2
26
- Fix timestamp in Realtime Response to Integer
37

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Add this to your package's `pubspec.yaml` file:
2121

2222
```yml
2323
dependencies:
24-
appwrite: ^1.0.2
24+
appwrite: ^1.0.3
2525
```
2626
2727
You can install packages from the command line:

lib/src/client_browser.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class ClientBrowser extends ClientBase with ClientMixin {
3333
.replaceFirst('http://', 'ws://');
3434
_headers = {
3535
'content-type': 'application/json',
36-
'x-sdk-version': 'appwrite:flutter:1.0.2',
36+
'x-sdk-version': 'appwrite:flutter:1.0.3',
3737
'X-Appwrite-Response-Format' : '0.10.0',
3838
};
3939

lib/src/client_io.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class ClientIO extends ClientBase with ClientMixin {
5252
.replaceFirst('http://', 'ws://');
5353
this._headers = {
5454
'content-type': 'application/json',
55-
'x-sdk-version': 'appwrite:flutter:1.0.2',
55+
'x-sdk-version': 'appwrite:flutter:1.0.3',
5656
'X-Appwrite-Response-Format' : '0.10.0',
5757
};
5858

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: appwrite
2-
version: 1.0.2
2+
version: 1.0.3
33
description: Appwrite is an open-source self-hosted backend server that abstract and simplify complex and repetitive development tasks behind a very simple REST API
44
homepage: https://appwrite.io
55
repository: https://github.com/appwrite/sdk-for-flutter

0 commit comments

Comments
 (0)