Updated build.gradle to automatically build fat jars with the dependencies in the /libs folder. This utilizes the shade.sh shell script. Use ./gradlew without explicitely invoking the build task, as this will automatically build a fat jar.
Sorry for this painful commit, but git somehow f'd up and sees changes in files where there aren't any.
This commit is contained in:
0
src/main/java/eu/crushedpixel/replaymod/holders/Keyframe.java
Normal file → Executable file
0
src/main/java/eu/crushedpixel/replaymod/holders/Keyframe.java
Normal file → Executable file
2
src/main/java/eu/crushedpixel/replaymod/holders/KeyframeComparator.java
Normal file → Executable file
2
src/main/java/eu/crushedpixel/replaymod/holders/KeyframeComparator.java
Normal file → Executable file
@@ -10,7 +10,7 @@ public class KeyframeComparator implements Comparator<Keyframe> {
|
||||
public int compare(Keyframe o1, Keyframe o2) {
|
||||
if(ReplayHandler.isSelected(o1)) return 1;
|
||||
if(ReplayHandler.isSelected(o2)) return -1;
|
||||
return o1.getRealTimestamp()-o2.getRealTimestamp();
|
||||
return ((Integer)o1.getRealTimestamp()).compareTo(o2.getRealTimestamp());
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
0
src/main/java/eu/crushedpixel/replaymod/holders/PacketData.java
Normal file → Executable file
0
src/main/java/eu/crushedpixel/replaymod/holders/PacketData.java
Normal file → Executable file
0
src/main/java/eu/crushedpixel/replaymod/holders/Position.java
Normal file → Executable file
0
src/main/java/eu/crushedpixel/replaymod/holders/Position.java
Normal file → Executable file
0
src/main/java/eu/crushedpixel/replaymod/holders/PositionKeyframe.java
Normal file → Executable file
0
src/main/java/eu/crushedpixel/replaymod/holders/PositionKeyframe.java
Normal file → Executable file
0
src/main/java/eu/crushedpixel/replaymod/holders/TimeInfo.java
Normal file → Executable file
0
src/main/java/eu/crushedpixel/replaymod/holders/TimeInfo.java
Normal file → Executable file
0
src/main/java/eu/crushedpixel/replaymod/holders/TimeKeyframe.java
Normal file → Executable file
0
src/main/java/eu/crushedpixel/replaymod/holders/TimeKeyframe.java
Normal file → Executable file
Reference in New Issue
Block a user