Skip to content

Commit

Permalink
more README update. Update version number as well.
Browse files Browse the repository at this point in the history
  • Loading branch information
shashwatak committed Dec 9, 2013
1 parent 2a1bac0 commit c61fb31
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
20 changes: 19 additions & 1 deletion README.md
@@ -1,5 +1,23 @@
satellite.js v1.1
satellite.js v1.2
==================
Updates
--------------
Replaced all positional arrays with key-value objects. Vastly improves code readability for users of this library. For example:

```javascript
// Before
var x = position[0];
var y = position[1];
var z = position[2];

// Now
var x = position["x"];
var y = position["y"];
var z = position["z"];
```
See sample for more details.


Introduction
--------------
A library to make satellite propagation via TLEs possible in the web.
Expand Down
2 changes: 1 addition & 1 deletion src/satellite-head.js
Expand Up @@ -8,7 +8,7 @@

satellite = (function () {

var satellite = { version : "1.0" };
var satellite = { version : "1.2" };
/*
satellite-head.js and satellite-tail.js sandwich all the other
functions in the library.
Expand Down

0 comments on commit c61fb31

Please sign in to comment.