From 0435149d9e646c81e285ef8a6dede2bdb85202a8 Mon Sep 17 00:00:00 2001 From: ggslyman Date: Mon, 7 Apr 2014 22:32:46 +0900 Subject: [PATCH] =?UTF-8?q?youtube=E3=82=92=E3=83=93=E3=83=A5=E3=83=BC?= =?UTF-8?q?=E3=82=A2=E3=81=A7=E9=96=8B=E3=81=8F=E3=81=A8=E3=81=8D=E3=81=AB?= =?UTF-8?q?=E3=82=A8=E3=83=A9=E3=83=BC=E3=81=8C=E5=87=BA=E3=82=8B=E3=81=93?= =?UTF-8?q?=E3=81=A8=E3=81=8C=E3=81=82=E3=82=8B=E5=95=8F=E9=A1=8C=E3=82=92?= =?UTF-8?q?=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 3 +++ SpeechCast/FormMain.Designer.cs | 2 +- SpeechCast/FormMain.cs | 2 +- SpeechCast/Properties/AssemblyInfo.cs | 4 ++-- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 197b340..a9e0d2c 100644 --- a/README.md +++ b/README.md @@ -97,6 +97,9 @@ ##更新履歴 +* 14/04/07 2.0.1 Rev.17 + - イメージビューアのyoutube読み込みにエラーがあったので改修 + * 14/04/07 2.0.1 Rev.16 - 自動更新停止時に警告を表示および読み上げするオプションを追加、設定は通信タブから - Aboutにリビジョン情報を表示するように修正 diff --git a/SpeechCast/FormMain.Designer.cs b/SpeechCast/FormMain.Designer.cs index fe4fcb8..3f35e92 100644 --- a/SpeechCast/FormMain.Designer.cs +++ b/SpeechCast/FormMain.Designer.cs @@ -774,7 +774,7 @@ private void InitializeComponent() this.toolStripButtonAutoNextThread.ImageTransparentColor = System.Drawing.Color.Magenta; this.toolStripButtonAutoNextThread.Name = "toolStripButtonAutoNextThread"; this.toolStripButtonAutoNextThread.Size = new System.Drawing.Size(23, 22); - this.toolStripButtonAutoNextThread.Text = "toolStripButtonAutoNextThread"; + this.toolStripButtonAutoNextThread.Text = "次スレへ自動移動"; this.toolStripButtonAutoNextThread.Click += new System.EventHandler(this.toolStripButtonAutoNextThread_Click); // // menuStrip1 diff --git a/SpeechCast/FormMain.cs b/SpeechCast/FormMain.cs index b839912..ccfe0ce 100644 --- a/SpeechCast/FormMain.cs +++ b/SpeechCast/FormMain.cs @@ -70,7 +70,7 @@ public FormMain() webBrowser.DocumentText = html; } - static Regex youtubeId = new Regex(@"http[s]?://www.youtube.com/watch\?v=([a-zA-Z0-9]*)", RegexOptions.IgnoreCase); + static Regex youtubeId = new Regex(@"http[s]?://www.youtube.com/watch\?v=([\d\w\-_]*)", RegexOptions.IgnoreCase); // ブラウザ内リンクのイベント追加 void webBrowser_Navigating(object sender, WebBrowserNavigatingEventArgs e) { diff --git a/SpeechCast/Properties/AssemblyInfo.cs b/SpeechCast/Properties/AssemblyInfo.cs index 32ad31b..b3b6157 100644 --- a/SpeechCast/Properties/AssemblyInfo.cs +++ b/SpeechCast/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // すべての値を指定するか、下のように '*' を使ってビルドおよびリビジョン番号を // 既定値にすることができます: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("2.0.1.16")] -[assembly: AssemblyFileVersion("2.0.1.16")] +[assembly: AssemblyVersion("2.0.1.17")] +[assembly: AssemblyFileVersion("2.0.1.17")]