v0.9.2 #1
rthrfrd
announced in
Announcements
Replies: 1 comment 1 reply
-
Hey man, just wanted to say your library is pretty awesome. I had been looking around for something like this for C++ which I've been learning recently. I used it with HTMX for a little demo app. https://github.com/cdock1029/arche It works well with HTMX. It's nice not having to use some external templates with CMake etc. And this seems even better than for example Go's Templ library as it's in native C++ so no extra build step. Anyways good work. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Breaking changes
This version contains major performance improvements, particularly for rendering of pages with thousands/millions of elements. The changes in this release should allow a stable v1.0 to soon follow.
Reworked internals to avoid all copies where possible/desired:
mutable
structure to allowstd::move
out ofinitialiser_list
.move
-ing any supplied values, may cause breakages. See docs.Compute component IDs at compile time:
constexpr
.New features
Added
loop
utility function: The second parameter of the callback is supplied with aLoop
object containing information such as index and total count. See docs.Added 'head elements' to components: Components can now be constructed with a third parameter containing elements that will be collected into the new
headTarget
element. This is useful for preloading component assets. See docs.Full Changelog: v0.8.1...v0.9.2
This discussion was created from the release v0.9.2.
Beta Was this translation helpful? Give feedback.
All reactions