0.2.0 (2016-12-03)
February 16, 2023 · View on GitHub
0.2.0 (2016-12-03)
Improvements
Public API
The public API method getVersion() : String is now static and returns the String constant VERSION to adapt to the SonarQube minor rule squid:S3400.
The associated unit test has been refactored to test against the ArcVer library arcver-java. (@svengreb, #8, 7efc44cc)
The attribute
private final Color COLOR;
conflicted with the SonarQube rule squid:S00116 and has been adapted to the Arctic Ice Studio Java code style. (@svengreb, #9, 8eb03e63)
Toolbox
Fixed the deprecated POM variable ${inceptionYear} and replaced it with ${project.inceptionYear}. (@svengreb, #3, 1a02e6d2)
Added POM profiles for JFrog Bintray to deploy Maven artifacts to the jCenter and snapshots to the OSS JFrog repository. (@svengreb, #4, f74c7a57)
Public API Documentation
Adapted the documentation style of the Nord color palette project to the JavaDoc. (@svengreb, #7, 9eab5800)
Bug Fixes
Public API Documentation
Fixed malformed JavaDoc to prevent compilation errors caused by the new JavaDoc linter rules introduced JDK 8u92 by adding the summary attribute to table tags. (@svengreb, #3, 1a02e6d2)
Tasks
Toolbox
Created a circle.yml configuration file to add Circle CI build integration. (@svengreb, #6, f241e8de)
Added the maven-assembly-plugin as assemble POM profile (@svengreb, #5, 9f6e438d)
0.1.0 (2016-09-26)
Features
Implemented the public API (@svengreb, #1, 8949a9baa7adf73be66b7ac8e15dfa2b57b0ac92)
A basic usage guide for the public API can be found in the README section.
API
The entrypoint is the com.arcticicestudio.nord.Nord enum.
Every enum constant represents a color as Color object.
The API provides static methods to get the HEX and RGB color code string as well as the Color object itself.
| Package | Entity | Modifier | Method | Description |
|---|---|---|---|---|
com.arcticicestudio.nord | Nord | static | + hex(Color) : String | Converts the color to the HEX identifier. |
com.arcticicestudio.nord | Nord | static | + rgb(Color) : String | Converts the color to the RGB identifier. |
com.arcticicestudio.nord | Nord | - | + get() : Color | Returns the color object. |
Copyright © 2016-present Sven Greb