This repository has been archived by the owner on May 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
52 lines (52 loc) · 1.78 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"addons": [
{
"id": "encoding",
"version": "1.1",
"type": "library",
"description": "Add support for detecting file and string encodings as converting between them.",
"mod_version": "3",
"files": [
{
"url": "https://github.com/jgmdev/lite-xl-encoding/releases/download/v1.1/encoding.x86_64-linux.so",
"arch": "x86_64-linux",
"path": "init.x86_64-linux.so",
"checksum": "SKIP"
},
{
"url": "https://github.com/jgmdev/lite-xl-encoding/releases/download/v1.1/encoding.x86_64-darwin.so",
"arch": "x86_64-darwin",
"path": "init.x86_64-darwin.so",
"checksum": "SKIP"
},
{
"url": "https://github.com/jgmdev/lite-xl-encoding/releases/download/v1.1/encoding.aarch64-darwin.so",
"arch": "aarch64-darwin",
"path": "init.aarch64-darwin.so",
"checksum": "SKIP"
},
{
"url": "https://github.com/jgmdev/lite-xl-encoding/releases/download/v1.1/encoding.x86_64-windows.dll",
"arch": "x86_64-windows",
"path": "init.x86_64-windows.dll",
"checksum": "SKIP"
},
{
"url": "https://github.com/jgmdev/lite-xl-encoding/releases/download/v1.1/encoding.x86-windows.dll",
"arch": "x86-windows",
"path": "init.x86-windows.dll",
"checksum": "SKIP"
}
]
},
{
"id": "encodings",
"name": "Encodings",
"version": "1.0",
"description": "Properly read files that are not encoded in UTF-8 or ASCII by auto-detecting their encoding and allows saving on different text encodings.",
"mod_version": "3",
"path": "plugins/encodings.lua",
"dependencies": { "encoding": { } }
}
]
}