Skip to content
This repository has been archived by the owner on Jul 13, 2024. It is now read-only.

Commit

Permalink
Bump version and compile
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoespeon committed Dec 4, 2018
1 parent 0cd826b commit cf35bf8
Show file tree
Hide file tree
Showing 13 changed files with 35 additions and 27 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gitgraph.js",
"version": "1.13.0",
"version": "1.14.0",
"main": ["./build/gitgraph.js", "./build/gitgraph.css"],
"ignore": ["**/.*"]
}
4 changes: 2 additions & 2 deletions build/gitgraph.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ date?: string;
/**
* DOM Element of detail part
*/
detail?: string;
detail?: HTMLElement;

/**
* Sha1, default is a random short sha1
Expand Down Expand Up @@ -614,7 +614,7 @@ date?: string;
/**
* DOM Element of detail part
*/
detail?: string;
detail?: HTMLElement;

/**
* Sha1, default is a random short sha1
Expand Down
12 changes: 6 additions & 6 deletions build/gitgraph.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ==========================================================
* GitGraph v1.13.0
* GitGraph v1.14.0
* https://github.com/nicoespeon/gitgraph.js
* ==========================================================
* Copyright (c) 2018 Nicolas CARLO (@nicoespeon) ٩(^‿^)۶
Expand Down Expand Up @@ -626,7 +626,7 @@
* @property {string} [color] - Master color (dot & message)
* @property {string} [author = this.parent.author] - Author name & email
* @property {string} [date] - Date of commit, default is now
* @property {string} [detail] - DOM Element of detail part
* @property {HTMLElement} [detail] - DOM Element of detail part
* @property {string} [sha1] - Sha1, default is a random short sha1
* @property {Commit} [parentCommit] - Parent commit
* @property {string} [type = ("mergeCommit"|null)] - Type of commit
Expand Down Expand Up @@ -727,10 +727,10 @@

// Detail
var isCompact = (this.parent.mode === "compact");
if (typeof options.detailId === "string" && !isCompact) {
options.detail = document.getElementById(options.detailId);
} else {
if (isCompact) {
options.detail = null;
} else if (typeof options.detailId === "string") {
options.detail = document.getElementById(options.detailId) || options.detail;
}

// Check collision (Cause of special compact mode)
Expand Down Expand Up @@ -1047,7 +1047,7 @@
* @param {boolean} options.arrowDisplay - Add a arrow under commit dot
* @param {string} [options.author = this.parent.author] - Author name & email
* @param {string} [options.date] - Date of commit, default is now
* @param {string} [options.detail] - DOM Element of detail part
* @param {HTMLElement} [options.detail] - DOM Element of detail part
* @param {string} [options.sha1] - Sha1, default is a random short sha1
* @param {Commit} [options.parentCommit] - Parent commit
* @param {string} [options.type = ("mergeCommit"|null)] - Type of commit
Expand Down
4 changes: 2 additions & 2 deletions build/gitgraph.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Branch.html
Original file line number Diff line number Diff line change
Expand Up @@ -1928,7 +1928,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="Branch.ht
<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Thu Aug 23 2018 21:43:30 GMT-0400 (EDT)
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Mon Dec 03 2018 21:57:09 GMT-0500 (EST)
</footer>

<script> prettyPrint(); </script>
Expand Down
4 changes: 2 additions & 2 deletions docs/Commit.html
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ <h6>Properties</h6>
<td class="type">


<span class="param-type">string</span>
<span class="param-type">HTMLElement</span>



Expand Down Expand Up @@ -1713,7 +1713,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="Branch.ht
<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Thu Aug 23 2018 21:43:30 GMT-0400 (EDT)
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Mon Dec 03 2018 21:57:09 GMT-0500 (EST)
</footer>

<script> prettyPrint(); </script>
Expand Down
2 changes: 1 addition & 1 deletion docs/GitGraph.html
Original file line number Diff line number Diff line change
Expand Up @@ -2107,7 +2107,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="Branch.ht
<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Thu Aug 23 2018 21:43:30 GMT-0400 (EDT)
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Mon Dec 03 2018 21:57:09 GMT-0500 (EST)
</footer>

<script> prettyPrint(); </script>
Expand Down
2 changes: 1 addition & 1 deletion docs/Tag.html
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="Branch.ht
<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Thu Aug 23 2018 21:43:30 GMT-0400 (EDT)
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Mon Dec 03 2018 21:57:09 GMT-0500 (EST)
</footer>

<script> prettyPrint(); </script>
Expand Down
2 changes: 1 addition & 1 deletion docs/Template.html
Original file line number Diff line number Diff line change
Expand Up @@ -1446,7 +1446,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="Branch.ht
<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Thu Aug 23 2018 21:43:30 GMT-0400 (EDT)
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Mon Dec 03 2018 21:57:09 GMT-0500 (EST)
</footer>

<script> prettyPrint(); </script>
Expand Down
12 changes: 6 additions & 6 deletions docs/gitgraph.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ <h1 class="page-title">Source: gitgraph.js</h1>
* @property {string} [color] - Master color (dot &amp; message)
* @property {string} [author = this.parent.author] - Author name &amp; email
* @property {string} [date] - Date of commit, default is now
* @property {string} [detail] - DOM Element of detail part
* @property {HTMLElement} [detail] - DOM Element of detail part
* @property {string} [sha1] - Sha1, default is a random short sha1
* @property {Commit} [parentCommit] - Parent commit
* @property {string} [type = ("mergeCommit"|null)] - Type of commit
Expand Down Expand Up @@ -745,10 +745,10 @@ <h1 class="page-title">Source: gitgraph.js</h1>

// Detail
var isCompact = (this.parent.mode === "compact");
if (typeof options.detailId === "string" &amp;&amp; !isCompact) {
options.detail = document.getElementById(options.detailId);
} else {
if (isCompact) {
options.detail = null;
} else if (typeof options.detailId === "string") {
options.detail = document.getElementById(options.detailId) || options.detail;
}

// Check collision (Cause of special compact mode)
Expand Down Expand Up @@ -1065,7 +1065,7 @@ <h1 class="page-title">Source: gitgraph.js</h1>
* @param {boolean} options.arrowDisplay - Add a arrow under commit dot
* @param {string} [options.author = this.parent.author] - Author name &amp; email
* @param {string} [options.date] - Date of commit, default is now
* @param {string} [options.detail] - DOM Element of detail part
* @param {HTMLElement} [options.detail] - DOM Element of detail part
* @param {string} [options.sha1] - Sha1, default is a random short sha1
* @param {Commit} [options.parentCommit] - Parent commit
* @param {string} [options.type = ("mergeCommit"|null)] - Type of commit
Expand Down Expand Up @@ -1904,7 +1904,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="Branch.ht
<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Thu Aug 23 2018 21:43:30 GMT-0400 (EDT)
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Mon Dec 03 2018 21:57:09 GMT-0500 (EST)
</footer>

<script> prettyPrint(); </script>
Expand Down
4 changes: 2 additions & 2 deletions docs/global.html
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ <h5 class="subsection-title">Properties:</h5>
<td class="type">


<span class="param-type">string</span>
<span class="param-type">HTMLElement</span>



Expand Down Expand Up @@ -1561,7 +1561,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="Branch.ht
<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Thu Aug 23 2018 21:43:30 GMT-0400 (EDT)
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Mon Dec 03 2018 21:57:09 GMT-0500 (EST)
</footer>

<script> prettyPrint(); </script>
Expand Down
10 changes: 9 additions & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,14 @@ <h3>What does that mean?</h3><p>Releases will be numbered with the following for
</ul>
<h2>Authors and contributors</h2><p><strong>Nicolas Carlo</strong> - <a href="https://twitter.com/nicoespeon">@nicoespeon</a> } <a href="http://nicoespeon.com">http://nicoespeon.com</a></p>
<p><strong>Fabien Bernard</strong> - <a href="https://twitter.com/fabien0102">@fabien0102</a></p>
<p><a href="https://sourcerer.io/fame/nicoespeon/nicoespeon/gitgraph.js/links/0"><img src="https://sourcerer.io/fame/nicoespeon/nicoespeon/gitgraph.js/images/0" alt="0"></a>
<a href="https://sourcerer.io/fame/nicoespeon/nicoespeon/gitgraph.js/links/1"><img src="https://sourcerer.io/fame/nicoespeon/nicoespeon/gitgraph.js/images/1" alt="1"></a>
<a href="https://sourcerer.io/fame/nicoespeon/nicoespeon/gitgraph.js/links/2"><img src="https://sourcerer.io/fame/nicoespeon/nicoespeon/gitgraph.js/images/2" alt="2"></a>
<a href="https://sourcerer.io/fame/nicoespeon/nicoespeon/gitgraph.js/links/3"><img src="https://sourcerer.io/fame/nicoespeon/nicoespeon/gitgraph.js/images/3" alt="3"></a>
<a href="https://sourcerer.io/fame/nicoespeon/nicoespeon/gitgraph.js/links/4"><img src="https://sourcerer.io/fame/nicoespeon/nicoespeon/gitgraph.js/images/4" alt="4"></a>
<a href="https://sourcerer.io/fame/nicoespeon/nicoespeon/gitgraph.js/links/5"><img src="https://sourcerer.io/fame/nicoespeon/nicoespeon/gitgraph.js/images/5" alt="5"></a>
<a href="https://sourcerer.io/fame/nicoespeon/nicoespeon/gitgraph.js/links/6"><img src="https://sourcerer.io/fame/nicoespeon/nicoespeon/gitgraph.js/images/6" alt="6"></a>
<a href="https://sourcerer.io/fame/nicoespeon/nicoespeon/gitgraph.js/links/7"><img src="https://sourcerer.io/fame/nicoespeon/nicoespeon/gitgraph.js/images/7" alt="7"></a></p>
<h2>Copyright and License</h2><p>Copyright (c) 2013 Nicolas CARLO and Fabien BERNARD under the <a href="https://github.com/nicoespeon/gitgraph.js/blob/master/LICENSE.md">MIT license</a></p>
<p><a href="http://choosealicense.com/licenses/mit/">&gt; What does that mean?</a></p></article>
</section>
Expand All @@ -115,7 +123,7 @@ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="Branch.ht
<br class="clear">

<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Thu Aug 23 2018 21:43:30 GMT-0400 (EDT)
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Mon Dec 03 2018 21:57:09 GMT-0500 (EST)
</footer>

<script> prettyPrint(); </script>
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": "gitgraph.js",
"version": "1.13.0",
"version": "1.14.0",
"author": "Nicolas Carlo <[email protected]>",
"description": "A JavaScript library to draw pretty git graphs in the browser",
"contributors": [
Expand Down

0 comments on commit cf35bf8

Please sign in to comment.