Refactor sounds into its own package, update README and version to 0.3.2 (Now with working sounds, thanks HugoDaBosss!)

This commit is contained in:
Myles 2016-03-01 10:58:39 +00:00
parent f95e7f98b7
commit 954dfb74e5
5 changed files with 336 additions and 334 deletions

View File

@ -1,4 +1,4 @@
# ViaVersion 0.3.1
# ViaVersion 0.3.2
**Allows the connection of 1.8 clients to 1.9**
This plugin modifies netty to allow connection of 1.9 clients to 1.8,
@ -11,7 +11,9 @@ Attempt to make boats nicer when they don't work
Remap spawn eggs
Some EntityMetadata is incorrect, fix this.
If you have a bug with entities, please report the full stack trace
Some items with JSON data cause crashing due to the change in how strict minecraft is.
@ -29,6 +31,7 @@ Credits:
**Matsv** (Movement Fix / Correcting my stupidity)
**HugoDaBosss** (Sounds fix)
License:
--------

View File

@ -1,4 +1,4 @@
package us.myles.ViaVersion.metadata;
package us.myles.ViaVersion.sounds;
public enum SoundCategory {

View File

@ -1,4 +1,4 @@
package us.myles.ViaVersion.metadata;
package us.myles.ViaVersion.sounds;
public enum SoundEffect {

View File

@ -15,7 +15,7 @@ import us.myles.ViaVersion.*;
import us.myles.ViaVersion.handlers.ViaVersionInitializer;
import us.myles.ViaVersion.metadata.MetaIndex;
import us.myles.ViaVersion.metadata.NewType;
import us.myles.ViaVersion.metadata.SoundEffect;
import us.myles.ViaVersion.sounds.SoundEffect;
import us.myles.ViaVersion.metadata.Type;
import us.myles.ViaVersion.packets.PacketType;
import us.myles.ViaVersion.packets.State;
@ -23,7 +23,6 @@ import us.myles.ViaVersion.packets.State;
import java.io.IOException;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.nio.charset.Charset;
import java.util.*;
public class OutgoingTransformer {

View File

@ -1,4 +1,4 @@
name: ViaVersion
main: us.myles.ViaVersion.Core
author: _MylesC
version: 0.3.1
version: 0.3.2