-
ViewInBrowser
component now does not accept any params -
Function definition for
Image
has changed:// Old ❌ templateless.NewContent(). Image( "https://example.com/image.jpg", Some("https://example.com"), Some(200), // Width Some(100), // Height Some("Alt Text"), ). Build() // New (just image) ✅ templateless.NewContent(). Image("https://example.com/image.jpg"). Build() // New (clickable image with custom attributes) ✅ url := "https://example.com" width := 300 height := 200 alt := "Alt text" templateless.NewContent(). Component( components.NewImage( "https://placekitten.com/300/200", &url, &width, &height, &alt, ), ). Build()
- New social icons:
Mastodon
andRss
- New
StoreBadges
component - New
QrCode
component - New
Signature
component - New examples
- Updated README
- Dependency updates
README.md
: notice about test mode- Support for test mode logging
README.md
cleanup (listing of components)- Added
examples/confirm_email
- Renamed
SetFooter()
toFooter()
- Introduced
CHANGELOG.md
- Introduced new services as social icons:
Phone
(converts into a link withtel:
prefix)Facebook
YouTube
Instagram
LinkedIn
Slack
Discord
TikTok
Snapchat
Threads
Telegram
- Initial implementation