Skip to content

Commit a912d0c

Browse files
committed
Updated version to 2.2.0
1 parent 9a1b052 commit a912d0c

File tree

14 files changed

+42
-22
lines changed

14 files changed

+42
-22
lines changed

.build/Plugin.Badge.nuspec

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
22
<metadata>
33
<id>Plugin.Badge</id>
4-
<version>2.1.2</version>
4+
<version>2.2.0</version>
55
<title>Tab Badge for Xamarin.Forms</title>
66
<authors>Adrian Seceleanu</authors>
77
<owners>Adrian Seceleanu</owners>
@@ -14,6 +14,11 @@
1414
<tags>xamarin xamarin.forms badge tab tabbar monodroid Xamarin.iOS uwp uap android ios windows universal mac macos osx</tags>
1515
<iconUrl>https://raw.githubusercontent.com/xabre/xamarin-forms-tab-badge/master/icon_small.png</iconUrl>
1616
<releaseNotes>
17+
[2.2.0]
18+
- #67: Update to XF 4.0.0.425677
19+
- #72: Fix Android Warnings
20+
- #64: Generic XF badge view that can be added to any XF layout
21+
- #30: Generic XF badge used with NavigationPage.TitleView
1722
[2.1.2]
1823
- #65 iOS: Update badge properties on icon property changed
1924
- #66 Ensure cleanup also takes into account tabs wrapped by navigation pages

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,14 @@ Very similar to `BadgeColor` just use [`TabBadge.BadgePosition` (XAML) or `TabBa
146146
## Showning / Hiding the badge
147147
If the value of the `BadgeText` is set to null or empty string the badge is hidden. To show it again set a non null or empty value
148148

149+
# Generic Badge View
150+
151+
As of v2.2.0 the package also contains a XF Badge view that is based on a XF Frame View and can be added to any layout and bound using the usual approach. The generic badge view can also be added to custom *NavigationPage.TitleView* layouts.
152+
153+
Checkout the Sample-App for more.
154+
155+
<img src="Screencasts/tabbadge.genericbadge.PNG" height="200"/>
156+
149157

150158
# Licence
151159

Screencasts/tabbadge.genericbadge.PNG

57.2 KB
Loading

Source/Plugin.Badge.Droid/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
1818
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
1919

20-
[assembly: AssemblyVersion("2.1.2")]
20+
[assembly: AssemblyVersion("2.2.0")]
2121

2222
// The following attributes are used to specify the signing key for the assembly,
2323
// if desired. See the Mono documentation for more information about signing.

Source/Plugin.Badge.Mac/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
1818
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
1919

20-
[assembly: AssemblyVersion("2.1.2")]
20+
[assembly: AssemblyVersion("2.2.0")]
2121

2222
// The following attributes are used to specify the signing key for the assembly,
2323
// if desired. See the Mono documentation for more information about signing.

Source/Plugin.Badge.Sample.Droid.Legacy/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727
//
2828
// You can specify all the values or you can default the Build and Revision Numbers
2929
// by using the '*' as shown below:
30-
// [assembly: AssemblyVersion("2.1.2")]
31-
[assembly: AssemblyVersion("2.1.2")]
32-
[assembly: AssemblyFileVersion("2.1.2")]
30+
// [assembly: AssemblyVersion("2.2.0")]
31+
[assembly: AssemblyVersion("2.2.0")]
32+
[assembly: AssemblyFileVersion("2.2.0")]
3333

3434
//register renderer
3535
[assembly: ExportRenderer(typeof(TabbedPage), typeof(LegacyBadgedTabbedRenderer))]

Source/Plugin.Badge.UWP/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
//
2424
// You can specify all the values or you can default the Build and Revision Numbers
2525
// by using the '*' as shown below:
26-
// [assembly: AssemblyVersion("2.1.2")]
27-
[assembly: AssemblyVersion("2.1.2")]
28-
[assembly: AssemblyFileVersion("2.1.2")]
26+
// [assembly: AssemblyVersion("2.2.0")]
27+
[assembly: AssemblyVersion("2.2.0")]
28+
[assembly: AssemblyFileVersion("2.2.0")]
2929
[assembly: ComVisible(false)]

Source/Plugin.Badge.WPF/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,6 @@
5050
//
5151
// You can specify all the values or you can default the Build and Revision Numbers
5252
// by using the '*' as shown below:
53-
// [assembly: AssemblyVersion("2.1.2")]
54-
[assembly: AssemblyVersion("2.1.2")]
55-
[assembly: AssemblyFileVersion("2.1.2")]
53+
// [assembly: AssemblyVersion("2.2.0")]
54+
[assembly: AssemblyVersion("2.2.0")]
55+
[assembly: AssemblyFileVersion("2.2.0")]

Source/Plugin.Badge.iOS/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
1818
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
1919

20-
[assembly: AssemblyVersion("2.1.2")]
20+
[assembly: AssemblyVersion("2.2.0")]
2121

2222
// The following attributes are used to specify the signing key for the assembly,
2323
// if desired. See the Mono documentation for more information about signing.

Source/Sample/Plugin.Badge.Sample.Droid/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
1919
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
2020

21-
[assembly: AssemblyVersion("2.1.2")]
21+
[assembly: AssemblyVersion("2.2.0")]
2222

2323
// The following attributes are used to specify the signing key for the assembly,
2424
// if desired. See the Mono documentation for more information about signing.

0 commit comments

Comments
 (0)