utils: Color is now immutable

as is always the case with mutability, allowing this creates lots of complications that aren't worth the hassle.
This commit is contained in:
Dylan K. Taylor
2019-07-04 18:00:37 +01:00
parent 062e692069
commit a125980ada
2 changed files with 4 additions and 36 deletions

View File

@ -641,6 +641,10 @@ This version features substantial changes to the network system, improving coher
- The following API methods have signature changes:
- `Internet::simpleCurl()` now requires a `Closure` for its `onSuccess` parameter instead of `callable`.
- The following API methods have been removed:
- `Color->setA()`
- `Color->setR()`
- `Color->setG()`
- `Color->setB()`
- `Color->toABGR()`
- `Color->toBGRA()`
- `Color::fromABGR()`