ckeditor5 1.23.1 → 1.23.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2de59df11814137ec61eddc70cdb6b8e2ad41a3ce36a1b05f1465bcc34f0e3cf
4
- data.tar.gz: 6758a10a972ca02b7f004bc1829ddabf7b98f4200e05cd6006ee7ca4ecbb2a22
3
+ metadata.gz: d4e4581fc1d9ebbf70b9213ce10a444b5ad2633f45334a7e343f875a8f7180ee
4
+ data.tar.gz: 251313b3f5eb8152f9385b9f4e159e30223b9a2bf0edff5009d3b85459d062c4
5
5
  SHA512:
6
- metadata.gz: 119d9e0202d230327df5a5cd9feff5fde6777682c0a6578af70dcd4aeaf4ee1639cee87b38fa532ecebaa53b94a157299549fa7109cb127bf6c3f4f8426b05d9
7
- data.tar.gz: 4576053427f4b2a464810dac8a14c23b90cdd64ae3e26368cd64154e71e1a63a35b9418ee062e33b65c987598e0f23ec5dd01e047ccc24a7b1fadeaf50966f23
6
+ metadata.gz: bdce490b8f96f7c365b3cdb782afccb02c8b372c93df042c76cfb10540d56f742b355af8c4d55a638399db4bccf661469117ae55c9cdd1a92b16e993bab37980
7
+ data.tar.gz: 9d54670405e3030075495bc0cbceb60524803658e23535f84bf5a72570917cbbdc32ab7130b0c1d1554c5f3065b3d7067afef3df4ae93df260608d20de8b6725
data/README.md CHANGED
@@ -80,7 +80,7 @@ CKEditor5::Rails.configure do
80
80
 
81
81
  # Optionally, you can specify version of CKEditor 5 to use.
82
82
  # If it's not specified the default version specified in the gem will be used.
83
- # version '44.0.0'
83
+ # version '44.1.0'
84
84
 
85
85
  # Upload images to the server using the simple upload adapter, instead of Base64 encoding.
86
86
  # simple_upload_adapter
@@ -198,7 +198,7 @@ You can create your own by defining it in the `config/initializers/ckeditor5.rb`
198
198
 
199
199
  CKEditor5::Rails.configure do
200
200
  # It's possible to override the default preset right in the initializer.
201
- version '44.0.0'
201
+ version '44.1.0'
202
202
 
203
203
  # New presets inherit properties from the default preset defined in the initializer.
204
204
  # In this example, the custom preset inherits everything from default but disables the menubar:
@@ -208,7 +208,7 @@ CKEditor5::Rails.configure do
208
208
 
209
209
  # In order to define preset from scratch, you can use the `inherit: false` option.
210
210
  presets.define :blank_preset, inherit: false do
211
- version '44.0.0'
211
+ version '44.1.0'
212
212
 
213
213
  # It tells the integration to fetch the newest security patches and bug fixes.
214
214
  # It may be disabled, but it's highly recommended to keep it enabled to avoid
@@ -330,7 +330,7 @@ Defines the version of CKEditor 5 to be used. The example below shows how to set
330
330
  CKEditor5::Rails.configure do
331
331
  # ... other configuration
332
332
 
333
- version '44.0.0'
333
+ version '44.1.0'
334
334
  end
335
335
  ```
336
336
  </details>
@@ -1076,7 +1076,7 @@ It may be useful when you want to define a preset based on the current user or r
1076
1076
  class ApplicationController < ActionController::Base
1077
1077
  def show
1078
1078
  @preset = ckeditor5_preset do
1079
- version '44.0.0'
1079
+ version '44.1.0'
1080
1080
 
1081
1081
  toolbar :sourceEditing, :|, :bold, :italic, :underline, :strikethrough,
1082
1082
  :subscript, :superscript, :removeFormat, :|, :bulletedList, :numberedList,
@@ -1111,7 +1111,7 @@ If you want to override the preset defined in the initializer, you can search fo
1111
1111
  class ApplicationController < ActionController::Base
1112
1112
  def show
1113
1113
  @preset = ckeditor5_preset(:default).override do
1114
- version '44.0.0'
1114
+ version '44.1.0'
1115
1115
 
1116
1116
  toolbar :sourceEditing, :|, :bold, :italic, :underline, :strikethrough,
1117
1117
  :subscript, :superscript, :removeFormat, :|, :bulletedList, :numberedList,
@@ -1284,7 +1284,7 @@ In that scenario it's recommended to add `gpl` method to the initializer along w
1284
1284
 
1285
1285
  CKEditor5::Rails.configure do
1286
1286
  gpl
1287
- version '44.0.0'
1287
+ version '44.1.0'
1288
1288
  end
1289
1289
  ```
1290
1290
 
@@ -2,8 +2,8 @@
2
2
 
3
3
  module CKEditor5
4
4
  module Rails
5
- VERSION = '1.23.1'
5
+ VERSION = '1.23.2'
6
6
 
7
- DEFAULT_CKEDITOR_VERSION = '44.0.0'
7
+ DEFAULT_CKEDITOR_VERSION = '44.1.0'
8
8
  end
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ckeditor5
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.23.1
4
+ version: 1.23.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mateusz Bagiński
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2024-12-13 00:00:00.000000000 Z
12
+ date: 2024-12-17 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails