Compare commits
3 Commits
Author | SHA1 | Date |
---|---|---|
|
dd0626b8e9 | |
|
eda95f3dfe | |
|
8df4024320 |
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"java.configuration.updateBuildConfiguration": "automatic",
|
||||||
|
"java.home": "/usr/lib/jvm/java-8-openjdk/"
|
||||||
|
}
|
11
README.md
11
README.md
|
@ -163,6 +163,13 @@ matterbridge
|
||||||
|
|
||||||
now start the server with matterlink (and forgelin) in the mods folder
|
now start the server with matterlink (and forgelin) in the mods folder
|
||||||
|
|
||||||
and then [RTFM!!!](https://github.com/42wim/matterbridge#configuration) and configure all your needed gateways, endpoints etc
|
and then [configure](https://github.com/42wim/matterbridge#configuration) all your needed gateways, endpoints etc
|
||||||
|
|
||||||
powered by wishful thinking
|
### Building
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git clone --recursive https://git.lain.faith/sorceress/MatterLink.git
|
||||||
|
cd MatterLink/
|
||||||
|
./gradlew setupDecompWorkspace
|
||||||
|
./gradlew build
|
||||||
|
```
|
|
@ -193,7 +193,7 @@ data class BaseConfig(val rootDir: File) {
|
||||||
|
|
||||||
data class AvatarOptions(
|
data class AvatarOptions(
|
||||||
val enable: Boolean = true,
|
val enable: Boolean = true,
|
||||||
val urlTemplate: String = "https://visage.surgeplay.com/head/512/{uuid}",
|
val urlTemplate: String = "https://mc-heads.net/head/{uuid}",
|
||||||
val systemUserAvatar: String = ""
|
val systemUserAvatar: String = ""
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -584,6 +584,11 @@ data class BaseConfig(val rootDir: File) {
|
||||||
"urlTemplate",
|
"urlTemplate",
|
||||||
urlTemplate,
|
urlTemplate,
|
||||||
"template for constructing the user avatar url using the uuid"
|
"template for constructing the user avatar url using the uuid"
|
||||||
|
),
|
||||||
|
systemUserAvatar = it.getOrDefault(
|
||||||
|
"systemUserAvatar",
|
||||||
|
systemUserAvatar,
|
||||||
|
"avatar url for the system user"
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue