This commit is contained in:
Alexander Wang 2024-09-27 15:55:55 -06:00
parent 09cf9ae7d1
commit e6b1a72a63
No known key found for this signature in database
GPG key ID: BE3937D0D52D8927
2 changed files with 2 additions and 0 deletions

View file

@ -6,6 +6,7 @@
- Autoformat: Reserved keywords are formatted to be lowercase [#2098](https://github.com/terrastruct/d2/pull/2098) - Autoformat: Reserved keywords are formatted to be lowercase [#2098](https://github.com/terrastruct/d2/pull/2098)
- Misc: characters in the unicode range for Latin-1 and geometric shapes are measured more accurately [#2100](https://github.com/terrastruct/d2/pull/2100) - Misc: characters in the unicode range for Latin-1 and geometric shapes are measured more accurately [#2100](https://github.com/terrastruct/d2/pull/2100)
- Imports: can now import from absolute file paths [#2113](https://github.com/terrastruct/d2/pull/2113) - Imports: can now import from absolute file paths [#2113](https://github.com/terrastruct/d2/pull/2113)
- Render: linear and radial gradients are now available for `fill`, `stroke` and `font-color` [#2120](https://github.com/terrastruct/d2/pull/2120)
#### Improvements 🧹 #### Improvements 🧹

View file

@ -9,6 +9,7 @@ import (
"github.com/lucasb-eyer/go-colorful" "github.com/lucasb-eyer/go-colorful"
"github.com/mazznoer/csscolorparser" "github.com/mazznoer/csscolorparser"
"oss.terrastruct.com/util-go/go2" "oss.terrastruct.com/util-go/go2"
) )