Skip to content

Commit 258d2ed

Browse files
committed
Add 1.20.1 support
1 parent f5e8e54 commit 258d2ed

33 files changed

Lines changed: 2700 additions & 13 deletions

.github/dependabot.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,31 @@ updates:
150150
include: "scope"
151151
labels:
152152
- "dependabot"
153+
154+
- package-ecosystem: "maven" # See documentation for possible values
155+
directory: "/1.20.1" # Location of package manifests
156+
schedule:
157+
interval: "weekly"
158+
registries:
159+
- papermc
160+
- spigot-repo
161+
allow:
162+
- dependency-name: "org.apache.maven.plugins:maven-compiler-plugin"
163+
dependency-type: "production"
164+
165+
- dependency-name: "org.apache.maven.plugins:maven-shade-plugin"
166+
dependency-type: "production"
167+
168+
- dependency-name: "net.md-5:specialsource-maven-plugin"
169+
dependency-type: "production"
170+
ignore:
171+
- dependency-name: "io.papermc.paper:paper-api"
172+
- dependency-name: "org.spigotmc:spigot"
173+
commit-message:
174+
prefix: "[DependaBot] "
175+
include: "scope"
176+
labels:
177+
- "dependabot"
153178

154179
- package-ecosystem: "maven" # See documentation for possible values
155180
directory: "/Reflection" # Location of package manifests

.github/meta/artifacts.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,12 @@
1919
"version-min": "1.19.4",
2020
"version-max": "1.19.4"
2121
},
22+
"NoEncryption-1.20.1-{0}.jar": {
23+
"version-min": "1.20.1",
24+
"version-max": "1.20.1"
25+
},
2226
"NoEncryption-Reflection-{0}.jar": {
2327
"version-min": "1.19",
24-
"version-max": "1.19.4"
28+
"version-max": "1.20.1"
2529
}
26-
}
30+
}

.github/meta/commands.json

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,18 @@
5959
"permission": "noencryption.command.checkforupdates"
6060
}
6161
},
62+
"1.20.1": {
63+
"/ne suppressnotices": {
64+
"name": "/ne suppressnotices",
65+
"description": "Suppress startup notices. (Console only)",
66+
"permission": "noencryption.command.suppressnotices"
67+
},
68+
"/ne checkforupdates": {
69+
"name": "/ne checkforupdates",
70+
"description": "Manually checks for updates through GitHub",
71+
"permission": "noencryption.command.checkforupdates"
72+
}
73+
},
6274
"Reflection": {
6375
"/ne suppressnotices": {
6476
"name": "/ne suppressnotices",
@@ -71,4 +83,4 @@
7183
"permission": "noencryption.command.checkforupdates"
7284
}
7385
}
74-
}
86+
}

.github/meta/permissions.json

Lines changed: 39 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,44 @@
189189
"children": []
190190
}
191191
},
192+
"1.20.1": {
193+
"noencryption.*": {
194+
"name": "noencryption.*",
195+
"description": "Permission to use all modules and commands in NoEncryption",
196+
"default": "op",
197+
"children": [
198+
"noencryption.usecommand",
199+
"noencryption.command.*"
200+
]
201+
},
202+
"noencryption.usecommand": {
203+
"name": "noencryption.usecommand",
204+
"description": "Permission to use /ne",
205+
"default": "true",
206+
"children": []
207+
},
208+
"noencryption.command.*": {
209+
"name": "noencryption.command.*",
210+
"description": "Permission to use all /ne subcommands",
211+
"default": "op",
212+
"children": [
213+
"noencryption.command.suppressnotices",
214+
"noencryption.command.checkforupdates"
215+
]
216+
},
217+
"noencryption.command.suppressnotices": {
218+
"name": "noencryption.command.suppressnotices",
219+
"description": "Permission to use /ne suppressnotices",
220+
"default": "op",
221+
"children": []
222+
},
223+
"noencryption.command.checkforupdates": {
224+
"name": "noencryption.command.checkforupdates",
225+
"description": "Permission to use /ne checkforupdates",
226+
"default": "op",
227+
"children": []
228+
}
229+
},
192230
"Reflection": {
193231
"noencryption.*": {
194232
"name": "noencryption.*",
@@ -227,4 +265,4 @@
227265
"children": []
228266
}
229267
}
230-
}
268+
}

.github/pull_request_template.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,15 @@ Do the applied changes require testing? (Depends on if core components were chan
105105
- [ ] Tested chat formatting (Using third party plugins such as TownyChat, EssentialsXChat, etc.)
106106
- [ ] Tested Reflection with above
107107

108+
<b>1.20.1 Tests</b>
109+
- <b>Server Distribution</b> (CraftBukkit, Spigot, Purpur, and it's build number):
110+
- [ ] Tested player joining
111+
- [ ] Tested chats **Player -> Server**
112+
- [ ] Tested command chats **Player -> Server** (Using /tell, /me, /say, etc.)
113+
- [ ] Tested chats **Server -> Player** (Using /say, /me, etc.)
114+
- [ ] Tested chat formatting (Using third party plugins such as TownyChat, EssentialsXChat, etc.)
115+
- [ ] Tested Reflection with above
116+
108117
</details>
109118

110119
## Self Review

.github/workflows/compile-buildtools.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ jobs:
2929
id: compile-bt-1_19
3030
uses: SpraxDev/Action-SpigotMC@v4
3131
with:
32-
versions: 1.19, 1.19.1, 1.19.2, 1.19.3, 1.19.4
33-
remapped: true
32+
versions: 1.19, 1.19.1, 1.19.2, 1.19.3, 1.19.4, 1.20.1
33+
remapped: true

.github/workflows/scripts/draft-release-markdown-generator/draft-release-markdown-generator.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -398,6 +398,7 @@ def main():
398398
"1.19.2",
399399
"1.19.3",
400400
"1.19.4",
401+
"1.20.1",
401402
"Reflection"
402403
]
403404
file_order = [
@@ -667,4 +668,4 @@ def main():
667668

668669
print("Done!")
669670

670-
pre_main()
671+
pre_main()

.github/workflows/scripts/draft-release-markdown-generator/fallback/zipball/NoEncryption/.github/meta/artifacts.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,12 @@
1919
"version-min": "1.19.4",
2020
"version-max": "1.19.4"
2121
},
22+
"NoEncryption-1.20.1-{0}.jar": {
23+
"version-min": "1.20.1",
24+
"version-max": "1.20.1"
25+
},
2226
"NoEncryption-Reflection-{0}.jar": {
2327
"version-min": "1.19",
24-
"version-max": "1.19.4"
28+
"version-max": "1.20.1"
2529
}
26-
}
30+
}

.github/workflows/scripts/draft-release-markdown-generator/fallback/zipball/NoEncryption/.github/meta/commands.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,11 @@
1313
},
1414
"1.19.4": {
1515

16+
},
17+
"1.20.1": {
18+
1619
},
1720
"Reflection": {
1821

1922
}
20-
}
23+
}

.github/workflows/scripts/draft-release-markdown-generator/fallback/zipball/NoEncryption/.github/meta/permissions.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,11 @@
1313
},
1414
"1.19.4": {
1515

16+
},
17+
"1.20.1": {
18+
1619
},
1720
"Reflection": {
1821

1922
}
20-
}
23+
}

0 commit comments

Comments
 (0)