You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: Run CI on PHP 8.3 and fix deprecation notices (#211)
* fix: Deprecation notices
Removed deprecation notices for dynamic properties and implicit int conversions.
* chore(ci): Run CI tests on 8.3.
CI tests now run on 8.3 too, also readme now reflects support for 8.3.
chore: Remove tests from final zip file (#207)
* Remove tests from final zip file
* chore: Add comment to .gitattributes about export-ignore
---------
Co-authored-by: Fabian Meyer <3982806+meyfa@users.noreply.github.com>
fix: Allow renderer short-circuit if unable to render anything (#200)
The text renderer would previously throw in some circumstances if no
font was available. With this patch, its `prepareRenderParams()` method
can return `null` in these cases, aborting the render for that text
element without causing a crash.
This also simplifies RectRenderer, which doesn't need an "empty" state
anymore.