release 3.0
This commit is contained in:
parent
02edbcb877
commit
fd11b545f2
13
CHANGELOG.md
13
CHANGELOG.md
@ -1,6 +1,19 @@
|
||||
todo:
|
||||
- [ ] use sql statment
|
||||
- [ ] fix and add actitivy
|
||||
check formats
|
||||
|
||||
3.0
|
||||
- require Dotclear 2.26
|
||||
- require php 8.1
|
||||
- use new SVG icon
|
||||
- use namespace
|
||||
- use Dotclear filter and list
|
||||
- remove superadmin report
|
||||
- remove settings db table
|
||||
- change activity table structure
|
||||
- reset settings and activities.
|
||||
- various fix
|
||||
|
||||
2.1 - 2022.12.20
|
||||
- use abstract plugin name
|
||||
|
12
README.md
12
README.md
@ -3,7 +3,7 @@
|
||||
[![Release](https://img.shields.io/github/v/release/JcDenis/activityReport)](https://github.com/JcDenis/activityReport/releases)
|
||||
[![Date](https://img.shields.io/github/release-date/JcDenis/activityReport)](https://github.com/JcDenis/activityReport/releases)
|
||||
[![Issues](https://img.shields.io/github/issues/JcDenis/activityReport)](https://github.com/JcDenis/activityReport/issues)
|
||||
[![Dotclear](https://img.shields.io/badge/dotclear-v2.24-blue.svg)](https://fr.dotclear.org/download)
|
||||
[![Dotclear](https://img.shields.io/badge/dotclear-v2.26-blue.svg)](https://fr.dotclear.org/download)
|
||||
[![Dotaddict](https://img.shields.io/badge/dotaddict-official-green.svg)](https://plugins.dotaddict.org/dc2/details/activityReport)
|
||||
[![License](https://img.shields.io/github/license/JcDenis/activityReport)](https://github.com/JcDenis/activityReport/blob/master/LICENSE)
|
||||
|
||||
@ -19,11 +19,11 @@ themes and plugins from Dotclear administration pages.
|
||||
|
||||
_activityReport_ requires:
|
||||
|
||||
* Permissions superadmin or admin
|
||||
* Dotclear 2.24
|
||||
|
||||
* plugin add a table to database
|
||||
* plugin send email
|
||||
* Permissions admin
|
||||
* Dotclear 2.26
|
||||
* PHP 8.1+
|
||||
* permission to add table on database
|
||||
* permission to send email
|
||||
|
||||
## USAGE
|
||||
|
||||
|
18
_define.php
18
_define.php
@ -15,21 +15,21 @@ if (!defined('DC_RC_PATH')) {
|
||||
}
|
||||
|
||||
$this->registerModule(
|
||||
'Activity report',
|
||||
'Receive your blog activity by email, feed, or on dashboard',
|
||||
'Activity log',
|
||||
'Log and receive your blog activity by email, feed, or on dashboard',
|
||||
'Jean-Christian Denis and contributors',
|
||||
'2.1',
|
||||
'3.0',
|
||||
[
|
||||
'requires' => [['core', '2.24']],
|
||||
'requires' => [['core', '2.26']],
|
||||
'permissions' => dcCore::app()->auth->makePermissions([
|
||||
dcAuth::PERMISSION_USAGE,
|
||||
dcAuth::PERMISSION_CONTENT_ADMIN,
|
||||
dcAuth::PERMISSION_ADMIN,
|
||||
]),
|
||||
'priority' => -1000000,
|
||||
'type' => 'plugin',
|
||||
'support' => 'https://github.com/JcDenis/' . basename(__DIR__),
|
||||
'details' => 'http://plugins.dotaddict.org/dc2/details/' . basename(__DIR__),
|
||||
'repository' => 'https://raw.githubusercontent.com/JcDenis/' . basename(__DIR__) . '/master/dcstore.xml',
|
||||
'priority' => 2,
|
||||
'type' => 'plugin',
|
||||
'support' => 'https://github.com/JcDenis/' . basename(__DIR__),
|
||||
'details' => 'http://plugins.dotaddict.org/dc2/details/' . basename(__DIR__),
|
||||
'repository' => 'https://raw.githubusercontent.com/JcDenis/' . basename(__DIR__) . '/master/dcstore.xml',
|
||||
]
|
||||
);
|
||||
|
10
dcstore.xml
10
dcstore.xml
@ -1,12 +1,12 @@
|
||||
<?xml version="1.0"?>
|
||||
<modules xmlns:da="http://dotaddict.org/da/">
|
||||
<module id="activityReport">
|
||||
<name>Activity report</name>
|
||||
<version>2.1</version>
|
||||
<name>Activity log</name>
|
||||
<version>3.0</version>
|
||||
<author>Jean-Christian Denis and contributors</author>
|
||||
<desc>Receive your blog activity by email, feed, or on dashboard</desc>
|
||||
<file>https://github.com/JcDenis/activityReport/releases/download/v2.1/plugin-activityReport.zip</file>
|
||||
<da:dcmin>2.24</da:dcmin>
|
||||
<desc>Log and receive your blog activity by email, feed, or on dashboard</desc>
|
||||
<file>https://github.com/JcDenis/activityReport/releases/download/v3.0/plugin-activityReport.zip</file>
|
||||
<da:dcmin>2.26</da:dcmin>
|
||||
<da:details>http://plugins.dotaddict.org/dc2/details/activityReport</da:details>
|
||||
<da:support>https://github.com/JcDenis/activityReport</da:support>
|
||||
</module>
|
||||
|
Loading…
Reference in New Issue
Block a user