Skip to content

0.1.0

Latest

Choose a tag to compare

@yoxjames yoxjames released this 07 Jun 20:44
· 2 commits to main since this release
  • Renamed library to svg4kt.
    • I want to ensure this library is distinct from the company SVG4K as there is absolutely no connection between the
      two.
  • Bumped Kotlin to 2.4.0.
  • Added KDocs to SVG Elements.
  • SvgColor.Hex(...) no longer takes a number. This was wrong from the beginning. SVG's hex colors are a format
    For instance 0x00111111 and 0x111111 are the same number but different colors. Therefore, you now must declare the
    format: SvgColor.Hex.RGB(0x111111) vs SvgColor.Hex.RGBA(0x00111111)
  • Added an Unsafe color type as there are a lot of color types, and I am not sure if I will ever support them all.
    Almost feels like that should be its own full library.
  • Bumped Various Versions.