Releases: Fooidge/PleaseJS
Releases · Fooidge/PleaseJS
Blue Steel
Blue Steel
//New Feature!
Please.make_color({
seed: 'Fooidge'
});
Thanks to MaciekBaron
//Now works as expected
Please.make_color({
base_color: 'black'
});
Thanks to Donnieberg
Gray Aluminium
PleaseJS 0.3.0 - Gray Aluminium
You now have the ability to pass a hex string into base_color.
//still works
Please.make_color({
base_color: 'skyblue';
});
//works now!
Please.make_color({
base_color: '#0fbabc';
});
//also works
Please.make_color({
base_color: '0fbabc';
});
//even this works
Please.make_color({
base_color: 'abc';
});
As always, have fun!
Another bug squished
Tested poorly. Bug fixed caused a regression. Remind me to Jasmine this thing.
Fixed. Tested this time.
Fixed: base_color NaN bug.
When using Please.make_color({base_color: "SOME_COLOR"}) there was a rare bug that could occur which returned a NaN. It has been squashed.
Minor Fixes + Cleanup
Merge pull request #32 from Lauricio/master TY