loro-crdt 1.3.0 β 1.3.1
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/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -56,7 +56,7 @@ Loro is a [CRDTs(Conflict-free Replicated Data Types)](https://crdt.tech/) libra
|
|
|
56
56
|
**Supported CRDT Algorithms**
|
|
57
57
|
|
|
58
58
|
- π Text Editing with [Fugue]
|
|
59
|
-
- π [
|
|
59
|
+
- π [Rich Text CRDT](https://loro.dev/blog/loro-richtext)
|
|
60
60
|
- π² [Moveable Tree](https://loro.dev/docs/tutorial/tree)
|
|
61
61
|
- π [Moveable List](https://loro.dev/docs/tutorial/list)
|
|
62
62
|
- πΊοΈ [Last-Write-Wins Map](https://loro.dev/docs/tutorial/map)
|
|
@@ -137,7 +137,6 @@ test('sync example', () => {
|
|
|
137
137
|
|
|
138
138
|
Loro draws inspiration from the innovative work of the following projects and individuals:
|
|
139
139
|
|
|
140
|
-
- [Ink & Switch](https://inkandswitch.com/): The principles of Local-first Software have greatly influenced this project. The [Peritext](https://www.inkandswitch.com/peritext/) project has also shaped our approach to rich text CRDTs.
|
|
141
140
|
- [Diamond-types](https://github.com/josephg/diamond-types): The [Event Graph Walker (Eg-walker)](https://loro.dev/docs/advanced/event_graph_walker) algorithm from @josephg has been adapted to reduce the computation and space usage of CRDTs.
|
|
142
141
|
- [Automerge](https://github.com/automerge/automerge): Their use of columnar encoding for CRDTs has informed our strategies for efficient data encoding.
|
|
143
142
|
- [Yjs](https://github.com/yjs/yjs): We have incorporated a similar algorithm for effectively merging collaborative editing operations, thanks to their pioneering work.
|
|
@@ -147,4 +146,3 @@ Loro draws inspiration from the innovative work of the following projects and in
|
|
|
147
146
|
|
|
148
147
|
[local-first]: https://www.inkandswitch.com/local-first/
|
|
149
148
|
[Fugue]: https://arxiv.org/abs/2305.00583
|
|
150
|
-
[Peritext]: https://www.inkandswitch.com/peritext/
|
package/base64/index.js
CHANGED
|
@@ -6608,7 +6608,7 @@ var imports = /*#__PURE__*/Object.freeze({
|
|
|
6608
6608
|
// Without this patch, Cloudflare Worker would raise issue like: "Uncaught TypeError: wasm2.__wbindgen_start is not a function"
|
|
6609
6609
|
|
|
6610
6610
|
|
|
6611
|
-
import loro_wasm_bg_js from './loro_wasm_bg-
|
|
6611
|
+
import loro_wasm_bg_js from './loro_wasm_bg-b0221709.js';
|
|
6612
6612
|
const instance = new WebAssembly.Instance(loro_wasm_bg_js(), {
|
|
6613
6613
|
"./loro_wasm_bg.js": imports,
|
|
6614
6614
|
});
|