Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
ziqian zhang
Grasscutter
Commits
e2cfe94b
Commit
e2cfe94b
authored
Jun 21, 2022
by
KingRainbow44
Browse files
Add `loadAfter` plugin setting
parent
63b6b805
Changes
2
Show whitespace changes
Inline
Side-by-side
plugin-schema.json
View file @
e2cfe94b
...
@@ -9,7 +9,11 @@
...
@@ -9,7 +9,11 @@
"pattern"
:
"^[A-Za-z
\\
d_.-]+$"
"pattern"
:
"^[A-Za-z
\\
d_.-]+$"
}
}
},
},
"required"
:
[
"name"
,
"description"
,
"mainClass"
],
"required"
:
[
"name"
,
"description"
,
"mainClass"
],
"properties"
:
{
"properties"
:
{
"name"
:
{
"name"
:
{
"description"
:
"The unique name of plugin."
,
"description"
:
"The unique name of plugin."
,
...
@@ -22,7 +26,10 @@
...
@@ -22,7 +26,10 @@
},
},
"version"
:
{
"version"
:
{
"description"
:
"A plugin revision identifier."
,
"description"
:
"A plugin revision identifier."
,
"type"
:
[
"string"
,
"number"
]
"type"
:
[
"string"
,
"number"
]
},
},
"description"
:
{
"description"
:
{
"description"
:
"Human readable plugin summary."
,
"description"
:
"Human readable plugin summary."
,
...
@@ -44,6 +51,13 @@
...
@@ -44,6 +51,13 @@
"description"
:
"The URL to the plugin's site"
,
"description"
:
"The URL to the plugin's site"
,
"type"
:
"string"
,
"type"
:
"string"
,
"format"
:
"uri"
"format"
:
"uri"
},
"loadAfter"
:
{
"description"
:
"Plugins to load before this plugin."
,
"type"
:
"array"
,
"items"
:
{
"type"
:
"string"
}
}
}
}
}
}
}
\ No newline at end of file
src/main/java/emu/grasscutter/plugin/PluginConfig.java
View file @
e2cfe94b
...
@@ -7,11 +7,13 @@ public final class PluginConfig {
...
@@ -7,11 +7,13 @@ public final class PluginConfig {
public
String
name
,
description
,
version
;
public
String
name
,
description
,
version
;
public
String
mainClass
;
public
String
mainClass
;
public
String
[]
authors
;
public
String
[]
authors
;
public
String
[]
loadAfter
;
/**
/**
* Attempts to validate this config instance.
* Attempts to validate this config instance.
* @return True if the config is valid, false otherwise.
* @return True if the config is valid, false otherwise.
*/
*/
@SuppressWarnings
(
"BooleanMethodIsAlwaysInverted"
)
public
boolean
validate
()
{
public
boolean
validate
()
{
return
name
!=
null
&&
description
!=
null
&&
mainClass
!=
null
;
return
name
!=
null
&&
description
!=
null
&&
mainClass
!=
null
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment