You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Added repo example
* create CoreStore interface to allow different implements for local storage (#166) (#167)
implement default local store using sembast and with encryption using XXTEA algorithm
add desktop support in example project
* Lint/Code clean
* Some dart linter fixes (#171)
* Support Relation (#179)
* create CoreStore interface to allow different implements for local storage (#166)
implement default local store using sembast and with encryption using XXTEA algorithm
add desktop support in example project
* make parse shared preferences default store (#168)
* add decion page to detect parse server availability
throw execption if server url is empty
navigate to correct page base on current user state
* working on example
throw exception if sever url is empty
add decision page to check availability of parse server
navigate to screen base on current user state
* create example flow for login and signup
display list of diet plan items and allow to remove and update it's status
* add shared preferences corestore
fix bug when create custom corestore implementation
* use shared shared preferences in example
* make parse shared preferences default store
* Update application_constants.dart
* README.md updated from https://stackedit.io/
* Support Relation.
* delete vscode config
* Update .gitignore
* Fix Commit: 6ed26e1 (#181)
* Delete `toJson` and fix exception. (#187)
* Fix Commit: 6ed26e1
* Update parse_encoder.dart
Fix parse encoder bug.
* Fix exception when sendSessionId is null.
* delete toJson calling.
* Save recursively (#190)
* Fix Commit: 6ed26e1
* Update parse_encoder.dart
Fix parse encoder bug.
* Fix exception when sendSessionId is null.
* 1. Support save objects recursively.
2. Fix encoding for Add and Remove operations.
3. Fix some exceptions.
4. Support batch request and handle response.
* Implemented whereRelatedTo query (#192)
* Implemented querying for related objects defined based on a field of type Relation
* Implemented unit test for relatedTo query
* Release v1.0.22 - Fix CoreStore bug
Copy file name to clipboardExpand all lines: README.md
+19-4Lines changed: 19 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ Want to get involved? Join our Slack channel and help out! (http://flutter-parse
15
15
To install, either add to your pubspec.yaml
16
16
```yml
17
17
dependencies:
18
-
parse_server_sdk: ^1.0.21
18
+
parse_server_sdk: ^1.0.22
19
19
```
20
20
or clone this repository and add to your project. As this is an early development with multiple contributors, it is probably best to download/clone and keep updating as an when a new feature is added.
21
21
@@ -163,9 +163,9 @@ var response = await dietPlan.remove("listKeywords", ["a"]);
'[{"className":"Diet_Plans","Name":"Textbook","Description":"For an active lifestyle and a straight forward macro plan, we suggest this plan.","Fat":25,"Carbs":50,"Protein":25,"Status":0},'
365
-
'{"className":"Diet_Plans","Name":"Body Builder","Description":"Default Body Builders Diet","Fat":20,"Carbs":40,"Protein":40,"Status":0},'
366
-
'{"className":"Diet_Plans","Name":"Zone Diet","Description":"Popular with CrossFit users. Zone Diet targets similar macros.","Fat":30,"Carbs":40,"Protein":30,"Status":0},'
'{"className":"Diet_Plans","Name":"Low Carb","Description":"Low Carb diet, main focus on quality fats and protein.","Fat":35,"Carbs":25,"Protein":40,"Status":0},'
'[{"className":"Diet_Plans","Name":"Textbook","Description":"For an active lifestyle and a straight forward macro plan, we suggest this plan.","Fat":25,"Carbs":50,"Protein":25,"Status":0},'
378
+
'{"className":"Diet_Plans","Name":"Body Builder","Description":"Default Body Builders Diet","Fat":20,"Carbs":40,"Protein":40,"Status":0},'
379
+
'{"className":"Diet_Plans","Name":"Zone Diet","Description":"Popular with CrossFit users. Zone Diet targets similar macros.","Fat":30,"Carbs":40,"Protein":30,"Status":0},'
'{"className":"Diet_Plans","Name":"Low Carb","Description":"Low Carb diet, main focus on quality fats and protein.","Fat":35,"Carbs":25,"Protein":40,"Status":0},'
0 commit comments