3.0.1 • Published 4 days ago

@biopassid/face-sdk-react-native v3.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
4 days ago

React Native NPM Instagram BioPass ID Contact us

Key features

  • Face Detection
    • We ensure that there will be only one face in the capture.
  • Face Positioning
    • Ensure face position in your capture for better enroll and match.
  • Auto Capture
    • When a face is detected the capture will be performed in how many seconds you configure.
  • Resolution Control
    • Configure the image size thinking about the tradeoff between image quality and API's response time.
  • Aspect Ratio Control
  • Fully customizable interface

Customizations

Increase the security of your applications without harming your user experience.

All customization available:

  • Title Text
  • Help Text
  • Loading Text
  • Font Family
  • Face Frame
  • Overlay
  • Default Camera
  • Capture button

Enable or disable components:

  • Tittle text
  • Help Text
  • Capture button
  • Button icons
  • Flip Camera button
  • Flash button

Change all colors:

  • Overlay color and opacity
  • Capture button color
  • Capture button text color
  • Flip Camera color
  • Flash Button color
  • Text colors

Quick Start Guide

First, you will need a license key to use the SDK. To get your license key contact us through our website BioPass ID.

Check out our official documentation for more in depth information on BioPass ID.

1. Prerequisites:

AndroidiOS
SupportSDK 24+iOS 14+
- A device with a camera
- License key
- Internet connection is required to verify the license

2. Installation

npm install @biopassid/face-sdk-react-native

Android

Change the minimum Android sdk version to 24 (or higher) in your android/app/build.gradle file.

minSdkVersion 24

iOS

Requires iOS 14.0 or higher.

Add to the ios/Info.plist:

  • the key Privacy - Camera Usage Description and a usage description.

If editing Info.plist as text, add:

<key>NSCameraUsageDescription</key>
<string>Your camera usage description</string>

Then go into your project's ios folder and run pod install.

# Go into ios folder
$ cd ios

# Install dependencies
$ pod install

Privacy manifest file

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>NSPrivacyCollectedDataTypes</key>
	<array>
		<dict>
			<key>NSPrivacyCollectedDataType</key>
			<string>NSPrivacyCollectedDataTypeOtherUserContent</string>
			<key>NSPrivacyCollectedDataTypeLinked</key>
			<false/>
			<key>NSPrivacyCollectedDataTypeTracking</key>
			<false/>
			<key>NSPrivacyCollectedDataTypePurposes</key>
			<array>
				<string>NSPrivacyCollectedDataTypePurposeAppFunctionality</string>
			</array>
		</dict>
		<dict>
			<key>NSPrivacyCollectedDataType</key>
			<string>NSPrivacyCollectedDataTypeDeviceID</string>
			<key>NSPrivacyCollectedDataTypeLinked</key>
			<false/>
			<key>NSPrivacyCollectedDataTypeTracking</key>
			<false/>
			<key>NSPrivacyCollectedDataTypePurposes</key>
			<array>
				<string>NSPrivacyCollectedDataTypePurposeAppFunctionality</string>
			</array>
		</dict>
	</array>
	<key>NSPrivacyTracking</key>
	<false/>
	<key>NSPrivacyAccessedAPITypes</key>
	<array>
		<dict>
			<key>NSPrivacyAccessedAPITypeReasons</key>
			<array>
				<string>CA92.1</string>
			</array>
			<key>NSPrivacyAccessedAPIType</key>
			<string>NSPrivacyAccessedAPICategoryUserDefaults</string>
		</dict>
	</array>
</dict>
</plist>

Expo

3. How to use

Basic Example

To call Face in your React Native project is as easy as follow:

import React from "react";
import { StyleSheet, View, Button } from "react-native";
import { useFace } from "@biopassid/face-sdk-react-native";

export default function App() {
  const { takeFace } = useFace();

  async function onPress() {
    await takeFace({
      config: { licenseKey: "your-license-key" },
      onFaceCapture: (image: string) => {
        console.log("Image: ", image.substring(0, 20));
      },
    });
  }

  return (
    <View style={styles.container}>
      <Button onPress={onPress} title="Capture Face" />
    </View>
  );
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    alignItems: "center",
    justifyContent: "center",
    backgroundColor: '#FFFFFF',
  },
});

Example using Fetch API to call the BioPass ID API

For this example we used the Enroll from the Multibiometrics plan.

Here, you will need an API key to be able to make requests to the BioPass ID API. To get your API key contact us through our website BioPass ID.

import React from "react";
import { StyleSheet, View, Button } from "react-native";
import { useFace } from "@biopassid/face-sdk-react-native";

export default function App() {
  const { takeFace } = useFace();

  function onFaceCapture(image: string) {
     // Create headers passing your api key
    const headers = {
      "Content-Type": "application/json",
      "Ocp-Apim-Subscription-Key": "your-api-key",
    };

    // Create json body
    const body = JSON.stringify({
      Person: {
        CustomID: "your-customID",
        Face: [{"Face-1": image}],
      },
    });

    // Execute request to BioPass ID API
    const response = await fetch(
      "https://api.biopassid.com/multibiometrics/enroll",
      {
        method: "POST",
        headers,
        body,
      },
    );
    const data = await response.json();

    // Handle API response
    console.log("Response status: ", response.status);
    console.log("Response body: ", data);
  }

  async function onPress() {
    await takeFace({
      config: { licenseKey: "your-license-key" },
      onFaceCapture,
    });
  }

  return (
    <View style={styles.container}>
      <Button onPress={onPress} title="Capture Face" />
    </View>
  );
};

const styles = StyleSheet.create({
  container: {
    flex: 1,
    alignItems: "center",
    justifyContent: "center",
    backgroundColor: "#FFFFFF",
  },
});

4. LicenseKey

First, you will need a license key to use the SDK. To get your license key contact us through our website BioPass ID.

To use Face you need a license key. To set the license key needed is simple as setting another attribute. Simply doing:

const config: FaceConfig = {
  licenseKey: "your-license-key",
};

5. Getting face capture

You can pass a function callback to receive the captured image. Images are returned in Base64 string format. You can write you own callback following this example:

function onFaceCapture(image: string) {
  console.log("Image: ", image.substring(0, 20));
}

async function onPress() {
  await takeFace({
    config: { licenseKey: "your-license-key" },
    onFaceCapture,
  });
}

6. Continuous capture

You can use continuous capture to capture multiple frames at once. In addition, you can set a maximum number of frames to be captured using maxNumberFrames. As well as the capture time with timeToCapture. Use continuous capture is as simple as setting another attribute. Simply by doing:

const config: FaceConfig = {
  licenseKey: "your-license-key",
  continuousCapture: {
    enabled: true,
    timeToCapture: 1000, // capture every frame per second, time in millisecond
    maxNumberFrames: 40,
  },
};

7. Face detection

With Face SDK you can use face detection to do face detection and automatic capture. Below you can see the options that are available for this functionality.

Auto capture

For automatic capture to work, autoCapture needs to be enabled. By default, autoCapture is already enabled. If autoCapture is disabled, automatic capture will be disabled and the responsibility for capturing will be the user's responsibility through a button. For continuous capture, autoCapture will be ignored and automatic capture will always occur. To set autoCapture is simple as setting another attribute. Simply doing:

const config: FaceConfig = {
  licenseKey: "your-license-key",
  faceDetection: { enabled: true, autoCapture: true },
};

Time to capture

TimeToCapture is a time in milliseconds that is triggered before the capture. To use timeToCapture, autoCapture needs to be on and a time in milliseconds needs to be passed to timeToCapture. By default, timeToCapture value is 3000ms. If timeToCapture is equal to zero, the capture will be instantaneous. To set timeToCapture is simple as setting another attribute. Simply doing:

const config: FaceConfig = {
  licenseKey: "your-license-key",
  faceDetection: {
    enabled: true,
    autoCapture: true,
    timeToCapture: 3000, // time in millisecond
  },
};

Max face detection time

You can use maxFaceDetectionTime to set a maximum time in milliseconds that face detection will be active. If after this time the SDK is unable to identify a face, face detection will be disabled and a capture button will be displayed, thus passing the capture responsibility to the user. The time will only start counting after a first detection attempt. By default, the value of maxFaceDetectionTime is 40000 ms. This functionality only affects single capture mode. Setting maxFaceDetectionTime is as simple as setting another attribute. Simply by doing:

const config: FaceConfig = {
  licenseKey: 'your-license-key',
  faceDetection: {
    enabled: true,
    maxFaceDetectionTime: 40000, // time in millisecond
  },
};

Score Threshold

Minimum trust score for a detection to be considered valid. Must be a number between 0 and 1, which 0.1 would be a lower face detection trust level and 0.9 would be a higher trust level. Default: 0.7. Simply by doing:

const config: FaceConfig = {
  licenseKey: 'your-license-key',
  faceDetection: {
    enabled: true,
    scoreThreshold: 0.7,
  },
};

FaceConfig

You can also use pre-build configurations on your application, so you can automatically start using multiples services and features that better suit your application. You can instantiate each one and use it's default properties, or if you prefer you can change every config available. Here are the types that are supported right now:

FaceConfig

NameType
licenseKeystring
resolutionPresetFaceResolutionPreset
lensDirectionFaceCameraLensDirection
imageFormatFaceImageFormat
flashEnabledboolean
fontFamilystring
continuousCaptureFaceContinuousCaptureOptions
faceDetectionFaceDetectionOptions
maskFaceMaskOptions
titleTextFaceTextOptions
loadingTextFaceTextOptions
helpTextFaceTextOptions
feedbackTextFaceFeedbackTextOptions
backButtonFaceButtonOptions
flashButtonFaceFlashButtonOptions
switchCameraButtonFaceButtonOptions
captureButtonFaceButtonOptions

Default configs:

const defaultConfig: FaceConfig = {
  licenseKey: "",
  resolutionPreset: FaceResolutionPreset.MEDIUM,
  lensDirection: FaceCameraLensDirection.FRONT,
  imageFormat: FaceImageFormat.JPEG,
  flashEnabled: false,
  fontFamily: "facesdk_opensans_bold",
  continuousCapture: {
    enabled: false,
    timeToCapture: 1000,
    maxNumberFrames: 40,
  },
  faceDetection: {
    enabled: true,
    autoCapture: true,
    multipleFacesEnabled: false,
    timeToCapture: 3000,
    maxFaceDetectionTime: 40000,
    scoreThreshold: 0.7,
  },
  mask: {
    enabled: true,
    type: FaceMaskFormat.FACE,
    backgroundColor: "#CC000000",
    frameColor: "#FFFFFF",
    frameEnabledColor: "#16AC81",
    frameErrorColor: "#E25353",
  },
  titleText: {
    enabled: true,
    content: "Capturando Face",
    textColor: "#FFFFFF",
    textSize: 20,
  },
  loadingText: {
    enabled: true,
    content: "Processando...",
    textColor: "#FFFFFF",
    textSize: 14,
  },
  helpText: {
    enabled: true,
    content: "Encaixe seu rosto no formato abaixo",
    textColor: "#FFFFFF",
    textSize: 14,
  },
  feedbackText: {
    enabled: true,
    messages: {
      noFaceDetectedMessage: "Nenhuma face detectada",
      multipleFacesDetectedMessage: "Múltiplas faces detectadas",
      detectedFaceIsCenteredMessage: "Mantenha o celular parado",
      detectedFaceIsTooCloseMessage: "Afaste o rosto da câmera",
      detectedFaceIsTooFarMessage: "Aproxime o rosto da câmera",
      detectedFaceIsOnTheLeftMessage: "Mova o celular para a direita",
      detectedFaceIsOnTheRightMessage: "Mova o celular para a esquerda",
      detectedFaceIsTooUpMessage: "Mova o celular para baixo",
      detectedFaceIsTooDownMessage: "Mova o celular para cima",
    },
    textColor: "#FFFFFF",
    textSize: 14,
  },
  backButton: {
    enabled: true,
    backgroundColor: "#00000000",
    buttonPadding: 0,
    buttonSize: { width: 56, height: 56 },
    iconOptions: {
      enabled: true,
      iconFile: "facesdk_ic_close",
      iconColor: "#FFFFFF",
      iconSize: { width: 32, height: 32 },
    },
    labelOptions: {
      enabled: false,
      content: "Voltar",
      textColor: "#FFFFFF",
      textSize: 14,
    },
  },
  flashButton: {
    enabled: false,
    backgroundColor: "#FFFFFF",
    buttonPadding: 0,
    buttonSize: { width: 56, height: 56 },
    flashOnIconOptions: {
      enabled: true,
      iconFile: "facesdk_ic_flash_on",
      iconColor: "#FFCC01",
      iconSize: { width: 32, height: 32 },
    },
    flashOnLabelOptions: {
      enabled: false,
      content: "Flash On",
      textColor: "#323232",
      textSize: 14,
    },
    flashOffIconOptions: {
      enabled: true,
      iconFile: "facesdk_ic_flash_off",
      iconColor: "#323232",
      iconSize: { width: 32, height: 32 },
    },
    flashOffLabelOptions: {
      enabled: false,
      content: "Flash Off",
      textColor: "#323232",
      textSize: 14,
    },
  },
  switchCameraButton: {
    enabled: true,
    backgroundColor: "#FFFFFF",
    buttonPadding: 0,
    buttonSize: { width: 56, height: 56 },
    iconOptions: {
      enabled: true,
      iconFile: "facesdk_ic_switch_camera",
      iconColor: "#323232",
      iconSize: { width: 32, height: 32 },
    },
    labelOptions: {
      enabled: false,
      content: "Trocar Câmera",
      textColor: "#323232",
      textSize: 14,
    },
  },
  captureButton: {
    enabled: true,
    backgroundColor: "#FFFFFF",
    buttonPadding: 0,
    buttonSize: { width: 56, height: 56 },
    iconOptions: {
      enabled: true,
      iconFile: "facesdk_ic_capture",
      iconColor: "#323232",
      iconSize: { width: 32, height: 32 },
    },
    labelOptions: {
      enabled: false,
      content: "Capturar",
      textColor: "#323232",
      textSize: 14,
    },
  },
};

FaceContinuousCaptureOptions

NameType
enabledboolean
timeToCapturenumber // time in milliseconds
maxNumberFramesnumber

FaceDetectionOptions

NameType
enabledboolean
autoCaptureboolean
multipleFacesEnabledboolean
timeToCapturenumber // time in milliseconds
maxFaceDetectionTimenumber // time in milliseconds
scoreThresholdnumber

FaceMaskOptions

NameType
enabledboolean
typeFaceMaskFormat
backgroundColorstring
frameColorstring
frameEnabledColorstring
frameErrorColorstring

FaceFeedbackTextOptions

NameType
enabledboolean
messagesFaceFeedbackTextMessages
textColorstring
textSizenumber

FaceFeedbackTextMessages

NameType
noFaceDetectedMessagestring
multipleFacesDetectedMessagestring
detectedFaceIsCenteredMessagestring
detectedFaceIsTooCloseMessagestring
detectedFaceIsTooFarMessagestring
detectedFaceIsOnTheLeftMessagestring
detectedFaceIsOnTheRightMessagestring
detectedFaceIsTooUpMessagestring
detectedFaceIsTooDownMessagestring

FaceFlashButtonOptions

NameType
enabledboolean
backgroundColorstring
buttonPaddingnumber
buttonSizeFaceSize
flashOnIconOptionsFaceIconOptions
flashOnLabelOptionsFaceTextOptions
flashOffIconOptionsFaceIconOptions
flashOffLabelOptionsFaceTextOptions

FaceButtonOptions

NameType
enabledboolean
backgroundColorstring
buttonPaddingnumber
buttonSizeFaceSize
iconOptionsFaceIconOptions
labelOptionsFaceTextOptions

FaceIconOptions

NameType
enabledboolean
iconFilestring
iconColorstring
iconSizeFaceSize

FaceTextOptions

NameType
enabledboolean
contentstring
textColorstring
textSizenumber

FaceCameraLensDirection (enum)

Name
FaceCameraLensDirection.FRONT
FaceCameraLensDirection.BACK

FaceImageFormat (enum)

Name
FaceImageFormat.JPEG
FaceImageFormat.PNG

FaceMaskFormat (enum)

Name
FaceScreenShape.FACE
FaceScreenShape.SQUARE
FaceScreenShape.ELLIPSE

FaceResolutionPreset (enum)

NameResolution
FaceResolutionPreset.LOW240p (352x288 on iOS, 320x240 on Android)
FaceResolutionPreset.MEDIUM480p (640x480 on iOS, 720x480 on Android)
FaceResolutionPreset.HIGH720p (1280x720)
FaceResolutionPreset.VERYHIGH1080p (1920x1080)
FaceResolutionPreset.ULTRAHIGH2160p (3840x2160)
FaceResolutionPreset.MAXThe highest resolution available

How to change font family

on Android side

You can use the default font family or set one of your own. To set a font, create a folder font under res directory in your android/app/src/main/res. Download the font which ever you want and paste it inside font folder. All font file names must be only: lowercase a-z, 0-9, or underscore. The structure should be some thing like below.

npm.io

on iOS side

To add the font files to your Xcode project:

  1. In Xcode, select the Project navigator.
  2. Drag your fonts from a Finder window into your project. This copies the fonts to your project.
  3. Select the font or folder with the fonts, and verify that the files show their target membership checked for your app’s targets.

npm.io

Then, add the "Fonts provided by application" key to your app’s Info.plist file. For the key’s value, provide an array of strings containing the relative paths to any added font files.

In the following example, the font file is inside the fonts directory, so you use fonts/roboto_mono_bold_italic.ttf as the string value in the Info.plist file.

npm.io

on JS side

Finally, just set the font passing the name of the font file when instantiating FaceConfig in your React Native app.

const config: FaceConfig = {
  licenseKey: "your-license-key",
  fontFamily: "roboto_mono_bold_italic",
};

How to change icon

on Android side

You can use the default icons or define one of your own. To set a icon, download the icon which ever you want and paste it inside drawable folder in your android/app/src/main/res. All icon file names must be only: lowercase a-z, 0-9, or underscore. The structure should be some thing like below.

npm.io

on iOS side

To add icon files to your Xcode project:

  1. In the Project navigator, select an asset catalog: a file with a .xcassets file extension.
  2. Drag an image from the Finder to the outline view. A new image set appears in the outline view, and the image asset appears in a well in the detail area.

npm.io

on JS side

Finally, just set the icon passing the name of the icon file when instantiating FaceConfig in your React Native app.

const config: FaceConfig = {
  licenseKey: "your-license-key",
  // Changing back button icon
  backButton: { iconOptions: { iconFile: "ic_baseline_camera" } },
  // Changing switch camera button icon
  switchCameraButton: { iconOptions: { iconFile: "ic_baseline_camera" } },
  // Changing capture button icon
  captureButton: { iconOptions: { iconFile: "ic_baseline_camera" } },
  // Changing flash button icon
  flashButton: {
    flashOnIconOptions: { iconFile: 'ic_baseline_camera' },
    flashOffIconOptions: { iconFile: 'ic_baseline_camera' },
  },
};

Something else

Do you like the Face SDK and would you like to know about our other products? We have solutions for fingerprint detection and digital signature capture.

Changelog

v3.0.1

  • Documentation update;
  • Upgrade to React Native 0.74;
  • Added privacy manifest info on iOS.

v3.0.0

  • Documentation update;
  • Changed the minimum Android sdk version from 21 to 24, see installation section;
  • Removed faceDetectionDisabledMessage from FaceFeedbackTextMessages;
  • Renamed FaceMaskFormat.ellipsis to FaceMaskFormat.ellipse;
  • Added new score threshold functionality to FaceDetectionOptions:
    • Minimum trust score for a detection to be considered valid. Must be a number between 0 and 1, which 0.1 would be a lower face detection trust level and 0.9 would be a higher trust level. Default: 0.7.

v2.1.6

  • Documentation update;
  • Bug fixes on Android.

v2.1.5

  • Documentation update;
  • Reverted change in facial proximity calculation on Android.

v2.1.4

  • Documentation update;
  • Fixed a bug that caused crash when perform multiple switch camera click requests simultaneously on Android;
  • Improved facial proximity calculation on Android.

v2.1.3

  • Documentation update;
  • Fixing bug that caused crash when clicking the back button while capturing the photo on Android.

v2.1.2

  • Documentation update;
  • Fixed a bug that caused the captured image to be different from the camera preview image on some devices.

v2.1.1

  • Documentation update;
  • Fixed a bug that left the face shape stretched on some devices.

v2.1.0

  • Documentation update;
  • Added screen brightness adjustment functionality during frontal captures.

v2.0.4

  • Documentation update;
  • Facial detection adjustment for Android.

v2.0.3

  • Documentation update;
  • Layout fixes for Android.

v2.0.2

  • Documentation update.

v2.0.1

  • Documentation update;
  • Bug fix in license functionality for Android;
  • Face detection improvements for Android;
  • Bug fix in camera preview for Android.

v2.0.0

  • Documentation update;
  • Refactoring in FaceConfig;
  • Refactoring in UI customization functionality.

v1.2.2

  • Documentation update;
  • Bug fixes and improvements.

v1.2.1

  • Documentation update;
  • Bug fix in maxFaceDetectionTime for Android.

v1.2.0

  • Documentation update;
  • Refactoring on autoCaptureTimeout:
    • Now the autoCaptureTimeout is called timeToCapture.
  • New feature maxFaceDetectionTime:
    • It is now possible to set a maximum time that face detection will be active.

v1.1.1

  • Documentation update.

v1.1.0

  • New feature maxNumberFrames:
    • It is now possible to set a maximum number of frames to be captured during continuous capture.
  • Documentation update.

v1.0.1

  • Documentation update;
  • Fixed a bug that caused the camera preview image to be stretched during continuous capture for Android;
  • Improved license functionality for iOS.

v1.0.0

  • Documentation update;
  • FaceCameraPreset Refactoring;
  • FaceEvent refactoring:
    • Now the photo is returned in Base64 string format.
  • Fix autoCaptute and autoCaptuteTimeout for iOS;
  • Fix CustomFonts feature for iOS.

v0.1.23

  • Documentation update;
  • New config option autoCaptureTimeout;
  • UI customization improvements:
    • Added FaceScreenShape with more face shape options;
    • Added progress animation during face detection.

v0.1.22

  • Bug fixes;
  • Documentation update.

v0.1.21

  • Bug fixes.

v0.1.20

  • New licensing feature.

v0.1.19

  • Bug fix.

v0.1.18

  • Bug fixes;
  • Flash mode fixes;
  • Face detection improvement;
  • New feature automatic capture;
  • UI customization improvements;
  • New feature face detection;
  • Camera preset fix;
  • Camera preview fix;
  • New icon capture button;
  • Fix in requesting permissions;
  • Fix in performance of ContinuousCapture;
  • Parameterizable screenTitle;
  • New option to set text color;
  • New custom capture button;
  • Class name standardization;
  • New option to set the font.

v0.1.13

  • Face Capture SDK for Android and iOS.
3.0.1

4 days ago

3.0.1-alpha.3

5 days ago

3.0.1-alpha.2

6 days ago

3.0.1-alpha.1

6 days ago

3.0.0

26 days ago

2.1.6

5 months ago

2.1.5

5 months ago

2.1.4

6 months ago

2.0.4-alpha.0

8 months ago

2.1.2

7 months ago

2.0.3

8 months ago

2.1.1

7 months ago

2.0.2

9 months ago

2.0.1-alpha.0

9 months ago

2.1.3

6 months ago

2.0.4

8 months ago

2.0.0-alpha.0

10 months ago

2.0.2-alpha.0

9 months ago

2.1.0

8 months ago

2.0.1

9 months ago

2.0.0

10 months ago

2.1.0-alpha.0

8 months ago

1.2.2-alpha.0

11 months ago

1.2.2

11 months ago

1.2.0

1 year ago

1.1.1

1 year ago

1.1.0

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago

1.2.1

1 year ago

1.0.0-alpha.8

1 year ago

1.0.0-alpha.7

1 year ago

1.0.0-alpha.6

1 year ago

1.0.1-alpha.0

1 year ago

1.0.0-alpha.5

1 year ago

1.0.0-alpha.4

1 year ago

1.0.0-alpha.3

1 year ago

1.0.0-alpha.2

1 year ago

1.0.0-alpha.1

1 year ago

1.0.0-alpha.0

1 year ago

1.2.1-alpha.0

1 year ago

1.2.0-alpha.0

1 year ago

1.2.0-alpha.1

1 year ago

0.1.23

1 year ago

0.1.24

1 year ago

1.1.0-alpha.0

1 year ago

1.1.1-alpha.0

1 year ago

0.1.24-alpha.0

1 year ago

0.1.22

1 year ago

0.1.21

1 year ago

0.1.20

1 year ago

0.1.19

2 years ago

0.1.18

2 years ago