Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| af7c86ef49 | |||
| 81c6991d49 | |||
| 2a4b8d6bce |
102
pom.xml
102
pom.xml
@@ -1,52 +1,52 @@
|
|||||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
|
||||||
https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||||
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<groupId>net.viper.bungee</groupId>
|
<groupId>net.viper.bungee</groupId>
|
||||||
<artifactId>StatusAPI</artifactId>
|
<artifactId>StatusAPI</artifactId>
|
||||||
<version>4.0.0</version>
|
<version>4.0.1</version>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
<name>StatusAPI</name>
|
<name>StatusAPI</name>
|
||||||
<description>BungeeCord Status API Plugin</description>
|
<description>BungeeCord Status API Plugin</description>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<maven.compiler.source>8</maven.compiler.source>
|
<maven.compiler.source>8</maven.compiler.source>
|
||||||
<maven.compiler.target>8</maven.compiler.target>
|
<maven.compiler.target>8</maven.compiler.target>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<!-- BungeeCord API -->
|
<!-- BungeeCord API -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.md-5</groupId>
|
<groupId>net.md-5</groupId>
|
||||||
<artifactId>bungeecord-api</artifactId>
|
<artifactId>bungeecord-api</artifactId>
|
||||||
<version>1.20</version>
|
<version>1.20</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- LuckPerms API (Optional) -->
|
<!-- LuckPerms API (Optional) -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.luckperms</groupId>
|
<groupId>net.luckperms</groupId>
|
||||||
<artifactId>api</artifactId>
|
<artifactId>api</artifactId>
|
||||||
<version>5.4</version>
|
<version>5.4</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
<optional>true</optional>
|
<optional>true</optional>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<finalName>StatusAPI</finalName>
|
<finalName>StatusAPI</finalName>
|
||||||
|
|
||||||
<resources>
|
<resources>
|
||||||
<resource>
|
<resource>
|
||||||
<directory>src/main/resources</directory>
|
<directory>src/main/resources</directory>
|
||||||
<filtering>false</filtering>
|
<filtering>false</filtering>
|
||||||
</resource>
|
</resource>
|
||||||
</resources>
|
</resources>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1,56 +1,56 @@
|
|||||||
name: StatusAPI
|
name: StatusAPI
|
||||||
main: net.viper.status.StatusAPI
|
main: net.viper.status.StatusAPI
|
||||||
version: 4.0.0
|
version: 4.0.1
|
||||||
author: M_Viper
|
author: M_Viper
|
||||||
description: StatusAPI für BungeeCord inkl. Update-Checker und Modul-System
|
description: StatusAPI für BungeeCord inkl. Update-Checker und Modul-System
|
||||||
|
|
||||||
softdepend:
|
softdepend:
|
||||||
- LuckPerms
|
- LuckPerms
|
||||||
|
|
||||||
commands:
|
commands:
|
||||||
# Verify Modul Befehle
|
# Verify Modul Befehle
|
||||||
verify:
|
verify:
|
||||||
description: Verifiziere dich mit einem Token
|
description: Verifiziere dich mit einem Token
|
||||||
usage: /verify <token>
|
usage: /verify <token>
|
||||||
|
|
||||||
# GlobalChat Modul Befehle
|
# GlobalChat Modul Befehle
|
||||||
globalreload:
|
globalreload:
|
||||||
description: Lädt den Chat-Filter neu
|
description: Lädt den Chat-Filter neu
|
||||||
usage: /globalreload
|
usage: /globalreload
|
||||||
permission: globalchat.reload
|
permission: globalchat.reload
|
||||||
|
|
||||||
globalmute:
|
globalmute:
|
||||||
description: Schaltet den globalen Chat an/aus
|
description: Schaltet den globalen Chat an/aus
|
||||||
usage: /globalmute
|
usage: /globalmute
|
||||||
permission: globalchat.mute
|
permission: globalchat.mute
|
||||||
|
|
||||||
support:
|
support:
|
||||||
description: Sendet eine Support-Nachricht an das Team
|
description: Sendet eine Support-Nachricht an das Team
|
||||||
usage: /support <Nachricht>
|
usage: /support <Nachricht>
|
||||||
|
|
||||||
reply:
|
reply:
|
||||||
description: Antwortet auf eine Support-Nachricht
|
description: Antwortet auf eine Support-Nachricht
|
||||||
usage: /reply <Nachricht>
|
usage: /reply <Nachricht>
|
||||||
|
|
||||||
info:
|
info:
|
||||||
description: Zeigt Plugin-Informationen an
|
description: Zeigt Plugin-Informationen an
|
||||||
usage: /info
|
usage: /info
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
# StatusAPI Core Permissions
|
# StatusAPI Core Permissions
|
||||||
statusapi.update.notify:
|
statusapi.update.notify:
|
||||||
description: 'Erlaubt Update-Benachrichtigungen'
|
description: 'Erlaubt Update-Benachrichtigungen'
|
||||||
default: op
|
default: op
|
||||||
|
|
||||||
# GlobalChat Permissions
|
# GlobalChat Permissions
|
||||||
globalchat.reload:
|
globalchat.reload:
|
||||||
description: Erlaubt das Neuladen des Chat-Filters
|
description: Erlaubt das Neuladen des Chat-Filters
|
||||||
default: op
|
default: op
|
||||||
|
|
||||||
globalchat.mute:
|
globalchat.mute:
|
||||||
description: Erlaubt das Aktivieren/Deaktivieren des globalen Mutes
|
description: Erlaubt das Aktivieren/Deaktivieren des globalen Mutes
|
||||||
default: op
|
default: op
|
||||||
|
|
||||||
globalchat.bypass:
|
globalchat.bypass:
|
||||||
description: Umgeht den globalen Mute
|
description: Umgeht den globalen Mute
|
||||||
default: op
|
default: op
|
||||||
Reference in New Issue
Block a user