@ckeditor/ckeditor5-real-time-collaboration 39.0.2 → 40.1.0
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.
- package/LICENSE.md +6 -10
- package/README.md +1 -1
- package/build/real-time-collaboration.js +1 -1
- package/ckeditor5-metadata.json +1 -1
- package/package.json +6 -6
- package/src/common-translations.js +1 -1
- package/src/presencelist/presencelistui.js +1 -1
- package/src/presencelist/view/presencecounterview.js +1 -1
- package/src/presencelist/view/presencedropdownlistitemview.js +1 -1
- package/src/presencelist/view/presencedropdownlistview.js +1 -1
- package/src/presencelist/view/presenceinlinelistitemview.js +1 -1
- package/src/presencelist/view/presenceinlinelistview.js +1 -1
- package/src/presencelist/view/presencelistview.js +1 -1
- package/src/presencelist.js +1 -1
- package/src/realtimecollaborativecomments/cloudservicescommentsadapter.d.ts +4 -0
- package/src/realtimecollaborativecomments/cloudservicescommentsadapter.js +1 -1
- package/src/realtimecollaborativecomments.js +1 -1
- package/src/realtimecollaborativeediting/realtimecollaborationclient.js +1 -1
- package/src/realtimecollaborativeediting/sessions.js +1 -1
- package/src/realtimecollaborativeediting/usermarkers.js +1 -1
- package/src/realtimecollaborativeediting/websocketgateway.js +1 -1
- package/src/realtimecollaborativeediting.js +1 -1
- package/src/realtimecollaborativerevisionhistory/cloudservicesrevisionhistoryadapter.js +1 -1
- package/src/realtimecollaborativerevisionhistory.js +1 -1
- package/src/realtimecollaborativetrackchanges/cloudservicestrackchangesadapter.js +1 -1
- package/src/realtimecollaborativetrackchanges.js +1 -1
- package/theme/presencelist.css +2 -1
- package/theme/usermarkers.css +2 -1
package/LICENSE.md
CHANGED
|
@@ -2,7 +2,7 @@ Software License Agreement
|
|
|
2
2
|
==========================
|
|
3
3
|
|
|
4
4
|
**CKEditor 5 real-time collaboration** (https://ckeditor.com/collaboration/real-time/)<br>
|
|
5
|
-
Copyright (c) 2003
|
|
5
|
+
Copyright (c) 2003–2023, [CKSource Holding sp. z o.o.](https://cksource.com) All rights reserved.
|
|
6
6
|
|
|
7
7
|
CKEditor 5 real-time collaboration features are licensed under a commercial license and are protected by copyright law.
|
|
8
8
|
For more details about available licensing options please contact us at sales@cksource.com.
|
|
@@ -12,18 +12,14 @@ Sources of Intellectual Property Included in CKEditor 5 real-time collabora
|
|
|
12
12
|
|
|
13
13
|
Where not otherwise indicated, all CKEditor 5 real-time collaboration features content is authored by CKSource engineers and consists of CKSource-owned intellectual property.
|
|
14
14
|
|
|
15
|
-
The following libraries are included in CKEditor
|
|
15
|
+
The following libraries are included in CKEditor 5 real-time collaboration under the [MIT license](https://opensource.org/licenses/MIT):
|
|
16
16
|
|
|
17
|
-
*
|
|
18
|
-
* Socket.IO - Copyright (c) 2014
|
|
19
|
-
* uuid - Copyright (c) 2010
|
|
17
|
+
* Lodash - Copyright (c) JS Foundation and other contributors https://js.foundation/. Based on Underscore.js, copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors http://underscorejs.org/.
|
|
18
|
+
* Socket.IO - Copyright (c) 2014–2018 Automattic <dev@cloudup.com>.
|
|
19
|
+
* uuid - Copyright (c) 2010–2016 Robert Kieffer and other contributors.
|
|
20
20
|
* url-parse - Copyright (c) 2015 Unshift.io, Arnout Kazemier, the Contributors.
|
|
21
21
|
|
|
22
|
-
The following libraries are included in CKEditor 5 operations compressor under the [BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause):
|
|
23
|
-
|
|
24
|
-
* Protocol Buffers for JavaScript - Copyright (c) 2016, Daniel Wirtz.
|
|
25
|
-
|
|
26
22
|
Trademarks
|
|
27
23
|
----------
|
|
28
24
|
|
|
29
|
-
**CKEditor** is a trademark of [CKSource Holding sp. z o.o.](https://cksource.com) All other brand and product names are trademarks, registered trademarks or service marks of their respective holders.
|
|
25
|
+
**CKEditor** is a trademark of [CKSource Holding sp. z o.o.](https://cksource.com) All other brand and product names are trademarks, registered trademarks, or service marks of their respective holders.
|
package/README.md
CHANGED
|
@@ -25,7 +25,7 @@ As a licensed CKEditor 5 real-time collaboration user you can report bugs a
|
|
|
25
25
|
## License
|
|
26
26
|
|
|
27
27
|
**CKEditor 5 real-time collaboration features** (https://ckeditor.com/collaboration/real-time/)<br>
|
|
28
|
-
Copyright (c) 2003-
|
|
28
|
+
Copyright (c) 2003-2023, [CKSource Holding sp. z o.o.](https://cksource.com) All rights reserved.
|
|
29
29
|
|
|
30
30
|
CKEditor 5 real-time collaboration is licensed under a commercial license and is protected by copyright law.
|
|
31
31
|
For more details about available licensing options please contact us at sales@cksource.com.
|