Update V3.6 ยป V3.7
There are a few minor improvements and bug fixes.
CKEditor
New plugin: Soft Hyphen
With the Soft Hyphen plugin, the line break of a word can be set specifically.
Font family and font sizes
The fonts family and font sizes have been changed to CSS classes. The editor_classes.css has been expanded accordingly:
- the classes sizesmall, sizesmaller, sizexsmall as well as sizelarge, sizelarger and sizexlarge for the font sizes
- the classes fontarial, fontcomic, fontcourier, fontgeorgia, fontlucida, fonttahoma, fonttimes, fonttrebuchet and fontverdana for the standard fonts
For self-integrated web fonts, classes must be set with the name of the font family as the class name. The class name and the font name must match, e.g.:
.oswald { font-family: 'oswald'; }
Full size image
Thanks to object-fit, images are now displayed in the full size of the parent column using pure CSS; scaling via JavaScript is no longer necessary. The folder /content/javascript/fullsizeimage has been removed. Instead, there is now the file /content/style/fullsizeimg.css. The new class name is fullsizeimg and there is also the option of aligning the image with the class top_fullsizeimg for the top and bottom_fullsizeimg for the bottom.
Open Graph meta data
The meta data in the editor and in ModMaker modules has been extended with the Open Graph tags:
- og:title is identical to the page title
- og:description is identical to the page description
- og:url is identical to the canonical URL
- og:type is always "website"
- Any image can be selected for og:image
No further tags were added.
Honeypot
A minimum time that must pass before a form can be submitted can be specified in globalvars.php. If the form is submitted faster, it will be treated as spam and the email will not be sent.
Columns
A simple DIV can now be inserted next to the columns using an editor. The DIV has the class "wb_baseelement" and no spacing or anything similar.
Update from version 3.6 - What to do?
- Delete the /admin directory and upload the new one.
- Replace the files /wbclass.php and /mmclass.php in the /includes directory with the new ones.
- Add the variable
$webutler_config['forms_time2send'] = "5";
to the file /settings/globalvars.php.
- Delete the directory /includes/forms/honeypot and upload the new one.
- There are changes in the columns.css. Open the new file /content/columns/source/csscolumns.php, take the values for the spacing and sizes from the old (own) file and overwrite the old file with the new one.
- Upload the new file /content/style/editor_classes.css. Check first whether there are any adjustments in the old file and adopt them accordingly. In your own CSS file, set classes with the names of the fonts you have included yourself.
- Upload the new file /content/style/fullsizeimg.css and search for the CSS class "fullsizeimage" in all pages and replace it with "fullsizeimg". The CSS file must be entered in /settings/compress.php and the files /content/javascript/fullsizeimage/fullsizeimage.css and /content/javascript/fullsizeimage/fullsizeimage.js must be removed from it.