@liascript/editor 1.1.7--0.16.2 → 1.1.7--0.16.4
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 +46 -0
- package/README.md +1 -1
- package/dist/ace.js +1 -1
- package/dist/index.069a9cb4.js +1 -0
- package/dist/index.2aa84f7f.js +1 -0
- package/dist/index.4b5cc2a4.js +1 -0
- package/dist/index.74498564.js +1 -0
- package/dist/index.a8c5f041.js +6 -0
- package/dist/index.b598fbf1.css +1 -0
- package/dist/index.e92897e0.js +6 -0
- package/dist/index.html +1 -1
- package/package.json +13 -13
- package/dist/index.4c3cd848.js +0 -6
- package/dist/index.871db229.js +0 -1
- package/dist/index.9ae49b02.js +0 -1
- package/dist/index.9d22161e.js +0 -1
- package/dist/index.9ee3d3aa.css +0 -1
- package/dist/index.e1851014.js +0 -1
- package/dist/index.fb30f4c5.js +0 -6
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,52 @@ 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.4] - 29/10/2024
|
|
8
|
+
|
|
9
|
+
- improve(Index): The course overview now has a masonry organization of courses with different size for cards. This will allow for a better overview of the courses and a more dynamic layout.
|
|
10
|
+
- improve(Cards): Better Design with more options
|
|
11
|
+
- improve(Google-Translation): Annoying pop-ups and hover effects are now suppressed.
|
|
12
|
+
- Upgrade:
|
|
13
|
+
|
|
14
|
+
- [x] npm Dexie 4.0.9
|
|
15
|
+
- [x] elm andre-dietrich/parser-combinators
|
|
16
|
+
- [x] elm f0i/statistics
|
|
17
|
+
- [x] elm tesk9/accessible-html
|
|
18
|
+
|
|
19
|
+
- feat: add . to \\. escape characters
|
|
20
|
+
|
|
21
|
+
``` markdown
|
|
22
|
+
Next to escaping ellipsis, \.\.\. this will now allow to add numbers to lists:
|
|
23
|
+
|
|
24
|
+
* 5\.1 ....
|
|
25
|
+
* 5\.2 ....
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
- fix(Parser): Arrows have been overwritten by typography
|
|
29
|
+
|
|
30
|
+
Rules for typographical dashes kicked in before the arrows, which blocked
|
|
31
|
+
left to right arrows to don't be detected correctly.
|
|
32
|
+
|
|
33
|
+
`--> ->`
|
|
34
|
+
|
|
35
|
+
## [0.16.3] - 21/10/2024
|
|
36
|
+
|
|
37
|
+
- feat(Typography): It is now possible within a LiaScript Markdown to apply the following typographical elements:
|
|
38
|
+
|
|
39
|
+
- A sequence of dashes is now translated into:
|
|
40
|
+
|
|
41
|
+
1. - (single dash): Hyphen or minus sign
|
|
42
|
+
2. -- (double dash): En dash
|
|
43
|
+
3. --- (triple dash): Em dash
|
|
44
|
+
|
|
45
|
+
- Translate ... to unicode ellipsis
|
|
46
|
+
|
|
47
|
+
- Language base quotes single and double are translated into their typographical counterparts, based on the language of the course. Additionally these two types have been added to the escaped elements `\"` and `\'`.
|
|
48
|
+
|
|
49
|
+
- improve(HTML-Parser): The parsing speed for HTML has been increased, due to a new abort mechanism, which will stop the parsing of a HTML end-tag has been detected. This will prevent the parser from running into an long loop.
|
|
50
|
+
|
|
51
|
+
- improve(Parser): Some minor improvements for regular expressions have been applied after benchmarking the parser.
|
|
52
|
+
|
|
7
53
|
## [0.16.2] - 04/10/2024
|
|
8
54
|
|
|
9
55
|
- feat(Zip): Courses can now be uploaded as ZIP files, which will be automatically extracted and loaded. Also courses can be hosted as Zip-files, which will be extracted on the fly.
|
package/README.md
CHANGED
|
@@ -23,7 +23,7 @@ install via npm:
|
|
|
23
23
|
`npm i @liascript/editor`
|
|
24
24
|
|
|
25
25
|
> **Note:** The version information might look a bit different e.g.
|
|
26
|
-
> `1.1.7--0.16.
|
|
26
|
+
> `1.1.7--0.16.3`. The second version mirrors current version of LiaScript,
|
|
27
27
|
> while the first number is referring to the changes of the editor-branch.
|
|
28
28
|
|
|
29
29
|
## HowTo
|