release 2021.11.06
parent
cfcccf32d7
commit
6a1d365762
12
CHANGELOG.md
12
CHANGELOG.md
|
@ -3,11 +3,19 @@ xxx.xx.xx
|
||||||
- [ ] Add bit.ly custom domain
|
- [ ] Add bit.ly custom domain
|
||||||
- [ ] Add public page of the list of know urls and in/visible status
|
- [ ] Add public page of the list of know urls and in/visible status
|
||||||
- [ ] Add passworded links
|
- [ ] Add passworded links
|
||||||
- Never fix breaking comments or complexe public url (add warning)
|
|
||||||
- fix permissions
|
2021.11.06
|
||||||
|
- never fix breaking comments or complexe public url (add warning)
|
||||||
|
- fix permissions (dc 2.20)
|
||||||
- fix js load
|
- fix js load
|
||||||
|
- fix various bugs, typo and ui enhancment
|
||||||
- add user pref on table cols
|
- add user pref on table cols
|
||||||
- add user pref on filters (dc 2.20)
|
- add user pref on filters (dc 2.20)
|
||||||
|
- add constant to disable service on entire plateform
|
||||||
|
- re-add bit.ly (partially)
|
||||||
|
- move settings to plugin config page
|
||||||
|
- update translations (and remove .lang.php file)
|
||||||
|
- update to PSR12
|
||||||
|
|
||||||
2021.09.16
|
2021.09.16
|
||||||
- remove deprecated external service
|
- remove deprecated external service
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
[![Release](https://img.shields.io/github/v/release/JcDenis/kUtRL)](https://github.com/JcDenis/kUtRL/releases)
|
[![Release](https://img.shields.io/github/v/release/JcDenis/kUtRL)](https://github.com/JcDenis/kUtRL/releases)
|
||||||
[![Date](https://img.shields.io/github/release-date/JcDenis/kUtRL)](https://github.com/JcDenis/kUtRL/releases)
|
[![Date](https://img.shields.io/github/release-date/JcDenis/kUtRL)](https://github.com/JcDenis/kUtRL/releases)
|
||||||
[![Issues](https://img.shields.io/github/issues/JcDenis/kUtRL)](https://github.com/JcDenis/kUtRL/issues)
|
[![Issues](https://img.shields.io/github/issues/JcDenis/kUtRL)](https://github.com/JcDenis/kUtRL/issues)
|
||||||
[![Dotclear](https://img.shields.io/badge/dotclear-v2.19-blue.svg)](https://fr.dotclear.org/download)
|
[![Dotclear](https://img.shields.io/badge/dotclear-v2.20-blue.svg)](https://fr.dotclear.org/download)
|
||||||
[![Dotaddict](https://img.shields.io/badge/dotaddict-official-green.svg)](https://plugins.dotaddict.org/dc2/details/kUtRL)
|
[![Dotaddict](https://img.shields.io/badge/dotaddict-official-green.svg)](https://plugins.dotaddict.org/dc2/details/kUtRL)
|
||||||
[![License](https://img.shields.io/github/license/JcDenis/kUtRL)](https://github.com/JcDenis/kUtRL/blob/master/LICENSE)
|
[![License](https://img.shields.io/github/license/JcDenis/kUtRL)](https://github.com/JcDenis/kUtRL/blob/master/LICENSE)
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@ Create short URL on its own or from external services.
|
||||||
|
|
||||||
* admin permission to configure
|
* admin permission to configure
|
||||||
* no permissions to shorten links on the fly
|
* no permissions to shorten links on the fly
|
||||||
* Dotclear 2.19
|
* Dotclear 2.20
|
||||||
|
|
||||||
## USAGE
|
## USAGE
|
||||||
|
|
||||||
|
|
|
@ -18,9 +18,9 @@ $this->registerModule(
|
||||||
'Links shortener',
|
'Links shortener',
|
||||||
'Use, create and serve short url on your blog',
|
'Use, create and serve short url on your blog',
|
||||||
'Jean-Christian Denis and contributors',
|
'Jean-Christian Denis and contributors',
|
||||||
'2021.09.16',
|
'2021.11.06',
|
||||||
[
|
[
|
||||||
'requires' => [['core', '2.19']],
|
'requires' => [['core', '2.20']],
|
||||||
'permissions' => 'usage,contentadmin,admin',
|
'permissions' => 'usage,contentadmin,admin',
|
||||||
'type' => 'plugin',
|
'type' => 'plugin',
|
||||||
'support' => 'https://github.com/JcDenis/kUtRL',
|
'support' => 'https://github.com/JcDenis/kUtRL',
|
||||||
|
|
|
@ -15,46 +15,46 @@ if (!defined('DC_CONTEXT_ADMIN')) {
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->addUserAction(
|
$this->addUserAction(
|
||||||
/* type */
|
/* type */
|
||||||
'settings',
|
'settings',
|
||||||
/* action */
|
/* action */
|
||||||
'delete_all',
|
'delete_all',
|
||||||
/* ns */
|
/* ns */
|
||||||
'kUtRL',
|
'kUtRL',
|
||||||
/* description */
|
/* description */
|
||||||
__('delete all settings')
|
__('delete all settings')
|
||||||
);
|
);
|
||||||
|
|
||||||
$this->addUserAction(
|
$this->addUserAction(
|
||||||
/* type */
|
/* type */
|
||||||
'tables',
|
'tables',
|
||||||
/* action */
|
/* action */
|
||||||
'delete',
|
'delete',
|
||||||
/* ns */
|
/* ns */
|
||||||
'kutrl',
|
'kutrl',
|
||||||
/* description */
|
/* description */
|
||||||
__('delete table')
|
__('delete table')
|
||||||
);
|
);
|
||||||
|
|
||||||
$this->addUserAction(
|
$this->addUserAction(
|
||||||
/* type */
|
/* type */
|
||||||
'plugins',
|
'plugins',
|
||||||
/* action */
|
/* action */
|
||||||
'delete',
|
'delete',
|
||||||
/* ns */
|
/* ns */
|
||||||
'kUtRL',
|
'kUtRL',
|
||||||
/* description */
|
/* description */
|
||||||
__('delete plugin files')
|
__('delete plugin files')
|
||||||
);
|
);
|
||||||
|
|
||||||
$this->addUserAction(
|
$this->addUserAction(
|
||||||
/* type */
|
/* type */
|
||||||
'versions',
|
'versions',
|
||||||
/* action */
|
/* action */
|
||||||
'delete',
|
'delete',
|
||||||
/* ns */
|
/* ns */
|
||||||
'kUtRL',
|
'kUtRL',
|
||||||
/* description */
|
/* description */
|
||||||
__('delete the version number')
|
__('delete the version number')
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -62,34 +62,34 @@ $this->addUserAction(
|
||||||
# Keep table
|
# Keep table
|
||||||
|
|
||||||
$this->addDirectAction(
|
$this->addDirectAction(
|
||||||
/* type */
|
/* type */
|
||||||
'settings',
|
'settings',
|
||||||
/* action */
|
/* action */
|
||||||
'delete_all',
|
'delete_all',
|
||||||
/* ns */
|
/* ns */
|
||||||
'kUtRL',
|
'kUtRL',
|
||||||
/* description */
|
/* description */
|
||||||
sprintf(__('delete all %s settings'), 'kUtRL')
|
sprintf(__('delete all %s settings'), 'kUtRL')
|
||||||
);
|
);
|
||||||
|
|
||||||
$this->addDirectAction(
|
$this->addDirectAction(
|
||||||
/* type */
|
/* type */
|
||||||
'versions',
|
'versions',
|
||||||
/* action */
|
/* action */
|
||||||
'delete',
|
'delete',
|
||||||
/* ns */
|
/* ns */
|
||||||
'kUtRL',
|
'kUtRL',
|
||||||
/* description */
|
/* description */
|
||||||
sprintf(__('delete %s version number'), 'kUtRL')
|
sprintf(__('delete %s version number'), 'kUtRL')
|
||||||
);
|
);
|
||||||
|
|
||||||
$this->addDirectAction(
|
$this->addDirectAction(
|
||||||
/* type */
|
/* type */
|
||||||
'plugins',
|
'plugins',
|
||||||
/* action */
|
/* action */
|
||||||
'delete',
|
'delete',
|
||||||
/* ns */
|
/* ns */
|
||||||
'kUtRL',
|
'kUtRL',
|
||||||
/* description */
|
/* description */
|
||||||
sprintf(__('delete %s plugin files'), 'kUtRL')
|
sprintf(__('delete %s plugin files'), 'kUtRL')
|
||||||
);
|
);
|
||||||
|
|
23
dcstore.xml
23
dcstore.xml
|
@ -1,12 +1,13 @@
|
||||||
|
<?xml version="1.0"?>
|
||||||
<modules xmlns:da="http://dotaddict.org/da/">
|
<modules xmlns:da="http://dotaddict.org/da/">
|
||||||
<module id="kUtRL">
|
<module id="kUtRL">
|
||||||
<name>URL shortener</name>
|
<name>Links shortener</name>
|
||||||
<version>2021.09.16</version>
|
<version>2021.11.06</version>
|
||||||
<author>Jean-Christian Denis and contributors</author>
|
<author>Jean-Christian Denis and contributors</author>
|
||||||
<desc>Use, create and serve short url on your blog</desc>
|
<desc>Use, create and serve short url on your blog</desc>
|
||||||
<file>https://github.com/JcDenis/kUtRL/releases/download/v2021.09.16/plugin-kUtRL.zip</file>
|
<file>https://github.com/JcDenis/kUtRL/releases/download/v2021.11.06/plugin-kUtRL.zip</file>
|
||||||
<da:dcmin>2.19</da:dcmin>
|
<da:dcmin>2.20</da:dcmin>
|
||||||
<da:details>http://plugins.dotaddict.org/dc2/details/kUtRL</da:details>
|
<da:details>http://plugins.dotaddict.org/dc2/details/kUtRL</da:details>
|
||||||
<da:support>https://github.com/JcDenis/kUtRL</da:support>
|
<da:support>https://github.com/JcDenis/kUtRL</da:support>
|
||||||
</module>
|
</module>
|
||||||
</modules>
|
</modules>
|
||||||
|
|
Loading…
Reference in New Issue