mAgicAnime 俺用改造版
Revisão | a58117ce2a21d6592b6d4eed378d71ba936030bc (tree) |
---|---|
Hora | 2017-10-01 03:43:31 |
Autor | yoshy <yoshy@user...> |
Commiter | yoshy |
[ADD] 番組タイトルをHTMLデコードする処理を追加(mod版 2.0.14.20150705 より取り込み)
@@ -383,7 +383,10 @@ namespace magicAnime | ||
383 | 383 | Match matchTitle = parseTitle.Match(line); |
384 | 384 | |
385 | 385 | if( matchTitle.Success ) |
386 | - title = matchTitle.Groups["Title"].Value; | |
386 | + // mod yossiepon 20150705 begin | |
387 | + // title = matchTitle.Groups["Title"].Value; | |
388 | + title = HttpUtility.HtmlDecode( matchTitle.Groups["Title"].Value ); | |
389 | + // mod yossiepon 20150705 end | |
387 | 390 | } |
388 | 391 | |
389 | 392 | allLine += line; |
@@ -5,11 +5,11 @@ using System.Runtime.InteropServices; | ||
5 | 5 | // アセンブリに関する一般情報は以下の属性セットをとおして制御されます。 |
6 | 6 | // アセンブリに関連付けられている情報を変更するには、 |
7 | 7 | // これらの属性値を変更してください。 |
8 | -[assembly: AssemblyTitle("mAgicAnime fix. yossiepon_20170121")] | |
8 | +[assembly: AssemblyTitle("mAgicAnime fix. yossiepon_20170930")] | |
9 | 9 | [assembly: AssemblyDescription("")] |
10 | 10 | [assembly: AssemblyConfiguration("")] |
11 | 11 | [assembly: AssemblyCompany("")] |
12 | -[assembly: AssemblyProduct("mAgicAnime.NET (fix. yossiepon_20170121)")] | |
12 | +[assembly: AssemblyProduct("mAgicAnime.NET (fix. yossiepon_20170930)")] | |
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.20170121")] | |
33 | +[assembly: AssemblyFileVersion("2.0.14.20170930")] |
@@ -822,20 +822,20 @@ | ||
822 | 822 | this.storeMenu.Text = "最終保存先へ転送(&M)"; |
823 | 823 | this.storeMenu.Click += new System.EventHandler(this.storeMenu_Click); |
824 | 824 | // |
825 | - // toolStripSeparator9 | |
826 | - // | |
827 | - this.toolStripSeparator9.Name = "toolStripSeparator9"; | |
825 | + // toolStripSeparator9 | |
826 | + // | |
827 | + this.toolStripSeparator9.Name = "toolStripSeparator9"; | |
828 | 828 | this.toolStripSeparator9.Size = new System.Drawing.Size(217, 6); |
829 | - // | |
830 | - // updateProgramPlanMenu | |
831 | - // | |
832 | - this.updateProgramPlanMenu.Name = "updateProgramPlanMenu"; | |
829 | + // | |
830 | + // updateProgramPlanMenu | |
831 | + // | |
832 | + this.updateProgramPlanMenu.Name = "updateProgramPlanMenu"; | |
833 | 833 | this.updateProgramPlanMenu.Size = new System.Drawing.Size(220, 22); |
834 | - this.updateProgramPlanMenu.Text = "この番組のみデータ更新(&P)"; | |
835 | - this.updateProgramPlanMenu.Click += new System.EventHandler(this.updateProgramPlanMenu_Click); | |
836 | - // | |
834 | + this.updateProgramPlanMenu.Text = "この番組のみデータ更新(&P)"; | |
835 | + this.updateProgramPlanMenu.Click += new System.EventHandler(this.updateProgramPlanMenu_Click); | |
836 | + // | |
837 | 837 | // enforceRecordedStatusMenu |
838 | - // | |
838 | + // | |
839 | 839 | this.enforceRecordedStatusMenu.Name = "enforceRecordedStatusMenu"; |
840 | 840 | this.enforceRecordedStatusMenu.Size = new System.Drawing.Size(220, 22); |
841 | 841 | this.enforceRecordedStatusMenu.Text = "強制的に録画済み状態にする"; |
@@ -854,7 +854,7 @@ | ||
854 | 854 | this.deleteInvalidEpisodeMenu.Size = new System.Drawing.Size(220, 22); |
855 | 855 | this.deleteInvalidEpisodeMenu.Text = "無効な最終回を削除(&D)"; |
856 | 856 | this.deleteInvalidEpisodeMenu.Click += new System.EventHandler(this.deleteInvalidEpisode_Click); |
857 | - // | |
857 | + // | |
858 | 858 | // toolStripMenuItem6 |
859 | 859 | // |
860 | 860 | this.toolStripMenuItem6.Name = "toolStripMenuItem6"; |
@@ -1216,7 +1216,7 @@ | ||
1216 | 1216 | this.MainMenuStrip = this.menuStrip; |
1217 | 1217 | this.Name = "MainForm"; |
1218 | 1218 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; |
1219 | - this.Text = "mAgicAnime.NET fix. yossiepon_20170121"; | |
1219 | + this.Text = "mAgicAnime.NET fix. yossiepon_20170930"; | |
1220 | 1220 | this.Load += new System.EventHandler(this.MainForm_Load); |
1221 | 1221 | this.Shown += new System.EventHandler(this.MainForm_Shown); |
1222 | 1222 | this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed); |
@@ -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 fix. yossiepon_20170121"; | |
67 | + mNotifyIcon.Text = "mAgicAnime fix. yossiepon_20170930"; | |
68 | 68 | // trayIcon.Icon = ((System.Drawing.Icon)(resources.GetObject( "notifyIcon.Icon" ))); |
69 | 69 | |
70 | 70 | //--------------------------- |