Skip to content
This repository has been archived by the owner on May 19, 2020. It is now read-only.

Commit

Permalink
fontAwesome 5.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
thudugala committed Aug 2, 2019
1 parent 1b3acab commit ce8a754
Show file tree
Hide file tree
Showing 13 changed files with 1,730 additions and 34 deletions.
3 changes: 2 additions & 1 deletion Source/Plugin.Glypher.FontAwesome5Free/GlyphListBrand.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace Plugin.Glypher.FontAwesome5Free
{
/// <summary>
/// Font Awesome Pro 5.9.0
/// Font Awesome Pro 5.10.0
/// </summary>
public static class GlyphListBrand
{
Expand Down Expand Up @@ -80,6 +80,7 @@ public static class GlyphListBrand
public static readonly GlyphInfo Fab_Confluence = new GlyphInfo { Name = "fab-confluence", Glyph = "\uf78d", FontFamily = GlyphFont.Current.Brand };
public static readonly GlyphInfo Fab_Connectdevelop = new GlyphInfo { Name = "fab-connectdevelop", Glyph = "\uf20e", FontFamily = GlyphFont.Current.Brand };
public static readonly GlyphInfo Fab_Contao = new GlyphInfo { Name = "fab-contao", Glyph = "\uf26d", FontFamily = GlyphFont.Current.Brand };
public static readonly GlyphInfo Fab_Cotton_Bureau = new GlyphInfo { Name = "fab-cotton-bureau", Glyph = "\uf89e", FontFamily = GlyphFont.Current.Brand };
public static readonly GlyphInfo Fab_Cpanel = new GlyphInfo { Name = "fab-cpanel", Glyph = "\uf388", FontFamily = GlyphFont.Current.Brand };
public static readonly GlyphInfo Fab_Creative_Commons = new GlyphInfo { Name = "fab-creative-commons", Glyph = "\uf25e", FontFamily = GlyphFont.Current.Brand };
public static readonly GlyphInfo Fab_Creative_Commons_By = new GlyphInfo { Name = "fab-creative-commons-by", Glyph = "\uf4e7", FontFamily = GlyphFont.Current.Brand };
Expand Down
3 changes: 1 addition & 2 deletions Source/Plugin.Glypher.FontAwesome5Free/GlyphListRegular.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace Plugin.Glypher.FontAwesome5Free
{
/// <summary>
/// Font Awesome Pro 5.9.0
/// Font Awesome Pro 5.10.0
/// </summary>
public static class GlyphListRegular
{
Expand Down Expand Up @@ -159,7 +159,6 @@ public static class GlyphListRegular
public static readonly GlyphInfo Far_Window_Maximize = new GlyphInfo { Name = "far-window-maximize", Glyph = "\uf2d0", FontFamily = GlyphFont.Current.Regular };
public static readonly GlyphInfo Far_Window_Minimize = new GlyphInfo { Name = "far-window-minimize", Glyph = "\uf2d1", FontFamily = GlyphFont.Current.Regular };
public static readonly GlyphInfo Far_Window_Restore = new GlyphInfo { Name = "far-window-restore", Glyph = "\uf2d2", FontFamily = GlyphFont.Current.Regular };

#pragma warning restore 1591
#pragma warning restore CA1707
}
Expand Down
3 changes: 1 addition & 2 deletions Source/Plugin.Glypher.FontAwesome5Free/GlyphListSolid.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace Plugin.Glypher.FontAwesome5Free
{
/// <summary>
/// Font Awesome Pro 5.9.0
/// Font Awesome Pro 5.10.0
/// </summary>
public static class GlyphListSolid
{
Expand Down Expand Up @@ -964,7 +964,6 @@ public static class GlyphListSolid
public static readonly GlyphInfo Fas_X_Ray = new GlyphInfo { Name = "fas-x-ray", Glyph = "\uf497", FontFamily = GlyphFont.Current.Solid };
public static readonly GlyphInfo Fas_Yen_Sign = new GlyphInfo { Name = "fas-yen-sign", Glyph = "\uf157", FontFamily = GlyphFont.Current.Solid };
public static readonly GlyphInfo Fas_Yin_Yang = new GlyphInfo { Name = "fas-yin-yang", Glyph = "\uf6ad", FontFamily = GlyphFont.Current.Solid };

#pragma warning restore 1591
#pragma warning restore CA1707
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<Description>This plugin extend support for font glyphs (font icons) using FontAwesomeFree in Xamarin.Forms applications.</Description>
<PackageIconUrl>https://raw.githubusercontent.com/thudugala/Plugin.Glypher/master/screenshots/fontAwesomeIcon.png</PackageIconUrl>
<Copyright>Copyright © Elvin (Tharindu) Thudugala</Copyright>
<Version>5.9.0.1</Version>
<Version>5.10.0</Version>
<PackageReleaseNotes>Check: https://github.com/thudugala/Plugin.Glypher/releases </PackageReleaseNotes>
<owners>ththlk</owners>

Expand All @@ -36,7 +36,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.3" PrivateAssets="All" />
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.4" PrivateAssets="All" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-19367-01" PrivateAssets="All" />
<PackageReference Include="Plugin.Glypher" Version="1.0.1" />
</ItemGroup>
Expand Down
15 changes: 11 additions & 4 deletions Source/Plugin.Glypher.FontAwesome5Pro/GlyphFont.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,15 @@ protected GlyphFont()
Light = "Font Awesome 5 Pro-Light-300.otf#Font Awesome 5 Pro Light";
Regular = "Font Awesome 5 Pro-Regular-400.otf#Font Awesome 5 Pro Regular";
Solid = "Font Awesome 5 Pro-Solid-900.otf#Font Awesome 5 Pro Solid";
Duotone = "Font Awesome 5 Duotone-Solid-900.otf#Font Awesome 5 Duotone-Solid";
break;

case Device.iOS:
Brand = "FontAwesome5Brands-Regular";
Light = "FontAwesome5Pro-Light";
Regular = "FontAwesome5Pro-Regular";
Solid = "FontAwesome5Pro-Solid";
Duotone = "FontAwesome5Duotone-Solid";
break;
};
}
Expand All @@ -40,14 +42,14 @@ protected GlyphFont()
public static GlyphFont Current => _mySingleton.Value;

/// <summary>
/// Solid font.
/// Brand font.
/// </summary>
public string Solid { get; set; }
public string Brand { get; set; }

/// <summary>
/// Brand font.
/// Duotone font.
/// </summary>
public string Brand { get; set; }
public string Duotone { get; set; }

/// <summary>
/// Light font
Expand All @@ -58,5 +60,10 @@ protected GlyphFont()
/// Regular font.
/// </summary>
public string Regular { get; set; }

/// <summary>
/// Solid font.
/// </summary>
public string Solid { get; set; }
}
}
3 changes: 2 additions & 1 deletion Source/Plugin.Glypher.FontAwesome5Pro/GlyphListBrand.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace Plugin.Glypher.FontAwesome5Pro
{
/// <summary>
/// Font Awesome Pro 5.9.0
/// Font Awesome Pro 5.10.0
/// </summary>
public static class GlyphListBrand
{
Expand Down Expand Up @@ -79,6 +79,7 @@ public static class GlyphListBrand
public static readonly GlyphInfo Fab_Confluence = new GlyphInfo { Name = "fab-confluence", Glyph = "\uf78d", FontFamily = GlyphFont.Current.Brand };
public static readonly GlyphInfo Fab_Connectdevelop = new GlyphInfo { Name = "fab-connectdevelop", Glyph = "\uf20e", FontFamily = GlyphFont.Current.Brand };
public static readonly GlyphInfo Fab_Contao = new GlyphInfo { Name = "fab-contao", Glyph = "\uf26d", FontFamily = GlyphFont.Current.Brand };
public static readonly GlyphInfo Fab_Cotton_Bureau = new GlyphInfo { Name = "fab-cotton-bureau", Glyph = "\uf89e", FontFamily = GlyphFont.Current.Brand };
public static readonly GlyphInfo Fab_Cpanel = new GlyphInfo { Name = "fab-cpanel", Glyph = "\uf388", FontFamily = GlyphFont.Current.Brand };
public static readonly GlyphInfo Fab_Creative_Commons = new GlyphInfo { Name = "fab-creative-commons", Glyph = "\uf25e", FontFamily = GlyphFont.Current.Brand };
public static readonly GlyphInfo Fab_Creative_Commons_By = new GlyphInfo { Name = "fab-creative-commons-by", Glyph = "\uf4e7", FontFamily = GlyphFont.Current.Brand };
Expand Down
Loading

0 comments on commit ce8a754

Please sign in to comment.