fix small issues
Cette révision appartient à :
Parent
ef2fd169d2
révision
7f8caa565a
@ -98,7 +98,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bottomLine">
|
||||
<a href="http://www.roxyfileman.com" target="_blank">© 2013 - <span id="copyYear"></span> RoxyFileman</a>
|
||||
<a href="https://www.o3-shop.com" target="_blank">© 2013 - <span id="copyYear"></span> RoxyFileman + O3-Shop</a>
|
||||
</td>
|
||||
<td class="bottomLine">
|
||||
<div id="pnlStatus">Status bar</div>
|
||||
|
@ -92,7 +92,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="bottomLine">
|
||||
<a href="http://www.roxyfileman.com" target="_blank">© 2013 - <span id="copyYear"></span> RoxyFileman</a>
|
||||
<a href="https://www.o3-shop.com" target="_blank">© 2013 - <span id="copyYear"></span> RoxyFileman + O3-Shop</a>
|
||||
</td>
|
||||
<td class="bottomLine">
|
||||
<div id="pnlStatus">Status bar</div>
|
||||
|
15
CHANGELOG.md
Fichier normal
15
CHANGELOG.md
Fichier normal
@ -0,0 +1,15 @@
|
||||
# Changelog for O3-Shop TinyMCE Editor plugin
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
||||
and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
## unreleased
|
||||
|
||||
## [v1.0.0] - 2023-04-11
|
||||
|
||||
### Added
|
||||
- Refactor plugin
|
||||
- update TinyMCE to 6.4.1
|
||||
|
||||
[v1.0.0]: https://gitlab.o3-shop.com/o3/tinymce-editor/releases/tag/v1.0.0
|
@ -80,7 +80,7 @@ SOFTWARE.
|
||||
```
|
||||
|
||||
### Roxy file manager [GPL v3]
|
||||
(status: 2021-05-06)
|
||||
(status: 2023-04-07)
|
||||
|
||||
```
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
|
@ -1,14 +1,20 @@
|
||||
/**
|
||||
* vanilla-thunder/oxid-module-tinymce
|
||||
* TinyMCE 5 Integration for OXID eShop V6.2
|
||||
* This file is part of O3-Shop TinyMCE editor module.
|
||||
*
|
||||
* This program is free software;
|
||||
* you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation;
|
||||
* either version 3 of the License, or (at your option) any later version.
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, version 3.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
||||
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
* You should have received a copy of the GNU General Public License along with this program; if not, see <http://www.gnu.org/licenses/>
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with O3-Shop. If not, see <http://www.gnu.org/licenses/>
|
||||
*
|
||||
* @copyright Copyright (c) 2022 Marat Bedoev, bestlife AG
|
||||
* @copyright Copyright (c) 2023 O3-Shop (https://www.o3-shop.com)
|
||||
* @license https://www.gnu.org/licenses/gpl-3.0 GNU General Public License 3 (GPLv3)
|
||||
*/
|
||||
|
||||
/*global tinymce:true */
|
||||
@ -36,7 +42,7 @@
|
||||
return {
|
||||
getMetadata: () => {
|
||||
return {
|
||||
name: "TinyMCE Fullscreen Editing Plugin for OXID eShop",
|
||||
name: "TinyMCE Fullscreen Editing Plugin for O3-Shop",
|
||||
url: "https://github.com/vanilla-thunder/oxid-module-tinymce"
|
||||
};
|
||||
}
|
||||
|
@ -1,7 +1,6 @@
|
||||
{
|
||||
"name": "o3-shop/tinymce-editor",
|
||||
"version": "1.0",
|
||||
"description": "TinyMCE 5 Integration for O3-Shop",
|
||||
"description": "TinyMCE 6 Integration for O3-Shop",
|
||||
"type": "oxideshop-module",
|
||||
"homepage": "https://www.o3-shop.com/",
|
||||
"license": [
|
||||
@ -21,7 +20,10 @@
|
||||
"oxideshop": {
|
||||
"blacklist-filter": [
|
||||
"composer.json",
|
||||
"README.md"
|
||||
"CHANGELOG.md",
|
||||
"README.md",
|
||||
".php-cs-fixer.php",
|
||||
"phpstan.neon"
|
||||
],
|
||||
"target-directory": "o3-shop/tinymce-editor"
|
||||
}
|
||||
@ -30,7 +32,7 @@
|
||||
"exclude": ["/build"]
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7.0",
|
||||
"php": ">=7.4",
|
||||
"o3-shop/shop-ce": "^1.0"
|
||||
},
|
||||
"autoload": {
|
||||
|
@ -1,14 +1,20 @@
|
||||
/**
|
||||
* vanilla-thunder/oxid-module-tinymce
|
||||
* TinyMCE 5 Integration for OXID eShop V6.2
|
||||
* This file is part of O3-Shop TinyMCE editor module.
|
||||
*
|
||||
* This program is free software;
|
||||
* you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation;
|
||||
* either version 3 of the License, or (at your option) any later version.
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, version 3.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
||||
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
* You should have received a copy of the GNU General Public License along with this program; if not, see <http://www.gnu.org/licenses/>
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with O3-Shop. If not, see <http://www.gnu.org/licenses/>
|
||||
*
|
||||
* @copyright Copyright (c) 2022 Marat Bedoev, bestlife AG
|
||||
* @copyright Copyright (c) 2023 O3-Shop (https://www.o3-shop.com)
|
||||
* @license https://www.gnu.org/licenses/gpl-3.0 GNU General Public License 3 (GPLv3)
|
||||
*/
|
||||
|
||||
/*global tinymce:true */
|
||||
|
Chargement…
Référencer dans un nouveau ticket
Block a user