2.8.3 • Published 2 months ago

camera-controls v2.8.3

Weekly downloads
2,645
License
MIT
Repository
github
Last release
2 months ago

camera-controls

A camera control for three.js, similar to THREE.OrbitControls yet supports smooth transitions and more features.

Latest NPM release Open in GitHub Codespaces

documentation

Examples

camera movedefault user input (Configurable)
Orbit rotationleft mouse drag / touch: one-finger move
Dollymiddle mouse drag, or mousewheel / touch: two-finger pinch-in or out
Truck (Pan)right mouse drag / touch: two-finger move or three-finger move

Usage

(The below code is for three.js users. If you use react-three-fiber (aka R3F), r3f-ready camera-controls is available on @react-three/drei

import * as THREE from 'three';
import CameraControls from 'camera-controls';

CameraControls.install( { THREE: THREE } );

// snip ( init three scene... )
const clock = new THREE.Clock();
const camera = new THREE.PerspectiveCamera( 60, width / height, 0.01, 1000 );
const cameraControls = new CameraControls( camera, renderer.domElement );

( function anim () {

	// snip
	const delta = clock.getDelta();
	const hasControlsUpdated = cameraControls.update( delta );

	requestAnimationFrame( anim );

	// you can skip this condition to render though
	if ( hasControlsUpdated ) {

		renderer.render( scene, camera );

	}

} )();

Important!

You must install three.js before using camera-controls. Not doing so will lead to runtime errors (undefined references to THREE).

Before creating a new CameraControls instance, call:

CameraControls.install( { THREE: THREE } );

You can then proceed to use CameraControls.

Note: If you do not wish to use the entire three.js to reduce file size(tree-shaking for example), make a subset to install.

import {
	Vector2,
	Vector3,
	Vector4,
	Quaternion,
	Matrix4,
	Spherical,
	Box3,
	Sphere,
	Raycaster,
} from 'three';

const subsetOfTHREE = {
	Vector2   : Vector2,
	Vector3   : Vector3,
	Vector4   : Vector4,
	Quaternion: Quaternion,
	Matrix4   : Matrix4,
	Spherical : Spherical,
	Box3      : Box3,
	Sphere    : Sphere,
	Raycaster : Raycaster,
};

CameraControls.install( { THREE: subsetOfTHREE } );

Constructor

CameraControls( camera, domElement )

  • camera is a THREE.PerspectiveCamera or THREE.OrthographicCamera to be controlled.
  • domElement is a HTMLElement for draggable area. (optional. if domElement is omitted here, can be connect later with .connect())

Terms

Orbit rotations

CameraControls uses Spherical Coordinates for orbit rotations.

If your camera is Y-up, the Azimuthal angle will be the angle for y-axis rotation and the Polar angle will be the angle for vertical position.

npm.io

Dolly vs Zoom

  • A Zoom involves changing the lens focal length. In three.js, zooming is actually changing the camera FOV, and the camera is stationary (doesn't move).
  • A Dolly involves physically moving the camera to change the composition of the image in the frame.

See the demo

Properties

NameTypeDefaultDescription
.cameraTHREE.Perspective \| THREE.OrthographicN/AThe camera to be controlled
.enabledbooleantrueWhether or not the controls are enabled.
.activebooleanfalseReturns true if the controls are active updating.
.currentActionACTIONN/AGetter for the current ACTION.
.distancenumberN/ACurrent distance.
.minDistancenumberNumber.EPSILONMinimum distance for dolly. The value must be higher than 0
.maxDistancenumberInfinityMaximum distance for dolly.
.minZoomnumber0.01Minimum camera zoom.
.maxZoomnumberInfinityMaximum camera zoom.
.polarAnglenumberN/ACurrent polarAngle in radians.
.minPolarAnglenumber0In radians.
.maxPolarAnglenumberMath.PIIn radians.
.azimuthAnglenumberN/Acurrent azimuthAngle in radians ¹.
.minAzimuthAnglenumber-InfinityIn radians.
.maxAzimuthAnglenumberInfinityIn radians.
.boundaryFrictionnumber0.0Friction ratio of the boundary.
.boundaryEnclosesCamerabooleanfalseWhether camera position should be enclosed in the boundary or not.
.smoothTimenumber0.25Approximate time in seconds to reach the target. A smaller value will reach the target faster.
.draggingSmoothTimenumber0.125The smoothTime while dragging.
.azimuthRotateSpeednumber1.0Speed of azimuth rotation.
.polarRotateSpeednumber1.0Speed of polar rotation.
.dollySpeednumber1.0Speed of mouse-wheel dollying.
.truckSpeednumber2.0Speed of drag for truck and pedestal.
.verticalDragToForwardbooleanfalseThe same as .screenSpacePanning in three.js's OrbitControls.
.dollyToCursorbooleanfalsetrue to enable Dolly-in to the mouse cursor coords.
.dollyDragInvertedbooleanfalsetrue to invert direction when dollying or zooming via drag.
.interactiveAreaDOMRectN/ASet drag-start, touches and wheel enable area in the domElement. each values are between 0 and 1 inclusive, where 0 is left/top and 1 is right/bottom of the screen.
.colliderMeshesarray[]An array of Meshes to collide with camera ².
.infinityDollybooleanfalsetrue to enable Infinity Dolly for wheel and pinch. Use this with minDistance and maxDistance ³.
.restThresholdnumber0.0025Controls how soon the rest event fires as the camera slows
  1. Every 360 degrees turn is added to .azimuthAngle value, which is accumulative.
    360º = 360 * THREE.MathUtils.DEG2RAD = Math.PI * 2, 720º = Math.PI * 4.
    Tip: How to normalize accumulated azimuthAngle?
  2. Be aware colliderMeshes may decrease performance. The collision test uses 4 raycasters from the camera since the near plane has 4 corners.
  3. If the Dolly distance is less (or over) than the minDistance (or maxDistance), infinityDolly will keep the distance and pushes the target position instead.

Events

CameraControls instance emits the following events.
To subscribe, use cameraControl.addEventListener( 'eventname', function ).
To unsubscribe, use cameraControl.removeEventListener( 'eventname', function ).

Event nameTiming
'controlstart'When the user starts to control the camera via mouse / touches. ¹
'control'When the user controls the camera (dragging).
'controlend'When the user ends to control the camera. ¹
'transitionstart'When any kind of transition starts, either user control or using a method with enableTransition = true
'update'When the camera position is updated.
'wake'When the camera starts moving.
'rest'When the camera movement is below .restThreshold ².
'sleep'When the camera end moving.
  1. mouseButtons.wheel (Mouse wheel control) does not emit 'controlstart' and 'controlend'. mouseButtons.wheel uses scroll-event internally, and scroll-event happens intermittently. That means "start" and "end" cannot be detected.
  2. Due to damping, sleep will usually fire a few seconds after the camera appears to have stopped moving. If you want to do something (e.g. enable UI, perform another transition) at the point when the camera has stopped, you probably want the rest event. This can be fine tuned using the .restThreshold parameter. See the Rest and Sleep Example.

User input config

Working example: user input config

button to assignbehavior
mouseButtons.leftCameraControls.ACTION.ROTATE* | CameraControls.ACTION.TRUCK | CameraControls.ACTION.OFFSET | CameraControls.ACTION.DOLLY | CameraControls.ACTION.ZOOM | CameraControls.ACTION.NONE
mouseButtons.rightCameraControls.ACTION.ROTATE | CameraControls.ACTION.TRUCK* | CameraControls.ACTION.OFFSET | CameraControls.ACTION.DOLLY | CameraControls.ACTION.ZOOM | CameraControls.ACTION.NONE
mouseButtons.wheel ¹CameraControls.ACTION.ROTATE | CameraControls.ACTION.TRUCK | CameraControls.ACTION.OFFSET | CameraControls.ACTION.DOLLY | CameraControls.ACTION.ZOOM | CameraControls.ACTION.NONE
mouseButtons.middle ²CameraControls.ACTION.ROTATE | CameraControls.ACTION.TRUCK | CameraControls.ACTION.OFFSET | CameraControls.ACTION.DOLLY* | CameraControls.ACTION.ZOOM | CameraControls.ACTION.NONE
  1. Mouse wheel event for scroll "up/down" on mac "up/down/left/right"
  2. Mouse click on wheel event "button"
  • * is the default.
  • The default of mouseButtons.wheel is:
    • DOLLY for Perspective camera.
    • ZOOM for Orthographic camera, and can't set DOLLY.
fingers to assignbehavior
touches.oneCameraControls.ACTION.TOUCH_ROTATE* | CameraControls.ACTION.TOUCH_TRUCK | CameraControls.ACTION.TOUCH_OFFSET | CameraControls.ACTION.DOLLYCameraControls.ACTION.ZOOMCameraControls.ACTION.NONE
touches.twoACTION.TOUCH_DOLLY_TRUCK | ACTION.TOUCH_DOLLY_OFFSET | ACTION.TOUCH_DOLLY_ROTATE | ACTION.TOUCH_ZOOM_TRUCK | ACTION.TOUCH_ZOOM_OFFSET | ACTION.TOUCH_ZOOM_ROTATE | ACTION.TOUCH_DOLLY | ACTION.TOUCH_ZOOM | CameraControls.ACTION.TOUCH_ROTATE | CameraControls.ACTION.TOUCH_TRUCK | CameraControls.ACTION.TOUCH_OFFSET | CameraControls.ACTION.NONE
touches.threeACTION.TOUCH_DOLLY_TRUCK | ACTION.TOUCH_DOLLY_OFFSET | ACTION.TOUCH_DOLLY_ROTATE | ACTION.TOUCH_ZOOM_TRUCK | ACTION.TOUCH_ZOOM_OFFSET | ACTION.TOUCH_ZOOM_ROTATE | CameraControls.ACTION.TOUCH_ROTATE | CameraControls.ACTION.TOUCH_TRUCK | CameraControls.ACTION.TOUCH_OFFSET | CameraControls.ACTION.NONE
  • * is the default.
  • The default of touches.two and touches.three is:
    • TOUCH_DOLLY_TRUCK for Perspective camera.
    • TOUCH_ZOOM_TRUCK for Orthographic camera, and can't set TOUCH_DOLLY_TRUCK and TOUCH_DOLLY.

Methods

rotate( azimuthAngle, polarAngle, enableTransition )

Rotate azimuthal angle(horizontal) and polar angle(vertical). Every value is added to the current value.

NameTypeDescription
azimuthAnglenumberAzimuth rotate angle. In radian.
polarAnglenumberPolar rotate angle. In radian.
enableTransitionbooleanWhether to move smoothly or immediately

If you want to rotate only one axis, put a angle for the axis to rotate, and 0 for another.

rotate( 20 * THREE.MathUtils.DEG2RAD, 0, true );

rotateAzimuthTo( azimuthAngle, enableTransition )

Rotate azimuthal angle(horizontal) to the given angle and keep the same polar angle(vertical) target.

NameTypeDescription
azimuthAnglenumberAzimuth rotate angle. In radian.
enableTransitionbooleanWhether to move smoothly or immediately

rotatePolarTo( polarAngle, enableTransition )

Rotate polar angle(vertical) to the given angle and keep the same azimuthal angle(horizontal) target.

NameTypeDescription
polarAnglenumberPolar rotate angle. In radian.
enableTransitionbooleanWhether to move smoothly or immediately

rotateTo( azimuthAngle, polarAngle, enableTransition )

Rotate azimuthal angle(horizontal) and polar angle(vertical) to the given angle. Camera view will rotate over the orbit pivot absolutely:

Azimuth angle

       0º
         \
 90º -----+----- -90º
           \
           180º

0º front, 90º (Math.PI / 2) left, -90º (- Math.PI / 2) right, 180º (Math.PI) back


Polar angle

     180º
      |
      90º
      |
      0º

180º (Math.PI) top/sky, 90º (Math.PI / 2) horizontal from view, 0º bottom/floor

NameTypeDescription
azimuthAnglenumberAzimuth rotate angle to. In radian.
polarAnglenumberPolar rotate angle to. In radian.
enableTransitionbooleanWhether to move smoothly or immediately

dolly( distance, enableTransition )

Dolly in/out camera position.

NameTypeDescription
distancenumberDistance of dollyIn
enableTransitionbooleanWhether to move smoothly or immediately

dollyTo( distance, enableTransition )

Dolly in/out camera position to given distance.

NameTypeDescription
distancenumberDistance of dollyIn
enableTransitionbooleanWhether to move smoothly or immediately

dollyInFixed( distance, enableTransition )

Dolly in, but does not change the distance between the target and the camera, and moves the target position instead. Specify a negative value for dolly out.

NameTypeDescription
distancenumberDistance of dollyIn
enableTransitionbooleanWhether to move smoothly or immediately

zoom( zoomStep, enableTransition )

Zoom in/out camera. The value is added to camera zoom.
Limits set with .minZoom and .maxZoom

NameTypeDescription
zoomStepnumberzoom scale
enableTransitionbooleanWhether to move smoothly or immediately

You can also make zoomIn function using camera.zoom property. e.g.

const zoomIn  = () => cameraControls.zoom(   camera.zoom / 2, true );
const zoomOut = () => cameraControls.zoom( - camera.zoom / 2, true );

zoomTo( zoom, enableTransition )

Zoom in/out camera to given scale. The value overwrites camera zoom.
Limits set with .minZoom and .maxZoom

NameTypeDescription
zoomnumberzoom scale
enableTransitionbooleanWhether to move smoothly or immediately

truck( x, y, enableTransition )

Truck and pedestal camera using current azimuthal angle.

NameTypeDescription
xnumberHorizontal translate amount
ynumberVertical translate amount
enableTransitionbooleanWhether to move smoothly or immediately

lookInDirectionOf( x, y, z, enableTransition )

Look in the given point direction.

NameTypeDescription
xnumberpoint x
ynumberpoint y
znumberpoint z
enableTransitionbooleanWhether to move smoothly or immediately

setFocalOffset( x, y, z, enableTransition )

Set focal offset using the screen parallel coordinates. z doesn't affect in Orthographic as with Dolly.

NameTypeDescription
xnumberHorizontal offset amount
ynumberVertical offset amount
znumberDepth offset amount. The result is the same as Dolly but unaffected by minDistance and maxDistance
enableTransitionbooleanWhether to move smoothly or immediately

setOrbitPoint( targetX, targetY, targetZ )

Set orbit point without moving the camera.

NameTypeDescription
targetXnumberOrbit center position x
targetYnumberOrbit center position y
targetZnumberOrbit center position z

forward( distance, enableTransition )

Move forward / backward.

NameTypeDescription
distancenumberAmount to move forward / backward. Negative value to move backward
enableTransitionbooleanWhether to move smoothly or immediately

moveTo( x, y, z, enableTransition )

Move target position to given point.

NameTypeDescription
xnumberx coord to move center position
ynumbery coord to move center position
znumberz coord to move center position
enableTransitionbooleanWhether to move smoothly or immediately

elevate( height, enableTransition )

Move up / down.

NameTypeDescription
heightnumberAmount to move up / down. Negative value to move down
enableTransitionbooleanWhether to move smoothly or immediately

fitToBox( box3OrMesh, enableTransition, { paddingTop, paddingLeft, paddingBottom, paddingRight } )

Fit the viewport to the box or the bounding box of the object, using the nearest axis. paddings are in unit. set cover: true to fill enter screen.

NameTypeDescription
box3OrMeshTHREE.Box3 | THREE.MeshAxis aligned bounding box to fit the view.
enableTransitionbooleanWhether to move smoothly or immediately
optionsobjectOptions
options.coverbooleanWhether fill enter screen or not. Default is false
options.paddingTopnumberPadding top. Default is 0
options.paddingRightnumberPadding right. Default is 0
options.paddingBottomnumberPadding bottom. Default is 0
options.paddingLeftnumberPadding left. Default is 0

fitToSphere( sphereOrMesh, enableTransition )

Fit the viewport to the sphere or the bounding sphere of the object.

NameTypeDescription
sphereOrMeshTHREE.Sphere | THREE.Meshbounding sphere to fit the view.
enableTransitionbooleanWhether to move smoothly or immediately

setLookAt( positionX, positionY, positionZ, targetX, targetY, targetZ, enableTransition )

Look at the target from the position.

NameTypeDescription
positionXnumberCamera position x.
positionYnumberCamera position y.
positionZnumberCamera position z.
targetXnumberOrbit center position x.
targetYnumberOrbit center position y.
targetZnumberOrbit center position z.
enableTransitionbooleanWhether to move smoothly or immediately

lerpLookAt( positionAX, positionAY, positionAZ, targetAX, targetAY, targetAZ, positionBX, positionBY, positionBZ, targetBX, targetBY, targetBZ, t, enableTransition )

Similar to setLookAt, but it interpolates between two states.

NameTypeDescription
positionAXnumberThe starting position x of look at from.
positionAYnumberThe starting position y of look at from.
positionAZnumberThe starting position z of look at from.
targetAXnumberThe starting position x of look at.
targetAYnumberThe starting position y of look at.
targetAZnumberThe starting position z of look at.
positionBXnumberLook at from position x to interpolate towards.
positionBYnumberLook at from position y to interpolate towards.
positionBZnumberLook at from position z to interpolate towards.
targetBXnumberlook at position x to interpolate towards.
targetBYnumberlook at position y to interpolate towards.
targetBZnumberlook at position z to interpolate towards.
tnumberInterpolation factor in the closed interval. The value must be a number between 0 to 1 inclusive, where 1 is 100%
enableTransitionbooleanWhether to move smoothly or immediately

setPosition( positionX, positionY, positionZ, enableTransition )

Set angle and distance by given position. An alias of 1setLookAt()1, without target change. Thus keep gazing at the current target

NameTypeDescription
positionXnumberPosition x of look at from.
positionYnumberPosition y of look at from.
positionZnumberPosition z of look at from.
enableTransitionbooleanWhether to move smoothly or immediately

setTarget( targetX, targetY, targetZ, enableTransition )

Set the target position where gaze at. An alias of setLookAt(), without position change. Thus keep the same position.

NameTypeDescription
targetXnumberPosition x of look at.
targetYnumberPosition y of look at.
targetZnumberPosition z of look at.
enableTransitionbooleanWhether to move smoothly or immediately

setBoundary( box3? )

Set the boundary box that encloses the target of the camera. box3 is in THREE.Box3

NameTypeDescription
box3THREE.Box3?Boundary area. No argument to remove the boundary.

setViewport( vector4? )

Set (or unset) the current viewport.
Set this when you want to use renderer viewport and .dollyToCursor feature at the same time.

See: THREE.WebGLRenderer.setViewport()

NameTypeDescription
vector4THREE.Vector4?Vector4 that represents the viewport, or undefined for unsetting this.

setViewport( x, y, width, height )

Same as setViewport( vector4 ), but you can give it four numbers that represents a viewport instead:

NameTypeDescription
xnumberLeftmost of the viewport.
ynumberBottommost of the viewport.
widthnumberWidth of the viewport.
heightnumberHeight of the viewport.

getTarget( out, receiveEndValue )

Returns the orbit center position, where the camera looking at.

NameTypeDescription
outTHREE.Vector3The receiving Vector3 instance to copy the result
receiveEndValuebooleanWhether receive the transition end coords or current. default is true

getPosition( out, receiveEndValue )

Returns the camera position.

NameTypeDescription
outTHREE.Vector3The receiving Vector3 instance to copy the result
receiveEndValuebooleanWhether receive the transition end coords or current. default is true

getSpherical( out, receiveEndValue )

Returns the spherical coordinates of the orbit.

NameTypeDescription
outTHREE.Vector3The receiving Spherical instance to copy the result
receiveEndValuebooleanWhether receive the transition end coords or current. default is true

getFocalOffset( out, receiveEndValue )

Returns the focal offset, which is how much the camera appears to be translated in screen parallel coordinates.

NameTypeDescription
outTHREE.Vector3The receiving Vector3 instance to copy the result
receiveEndValuebooleanWhether receive the transition end coords or current. default is true

saveState()

Set current camera position as the default position


normalizeRotations()

Normalize camera azimuth angle rotation between 0 and 360 degrees.


reset( enableTransition )

Reset all rotation and position to default.

NameTypeDescription
enableTransitionbooleanWhether to move smoothly or immediately

update( delta ): boolean

Update camera position and directions. This should be called in your tick loop and returns true if re-rendering is needed.

NameTypeDescription
deltanumberDelta time between previous update call

updateCameraUp()

When you change camera-up vector, run .updateCameraUp() to sync.


applyCameraUp()

Apply current camera-up direction to the camera.
The orbit system will be re-initialized with the current position.


connect()

Attach all internal event handlers to enable drag control.


disconnect()

Detach all internal event handlers to disable drag control.


dispose()

Dispose the cameraControls instance itself, remove all eventListeners.


addEventListener( type: string, listener: function )

Adds the specified event listener.


removeEventListener( type: string, listener: function )

Removes the specified event listener.


removeAllEventListeners( type: string )

Removes all listeners for the specified type.


toJSON()

Get all state in JSON string


fromJSON( json, enableTransition )

Reproduce the control state with JSON. enableTransition is where anim or not in a boolean.


Tips

Normalize accumulated azimuth angle:

If you need a normalized accumulated azimuth angle (between 0 and 360 deg), compute with THREE.MathUtils.euclideanModulo e.g.:

const TAU = Math.PI * 2;

function normalizeAngle( angle ) {

	return THREE.MathUtils.euclideanModulo( angle, TAU );

}

const normalizedAzimuthAngle = normalizeAngle( cameraControls.azimuthAngle );

Find the absolute angle to shortest azimuth rotatation:

You may rotate 380deg but actually, you expect to rotate -20deg.
To get the absolute angle, use the below:

const TAU = Math.PI * 2;

function absoluteAngle( targetAngle, sourceAngle ){

  const angle = targetAngle - sourceAngle
  return THREE.MathUtils.euclideanModulo( angle + Math.PI, TAU ) - Math.PI;

}

console.log( absoluteAngle( 380 * THREE.MathUtils.DEG2RAD, 0 ) * THREE.MathUtils.RAD2DEG ); // -20deg
console.log( absoluteAngle( -1000 * THREE.MathUtils.DEG2RAD, 0 ) * THREE.MathUtils.RAD2DEG ); // 80deg

Creating Complex Transitions

All methods that take the enableTransition parameter return a Promise can be used to create complex animations, for example:

async function complexTransition() {
	await cameraControls.rotateTo( Math.PI / 2, Math.PI / 4, true );
	await cameraControls.dollyTo( 3, true );
	await cameraControls.fitToSphere( mesh, true );
}

This will rotate the camera, then dolly, and finally fit to the bounding sphere of the mesh.

The speed and timing of transitions can be tuned using .restThreshold and .smoothTime.

If enableTransition is false, the promise will resolve immediately:

// will resolve immediately
await cameraControls.dollyTo( 3, false );

V2 Migration Guide

camera-controls used to use simple damping for its smooth transition. camera-controls v2 now uses SmoothDamp. one of the benefits of using SmoothDamp is, SmoothDamp transition can be controlled with smoothTime which is approximately the time it will take to reach the end position. Also, the Maximum speed of the transition can be set with max speed.

Due to the change, the following are needed. (if you haven't changed dampingFactor and draggingDampingFactor in v1.x, nothing is needed)

deprecated

  • dampingFactor (use smoothTime instead)
  • draggingDampingFactor (use draggingSmoothTime instead)

added

  • smoothTime
  • draggingSmoothTime
  • maxSpeed

...That's it!

Contributors

This project exists thanks to all the people who contribute.

npm.io

Release

Pre-requisites: 1. a npm registry up and running with a NPM_TOKEN

	$ export NPM_TOKEN=npm_XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
	 ```
2. a Github [PAT](https://github.com/semantic-release/github#github-authentication)
```bash
	 $ export GITHUB_TOKEN=github_pat_XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
	 ```

```bash
$ npm run release -- --dry-run
2.8.3

2 months ago

2.8.2

2 months ago

2.8.1

2 months ago

2.8.0

2 months ago

2.7.4

3 months ago

2.7.2

8 months ago

2.7.1

8 months ago

2.7.3

6 months ago

2.7.0

10 months ago

2.6.0

10 months ago

2.5.0

10 months ago

2.4.1

11 months ago

2.4.0

11 months ago

2.4.2

11 months ago

2.3.6

11 months ago

2.3.5

11 months ago

2.3.8

11 months ago

2.3.7

11 months ago

2.3.4

1 year ago

2.3.2

1 year ago

2.3.3

1 year ago

2.3.0

1 year ago

2.3.1

1 year ago

2.2.2

1 year ago

2.2.1

1 year ago

2.2.0

1 year ago

2.1.0

1 year ago

1.37.5

1 year ago

1.37.6

1 year ago

2.0.1

1 year ago

2.0.0

1 year ago

1.38.2

1 year ago

1.38.0

1 year ago

1.38.1

1 year ago

1.37.3

2 years ago

1.37.4

1 year ago

1.37.0

2 years ago

1.37.1

2 years ago

1.37.2

2 years ago

1.34.6

2 years ago

1.34.7

2 years ago

1.35.0

2 years ago

1.36.0

2 years ago

1.36.1

2 years ago

1.36.2

2 years ago

1.34.4

2 years ago

1.34.5

2 years ago

1.34.3

2 years ago

1.34.2

2 years ago

1.33.2

2 years ago

1.34.1

2 years ago

1.33.1

3 years ago

1.33.0

3 years ago

1.32.3

3 years ago

1.32.2

3 years ago

1.32.0

3 years ago

1.32.1

3 years ago

1.31.0

3 years ago

1.30.0

3 years ago

1.29.1

3 years ago

1.29.0

3 years ago

1.28.4

3 years ago

1.28.3

3 years ago

1.28.2

3 years ago

1.28.1

3 years ago

1.28.0

3 years ago

1.27.1

3 years ago

1.27.0

3 years ago

1.26.0

3 years ago

1.25.3

3 years ago

1.25.2

3 years ago

1.25.1

4 years ago

1.25.0

4 years ago

1.24.1

4 years ago

1.24.0

4 years ago

1.22.1

4 years ago

1.22.0

4 years ago

1.21.0

4 years ago

1.20.1

4 years ago

1.20.2

4 years ago

1.20.0

4 years ago

1.19.0

4 years ago

1.19.1

4 years ago

1.18.3

4 years ago

1.18.2

4 years ago

1.18.1

4 years ago

1.18.0

4 years ago

1.17.0

4 years ago

1.16.2

4 years ago

1.16.1

4 years ago

1.16.0

4 years ago

1.15.0

5 years ago

1.14.1

5 years ago

1.14.0

5 years ago

1.13.0

5 years ago

1.12.2

5 years ago

1.12.1

5 years ago

1.12.0

5 years ago

1.11.1

5 years ago

1.11.0

5 years ago

1.10.8

5 years ago

1.10.7

5 years ago

1.10.6

5 years ago

1.10.5

5 years ago

1.10.4

5 years ago

1.10.3

5 years ago

1.10.2

5 years ago

1.10.1

5 years ago

1.10.0

5 years ago

1.9.2

5 years ago

1.9.1

5 years ago

1.9.0

5 years ago

1.8.1

5 years ago

1.8.0

5 years ago

1.7.1

5 years ago

1.7.0

5 years ago

1.6.2

5 years ago

1.6.1

5 years ago

1.6.0

5 years ago

1.5.1

6 years ago

1.5.0

6 years ago

1.4.1

6 years ago

1.4.0

6 years ago

1.3.0

6 years ago

1.2.2

6 years ago

1.2.1

6 years ago

1.2.0

6 years ago

1.1.0

6 years ago

1.0.0

6 years ago

0.0.6

7 years ago

0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago