- Fix: Notifiable-Trait zum User-Model hinzugefuegt (behebt notify()-500er) - Installer: SMTP-Verbindungstest mit EsmtpTransport + Ueberspringen-Link - Admin: Neuer E-Mail-Tab mit SMTP-Konfiguration + Verbindungstest - Admin: Lazy Quill-Initialisierung (nur sichtbare Locale wird geladen) - Uebersetzungen: 17 neue Mail-Keys in allen 6 Sprachen Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
22 lines
496 B
Markdown
22 lines
496 B
Markdown
From 1.x to 2.x
|
|
=================
|
|
|
|
- All classes uses `Masterminds` namespace.
|
|
- All public static methods has been removed from `HTML5` class and the general API to access the HTML5 functionalities has changed.
|
|
|
|
Before:
|
|
|
|
$dom = \HTML5::loadHTML('<html>....');
|
|
\HTML5::saveHTML($dom);
|
|
|
|
After:
|
|
|
|
use Masterminds\HTML5;
|
|
|
|
$html5 = new HTML5();
|
|
|
|
$dom = $html5->loadHTML('<html>....');
|
|
echo $html5->saveHTML($dom);
|
|
|
|
|