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 +4 -4
- data/README.md +7 -7
- 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: d4e4581fc1d9ebbf70b9213ce10a444b5ad2633f45334a7e343f875a8f7180ee
|
|
4
|
+
data.tar.gz: 251313b3f5eb8152f9385b9f4e159e30223b9a2bf0edff5009d3b85459d062c4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
1287
|
+
version '44.1.0'
|
|
1288
1288
|
end
|
|
1289
1289
|
```
|
|
1290
1290
|
|
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.
|
|
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-
|
|
12
|
+
date: 2024-12-17 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rails
|