Skip to content

Commit

Permalink
1.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
unascribed committed Nov 29, 2021
1 parent 21a775b commit 5cd7b08
Show file tree
Hide file tree
Showing 25 changed files with 31 additions and 33 deletions.
15 changes: 6 additions & 9 deletions changelog.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
<ul>
<li>Refactored vlegacy ports (again)</li>
<li>vlegacy ports are now smaller due to using Nanojson instead of Gson</li>
<li>vlegacy ports now cache username lookups</li>
<li>Added an API for other mods to affect when Ears features render</li>
<li>Experimental functionality to erase skin regions, so you can have a vanilla ear/tail and have it vanish when Ears is present (not yet supported in the Manipulator)</li>
<li>New "binary" magic pixel format which will eventually replace the current "pixelwise" format</li>
<li>All ports (where possible) now support a "Config" button, which opens the Manipulator in your browser</li>
<li>Wing animations can now be disabled, if you use them for something other than wings (e.g. hair, fins)</li>
<li>New "Tall" and "Tall Cross" ears modes</li>
<li>Made tall ear physics more realistic</li>
<li>Fixed divide-by-zero error when rendering pre-1.2 Ears skins</li>
<li>Tall ears now anchor normally instead of pre-bending</li>
<li>Fixed compatibility with Galacticraft in Forge 1.7 (thanks Cynosphere)</li>
<li>Fixed null pointer when rendering vanilla skins with OptiFine in some conditions</li>
<li>Fixed Ears features not rendering properly with Iris and Canvas</li>
</ul>
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ public EarsFeatures(
this.chestSize = chestSize;
this.wingMode = wingMode;
this.animateWings = animateWings;
this.capeEnabled = capeEnabled;
this.capeEnabled = false; // TODO do we want this?
// this.capeEnabled = capeEnabled;
this.alfalfa = alfalfa;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

public class EarsVersion {

public static final String COMMON = /*VERSION*/"1.4.2-pre2"/*/VERSION*/;
public static final String COMMON = /*VERSION*/"1.4.2"/*/VERSION*/;
public static final String PLATFORM;
public static final String PLATFORM_KIND;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

public class EarsPlatformVersion {

public static final String VERSION = /*VERSION*/"1.4.2-pre2"/*/VERSION*/;
public static final String VERSION = /*VERSION*/"1.4.2"/*/VERSION*/;
public static final String KIND = "Fabric 1.14";

}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

public class EarsPlatformVersion {

public static final String VERSION = /*VERSION*/"1.4.2-pre2"/*/VERSION*/;
public static final String VERSION = /*VERSION*/"1.4.2"/*/VERSION*/;
public static final String KIND = "Fabric 1.16";

}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

public class EarsPlatformVersion {

public static final String VERSION = /*VERSION*/"1.4.2-pre2"/*/VERSION*/;
public static final String VERSION = /*VERSION*/"1.4.2"/*/VERSION*/;
public static final String KIND = "Fabric 1.17";

}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

public class EarsPlatformVersion {

public static final String VERSION = /*VERSION*/"1.4.2-pre2"/*/VERSION*/;
public static final String VERSION = /*VERSION*/"1.4.2"/*/VERSION*/;
public static final String KIND = "Fabric 1.8";

}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

public class EarsPlatformVersion {

public static final String VERSION = /*VERSION*/"1.4.2-pre2"/*/VERSION*/;
public static final String VERSION = /*VERSION*/"1.4.2"/*/VERSION*/;
public static final String KIND = "Forge 1.14";

}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

public class EarsPlatformVersion {

public static final String VERSION = /*VERSION*/"1.4.2-pre2"/*/VERSION*/;
public static final String VERSION = /*VERSION*/"1.4.2"/*/VERSION*/;
public static final String KIND = "Forge 1.15";

}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

public class EarsPlatformVersion {

public static final String VERSION = /*VERSION*/"1.4.2-pre2"/*/VERSION*/;
public static final String VERSION = /*VERSION*/"1.4.2"/*/VERSION*/;
public static final String KIND = "Forge 1.16";

}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

public class EarsPlatformVersion {

public static final String VERSION = /*VERSION*/"1.4.2-pre2"/*/VERSION*/;
public static final String VERSION = /*VERSION*/"1.4.2"/*/VERSION*/;
public static final String KIND = "Forge 1.17";

}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

public class EarsPlatformVersion {

public static final String VERSION = /*VERSION*/"1.4.2-pre2"/*/VERSION*/;
public static final String VERSION = /*VERSION*/"1.4.2"/*/VERSION*/;
public static final String KIND = "Forge 1.2.5";

}
2 changes: 1 addition & 1 deletion platform-forge-1.2/src/main/java/mod_Ears.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ public class mod_Ears extends BaseMod {

@Override
public String getVersion() {
return /*VERSION*/"1.4.2-pre2"/*/VERSION*/;
return /*VERSION*/"1.4.2"/*/VERSION*/;
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
import net.minecraft.src.RenderPlayer;
import net.minecraftforge.common.ForgeVersion;

@Mod(modid="ears", name="Ears", version=/*VERSION*/"1.4.2-pre2"/*/VERSION*/, useMetadata=true)
@Mod(modid="ears", name="Ears", version=/*VERSION*/"1.4.2"/*/VERSION*/, useMetadata=true)
public class Ears {

public static final Map<String, EarsFeatures> earsSkinFeatures = new WeakHashMap<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

public class EarsPlatformVersion {

public static final String VERSION = /*VERSION*/"1.4.2-pre2"/*/VERSION*/;
public static final String VERSION = /*VERSION*/"1.4.2"/*/VERSION*/;
public static final String KIND = "Forge 1.4.7";

}
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.event.ForgeSubscribe;

@Mod(modid="ears", name="Ears", version=/*VERSION*/"1.4.2-pre2"/*/VERSION*/, useMetadata=true)
@Mod(modid="ears", name="Ears", version=/*VERSION*/"1.4.2"/*/VERSION*/, useMetadata=true)
public class Ears {

public static final Map<String, EarsFeatures> earsSkinFeatures = new WeakHashMap<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

public class EarsPlatformVersion {

public static final String VERSION = /*VERSION*/"1.4.2-pre2"/*/VERSION*/;
public static final String VERSION = /*VERSION*/"1.4.2"/*/VERSION*/;
public static final String KIND = "Forge 1.5.2";

}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

public class EarsPlatformVersion {

public static final String VERSION = /*VERSION*/"1.4.2-pre2"/*/VERSION*/;
public static final String VERSION = /*VERSION*/"1.4.2"/*/VERSION*/;
public static final String KIND = "Forge 1.6";

}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

public class EarsPlatformVersion {

public static final String VERSION = /*VERSION*/"1.4.2-pre2"/*/VERSION*/;
public static final String VERSION = /*VERSION*/"1.4.2"/*/VERSION*/;
public static final String KIND = "Forge 1.7";

}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

public class EarsPlatformVersion {

public static final String VERSION = /*VERSION*/"1.4.2-pre2"/*/VERSION*/;
public static final String VERSION = /*VERSION*/"1.4.2"/*/VERSION*/;
public static final String KIND = "Forge 1.8";

}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

public class EarsPlatformVersion {

public static final String VERSION = /*VERSION*/"1.4.2-pre2"/*/VERSION*/;
public static final String VERSION = /*VERSION*/"1.4.2"/*/VERSION*/;
public static final String KIND = "Forge 1.9";

}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

public class EarsPlatformVersion {

public static final String VERSION = /*VERSION*/"1.4.2-pre2"/*/VERSION*/;
public static final String VERSION = /*VERSION*/"1.4.2"/*/VERSION*/;
public static final String KIND = "New Frontier Craft";

}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

public class EarsPlatformVersion {

public static final String VERSION = /*VERSION*/"1.4.2-pre2"/*/VERSION*/;
public static final String VERSION = /*VERSION*/"1.4.2"/*/VERSION*/;
public static final String KIND = "Not So Seecret Saturday";

}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

public class EarsPlatformVersion {

public static final String VERSION = /*VERSION*/"1.4.2-pre2"/*/VERSION*/;
public static final String VERSION = /*VERSION*/"1.4.2"/*/VERSION*/;
public static final String KIND = "Rift 1.13.2";

}
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4.2-pre2
1.4.2

0 comments on commit 5cd7b08

Please sign in to comment.