Skip to content

Commit

Permalink
youtubeをビューアで開くときにエラーが出ることがある問題を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
ggslyman committed Apr 7, 2014
1 parent 59ab90c commit 0435149
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,9 @@

##更新履歴

* 14/04/07 2.0.1 Rev.17
- イメージビューアのyoutube読み込みにエラーがあったので改修

* 14/04/07 2.0.1 Rev.16
- 自動更新停止時に警告を表示および読み上げするオプションを追加、設定は通信タブから
- Aboutにリビジョン情報を表示するように修正
Expand Down
2 changes: 1 addition & 1 deletion SpeechCast/FormMain.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion SpeechCast/FormMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down
4 changes: 2 additions & 2 deletions SpeechCast/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]

0 comments on commit 0435149

Please sign in to comment.