Skip to content
This repository has been archived by the owner on Oct 16, 2019. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/0.8.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSylence committed Oct 17, 2016
2 parents 149c42e + 76a43de commit eb9cd86
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 3 deletions.
Binary file modified Twice.smproj
Binary file not shown.
9 changes: 8 additions & 1 deletion Twice/Behaviors/MediaController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,14 @@ internal class MediaController : BehaviorBase<MediaElement>
{
protected override void OnCleanup()
{
AssociatedObject?.Stop();
try
{
AssociatedObject?.Stop();
}
catch( InvalidOperationException ex )
{
LogTo.WarnException( "Failed to cleanup.", ex );
}
}

protected override void OnAttached()
Expand Down
4 changes: 2 additions & 2 deletions Twice/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
[assembly: ComVisible( false )]
[assembly: ThemeInfo( ResourceDictionaryLocation.None, ResourceDictionaryLocation.SourceAssembly )]
[assembly: LogMinimalMessage]
[assembly: AssemblyVersion( "0.8.1.0" )]
[assembly: AssemblyFileVersion( "0.8.1.0" )]
[assembly: AssemblyVersion( "0.8.2.0" )]
[assembly: AssemblyFileVersion( "0.8.2.0" )]
[assembly: InternalsVisibleTo( "Twice.Tests" )]
[assembly: InternalsVisibleTo( "DynamicProxyGenAssembly2" )]
11 changes: 11 additions & 0 deletions Twice/Resources/Texts/Changelog.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
[
{
"Version": "0.8.2",
"Date": "2016-10-17",
"Description": "",
"NewFeatures": [],
"Changes": [],
"Fixes": [
"Fixed crash that could occur when loading inline media"
],
"Issues": []
},
{
"Version": "0.8.1",
"Date": "2016-10-17",
Expand Down

0 comments on commit eb9cd86

Please sign in to comment.