7.7.1 โ€ข Published 1 year ago

@capgo/cli v7.7.1

Weekly downloads
-
License
Apache 2.0
Repository
github
Last release
1 year ago

Capgo CLI

A CLI to upload and download files from the Capgo Cloud.

You can find the most up to date version of this doc in our web doc: https://capgo.app/docs/cli/overview/

Usage

Before use the CLI, you should register here : https://capgo.app/

Then go to your account in apikey section and click in the all key to copy it.

Follow the documentation here : "https://capacitorjs.com/docs/getting-started/

๐Ÿ“‘ Capgo CLI Commands

๐Ÿ“‹ Table of Contents

๐Ÿš€ Init

Alias: i

npx @capgo/cli@latest init

๐Ÿš€ Initialize a new app in Capgo Cloud with step-by-step guidance. This includes adding code for updates, building, uploading your app, and verifying update functionality.

Example:

npx @capgo/cli@latest init YOUR_API_KEY com.example.app

Options

ParamTypeDescription
-n,stringApp name for display in Capgo Cloud
-i,stringApp icon path for display in Capgo Cloud
--supa-hoststringSupabase host URL for custom setups
--supa-anonstringSupabase anon token for custom setups

๐Ÿ‘จโ€โš•๏ธ Doctor

npx @capgo/cli@latest doctor

๐Ÿ‘จโ€โš•๏ธ Check if your Capgo app installation is up-to-date and gather information useful for bug reports. This command helps diagnose issues with your setup.

Example:

npx @capgo/cli@latest doctor

Options

ParamTypeDescription
--package-jsonstringA list of paths to package.json. Useful for monorepos (comma separated ex: ../../package.json,./package.json)

๐Ÿ”‘ Login

Alias: l

npx @capgo/cli@latest login

๐Ÿ”‘ Save your Capgo API key to your machine or local folder for easier access to Capgo Cloud services. Use --apikey=**** in any command to override it.

Example:

npx @capgo/cli@latest login YOUR_API_KEY

Options

ParamTypeDescription
--localbooleanOnly save in local folder, git ignored for security.
--supa-hoststringSupabase host URL for custom setups
--supa-anonstringSupabase anon token for custom setups

๐Ÿ“ฆ Bundle

๐Ÿ“ฆ Manage app bundles for deployment in Capgo Cloud, including upload, compatibility checks, and encryption.

โฌ†๏ธ Upload

Alias: u

npx @capgo/cli@latest bundle upload

โฌ†๏ธ Upload a new app bundle to Capgo Cloud for distribution, optionally linking to a channel or external URL. External option supports privacy concerns or large apps (>200MB) by storing only the link. Capgo never inspects external content. Encryption adds a trustless security layer. Version must be > 0.0.0 and unique.

โ„น๏ธ External option helps with corporate privacy concerns and apps larger than 200MB by storing only the link.

โ„น๏ธ Capgo Cloud never looks at the content in the link for external options or in the code when stored.

โ„น๏ธ You can add a second layer of security with encryption, making Capgo trustless.

โ„น๏ธ Version should be greater than "0.0.0" and cannot be overridden or reused after deletion for security reasons.

Example:

npx @capgo/cli@latest bundle upload com.example.app --path ./dist --channel production

Options:

ParamTypeDescription
-a,stringAPI key to link to your account
-p,stringPath of the folder to upload, if not provided it will use the webDir set in capacitor.config
-c,stringChannel to link to
-e,stringLink to external URL instead of upload to Capgo Cloud
--iv-session-keystringSet the IV and session key for bundle URL external
--s3-regionstringRegion for your S3 bucket
--s3-apikeystringAPI key for your S3 endpoint
--s3-apisecretstringAPI secret for your S3 endpoint
--s3-endointstringURL of S3 endpoint
--s3-bucket-namestringName for your AWS S3 bucket
--s3-portstringPort for your S3 endpoint
--no-s3-sslbooleanDisable SSL for S3 upload
--key-v2stringCustom path for private signing key (v2 system)
--key-data-v2stringPrivate signing key (v2 system)
--bundle-urlbooleanPrints bundle URL into stdout
--no-keybooleanIgnore signing key and send clear update
--no-code-checkbooleanIgnore checking if notifyAppReady() is called in source code and index present in root folder
--display-iv-sessionbooleanShow in the console the IV and session key used to encrypt the update
-b,stringBundle version number of the bundle to upload
--linkstringLink to external resource (e.g. GitHub release)
--commentstringComment about this version, could be a release note, a commit hash, a commit message, etc.
--min-update-versionstringMinimal version required to update to this version. Used only if the disable auto update is set to metadata in channel
--auto-min-update-versionbooleanSet the min update version based on native packages
--ignore-metadata-checkbooleanIgnores the metadata (node_modules) check when uploading
--ignore-checksum-checkbooleanIgnores the checksum check when uploading
--timeoutstringTimeout for the upload process in seconds
--multipartbooleanUses multipart protocol to upload data to S3, Deprecated, use tus instead
--zipbooleanUpload the bundle using zip to Capgo cloud (legacy)
--tusbooleanUpload the bundle using TUS to Capgo cloud
--tus-chunk-sizestringChunk size for the TUS upload
--partialbooleanUpload partial files to Capgo cloud
--partial-onlybooleanUpload only partial files to Capgo cloud, skip the zipped file, useful for big bundle
--encrypted-checksumstringAn encrypted checksum (signature). Used only when uploading an external bundle.
--auto-set-bundlebooleanSet the bundle in capacitor.config.json
--dry-uploadbooleanDry upload the bundle process, mean it will not upload the files but add the row in database (Used by Capgo for internal testing)
--package-jsonstringA list of paths to package.json. Useful for monorepos (comma separated ex: ../../package.json,./package.json)
--node-modulesstringA list of paths to node_modules. Useful for monorepos (comma separated ex: ../../node_modules,./node_modules)
--encrypt-partialbooleanEncrypt the partial update files (automatically applied for updater > 6.14.4)
--delete-linked-bundle-on-uploadbooleanLocates the currently linked bundle in the channel you are trying to upload to, and deletes it
--no-brotli-patternsstringGlob patterns for files to exclude from brotli compression (comma-separated)
--disable-brotlibooleanCompletely disable brotli compression even if updater version supports it
--supa-hoststringSupabase host URL, for self-hosted Capgo or testing
--supa-anonstringSupabase anon token, for self-hosted Capgo or testing

๐Ÿงช Compatibility

npx @capgo/cli@latest bundle compatibility

๐Ÿงช Check compatibility of a bundle with a specific channel in Capgo Cloud to ensure updates are safe.

Example:

npx @capgo/cli@latest bundle compatibility com.example.app --channel production

Options:

ParamTypeDescription
-a,stringAPI key to link to your account
-c,stringChannel to check the compatibility with
--textbooleanOutput text instead of emojis
--package-jsonstringA list of paths to package.json. Useful for monorepos (comma separated ex: ../../package.json,./package.json)
--node-modulesstringA list of paths to node_modules. Useful for monorepos (comma separated ex: ../../node_modules,./node_modules)
--supa-hoststringSupabase host URL for custom setups
--supa-anonstringSupabase anon token for custom setups

๐Ÿ—‘๏ธ Delete

Alias: d

npx @capgo/cli@latest bundle delete

๐Ÿ—‘๏ธ Delete a specific bundle from Capgo Cloud, optionally targeting a single version.

Example:

npx @capgo/cli@latest bundle delete BUNDLE_ID com.example.app

Options:

ParamTypeDescription
-a,stringAPI key to link to your account
--supa-hoststringSupabase host URL for custom setups
--supa-anonstringSupabase anon token for custom setups

๐Ÿ“‹ List

Alias: l

npx @capgo/cli@latest bundle list

๐Ÿ“‹ List all bundles uploaded for an app in Capgo Cloud.

Example:

npx @capgo/cli@latest bundle list com.example.app

Options:

ParamTypeDescription
-a,stringAPI key to link to your account
--supa-hoststringSupabase host URL for custom setups
--supa-anonstringSupabase anon token for custom setups

๐Ÿงน Cleanup

Alias: c

npx @capgo/cli@latest bundle cleanup

๐Ÿงน Cleanup old bundles in Capgo Cloud, keeping a specified number of recent versions or those linked to channels. Ignores bundles in use.

Example:

npx @capgo/cli@latest bundle cleanup com.example.app --bundle=1.0 --keep=3

Options:

ParamTypeDescription
-b,stringBundle version number of the app to delete
-a,stringAPI key to link to your account
-k,stringNumber of versions to keep
-f,stringForce removal
--ignore-channelbooleanDelete all versions even if linked to a channel, this will delete channel as well
--supa-hoststringSupabase host URL for custom setups
--supa-anonstringSupabase anon token for custom setups

๐Ÿ”’ Encrypt

npx @capgo/cli@latest bundle encrypt

๐Ÿ”’ Encrypt a zip bundle using the new encryption method for secure external storage or testing. Used with external sources or for testing, prints ivSessionKey for upload or decryption.

Example:

npx @capgo/cli@latest bundle encrypt ./myapp.zip CHECKSUM

Options:

ParamTypeDescription
--keystringCustom path for private signing key
--key-datastringPrivate signing key
-j,stringOutput in JSON

๐Ÿ”“ Decrypt

npx @capgo/cli@latest bundle decrypt

๐Ÿ”“ Decrypt a zip bundle using the new encryption method, mainly for testing purposes. Prints the base64 decrypted session key for verification.

Example:

npx @capgo/cli@latest bundle decrypt ./myapp_encrypted.zip CHECKSUM

Options:

ParamTypeDescription
--keystringCustom path for private signing key
--key-datastringPrivate signing key
--checksumstringChecksum of the bundle, to verify the integrity of the bundle

๐Ÿ”น Zip

npx @capgo/cli@latest bundle zip

๐Ÿ—œ๏ธ Create a zip file of your app bundle for upload or local storage. Useful for preparing bundles before encryption or upload.

Example:

npx @capgo/cli@latest bundle zip com.example.app --path ./dist

Options:

ParamTypeDescription
-p,stringPath of the folder to upload, if not provided it will use the webDir set in capacitor.config
-b,stringBundle version number to name the zip file
-n,stringName of the zip file
-j,stringOutput in JSON
--no-code-checkbooleanIgnore checking if notifyAppReady() is called in source code and index present in root folder
--key-v2booleanUse encryption v2
--package-jsonstringA list of paths to package.json. Useful for monorepos (comma separated ex: ../../package.json,./package.json)

๐Ÿ“ฑ App

๐Ÿ“ฑ Manage your Capgo app settings and configurations in Capgo Cloud.

โž• Add

Alias: a

npx @capgo/cli@latest app add

โž• Add a new app to Capgo Cloud with a unique app ID in the format com.test.app. All options can be guessed from config if not provided.

Example:

npx @capgo/cli@latest app add com.example.app --name "My App" --icon ./icon.png

Options:

ParamTypeDescription
-n,stringApp name for display in Capgo Cloud
-i,stringApp icon path for display in Capgo Cloud
-a,stringAPI key to link to your account
--supa-hoststringSupabase host URL for custom setups
--supa-anonstringSupabase anon token for custom setups

๐Ÿ—‘๏ธ Delete

npx @capgo/cli@latest app delete

๐Ÿ—‘๏ธ Delete an app from Capgo Cloud, optionally specifying a version to delete only that bundle.

Example:

npx @capgo/cli@latest app delete com.example.app

Options:

ParamTypeDescription
-a,stringAPI key to link to your account
--supa-hoststringSupabase host URL for custom setups
--supa-anonstringSupabase anon token for custom setups

๐Ÿ“‹ List

Alias: l

npx @capgo/cli@latest app list

๐Ÿ“‹ List all apps registered under your account in Capgo Cloud.

Example:

npx @capgo/cli@latest app list

Options:

ParamTypeDescription
-a,stringAPI key to link to your account
--supa-hoststringSupabase host URL for custom setups
--supa-anonstringSupabase anon token for custom setups

๐Ÿž Debug

npx @capgo/cli@latest app debug

๐Ÿž Listen for live update events in Capgo Cloud to debug your app. Optionally target a specific device for detailed diagnostics.

Example:

npx @capgo/cli@latest app debug com.example.app --device DEVICE_ID

Options:

ParamTypeDescription
-a,stringAPI key to link to your account
-d,stringThe specific device ID to debug
--supa-hoststringSupabase host URL for custom setups
--supa-anonstringSupabase anon token for custom setups

โš™๏ธ Setting

npx @capgo/cli@latest app setting

โš™๏ธ Modify Capacitor configuration programmatically by specifying the path to the setting. (e.g., plugins.CapacitorUpdater.defaultChannel). You MUST provide either --string or --bool.

Example:

npx @capgo/cli@latest app setting plugins.CapacitorUpdater.defaultChannel --string "Production"

Options:

ParamTypeDescription
--boolstringA value for the setting to modify as a boolean, ex: --bool true
--stringstringA value for the setting to modify as a string, ex: --string "Production"

โš™๏ธ Set

Alias: s

npx @capgo/cli@latest app set

โš™๏ธ Update settings for an existing app in Capgo Cloud, such as name, icon, or retention period for bundles. Retention of 0 means infinite storage.

Example:

npx @capgo/cli@latest app set com.example.app --name "Updated App" --retention 30

Options:

ParamTypeDescription
-n,stringApp name for display in Capgo Cloud
-i,stringApp icon path for display in Capgo Cloud
-a,stringAPI key to link to your account
-r,stringRetention period of app bundle in days, 0 by default = infinite
--supa-hoststringSupabase host URL for custom setups
--supa-anonstringSupabase anon token for custom setups

๐Ÿ“ข Channel

๐Ÿ“ข Manage distribution channels for app updates in Capgo Cloud, controlling how updates are delivered to devices.

โž• Add

Alias: a

npx @capgo/cli@latest channel add

โž• Create a new channel for app distribution in Capgo Cloud to manage update delivery.

Example:

npx @capgo/cli@latest channel add production com.example.app --default

Options:

ParamTypeDescription
-d,stringSet the channel as default
-a,stringAPI key to link to your account
--supa-hoststringSupabase host URL, for self-hosted Capgo or testing
--supa-anonstringSupabase anon token, for self-hosted Capgo or testing

๐Ÿ—‘๏ธ Delete

Alias: d

npx @capgo/cli@latest channel delete

๐Ÿ—‘๏ธ Delete a channel from Capgo Cloud, optionally removing associated bundles to free up resources.

Example:

npx @capgo/cli@latest channel delete production com.example.app

Options:

ParamTypeDescription
-a,stringAPI key to link to your account
--delete-bundlebooleanDelete the bundle associated with the channel
--success-if-not-foundbooleanSuccess if the channel is not found
--supa-hoststringSupabase host URL, for self-hosted Capgo or testing
--supa-anonstringSupabase anon token, for self-hosted Capgo or testing

๐Ÿ“‹ List

Alias: l

npx @capgo/cli@latest channel list

๐Ÿ“‹ List all channels configured for an app in Capgo Cloud to review distribution settings.

Example:

npx @capgo/cli@latest channel list com.example.app

Options:

ParamTypeDescription
-a,stringAPI key to link to your account
--supa-hoststringSupabase host URL, for self-hosted Capgo or testing
--supa-anonstringSupabase anon token, for self-hosted Capgo or testing

๐Ÿ“ฆ CurrentBundle

npx @capgo/cli@latest channel currentBundle

๐Ÿ“ฆ Get the current bundle linked to a specific channel in Capgo Cloud for update tracking.

Example:

npx @capgo/cli@latest channel currentBundle production com.example.app

Options:

ParamTypeDescription
-c,stringChannel to get the current bundle from
-a,stringAPI key to link to your account
--quietbooleanOnly print the bundle version
--supa-hoststringSupabase host URL, for self-hosted Capgo or testing
--supa-anonstringSupabase anon token, for self-hosted Capgo or testing

โš™๏ธ Set

Alias: s

npx @capgo/cli@latest channel set

โš™๏ธ Configure settings for a channel, such as linking a bundle, setting update strategies (major, minor, metadata, patch, none), or device targeting (iOS, Android, dev, emulator). One channel must be default.

Example:

npx @capgo/cli@latest channel set production com.example.app --bundle 1.0.0 --state default

Options:

ParamTypeDescription
-a,stringAPI key to link to your account
-b,stringBundle version number of the file to set
-s,stringSet the state of the channel, default or normal
--latest-remotebooleanGet the latest bundle uploaded in capgo cloud and set it to the channel
--latestbooleanGet the latest version key in the package.json to set it to the channel
--downgradebooleanAllow to downgrade to version under native one
--no-downgradebooleanDisable downgrade to version under native one
--iosbooleanAllow sending update to iOS devices
--no-iosbooleanDisable sending update to iOS devices
--androidbooleanAllow sending update to Android devices
--no-androidbooleanDisable sending update to Android devices
--self-assignbooleanAllow device to self-assign to this channel
--no-self-assignbooleanDisable devices to self-assign to this channel
--disable-auto-updatestringDisable auto update strategy for this channel. The possible options are: major, minor, metadata, patch, none
--devbooleanAllow sending update to development devices
--no-devbooleanDisable sending update to development devices
--emulatorbooleanAllow sending update to emulator devices
--no-emulatorbooleanDisable sending update to emulator devices
--package-jsonstringA list of paths to package.json. Useful for monorepos (comma separated ex: ../../package.json,./package.json)
--ignore-metadata-checkbooleanIgnore checking node_modules compatibility if present in the bundle
--supa-hoststringSupabase host URL, for self-hosted Capgo or testing
--supa-anonstringSupabase anon token, for self-hosted Capgo or testing

๐Ÿ” Key

๐Ÿ” Manage encryption keys for secure bundle distribution in Capgo Cloud, supporting end-to-end encryption with RSA and AES combination.

๐Ÿ”น Save

npx @capgo/cli@latest key save

๐Ÿ’พ Save a base64 encryption key in the Capacitor config, useful for CI environments. Recommended not to commit the key for security.

Example:

npx @capgo/cli@latest key save --key ./path/to/key

Options:

ParamTypeDescription
-f,stringForce generate a new one
--keystringKey path to save in Capacitor config
--key-datastringKey data to save in Capacitor config

๐Ÿ”จ Create

npx @capgo/cli@latest key create

๐Ÿ”จ Create a new encryption key pair for end-to-end encryption in Capgo Cloud. Do not commit or share the private key; save it securely.

Example:

npx @capgo/cli@latest key create

Options:

ParamTypeDescription
-f,stringForce generate a new one

๐Ÿ—‘๏ธ Delete_old

npx @capgo/cli@latest key delete_old

๐Ÿงน Delete the old encryption key from the Capacitor config to ensure only the current key is used.

Example:

npx @capgo/cli@latest key delete_old

๐Ÿ‘ค Account

๐Ÿ‘ค Manage your Capgo account details and retrieve information for support or collaboration.

๐Ÿ”น Id

npx @capgo/cli@latest account id

๐Ÿชช Retrieve your account ID, safe to share for collaboration or support purposes in Discord or other platforms.

Example:

npx @capgo/cli@latest account id

Options:

ParamTypeDescription
-a,stringAPI key to link to your account
4.25.0

2 years ago

4.26.4

2 years ago

4.26.5

1 year ago

4.26.6

1 year ago

4.26.0

2 years ago

4.26.2

2 years ago

4.26.3

2 years ago

4.26.10

1 year ago

4.26.8

1 year ago

4.26.9

1 year ago

4.26.14

1 year ago

4.26.13

1 year ago

4.26.12

1 year ago

4.26.11

1 year ago

5.0.0

1 year ago

4.24.0

2 years ago

4.24.1

2 years ago

4.25.5

2 years ago

4.25.6

2 years ago

4.25.1

2 years ago

4.25.4

2 years ago

7.0.12

1 year ago

7.0.13

1 year ago

7.0.10

1 year ago

7.0.11

1 year ago

7.0.16

1 year ago

7.0.17

1 year ago

7.0.14

1 year ago

7.0.15

1 year ago

4.28.2

1 year ago

4.28.0

1 year ago

4.28.1

1 year ago

4.27.5

1 year ago

4.27.6

1 year ago

4.27.7

1 year ago

4.27.8

1 year ago

4.27.9

1 year ago

4.33.0

1 year ago

4.32.4

1 year ago

4.23.1

2 years ago

4.23.2

2 years ago

4.24.2

2 years ago

4.34.6

1 year ago

4.34.5

1 year ago

4.34.0

1 year ago

7.0.17-beta.3

1 year ago

7.4.3

1 year ago

7.0.17-beta.2

1 year ago

7.0.17-beta.1

1 year ago

7.4.8

1 year ago

7.4.7

1 year ago

7.4.6

1 year ago

7.4.9

1 year ago

7.0.17-beta.7

1 year ago

7.0.17-beta.6

1 year ago

7.0.17-beta.5

1 year ago

7.0.17-beta.4

1 year ago

7.4.0

1 year ago

7.5.3

1 year ago

7.5.2

1 year ago

7.5.1

1 year ago

7.5.0

1 year ago

7.5.5

1 year ago

7.5.4

1 year ago

7.6.2

1 year ago

7.6.1

1 year ago

7.6.4

1 year ago

7.6.3

1 year ago

4.30.9

1 year ago

4.30.8

1 year ago

7.7.1

1 year ago

7.7.0

1 year ago

7.7.2

1 year ago

7.4.14

1 year ago

7.4.15

1 year ago

7.4.16

1 year ago

7.4.17

1 year ago

7.4.10

1 year ago

7.4.11

1 year ago

7.4.12

1 year ago

7.4.13

1 year ago

4.30.2

1 year ago

4.30.1

1 year ago

4.30.0

1 year ago

7.4.18

1 year ago

4.30.6

1 year ago

4.30.5

1 year ago

4.30.4

1 year ago

4.30.3

1 year ago

7.0.8

1 year ago

7.0.6

1 year ago

7.0.5

1 year ago

7.0.9

1 year ago

7.2.10

1 year ago

7.0.4

1 year ago

7.0.2

1 year ago

7.0.1

1 year ago

4.29.1

1 year ago

7.1.5

1 year ago

7.1.9

1 year ago

4.29.0

1 year ago

7.1.3

1 year ago

7.1.2

1 year ago

7.1.1

1 year ago

7.1.0

1 year ago

7.2.6

1 year ago

7.2.5

1 year ago

7.2.4

1 year ago

7.2.3

1 year ago

7.2.9

1 year ago

7.2.8

1 year ago

7.2.7

1 year ago

7.1.14

1 year ago

7.1.19

1 year ago

7.2.2

1 year ago

7.1.17

1 year ago

7.2.1

1 year ago

7.1.18

1 year ago

7.2.0

1 year ago

7.1.15

1 year ago

7.1.16

1 year ago

7.3.3

1 year ago

7.3.2

1 year ago

7.1.20

1 year ago

4.22.8

2 years ago

4.22.5

2 years ago

4.22.6

2 years ago

4.22.7

2 years ago

4.23.0

2 years ago

4.22.11

2 years ago

4.22.4

2 years ago

4.22.2

2 years ago

4.22.3

2 years ago

4.22.0

2 years ago

4.22.1

2 years ago

4.21.36

2 years ago

4.21.33

2 years ago

4.21.35

2 years ago

4.21.34

2 years ago

4.21.30

2 years ago

4.21.29

2 years ago

4.21.15

2 years ago

4.21.14

2 years ago

4.21.16

2 years ago

4.21.11

2 years ago

4.21.10

2 years ago

4.21.13

2 years ago

4.21.12

2 years ago

4.21.2

2 years ago

4.21.3

2 years ago

4.21.4

2 years ago

4.20.2

2 years ago

4.20.3

2 years ago

4.20.4

2 years ago

4.20.5

2 years ago

4.21.9

2 years ago

4.21.5

2 years ago

4.21.6

2 years ago

4.21.7

2 years ago

4.21.8

2 years ago

4.20.6

2 years ago

4.20.7

2 years ago

4.20.8

2 years ago

4.18.1

2 years ago

4.18.2

2 years ago

4.18.0

2 years ago

4.14.9

2 years ago

4.14.12

2 years ago

4.14.13

2 years ago

4.14.10

2 years ago

4.14.11

2 years ago

4.14.16

2 years ago

4.14.14

2 years ago

4.14.15

2 years ago

4.16.3

2 years ago

4.16.4

2 years ago

4.16.5

2 years ago

4.16.6

2 years ago

4.16.0

2 years ago

4.16.1

2 years ago

4.16.2

2 years ago

4.15.0

2 years ago

4.15.1

2 years ago

4.15.2

2 years ago

4.17.0

2 years ago

4.14.1

2 years ago

4.14.2

2 years ago

4.14.3

2 years ago

4.14.4

2 years ago

4.10.65-beta.1

2 years ago

4.14.0

2 years ago

4.13.6

2 years ago

4.13.7

2 years ago

4.13.8

2 years ago

4.13.9

2 years ago

4.13.2

2 years ago

4.13.3

2 years ago

4.13.4

2 years ago

4.13.5

2 years ago

4.13.33

2 years ago

4.13.34

2 years ago

4.13.31

2 years ago

4.13.32

2 years ago

4.13.30

2 years ago

4.13.22

2 years ago

4.13.23

2 years ago

4.13.20

2 years ago

4.13.21

2 years ago

4.13.26

2 years ago

4.13.27

2 years ago

4.13.24

2 years ago

4.13.25

2 years ago

4.13.29

2 years ago

4.13.11

2 years ago

4.13.12

2 years ago

4.13.10

2 years ago

4.13.15

2 years ago

4.13.16

2 years ago

4.13.13

2 years ago

4.13.14

2 years ago

4.13.19

2 years ago

4.13.17

2 years ago

4.13.18

2 years ago

4.10.7

2 years ago

4.10.8

2 years ago

4.12.11

2 years ago

4.12.10

2 years ago

4.12.14

2 years ago

4.12.13

2 years ago

4.12.12

2 years ago

4.12.3-beta.0

2 years ago

4.10.50

2 years ago

4.10.51

2 years ago

4.10.52

2 years ago

4.10.53

2 years ago

4.12.7

2 years ago

4.10.43

2 years ago

4.12.8

2 years ago

4.10.44

2 years ago

4.12.9

2 years ago

4.10.45

2 years ago

4.10.46

2 years ago

4.12.3

2 years ago

4.12.4

2 years ago

4.10.40

2 years ago

4.12.5

2 years ago

4.10.41

2 years ago

4.12.6

2 years ago

4.10.42

2 years ago

4.10.47

2 years ago

4.10.48

2 years ago

4.10.49

2 years ago

4.10.32

2 years ago

4.10.33

2 years ago

4.10.34

2 years ago

4.10.35

2 years ago

4.10.30

2 years ago

4.10.31

2 years ago

4.10.36

2 years ago

4.10.37

2 years ago

4.10.38

2 years ago

4.10.39

2 years ago

4.10.24-beta.1

2 years ago

4.12.0

2 years ago

4.12.1

2 years ago

4.12.2

2 years ago

4.10.21

2 years ago

4.10.22

2 years ago

4.10.23

2 years ago

4.10.24

2 years ago

4.11.4

2 years ago

4.11.5

2 years ago

4.11.6

2 years ago

4.10.20

2 years ago

4.10.29

2 years ago

4.10.25

2 years ago

4.10.26

2 years ago

4.10.27

2 years ago

4.10.28

2 years ago

4.10.10

2 years ago

4.10.11

2 years ago

4.10.12

2 years ago

4.10.13

2 years ago

4.10.14

2 years ago

4.10.15

2 years ago

4.10.16

2 years ago

4.10.17

2 years ago

4.11.0

2 years ago

4.11.1

2 years ago

4.11.2

2 years ago

4.11.3

2 years ago

4.12.14-beta.0

2 years ago

4.13.21-beta.2

2 years ago

4.13.10-beta.0

2 years ago

4.13.21-beta.1

2 years ago

4.12.12-beta.0

2 years ago

4.10.6-beta.1

2 years ago

4.9.3

2 years ago

4.10.1

2 years ago

4.10.2

2 years ago

4.10.3

2 years ago

4.10.0

2 years ago

4.9.0

2 years ago

4.9.2

2 years ago

4.9.1

2 years ago

4.8.3

2 years ago

4.8.2

2 years ago

4.8.1

2 years ago

4.8.0

2 years ago

4.7.0

2 years ago

4.6.3

2 years ago

4.6.1

2 years ago

4.6.0

2 years ago

4.6.2

2 years ago

4.5.0

2 years ago

4.4.5

2 years ago

4.4.3

2 years ago

4.4.2

2 years ago

4.4.4

2 years ago

5.0.0-alpha.7

2 years ago

4.4.1

2 years ago

4.3.6

2 years ago

4.3.5

2 years ago

4.3.4

2 years ago

4.3.3

2 years ago

4.3.2

2 years ago

4.3.0

2 years ago

4.2.12

2 years ago

4.2.11

2 years ago

4.2.7

2 years ago

4.2.8

2 years ago

5.0.0-alpha.3

2 years ago

4.2.4

2 years ago

4.2.3

2 years ago

4.2.2

2 years ago

4.2.2-alpha.0

2 years ago

4.2.1

2 years ago

4.2.0

2 years ago

4.0.14

2 years ago

4.1.0

2 years ago

4.0.12

2 years ago

4.0.13

2 years ago

4.0.9

2 years ago

4.0.10

2 years ago

4.0.11

2 years ago

4.0.7

2 years ago

4.0.6

2 years ago

4.0.3

2 years ago

4.0.8

2 years ago

4.0.2

2 years ago

4.0.1

2 years ago

3.14.67

2 years ago

3.14.69

2 years ago

4.0.0

2 years ago

3.14.70

2 years ago

3.14.71

2 years ago

3.14.65

2 years ago

3.14.63

2 years ago

3.14.61

2 years ago

3.14.60

2 years ago

3.14.59

2 years ago

3.14.58

2 years ago

3.14.55

2 years ago

3.14.57

2 years ago

3.14.53

2 years ago

3.14.54

2 years ago

3.14.50

3 years ago

3.14.51

2 years ago

3.14.52

2 years ago

3.14.49

3 years ago

3.13.9

3 years ago

3.13.2

3 years ago

3.13.4

3 years ago

3.13.3

3 years ago

3.13.6

3 years ago

3.13.5

3 years ago

3.13.8

3 years ago

3.13.7

3 years ago

3.12.1

3 years ago

3.12.0

3 years ago

3.14.33

3 years ago

3.14.34

3 years ago

3.14.35

3 years ago

3.14.36

3 years ago

3.14.37

3 years ago

3.14.38

3 years ago

3.14.39

3 years ago

3.14.9

3 years ago

3.14.8

3 years ago

3.14.30

3 years ago

3.14.31

3 years ago

3.14.32

3 years ago

3.14.1

3 years ago

3.14.0

3 years ago

3.14.3

3 years ago

3.14.2

3 years ago

3.14.5

3 years ago

3.14.4

3 years ago

3.14.7

3 years ago

3.14.6

3 years ago

3.14.44-alpha.1

3 years ago

3.14.44

3 years ago

3.14.40

3 years ago

3.14.41

3 years ago

3.14.42

3 years ago

3.14.19

3 years ago

3.14.11

3 years ago

3.14.12

3 years ago

3.14.13

3 years ago

3.14.14

3 years ago

3.14.15

3 years ago

3.14.16

3 years ago

3.14.17

3 years ago

3.14.18

3 years ago

3.14.10

3 years ago

3.14.22

3 years ago

3.14.23

3 years ago

3.14.25

3 years ago

3.14.26

3 years ago

3.14.27

3 years ago

3.14.28

3 years ago

3.14.29

3 years ago

3.14.20

3 years ago

3.14.21

3 years ago

3.13.21

3 years ago

3.13.22

3 years ago

3.13.23

3 years ago

3.13.24

3 years ago

3.13.25

3 years ago

3.13.26

3 years ago

3.13.27

3 years ago

3.13.20

3 years ago

3.12.3

3 years ago

3.12.2

3 years ago

3.12.5

3 years ago

3.12.4

3 years ago

3.12.7

3 years ago

3.12.6

3 years ago

3.13.30

3 years ago

3.13.31

3 years ago

3.13.18

3 years ago

3.13.19

3 years ago

3.13.10

3 years ago

3.13.11

3 years ago

3.13.13

3 years ago

3.13.14

3 years ago

3.13.15

3 years ago

3.13.16

3 years ago

3.13.17

3 years ago

3.11.7

3 years ago

3.10.21

3 years ago

3.11.6

3 years ago

3.11.5

3 years ago

3.11.0

3 years ago

3.10.17

3 years ago

3.10.18

3 years ago

3.10.15

3 years ago

3.10.16

3 years ago

3.10.19

3 years ago

3.10.13

3 years ago

3.10.14

3 years ago

3.10.11

3 years ago

3.10.12

3 years ago

3.10.20

3 years ago

3.10.10

3 years ago

3.9.2

3 years ago

3.9.1

3 years ago

3.9.0

3 years ago

3.10.1

3 years ago

3.10.0

3 years ago

3.10.3

3 years ago

3.10.2

3 years ago

3.10.5

3 years ago

3.10.4

3 years ago

3.10.7

3 years ago

3.10.6

3 years ago

3.10.9

3 years ago

3.8.0

3 years ago

3.8.4

3 years ago

3.8.3

3 years ago

3.8.2

3 years ago

3.8.1

3 years ago

3.8.5

3 years ago

3.7.1

3 years ago

3.7.0

3 years ago

3.6.2

3 years ago

3.6.1

3 years ago

3.6.6

3 years ago

3.6.5

3 years ago

3.6.4

3 years ago

3.6.3

3 years ago

3.6.7

3 years ago

3.6.0

3 years ago

3.5.6

3 years ago

3.5.5

3 years ago

3.2.0

3 years ago

3.0.14

3 years ago

3.1.0

3 years ago

3.5.3

3 years ago

3.5.2

3 years ago

3.5.1

3 years ago

3.5.0

3 years ago

3.5.4

3 years ago

3.4.0

3 years ago

3.4.1

3 years ago

3.3.0

3 years ago

3.0.13

3 years ago

3.0.12

3 years ago

3.0.10

3 years ago

3.0.11

3 years ago

2.7.0

3 years ago

2.6.3

3 years ago

3.0.4

3 years ago

3.0.3

3 years ago

3.0.2

3 years ago

3.0.1

3 years ago

3.0.8

3 years ago

3.0.7

3 years ago

3.0.6

3 years ago

3.0.5

3 years ago

3.0.0

3 years ago

3.0.9

3 years ago

2.6.5

3 years ago

2.6.4

3 years ago

2.3.27

3 years ago

3.0.0-alpha.1

3 years ago

2.4.1

3 years ago

3.0.0-alpha.0

3 years ago

2.4.0

3 years ago

2.4.3

3 years ago

2.3.24

3 years ago

2.4.2

3 years ago

2.4.5

3 years ago

2.3.26

3 years ago

2.4.4

3 years ago

2.3.25

3 years ago

2.5.6

3 years ago

2.5.5

3 years ago

2.5.8

3 years ago

2.5.7

3 years ago

2.5.9

3 years ago

2.4.7

3 years ago

2.4.6

3 years ago

2.5.10-alpha.0

3 years ago

2.5.10

3 years ago

2.5.11

3 years ago

2.5.12

3 years ago

2.5.0

3 years ago

2.5.2

3 years ago

2.5.1

3 years ago

2.5.4

3 years ago

2.5.3

3 years ago

1.2.0

4 years ago

1.6.2

4 years ago

1.6.1

4 years ago

1.6.0

4 years ago

1.2.3

4 years ago

1.2.2

4 years ago

1.2.1

4 years ago

2.3.23

3 years ago

2.3.20

3 years ago

2.3.22

3 years ago

2.3.21

3 years ago

2.0.1

4 years ago

2.0.0

4 years ago

2.1.9

4 years ago

2.1.12

4 years ago

2.1.10

4 years ago

2.1.11

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.1.9

4 years ago

1.1.8

4 years ago

1.5.1

4 years ago

1.5.0

4 years ago

2.3.2

3 years ago

2.3.6

3 years ago

2.3.5

3 years ago

1.1.12

4 years ago

1.1.10

4 years ago

1.1.13

4 years ago

1.4.4

4 years ago

1.4.3

4 years ago

1.4.1

4 years ago

1.4.0

4 years ago

1.0.3

4 years ago

2.2.1

3 years ago

2.2.0

3 years ago

2.2.3

3 years ago

2.2.2

3 years ago

2.2.5

3 years ago

2.2.4

3 years ago

2.2.7

3 years ago

2.2.6

3 years ago

2.2.10

3 years ago

2.3.8

3 years ago

2.3.7

3 years ago

2.3.9

3 years ago

1.3.1

4 years ago

1.3.0

4 years ago

2.1.2

4 years ago

2.1.1

4 years ago

2.1.4

4 years ago

2.1.6

4 years ago

2.1.5

4 years ago

2.1.8

4 years ago

2.1.7

4 years ago

2.1.0

4 years ago

2.2.9

3 years ago

2.2.8

3 years ago

2.3.17

3 years ago

2.3.16

3 years ago

2.3.19

3 years ago

2.3.18

3 years ago

2.3.13

3 years ago

2.3.12

3 years ago

2.3.15

3 years ago

2.3.14

3 years ago

2.3.11

3 years ago

2.3.10

3 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago

0.16.5

4 years ago

0.16.3

4 years ago

0.16.4

4 years ago

0.16.1

4 years ago

0.16.2

4 years ago

0.13.6

4 years ago

0.13.7

4 years ago

0.13.8

4 years ago

0.13.9

4 years ago

0.11.0

4 years ago

0.10.1

4 years ago

0.12.0

4 years ago

0.11.1

4 years ago

0.13.0

4 years ago

0.12.1

4 years ago

0.11.2

4 years ago

0.14.0

4 years ago

0.13.1

4 years ago

0.11.3

4 years ago

0.15.0

4 years ago

0.13.2

4 years ago

0.11.4

4 years ago

0.16.0

4 years ago

0.15.1

4 years ago

0.13.3

4 years ago

0.11.5

4 years ago

0.13.4

4 years ago

0.11.6

4 years ago

0.13.5

4 years ago

0.11.7

4 years ago

0.13.12

4 years ago

0.13.11

4 years ago

0.13.10

4 years ago

0.9.0

4 years ago

0.13.14

4 years ago

0.13.13

4 years ago

0.8.5

4 years ago

0.8.6

4 years ago

0.8.1

4 years ago

0.8.3

4 years ago

0.8.2

4 years ago

0.7.4

4 years ago

0.7.3

4 years ago

0.7.2

4 years ago

0.7.0

4 years ago