Skip to content

Commit

Permalink
Custom acrylic brush fallback mode improved
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergio0694 committed Jul 14, 2017
1 parent 3532fb8 commit df7ff68
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions UICompositionAnimations/Brushes/CustomAcrylicBrush.cs
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,9 @@ protected override async void OnDisconnected()
/// </summary>
private async Task SetupEffectAsync()
{
// Platform check
if (ApiInformationHelper.IsMobileDevice && Mode == AcrylicEffectMode.HostBackdrop) return;

// Dictionary to track the reference and animatable parameters
IDictionary<String, CompositionBrush> sourceParameters = new Dictionary<String, CompositionBrush>();
List<String> animatableParameters = new List<String>
Expand Down
2 changes: 1 addition & 1 deletion UICompositionAnimations/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.8.3.0")]
[assembly: AssemblyVersion("2.8.4.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: ComVisible(false)]
4 changes: 2 additions & 2 deletions UICompositionAnimations/UICompositionAnimations.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
<package >
<metadata>
<id>Sergio0694.UWP.UICompositionAnimations</id>
<version>2.8.3.0</version>
<version>2.8.4.0</version>
<title>UICompositionAnimations</title>
<description>A wrapper UWP PCL to work with Windows.UI.Composition and XAML animations, and Win2D effects</description>
<authors>Sergio Pedri</authors>
<owners>Sergio Pedri</owners>
<projectUrl>https://github.com/Sergio0694/UICompositionAnimations</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<releaseNotes>Custom acrylic brush improved, bug fixes and code refactoring</releaseNotes>
<releaseNotes>Custom acrylic brush fallback mode improved, bug fixes</releaseNotes>
<copyright>Copyright 2017</copyright>
<tags>uwp composition animations xaml csharp windows winrt universal app ui win2d graphics</tags>
</metadata>
Expand Down

0 comments on commit df7ff68

Please sign in to comment.