-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 37d3eb6
Showing
189 changed files
with
18,162 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.idea | ||
target | ||
ServerSigns.iml |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
v4.5: | ||
* Added configuration options to allow canceling certain tasks when a player dies | ||
* Fixed & improved many messages in commands | ||
* Added 2 conditional operators: isBefore:DDMMYY,HHMMSS & isAfter:DDMMYY,HHMMSS | ||
* Added /svs timelimit <minimum|@|-> [maximum] | ||
* Fixed errors being thrown when a ServerSign expires at the location where a previous sign expire | ||
* Added new command "/svs option" & /svs add conditional operator "checkOption:<id>=<value>" for player-input during execution | ||
* Added ability to check for multiple answers with conditional operator "checkOption:<id>=<value>|<value>|..." | ||
* Decreased verbosity of /svsr command | ||
* Added new command "/svs import <file path>" to import text files with 1 command per line (without /svs at the start) | ||
* Fixed an issue that caused commands to be sent as a chat message instead of a command when alternate_command_dispatching is set to true | ||
* Fixed being unable to remove an EXP cost from a ServerSign using /svs xp 0 | ||
* Added the ability to remove assigned permissions from a sign with /svs setperms - | ||
* Reduced unnecessary per-command messages being logged in console when Vault is disabled | ||
|
||
v4.5.1: | ||
* Fixed priceitem inventory checks not working correctly with Spigot 1.9 (invalid inventory size) | ||
* Changed handling of invalid files to sub folders so their file names are not changed (easier to place back) | ||
* Introduced new error handling for invalid commands to help avoid unexpected exception issues due to misconfiguration | ||
* Added new conditional operator: onlinePlayers:<operator><amount> - i.e. onlinePlayers:>100 or onlinePlayers:=21 | ||
* Added new conditional operator: nearbyPlayers:<radius><operator><amount> - i.e. nearbyPlayers:10<50 or nearbyPlayers:100>25 | ||
|
||
v4.5.2: | ||
* |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>de.czymm.serversigns</groupId> | ||
<artifactId>ServerSigns</artifactId> | ||
<version>4.5.1</version> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<configuration> | ||
<source>1.7</source> | ||
<target>1.7</target> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<version>2.3.2</version> | ||
<configuration> | ||
<finalName>ServerSigns</finalName> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
<resources> | ||
<resource> | ||
<directory>src/main/resources</directory> | ||
<filtering>true</filtering> | ||
</resource> | ||
</resources> | ||
</build> | ||
|
||
<repositories> | ||
<repository> | ||
<id>spigot-repo</id> | ||
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url> | ||
</repository> | ||
<repository> | ||
<id>vault-repo</id> | ||
<url>http://nexus.theyeticave.net/content/repositories/pub_releases</url> | ||
</repository> | ||
<repository> | ||
<id>ess-repo</id> | ||
<url>http://repo.ess3.net/content/groups/essentials</url> | ||
</repository> | ||
</repositories> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.bukkit</groupId> | ||
<artifactId>bukkit</artifactId> | ||
<version>1.9-R0.1-SNAPSHOT</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>net.milkbowl.vault</groupId> | ||
<artifactId>VaultAPI</artifactId> | ||
<version>1.5</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.xerial</groupId> | ||
<artifactId>sqlite-jdbc</artifactId> | ||
<version>3.7.2</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>nocheatplus</groupId> | ||
<artifactId>nocheatplus</artifactId> | ||
<version>1.0</version> | ||
<scope>system</scope> | ||
<systemPath>${project.basedir}/lib/NoCheatPlus.jar</systemPath> | ||
</dependency> | ||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.12</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.mockito</groupId> | ||
<artifactId>mockito-core</artifactId> | ||
<version>1.10.19</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.powermock</groupId> | ||
<artifactId>powermock-module-junit4</artifactId> | ||
<version>1.6.2</version> | ||
<type>jar</type> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.powermock</groupId> | ||
<artifactId>powermock-api-mockito</artifactId> | ||
<version>1.6.2</version> | ||
<type>jar</type> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>net.ess3</groupId> | ||
<artifactId>Essentials</artifactId> | ||
<version>2.13-SNAPSHOT</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
</dependencies> | ||
</project> |
Oops, something went wrong.