Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.6.1 #7

Merged
merged 2 commits into from
Jan 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
Heat.js

[![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/intent/tweet?text=Heat.js%2C%20a%20free%20JavaScript%heat%20map&url=https://github.com/williamtroup/Heat.js&hashtags=javascript,heat,map)
[![npm](https://img.shields.io/badge/npmjs-v0.6.0-blue)](https://www.npmjs.com/package/jheat.js)
[![nuget](https://img.shields.io/badge/nuget-v0.6.0-purple)](https://www.nuget.org/packages/jHeat.js/)
[![npm](https://img.shields.io/badge/npmjs-v0.6.1-blue)](https://www.npmjs.com/package/jheat.js)
[![nuget](https://img.shields.io/badge/nuget-v0.6.1-purple)](https://www.nuget.org/packages/jHeat.js/)
[![license](https://img.shields.io/badge/license-MIT-green)](https://github.com/williamtroup/Heat.js/blob/main/LICENSE.txt)
[![discussions Welcome](https://img.shields.io/badge/discussions-Welcome-red)](https://github.com/williamtroup/Heat.js/discussions)
[![coded by William Troup](https://img.shields.io/badge/coded_by-William_Troup-yellow)](https://github.com/williamtroup)
</h1>

> <p align="center">🌞 A lightweight JavaScript library that generates customizable heat maps to visualize date-based activity and trends.</p>
> <p align="center">v0.6.0</p>
> <p align="center">v0.6.1</p>
<br />

![Heat.js](docs/images/main.png)
Expand Down Expand Up @@ -92,8 +92,8 @@ Now, you can add/remove dates, which will update the heat map automatically!
<script>
var newDateObject = new Date();

$heat.addDate( "heat-map", newDateObject, false );
$heat.removeDate( "heat-map", newDateObject, false );
$heat.addDate( "heat-map", newDateObject, "Trend Type 1", true );
$heat.removeDate( "heat-map", newDateObject, "Trend Type 1", true );
</script>
```
<br>
Expand Down
10 changes: 5 additions & 5 deletions README_NUGET.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Heat.js v0.6.0
# Heat.js v0.6.1

[![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/intent/tweet?text=Heat.js%2C%20a%20free%20JavaScript%heat%20map&url=https://github.com/williamtroup/Heat.js&hashtags=javascript,heat,map)
[![npm](https://img.shields.io/badge/npmjs-v0.6.0-blue)](https://www.npmjs.com/package/jheat.js)
[![nuget](https://img.shields.io/badge/nuget-v0.6.0-purple)](https://www.nuget.org/packages/jHeat.js/)
[![npm](https://img.shields.io/badge/npmjs-v0.6.1-blue)](https://www.npmjs.com/package/jheat.js)
[![nuget](https://img.shields.io/badge/nuget-v0.6.1-purple)](https://www.nuget.org/packages/jHeat.js/)
[![license](https://img.shields.io/badge/license-MIT-green)](https://github.com/williamtroup/Heat.js/blob/main/LICENSE.txt)
[![discussions Welcome](https://img.shields.io/badge/discussions-Welcome-red)](https://github.com/williamtroup/Heat.js/discussions)
[![coded by William Troup](https://img.shields.io/badge/coded_by-William_Troup-yellow)](https://github.com/williamtroup)
Expand Down Expand Up @@ -71,8 +71,8 @@ Now, you can add/remove dates, which will update the heat map automatically!
<script>
var newDateObject = new Date();

$heat.addDate( "heat-map", newDateObject, false );
$heat.removeDate( "heat-map", newDateObject, false );
$heat.addDate( "heat-map", newDateObject, "Trend Type 1", true );
$heat.removeDate( "heat-map", newDateObject, "Trend Type 1", true );
</script>
```

Expand Down
4 changes: 2 additions & 2 deletions dist/heat.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! Heat.js v0.6.0 | (c) Bunoon 2024 | MIT License */
/*! Heat.js v0.6.1 | (c) Bunoon 2024 | MIT License */
(function() {
function u(a) {
a.element.className = "heat-js";
Expand Down Expand Up @@ -393,7 +393,7 @@
return this;
};
this.getVersion = function() {
return "0.6.0";
return "0.6.1";
};
(function(a, c) {
A = a;
Expand Down
2 changes: 1 addition & 1 deletion dist/heat.js.min.css

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

4 changes: 2 additions & 2 deletions dist/heat.min.js

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

6 changes: 6 additions & 0 deletions docs/CHANGE_LOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Heat.js - Change Log:

## Version 0.6.1:
- Fixed documentation in the README files.

<br>


## Version 0.6.0:

#### **New Features:**
Expand Down
2 changes: 1 addition & 1 deletion heat.js.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>jHeat.js</id>
<version>0.6.0</version>
<version>0.6.1</version>
<title>Heat.js</title>
<description>A lightweight JavaScript library that generates customizable heat maps to visualize date-based activity and trends.</description>
<authors>William Troup</authors>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "jheat.js",
"title": "Heat.js",
"description": "A lightweight JavaScript library that generates customizable heat maps to visualize date-based activity and trends.",
"version": "0.6.0",
"version": "0.6.1",
"main": "dist/heat.js",
"author": {
"name": "Bunoon"
Expand Down
4 changes: 2 additions & 2 deletions src/heat.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* A lightweight JavaScript library that generates customizable heat maps to visualize date-based activity and trends.
*
* @file observe.js
* @version v0.6.0
* @version v0.6.1
* @author Bunoon
* @license MIT License
* @copyright Bunoon 2024
Expand Down Expand Up @@ -1171,7 +1171,7 @@
* @returns {string} The version number.
*/
this.getVersion = function() {
return "0.6.0";
return "0.6.1";
};


Expand Down
Loading