Skip to content

Commit

Permalink
v1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Brandon Tilley committed Jan 23, 2014
1 parent 62e8d08 commit 74013bd
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 17 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
v1.0.3 (2014/01/23)
-------------------

* Don't disable adaptive resampling on the projection

v1.0.2 (2014/01/16)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "planetary.js",
"version": "1.0.2",
"version": "1.0.3",
"main": "dist/planetaryjs.min.js",
"description": "Awesome interactive globes for the web",
"homepage": "http://planetaryjs.com",
Expand Down
7 changes: 3 additions & 4 deletions dist/planetaryjs-noplugins.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*! Planetary.js v1.0.2
/*! Planetary.js v1.0.3
* Copyright (c) 2013 Brandon Tilley
*
* Released under the MIT license
* Date: 2014-01-16T05:32:02.925Z
* Date: 2014-01-23T04:43:43.546Z
*/
(function (root, factory) {
if (typeof define === 'function' && define.amd) {
Expand Down Expand Up @@ -134,8 +134,7 @@
};

planet.projection = d3.geo.orthographic()
.clipAngle(90)
.precision(0);
.clipAngle(90);
planet.path = d3.geo.path().projection(planet.projection);

return planet;
Expand Down
4 changes: 2 additions & 2 deletions dist/planetaryjs-noplugins.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 3 additions & 4 deletions dist/planetaryjs.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*! Planetary.js v1.0.2
/*! Planetary.js v1.0.3
* Copyright (c) 2013 Brandon Tilley
*
* Released under the MIT license
* Date: 2014-01-16T05:32:02.988Z
* Date: 2014-01-23T04:43:43.371Z
*/
(function (root, factory) {
if (typeof define === 'function' && define.amd) {
Expand Down Expand Up @@ -134,8 +134,7 @@
};

planet.projection = d3.geo.orthographic()
.clipAngle(90)
.precision(0);
.clipAngle(90);
planet.path = d3.geo.path().projection(planet.projection);

return planet;
Expand Down
4 changes: 2 additions & 2 deletions dist/planetaryjs.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "planetary.js",
"version": "1.0.2",
"version": "1.0.3",
"description": "Awesome interactive globes for the web",
"main": "dist/planetaryjs",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion site/public/download/_data.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"stable": {
"latest": {
"version": "v1.0.2"
"version": "v1.0.3"
}
},
"unstable": {
Expand Down

0 comments on commit 74013bd

Please sign in to comment.