Skip to content

Commit

Permalink
Update to 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
robinmanuelthiel committed Apr 17, 2018
1 parent 570f225 commit 8380f55
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 11 deletions.
1 change: 0 additions & 1 deletion Flex.Android/Flex.Android.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
<PackageId>Forms.Controls.FlexButton</PackageId>
<PackageVersion>0.7.0-pre</PackageVersion>
<Authors>Robin-Manuel Thiel</Authors>
<Description>A flexible button control for Xamarin.Forms</Description>
</PropertyGroup>
Expand Down
1 change: 0 additions & 1 deletion Flex.iOS/Flex.iOS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
<PackageId>Forms.Controls.FlexButton</PackageId>
<PackageVersion>0.7.0-pre</PackageVersion>
<Authors>Robin-Manuel Thiel</Authors>
<Description>A flexible button control for Xamarin.Forms</Description>
</PropertyGroup>
Expand Down
11 changes: 6 additions & 5 deletions Flex/Controls/FlexButton.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -216,11 +216,12 @@ protected override void OnPropertyChanged([CallerMemberName] string propertyName
ButtonIcon.Source = Icon;
ColorIcon(ForegroundColor);
}
else if (propertyName == TextProperty.PropertyName ||
propertyName == IconOrientationProperty.PropertyName ||
propertyName == BorderThicknessProperty.PropertyName ||
propertyName == ToggleModeProperty.PropertyName ||
propertyName == IsToggledProperty.PropertyName)
else if (
propertyName == TextProperty.PropertyName ||
propertyName == IconOrientationProperty.PropertyName ||
propertyName == BorderThicknessProperty.PropertyName ||
propertyName == ToggleModeProperty.PropertyName ||
propertyName == IsToggledProperty.PropertyName)
{
SetButtonMode();
}
Expand Down
1 change: 0 additions & 1 deletion Flex/Flex.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
<PropertyGroup>
<TargetFramework>netstandard1.0</TargetFramework>
<PackageId>Forms.Controls.FlexButton</PackageId>
<PackageVersion>0.7.0-pre</PackageVersion>
<Authors>Robin-Manuel Thiel</Authors>
<PackageProjectUrl>https://github.com/robinmanuelthiel/flexbutton</PackageProjectUrl>
<PackageIconUrl>https://raw.githubusercontent.com/robinmanuelthiel/flexbutton/master/Design/Logo-150.png</PackageIconUrl>
Expand Down
6 changes: 3 additions & 3 deletions Nuget/Forms.Controls.FlexButton.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata minClientVersion="">
<id>Forms.Controls.FlexButton</id>
<version>0.7.0-pre2</version>
<version>0.6.1</version>
<title>FlexButton for Xamarin.Forms</title>
<authors>Robin-Manuel Thiel</authors>
<owners>Robin-Manuel Thiel</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<projectUrl>https://github.com/robinmanuelthiel/flexbutton</projectUrl>
<description>Flexible button control for Xamarin.Forms</description>
<summary>Flexible button control for Xamarin.Forms</summary>
<releaseNotes>This release adds Font adjustments and Command Parameters</releaseNotes>
<releaseNotes>This release fixes Xamarin.Forms 2.5.1 support</releaseNotes>
<copyright></copyright>
<language></language>
<tags>flex xamarin.forms control button flexbutton</tags>
<tags>flex xamarin.forms control button flexbutton xamarin flexible</tags>
<dependencies>
<group targetFramework=".NETStandard1.0">
<dependency id="Xamarin.Forms" version="2.5.0.280555" />
Expand Down

0 comments on commit 8380f55

Please sign in to comment.