Skip to content

Commit 4ae36b5

Browse files
committed
Couple of documentation fixes.
1 parent 1385dde commit 4ae36b5

File tree

3 files changed

+19
-5
lines changed

3 files changed

+19
-5
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
###### Backwards compatible API changes
44
- #37 - Add option to only save changed attributes when calling DS.save()
55

6+
##### 0.8.0 - 13 March 2014
7+
8+
###### Backwards compatible API changes
9+
- #37 - Add option to only save changed attributes when calling DS.save()
10+
611
###### Backwards compatible bug fixes
712
- #38 - "saved" attribute item isn't being updated properly
813

README.md

+13-3
Original file line numberDiff line numberDiff line change
@@ -2,28 +2,38 @@
22

33
__Data store for Angular.js.__
44

5-
__Current version:__ 0.7.1
5+
__Current version:__ 0.8.0
66

77
Angular-data is in a pre-1.0.0 development stage; the API is fluctuating, not a lot of tests yet, etc.
88

9-
Not for production use (yet).
9+
Not for production use (yet). If you still want to develop with Angular-data, be prepared to keep a close eye on the changelog, as the API is very liable to change (a lot).
1010

1111
Pending:
12-
- Roadmap
12+
- A Solid Roadmap
13+
- Relations/Associations
14+
- Various Adapters
15+
- Schema Definition/Validation
16+
- Cache Expiry
17+
- Nested Resources
1318
- Website / documentation
1419
- 100% tested (whatever _that_ means)
1520
- See [issues](https://github.com/jmdobry/angular-data/issues?milestone=7&page=1&state=open) for what's in development
21+
- See [Design Doc](https://docs.google.com/document/d/1o069KLuBH4jpwm1FCLZFwKMgM73Xi8_1JyjhSxVpidM/edit?usp=sharing) for other juicy reading material
1622

1723
## Changelog
1824
[CHANGELOG.md](https://github.com/jmdobry/angular-data/blob/master/CHANGELOG.md)
1925

2026
## Resources
2127

2228
#### Community
29+
[Mailing List](https://groups.google.com/forum/?fromgroups#!forum/angular-data) - Ask your questions!
30+
2331
[Issues](https://github.com/jmdobry/angular-data/issues) - Found a bug? Feature request? Submit an issue!
2432

2533
[GitHub](https://github.com/jmdobry/angular-data) - View the source code for angular-data.
2634

35+
[Design Doc](https://docs.google.com/document/d/1o069KLuBH4jpwm1FCLZFwKMgM73Xi8_1JyjhSxVpidM/edit?usp=sharing) - Design document for Angular-data.
36+
2737
## Project Status
2838

2939
| Branch | Master |

guide/angular-data/overview.doc

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
Angular-data is an in-browser data store for [Angular.js](http://angularjs.org).
77
[Synchronous methods](/documentation/guide/synchronous/index) work only with data already in the data store, and
8-
[asynchronous methods](/documentation/guide/asynchronous/index) work with persistence layer.
8+
[asynchronous methods](/documentation/guide/asynchronous/index) work with a persistence layer.
99

1010
<p>
1111
<img src="/resources/img/chart.png" width="940">
@@ -16,7 +16,6 @@ Angular-data is an in-browser data store for [Angular.js](http://angularjs.org).
1616
angular.module('myApp', ['angular-data.DS'])
1717
.config(function (DSProvider) {
1818
DSProvider.defaults.baseUrl = 'https://example.com/api';
19-
{...}
2019
})
2120
.run(function (DS) {
2221
DS.defineResource({

0 commit comments

Comments
 (0)