• 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ãoa58117ce2a21d6592b6d4eed378d71ba936030bc (tree)
Hora2017-10-01 03:43:31
Autoryoshy <yoshy@user...>
Commiteryoshy

Mensagem de Log

[ADD] 番組タイトルをHTMLデコードする処理を追加(mod版 2.0.14.20150705 より取り込み)

Mudança Sumário

Diff

--- a/OnLine DataBase/SyoboiCalender.cs
+++ b/OnLine DataBase/SyoboiCalender.cs
@@ -383,7 +383,10 @@ namespace magicAnime
383383 Match matchTitle = parseTitle.Match(line);
384384
385385 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
387390 }
388391
389392 allLine += line;
--- a/Properties/AssemblyInfo.cs
+++ b/Properties/AssemblyInfo.cs
@@ -5,11 +5,11 @@ using System.Runtime.InteropServices;
55 // アセンブリに関する一般情報は以下の属性セットをとおして制御されます。
66 // アセンブリに関連付けられている情報を変更するには、
77 // これらの属性値を変更してください。
8-[assembly: AssemblyTitle("mAgicAnime fix. yossiepon_20170121")]
8+[assembly: AssemblyTitle("mAgicAnime fix. yossiepon_20170930")]
99 [assembly: AssemblyDescription("")]
1010 [assembly: AssemblyConfiguration("")]
1111 [assembly: AssemblyCompany("")]
12-[assembly: AssemblyProduct("mAgicAnime.NET (fix. yossiepon_20170121)")]
12+[assembly: AssemblyProduct("mAgicAnime.NET (fix. yossiepon_20170930)")]
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.20170121")]
33+[assembly: AssemblyFileVersion("2.0.14.20170930")]
--- a/UserInterface/MainForm.Designer.cs
+++ b/UserInterface/MainForm.Designer.cs
@@ -822,20 +822,20 @@
822822 this.storeMenu.Text = "最終保存先へ転送(&M)";
823823 this.storeMenu.Click += new System.EventHandler(this.storeMenu_Click);
824824 //
825- // toolStripSeparator9
826- //
827- this.toolStripSeparator9.Name = "toolStripSeparator9";
825+ // toolStripSeparator9
826+ //
827+ this.toolStripSeparator9.Name = "toolStripSeparator9";
828828 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";
833833 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+ //
837837 // enforceRecordedStatusMenu
838- //
838+ //
839839 this.enforceRecordedStatusMenu.Name = "enforceRecordedStatusMenu";
840840 this.enforceRecordedStatusMenu.Size = new System.Drawing.Size(220, 22);
841841 this.enforceRecordedStatusMenu.Text = "強制的に録画済み状態にする";
@@ -854,7 +854,7 @@
854854 this.deleteInvalidEpisodeMenu.Size = new System.Drawing.Size(220, 22);
855855 this.deleteInvalidEpisodeMenu.Text = "無効な最終回を削除(&D)";
856856 this.deleteInvalidEpisodeMenu.Click += new System.EventHandler(this.deleteInvalidEpisode_Click);
857- //
857+ //
858858 // toolStripMenuItem6
859859 //
860860 this.toolStripMenuItem6.Name = "toolStripMenuItem6";
@@ -1216,7 +1216,7 @@
12161216 this.MainMenuStrip = this.menuStrip;
12171217 this.Name = "MainForm";
12181218 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
1219- this.Text = "mAgicAnime.NET fix. yossiepon_20170121";
1219+ this.Text = "mAgicAnime.NET fix. yossiepon_20170930";
12201220 this.Load += new System.EventHandler(this.MainForm_Load);
12211221 this.Shown += new System.EventHandler(this.MainForm_Shown);
12221222 this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed);
--- 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 fix. yossiepon_20170121";
67+ mNotifyIcon.Text = "mAgicAnime fix. yossiepon_20170930";
6868 // trayIcon.Icon = ((System.Drawing.Icon)(resources.GetObject( "notifyIcon.Icon" )));
6969
7070 //---------------------------