ckeditor5 1.27.0 → 1.27.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 93b0f87e014924cf2ba04dc4d8ce96afef84152c4c8fc7bdebf5a736db864b95
4
- data.tar.gz: 02b97648d5c94907741382795721e5944ecc0752c3b2792cfe0c7455c482f81f
3
+ metadata.gz: 76e2b293ef722fde79ed1df5f4c13047252454d617854f92d7df98f33e9702c7
4
+ data.tar.gz: dbfef27c1c1458cdd8f795ef7569966f5aea6114609c7131b12891a341303c07
5
5
  SHA512:
6
- metadata.gz: 992f3a903d5bd123e91b572f0d0154c42044f90768264fe07a5c61d343431921ed3a45515f8f74ad48a68a0870876e9f73184cdc14266f4c0e43a4f393306a93
7
- data.tar.gz: 64a1063477787141603fd850b6de704223c15b8dd6dbedcd713ea4a5ae69fb1ebf630ba1eaef9fc245a95272f4b32b40618065e04e0c69d72b8536677ef107bd
6
+ metadata.gz: 074a2a67aa0e4f5d4b88e0a1697de6a3b3231af39fa86f4c7e07452411bb40a98004124c74f517cc503aea01a8ece1ead7c96e8f10944dd1e5c9eb850e057e7e
7
+ data.tar.gz: 73932b25cfe907f7cca5a6ecaeed667cf97249a86ae861937d5d0ed22bef9a48a15623c2ea4da144e51420c8bbcbb8c7441fe2e5dbd8ca39935296ca1b032554
data/README.md CHANGED
@@ -87,7 +87,7 @@ CKEditor5::Rails.configure do
87
87
 
88
88
  # Optionally, you can specify version of CKEditor 5 to use.
89
89
  # If it's not specified the default version specified in the gem will be used.
90
- # version '44.2.0'
90
+ # version '44.2.1'
91
91
 
92
92
  # Upload images to the server using the simple upload adapter, instead of Base64 encoding.
93
93
  # simple_upload_adapter
@@ -210,7 +210,7 @@ You can create your own by defining it in the `config/initializers/ckeditor5.rb`
210
210
 
211
211
  CKEditor5::Rails.configure do
212
212
  # It's possible to override the default preset right in the initializer.
213
- version '44.2.0'
213
+ version '44.2.1'
214
214
 
215
215
  # New presets inherit properties from the default preset defined in the initializer.
216
216
  # In this example, the custom preset inherits everything from default but disables the menubar:
@@ -220,7 +220,7 @@ CKEditor5::Rails.configure do
220
220
 
221
221
  # In order to define preset from scratch, you can use the `inherit: false` option.
222
222
  presets.define :blank_preset, inherit: false do
223
- version '44.2.0'
223
+ version '44.2.1'
224
224
 
225
225
  # It tells the integration to fetch the newest security patches and bug fixes.
226
226
  # It may be disabled, but it's highly recommended to keep it enabled to avoid
@@ -342,7 +342,7 @@ Defines the version of CKEditor 5 to be used. The example below shows how to set
342
342
  CKEditor5::Rails.configure do
343
343
  # ... other configuration
344
344
 
345
- version '44.2.0'
345
+ version '44.2.1'
346
346
  end
347
347
  ```
348
348
 
@@ -354,7 +354,7 @@ In order to disable default patches, you can pass the `apply_patches: false` key
354
354
  CKEditor5::Rails.configure do
355
355
  # ... other configuration
356
356
 
357
- version '44.2.0', apply_patches: false
357
+ version '44.2.1', apply_patches: false
358
358
  end
359
359
  ```
360
360
 
@@ -1301,7 +1301,7 @@ It may be useful when you want to define a preset based on the current user or r
1301
1301
  class ApplicationController < ActionController::Base
1302
1302
  def show
1303
1303
  @preset = ckeditor5_preset do
1304
- version '44.2.0'
1304
+ version '44.2.1'
1305
1305
 
1306
1306
  toolbar :sourceEditing, :|, :bold, :italic, :underline, :strikethrough,
1307
1307
  :subscript, :superscript, :removeFormat, :|, :bulletedList, :numberedList,
@@ -1336,7 +1336,7 @@ If you want to override the preset defined in the initializer, you can search fo
1336
1336
  class ApplicationController < ActionController::Base
1337
1337
  def show
1338
1338
  @preset = ckeditor5_preset(:default).override do
1339
- version '44.2.0'
1339
+ version '44.2.1'
1340
1340
 
1341
1341
  toolbar :sourceEditing, :|, :bold, :italic, :underline, :strikethrough,
1342
1342
  :subscript, :superscript, :removeFormat, :|, :bulletedList, :numberedList,
@@ -1509,7 +1509,7 @@ In that scenario it's recommended to add `gpl` method to the initializer along w
1509
1509
 
1510
1510
  CKEditor5::Rails.configure do
1511
1511
  gpl
1512
- version '44.2.0'
1512
+ version '44.2.1'
1513
1513
  end
1514
1514
  ```
1515
1515
 
@@ -2,8 +2,8 @@
2
2
 
3
3
  module CKEditor5
4
4
  module Rails
5
- VERSION = '1.27.0'
5
+ VERSION = '1.27.1'
6
6
 
7
- DEFAULT_CKEDITOR_VERSION = '44.2.0'
7
+ DEFAULT_CKEDITOR_VERSION = '44.2.1'
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.27.0
4
+ version: 1.27.1
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-02-14 00:00:00.000000000 Z
12
+ date: 2025-02-21 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails