use Dotclear style for changelog

This commit is contained in:
Jean-Christian Paul Denis 2023-08-06 17:46:43 +02:00
parent f64967b047
commit 2cfade20e2
Signed by: JcDenis
GPG Key ID: 1B5B8C5B90B6C951
4 changed files with 51 additions and 41 deletions

View File

@ -1,47 +1,57 @@
1.9 - 2023.08.06
- require Dotclear 2.27
- require PHP 7.4+
- move third party repository
alias 1.9 - 2023.08.06
===========================================================
* require Dotclear 2.27
* require PHP 7.4+
* move third party repository
1.8 - 2023.07.30
- require Dotclear 2.27
- require PHP 7.4+
- update to Dotclear 2.27-dev
alias 1.8 - 2023.07.30
===========================================================
* require Dotclear 2.27
* require PHP 7.4+
* update to Dotclear 2.27-dev
1.7.1 - 2023.06.16
- require dotclear 2.26
- fix non php 7.4 type hint
alias 1.7.1 - 2023.06.16
===========================================================
* require dotclear 2.26
* fix non php 7.4 type hint
1.7 - 2023.05.13
- require dotclear 2.26
- release for dc2.26 stable
alias 1.7 - 2023.05.13
===========================================================
* require dotclear 2.26
* release for dc2.26 stable
1.6 - 2023.05.01
- require dotclear 2.26
- use behavior intead of urlHandler (see README)
- fix URL before saving (without blog URL)
- add option for visible redirection
- add plugin Uninstaller features
- change table structure (for redirect option)
alias 1.6 - 2023.05.01
===========================================================
* require dotclear 2.26
* use behavior intead of urlHandler (see README)
* fix URL before saving (without blog URL)
* add option for visible redirection
* add plugin Uninstaller features
* change table structure (for redirect option)
1.5.1 - 2023.04.09
- require dotclear 2.26
- use sql statement
alias 1.5.1 - 2023.04.09
===========================================================
* require dotclear 2.26
* use sql statement
1.5 - 2023.04.08
- require dotclear 2.26
- use namespace
alias 1.5 - 2023.04.08
===========================================================
* require dotclear 2.26
* use namespace
1.4.1 - 2022.12.20
- add number of aliases on list page
- fix install
alias 1.4.1 - 2022.12.20
===========================================================
* add number of aliases on list page
* fix install
1.4 - 2022.12.04
- use dotclear breadcrumb, notice, redirection
- use constant for table name
- use constant for permissions
- add message on action
- update translation
alias 1.4 - 2022.12.04
===========================================================
* use dotclear breadcrumb, notice, redirection
* use constant for table name
* use constant for permissions
* add message on action
* update translation
1.3 - 2022.11.27
- update for Dotclear 2.24
===========================================================
* update for Dotclear 2.24

View File

@ -18,7 +18,7 @@ $this->registerModule(
'alias',
"Create aliases of your blog's URLs",
'Olivier Meunier and contributors',
'1.8',
'1.9',
[
'requires' => [['core', '2.27']],
'permissions' => dcCore::app()->auth->makePermissions([

View File

@ -2,10 +2,10 @@
<modules xmlns:da="http://dotaddict.org/da/">
<module id="alias">
<name>alias</name>
<version>1.8</version>
<version>1.9</version>
<author>Olivier Meunier and contributors</author>
<desc>Create aliases of your blog's URLs</desc>
<file>https://gitea.dotclear.watch/JcDenis/alias/releases/download/v1.8/plugin-alias.zip</file>
<file>https://gitea.dotclear.watch/JcDenis/alias/releases/download/v1.9/plugin-alias.zip</file>
<da:dcmin>2.27</da:dcmin>
<da:details>https://git.dotclear.watch/JcDenis/alias/src/branch/master/README.md</da:details>
<da:support>https://git.dotclear.watch/JcDenis/alias/issues</da:support>

View File

@ -46,7 +46,7 @@ class Prepend extends Process
$redir = !empty($v['alias_redirect']);
break;
// single alias using "url" to "destination"
// single alias using "url" to "destination"
} elseif ($v['alias_url'] == $args) {
$part = $v['alias_destination'];
$found = true;