Uno.Material 1.3.1

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Uno.Material --version 1.3.1                
NuGet\Install-Package Uno.Material -Version 1.3.1                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Uno.Material" Version="1.3.1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Uno.Material --version 1.3.1                
#r "nuget: Uno.Material, 1.3.1"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Uno.Material as a Cake Addin
#addin nuget:?package=Uno.Material&version=1.3.1

// Install Uno.Material as a Cake Tool
#tool nuget:?package=Uno.Material&version=1.3.1                

Uno Material

This library is designed to help you use the material design system. It includes :

  • Color system for both Light and Dark theme
  • Styles for existing WinUI controls like Buttons, TextBox, etc.

Quickly visualize all the available controls through this zeplin link

Platform support:

  • WinUI / UWP
  • iOS
  • MacOS
  • Android
  • WebAssembly
  • Linux (Skia.Gtk)

Uno Material

Uno Material Design Guideline is a resource for designers and software developers that combines Material and Uno design guidance in single document. It is an easy way to kickstart design and implementation of cross-platform experiences with unified Material design system look and feel, using Sketch and Uno Platform.

Download the Uno Platform Design Guidelines sketch file to get started.

It includes:

  • Uno-Material components
  • Uno type resource names
  • Uno asset naming and export guidance

License

Getting Started

  1. Install the nuget package Uno.Material.
  2. Unless you want our default color palette (inspired by our Uno logo), you'll want to override the following color resources in you application. We suggest creating a ColorPaletteOverride.xaml ResourceDictionary. For more information on the color system, consult this page for all the official documentation and tools to help you create your own palette. Here is what ColorPaletteOverride.xaml would contain if you want both light and dark theme.
<ResourceDictionary
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

	
	<ResourceDictionary.ThemeDictionaries>
		
		<ResourceDictionary x:Key="Light">
			<Color x:Key="MaterialPrimaryColor">#5B4CF5</Color>
			<Color x:Key="MaterialPrimaryVariantDarkColor">#353FE5</Color>
			<Color x:Key="MaterialPrimaryVariantLightColor">#B6A8FB</Color>
			<Color x:Key="MaterialSecondaryColor">#67E5AD</Color>
			<Color x:Key="MaterialSecondaryVariantDarkColor">#2BB27E</Color>
			<Color x:Key="MaterialSecondaryVariantLightColor">#9CFFDF</Color>
			<Color x:Key="MaterialBackgroundColor">#FFFFFF</Color>
			<Color x:Key="MaterialSurfaceColor">#FFFFFF</Color>
			<Color x:Key="MaterialErrorColor">#F85977</Color>
			<Color x:Key="MaterialOnPrimaryColor">#FFFFFF</Color>
			<Color x:Key="MaterialOnSecondaryColor">#000000</Color>
			<Color x:Key="MaterialOnBackgroundColor">#000000</Color>
			<Color x:Key="MaterialOnSurfaceColor">#000000</Color>
			<Color x:Key="MaterialOnErrorColor">#000000</Color>
			<Color x:Key="MaterialOverlayColor">#51000000</Color>
		</ResourceDictionary>

		
		<ResourceDictionary x:Key="Dark">
			<Color x:Key="MaterialPrimaryColor">#B6A8FB</Color>
			<Color x:Key="MaterialPrimaryVariantDarkColor">#353FE5</Color>
			<Color x:Key="MaterialPrimaryVariantLightColor">#D4CBFC</Color>
			<Color x:Key="MaterialSecondaryColor">#67E5AD</Color>
			<Color x:Key="MaterialSecondaryVariantDarkColor">#2BB27E</Color>
			<Color x:Key="MaterialSecondaryVariantLightColor">#9CFFDF</Color>
			<Color x:Key="MaterialBackgroundColor">#121212</Color>
			<Color x:Key="MaterialSurfaceColor">#121212</Color>
			<Color x:Key="MaterialErrorColor">#CF6679</Color>
			<Color x:Key="MaterialOnPrimaryColor">#000000</Color>
			<Color x:Key="MaterialOnSecondaryColor">#000000</Color>
			<Color x:Key="MaterialOnBackgroundColor">#FFFFFF</Color>
			<Color x:Key="MaterialOnSurfaceColor">#DEFFFFFF</Color>
			<Color x:Key="MaterialOnErrorColor">#000000</Color>
			<Color x:Key="MaterialOverlayColor">#51FFFFFF</Color>
		</ResourceDictionary>
	</ResourceDictionary.ThemeDictionaries>
</ResourceDictionary>

  1. Initialize the material resources. The order in which the different resources are loaded is important. Add this to App.xaml
<MaterialColors xmlns="using:Uno.Material"
				OverrideSource="ms-appx:///ColorPaletteOverride.xaml" />
<MaterialResources xmlns="using:Uno.Material" />
  1. (Optional) The material ProgressBar is built on top for the WinUI ProgressBar so make sure you include the appropriate resources in your App.xaml
	<Application.Resources>
		<ResourceDictionary>
			<ResourceDictionary.MergedDictionaries>
				
				<XamlControlsResources xmlns="using:Microsoft.UI.Xaml.Controls"/>

				<MaterialColors xmlns="using:Uno.Material"
								OverrideSource="ms-appx:///ColorPaletteOverride.xaml" />
				<MaterialResources xmlns="using:Uno.Material" />
				
				
			</ResourceDictionary.MergedDictionaries>
		</ResourceDictionary>
	</Application.Resources>
  1. Start using the styles in your pages!
  • To use styles, just find the name of the style from our documentation or sample app and use it like this
<Button Content="CONTAINED"
	Style="{StaticResource MaterialContainedButtonStyle}"/>
  1. In order to display the appropriate font with the material styles on Webassembly, make sure that the Roboto font is defined on font.css located at [YourProject].Wasm/WasmCSS. This make sure that the font is loaded correctly Related Issue. It should look like this:
@font-face {
  font-family: "Symbols";
  /* winjs-symbols.woff2: https://github.com/Microsoft/fonts/tree/master/Symbols */
  src: url(data:application/x-font-woff;charset=utf-8;base64,[...]);
}

@font-face {
  font-family: "Roboto";
  src: url(data:application/x-font-woff;charset=utf-8;base64,[...]);
}

body::after {
	font-family: 'Roboto';
	background: transparent;
	content: "";
	opacity: 0;
	pointer-events: none;
	position: absolute;
}
  1. (Optional) Set material styles as the default for your whole application.

     <MaterialResources xmlns="using:Uno.Material" WithImplicitStyles="True" />
    

    Alternatively, if you wish to only have the default styles for certain controls, simply add the implicit styles to your App.xaml:

     <Application.Resources>
     	<ResourceDictionary>
     		<ResourceDictionary.MergedDictionaries>
     			<MaterialColors xmlns="using:Uno.Material" />
     			<MaterialResources xmlns="using:Uno.Material" />
    
    
     			<ResourceDictionary>
     				<Style TargetType="Button" BasedOn="{StaticResource MaterialContainedButtonStyle}"/>
     				<Style TargetType="TextBox" BasedOn="{StaticResource MaterialFilledTextBoxStyle}"/>
     			</ResourceDictionary>
     		</ResourceDictionary.MergedDictionaries>
     	</ResourceDictionary>
     </Application.Resources>
    

    Learn more about implicit styles from the Microsoft documentation here

  2. (Optional) Per-control customization. Just like WinUI, we documented a set of control-specific resources you can override to further customize our controls. For example, if you would like change the CornerRadius of all the Buttons using our material styles, you could simply override the ButtonBorderRadius value in your resources (in App.xaml would be the simplest way to put the following code)

<CornerRadius x:Key="ButtonBorderRadius">4</CornerRadius>
  1. (Optional) If you are using our ToggleSwitches to get proper Material styling in Android there is some extra code to be added to the Android Project Head. (Click the component name to see how to set them up)

  2. (Optional) If you are using our DatePickers, and TimePickers to get proper Material styling in Android there is some extra code to be added to the Android Project Head. (Click the component name to see how to set them up)

Features

Styles for basic controls

Controls StyleNames
Button MaterialContainedButtonStyle <br> MaterialOutlinedButtonStyle <br> MaterialTextButtonStyle <br> MaterialButtonIconStyle <br> MaterialContainedSecondaryButtonStyle <br> MaterialOutlinedSecondaryButtonStyle<br> MaterialTextSecondaryButtonStyle <br> MaterialButtonIconStyle
Button (FAB) <br> Floating Action Button MaterialFabStyle <br> MaterialSmallFabStyle <br> MaterialSecondaryFabStyle <br> MaterialPrimaryInvertedFabStyle <br> MaterialSecondaryInvertedFabStyle
CalendarDatePicker MaterialCalendarDatePickerStyle
CalendarView MaterialCalendarViewStyle
CheckBox MaterialCheckBoxStyle <br> MaterialSecondaryCheckBoxStyle
ComboBox MaterialComboBoxStyle <br> MaterialComboBoxItemStyle
CommandBar MaterialCommandBarStyle <br> MaterialAppBarButton
DatePicker MaterialDatePickerStyle
Flyout MaterialFlyoutPresenterStyle <br> MaterialContentFlyoutPresenterStyle
MenuFlyout MaterialMenuFMaterialMUXNoCompactMenuNavigationViewStylelyoutPresenterStyle <br> MaterialMenuFlyoutItemStyle <br> MaterialToggleMenuFlyoutItemStyle <br> MaterialMenuFlyoutSubItemStyle <br> MaterialMenuFlyoutSeparatorStyle
HyperlinkButton MaterialHyperlinkButtonStyle <br> MaterialSecondaryHyperlinkButtonStyle
muxc:InfoBar MaterialInfoBarStyle
ListView MaterialListViewStyle <br> MaterialListViewDetailsStyle <br> MaterialListViewItemStyle
NavigationView MaterialWUXNavigationViewStyle <br> MaterialWUXNoCompactMenuNavigationViewStyle <br> MaterialWUXNavigationViewItemStyle
muxc:NavigationView MaterialNavigationViewStyle <br> MaterialNavigationViewItemStyle
PasswordBox MaterialFilledPasswordBoxStyle <br> MaterialOutlinedPasswordBoxStyle
muxc:ProgressBar MaterialProgressBarStyle <br> MaterialSecondaryProgressBarStyle
muxc:ProgressRing MaterialProgressRingStyle <br> MaterialSecondaryProgressRingStyle
RadioButton MaterialRadioButtonStyle <br> MaterialSecondaryRadioButtonStyle
muxc:RatingControl MaterialRatingControlStyle <br> MaterialSecondaryRatingControlStyle
muxc:Slider MaterialSliderStyle <br> MaterialSecondarySliderStyle
TextBlock MaterialHeadline1 <br> MaterialHeadline2 <br> MaterialHeadline3 <br> MaterialHeadline4 <br> MaterialHeadline5 <br> MaterialHeadline6 <br> MaterialSubtitle1 <br> MaterialSubtitle2 <br> MaterialBody1 <br> MaterialBody2 <br> MaterialButtonText <br> MaterialCaption <br> MaterialOverline
TextBox MaterialFilledTextBoxStyle <br> MaterialOutlinedTextBoxStyle
ToggleButton MaterialTextToggleButtonStyle <br> MaterialToggleButtonIconStyle
ToggleSwitch MaterialToggleSwitchStyle <br> MaterialSecondaryToggleSwitchStyle

Controls Setup (Specialized)

ToggleSwitch

If you are using our ToggleSwitches to get the proper native colors on android their is some modification needed. The reasoning for this is to apply the native android shadowing on the off value of the ToggleSwitch, and proper focus shadow colors when ToggleSwitches are clicked

  1. From your Android project head go to YourProject.Droid/Resources/values/Styles.xml Inside your AppTheme add two item's "colorControlActivated" (the on color for your ToggleSwitches thumb) and "colorSwitchThumbNormal" (the off color for your ToggleSwitches thumb) you may add your colors here directly, for example #ffffff, or by files (see our example code below)
<?xml version="1.0" encoding="utf-8" ?>
<resources>
	<style name="AppTheme" parent="Theme.AppCompat.Light">

		
		<item name="colorControlActivated">@color/MaterialPrimaryColor</item>
		<item name="colorSwitchThumbNormal">@color/MaterialSurfaceVariantColor</item>
	</style>
</resources>

  1. (Optional) If your application uses Light/Dark color palettes. 2.1 Inside the Styles.xml file change the AppTheme's parent to Theme.Compat.DayNight
<?xml version="1.0" encoding="utf-8" ?>
<resources>
	<style name="AppTheme" parent="Theme.AppCompat.DayNight">

		
		<item name="colorControlActivated">@color/MaterialPrimaryColor</item>
		<item name="colorSwitchThumbNormal">@color/MaterialSurfaceVariantColor</item>
	</style>
</resources>

2.2 From your Android project head go to YourProject.Droid/Resources/values create a file called "colors.xml", inside include your "Light" theme colors.

<?xml version="1.0" encoding="utf-8" ?>
<resources>
	<color name="MaterialPrimaryColor">#5B4CF5</color>
	
	<color name="MaterialSurfaceVariantColor">#FFFFFF</color>
</resources>

2.3 From your Android project head go to YourProject.Droid/Resources create a folder called "values-night", inside the folder add a file called "colors.xml", and inside the file include your "Dark" theme colors.

<?xml version="1.0" encoding="utf-8" ?>
<resources>
	<color name="MaterialPrimaryColor">#B6A8FB</color>
	
	 <color name="MaterialSurfaceVariantColor">#808080</color>
</resources>

2.3 (Optional) If you have changed the material color palette for your application (2.) then there are two more colors that must be overridden for android native ToggleSwitch disabled colors to be properly applied. Colors are named PrimaryVariantDisabledThumbColor and SurfaceVariantLightColor, they can be overridden in your colors.xaml file. PrimaryVariantDisabledThumbColor is a non-transparent version of PrimaryDisabled color ("Light") in "Light" palette, and a non-transparent version of PrimaryMedium color ("Dark") in "Dark" palette. SurfaceVariantLightColor is the Surface color however in "Light" Palette is an off white color to be visible on light backgrounds.


	<ResourceDictionary.ThemeDictionaries>

		
		<ResourceDictionary x:Key="Light">
			
			<Color x:Key="PrimaryVariantDisabledThumbColor">#E9E5FA</Color>
			
			<Color x:Key="SurfaceVariantLightColor">#F7F7F7</Color>
		</ResourceDictionary>

		
		<ResourceDictionary x:Key="Dark">
			
			<Color x:Key="PrimaryVariantDisabledThumbColor">#57507C</Color>
			<Color x:Key="SurfaceVariantLightColor">#121212</Color>
		</ResourceDictionary>
	</ResourceDictionary.ThemeDictionaries>

DatePickers and TimePickers

If your application uses DatePickers and/or TimePickers (these are native components). To apply your material colors to these android components, do the following (this will affect every DatePicker/TimePicker in the application).

  1. From your Android project head go to YourProject.Droid/Resources/values/Styles.xml Inside your AppTheme add two item's "datePickerDialogTheme" (the style for your DatePicker) and "timePickerDialogTheme" (the style for your TimePicker), and a new Style with the MaterialPrimary Color as AccentColor (see our example code below)
<?xml version="1.0" encoding="utf-8" ?>
<resources>
	<style name="AppTheme" parent="Theme.AppCompat.Light">

		
		<item name="android:datePickerDialogTheme">@style/AppCompatDialogStyle</item>
		<item name="android:timePickerDialogTheme">@style/AppCompatDialogStyle</item>
	</style>

	<style name="AppCompatDialogStyle" parent="Theme.AppCompat.Light.Dialog">
		<item name="colorAccent">@color/MaterialPrimaryColor</item>
	</style>
</resources>

  1. (Optional) If your application uses Light/Dark color palettes. 2.1 Inside the Styles.xml file change the AppTheme's parent of both styles to Theme.Compat.DayNight
<?xml version="1.0" encoding="utf-8" ?>
<resources>
	<style name="AppTheme" parent="Theme.AppCompat.DayNight">

		
		<item name="android:datePickerDialogTheme">@style/AppCompatDialogStyle</item>
		<item name="android:timePickerDialogTheme">@style/AppCompatDialogStyle</item>
	</style>

	<style name="AppCompatDialogStyle" parent="Theme.AppCompat.DayNight.Dialog">
		<item name="colorAccent">@color/MaterialPrimaryColor</item>
	</style>
</resources>

2.2 From your Android project head go to YourProject.Droid/Resources/values create a file called "colors.xml", inside include your "Light" theme colors.

<?xml version="1.0" encoding="utf-8" ?>
<resources>
	<color name="MaterialPrimaryColor">#5B4CF5</color>
</resources>

2.3 From your Android project head go to YourProject.Droid/Resources create a folder called "values-night", inside the folder add a file called "colors.xml", and inside the file include your "Dark" theme colors.

<?xml version="1.0" encoding="utf-8" ?>
<resources>
	<color name="MaterialPrimaryColor">#B6A8FB</color>
</resources>

Migration

1.0 to 1.1

  • Color Palette Override

    Now you have the possibility to override the Material color palette with your own color palette. See the #Getting Started section for more details.

      <MaterialColors xmlns="using:Uno.Material"
      				OverrideSource="ms-appx:///ColorPaletteOverride.xaml" />
    
  • Namespace breaking changes

    BREAKING CHANGE: Everything (controls, extensions, converters, ...), previously under Uno.Material.* or Uno.Cupertino.*, has now been moved under Uno.Material or Uno.Cupertino.

      xmlns:um="using:Uno.Material"
      xmlns:uc="using:Uno.Cupertino"
    
  • Some controls have been moved to Uno.Toolkit.UI

    List of the controls and styles that have been moved to Uno.Toolkit.UI:

    Controls StyleNames
    Card MaterialOutlinedCardStyle <br> MaterialElevatedCardStyle <br> MaterialAvatarOutlinedCardStyle <br> MaterialAvatarElevatedCardStyle <br> MaterialSmallMediaOutlinedCardStyle <br> MaterialSmallMediaElevatedCardStyle
    Chip MaterialFilledInputChipStyle<br>MaterialFilledChoiceChipStyle<br>MaterialFilledFilterChipStyle<br>MaterialFilledActionChipStyle<br>MaterialOutlinedInputChipStyle<br>MaterialOutlinedChoiceChipStyle<br>MaterialOutlinedFilterChipStyle<br>MaterialOutlinedActionChipStyle
    ChipGroup MaterialFilledInputChipGroupStyle<br>MaterialFilledChoiceChipGroupStyle<br>MaterialFilledFilterChipGroupStyle<br>MaterialFilledActionChipGroupStyle<br>MaterialOutlinedInputChipGroupStyle<br>MaterialOutlinedChoiceChipGroupStyle<br>MaterialOutlinedFilterChipGroupStyle<br>MaterialOutlinedActionChipGroupStyle
    Divider MaterialDividerStyle
  • Some controls have been removed

    List of the controls and styles that have been removed from Uno.Themes:

    Controls StyleNames
    BottomNavigationBar MaterialBottomNavigationBarStyle
    ExpandingBottomSheet MaterialExpandingBottomSheetStyle
    ModalStandardBottomSheet MaterialModalStandardBottomSheetStyle
    StandardBottomSheet MaterialStandardBottomSheetStyle
    SnackBar MaterialSnackBarStyle
    • BottomNavigationBar was replaced by TabBar in Uno.Toolkit.UI, but it is not an exact 1:1 replacement. In the mean time, if you really need the badge and/or other customizability, two options are available:

      Import locally the old sources (control + style) from Uno.Themes;

      OR

      Copy the MaterialBottomTabBarItemStyle from Uno.Toolkit.UI, and modify the style to suit your needs. (Note that there are two copies of the style, one for iOS and Android and one for rest of the platforms: UWP, Skia, WASM, etc...);

    • For StandardBottomSheet and ModalStandardBottomSheet It's replaced by using a Flyout and the MaterialFlyoutPresenterStyle that is allowing you to have a bottom sheet.

      For example:

        <Flyout Placement="Full"
              LightDismissOverlayMode="On"
              FlyoutPresenterStyle="{StaticResource MaterialFlyoutPresenterStyle}">
        	<Grid MaxHeight="370"
        		  VerticalAlignment="Bottom">
        		...Your bottom sheet content...
        	</Grid>
        </Flyout>
      
    • For SnackBar: so far no replacement for SnackBar has been added to Uno.Toolkit.UI, but it's planned to add one in a future version.

Changelog

Please consult the CHANGELOG for more information about version history.

License

This project is licensed under the Apache 2.0 license - see the LICENSE file for details.

Contributing

Please read CONTRIBUTING.md for details on the process for contributing to this project.

Be mindful of our Code of Conduct.

Acknowledgments

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed.  monoandroid11.0 is compatible. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Universal Windows Platform uap10.0.18362 is compatible. 
Xamarin.iOS xamarinios was computed.  xamarinios10 is compatible. 
Xamarin.Mac xamarinmac was computed.  xamarinmac20 is compatible. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Uno.Material:

Package Downloads
Uno.Toolkit.UI.Material

A set of controls for Uno Platform, UWP and WinUI

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Uno.Material:

Repository Stars
unoplatform/Uno.Samples
A collection of code samples for the Uno Platform
Version Downloads Last updated
5.2.0-dev.13 44 7/16/2024
5.2.0-dev.11 31 7/15/2024
5.2.0-dev.9 342 6/25/2024
5.2.0-dev.7 53 6/20/2024
5.2.0-dev.5 41 6/20/2024
5.2.0-dev.3 40 6/19/2024
5.2.0-dev.2 43 6/18/2024
5.2.0-dev.1 35 6/17/2024
5.1.0-dev.36 197 6/4/2024
5.1.0-dev.35 78 6/4/2024
5.1.0-dev.33 143 5/30/2024
5.1.0-dev.31 219 5/23/2024
5.1.0-dev.29 49 5/23/2024
5.1.0-dev.26 221 5/13/2024
5.1.0-dev.25 40 5/13/2024
5.1.0-dev.24 70 5/11/2024
5.1.0-dev.23 94 5/9/2024
5.1.0-dev.19 261 4/23/2024
5.1.0-dev.18 157 4/16/2024
5.1.0-dev.16 42 4/16/2024
5.1.0-dev.13 95 4/13/2024
5.1.0-dev.12 56 4/12/2024
5.1.0-dev.11 57 4/11/2024
5.1.0-dev.10 45 4/11/2024
5.1.0-dev.8 86 4/8/2024
5.0.13 399 4/22/2024
5.0.0-dev.86 174 4/3/2024
4.2.0-dev.31 51 4/3/2024
4.2.0-dev.30 95 3/28/2024
4.2.0-dev.26 105 3/25/2024
4.2.0-dev.25 72 3/22/2024
4.2.0-dev.24 46 3/22/2024
4.2.0-dev.19 383 3/2/2024
4.2.0-dev.18 122 2/25/2024
4.2.0-dev.17 2,942 2/13/2024
4.2.0-dev.12 151 2/7/2024
4.2.0-dev.11 142 2/6/2024
4.2.0-dev.10 71 2/5/2024
4.2.0-dev.9 223 2/1/2024
4.2.0-dev.6 157 1/31/2024
4.2.0-dev.5 72 1/30/2024
4.2.0-dev.2 56 1/29/2024
4.2.0-dev.1 46 1/29/2024
4.1.1 202 2/2/2024
4.1.0 351 1/30/2024
4.1.0-dev.52 104 1/24/2024
4.1.0-dev.50 47 1/24/2024
4.1.0-dev.49 189 1/12/2024
4.1.0-dev.45 365 12/20/2023
4.1.0-dev.43 66 12/20/2023
4.1.0-dev.39 840 12/13/2023
4.1.0-dev.35 164 12/6/2023
4.1.0-dev.33 87 12/5/2023
4.1.0-dev.32 88 12/4/2023
4.1.0-dev.31 119 12/1/2023
4.1.0-dev.30 88 11/29/2023
4.1.0-dev.29 183 11/21/2023
4.1.0-dev.28 96 11/18/2023
4.1.0-dev.27 81 11/17/2023
4.1.0-dev.26 58 11/16/2023
4.1.0-dev.25 62 11/16/2023
4.1.0-dev.24 996 11/13/2023
4.1.0-dev.19 186 11/6/2023
4.1.0-dev.17 60 11/6/2023
4.1.0-dev.15 62 11/6/2023
4.1.0-dev.8 141 11/3/2023
4.1.0-dev.7 66 11/3/2023
4.1.0-dev.1 158 10/30/2023
4.0.6 245 11/7/2023
4.0.4 813 11/1/2023
4.0.0-dev.188 115 10/27/2023
4.0.0-dev.187 67 10/27/2023
4.0.0-dev.186 89 10/26/2023
4.0.0-dev.184 69 10/26/2023
4.0.0-dev.183 81 10/26/2023
4.0.0-dev.182 122 10/24/2023
4.0.0-dev.180 289 10/13/2023
4.0.0-dev.178 141 10/10/2023
4.0.0-dev.175 69 10/10/2023
4.0.0-dev.174 157 10/6/2023
4.0.0-dev.167 113 10/4/2023
4.0.0-dev.166 62 10/4/2023
4.0.0-dev.164 89 10/3/2023
4.0.0-dev.162 91 10/2/2023
4.0.0-dev.161 111 9/30/2023
4.0.0-dev.160 91 9/29/2023
4.0.0-dev.159 69 9/29/2023
4.0.0-dev.157 71 9/29/2023
4.0.0-dev.156 82 9/29/2023
4.0.0-dev.152 64 9/28/2023
4.0.0-dev.151 65 9/28/2023
4.0.0-dev.150 64 9/28/2023
4.0.0-dev.149 69 9/28/2023
4.0.0-dev.148 59 9/28/2023
4.0.0-dev.147 67 9/28/2023
4.0.0-dev.146 105 9/26/2023
4.0.0-dev.140 136 9/22/2023
4.0.0-dev.139 85 9/20/2023
4.0.0-dev.126 441 8/30/2023
4.0.0-dev.124 132 8/30/2023
3.1.0-dev.96 1,630 8/31/2023
3.1.0-dev.94 102 8/30/2023
3.0.40 434 9/6/2023
2.8.0-dev.6 402 8/30/2023
2.8.0-dev.2 118 8/29/2023
2.7.0-dev.104 302 8/16/2023
2.7.0-dev.102 581 8/16/2023
2.7.0-dev.99 85 8/15/2023
2.7.0-dev.97 212 8/11/2023
2.7.0-dev.95 84 8/11/2023
2.7.0-dev.89 95 8/10/2023
2.7.0-dev.88 115 8/7/2023
2.7.0-dev.86 84 8/7/2023
2.7.0-dev.84 92 8/7/2023
2.7.0-dev.81 94 8/7/2023
2.7.0-dev.61 86 8/7/2023
2.7.0-dev.59 131 8/4/2023
2.7.0-dev.56 99 8/3/2023
2.7.0-dev.54 94 8/3/2023
2.7.0-dev.53 154 8/1/2023
2.7.0-dev.47 97 8/1/2023
2.7.0-dev.45 99 8/1/2023
2.7.0-dev.41 116 7/31/2023
2.7.0-dev.39 306 7/26/2023
2.7.0-dev.37 96 7/26/2023
2.7.0-dev.35 89 7/25/2023
2.7.0-dev.33 101 7/24/2023
2.7.0-dev.31 99 7/24/2023
2.7.0-dev.29 102 7/24/2023
2.7.0-dev.27 93 7/24/2023
2.7.0-dev.25 85 7/14/2023
2.7.0-dev.23 89 7/12/2023
2.7.0-dev.21 126 6/29/2023
2.7.0-dev.20 89 6/27/2023
2.7.0-dev.19 80 6/27/2023
2.7.0-dev.18 107 6/19/2023
2.7.0-dev.17 93 6/16/2023
2.7.0-dev.16 97 6/14/2023
2.7.0-dev.15 93 6/13/2023
2.7.0-dev.13 82 6/13/2023
2.7.0-dev.12 86 6/12/2023
2.7.0-dev.11 162 6/7/2023
2.7.0-dev.10 82 6/7/2023
2.7.0-dev.8 92 6/7/2023
2.7.0-dev.7 89 6/5/2023
2.7.0-dev.6 84 6/5/2023
2.7.0-dev.5 90 6/2/2023
2.7.0-dev.2 99 5/30/2023
2.7.0-dev.1 90 5/30/2023
2.6.1 369 6/7/2023
2.6.0 2,479 6/5/2023
2.6.0-dev.25 361 5/28/2023
2.6.0-dev.24 115 5/25/2023
2.6.0-dev.21 92 5/25/2023
2.6.0-dev.19 182 5/16/2023
2.6.0-dev.17 228 5/4/2023
2.6.0-dev.14 478 3/28/2023
2.6.0-dev.5 195 3/16/2023
2.6.0-dev.2 150 3/13/2023
2.5.3 3,293 3/16/2023
2.5.2 202 3/16/2023
2.5.0-dev.44 124 3/10/2023
2.5.0-dev.43 127 3/9/2023
2.5.0-dev.41 134 3/8/2023
2.5.0-dev.40 160 3/4/2023
2.5.0-dev.39 130 3/2/2023
2.5.0-dev.38 147 2/28/2023
2.5.0-dev.37 1,381 2/23/2023
2.5.0-dev.34 216 2/22/2023
2.5.0-dev.31 144 2/17/2023
2.5.0-dev.26 115 2/16/2023
2.5.0-dev.20 131 2/15/2023
2.5.0-dev.19 159 2/8/2023
2.5.0-dev.15 567 1/23/2023
2.5.0-dev.14 215 1/13/2023
2.5.0-dev.10 127 1/12/2023
2.5.0-dev.6 149 12/31/2022
2.5.0-dev.3 131 12/23/2022
2.5.0-dev.1 122 12/22/2022
2.4.1 3,087 12/13/2022
2.4.0-dev.68 290 11/24/2022
2.4.0-dev.66 92 11/23/2022
2.4.0-dev.64 122 11/17/2022
2.4.0-dev.62 156 11/7/2022
2.4.0-dev.60 111 11/3/2022
2.4.0-dev.59 92 11/3/2022
2.4.0-dev.57 97 11/3/2022
2.4.0-dev.53 104 11/2/2022
2.4.0-dev.46 134 11/1/2022
2.4.0-dev.42 131 10/27/2022
2.4.0-dev.40 103 10/27/2022
2.4.0-dev.38 148 10/20/2022
2.4.0-dev.33 757 10/6/2022
2.4.0-dev.31 499 9/30/2022
2.4.0-dev.29 96 9/30/2022
2.4.0-dev.26 108 9/29/2022
2.4.0-dev.24 93 9/29/2022
2.4.0-dev.19 160 9/22/2022
2.4.0-dev.17 107 9/21/2022
2.4.0-dev.13 132 9/15/2022
2.4.0-dev.11 159 9/14/2022
2.4.0-dev.7 141 9/14/2022
2.3.0 6,607 9/12/2022
2.3.0-dev.20 109 9/9/2022
2.3.0-dev.17 100 9/9/2022
2.3.0-dev.12 1,809 8/31/2022
2.3.0-dev.10 92 8/31/2022
2.3.0-dev.8 96 8/30/2022
2.3.0-dev.6 3,844 8/12/2022
2.3.0-dev.4 717 7/22/2022
2.2.0 1,398 6/29/2022
2.2.0-dev.7 123 6/28/2022
2.2.0-dev.5 146 6/20/2022
2.2.0-dev.2 126 6/17/2022
2.1.0 3,733 6/10/2022
2.1.0-dev.51 124 6/10/2022
2.1.0-dev.48 131 6/8/2022
2.1.0-dev.46 115 6/8/2022
2.1.0-dev.44 123 6/8/2022
2.1.0-dev.42 110 6/7/2022
2.1.0-dev.40 599 6/7/2022
2.1.0-dev.37 153 6/3/2022
2.1.0-dev.35 115 6/3/2022
2.1.0-dev.33 111 6/3/2022
2.1.0-dev.31 135 6/3/2022
2.1.0-dev.29 121 6/3/2022
2.1.0-dev.27 126 6/2/2022
2.1.0-dev.25 117 6/2/2022
2.1.0-dev.23 106 6/2/2022
2.1.0-dev.20 114 6/2/2022
2.1.0-dev.18 116 6/2/2022
2.1.0-dev.16 114 6/1/2022
2.1.0-dev.13 114 6/1/2022
2.1.0-dev.11 122 6/1/2022
2.1.0-dev.9 116 6/1/2022
2.1.0-dev.5 155 5/24/2022
2.1.0-dev.2 111 5/23/2022
2.0.0 854 5/23/2022
2.0.0-dev.228 112 5/23/2022
2.0.0-dev.226 117 5/23/2022
2.0.0-dev.224 109 5/23/2022
2.0.0-dev.222 111 5/23/2022
2.0.0-dev.220 119 5/23/2022
2.0.0-dev.218 112 5/23/2022
2.0.0-dev.216 158 5/21/2022
2.0.0-dev.214 106 5/21/2022
2.0.0-dev.210 359 5/20/2022
2.0.0-dev.208 117 5/20/2022
2.0.0-dev.206 116 5/19/2022
2.0.0-dev.204 113 5/19/2022
2.0.0-dev.203 116 5/19/2022
2.0.0-dev.201 173 5/13/2022
2.0.0-dev.198 113 5/13/2022
2.0.0-dev.195 376 5/12/2022
2.0.0-dev.193 138 5/11/2022
2.0.0-dev.191 117 5/10/2022
2.0.0-dev.189 124 5/10/2022
2.0.0-dev.187 110 5/9/2022
2.0.0-dev.185 111 5/9/2022
2.0.0-dev.183 117 5/3/2022
2.0.0-dev.181 172 4/28/2022
2.0.0-dev.179 464 4/28/2022
2.0.0-dev.177 118 4/27/2022
2.0.0-dev.175 127 4/25/2022
2.0.0-dev.172 207 4/22/2022
2.0.0-dev.170 117 4/22/2022
2.0.0-dev.168 142 4/21/2022
2.0.0-dev.166 119 4/21/2022
2.0.0-dev.164 123 4/21/2022
2.0.0-dev.162 118 4/20/2022
2.0.0-dev.156 127 4/16/2022
2.0.0-dev.154 201 4/14/2022
2.0.0-dev.152 123 4/14/2022
2.0.0-dev.150 117 4/13/2022
2.0.0-dev.146 117 4/13/2022
1.4.0-dev.34 444 4/12/2022
1.4.0-dev.30 905 3/31/2022
1.4.0-dev.21 119 3/30/2022
1.4.0-dev.17 260 3/25/2022
1.4.0-dev.12 276 3/24/2022
1.4.0-dev.6 438 3/8/2022
1.3.3 6,392 4/12/2022
1.3.2 132 4/11/2022
1.3.1 989 3/9/2022
1.3.0-dev.19 3,875 1/10/2022
1.3.0-dev.17 153 1/4/2022
1.3.0-dev.12 140 1/3/2022
1.3.0-dev.4 257 12/17/2021
1.2.0 3,454 12/15/2021
1.2.0-dev.15 183 12/15/2021
1.2.0-dev.13 196 12/15/2021
1.2.0-dev.8 220 12/8/2021
1.2.0-dev.6 298 12/8/2021
1.2.0-dev.4 198 12/7/2021
1.2.0-dev.2 205 12/7/2021
1.1.0 290 12/6/2021
1.1.0-dev.70 638 12/2/2021
1.1.0-dev.68 189 12/2/2021
1.1.0-dev.66 1,435 12/1/2021
1.1.0-dev.64 1,285 11/29/2021
1.1.0-dev.62 1,820 11/26/2021
1.1.0-dev.57 3,209 11/25/2021
1.1.0-dev.55 2,751 11/25/2021
1.1.0-dev.53 2,987 11/24/2021
1.1.0-dev.51 2,727 11/24/2021
1.1.0-dev.49 3,983 11/24/2021
1.1.0-dev.47 3,212 11/24/2021
1.1.0-dev.45 2,963 11/24/2021
1.1.0-dev.43 5,647 11/23/2021
1.1.0-dev.41 199 11/23/2021
1.1.0-dev.39 196 11/23/2021
1.1.0-dev.37 300 11/22/2021
1.1.0-dev.35 508 11/21/2021
1.1.0-dev.33 493 11/21/2021
1.1.0-dev.31 782 11/19/2021
1.1.0-dev.29 699 11/19/2021
1.1.0-dev.27 220 11/19/2021
1.1.0-dev.25 276 11/19/2021
1.1.0-dev.22 193 11/19/2021
1.1.0-dev.19 268 11/19/2021
1.1.0-dev.17 251 11/18/2021
1.1.0-dev.15 286 11/17/2021
1.1.0-dev.13 358 11/15/2021
1.1.0-dev.11 195 11/15/2021
1.1.0-dev.9 227 11/15/2021
1.1.0-dev.7 499 11/9/2021
1.1.0-dev.5 260 10/29/2021
1.0.3 544 11/3/2021
1.0.2 5,219 11/2/2021
1.0.0-dev.851 268 10/28/2021
1.0.0-dev.848 209 10/27/2021
1.0.0-dev.846 245 10/26/2021
1.0.0-dev.844 206 10/25/2021
1.0.0-dev.842 818 10/20/2021
1.0.0-dev.840 224 10/20/2021
1.0.0-dev.838 703 10/15/2021
1.0.0-dev.836 192 10/14/2021
1.0.0-dev.834 557 10/7/2021
1.0.0-dev.832 935 10/4/2021
1.0.0-dev.830 453 9/29/2021
1.0.0-dev.827 1,193 9/16/2021
1.0.0-dev.825 3,186 9/14/2021
1.0.0-dev.823 314 9/8/2021
1.0.0-dev.812 10,547 9/3/2021
1.0.0-dev.810 644 8/27/2021
1.0.0-dev.802 350 8/6/2021
1.0.0-dev.796 1,104 8/4/2021
1.0.0-dev.794 226 8/4/2021
1.0.0-dev.792 227 8/4/2021
1.0.0-dev.790 2,444 7/29/2021
1.0.0-dev.788 1,752 7/14/2021
1.0.0-dev.786 908 7/13/2021
1.0.0-dev.784 1,204 6/14/2021
1.0.0-dev.782 300 6/10/2021
1.0.0-dev.780 783 6/9/2021
1.0.0-dev.778 2,016 6/8/2021
1.0.0-dev.774 523 6/7/2021
1.0.0-dev.772 439 6/1/2021
1.0.0-dev.770 311 5/31/2021
1.0.0-dev.766 315 5/26/2021
1.0.0-dev.764 224 5/19/2021
1.0.0-dev.762 214 5/19/2021
1.0.0-dev.760 307 5/7/2021
1.0.0-dev.758 260 5/5/2021
1.0.0-dev.755 220 5/4/2021
1.0.0-dev.753 244 4/30/2021
1.0.0-dev.751 626 4/29/2021
1.0.0-dev.746 3,085 4/26/2021
1.0.0-dev.744 233 4/26/2021
1.0.0-dev.742 633 4/9/2021
1.0.0-dev.738 238 4/7/2021
1.0.0-dev.736 1,063 3/24/2021
1.0.0-dev.734 285 3/23/2021
1.0.0-dev.732 778 3/19/2021
1.0.0-dev.726 247 3/19/2021
1.0.0-dev.715 316 3/17/2021
1.0.0-dev.674 258 3/4/2021
1.0.0-dev.637 691 2/26/2021
1.0.0-dev.625 271 2/16/2021
1.0.0-dev.612 795 2/10/2021
1.0.0-dev.603 448 2/9/2021
1.0.0-dev.600 291 2/8/2021
1.0.0-dev.598 3,231 2/5/2021
1.0.0-dev.592 3,223 1/28/2021
1.0.0-dev.589 1,541 1/20/2021
1.0.0-dev.585 298 1/12/2021
1.0.0-dev.578 20,231 10/29/2020
1.0.0-dev.515 2,390 8/12/2020
1.0.0-dev.507 920 8/12/2020

#  (2022-03-08)