Skip to content

Commit

Permalink
0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
benkeen committed Feb 11, 2015
1 parent c4b2501 commit 94197d5
Show file tree
Hide file tree
Showing 8 changed files with 37 additions and 36 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ Lots! A big thanks to the developers of these scripts.

### Changelog

- `0.1.6` - Feb 10, 2015. Bug fixes.
- `0.1.5` - Dec 14, 2014. placeholderParser option added for tooltips; bug fixes.
- `0.1.4` - Nov 16, 2014, Tooltips added, bug fixes.
- `0.1.3` - July 2, 2014. Small segment grouping option added; jQuery dependency dropped.
Expand Down
6 changes: 3 additions & 3 deletions d3pie-source/d3pie-source.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*!
* d3pie
* @author Ben Keen
* @version 0.1.5
* @date Oct 2014 - [still in dev!]
* @version 0.1.6
* @date Feb 10 2014
* @repo http://github.com/benkeen/d3pie
*/

Expand All @@ -22,7 +22,7 @@
}(this, function() {

var _scriptName = "d3pie";
var _version = "0.1.5";
var _version = "0.1.6";

// used to uniquely generate IDs and classes, ensuring no conflict between multiple pies on the same page
var _uniqueIDCounter = 0;
Expand Down
6 changes: 3 additions & 3 deletions d3pie/d3pie.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*!
* d3pie
* @author Ben Keen
* @version 0.1.5
* @date Oct 2014 - [still in dev!]
* @version 0.1.6
* @date Feb 10 2014
* @repo http://github.com/benkeen/d3pie
*/

Expand All @@ -22,7 +22,7 @@
}(this, function() {

var _scriptName = "d3pie";
var _version = "0.1.5";
var _version = "0.1.6";

// used to uniquely generate IDs and classes, ensuring no conflict between multiple pies on the same page
var _uniqueIDCounter = 0;
Expand Down
4 changes: 2 additions & 2 deletions d3pie/d3pie.min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<div class="navbar-header">
<div class="navbar-brand">
d3pie
<span class="scriptVersion">0.1.5</span>
<span class="scriptVersion">0.1.6</span>
</div>
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
Expand Down Expand Up @@ -51,11 +51,11 @@
</div>


<script src="build/core-libs.min-1aec3cc2e83d82aba2b4b8fb20d00363.js"></script>
<script src="build/core-libs.min-f34f821a6d5b83a7aa7202053c83df15.js"></script>
<script src="website/libs/d3.min.js"></script>
<script src="website/libs/require.js"></script>
<script src="build/core/require.config.js"></script>
<script>require(["build/core/appStartBuild-383d5e5093ff4769b4db90785bb89289.js"], function() { });</script>
<script>require(["build/core/appStartBuild-49902acc8011197ad373cd44b5b55d7d.js"], function() { });</script>

<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "d3pie",
"version": "0.1.5",
"version": "0.1.6",
"description": "A highly configurable, re-usable library built on d3.js for creating clear, attractive pie charts.",
"homepage": "http://d3pie.org",
"main": "d3pie/d3pie.js",
Expand Down
2 changes: 1 addition & 1 deletion website/core/constants.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
define([], function() {

var C = {
VERSION: "0.1.5",
VERSION: "0.1.6",
MINIMIZED: true,
DEBUG: false
};
Expand Down
46 changes: 23 additions & 23 deletions website/examples/tooltips.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,30 +21,30 @@ <h1>
<script src="../../d3pie/d3pie.js"></script>

<script>
var pie = new d3pie("pie", {
header: {
title: {
text: "Tooltips: example #1",
fontSize: 20
}
},
labels: {
inner: {
format: "none"
}
},
data: {
content: [
{ label: "JavaScript", value: 1, caption: "New and shiny despite its age." },
{ label: "Ruby", value: 2, caption: "Foreign and strange" },
{ label: "Java", value: 3, caption: "Old and verbose (buuuuurn!)" }
]
},
tooltips: {
enabled: true,
type: "caption"
var pie = new d3pie("pie", {
header: {
title: {
text: "Tooltips: example #1",
fontSize: 20
}
},
labels: {
inner: {
format: "none"
}
});
},
data: {
content: [
{ label: "JavaScript", value: 1, caption: "New and shiny despite its age." },
{ label: "Ruby", value: 2, caption: "Foreign and strange" },
{ label: "Java", value: 3, caption: "Old and verbose (buuuuurn!)" }
]
},
tooltips: {
enabled: true,
type: "caption"
}
});
</script>

<hr size="1" />
Expand Down

0 comments on commit 94197d5

Please sign in to comment.