An update that fixes some bugs encountered with the last 2.25.1.
2023 Feb 13
A new version of Dotclear for which you should encounter fewer problems, if any, than at the time of the update to 2.24.
This version essentially incorporates a code modernization - a modernization that should continue for a few more quarters.
It is possible that in the near future the required PHP version will change, especially to allow us to focus on code modernization. For now it is still PHP 7.4, but the 2.25 administration interface will tell you, if you are still using this version, that it is time to consider switching to PHP 8.0 or PHP 8.1, or even PHP 8.2 for which we have worked hard to ensure compatibility.
A small note to plugin developers: It was optional until now to define the module type in the _define.php
file; it is likely that the future 2.26 will require it, so add this line in the properties:
'type' => 'plugin',
Take example on one of the plugins distributed with Dotclear if necessary.
The changelog of the 2.25:
2023 Jan 18
An update that fixes some bugs encountered with the 2.24 of last Christmas.
2022 Dec 24
The new version for the holidays. It is strongly recommended that you do the update in safe mode, which will then allow you to update the plugins that need to be updated.
If you have trouble logging in after the update, delete the associated cookies before refreshing the login page.
The 2.24 CHANGELOG:
2022 Dec 13
We won't lie to ourselves, the next update could be ... sporty1 :-)
I just tested several times, from an installation that runs in production (my blog) with Dotclear 2.23.1 and I noticed the following things:
If you ever use the static cache2 plugin, disable it temporarily (just comment out the DC_SC_CACHE_ENABLE
activation constant in the inc/config.php file, or set it to false
).
Upgrading to Dotclear 2.24 in rescue mode is the best way to do it, once you know3 that the plugins you use are available for 2.244.
If you ever need the FakeMeUp plugin, then log back in to normal mode, install it, run it, then log back in to rescue mode.
Make way for updates:
This should be all good!
Take the opportunity to clear the template cache and the static cache (Maintenance plugin).
A little extra: it may be useful to install the growUp plugin to clean up a bit7 once the update is done8.
Anyway, we'll be around if there is a problem; on the forum in particular.
To be honest my first attempt ran into a problem with the static cache (see item 1 in the list), otherwise I was able to do the update in normal mode without any trouble. ↩
Especially if you use it, like me, aggressively. ↩
Install the Check store version plugin, it will tell you all that. ↩
If not, wait until they are, it's better! ↩
The authentication page may not be displayed, in which case delete the cookies associated with the site and refresh the page. ↩
Force the update check to make sure you don't miss anything. ↩
This is normally done during the update, but sometimes things can happen ;-) ↩
It can be disabled or uninstalled afterwards. ↩
2022 Aug 13
And in the meantime, a maintenance version to correct a bug with the addition of comments.
The new version for this quarter with some improvements in the program mainly in the core code, but not only.
Note the disappearance of the management of icon sets, little used and potentially complicated with the use of icons in SVG format in two versions (light and dark theme).
The CHANGELOG of 2.23 :
2022 May 13
The new version for this quarter — we're keeping up, that's a good thing — with some improvements to the program:
2022 Mar 7
A new version that fixes two bugs concerning the management of users other than administrators (or super-administrators).
2022 Feb 26
A new maintenance release that solves, among other things, the date and cache problems encountered by some users.
Changes:
2022 Feb 19
A maintenance release to fix these bugs:
2022 Feb 13
A new version of Dotclear which I let you discover the (light) resumption of the look of the administration. In particular, many PNG images have been replaced by a vector version (SVG format), which allows to keep a good quality at any zoom level.
Note that it requires PHP 7.4 or PHP 8.0. We have tried to fix all the problems that may occur with PHP 8.1, but our testing may not have been exhaustive and we welcome any feedback on how this latest version of PHP works.
For details of the changes, see the CHANGELOG or even the repository.
2021 Nov 19
A small update that fixes three not very serious but potentially annoying bugs in the use of Dotclear.
2021 Nov 13
Still gardening and happy tooyou Kozlika!
As announced at the time of the 2.19 release, we are publishing new versions more often - or at least trying to.
In this new version 2.20, the highlights are as follows:
details
. A vertical bar at the beginning of the line, followed by the text of the summary is necessary to start this block, followed by the free content of the block, followed by a line with a vertical bar as the first character only ending the whole, i.e. :|summary of the detail block (hidden by default) … content of my block … |
Please note: this version is the last to support PHP 7.3; the next 2.21 will require at least PHP 7.4 (or PHP 8). A message will be displayed on your dashboard if your PHP version is affected.
To implement an alternative repository for a module, plugin or theme, you need two things:
_define.php
file, such as: 'repository' => 'https://raw.githubusercontent.com/franck-paul/sysInfo/main/dcstore.xml'
dcstore.xml
file structured as follows, and stored in accordance with the URL provided above:<modules xmlns:da="http://dotaddict.org/da/"> <module id="[MODULE_ID]"> <name>[MODULE NAME]</name> <version>[MODULE.VERSION]</version> <author>[MODULE AUTHOR]</author> <desc>[MODULE DESCRIPTION]</desc> <file>[MODULE_ARCHIVE.ZIP]</file> <da:dcmin>[MODULE_DOTCLEAR_VERSION_MIN]</da:dcmin> <da:details>[MODULE_DETAIL_URL]</da:details> <da:support>[MODULE_SUPPORT_URL]</da:support> </module> </modules>
Example for the sysInfo plugin:
<modules xmlns:da="http://dotaddict.org/da/"> <module id="sysInfo"> <name>System Information</name> <version>1.16.3</version> <author>System Information</author> <desc>System Information</desc> <file>https://github.com/franck-paul/sysInfo/releases/download/1.16.3/plugin-sysInfo-1.16.3.zip</file> <da:dcmin>2.19</da:dcmin> <da:details>https://open-time.net/docs/plugins/sysInfo</da:details> <da:support>https://github.com/franck-paul/sysInfo</da:support> </module> </modules>
Note that the dcstore.xml
file does not need to be included in the module installation archive.
As soon as a module, indicating in its _define.php
file an alternative repository, will be installed with Dotclear version 2.20, then the latter will also consult this repository to check for the presence of a new version.
It is possible to save the default settings for inserting a media file (image, sound, ...) which is then used when editing posts and pages. See Blog settings, section "Media and images". It is also possible to save the current insertion parameters when inserting media into a post.
This is convenient but can be counterproductive in some cases.
Dotclear version 2.20 now takes into account the presence of a .mediadef
file (or .mediadef.json
) structured as follows, so that the settings specified in it become automatically pre-selected instead of those saved by default for the blog:
{ "size": "o", "legend": "none", "alignment": "center", "link": false }
Voilà les valeurs possibles pour les différents réglages :
size
: "sq" for thumbnail, "s" for small, "m" for medium, "o" for originallegend
: "none" for none, "title" for title only, "legend" for title and legendalignment
: "none" for none, "left" to left align, "right" to right align, "center" to centerlink
: true with the link, false without the original image linkYou are not obliged to specify all the settings and if one or more of them are missing, the one or more saved for the blog will be used.
Moreover, this preset file is only valid for the folder in which it is saved and therefore only for the media it contains.
For the rest, the curious can consult the details of the modifications in the CHANGELOG file of this version.
Et voilà !
« previous entries - page 2 of 9 - next entries »