-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfern.example.json
More file actions
74 lines (67 loc) · 2.04 KB
/
fern.example.json
File metadata and controls
74 lines (67 loc) · 2.04 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"config_version": 3,
"root_directory": "./",
"update_pre_script": "echo Hello!",
"update_post_script": "echo Finished!",
"providers": {
"spigot": {
"update_check_url": "https://api.spiget.org/v2/resources/{resource_id}/versions?size=1&sort=-name",
"update_check_query": "0.name",
"download_url": "https://api.spiget.org/v2/resources/{resource_id}/download"
},
"paper": {
"update_check_url": "https://api.papermc.io/v2/projects/paper/versions/{minecraft_version}",
"update_check_query": "builds.-1",
"download_url": "https://api.papermc.io/v2/projects/paper/versions/{minecraft_version}/builds/{VERSION}/downloads/paper-{minecraft_version}-{VERSION}.jar"
},
"direct": {
"skip_update_check": true,
"download_url": "{download_url}"
},
"github": {
"skip_update_check": true,
"download_url": "https://github.com/{repository}/releases/latest/download/{asset_name}"
}
},
"use_latest": [
{
"name": "Paper",
"comment": "マインクラフトサーバー",
"provider": "paper",
"minecraft_version": "1.18.1",
"relative_directory": "."
},
{
"name": "CoreProtect",
"comment": "行動記録プラグイン",
"provider": "spigot",
"relative_directory": "plugins",
"resource_id": "8631",
"pre_script": "bash -c \"ls | grep 'paper'\"",
"post_script": ""
},
{
"name": "Direct1",
"comment": "ダイレクトテスト1",
"provider": "direct",
"relative_directory": ".",
"download_url": "https://example.com/"
},
{
"name": "Direct2",
"comment": "ダイレクトテスト2",
"provider": "direct",
"relative_directory": ".",
"download_url": "https://{url}/",
"url": "example.com"
},
{
"name": "LunaChat",
"comment": "チャット日本語変換プラグイン",
"provider": "github",
"relative_directory": ".",
"repository": "ucchyocean/LunaChat",
"asset_name": "LunaChat.jar"
}
]
}