mAgicAnime 俺用改造版
Revisão | dc724f9393a8c64401001f73878cdbe57357001e (tree) |
---|---|
Hora | 2016-10-30 07:45:24 |
Autor | yoshy <yoshy@user...> |
Commiter | yoshy |
[UPDATE] ファイル名の置換対象文字に「|」と「%」を追加
@@ -33,6 +33,10 @@ namespace Helpers | ||
33 | 33 | name = name.Replace( ':', ':' ); |
34 | 34 | name = name.Replace( ':', ':' ); |
35 | 35 | name = name.Replace( '\"', '”' ); |
36 | +// mod. yossiepon_20151025 begin | |
37 | + name = name.Replace( '|', '|' ); | |
38 | + name = name.Replace( '%', '%' ); | |
39 | +// mod. yossiepon_20151025 end | |
36 | 40 | |
37 | 41 | // 無効な文字を削除する |
38 | 42 | name = name.TrimStart( Path.GetInvalidFileNameChars() ); |
@@ -5,11 +5,11 @@ using System.Runtime.InteropServices; | ||
5 | 5 | // アセンブリに関する一般情報は以下の属性セットをとおして制御されます。 |
6 | 6 | // アセンブリに関連付けられている情報を変更するには、 |
7 | 7 | // これらの属性値を変更してください。 |
8 | -[assembly: AssemblyTitle("mAgicAnime Ver.7sh mod. yossiepon_20150815")] | |
8 | +[assembly: AssemblyTitle("mAgicAnime Ver.7sh mod. yossiepon_20151025")] | |
9 | 9 | [assembly: AssemblyDescription("")] |
10 | 10 | [assembly: AssemblyConfiguration("")] |
11 | 11 | [assembly: AssemblyCompany("")] |
12 | -[assembly: AssemblyProduct("mAgicAnime.NET (ななし版, mod. yossiepon_20150815)")] | |
12 | +[assembly: AssemblyProduct("mAgicAnime.NET (ななし版, mod. yossiepon_20151025)")] | |
13 | 13 | [assembly: AssemblyCopyright("Copyright (C) 2006-2010 mAgicAnime Project")] |
14 | 14 | [assembly: AssemblyTrademark("")] |
15 | 15 | [assembly: AssemblyCulture("")] |
@@ -30,4 +30,4 @@ using System.Runtime.InteropServices; | ||
30 | 30 | // Revision |
31 | 31 | // |
32 | 32 | [assembly: AssemblyVersion("2.0.0.0")] |
33 | -[assembly: AssemblyFileVersion("2.0.14.20150815")] | |
33 | +[assembly: AssemblyFileVersion("2.0.14.20151025")] |
@@ -1173,7 +1173,7 @@ | ||
1173 | 1173 | this.MainMenuStrip = this.menuStrip; |
1174 | 1174 | this.Name = "MainForm"; |
1175 | 1175 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; |
1176 | - this.Text = "mAgicAnime.NET Ver.7sh mod. yossiepon_20150815"; | |
1176 | + this.Text = "mAgicAnime.NET Ver.7sh mod. yossiepon_20151025"; | |
1177 | 1177 | this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing); |
1178 | 1178 | this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed); |
1179 | 1179 | this.Load += new System.EventHandler(this.MainForm_Load); |
@@ -64,7 +64,7 @@ namespace magicAnime.UserInterface | ||
64 | 64 | mNotifyIcon.DoubleClick += notifyIcon_DoubleClick; |
65 | 65 | mNotifyIcon.BalloonTipIcon = ToolTipIcon.Info; |
66 | 66 | mNotifyIcon.BalloonTipTitle = "mAgicAnime"; |
67 | - mNotifyIcon.Text = "mAgicAnime Ver.7sh mod. yossiepon_20150815"; | |
67 | + mNotifyIcon.Text = "mAgicAnime Ver.7sh mod. yossiepon_20151025"; | |
68 | 68 | // trayIcon.Icon = ((System.Drawing.Icon)(resources.GetObject( "notifyIcon.Icon" ))); |
69 | 69 | |
70 | 70 | //--------------------------- |