diff --git a/sigIRCv2.jar b/sigIRCv2.jar index 2b683d3..63646bf 100644 Binary files a/sigIRCv2.jar and b/sigIRCv2.jar differ diff --git a/src/sig/modules/TwitchModule.java b/src/sig/modules/TwitchModule.java index d1a41c7..29e212f 100644 --- a/src/sig/modules/TwitchModule.java +++ b/src/sig/modules/TwitchModule.java @@ -478,7 +478,8 @@ public class TwitchModule extends Module{ int textY = (int)position.getY()+sigIRC.twitchmodule_followerText_Y+yAlteration; int textX = (int)position.getX()+sigIRC.twitchmodule_followerText_centerX+xAlteration; if (textYposition.getX()) { - DrawUtils.drawCenteredText(g, sigIRC.panel.programFont, (int)position.getX()+sigIRC.twitchmodule_followerText_centerX+xAlteration, (int)position.getY()+sigIRC.twitchmodule_followerText_Y+yAlteration, Color.BLACK, announcedFollowerUser.display_name); + //DrawUtils.drawCenteredText(g, sigIRC.panel.programFont, (int)position.getX()+sigIRC.twitchmodule_followerText_centerX+xAlteration, (int)position.getY()+sigIRC.twitchmodule_followerText_Y+yAlteration, Color.BLACK, announcedFollowerUser.display_name); + DrawUtils.drawCenteredOutlineText(g, sigIRC.panel.programFont, (int)position.getX()+sigIRC.twitchmodule_followerText_centerX+xAlteration, (int)position.getY()+sigIRC.twitchmodule_followerText_Y+yAlteration, sigIRC.twitchmodule_newfollowerNameShadowSize, TextUtils.convertStringToColor(sigIRC.twitchmodule_newfollowerNameTextColor), TextUtils.convertStringToColor(sigIRC.twitchmodule_newfollowerNameShadowColor), announcedFollowerUser.display_name); } if (announcedFollowerUser.bio!=null && !announcedFollowerUser.bio.equalsIgnoreCase("null")) { if (followerUserLogo!=null) { diff --git a/src/sig/sigIRC.java b/src/sig/sigIRC.java index e0ba92e..1dbe40e 100644 --- a/src/sig/sigIRC.java +++ b/src/sig/sigIRC.java @@ -163,6 +163,9 @@ public class sigIRC{ public static String twitchmodule_newfollowerImgBackgroundColor="90,90,90"; public static String twitchmodule_newfollowerShadowTextColor="26,90,150"; public static String twitchmodule_newfollowerTextColor="255,255,255"; + public static String twitchmodule_newfollowerNameTextColor="0,0,0"; + public static String twitchmodule_newfollowerNameShadowColor="255,255,180"; + public static int twitchmodule_newfollowerNameShadowSize=2; public static String chatlogmodule_backgroundColor="195,195,195,255"; public static int twitchmodule_newfollowerImgLogoSize=32; public static boolean testMode=false;