Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: craftcms/ckeditor
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b89d2f163d13cad94fac500233e6b18364201668
Choose a base ref
..
head repository: craftcms/ckeditor
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 684435fc6879780c7b53a7a5bb1d1f39b248638f
Choose a head ref
Showing with 142 additions and 8 deletions.
  1. +1 −1 composer.json
  2. +5 −0 src/CkeConfig.php
  3. +5 −0 src/CkeConfigs.php
  4. +5 −0 src/Field.php
  5. +5 −0 src/Plugin.php
  6. +5 −0 src/console/controllers/ConvertController.php
  7. +5 −0 src/controllers/CkeConfigsController.php
  8. +5 −0 src/controllers/CkeditorController.php
  9. +1 −1 src/events/DefineLinkOptionsEvent.php
  10. +1 −1 src/events/ModifyConfigEvent.php
  11. +5 −0 src/helpers/CkeditorConfigSchema.php
  12. +5 −0 src/migrations/Install.php
  13. +5 −0 src/migrations/m230408_163704_v3_upgrade.php
  14. +1 −1 src/web/assets/BaseCkeditorPackageAsset.php
  15. +1 −1 src/web/assets/ckeconfig/CkeConfigAsset.php
  16. +1 −0 src/web/assets/ckeconfig/dist/ckeconfig.js
  17. +5 −0 src/web/assets/ckeconfig/dist/ckeconfig.js.LICENSE.txt
  18. +1 −1 src/web/assets/ckeconfig/dist/ckeconfig.js.map
  19. +6 −0 src/web/assets/ckeconfig/src/ConfigOptions.js
  20. +6 −0 src/web/assets/ckeconfig/src/ToolbarBuilder.js
  21. +6 −0 src/web/assets/ckeconfig/src/ckeconfig.js
  22. +6 −0 src/web/assets/ckeconfig/webpack.config.js
  23. +1 −1 src/web/assets/ckeditor/CkeditorAsset.php
  24. +6 −0 src/web/assets/ckeditor/dist/ckeditor5-craftcms.js.LICENSE.txt
  25. +1 −1 src/web/assets/ckeditor/dist/ckeditor5-craftcms.js.map
  26. +6 −0 src/web/assets/ckeditor/src/ckeditor5-craftcms.js
  27. +6 −0 src/web/assets/ckeditor/src/image/imageinsert/imageinsertui.js
  28. +6 −0 src/web/assets/ckeditor/src/image/imagetransform.js
  29. +6 −0 src/web/assets/ckeditor/src/image/imagetransform/imagetransformediting.js
  30. +6 −0 src/web/assets/ckeditor/src/image/imagetransform/imagetransformui.js
  31. +6 −0 src/web/assets/ckeditor/src/image/imagetransform/transformimagecommand.js
  32. +6 −0 src/web/assets/ckeditor/src/link/linkui.js
  33. +6 −0 src/web/assets/ckeditor/webpack.config.js
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@
"ckeditor",
"yii2"
],
"license": "MIT",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Pixel & Tonic",
5 changes: 5 additions & 0 deletions src/CkeConfig.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<?php
/**
* @link https://craftcms.com/
* @copyright Copyright (c) Pixel & Tonic, Inc.
* @license GPL-3.0-or-later
*/

namespace craft\ckeditor;

5 changes: 5 additions & 0 deletions src/CkeConfigs.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<?php
/**
* @link https://craftcms.com/
* @copyright Copyright (c) Pixel & Tonic, Inc.
* @license GPL-3.0-or-later
*/

namespace craft\ckeditor;

5 changes: 5 additions & 0 deletions src/Field.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<?php
/**
* @link https://craftcms.com/
* @copyright Copyright (c) Pixel & Tonic, Inc.
* @license GPL-3.0-or-later
*/

namespace craft\ckeditor;

5 changes: 5 additions & 0 deletions src/Plugin.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<?php
/**
* @link https://craftcms.com/
* @copyright Copyright (c) Pixel & Tonic, Inc.
* @license GPL-3.0-or-later
*/

namespace craft\ckeditor;

5 changes: 5 additions & 0 deletions src/console/controllers/ConvertController.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<?php
/**
* @link https://craftcms.com/
* @copyright Copyright (c) Pixel & Tonic, Inc.
* @license GPL-3.0-or-later
*/

namespace craft\ckeditor\console\controllers;

5 changes: 5 additions & 0 deletions src/controllers/CkeConfigsController.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<?php
/**
* @link https://craftcms.com/
* @copyright Copyright (c) Pixel & Tonic, Inc.
* @license GPL-3.0-or-later
*/

namespace craft\ckeditor\controllers;

5 changes: 5 additions & 0 deletions src/controllers/CkeditorController.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<?php
/**
* @link https://craftcms.com/
* @copyright Copyright (c) Pixel & Tonic, Inc.
* @license GPL-3.0-or-later
*/

namespace craft\ckeditor\controllers;

2 changes: 1 addition & 1 deletion src/events/DefineLinkOptionsEvent.php
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
/**
* @link https://craftcms.com/
* @copyright Copyright (c) Pixel & Tonic, Inc.
* @license MIT
* @license GPL-3.0-or-later
*/

namespace craft\ckeditor\events;
2 changes: 1 addition & 1 deletion src/events/ModifyConfigEvent.php
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
/**
* @link https://craftcms.com/
* @copyright Copyright (c) Pixel & Tonic, Inc.
* @license MIT
* @license GPL-3.0-or-later
*/

namespace craft\ckeditor\events;
5 changes: 5 additions & 0 deletions src/helpers/CkeditorConfigSchema.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<?php
/**
* @link https://craftcms.com/
* @copyright Copyright (c) Pixel & Tonic, Inc.
* @license GPL-3.0-or-later
*/

namespace craft\ckeditor\helpers;

5 changes: 5 additions & 0 deletions src/migrations/Install.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<?php
/**
* @link https://craftcms.com/
* @copyright Copyright (c) Pixel & Tonic, Inc.
* @license GPL-3.0-or-later
*/

namespace craft\ckeditor\migrations;

5 changes: 5 additions & 0 deletions src/migrations/m230408_163704_v3_upgrade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<?php
/**
* @link https://craftcms.com/
* @copyright Copyright (c) Pixel & Tonic, Inc.
* @license GPL-3.0-or-later
*/

namespace craft\ckeditor\migrations;

2 changes: 1 addition & 1 deletion src/web/assets/BaseCkeditorPackageAsset.php
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
/**
* @link https://craftcms.com/
* @copyright Copyright (c) Pixel & Tonic, Inc.
* @license MIT
* @license GPL-3.0-or-later
*/

namespace craft\ckeditor\web\assets;
2 changes: 1 addition & 1 deletion src/web/assets/ckeconfig/CkeConfigAsset.php
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
/**
* @link https://craftcms.com/
* @copyright Copyright (c) Pixel & Tonic, Inc.
* @license MIT
* @license GPL-3.0-or-later
*/

namespace craft\ckeditor\web\assets\ckeconfig;
Loading