Skip to content

Commit

Permalink
Ver 0.0.1.13
Browse files Browse the repository at this point in the history
  エモーション 雪を変換
  • Loading branch information
nnn-revo2012 committed Nov 27, 2021
1 parent 024b719 commit 10b30f6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 4 additions & 1 deletion README.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
===============================================================================
【タイトル】 comeconv
【ファイル】 comeconv.exe
【作成月日】 2021/10/28
【作成月日】 2021/11/27
【著 作 者】 nnn-revo2012
【開発環境】 Microsoft Windows 10
Microsoft Visual Studio Community 2017
Expand Down Expand Up @@ -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を追加・修正
 エモーション 雪絵文字を変換
2 changes: 2 additions & 0 deletions comeconv/ConvComment.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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";
}
Expand Down
4 changes: 2 additions & 2 deletions comeconv/Prop/Version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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()
{
Expand Down

0 comments on commit 10b30f6

Please sign in to comment.