ckeditor5 1.32.4 → 1.32.5
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 +4 -4
- data/README.md +8 -8
- data/lib/ckeditor5/rails/version.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a823708453c1259c6aa82e178cf0f3e0f17458f58d46f2bfaaadd71dc4b30b3f
|
4
|
+
data.tar.gz: e60257cabef32447ce94e7ebd8b3049af8766d185ffa4efedce1b2e0474fb080
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9d96855d941c8c01561766d1776c33f93f6fb15f1f0175546e71f46cf95dee4539796b77839c1a11d8cbc6da2859d70a13c719cfdf9f573b7b188d64a588ca63
|
7
|
+
data.tar.gz: 1839f5f3cbd1f27ee33f5360e9c5457debbecb898ef0b018b94d75321114d41e2273ec34bb5fc38e46e80c2ec681b9462e881c636299c832e897409ad014c1b6
|
data/README.md
CHANGED
@@ -92,7 +92,7 @@ CKEditor5::Rails.configure do
|
|
92
92
|
|
93
93
|
# Optionally, you can specify version of CKEditor 5 to use.
|
94
94
|
# If it's not specified the default version specified in the gem will be used.
|
95
|
-
# version '46.0.
|
95
|
+
# version '46.0.3'
|
96
96
|
|
97
97
|
# Upload images to the server using the simple upload adapter, instead of Base64 encoding.
|
98
98
|
# simple_upload_adapter
|
@@ -219,7 +219,7 @@ You can create your own by defining it in the `config/initializers/ckeditor5.rb`
|
|
219
219
|
|
220
220
|
CKEditor5::Rails.configure do
|
221
221
|
# It's possible to override the default preset right in the initializer.
|
222
|
-
version '46.0.
|
222
|
+
version '46.0.3'
|
223
223
|
|
224
224
|
# New presets inherit properties from the default preset defined in the initializer.
|
225
225
|
# In this example, the custom preset inherits everything from default but disables the menubar:
|
@@ -229,7 +229,7 @@ CKEditor5::Rails.configure do
|
|
229
229
|
|
230
230
|
# In order to define preset from scratch, you can use the `inherit: false` option.
|
231
231
|
presets.define :blank_preset, inherit: false do
|
232
|
-
version '46.0.
|
232
|
+
version '46.0.3'
|
233
233
|
|
234
234
|
# It tells the integration to fetch the newest security patches and bug fixes.
|
235
235
|
# It may be disabled, but it's highly recommended to keep it enabled to avoid
|
@@ -351,7 +351,7 @@ Defines the version of CKEditor 5 to be used. The example below shows how to set
|
|
351
351
|
CKEditor5::Rails.configure do
|
352
352
|
# ... other configuration
|
353
353
|
|
354
|
-
version '46.0.
|
354
|
+
version '46.0.3'
|
355
355
|
end
|
356
356
|
```
|
357
357
|
|
@@ -363,7 +363,7 @@ In order to disable default patches, you can pass the `apply_patches: false` key
|
|
363
363
|
CKEditor5::Rails.configure do
|
364
364
|
# ... other configuration
|
365
365
|
|
366
|
-
version '46.0.
|
366
|
+
version '46.0.3', apply_patches: false
|
367
367
|
end
|
368
368
|
```
|
369
369
|
|
@@ -1343,7 +1343,7 @@ It may be useful when you want to define a preset based on the current user or r
|
|
1343
1343
|
class ApplicationController < ActionController::Base
|
1344
1344
|
def show
|
1345
1345
|
@preset = ckeditor5_preset do
|
1346
|
-
version '46.0.
|
1346
|
+
version '46.0.3'
|
1347
1347
|
|
1348
1348
|
toolbar :sourceEditing, :|, :bold, :italic, :underline, :strikethrough,
|
1349
1349
|
:subscript, :superscript, :removeFormat, :|, :bulletedList, :numberedList,
|
@@ -1378,7 +1378,7 @@ If you want to override the preset defined in the initializer, you can search fo
|
|
1378
1378
|
class ApplicationController < ActionController::Base
|
1379
1379
|
def show
|
1380
1380
|
@preset = ckeditor5_preset(:default).override do
|
1381
|
-
version '46.0.
|
1381
|
+
version '46.0.3'
|
1382
1382
|
|
1383
1383
|
toolbar :sourceEditing, :|, :bold, :italic, :underline, :strikethrough,
|
1384
1384
|
:subscript, :superscript, :removeFormat, :|, :bulletedList, :numberedList,
|
@@ -1551,7 +1551,7 @@ In that scenario it's recommended to add `gpl` method to the initializer along w
|
|
1551
1551
|
|
1552
1552
|
CKEditor5::Rails.configure do
|
1553
1553
|
gpl
|
1554
|
-
version '46.0.
|
1554
|
+
version '46.0.3'
|
1555
1555
|
end
|
1556
1556
|
```
|
1557
1557
|
|
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.32.
|
4
|
+
version: 1.32.5
|
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: 2025-
|
12
|
+
date: 2025-09-04 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|