3.41.2 • Published 2 days ago

@filerobot/explorer v3.41.2

Weekly downloads
-
License
MIT
Repository
-
Last release
2 days ago

@filerobot/explorer

Plugins Website Version Scaleflex team License CodeSandbox

The file Explorer and media gallery plugin of the Filerobot Media Asset Widget.

Usage

NPM

npm install --save @filerobot/explorer

YARN

yarn add @filerobot/explorer

then

import Explorer from '@filerobot/explorer'
...
...
...
filerobot.use(Explorer, propertiesObject)

CDN

If installed via a CDN link, the plugin is inside the Filerobot global object as Filerobot.Explorer

const Explorer = window.Filerobot.Explorer
...
...
...
filerobot.use(Explorer, propertiesObject)

Plugin styles

import "@filerobot/core/dist/style.css";
import "@filerobot/explorer/dist/style.css";

or via the minified versions

import "@filerobot/core/dist/style.min.css";
import "@filerobot/explorer/dist/style.min.css";

The plugin's css file should be imported after the Core's css file for having the styles shown correctly.

Properties

The Explorer supports multiple properties to customize the plugin according to your needs. Required attributes are marked with (Required).

config

Type: object Required.

Default:

{
  config: {
    companyName: 'scaleflex',
    foldersLimit: 200,
    filesLimit: 50,
    rootFolderPath: '/',
    defaultSort: {
      by: '',
      order: ''
    },
    tagging: {...} // check tagging section
  }
}

The config objects contains the main configuration for the plugin to interact with your Filerobot project:

companyName

Type: string.

Default: scaleflex

Your company name, used when sharing assets.

foldersLimit

Type: number.

Default: 200

Number of folders to be retrieved with folders initial request.

filesLimit

Type: number.

Default: 50

Number of files to be retrieved with files initial request.

rootFolderPath

Type: string.

Default: /

Override the root folder path.

defaultSort

Type: object.

Default: { by: 'name', order: 'asc' }

Customize the default selected sort option for both files & folders shown in the main view (not applicable for folders tree or objects' trees) applied for all the files shown regardless of the opened view.

The options available sorting

PropertyTypeDefaultDescription
bystringnameDefines the default sort by param, should be one of 'name', 'created_at', 'modified_at', 'size', 'type'
orderstringascDefines the default sort order param, should be one of 'asc', 'desc'

Note: its value is considered only on plugin's install/mount.

tagging

Type: object.

Default:

  tagging: {
    enabled: false,
    autoTagging: false,
    suggestedTagsOnly: false,
    language: 'en',
    confidence: 60,
    limit: 10,
    provider: 'google',
    suggestionList: []
  }

The options available for tagging

PropertyTypeDefaultDescription
enabledbooleanfalseEnable/disable tags
autoTaggingbooleanfalseEnable/disable auto-tagging
suggestedTagsOnlybooleanfalseEnable/disable suggested tags only. When it's TRUE, users can only select tags from a pre-defined list. Notice that when suggestedTagsOnly is TRUE, autoTagging will be disabled.
languagestringenAutoTagging config that we add in POST process/autoTag request data.meta
confidencenumber60AutoTagging config that we add in POST process/autoTag request data.meta
limitnumber10AutoTagging config that we add in POST process/autoTag request data.meta
providerstring[]AutoTagging config that we add in POST process/autoTag request data.meta
suggestionListobject[]1Tags suggestions list that is shown under tags field. By default we show primary tags, but when user start typing we filter full suggestionList. Object format:
    {
      sid: string, // Short id like: '#tg1885f'
      names: {
        en: string,
        fr: string
      },
      primary: boolean // If true, tag will be shown in Suggestions list below tags field
    }

inline

Type: boolean.

Default: false

If set to true, the plugin will be displayed as inline element in the element referred by the target property. Otherwise, it will pop up in a modal upon trigger, see below.

trigger

Type: string.

Default: null

The selector used for triggering the display of the plugin modal, if passed to querySelectorAll function. Available options:

  • HTML tag, eg. body
  • CSS selector, eg. #filerobot-trigger-button or .filerobot-trigger-button

Multiple triggers are supported as click events.

Required if inline: false

target

Type: string Required.

Default: body

The selector used for displaying the plugin, if passed to querySelector function. Options:

  • HTML tag, eg. body
  • CSS selector, eg. #filerobot-container or .filerobot-container

width

Type: number| string.

Default: 768

Width of the plugin as a number if specified in pixels or a percentage, eg. '50%'

height

Type: number| string.

Default: 538

Height of the plugin as a number if specified in px or a percentage eg. '35%'

thumbnailWidth

Type: number.

Default: 280

Pixel width of the asset thumbnails displayed in the gallery. Apect ratio of images is kept in case of image assets.

thumbnailHeight

Type: number.

Default: 170

Pixel height of the asset thumbnails displayed in the gallery. Aspect ratio of images is kept in case of image assets.

noItemsBrowser

Type: boolean.

Default: false

Hides the Explorer view displaying files/folders and only allows the user to upload a single or multiple assets. In summary, if set to true it puts the upload page as default homepage and removes the gallery.

views

Type: array.

Default: ['ASSETS', 'COLLECTIONS', 'LABELS', 'FAVORITES', 'FOLDERS', 'PRODUCTS']

List of available views.

NOTE some views can be hidden if you don't have permission provided in securityTemplateId.

defaultView Deprecated - use view instead

Type: string.

Default: 'FOLDERS'

View which will be opened by default.

view

Type: string.

Default: 'FOLDERS'

View which will be currently opened.

viewItem

Type: string.

Default: null

Open the provided view's item/object for ex. (folders view => folder path, labels view => label sid or uuid, collections view => collection uuid, products view => product ref...etc.)

Note: No auto redirect to the view, you have to provide the proper view from view prop.

viewSubItem

Type: string.

Default: null

A sub item that should be opened inside the provided view & viewItem, mostly used for opening a collection virtual folder that's found inside some collection.

Note: No auto redirect to the view, you have to provide the proper view from view prop.

layoutType

Type: boolean.

Default: grid

Specifies the default layout in the view:

ValueDescription
gridshows folders/assets as cards in a grid
listshows the folders/assets as rows in a table

you can switch between layouts from the layout selector button in the right side in header bar.

waitForThumbnailsBeforeUpload

Type: boolean.

Default: false

If set to true, delays the start of the upload process until the asset thumbnails are generated and displayed in the plugin.

showBar

Type: boolean.

Default: true

If set to false, hides the top bar with Upload button, searchBar, create folder button and view button.

hideUploadButton

Type: boolean.

Default: false

If set to true, hides the Upload button at the top of the plugin.

hideSearch

Type: boolean.

Default: false

Hides Search field at the top of the plugin.

note

Type: string.

Default: null

A custom note displayed in the upload screen for drag&drop.

hint

Type: string.

Default: null

A custom hint displayed in the upload screen at the bottom.

closeModalOnClickOutside

Type: boolean.

Default: false

Plugin modal will be closed when clicking outside of the modal.

Only relevant if inline: false

preventModalOverlayClickOnUpload

Type: boolean.

Default: false

Plugin modal still opened when click outside of it, if there's selected files to be uploaded

Only relevant if closeModalOnClickOutside: true

closeAfterFinish

Type: boolean.

Default: false

Modal will close after upload is finished.

Only relevant if inline: false

onClickUploadButton

Type: function.

Default: () => {}

A callback function that would be triggered when the user clicks on upload button that is shown in the uploads panel

disableInformer

Type: boolean.

Default: false

Disables the informer plugin used to show warnings and errors.

disableThumbnailGenerator

Type: boolean.

Default: false

Disables the thumbnail-generator plugin that generates image thumbnails.

disablePageScrollWhenModalOpen

Type: boolean.

Default: true

If set to true, disables scrolling for the document while the plugin modal is open.

Only relevant if inline: false

disableDownloadButton

PREVIOUSLY: disableExportButton & disableTopBarMainButton

Type: boolean.

Default: false

Hides the download button shown in the action bar when selecting files.

preventDownloadDefaultBehavior

PREVIOUSLY: preventExportDefaultBehavior

Type: boolean.

Default: false

Prevent default behavior of download/export.

hideDownloadTransformationOption

Type: boolean.

Default: false

Hide transformation in download options in context menu and action bar.

hideDownloadButtonIcon

PREVIOUSLY: hideExportButtonIcon

Type: boolean.

Default: false

Hides the download/export button icon.

hideHeaderBar

Type: boolean.

Default: false

Hides the header bar, header bar contains breadcrumbs and other action buttons.

hideExportCropPanel

PREVIOUSLY: disableExportCropPanel

Type: boolean.

Default: false

The crop button in the export options modal will be hidden.

forceDownload

Type: boolean.

Default: false

Adds download=1 param to the CDN download link

defaultCollectionUuid Deprecated - use view & viewItem instead

Type: string.

Default: null

Navigate to the collection view and open the provided collection.

Only relevant if Collections view is provided in views

defaultLabelSid Deprecated - use view & viewItem instead

Type: string.

Default: null

Navigate to the labels view and open the provided label.

Only relevant if Labels view is provided in views

defaultFilters Deprecated - use filters instead

Type: object.

Default: null

Apply the provided filters on initial load.

defaultSearchQuery Deprecated - use search.query instead

Type: string.

Default: ''

Apply the provided search query on initial load.

imageEditorMode

Type: string.

Default: 'default'

Possible values: 'default' | 'cloudimage'

Set imageEditorMode for the image editor plugin.

defaultItemToFocus

Type: object.

Default: null

Navigate to the provided item and focus on mount

hideModalAfterExport

Type: boolean.

Default: false

Hides the modal after finish download/export.

closeAfterImageEdit

Type: boolean.

Default: false

Hides the modal after finish editing image.

onRequestCloseModal

Type: () => undefined.

Default: closeModal function

Specified a custom function to be executed when trying to close the modal. Default closing modal behavior is overridden

Only relevant if inline: false

animateOpenClose

Type: boolean.

Default: true

Disable the modal's opening and closing.

Only relevant if inline: false

locale

Type: object.

Default: locales from filerobot's backend then default locale file with all labels is under lib/defaultLocale.js.

You can override some labels by specifying a translation object here, such as:

{
  strings: {
    baseFolderTitle: "Root"; // overrides the default Home value to Root
  }
}

browserBackButtonCloseModal

Type: boolean.

Default: false

The browser Back button will close the modal, otherwise it will trigger the standard back browser behavior.

Only relevant if inline: false

enableFoldersStatsApiRequest

Type: boolean.

Default: false

When enabled it will send extra folders/stats API request with the folders request to get folders count.

isUploadBarAddMoreButtonHidden

Type: boolean.

Default: false

The 'Add More' button in upload module is hidden preventing users to upload more item.

showFoldersTree

Type: boolean.

Default: false

Shows/hides on initial load the folder tree as a sidebar at the left of the plugin to navigate folders. The user can shows/hides the folder tree from the tree icon in the breadcrumbs.

Only relevant if folders view is provided in views

showProductsTree

Type: boolean.

Default: false

Shows/hides on initial load the product tree as a sidebar at the left of the plugin to navigate products. The user can shows/hides the product tree from the tree icon in the breadcrumbs.

Only relevant if products view is provided in views

showCollectionsTree

Type: boolean.

Default: false

Shows/hides the collection tree as a sidebar at the left of the plugin to navigate collections. The user can shows/hides the collection tree from the tree icon in the breadcrumbs.

Only relevant if collection view is provided in views

showLabelsTree

Type: boolean.

Default: false

Shows/hides the label tree as a sidebar at the left of the plugin to navigate labels. The user can shows/hides the label tree from the tree icon in the breadcrumbs.

showDetailsView

Type: boolean.

Default: false

Shows/hides the asset details view as a sidebar at the right of the plugin to view various details about selected assets. The user can shows/hides the details view from the info icon in the right side of the breadcrumbs.

contextMenuSubTabs

Type: object.

Default:

{
  fileMore: ['REMOVE_BACKGROUND', 'LOCATE_FILE'],
  fileShare: ['PUBLISH', 'MANAGE_ACCESS', 'GET_LINK', 'VIA_SHAREBOX', 'EMBED']
}

If you need to customize the sub tabs that are opened from the parent tabs of the context menu (the menu shown on clicking right click on the file/folder):

PropertyTypeDefaultDescription
fileMorestrings[]['LOCATE_FILE', 'REMOVE_BACKGROUND']sub items for more Actions option inside assets's context menu
fileSharestrings[]['PUBLISH', 'MANAGE_ACCESS', 'GET_LINK', 'VIA_SHAREBOX', 'EMBED']sub items for share option inside assets's context menu

videoTranscoding

Type: object.

Default:

{
  resolution: 'auto',
  protocol: 'HLS'
}

Video transcoding options for post-upload video transcoding:

PropertyTypeDefaultDescription
resolutionstring requiredautotarget resolutions for video transcoding
protocolstring requiredHLSwhich protocol to use while transcoding

cropPresets

Type: object.

Default: {}

Defines additional crop types & presets besides the freehand one and their presets and its shape as follows

{
  'Social media': [
    /**
     * label: possible to be a string or string in form of i18n key provided through locale object
     * value: value follows this format (width:height:autoResize) or one of the following stringy values (original/ellipse) which defines the width & height of the crop preset autoResize which is a boolean value if `true` then resizing inputs will be disabled and auto resize will be applied automatically otherwise they're enabled, ratio of crop will be determined from width / height.
     */
    { label: 'Facebook profile', value: '400:400:true' },
    { label: 'linkedInCover', value: '1128:191:false' }
  ],
  custom: [
    { label: 'logoSize', value: '320:100' }
  ],
  ellipse: {
    label: 'ellipse', value: 'ellipse'
  },
  original: {
    label: 'original', value: 'original'
  }
}

NOTE: The object's keys will be used the label for crop type (it is possible to be label string or i18n key string that is provided through locale object)

showRemoveBackgroundOption

Type: boolean.

Default: true

Remove background option will appear in context menu.

disableMultipleSelect

Type: boolean.

Default: false

Multiple files/folders selections will be disabled and only 1 file/folder possible to be selected.

dismissUrlPathQueryUpdate

Type: boolean.

Default: false

The url query fmaw_path won't be added/updated to the current url.

showFilerobotCopyright

Type: boolean.

Default: false

Hides filerobot copyright at the bottom of the plugin.

useAssetsPicker

Type: boolean.

Default: false

If set to true, actions like deleting, editing, or downloading assets will not be allowed, explore and insert actions allowed.

disableFolderSelection

Type: boolean.

Default: false

If set to true, disable the possiblity to select folder(s).

hideFolderOptions

Type: boolean.

Default: false

If set to true, hide the folder item top options.

hideFileOptions

Type: boolean.

Default: false

If set to true, hide the file item top options.

hideDetailsTab

Type: boolean.

Default: false

If set to true, hide toggle details tab button.

hideActionBarSelectionButtons

Type: boolean.

Default: false

If set to true, hide the selection buttons in the action bar.

disableDnDActions

Type: boolean.

Default: false

If set to true, disable the drag and drop actions to move assets/folders or upload

noImgOperationsAndDownload

Type: boolean.

Default: false

If set to true, hides some options in asset contextual menu and in Action bar:

  • Download (context menu)
  • Transformation (action bar)
  • Edit image (context menu and action bar)

queryParamPrefix

Type: string.

Default: fmaw_

Override the query params

showDragDropPanel

Type: boolean.

Default: false

Changes the design for the addFiles panel in uploads.

showSort

Type: boolean.

Default: true

shows/hides sort button in Explorer.

isDownloadUsageRightsEnabled

Type: boolean.

Default: false

Enables/disables the download of usage rights file with assets.

useLoginMode

Type: boolean.

Default: false

Enables/disables the login mode which gives the user the possibility to login by his credentials (email & password) through a form shown to the user while using the widget, respecting the provided container in the core class of the widget.

Note: Don't provide security template key nor sass key if you need to use enable this feature by providing its value to true.

prefilledLoginModeEmail

Type: string.

Default: null

The property used to add a default email address in the email address field of the login mode form, if not provided the email address will be empty. In both cases, the user will be able to change/add his email address and this property is used by having useLoginMode enabled.

hideAddingComment

Type: boolean.

Default: false

Removes the add comment textarea from the comments tab.

restrictedSearchContext

Type: boolean.

Default: false

Providing true, will disable the possibility of selecting other search contexts and always force the user to use the current opened view's context.

facetedSearchEnabled

Type: boolean.

Default: false

Faceted search allows users to filter files using metadata filters. When this feature is enabled:

  • The filters bar will be hidden.
  • Only metadata filters with select, select-one, and boolean fields will be displayed.

Note: Faceted search is only active in the assets view.

facetedSearchSidebarExpanded

Type: boolean.

Default: true

expands faceted search sidebar by default.

Note: if facetedSearchEnabled is false, this property will be ignored.

activeFacetedSearchMetadataFields

Type: array.

Default: []

Array of metadata fields keys to be shown on faceted search.

Note: only exist filters will be shown.

activeFacetedSearchFilters

Type: array.

Default: []

Array of filters keys to be shown on faceted search.

filters

Type: object.

Default: {}

Filters to be applied to the views that accept filters, and will be locked if disableFiltersAndSearch or forceFilters is true, consists of the following:

PropertyTypeDefaultDescription
dateOptionstring | integerCREATED === 0the date option/type to filter with
dateRangeinteger(1, 2, 3, 4, 5) | string | string['yyyy-mm-dd', 'yyyy-mm-dd']undefinedThe date range used in filtering with the date option
mimeTypesstring[]undefinedFile mimetypes (in the UI called types)
fileTypesstring[]undefinedFile types (in the UI called Format)
sizeintegers[minMB, maxMB]undefinedthe date option/type to filter with
tagsstring[]undefinedThe tags that should be contain in the files, the values consist of tag sids without #
imageOrientationsstring[]undefinedThe image orientation values
imageResolutionsstring[]undefinedThe image resolution values
imageFacesstring[]undefinedThe number of faces found in an image
imageMainColorsstring[]undefinedThe main colors of the image which represents significant proportion in the image
imageDominantColorsstring[]sundefinedThe dominant colors of the images
metadata{ key: string, operator: string\|undefined ,value: string\|string[], condition:{ {operator:string ,value: string\|string[]}\| undefined }undefinedThe metadata objects used in filtering
labelsstring[]undefinedThe label sids without # used in filtering files contain that value (Only 1 label/value is supported currently) -- doesn't work in labels view
foldersstring[]undefinedThe path of the folders to be used while filtering (Only 1 folder/value is supported currently) -- doesn't work in folders view
{
  // `dateOption`: Either a string 'CREATED'/'UPDATED' or integer 0/1.
  dateOption: 0,

  // `dateRange` Either a string 'LAST_DAY'/'LAST_7_DAYS'/'LAST_30_DAYS'/'LAST_90_DAYS'/'LAST_180_DAYS' or integer 1/2/3/4/5 -- constants are preferred -- or for custom range provide an array [from, to] each date in the form yyyy-mm-dd .
  dateRange: 'LAST_7_DAYS',

   // `mimeTypes`: An Array of strings, acceptable values any/all of the following ['IMAGE', 'VIDEO', 'AUDIO', 'DOCUMENT', 'ARCHIVE'] or ['image', 'video', 'audio', 'application', 'application/zip, application/x-zip-compressed, application/vnd.rar, application/x-rar-compressed'] -- constants are preferred --.
  mimeTypes: ['IMAGE', 'VIDEO'],

  // `fileTypes`: An Array of strings, acceptable values are provided from BE filters API value property found in file type objects, ex. ['img|x-icon', 'img|jpeg'].
  fileTypes: ['img|png', 'img|jpeg'],

  // `size`: An Array of integers (only 2), values provided are considered as MB. [minMB, maxMB].
  size: [0, 10],

  // `tags`: An Array of strings, values are tag sids coming from BE but without (#).
  tags: ['tge3c9d', 'tgdeaa9'],

  // `imageOrientations`: An Array of strings, any/all of the following values are valid ['PORTRAIT', 'PANORAMA', 'SQUARE', 'LANDSCAPE'] or ['portrait', 'panorama', 'square', 'landscape'] -- constants are preferred --.
  imageOrientations: ['PORTRAIT', 'SQUARE'],

  // `imageResolutions`: An Array of strings, any/all of the following values are possible ['SMALL', 'MEDIUM', 'LARGE'] or ['small', 'medium', 'large'] -- constants are preferred --.
  imageResolutions: ['MEDIUM', 'LARGE'],

  // `imageFaces`: An Array of strings, any/all of the following values are possible ['NO_FACES', 'ONE_FACE', 'TWO_FACES', 'ANY'] or ['0', '1', '2', '*'] -- constants(capitalized) are preferred -- (* => means group/multiple of faces).
  imageFaces: ['1', '*'],

  // `imageMainColors`: An Array of strings, represents the color stringy value it must be any/all of the following only no other colors ['PURPLE', 'RED', 'ORANGE', 'PINK', 'GRASS_GREEN', 'YELLOW', 'AZURE', 'CHARTREUSE', 'TEAL'] or ['purple', 'red', 'orange', 'pink', 'grass_green', 'yellow', 'azure', 'chartreuse', 'teal'] -- constants(capitalized) are preferred --.
  imageMainColors: ['TEAL', 'YELLOW'],

  // `imageDominantColors`: An Array of strings, represents the color stringy value it must be any/all of the following only no other colors ['PURPLE', 'RED', 'ORANGE', 'PINK', 'GRASS_GREEN', 'YELLOW', 'AZURE', 'CHARTREUSE', 'TEAL'] or ['purple', 'red', 'orange', 'pink', 'grass_green', 'yellow', 'azure', 'chartreuse', 'teal'] -- constants(capitalized) are preferred --.
  imageDominantColors: ['pink', 'red'],

  // `metadata`: An Array of objects contains { key, operator, value, condition }, key and value are required for all metadata types, operator is required for single and multiple select metadatas only, condition is required in case operator is 'HAS' to add extra condition (another operator and value) to have metadata working properly, the value either the api_key or the internal unique value, the operators are [IS, NOT, HAS], condition operators are ['AND', 'OR', 'NOT'], all operators must be upper case, also for 'IS' operator we support empty and non empty options to filter all empty/non empty metadata
  metadata: [
    { key: 'cities', value: ['@itm_v1_08bbe7e5_4@', '@itm_v1_905066ed_9@'] },
    { key: 'brand', value: 'adidas' },
    { key: 'color', operator: 'IS', value: 'yellow' },
    { key: 'file', operator: 'HAS', value: 'png', condition: {operator: 'OR', value: 'jpg'} },
  ],

  // `labels`: An Array of strings, currently accepts 1 label only and the value should be label sid **with** (#).
  labels: ['#lbbp8dnyu'],

  // `folders`: An Array of strings, currently accepts 1 folder path only.
  folders: ['/hello-world']
}

Note: Constant values are better to be used as they are less prone for changes.

Note: To lock any of the above properties by using disabledFiltersAndSearch or forceFilters then you have to provide a value for the property to be locked.

search

Type: object.

Default: {}

Search object to be considered in the views have searching enabled and will be locked if disableFiltersAndSearch is true, consists of the following:

PropertyTypeDefaultDescription
querystringundefinedThe search query string shown in the search input and used in searching, if using with disabledFiltersAndSearch then the property must contain a stringy value to lock the search or at least empty text ''
tagsstring[]undefinedThe search tags found in the search input as advanced search prefxed with symbol (#) -- different from tags of filters --
filtersstring[][]undefinedThe advanced search filters found also in search input by prefixing with the symbol (@) the value consists of array of 2 strings array the first string represents the key, second string represents the value and whole array represents an item -- different from filters --.
{
  // `query`: A string search query shown in the search input.
  query: '',

  // `tags`: An array of strings **contains** (#). The search input's tags used as advanced search on writing inside the input starting with (#) symbol and spaced tags are surrounded with double quote "" .
  tags: ['#Cairo', '"#Las Vegas"'],

  // `filters`: An Array of array consists of 2 strings, the 1st string refers to the filter's key and 2nd refers to the filter's value. The search input's filters used as advanced search on writing inside the input starting with (@) symbol.
  filters: [["key", "value"], ["filename", "Test file"]]
}

Note: To lock any of the above properties by using disabledFiltersAndSearch then you have to provide a value for the property to be locked at least empty value would be fine.

disableFiltersAndSearch

Type: boolean.

Default: false

If true then the only provided filters & search objects will be used as filters & search and disable both the filters & search input in UI dis-allowing the user to change/un-select any of them at all keeping the selected/provided filters not disabled but no changes possible for them.

Note: if search query is empty it won't be disabled if you need to disable it with no text provide an empty string ''.

Note: Enabling this option will dismiss applying the filters & search from the url queries.

forceFilters

If true then only the applied filters will be selected with the possibility to deselect them reaching 1 filter at least and the user won't be able to select other not-provided filters , false means no restrictions for filter selections.

Note: Enabling this option will deactivate the metadata filters. Metadata will be limited to the selected ones, and users will be compelled to choose at least one metadata option at all times.

Note: Enabling this option will dismiss applying the filters from the url queries.

disableFileResolutionFallback

Type: boolean.

Default: false

If true it will disable fallback request to load resolution info if not found in file details in grid/list layout.

hideLeftSideBar

Type: boolean.

Default: false

Hide the folders tree sidebar and its toggle icon.

defaultFieldKeyOfBulkEditPanel

Type: string.

Default: 'tags' fallbacks to 'title'

Assigns the default field of the bulk edit panel to be opened on showing the bulk edit panel as the focused/default field, it should be one of the general field keys (tags/title/description) or any field key -- lowered case -- of the shown file custom metadata fields (depends on the token).

Events

The explorer plugin emits different events that you could subscribe to or add your handler to be called with the provided arguments passed while emitting/firing the event, the events are listed below with examples show the parameters for handler:

objects-removed

Emitted when objects (folders/labels/collections/files) have been removed from the user's side.

params:

  • removedObjectsUuids: An array of removed objects' uuids (for labels the sids will be the value).
  • removedObjectsType: folders/collections/labels/files/items (files + folders).

example

filerobot.on("objects-removed", (removedObjectsUuids = [], objectsType) => {
  console.log(
    "Objects with the following Uuids have been removed:",
    removedObjectsUuids,
    objectsType
  );
});

folders-moved

Emitted when folder(s) are moved from path to another.

params:

  • movedFoldersUuids: An array of folders uuids that are moved.
  • newPath: A string of the new path which the folders moved to.

example

filerobot.on('objects-removed', (movedFoldersUuids = [], newPath) => {
  console.log(`Following folders uuids ${movedFoldersUuids.join(,)} are moved to this new path (${newPath}).`)
})
3.41.1

2 days ago

3.41.2

2 days ago

3.40.2

3 days ago

3.40.3

3 days ago

3.40.4

3 days ago

3.40.5

3 days ago

3.40.6

3 days ago

3.40.7

3 days ago

3.40.8

3 days ago

3.41.0

3 days ago

3.40.0

4 days ago

3.40.1

4 days ago

3.39.9

4 days ago

3.39.5

8 days ago

3.39.6

8 days ago

3.39.7

8 days ago

3.39.8

8 days ago

3.39.2

9 days ago

3.39.3

9 days ago

3.39.4

9 days ago

3.38.11

10 days ago

3.38.10

10 days ago

3.39.0

10 days ago

3.39.1

10 days ago

3.38.7

11 days ago

3.38.8

11 days ago

3.38.9

11 days ago

3.38.6

14 days ago

3.38.3

14 days ago

3.38.4

14 days ago

3.38.5

14 days ago

3.38.0

15 days ago

3.38.1

15 days ago

3.38.2

15 days ago

3.37.1

15 days ago

3.37.0

16 days ago

3.36.12

16 days ago

3.36.11

16 days ago

3.36.10

17 days ago

3.36.8

18 days ago

3.36.9

18 days ago

3.36.7

18 days ago

3.36.1

22 days ago

3.36.2

22 days ago

3.36.3

22 days ago

3.36.4

21 days ago

3.36.5

21 days ago

3.36.6

21 days ago

3.35.0

23 days ago

3.35.1

23 days ago

3.35.2

23 days ago

3.35.3

23 days ago

3.35.4

23 days ago

3.36.0

23 days ago

3.34.11

24 days ago

3.34.10

30 days ago

3.34.2

1 month ago

3.34.3

1 month ago

3.34.4

1 month ago

3.34.5

1 month ago

3.34.6

1 month ago

3.34.7

1 month ago

3.34.8

30 days ago

3.34.9

30 days ago

3.34.1

1 month ago

3.34.0

1 month ago

3.33.6

1 month ago

3.33.2

1 month ago

3.33.4

1 month ago

3.33.5

1 month ago

3.32.16

1 month ago

3.32.17

1 month ago

3.33.0

1 month ago

3.33.1

1 month ago

3.32.15

1 month ago

3.32.12

2 months ago

3.32.11

2 months ago

3.32.14

2 months ago

3.32.13

2 months ago

3.32.10

2 months ago

3.32.7

2 months ago

3.32.8

2 months ago

3.32.9

2 months ago

3.32.6

2 months ago

3.32.4

2 months ago

3.32.5

2 months ago

3.32.3

2 months ago

3.32.0

2 months ago

3.32.1

2 months ago

3.32.2

2 months ago

3.31.15

2 months ago

3.31.14

2 months ago

3.31.16

2 months ago

3.31.11

2 months ago

3.31.10

2 months ago

3.31.13

2 months ago

3.31.12

2 months ago

3.31.4

2 months ago

3.31.5

2 months ago

3.31.6

2 months ago

3.31.7

2 months ago

3.31.8

2 months ago

3.31.9

2 months ago

3.31.1

2 months ago

3.31.2

2 months ago

3.31.3

2 months ago

3.31.0

2 months ago

3.30.11

2 months ago

3.30.12

2 months ago

3.30.10

2 months ago

3.30.6

2 months ago

3.30.7

2 months ago

3.30.8

2 months ago

3.30.9

2 months ago

3.30.5

2 months ago

3.29.0

2 months ago

3.28.13

2 months ago

3.28.14

2 months ago

3.28.15

2 months ago

3.30.0

2 months ago

3.30.1

2 months ago

3.30.2

2 months ago

3.30.3

2 months ago

3.30.4

2 months ago

3.28.9

2 months ago

3.28.10

2 months ago

3.28.11

2 months ago

3.28.12

2 months ago

3.28.8

2 months ago

3.28.6

2 months ago

3.28.7

2 months ago

3.28.5

2 months ago

3.28.4

2 months ago

3.28.2

2 months ago

3.28.1

2 months ago

3.28.3

2 months ago

3.28.0

2 months ago

3.27.26

2 months ago

3.27.25

2 months ago

3.27.24

2 months ago

3.27.20

2 months ago

3.27.21

2 months ago

3.27.22

2 months ago

3.27.23

2 months ago

3.27.19

3 months ago

3.27.16

3 months ago

3.27.17

3 months ago

3.27.18

3 months ago

3.27.14

3 months ago

3.27.15

3 months ago

3.27.12

3 months ago

3.27.13

3 months ago

3.27.10

3 months ago

3.27.11

3 months ago

3.27.9

3 months ago

3.27.7

3 months ago

3.27.6

3 months ago

3.27.8

3 months ago

3.27.5

3 months ago

3.27.4

3 months ago

3.27.1

3 months ago

3.27.0

3 months ago

3.27.3

3 months ago

3.27.2

3 months ago

3.26.4

3 months ago

3.26.2

3 months ago

3.26.1

3 months ago

3.26.3

3 months ago

3.25.25

3 months ago

3.25.24

3 months ago

3.25.26

3 months ago

3.26.0

3 months ago

3.25.23

3 months ago

3.25.22

3 months ago

3.25.19

3 months ago

3.25.18

3 months ago

3.25.16

3 months ago

3.25.15

3 months ago

3.25.17

3 months ago

3.25.14

3 months ago

3.25.13

3 months ago

3.25.11

3 months ago

3.25.10

3 months ago

3.25.9

3 months ago

3.25.8

3 months ago

3.25.1

3 months ago

3.25.3

3 months ago

3.25.2

3 months ago

3.25.5

3 months ago

3.25.4

3 months ago

3.25.7

3 months ago

3.25.6

3 months ago

3.25.1-beta.2

3 months ago

3.25.1-beta.0

3 months ago

3.25.1-beta.1

3 months ago

3.25.0

4 months ago

3.25.0-beta.0

4 months ago

3.24.2

4 months ago

3.24.3

4 months ago

3.24.3-beta.4

4 months ago

3.22.4-beta.1

4 months ago

3.23.3-beta.2

4 months ago

3.23.3-beta.3

4 months ago

3.23.3-beta.4

4 months ago

3.24.0

4 months ago

3.23.2

4 months ago

3.22.5-beta.0

4 months ago

3.23.1

4 months ago

3.23.0

4 months ago

3.22.4

4 months ago

3.22.2

4 months ago

3.22.3

4 months ago

3.22.0

4 months ago

3.22.1

4 months ago

3.21.7

4 months ago

3.21.6

4 months ago

3.21.2

4 months ago

3.20.1

4 months ago

3.21.1

4 months ago

3.20.0

4 months ago

3.19.20

4 months ago

3.19.18

4 months ago

3.19.19

4 months ago

3.19.16

4 months ago

3.19.17

4 months ago

3.19.14

4 months ago

3.19.15

4 months ago

3.19.13

4 months ago

3.19.12

4 months ago

3.19.10

4 months ago

3.19.11

4 months ago

3.19.8

4 months ago

3.19.9

4 months ago

3.19.7

4 months ago

3.19.4

4 months ago

3.19.3

4 months ago

3.19.6

4 months ago

3.19.5

4 months ago

3.18.1

4 months ago

3.18.0

4 months ago

3.19.0

4 months ago

3.19.2

4 months ago

3.19.1

4 months ago

3.17.6

5 months ago

3.17.5

5 months ago

3.17.4

5 months ago

3.17.3

5 months ago

3.17.0

5 months ago

3.17.2

5 months ago

3.17.1

5 months ago

3.16.1

5 months ago

3.16.0

5 months ago

3.16.2

5 months ago

3.15.26

5 months ago

3.15.25

5 months ago

3.15.23

5 months ago

3.15.22

5 months ago

3.15.21

5 months ago

3.15.20

5 months ago

3.15.19

5 months ago

3.15.18

5 months ago

3.15.17

5 months ago

3.15.16

5 months ago

3.15.15

5 months ago

3.15.14

5 months ago

3.15.13

5 months ago

3.15.12

5 months ago

3.15.11

5 months ago

3.15.8

5 months ago

3.15.9

5 months ago

3.15.7

5 months ago

3.15.2

5 months ago

3.15.4

5 months ago

3.15.3

5 months ago

3.15.5

5 months ago

3.14.15

5 months ago

3.14.16

5 months ago

3.14.17

5 months ago

3.15.0

5 months ago

3.15.1

5 months ago

3.14.12

5 months ago

3.14.13

5 months ago

3.14.14

5 months ago

3.14.10

5 months ago

3.14.9

5 months ago

3.14.8

5 months ago

3.1.3

8 months ago

3.1.2

8 months ago

3.1.1

8 months ago

3.1.0

8 months ago

3.1.7

8 months ago

3.1.6

8 months ago

3.1.5

8 months ago

3.1.4

8 months ago

3.1.9

8 months ago

3.1.8

8 months ago

3.13.21

6 months ago

3.13.22

5 months ago

3.13.20

6 months ago

3.7.5

7 months ago

3.7.4

7 months ago

3.7.3

7 months ago

3.7.2

7 months ago

3.7.9

7 months ago

3.7.8

7 months ago

3.7.7

7 months ago

3.7.6

7 months ago

3.5.2

8 months ago

3.5.1

8 months ago

3.5.0

8 months ago

3.6.26

8 months ago

3.6.25

8 months ago

3.6.24

8 months ago

3.6.22

8 months ago

3.6.21

8 months ago

3.6.20

8 months ago

3.0.1-beta.0

8 months ago

3.0.1-beta.1

8 months ago

3.6.29

8 months ago

3.6.28

8 months ago

3.6.27

8 months ago

3.5.7

8 months ago

3.5.6

8 months ago

3.5.5

8 months ago

3.5.4

8 months ago

3.5.9

8 months ago

3.5.8

8 months ago

3.6.31

7 months ago

3.6.30

7 months ago

3.6.15

8 months ago

3.6.14

8 months ago

3.3.0

8 months ago

3.6.12

8 months ago

3.6.11

8 months ago

3.6.10

8 months ago

3.6.19

8 months ago

3.6.18

8 months ago

3.6.17

8 months ago

3.6.16

8 months ago

3.13.9

6 months ago

3.13.2

6 months ago

3.13.1

6 months ago

3.13.4

6 months ago

3.13.3

6 months ago

3.13.6

6 months ago

3.13.5

6 months ago

3.13.8

6 months ago

3.13.7

6 months ago

3.0.0-beta.51

8 months ago

3.0.0-beta.52

8 months ago

3.0.0-beta.53

8 months ago

3.0.0-beta.54

8 months ago

3.0.0-beta.55

8 months ago

3.0.0-beta.56

8 months ago

3.0.0-beta.57

8 months ago

3.7.15

7 months ago

3.7.14

7 months ago

3.7.11

7 months ago

3.7.12

7 months ago

3.7.10

7 months ago

3.7.19

7 months ago

3.7.17

7 months ago

3.7.18

7 months ago

3.0.0-beta.40

9 months ago

3.0.0-beta.41

9 months ago

3.0.0-beta.42

9 months ago

3.0.0-beta.43

9 months ago

3.0.0-beta.44

9 months ago

3.0.0-beta.45

8 months ago

3.0.0-beta.46

8 months ago

3.0.0-beta.47

8 months ago

3.0.0-beta.48

8 months ago

3.0.0-beta.49

8 months ago

3.7.24

7 months ago

3.7.22

7 months ago

3.7.23

7 months ago

3.13.0

6 months ago

3.7.20

7 months ago

3.7.21

7 months ago

3.0.0-beta.30

9 months ago

3.0.0-beta.31

9 months ago

3.0.0-beta.32

9 months ago

3.0.0-beta.33

9 months ago

3.0.0-beta.34

9 months ago

3.0.0-beta.35

9 months ago

3.0.0-beta.36

9 months ago

3.0.0-beta.37

9 months ago

3.0.0-beta.38

9 months ago

3.0.0-beta.39

9 months ago

3.9.17

7 months ago

3.9.18

7 months ago

3.9.16

7 months ago

3.9.13

7 months ago

3.9.14

7 months ago

3.9.11

7 months ago

3.9.12

7 months ago

3.11.4

7 months ago

3.11.3

7 months ago

3.9.10

7 months ago

3.11.6

7 months ago

3.11.5

7 months ago

3.8.0

7 months ago

3.8.9

7 months ago

3.8.3

7 months ago

3.8.1

7 months ago

3.8.8

7 months ago

3.8.7

7 months ago

3.8.6

7 months ago

3.8.5

7 months ago

3.11.0

7 months ago

3.11.2

7 months ago

3.11.1

7 months ago

3.12.32

6 months ago

3.12.31

6 months ago

3.12.30

6 months ago

3.12.18

6 months ago

3.12.19

6 months ago

3.12.10

6 months ago

3.12.12

6 months ago

3.12.11

6 months ago

3.12.14

6 months ago

3.12.13

6 months ago

3.12.16

6 months ago

3.12.15

6 months ago

3.12.28

6 months ago

3.12.20

6 months ago

3.12.23

6 months ago

3.12.25

6 months ago

3.12.24

6 months ago

3.12.27

6 months ago

3.12.26

6 months ago

3.0.0-beta.20

9 months ago

3.0.0-beta.21

9 months ago

3.0.0-beta.22

9 months ago

3.0.0-beta.23

9 months ago

3.0.0-beta.24

9 months ago

3.0.0-beta.25

9 months ago

3.0.0-beta.27

9 months ago

3.0.0-beta.28

9 months ago

3.0.0-beta.29

9 months ago

3.0.0-beta.19

9 months ago

2.13.8

9 months ago

2.13.9

9 months ago

2.13.6

10 months ago

2.13.7

10 months ago

2.13.4

10 months ago

2.13.5

10 months ago

2.13.2

10 months ago

2.13.3

10 months ago

2.13.0

10 months ago

2.13.1

10 months ago

3.0.0-beta.10

9 months ago

3.0.0-beta.11

9 months ago

3.0.0-beta.12

9 months ago

3.0.0-beta.13

9 months ago

3.0.0-beta.14

9 months ago

3.0.0-beta.15

9 months ago

3.0.0-beta.16

9 months ago

3.0.0-beta.17

9 months ago

3.0.0-beta.18

9 months ago

3.2.2

8 months ago

3.2.1

8 months ago

3.2.0

8 months ago

3.2.4

8 months ago

3.2.3

8 months ago

3.0.0-beta.1

9 months ago

3.0.0-beta.0

9 months ago

3.0.0-beta.3

9 months ago

3.0.0-beta.2

9 months ago

3.0.0-beta.4

9 months ago

3.0.0-beta.7

9 months ago

3.0.0-beta.6

9 months ago

3.0.0-beta.9

9 months ago

3.0.0-beta.8

9 months ago

3.0.4

8 months ago

3.0.3

8 months ago

3.0.1

8 months ago

3.0.5

8 months ago

3.0.0

8 months ago

3.5.14

8 months ago

3.5.13

8 months ago

3.5.12

8 months ago

3.5.11

8 months ago

3.5.10

8 months ago

3.5.18

8 months ago

3.5.17

8 months ago

3.5.16

8 months ago

3.5.15

8 months ago

3.0.0-alpha.0

10 months ago

3.0.0-alpha.3

9 months ago

3.0.0-alpha.2

9 months ago

3.6.2

8 months ago

3.6.1

8 months ago

3.6.0

8 months ago

3.6.6

8 months ago

3.6.5

8 months ago

3.6.4

8 months ago

3.6.3

8 months ago

3.6.9

8 months ago

3.6.8

8 months ago

3.6.7

8 months ago

3.4.0

8 months ago

3.4.1

8 months ago

3.12.1

7 months ago

3.8.10

7 months ago

3.12.0

7 months ago

3.14.2

5 months ago

3.14.5

5 months ago

3.14.4

5 months ago

3.14.7

5 months ago

3.14.6

5 months ago

3.9.9

7 months ago

3.9.8

7 months ago

3.9.3

7 months ago

3.9.2

7 months ago

3.9.1

7 months ago

3.9.0

7 months ago

3.9.7

7 months ago

3.9.6

7 months ago

3.9.5

7 months ago

3.9.4

7 months ago

3.10.1

7 months ago

3.10.0

7 months ago

3.10.3

7 months ago

3.10.2

7 months ago

3.12.3

6 months ago

3.12.2

7 months ago

3.12.5

6 months ago

3.12.4

6 months ago

3.12.9

6 months ago

3.12.8

6 months ago

3.7.1

7 months ago

3.7.0

7 months ago

3.13.18

6 months ago

3.13.19

6 months ago

3.13.10

6 months ago

3.13.11

6 months ago

3.13.12

6 months ago

3.13.13

6 months ago

3.13.14

6 months ago

3.13.15

6 months ago

3.13.16

6 months ago

3.13.17

6 months ago

3.10.5

7 months ago

3.10.4

7 months ago

3.1.12

8 months ago

3.1.14

8 months ago

3.1.13

8 months ago

3.1.16

8 months ago

3.1.15

8 months ago

3.1.18

8 months ago

3.1.17

8 months ago

3.1.10

8 months ago

3.1.23

8 months ago

3.1.22

8 months ago

3.1.25

8 months ago

3.1.24

8 months ago

3.1.26

8 months ago

3.1.21

8 months ago

3.1.20

8 months ago

3.1.19

8 months ago

2.10.0

11 months ago

2.9.9

11 months ago

2.9.2

11 months ago

2.9.1

11 months ago

2.9.4

11 months ago

2.9.3

11 months ago

2.9.6

11 months ago

2.9.5

11 months ago

2.9.8

11 months ago

2.9.7

11 months ago

2.11.0

11 months ago

2.11.1

11 months ago

2.11.6

11 months ago

2.11.7

11 months ago

2.11.4

11 months ago

2.11.5

11 months ago

2.11.3

11 months ago

2.9.12

11 months ago

2.9.10

11 months ago

2.9.11

11 months ago

2.9.16

11 months ago

2.9.14

11 months ago

2.9.15

11 months ago

2.12.0

11 months ago

2.3.0

12 months ago

2.3.2

12 months ago

2.3.1

12 months ago

2.3.4

12 months ago

2.3.3

12 months ago

2.3.6

12 months ago

2.3.5

12 months ago

2.1.2

1 year ago

2.1.1

1 year ago

2.1.4

1 year ago

2.1.3

1 year ago

2.1.6

1 year ago

2.1.5

1 year ago

2.7.0

11 months ago

2.7.2

11 months ago

2.7.1

11 months ago

2.7.4

11 months ago

2.7.3

11 months ago

2.7.6

11 months ago

2.7.5

11 months ago

2.7.8

11 months ago

2.7.7

11 months ago

2.7.9

11 months ago

2.5.0

12 months ago

2.5.2

12 months ago

2.5.1

12 months ago

2.5.4

12 months ago

2.5.3

12 months ago

2.0.0-beta.100

1 year ago

2.0.0-beta.101

1 year ago

2.0.0-beta.102

1 year ago

2.0.0-beta.103

1 year ago

2.0.0-beta.104

1 year ago

2.0.0-beta.105

1 year ago

2.0.0-beta.106

1 year ago

2.0.0-beta.107

1 year ago

2.0.0-beta.108

1 year ago

2.0.0-beta.109

1 year ago

2.0.0-beta.110

1 year ago

2.0.0-beta.111

1 year ago

2.0.0-beta.112

1 year ago

2.0.0-beta.113

1 year ago

2.0.0-beta.114

1 year ago

2.0.0-beta.115

1 year ago

2.0.0-beta.116

1 year ago

2.0.0-beta.117

1 year ago

2.0.0-beta.118

1 year ago

2.0.0-beta.119

1 year ago

2.0.0-beta.120

1 year ago

2.0.0-beta.121

1 year ago

2.0.0-beta.122

1 year ago

2.0.0-beta.123

1 year ago

2.0.0-beta.124

1 year ago

2.0.0-beta.125

1 year ago

2.0.0-beta.126

1 year ago

2.0.0-beta.127

1 year ago

2.0.0-beta.128

1 year ago

2.0.0-beta.95

1 year ago

2.0.0-beta.94

1 year ago

2.0.0-beta.93

1 year ago

2.0.0-beta.92

1 year ago

2.0.0-beta.99

1 year ago

2.0.0-beta.98

1 year ago

2.0.0-beta.97

1 year ago

2.0.0-beta.96

1 year ago

2.0.0-beta.91

1 year ago

2.0.0-beta.90

1 year ago

2.0.0-beta.84

1 year ago

2.0.0-beta.83

1 year ago

2.0.0-beta.82

1 year ago

2.0.0-beta.81

1 year ago

2.0.0-beta.88

1 year ago

2.0.0-beta.87

1 year ago

2.0.0-beta.86

1 year ago

2.0.0-beta.85

1 year ago

2.0.0-beta.89

1 year ago

2.0.0-beta.80

1 year ago

2.0.0-beta.73

1 year ago

2.0.0-beta.72

1 year ago

2.0.0-beta.71

1 year ago

2.0.0-beta.70

1 year ago

2.0.0-beta.77

1 year ago

2.0.0-beta.76

1 year ago

2.0.0-beta.75

1 year ago

2.0.0-beta.74

1 year ago

2.0.0-beta.79

1 year ago

2.0.0-beta.78

1 year ago

2.0.0-beta.62

1 year ago

2.0.0-beta.61

1 year ago

2.0.0-beta.60

1 year ago

2.0.0-beta.66

1 year ago

2.0.0-beta.65

1 year ago

2.0.0-beta.64

1 year ago

2.0.0-beta.63

1 year ago

2.0.0-beta.69

1 year ago

2.0.0-beta.68

1 year ago

2.0.0-beta.67

1 year ago

2.0.0-beta.51

1 year ago

2.0.0-beta.50

1 year ago

2.0.0-beta.55

1 year ago

2.0.0-beta.54

1 year ago

2.0.0-beta.53

1 year ago

2.0.0-beta.52

1 year ago

2.0.0-beta.59

1 year ago

2.0.0-beta.58

1 year ago

2.0.0-beta.57

1 year ago

2.0.0-beta.56

1 year ago

2.0.0-beta.48

1 year ago

2.0.0-beta.49

1 year ago

2.7.11

11 months ago

2.7.10

11 months ago

2.4.1

12 months ago

2.4.0

12 months ago

2.4.3

12 months ago

2.4.2

12 months ago

2.4.5

12 months ago

2.4.4

12 months ago

2.4.7

12 months ago

2.4.6

12 months ago

2.4.9

12 months ago

2.4.8

12 months ago

2.2.1

1 year ago

2.2.0

1 year ago

2.2.3

1 year ago

2.2.2

1 year ago

2.2.5

1 year ago

2.2.4

1 year ago

2.2.7

1 year ago

2.2.6

1 year ago

2.0.15

1 year ago

2.0.16

1 year ago

2.0.13

1 year ago

2.0.14

1 year ago

2.0.11

1 year ago

2.0.12

1 year ago

2.0.10

1 year ago

2.2.9

1 year ago

2.2.8

1 year ago

2.0.19

1 year ago

2.0.17

1 year ago

2.0.18

1 year ago

2.0.26

1 year ago

2.0.27

1 year ago

2.0.24

1 year ago

2.0.25

1 year ago

2.0.22

1 year ago

2.0.23

1 year ago

2.0.20

1 year ago

2.0.21

1 year ago

2.0.28

1 year ago

2.0.29

1 year ago

2.8.1

11 months ago

2.8.0

11 months ago

2.0.30

1 year ago

2.8.5

11 months ago

2.8.4

11 months ago

1.8.1

1 year ago

2.2.18

12 months ago

2.2.15

12 months ago

2.2.16

12 months ago

2.6.1

11 months ago

2.2.13

12 months ago

2.6.0

12 months ago

2.2.14

12 months ago

2.6.3

11 months ago

2.2.11

12 months ago

2.6.2

11 months ago

2.2.12

12 months ago

2.2.10

12 months ago

2.4.18

12 months ago

2.4.17

12 months ago

2.4.19

12 months ago

2.4.14

12 months ago

2.4.13

12 months ago

2.4.16

12 months ago

2.4.15

12 months ago

2.4.10

12 months ago

2.4.12

12 months ago

2.4.11

12 months ago

2.4.29

12 months ago

2.4.28

12 months ago

2.4.25

12 months ago

2.4.24

12 months ago

2.4.27

12 months ago

2.4.26

12 months ago

2.4.21

12 months ago

2.4.20

12 months ago

2.4.23

12 months ago

2.4.22

12 months ago

2.4.39

12 months ago

2.4.35

12 months ago

2.4.38

12 months ago

2.4.37

12 months ago

2.4.32

12 months ago

2.4.34

12 months ago

2.4.33

12 months ago

2.4.30

12 months ago

2.4.47

12 months ago

2.4.46

12 months ago

2.4.49

12 months ago

2.4.48

12 months ago

2.4.43

12 months ago

2.4.42

12 months ago

2.4.45

12 months ago

2.4.44

12 months ago

2.4.41

12 months ago

2.4.40

12 months ago

2.9.0

11 months ago

2.4.54

12 months ago

2.4.55

12 months ago

2.4.50

12 months ago

2.4.52

12 months ago

2.4.51

12 months ago

2.0.3

1 year ago

2.0.5

1 year ago

2.0.4

1 year ago

2.0.7

1 year ago

2.0.6

1 year ago

2.0.9

1 year ago

2.0.8

1 year ago

2.0.1

1 year ago

2.0.0-beta.40

1 year ago

2.0.0-beta.44

1 year ago

2.0.0-beta.43

1 year ago

2.0.0-beta.42

1 year ago

2.0.0-beta.41

1 year ago

2.0.0-beta.47

1 year ago

2.0.0-beta.46

1 year ago

2.0.0-beta.45

1 year ago

2.0.0-beta.39

1 year ago

2.0.0-beta.38

1 year ago

2.0.0-beta.33

1 year ago

2.0.0-beta.32

1 year ago

2.0.0-beta.31

1 year ago

2.0.0-beta.30

1 year ago

2.0.0-beta.37

1 year ago

2.0.0-beta.36

1 year ago

2.0.0-beta.35

1 year ago

2.0.0-beta.34

1 year ago

2.0.0-beta.22

1 year ago

2.0.0-beta.21

1 year ago

2.0.0-beta.20

1 year ago

2.0.0-beta.26

1 year ago

2.0.0-beta.25

1 year ago

2.0.0-beta.24

1 year ago

2.0.0-beta.23

1 year ago

2.0.0-beta.29

1 year ago

2.0.0-beta.28

1 year ago

2.0.0-beta.27

1 year ago

2.0.0-beta.19

1 year ago

2.0.0-beta.18

1 year ago

2.0.0-beta.17

1 year ago

1.0.132

1 year ago

1.0.132-rc.0

1 year ago

1.8.0

1 year ago

1.0.133-rc.0

1 year ago

2.0.0-beta.9

1 year ago

2.0.0-beta.8

1 year ago

2.0.0-beta.7

1 year ago

2.0.0-beta.2

1 year ago

2.0.0-beta.1

1 year ago

2.0.0-beta.0

1 year ago

2.0.0-beta.6

1 year ago

2.0.0-beta.5

1 year ago

2.0.0-beta.4

1 year ago

2.0.0-beta.3

1 year ago

2.0.0-beta.11

1 year ago

2.0.0-beta.10

1 year ago

2.0.0-beta.15

1 year ago

2.0.0-beta.14

1 year ago

2.0.0-beta.13

1 year ago

2.0.0-beta.12

1 year ago

2.0.0-beta.16

1 year ago

1.0.132-v3.4

1 year ago

1.0.132-v3.3

1 year ago

1.0.132-v3.2

1 year ago

1.0.132-v3.1

1 year ago

1.0.132-v3.6

1 year ago

1.0.132-v3.5

1 year ago

1.0.132-v3.0

1 year ago

1.0.127-alpha.1

2 years ago

1.0.127-alpha.0

2 years ago

1.0.129-rc.0

1 year ago

1.0.131

1 year ago

1.0.130

1 year ago

1.0.128-alpha.9

1 year ago

1.0.128-alpha.4

1 year ago

1.0.128-alpha.3

1 year ago

1.0.128-alpha.2

1 year ago

1.0.128-alpha.1

1 year ago

1.0.128-alpha.8

1 year ago

1.0.128-alpha.7

1 year ago

1.0.128-alpha.6

1 year ago

1.0.128-alpha.5

1 year ago

1.0.128-alpha.0

1 year ago

1.0.125-alpha.11

2 years ago

1.0.125-alpha.10

2 years ago

1.0.123

2 years ago

1.0.129

1 year ago

1.0.128

1 year ago

1.0.125

2 years ago

1.0.124

2 years ago

1.0.127

2 years ago

1.0.126

2 years ago

1.0.128-rc.0

1 year ago

1.0.128-rc.1

1 year ago

1.0.125-rc.0

2 years ago

1.0.125-rc.5

2 years ago

1.0.125-rc.6

2 years ago

1.0.125-rc.7

2 years ago

1.0.125-rc.8

2 years ago

1.0.125-rc.1

2 years ago

1.0.125-rc.2

2 years ago

1.0.125-rc.3

2 years ago

1.0.125-rc.4

2 years ago

1.0.125-rc.9

2 years ago

1.0.125-alpha.0

2 years ago

1.0.125-alpha.1

2 years ago

1.0.125-alpha.2

2 years ago

1.0.125-alpha.3

2 years ago

1.0.125-alpha.4

2 years ago

1.0.125-alpha.5

2 years ago

1.0.125-alpha.6

2 years ago

1.0.125-alpha.7

2 years ago

1.0.125-alpha.8

2 years ago

1.0.125-alpha.9

2 years ago

1.0.131-alpha.0

1 year ago

1.0.131-alpha.1

1 year ago

1.0.131-alpha.2

1 year ago

1.0.127-rc.0

2 years ago

1.0.123-rc.5

2 years ago

1.0.123-rc.6

2 years ago

1.0.123-rc.4

2 years ago

1.0.125-rc.12

2 years ago

1.0.125-rc.11

2 years ago

1.0.125-rc.10

2 years ago

1.0.129-alpha.2

1 year ago

1.0.129-alpha.0

1 year ago

1.0.129-alpha.1

1 year ago

1.0.126-rc.7

2 years ago

1.0.126-rc.6

2 years ago

1.0.126-rc.5

2 years ago

1.0.126-rc.4

2 years ago

1.0.126-rc.3

2 years ago

1.0.126-rc.2

2 years ago

1.0.126-rc.1

2 years ago

1.0.126-rc.0

2 years ago

1.0.131-rc.0

1 year ago

1.0.126-alpha.0

2 years ago

1.0.126-alpha.1

2 years ago

1.0.126-alpha.2

2 years ago

1.0.123-alpha.13

2 years ago

1.0.126-alpha.3

2 years ago

1.0.126-alpha.4

2 years ago

1.0.126-alpha.5

2 years ago

1.0.123-alpha.12

2 years ago

1.0.122-alpha.7

2 years ago

1.0.122-alpha.4

2 years ago

1.0.122-alpha.3

2 years ago

1.0.122-alpha.6

2 years ago

1.0.122-alpha.5

2 years ago

1.0.122-alpha.0

2 years ago

1.0.122-alpha.2

2 years ago

1.0.122-alpha.1

2 years ago

1.0.119-rc.5

2 years ago

1.0.119-rc.4

2 years ago

1.0.119-rc.3

2 years ago

1.0.121-rc.0

2 years ago

1.0.119-rc.2

2 years ago

1.0.119-rc.1

2 years ago

1.0.119-rc.0

2 years ago

1.0.119-rc.9

2 years ago

1.0.119-rc.8

2 years ago

1.0.119-rc.7

2 years ago

1.0.119-rc.6

2 years ago

1.0.117-alpha.0

2 years ago

1.0.117-alpha.1

2 years ago

1.0.121-alpha.0

2 years ago

1.0.121

2 years ago

1.0.120

2 years ago

1.0.122

2 years ago

1.0.118

2 years ago

1.0.117

2 years ago

1.0.119

2 years ago

1.0.120-rc.0

2 years ago

1.0.120-rc.1

2 years ago

1.0.118-alpha.4

2 years ago

1.0.118-alpha.0

2 years ago

1.0.118-alpha.1

2 years ago

1.0.118-alpha.2

2 years ago

1.0.118-alpha.3

2 years ago

1.0.117-rc.0

2 years ago

1.0.119-rc.10

2 years ago

1.0.119-alpha.0

2 years ago

1.0.119-alpha.1

2 years ago

1.0.119-alpha.2

2 years ago

1.0.119-alpha.3

2 years ago

1.0.119-alpha.4

2 years ago

1.0.119-alpha.5

2 years ago

1.0.123-alpha.7

2 years ago

1.0.123-alpha.6

2 years ago

1.0.123-alpha.9

2 years ago

1.0.123-alpha.8

2 years ago

1.0.123-alpha.1

2 years ago

1.0.123-alpha.0

2 years ago

1.0.123-alpha.3

2 years ago

1.0.123-alpha.2

2 years ago

1.0.123-alpha.5

2 years ago

1.0.123-alpha.4

2 years ago

1.0.123-rc.3

2 years ago

1.0.123-rc.1

2 years ago

1.0.123-rc.2

2 years ago

1.0.123-rc.0

2 years ago

1.0.118-rc.0

2 years ago

1.0.122-rc.1

2 years ago

1.0.122-rc.0

2 years ago

1.0.122-rc.5

2 years ago

1.0.122-rc.4

2 years ago

1.0.122-rc.3

2 years ago

1.0.122-rc.2

2 years ago

1.0.122-rc.6

2 years ago

1.0.120-alpha.0

2 years ago

1.0.123-alpha.10

2 years ago

1.0.123-alpha.11

2 years ago

1.0.115-alpha.0

2 years ago

1.0.116-rc.0

2 years ago

1.0.116-alpha.1

2 years ago

1.0.116-alpha.0

2 years ago

1.0.116-alpha.2

2 years ago

1.0.114-alpha.8

2 years ago

1.0.114-alpha.9

2 years ago

1.0.114-alpha.6

2 years ago

1.0.114-alpha.7

2 years ago

1.0.114-alpha.4

2 years ago

1.0.114-alpha.5

2 years ago

1.0.114-alpha.2

2 years ago

1.0.114-alpha.3

2 years ago

1.0.114

2 years ago

1.0.116

2 years ago

1.0.115

2 years ago

1.0.114-alpha.20

2 years ago

1.0.114-alpha.11

2 years ago

1.0.114-alpha.12

2 years ago

1.0.114-alpha.13

2 years ago

1.0.114-alpha.14

2 years ago

1.0.114-alpha.10

2 years ago

1.0.114-alpha.19

2 years ago

1.0.114-alpha.15

2 years ago

1.0.114-alpha.16

2 years ago

1.0.114-alpha.17

2 years ago

1.0.114-alpha.18

2 years ago

1.0.114-rc.4

2 years ago

1.0.114-rc.3

2 years ago

1.0.114-rc.2

2 years ago

1.0.114-rc.1

2 years ago

1.0.114-rc.0

2 years ago

1.0.113-alpha.7

2 years ago

1.0.113-alpha.8

2 years ago

1.0.113-alpha.9

2 years ago

1.0.113-rc.8

2 years ago

1.0.113-rc.4

2 years ago

1.0.113-rc.5

2 years ago

1.0.113-rc.6

2 years ago

1.0.113-rc.7

2 years ago

1.0.113-rc.3

2 years ago

1.0.113-alpha.14

2 years ago

1.0.113-alpha.12

2 years ago

1.0.113-alpha.13

2 years ago

1.0.113-alpha.10

2 years ago

1.0.113-alpha.11

2 years ago

1.0.114-alpha.0

2 years ago

1.0.114-alpha.1

2 years ago

1.0.113

2 years ago

1.0.113-alpha.5

2 years ago

1.0.113-alpha.6

2 years ago

1.0.113-alpha.0

2 years ago

1.0.113-alpha.3

2 years ago

1.0.113-alpha.4

2 years ago

1.0.113-alpha.1

2 years ago

1.0.113-alpha.2

2 years ago

1.0.113-rc.0

2 years ago

1.0.113-rc.1

2 years ago

1.0.113-rc.2

2 years ago

1.0.112-rc.0

2 years ago

1.0.112-alpha.1

2 years ago

1.0.112-alpha.0

2 years ago

1.0.112

2 years ago

1.0.110-rc.8

2 years ago

1.0.110-rc.7

2 years ago

1.0.110-rc.6

2 years ago

1.0.110-rc.5

2 years ago

1.0.110-rc.9

2 years ago

1.0.110-rc.4

2 years ago

1.0.110-rc.3

2 years ago

1.0.110-rc.2

2 years ago

1.0.110-rc.1

2 years ago

1.0.111-rc.0

2 years ago

1.0.110-alpha.1

2 years ago

1.0.110-alpha.2

2 years ago

1.0.110-alpha.3

2 years ago

1.0.110-alpha.4

2 years ago

1.0.110-alpha.5

2 years ago

1.0.110-alpha.6

2 years ago

1.0.110-alpha.7

2 years ago

1.0.110-alpha.8

2 years ago

1.0.110-alpha.9

2 years ago

1.0.110-alpha.13

2 years ago

1.0.110-alpha.14

2 years ago

1.0.110-alpha.11

2 years ago

1.0.110-alpha.12

2 years ago

1.0.110-alpha.15

2 years ago

1.0.110-alpha.10

2 years ago

1.0.111-alpha.1

2 years ago

1.0.111-alpha.0

2 years ago

1.0.110-rc.10

2 years ago

1.0.110

2 years ago

1.0.111

2 years ago

1.0.110-rc.0

2 years ago

1.0.108-rc.12

2 years ago

1.0.108-rc.11

2 years ago

1.0.108-rc.10

2 years ago

1.0.109-alpha.6

2 years ago

1.0.109-alpha.1

2 years ago

1.0.109-alpha.0

2 years ago

1.0.109-alpha.3

2 years ago

1.0.109-alpha.2

2 years ago

1.0.109-alpha.5

2 years ago

1.0.109-alpha.4

2 years ago

1.0.110-alpha.0

2 years ago

1.0.108-rc.4

2 years ago

1.0.108-rc.5

2 years ago

1.0.108-rc.2

2 years ago

1.0.108-rc.3

2 years ago

1.0.108-rc.8

2 years ago

1.0.108-rc.9

2 years ago

1.0.108-rc.6

2 years ago

1.0.108-rc.7

2 years ago

1.0.109-rc.4

2 years ago

1.0.109-rc.3

2 years ago

1.0.109-rc.0

2 years ago

1.0.109-rc.2

2 years ago

1.0.109-rc.1

2 years ago

1.0.109

2 years ago

1.0.108

2 years ago

1.0.108-alpha.5

2 years ago

1.0.108-alpha.6

2 years ago

1.0.108-alpha.3

2 years ago

1.0.108-alpha.4

2 years ago

1.0.108-alpha.1

2 years ago

1.0.108-alpha.2

2 years ago

1.0.103-alpha.0

2 years ago

1.0.103-alpha.1

2 years ago

1.0.103-alpha.2

2 years ago

1.0.103-alpha.3

2 years ago

1.0.103-alpha.8

2 years ago

1.0.103-alpha.4

2 years ago

1.0.103-alpha.5

2 years ago

1.0.103-alpha.6

2 years ago

1.0.103-alpha.7

2 years ago

1.0.106-rc.0

2 years ago

1.0.106-rc.1

2 years ago

1.0.106-rc.2

2 years ago

1.0.106-alpha.1

2 years ago

1.0.106-alpha.2

2 years ago

1.0.106-alpha.0

2 years ago

1.0.107-rc.0

2 years ago

1.0.105-rc.0

2 years ago

1.0.108-rc.0

2 years ago

1.0.108-rc.1

2 years ago

1.0.104-alpha.0

2 years ago

1.0.103-rc.9

2 years ago

1.0.103-rc.3

2 years ago

1.0.103-rc.4

2 years ago

1.0.103-rc.1

2 years ago

1.0.103-rc.2

2 years ago

1.0.103-rc.7

2 years ago

1.0.103-rc.8

2 years ago

1.0.103-rc.5

2 years ago

1.0.103-rc.6

2 years ago

1.0.103-rc.0

2 years ago

1.0.104-rc.1

2 years ago

1.0.104-rc.0

2 years ago

1.0.102-alpha.0

2 years ago

1.0.102-alpha.1

2 years ago

1.0.102-alpha.2

2 years ago

1.0.105-alpha.1

2 years ago

1.0.105-alpha.0

2 years ago

1.0.107

2 years ago

1.0.106

2 years ago

1.0.103

2 years ago

1.0.102

2 years ago

1.0.105

2 years ago

1.0.104

2 years ago

1.0.102-rc.5

2 years ago

1.0.102-rc.4

2 years ago

1.0.102-rc.3

2 years ago

1.0.102-rc.2

2 years ago

1.0.102-rc.1

2 years ago

1.0.108-alpha.0

2 years ago

1.0.100-rc.1

2 years ago

1.0.100-rc.0

2 years ago

1.0.100-rc.2

2 years ago

1.0.99

2 years ago

1.0.101

2 years ago

1.0.99-rc.2

2 years ago

1.0.100

2 years ago

1.0.99-rc.1

2 years ago

1.0.99-rc.3

2 years ago

1.0.99-alpha.5

2 years ago

1.0.99-alpha.7

2 years ago

1.0.99-alpha.6

2 years ago

1.0.102-rc.0

2 years ago

1.0.100-alpha.0

2 years ago

1.0.97-alpha.4

2 years ago

1.0.97-alpha.0

2 years ago

1.0.97-alpha.1

2 years ago

1.0.97-alpha.2

2 years ago

1.0.97-alpha.3

2 years ago

1.0.97-rc.4

2 years ago

1.0.97-rc.3

2 years ago

1.0.97-rc.2

2 years ago

1.0.97-rc.1

2 years ago

1.0.97-rc.0

2 years ago

1.0.98-rc.0

2 years ago

1.0.98-rc.1

2 years ago

1.0.95-alpha.1

3 years ago

1.0.95-alpha.0

3 years ago

1.0.94-rc.3

3 years ago

1.0.94-rc.2

3 years ago

1.0.94-rc.1

3 years ago

1.0.94-rc.0

3 years ago

1.0.95

2 years ago

1.0.94

3 years ago

1.0.93

3 years ago

1.0.98

2 years ago

1.0.97

2 years ago

1.0.96

2 years ago

1.0.93-alpha.5

3 years ago

1.0.99-rc.0

2 years ago

1.0.99-alpha.1

2 years ago

1.0.99-alpha.0

2 years ago

1.0.93-rc.0

3 years ago

1.0.99-alpha.4

2 years ago

1.0.99-alpha.3

2 years ago

1.0.99-alpha.2

2 years ago

1.0.95-rc.0

3 years ago

1.0.94-alpha.0

3 years ago

1.0.94-alpha.2

3 years ago

1.0.94-alpha.1

3 years ago

1.0.93-alpha.4

3 years ago

1.0.93-alpha.2

3 years ago

1.0.93-alpha.3

3 years ago

1.0.93-alpha.0

3 years ago

1.0.93-alpha.1

3 years ago

1.0.91-alpha.10

3 years ago

1.0.91-rc.8

3 years ago

1.0.91-rc.9

3 years ago

1.0.92-alpha.0

3 years ago

1.0.91-rc.11

3 years ago

1.0.91-rc.10

3 years ago

1.0.91-rc.12

3 years ago

1.0.91-alpha.8

3 years ago

1.0.91-alpha.9

3 years ago

1.0.91-alpha.6

3 years ago

1.0.91-alpha.7

3 years ago

1.0.92-rc.0

3 years ago

1.0.91

3 years ago

1.0.92

3 years ago

1.0.91-rc.7

3 years ago

1.0.91-rc.6

3 years ago

1.0.91-alpha.4

3 years ago

1.0.91-alpha.5

3 years ago

1.0.91-rc.1

3 years ago

1.0.91-rc.2

3 years ago

1.0.91-rc.3

3 years ago

1.0.91-rc.4

3 years ago

1.0.91-rc.5

3 years ago

1.0.91-alpha.2

3 years ago

1.0.91-alpha.3

3 years ago

1.0.91-alpha.1

3 years ago

1.0.91-rc.0

3 years ago

1.0.91-alpha.0

3 years ago

1.0.89

3 years ago

1.0.90

3 years ago

1.0.90-alpha.2

3 years ago

1.0.90-alpha.1

3 years ago

1.0.90-alpha.0

3 years ago

1.0.88

3 years ago

1.0.87

3 years ago

1.0.86

3 years ago

1.0.85

3 years ago

1.0.84

3 years ago

1.0.83

3 years ago

1.0.82

3 years ago

1.0.77

3 years ago

1.0.76

3 years ago

1.0.75

3 years ago

1.0.74

3 years ago

1.0.79

3 years ago

1.0.78

3 years ago

1.0.80

3 years ago

1.0.81

3 years ago

1.0.66

3 years ago

1.0.69

3 years ago

1.0.68

3 years ago

1.0.67

3 years ago

1.0.73

3 years ago

1.0.72

3 years ago

1.0.71

3 years ago

1.0.70

3 years ago

1.0.65

3 years ago

1.0.64

3 years ago

1.0.63

3 years ago

1.0.62

3 years ago

1.0.61

3 years ago

1.0.60

3 years ago

1.0.59

3 years ago

1.0.58

3 years ago

1.0.55

3 years ago

1.0.54

3 years ago

1.0.57

3 years ago

1.0.56

3 years ago

1.0.53

3 years ago

1.0.51

3 years ago

1.0.50

3 years ago

1.0.49

3 years ago

1.0.48

3 years ago

1.0.47

3 years ago

1.0.46

3 years ago

1.0.45

3 years ago

1.0.44

3 years ago

1.0.43

3 years ago

1.0.42

3 years ago

1.0.40

3 years ago

1.0.41

3 years ago

1.0.39

3 years ago

1.0.38

3 years ago

1.0.33

3 years ago

1.0.32

3 years ago

1.0.31

3 years ago

1.0.30

3 years ago

1.0.37

3 years ago

1.0.36

3 years ago

1.0.35

3 years ago

1.0.34

3 years ago

1.0.29

3 years ago

1.0.28

3 years ago

1.0.27

3 years ago

1.0.19

3 years ago

1.0.22

3 years ago

1.0.21

3 years ago

1.0.20

3 years ago

1.0.26

3 years ago

1.0.25

3 years ago

1.0.24

3 years ago

1.0.23

3 years ago

1.0.2

3 years ago

1.0.18

3 years ago

1.0.1

3 years ago

1.0.17

3 years ago

1.0.0

3 years ago

1.0.16

3 years ago

1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

0.0.0-beta.26

3 years ago

0.0.0-beta.25

3 years ago

0.0.0-beta.28

3 years ago

0.0.0-beta.27

3 years ago

0.0.0-beta.29

3 years ago

0.0.0-beta.24

3 years ago

1.0.11

3 years ago

1.0.10

3 years ago

0.0.0-beta.31

3 years ago

0.0.0-beta.30

3 years ago

1.0.15

3 years ago

0.0.0-beta.33

3 years ago

1.0.14

3 years ago

0.0.0-beta.32

3 years ago

1.0.13

3 years ago

1.0.12

3 years ago

0.0.0-beta.34

3 years ago

0.0.0-beta.23

3 years ago

0.0.0-beta.22

3 years ago

0.0.0-beta.21

3 years ago

0.0.0-beta.20

3 years ago

0.0.0-beta.17

3 years ago

0.0.0-beta.19

3 years ago

0.0.0-beta.18

3 years ago

0.0.0-beta.15

3 years ago

0.0.0-beta.14

3 years ago

0.0.0-beta.16

3 years ago

0.0.0-beta.11

3 years ago

0.0.0-beta.13

3 years ago

0.0.0-beta.12

3 years ago

0.0.0-beta.9

3 years ago

0.0.0-beta.10

3 years ago

0.0.0-beta.8

3 years ago

0.0.0-beta.7

3 years ago

0.0.0-beta.5

3 years ago

0.0.0-beta.6

3 years ago

0.0.0-beta.4

3 years ago

0.0.0-beta.3

3 years ago

0.0.0-beta.2

3 years ago

0.0.0-beta.1

3 years ago