Skip to content

Commit 3468543

Browse files
committed
Improve color handling
Fixes #238
1 parent 136e904 commit 3468543

File tree

10 files changed

+464
-314
lines changed

10 files changed

+464
-314
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 2.2.0
2+
* Improve color handling #238
3+
* Change ``Color`` to ``RGBAColor`` as it only handles RGBA
4+
* Change all occurrences of ``Color`` to ``Object`` so that other color models (e.g. HSLA or Hex) can be applied
5+
* Created ``HSLAColor`` that can be used like ``RGBAColor``
6+
17
## 2.1.0
28
* Charts no longer check if they are drawable #198
39
* ChartJS behavior: If a chart can't be drawn it will render a empty canvas

chartjs-java-model-demo/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
<parent>
88
<groupId>software.xdev</groupId>
99
<artifactId>chartjs-java-model-root</artifactId>
10-
<version>2.1.1-SNAPSHOT</version>
10+
<version>2.2.0-SNAPSHOT</version>
1111
</parent>
1212

1313
<artifactId>chartjs-java-model-demo</artifactId>
14-
<version>2.1.1-SNAPSHOT</version>
14+
<version>2.2.0-SNAPSHOT</version>
1515
<packaging>jar</packaging>
1616

1717
<organization>

chartjs-java-model/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>software.xdev</groupId>
88
<artifactId>chartjs-java-model</artifactId>
9-
<version>2.1.1-SNAPSHOT</version>
9+
<version>2.2.0-SNAPSHOT</version>
1010
<packaging>jar</packaging>
1111

1212
<name>chartjs-java-model</name>

chartjs-java-model/src/main/java/software/xdev/chartjs/model/color/Color.java

-278
This file was deleted.

0 commit comments

Comments
 (0)