diff --git a/ShowInfo/Properties/AssemblyInfo.cs b/ShowInfo/Properties/AssemblyInfo.cs index d8f19cc..3e3afe6 100644 --- a/ShowInfo/Properties/AssemblyInfo.cs +++ b/ShowInfo/Properties/AssemblyInfo.cs @@ -31,5 +31,5 @@ // 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号 //通过使用 "*",如下所示: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: AssemblyVersion("1.0.1.0")] +[assembly: AssemblyFileVersion("1.0.1.0")] diff --git a/ShowInfo/ShowInfo.cs b/ShowInfo/ShowInfo.cs index e5c0f8a..5713d66 100644 --- a/ShowInfo/ShowInfo.cs +++ b/ShowInfo/ShowInfo.cs @@ -13,7 +13,7 @@ public ShowInfo() PluginName = "用户信息"; PluginDesc = "显示投喂用户的隐藏信息"; PluginCont = "lzggzr@gmail.com"; - PluginVer = "v1.0.0"; + PluginVer = "v1.0.1"; } private void B_ReceivedDanmaku(object sender, ReceivedDanmakuArgs e) { @@ -51,7 +51,7 @@ private void B_ReceivedDanmaku(object sender, ReceivedDanmakuArgs e) userLog += String.Format(" {0}{1}", value, e.Danmaku.GiftName); } - Regex normalCapsule = new Regex("\"normal\":{ \"coin\":\"?(\\d+)"); + Regex normalCapsule = new Regex("\"normal\":{\"coin\":\"?(\\d+)"); Match hasNormalCapsule = normalCapsule.Match(rawData); if (hasNormalCapsule.Success) { @@ -60,7 +60,7 @@ private void B_ReceivedDanmaku(object sender, ReceivedDanmakuArgs e) userLog += String.Format(" {0}普通扭蛋", value); } - Regex colorfulCapsule = new Regex("\"colorful\":{ \"coin\":\"?(\\d+)"); + Regex colorfulCapsule = new Regex("\"colorful\":{\"coin\":\"?(\\d+)"); Match hascClorfulCapsule = colorfulCapsule.Match(rawData); if (hascClorfulCapsule.Success) {