diff --git a/README.txt b/README.txt index 0143ab8..41b9fef 100644 --- a/README.txt +++ b/README.txt @@ -1,7 +1,7 @@ =============================================================================== 【タイトル】 comeconv 【ファイル】 comeconv.exe -【作成月日】 2021/10/28 +【作成月日】 2021/11/27 【著 作 者】 nnn-revo2012 【開発環境】 Microsoft Windows 10 Microsoft Visual Studio Community 2017 @@ -176,3 +176,6 @@ GNU General Public License v3.0 2021/10/28 Version 0.0.1.12  簡易アンケートONの場合 /vote stop の行を削除するよう修正  絵文字変換OFFの場合にはエモーション絵文字を変換しないよう修正 +2021/11/27 Version 0.0.1.13 + README.txtを追加・修正 + エモーション 雪絵文字を変換 diff --git a/comeconv/ConvComment.cs b/comeconv/ConvComment.cs index a993f0f..e10575a 100644 --- a/comeconv/ConvComment.cs +++ b/comeconv/ConvComment.cs @@ -173,6 +173,8 @@ private string ConvChatData(string chat, Props props) ttt = ttt.Replace("🍀", "クローバー"); if (ttt.Contains("🌻")) ttt = ttt.Replace("🌻", "ひまわり"); + if (ttt.Contains("⛄")) + ttt = ttt.Replace("⛄", "雪"); data["mail"] = data["mail"] + " white shita medium"; data["premium"] = "1"; } diff --git a/comeconv/Prop/Version.cs b/comeconv/Prop/Version.cs index 88e0895..cfef068 100644 --- a/comeconv/Prop/Version.cs +++ b/comeconv/Prop/Version.cs @@ -4,8 +4,8 @@ namespace comeconv.Prop { public class Ver { - public static readonly string Version = "0.0.1.12"; - public static readonly string VerDate = "2021/10/28"; + public static readonly string Version = "0.0.1.13"; + public static readonly string VerDate = "2021/1/27"; public static string GetFullVersion() {