Skip to content

Commit 06e2497

Browse files
2 parents fe6ba56 + 63e80b6 commit 06e2497

5 files changed

Lines changed: 47 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1-
## [0.0.1] - TODO: Add release date.
1+
## [0.1.0] - Added Models
22

3-
* TODO: Describe initial release.
3+
* Created model classes for Wordpress REST API and implemented user authentication function using JWT authentication system.
4+
5+
6+
## [0.0.1] - TODO: Init.
7+
8+
* Under Development. Nothing works now.

LICENSE

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,21 @@
1-
TODO: Add your license here.
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2018 Sachin Ganesh
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
Flutter Wordpress API
44

5-
## Reqquirements
6-
- A Wordpress site using V2 REST API https://developer.wordpress.org/rest-api/
7-
- JWT Authentication for WP REST API V2 https://wordpress.org/plugins/jwt-authentication-for-wp-rest-api/
8-
- Flutter 1.0
5+
## Requirements
6+
- A Wordpress site using V2 REST API https://developer.wordpress.org/rest-api/
7+
- JWT Authentication for WP REST API V2 https://wordpress.org/plugins/jwt-authentication-for-wp-rest-api/
8+
- Flutter 1.0 https://flutter.io/docs/get-started/install
99

1010

pubspec.lock

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,13 @@ packages:
7474
url: "https://pub.dartlang.org"
7575
source: hosted
7676
version: "1.6.2"
77+
pedantic:
78+
dependency: transitive
79+
description:
80+
name: pedantic
81+
url: "https://pub.dartlang.org"
82+
source: hosted
83+
version: "1.4.0"
7784
quiver:
7885
dependency: transitive
7986
description:
@@ -92,7 +99,7 @@ packages:
9299
name: source_span
93100
url: "https://pub.dartlang.org"
94101
source: hosted
95-
version: "1.4.1"
102+
version: "1.5.3"
96103
stack_trace:
97104
dependency: transitive
98105
description:
@@ -120,14 +127,14 @@ packages:
120127
name: term_glyph
121128
url: "https://pub.dartlang.org"
122129
source: hosted
123-
version: "1.0.1"
130+
version: "1.1.0"
124131
test_api:
125132
dependency: transitive
126133
description:
127134
name: test_api
128135
url: "https://pub.dartlang.org"
129136
source: hosted
130-
version: "0.2.1"
137+
version: "0.2.2"
131138
typed_data:
132139
dependency: transitive
133140
description:
@@ -143,4 +150,4 @@ packages:
143150
source: hosted
144151
version: "2.0.8"
145152
sdks:
146-
dart: ">=2.0.0 <3.0.0"
153+
dart: ">=2.1.0 <3.0.0"

pubspec.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
name: flutter_wordpress
22
description: Flutter Wordpress API
33
version: 0.0.1
4-
author:
5-
homepage:
4+
authors:
5+
- Sachin Ganesh <sachinganesh13@gmail.com>
6+
- Suraj Shettigar <suri.shettigar@gmail.com>
7+
homepage: https://github.com/SachinGanesh/flutter_wordpress
68

79
environment:
810
sdk: ">=2.0.0-dev.68.0 <3.0.0"

0 commit comments

Comments
 (0)