@liascript/editor 1.1.22--0.16.14 → 1.1.22--0.16.15
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 +41 -0
- package/dist/ace.js +1 -1
- package/dist/{icon.222fabc2.eot → icon.1775260a.ttf} +0 -0
- package/dist/icon.4c409dfc.woff +0 -0
- package/dist/icon.5d3b24ed.woff2 +0 -0
- package/dist/icon.854409f5.svg +1 -0
- package/dist/{icon.bfc4bd4d.ttf → icon.eecda2c2.eot} +0 -0
- package/dist/{index.e872b418.js → index.66128dd8.js} +1 -1
- package/dist/index.9ae35714.css +1 -0
- package/dist/index.d8d0157f.js +6 -0
- package/dist/index.f5d2650f.js +1 -0
- package/dist/index.html +1 -1
- package/dist/mode-drools.js +1 -1
- package/dist/mode-rust.js +1 -1
- package/package.json +7 -7
- package/dist/icon.110885f6.woff2 +0 -0
- package/dist/icon.3b70f1e6.svg +0 -1
- package/dist/icon.e6a4a931.woff +0 -0
- package/dist/index.6dd7b30b.css +0 -1
- package/dist/index.7c1b8578.js +0 -1
- package/dist/index.d3445c54.js +0 -6
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,47 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [0.16.15] - 08/05/2025
|
|
8
|
+
|
|
9
|
+
- feat: Add `edit` macro that allows to share a link to the course resource for editing.
|
|
10
|
+
|
|
11
|
+
```markdown
|
|
12
|
+
<!--
|
|
13
|
+
edit: true
|
|
14
|
+
-->
|
|
15
|
+
|
|
16
|
+
# Open automatically provide a link to the LiveEditor
|
|
17
|
+
|
|
18
|
+
https://LiaScript.github.io/LiveEditor/
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
... or provide a link to a custom editor
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
```markdown
|
|
27
|
+
<!--
|
|
28
|
+
edit: https://github.dev/username/repo/...
|
|
29
|
+
-->
|
|
30
|
+
|
|
31
|
+
# Provide a link to a custom editor
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
- feat: [Nostr](https://nostr.com) as data source is now, which means you can host course content on a decentralized storage. A Nostr-URI typically starts with `npub` or `nsec` and is followed by a base64 encoded string. The Nostr-URI can be used in the same way as a normal URL, but it will be resolved via the Nostr protocol.
|
|
35
|
+
|
|
36
|
+
> The LiveEditor provides an export to Nostr.
|
|
37
|
+
|
|
38
|
+
- feat: Chats in classroom mode now can also execute scripts, but the user has to
|
|
39
|
+
explicitly allow this.
|
|
40
|
+
|
|
41
|
+
- chors: Upgrade npm packages and trystero
|
|
42
|
+
|
|
43
|
+
# Classroom
|
|
44
|
+
|
|
45
|
+
This will allow to execute scripts in the classroom mode.
|
|
46
|
+
```
|
|
47
|
+
|
|
7
48
|
## [0.16.14] - 14/04/2025
|
|
8
49
|
|
|
9
50
|
- fix(Formulas): Translating the content with Google-Translate does now not affect formulas anymore.
|