• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

mAgicAnime 俺用改造版


Commit MetaInfo

Revisãodc724f9393a8c64401001f73878cdbe57357001e (tree)
Hora2016-10-30 07:45:24
Autoryoshy <yoshy@user...>
Commiteryoshy

Mensagem de Log

[UPDATE] ファイル名の置換対象文字に「|」と「%」を追加

Mudança Sumário

Diff

--- a/PathHelper.cs
+++ b/PathHelper.cs
@@ -33,6 +33,10 @@ namespace Helpers
3333 name = name.Replace( ':', ':' );
3434 name = name.Replace( ':', ':' );
3535 name = name.Replace( '\"', '”' );
36+// mod. yossiepon_20151025 begin
37+ name = name.Replace( '|', '|' );
38+ name = name.Replace( '%', '%' );
39+// mod. yossiepon_20151025 end
3640
3741 // 無効な文字を削除する
3842 name = name.TrimStart( Path.GetInvalidFileNameChars() );
--- a/Properties/AssemblyInfo.cs
+++ b/Properties/AssemblyInfo.cs
@@ -5,11 +5,11 @@ using System.Runtime.InteropServices;
55 // アセンブリに関する一般情報は以下の属性セットをとおして制御されます。
66 // アセンブリに関連付けられている情報を変更するには、
77 // これらの属性値を変更してください。
8-[assembly: AssemblyTitle("mAgicAnime Ver.7sh mod. yossiepon_20150815")]
8+[assembly: AssemblyTitle("mAgicAnime Ver.7sh mod. yossiepon_20151025")]
99 [assembly: AssemblyDescription("")]
1010 [assembly: AssemblyConfiguration("")]
1111 [assembly: AssemblyCompany("")]
12-[assembly: AssemblyProduct("mAgicAnime.NET (ななし版, mod. yossiepon_20150815)")]
12+[assembly: AssemblyProduct("mAgicAnime.NET (ななし版, mod. yossiepon_20151025)")]
1313 [assembly: AssemblyCopyright("Copyright (C) 2006-2010 mAgicAnime Project")]
1414 [assembly: AssemblyTrademark("")]
1515 [assembly: AssemblyCulture("")]
@@ -30,4 +30,4 @@ using System.Runtime.InteropServices;
3030 // Revision
3131 //
3232 [assembly: AssemblyVersion("2.0.0.0")]
33-[assembly: AssemblyFileVersion("2.0.14.20150815")]
33+[assembly: AssemblyFileVersion("2.0.14.20151025")]
--- a/UserInterface/MainForm.Designer.cs
+++ b/UserInterface/MainForm.Designer.cs
@@ -1173,7 +1173,7 @@
11731173 this.MainMenuStrip = this.menuStrip;
11741174 this.Name = "MainForm";
11751175 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";
11771177 this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
11781178 this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed);
11791179 this.Load += new System.EventHandler(this.MainForm_Load);
--- a/UserInterface/TrayIcon.cs
+++ b/UserInterface/TrayIcon.cs
@@ -64,7 +64,7 @@ namespace magicAnime.UserInterface
6464 mNotifyIcon.DoubleClick += notifyIcon_DoubleClick;
6565 mNotifyIcon.BalloonTipIcon = ToolTipIcon.Info;
6666 mNotifyIcon.BalloonTipTitle = "mAgicAnime";
67- mNotifyIcon.Text = "mAgicAnime Ver.7sh mod. yossiepon_20150815";
67+ mNotifyIcon.Text = "mAgicAnime Ver.7sh mod. yossiepon_20151025";
6868 // trayIcon.Icon = ((System.Drawing.Icon)(resources.GetObject( "notifyIcon.Icon" )));
6969
7070 //---------------------------