release 1.2
This commit is contained in:
parent
cb8269705e
commit
dc65fa2c88
4 changed files with 21 additions and 17 deletions
|
@ -1,4 +1,6 @@
|
|||
dev
|
||||
1.2 - 2023.03.12
|
||||
- update to Dotclear 2.25
|
||||
- use namespace
|
||||
|
||||
1.1 - 2022.11.20
|
||||
- fix compatibility with Dotclear 2.24 (required)
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
[![Release](https://img.shields.io/github/v/release/JcDenis/entryPhotoExifWidget)](https://github.com/JcDenis/entryPhotoExifWidget/releases)
|
||||
[![Date](https://img.shields.io/github/release-date/JcDenis/entryPhotoExifWidget)](https://github.com/JcDenis/entryPhotoExifWidget/releases)
|
||||
[![Issues](https://img.shields.io/github/issues/JcDenis/entryPhotoExifWidget)](https://github.com/JcDenis/entryPhotoExifWidget/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.25-blue.svg)](https://fr.dotclear.org/download)
|
||||
[![Dotaddict](https://img.shields.io/badge/dotaddict-official-green.svg)](https://plugins.dotaddict.org/dc2/details/entryPhotoExifWidget)
|
||||
[![License](https://img.shields.io/github/license/JcDenis/entryPhotoExifWidget)](https://github.com/JcDenis/entryPhotoExifWidget/blob/master/LICENSE)
|
||||
|
||||
|
@ -19,7 +19,7 @@ Show images exif of an entry in a widget.
|
|||
_entryPhotoExifWidget_ requires:
|
||||
|
||||
* permissions to manage widgets
|
||||
* Dotclear 2.24
|
||||
* Dotclear 2.25
|
||||
|
||||
## USAGE
|
||||
|
||||
|
|
18
_define.php
18
_define.php
|
@ -15,16 +15,18 @@ if (!defined('DC_RC_PATH')) {
|
|||
}
|
||||
|
||||
$this->registerModule(
|
||||
'Entry Photo Exif Widget',
|
||||
'Show images exif of an entry',
|
||||
'Entry Photo EXIF Widget',
|
||||
'Show images EXIF of an entry',
|
||||
'Jean-Christian Denis and contibutors',
|
||||
'1.1',
|
||||
'1.2',
|
||||
[
|
||||
'requires' => [['core', '2.24']],
|
||||
'permissions' => dcAuth::PERMISSION_ADMIN,
|
||||
'requires' => [['core', '2.25']],
|
||||
'permissions' => dcCore::app()->auth->makePermissions([
|
||||
dcAuth::PERMISSION_ADMIN,
|
||||
]),
|
||||
'type' => 'plugin',
|
||||
'support' => 'https://github.com/JcDenis/entryPhotoExifWidget',
|
||||
'details' => 'https://plugins.dotaddict.org/dc2/details/entryPhotoExifWidget',
|
||||
'repository' => 'https://raw.githubusercontent.com/JcDenis/entryPhotoExifWidget/master/dcstore.xml',
|
||||
'support' => 'https://github.com/JcDenis/' . basename(__DIR__),
|
||||
'details' => 'https://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="entryPhotoExifWidget">
|
||||
<name>Entry Photo Exif Widget</name>
|
||||
<version>1.1</version>
|
||||
<name>Entry Photo EXIF Widget</name>
|
||||
<version>1.2</version>
|
||||
<author>Jean-Christian Denis and contibutors</author>
|
||||
<desc>Show images exif of an entry</desc>
|
||||
<file>https://github.com/JcDenis/entryPhotoExifWidget/releases/download/v1.1/plugin-entryPhotoExifWidget.zip</file>
|
||||
<da:dcmin>2.24</da:dcmin>
|
||||
<desc>Show images EXIF of an entry</desc>
|
||||
<file>https://github.com/JcDenis/entryPhotoExifWidget/releases/download/v1.2/plugin-entryPhotoExifWidget.zip</file>
|
||||
<da:dcmin>2.25</da:dcmin>
|
||||
<da:details>https://plugins.dotaddict.org/dc2/details/entryPhotoExifWidget</da:details>
|
||||
<da:support>https://github.com/JcDenis/entryPhotoExifWidget</da:support>
|
||||
</module>
|
||||
|
|
Loading…
Reference in a new issue