1.43.1 • Published 6 months ago

@theia/task v1.43.1

Weekly downloads
16,652
License
EPL-2.0 OR GPL-2....
Repository
github
Last release
6 months ago

Description

The @theia/task extension extension permits executing scripts or binaries in the application's backend.

Tasks launch configurations can be defined independently for each workspace, under .theia/tasks.json. When present, they are automatically picked-up when a client opens a workspace, and watches for changes. A task can be executed by triggering the "Run Task" command (shortcut F1). A list of known tasks will then be available, one of which can be selected to trigger execution.

Each task configuration looks like this:

{
    "label": "Test task - list workspace files recursively",
    "type": "shell",
    "command": "ls",
    "args": [
        "-alR"
    ],
    "options": {
        "cwd": "${workspaceFolder}"
    },
    "windows": {
        "command": "cmd.exe",
        "args": [
            "/c",
            "dir",
            "/s"
        ]
    }
}

label: a unique string that identifies the task. That's what's shown to the user, when it's time to chose one task configuration to run.

type: determines what type of process will be used to execute the task. Can be "process" or "shell". "Shell" processes' output can be shown in Theia's frontend, in a terminal widget. If type set as "process" then task will be run without their output being shown.

command: the actual command or script to execute. The command can have no path (e.g. "ls") if it can be found in the system path. Else it can have an absolute path, in which case there is no confusion. Or it can have a relative path, in which case it will be interpreted to be relative to cwd. e.g. "./task" would be interpreted to mean a script or binary called "task", right under the workspace root directory.

args: a list of strings, each one being one argument to pass to the command.

options: the command options used when the command is executed. This is the place to provide the

  • cwd: the current working directory, in which the task's command will execute. This is the equivalent of doing a "cd" to that directory, on the command-line, before running the command. This can contain the variable ${workspaceFolder}, which will be replaced at execution time by the path of the current workspace. If left undefined, will by default be set to workspace root.
  • env: the environment of the executed program or shell. If omitted the parent process' environment is used.
  • shell: configuration of the shell when task type is shell, where users can specify the shell to use with shell, and the arguments to be passed to the shell executable to run in command mode with args.

By default, command and args above are used on all platforms. However it's not always possible to express a task in the same way, both on Unix and Windows. The command and/or arguments may be different, for example. If a task needs to work on Linux, MacOS, and Windows, it is better to have separated command, command arguments, and options.

windows: if windows is defined, its command, command arguments, and options (i.e., windows.command, windows.args, and windows.options) will take precedence over the command, args, and options, when the task is executed on a Windows backend.

osx: if osx is defined, its command, command arguments, and options (i.e., osx.command, osx.args, and osx.options) will take precedence over the command, args, and options, when the task is executed on a MacOS backend.

linux: if linux is defined, its command, command arguments, and options (i.e., linux.command, linux.args, and linux.options) will take precedence over the command, args, and options, when the task is executed on a Linux backend.

Here is a sample tasks.json that can be used to test tasks. Just add this content under the theia source directory, in directory .theia:

{
    // Some sample Theia tasks
    "tasks": [
        {
            "label": "[Task] short running test task (~3s)",
            "type": "shell",
            "command": "./task",
            "args": [
                "default 1",
                "default 2",
                "default 3"
            ],
            "options": {
                "cwd": "${workspaceFolder}/packages/task/src/node/test-resources/"
            },
            "windows": {
                "command": "cmd.exe",
                "args": [
                    "/c",
                    "task.bat",
                    "windows abc"
                ]
            },
            "linux": {
                "args": [
                    "linux 1",
                    "linux 2",
                    "linux 3"
                ]
            }
        },
        {
            "label": "[Task] long running test task (~300s)",
            "type": "shell",
            "command": "./task-long-running",
            "args": [],
            "options": {
                "cwd": "${workspaceFolder}/packages/task/src/node/test-resources/"
            },
            "windows": {
                "command": "cmd.exe",
                "args": [
                    "/c",
                    "task-long-running.bat"
                ]
            }
        },
        {
            "label": "[Task] recursively list files from workspace root",
            "type": "shell",
            "command": "ls",
            "args": [
                "-alR"
            ],
            "options": {
                "cwd": "${workspaceFolder}"
            },
            "windows": {
                "command": "cmd.exe",
                "args": [
                    "/c",
                    "dir",
                    "/s"
                ]
            }
        },
        {
            "label": "[Task] Echo a string",
            "type": "shell",
            "command": "bash",
            "args": [
                "-c",
                "echo 1 2 3"
            ],
            "options": {
                "cwd": "${workspaceFolder}"
            }
        }
    ]
}

Variables substitution

The variables are supported in the following properties, using ${variableName} syntax:

  • command
  • args
  • options.cwd
  • windows.command
  • windows.args
  • windows.options.cwd
  • osx.command
  • osx.args
  • osx.options.cwd
  • linux.command
  • linux.args
  • linux.options.cwd

See here for a detailed documentation.

Contribution points

The extension provides contribution points:

  • browser/TaskContribution - allows an extension to provide its own Task format and/or to provide the Tasks programmatically to the system
export interface TaskContribution {
    registerResolvers?(resolvers: TaskResolverRegistry): void;
    registerProviders?(providers: TaskProviderRegistry): void;
}
  • node/TaskRunnerContribution - allows an extension to provide its own way of running/killing a Task
export interface TaskRunnerContribution {
    registerRunner(runners: TaskRunnerRegistry): void;
}

Additional Information

License

Trademark

"Theia" is a trademark of the Eclipse Foundation https://www.eclipse.org/theia

1.40.0

9 months ago

1.40.1

8 months ago

1.43.1

6 months ago

1.43.0

6 months ago

1.39.0

10 months ago

1.41.0

8 months ago

1.42.0

7 months ago

1.42.1

7 months ago

1.39.0-next.20

10 months ago

1.39.0-next.18

10 months ago

1.39.0-next.19

10 months ago

1.39.0-next.16

10 months ago

1.39.0-next.14

11 months ago

1.39.0-next.12

11 months ago

1.39.0-next.7

11 months ago

1.39.0-next.8

11 months ago

1.39.0-next.9

11 months ago

1.39.0-next.4

11 months ago

1.39.0-next.5

11 months ago

1.39.0-next.6

11 months ago

1.39.0-next.1

11 months ago

1.39.0-next.2

11 months ago

1.38.0-next.7

12 months ago

1.38.0-next.5

12 months ago

1.37.1

12 months ago

1.37.2

11 months ago

1.38.0-next.45

11 months ago

1.38.0-next.43

11 months ago

1.38.0-next.32

11 months ago

1.38.0-next.38

11 months ago

1.38.0

11 months ago

1.37.0-next.16

1 year ago

1.37.0-next.15

1 year ago

1.37.0-next.14

1 year ago

1.37.0-next.13

1 year ago

1.37.0-next.12

1 year ago

1.37.0-next.19

1 year ago

1.37.0-next.18

1 year ago

1.37.0-next.22

1 year ago

1.37.0-next.21

1 year ago

1.37.0-next.29

12 months ago

1.37.0-next.30

12 months ago

1.38.0-next.0

12 months ago

1.37.0

12 months ago

1.37.0-next.11

1 year ago

1.37.0-next.10

1 year ago

1.37.0-next.0

1 year ago

1.37.0-next.9

1 year ago

1.37.0-next.8

1 year ago

1.37.0-next.7

1 year ago

1.37.0-next.6

1 year ago

1.37.0-next.5

1 year ago

1.37.0-next.4

1 year ago

1.37.0-next.3

1 year ago

1.37.0-next.1

1 year ago

1.36.0

1 year ago

1.36.0-next.51

1 year ago

1.36.0-next.40

1 year ago

1.36.0-next.41

1 year ago

1.36.0-next.42

1 year ago

1.36.0-next.43

1 year ago

1.36.0-next.44

1 year ago

1.36.0-next.45

1 year ago

1.36.0-next.46

1 year ago

1.36.0-next.47

1 year ago

1.36.0-next.30

1 year ago

1.36.0-next.31

1 year ago

1.36.0-next.32

1 year ago

1.36.0-next.37

1 year ago

1.36.0-next.38

1 year ago

1.36.0-next.39

1 year ago

1.36.0-next.33

1 year ago

1.36.0-next.34

1 year ago

1.36.0-next.35

1 year ago

1.36.0-next.21

1 year ago

1.36.0-next.26

1 year ago

1.36.0-next.27

1 year ago

1.36.0-next.28

1 year ago

1.36.0-next.29

1 year ago

1.36.0-next.22

1 year ago

1.36.0-next.23

1 year ago

1.34.3

1 year ago

1.34.4

1 year ago

1.34.2

1 year ago

1.35.0

1 year ago

1.34.1

1 year ago

1.34.0-next.7

1 year ago

1.33.0-next.25

1 year ago

1.33.0-next.20

1 year ago

1.33.0-next.24

1 year ago

1.34.0-next.39

1 year ago

1.34.0-next.31

1 year ago

1.34.0-next.34

1 year ago

1.34.0-next.19

1 year ago

1.33.0-next.9

1 year ago

1.33.0-next.8

1 year ago

1.33.0

1 year ago

1.34.0

1 year ago

1.31.1

1 year ago

1.31.0

1 year ago

1.32.0

1 year ago

1.33.0-next.2

1 year ago

1.33.0-next.1

1 year ago

1.33.0-next.4

1 year ago

1.33.0-next.3

1 year ago

1.33.0-next.0

1 year ago

1.33.0-next.5

1 year ago

1.32.0-next.8

1 year ago

1.32.0-next.5

1 year ago

1.32.0-next.3

1 year ago

1.32.0-next.0

1 year ago

1.29.2

1 year ago

1.32.0-next.17

1 year ago

1.32.0-next.16

1 year ago

1.32.0-next.14

1 year ago

1.32.0-next.12

1 year ago

1.32.0-next.36

1 year ago

1.32.0-next.31

1 year ago

1.32.0-next.32

1 year ago

1.32.0-next.28

1 year ago

1.32.0-next.29

1 year ago

1.32.0-next.24

1 year ago

1.32.0-next.25

1 year ago

1.32.0-next.23

1 year ago

1.32.0-next.20

1 year ago

1.32.0-next.21

1 year ago

1.32.0-next.50

1 year ago

1.32.0-next.48

1 year ago

1.32.0-next.49

1 year ago

1.32.0-next.47

1 year ago

1.32.0-next.44

1 year ago

1.32.0-next.43

1 year ago

1.31.0-next.11

2 years ago

1.31.0-next.15

2 years ago

1.31.0-next.14

2 years ago

1.31.0-next.13

2 years ago

1.31.0-next.19

2 years ago

1.31.0-next.18

2 years ago

1.31.0-next.17

2 years ago

1.31.0-next.33

2 years ago

1.31.0-next.32

2 years ago

1.31.0-next.34

2 years ago

1.31.0-next.29

2 years ago

1.31.0-next.3

2 years ago

1.31.0-next.0

2 years ago

1.31.0-next.1

2 years ago

1.31.0-next.2

2 years ago

1.30.0

2 years ago

1.30.0-next.42

2 years ago

1.30.0-next.43

2 years ago

1.30.0-next.44

2 years ago

1.30.0-next.45

2 years ago

1.30.0-next.48

2 years ago

1.30.0-next.40

2 years ago

1.29.0-next.50

2 years ago

1.29.0

2 years ago

1.29.1

2 years ago

1.29.0-next.51

2 years ago

1.29.0-next.46

2 years ago

1.29.0-next.44

2 years ago

1.29.0-next.42

2 years ago

1.30.0-next.1

2 years ago

1.30.0-next.0

2 years ago

1.30.0-next.3

2 years ago

1.30.0-next.2

2 years ago

1.30.0-next.4

2 years ago

1.30.0-next.7

2 years ago

1.30.0-next.8

2 years ago

1.30.0-next.10

2 years ago

1.30.0-next.13

2 years ago

1.30.0-next.14

2 years ago

1.30.0-next.15

2 years ago

1.30.0-next.16

2 years ago

1.30.0-next.17

2 years ago

1.30.0-next.18

2 years ago

1.30.0-next.19

2 years ago

1.30.0-next.20

2 years ago

1.30.0-next.21

2 years ago

1.30.0-next.22

2 years ago

1.30.0-next.23

2 years ago

1.30.0-next.24

2 years ago

1.30.0-next.25

2 years ago

1.30.0-next.27

2 years ago

1.30.0-next.28

2 years ago

1.30.0-next.29

2 years ago

1.30.0-next.31

2 years ago

1.30.0-next.32

2 years ago

1.30.0-next.33

2 years ago

1.30.0-next.34

2 years ago

1.30.0-next.36

2 years ago

1.30.0-next.38

2 years ago

1.30.0-next.30

2 years ago

1.30.0-next.39

2 years ago

1.29.0-next.41

2 years ago

1.29.0-next.39

2 years ago

1.29.0-next.37

2 years ago

1.29.0-next.36

2 years ago

1.29.0-next.35

2 years ago

1.29.0-next.34

2 years ago

1.28.0-next.1

2 years ago

1.28.0-next.2

2 years ago

1.28.0-next.0

2 years ago

1.28.0-next.5

2 years ago

1.28.0-next.3

2 years ago

1.28.0-next.9

2 years ago

1.28.0-next.7

2 years ago

1.28.0-next.8

2 years ago

1.29.0-next.1

2 years ago

1.29.0-next.2

2 years ago

1.29.0-next.4

2 years ago

1.29.0-next.7

2 years ago

1.29.0-next.6

2 years ago

1.29.0-next.9

2 years ago

1.27.0-next.43

2 years ago

1.27.0-next.42

2 years ago

1.27.0-next.45

2 years ago

1.27.0-next.44

2 years ago

1.27.0-next.46

2 years ago

1.27.0-next.49

2 years ago

1.27.0-next.48

2 years ago

1.27.0-next.41

2 years ago

1.27.0-next.39

2 years ago

1.27.0-next.31

2 years ago

1.27.0-next.34

2 years ago

1.27.0-next.36

2 years ago

1.27.0-next.35

2 years ago

1.27.0-next.37

2 years ago

1.27.0-next.30

2 years ago

1.27.0-next.76

2 years ago

1.27.0-next.78

2 years ago

1.27.0-next.77

2 years ago

1.27.0-next.79

2 years ago

1.27.0-next.70

2 years ago

1.27.0-next.72

2 years ago

1.27.0-next.71

2 years ago

1.27.0-next.74

2 years ago

1.27.0-next.73

2 years ago

1.27.0-next.65

2 years ago

1.27.0-next.67

2 years ago

1.27.0-next.66

2 years ago

1.27.0-next.68

2 years ago

1.27.0-next.61

2 years ago

1.27.0-next.62

2 years ago

1.27.0-next.54

2 years ago

1.27.0-next.53

2 years ago

1.27.0-next.56

2 years ago

1.27.0-next.58

2 years ago

1.27.0-next.59

2 years ago

1.27.0-next.52

2 years ago

1.27.0-next.51

2 years ago

1.27.0

2 years ago

1.28.0

2 years ago

1.28.0-next.34

2 years ago

1.28.0-next.35

2 years ago

1.28.0-next.36

2 years ago

1.28.0-next.37

2 years ago

1.28.0-next.30

2 years ago

1.28.0-next.31

2 years ago

1.28.0-next.33

2 years ago

1.28.0-next.39

2 years ago

1.28.0-next.45

2 years ago

1.28.0-next.43

2 years ago

1.28.0-next.40

2 years ago

1.29.0-next.25

2 years ago

1.29.0-next.24

2 years ago

1.29.0-next.23

2 years ago

1.29.0-next.22

2 years ago

1.29.0-next.20

2 years ago

1.29.0-next.18

2 years ago

1.29.0-next.17

2 years ago

1.29.0-next.16

2 years ago

1.29.0-next.14

2 years ago

1.29.0-next.13

2 years ago

1.29.0-next.12

2 years ago

1.29.0-next.11

2 years ago

1.29.0-next.10

2 years ago

1.28.0-next.12

2 years ago

1.28.0-next.13

2 years ago

1.28.0-next.15

2 years ago

1.28.0-next.10

2 years ago

1.28.0-next.16

2 years ago

1.28.0-next.18

2 years ago

1.28.0-next.19

2 years ago

1.28.0-next.23

2 years ago

1.28.0-next.25

2 years ago

1.28.0-next.26

2 years ago

1.28.0-next.27

2 years ago

1.28.0-next.28

2 years ago

1.28.0-next.29

2 years ago

1.29.0-next.32

2 years ago

1.29.0-next.31

2 years ago

1.29.0-next.30

2 years ago

1.26.0

2 years ago

1.26.0-next.19

2 years ago

1.26.0-next.18

2 years ago

1.26.0-next.15

2 years ago

1.26.0-next.14

2 years ago

1.26.0-next.17

2 years ago

1.26.0-next.16

2 years ago

1.26.0-next.11

2 years ago

1.26.0-next.10

2 years ago

1.26.0-next.13

2 years ago

1.26.0-next.12

2 years ago

1.26.0-next.26

2 years ago

1.26.0-next.25

2 years ago

1.26.0-next.28

2 years ago

1.26.0-next.27

2 years ago

1.26.0-next.22

2 years ago

1.26.0-next.21

2 years ago

1.26.0-next.24

2 years ago

1.26.0-next.23

2 years ago

1.26.0-next.20

2 years ago

1.27.0-next.29

2 years ago

1.27.0-next.23

2 years ago

1.27.0-next.22

2 years ago

1.27.0-next.25

2 years ago

1.27.0-next.24

2 years ago

1.27.0-next.26

2 years ago

1.27.0-next.18

2 years ago

1.27.0-next.10

2 years ago

1.27.0-next.12

2 years ago

1.27.0-next.14

2 years ago

1.27.0-next.13

2 years ago

1.27.0-next.15

2 years ago

1.26.0-next.36

2 years ago

1.26.0-next.33

2 years ago

1.26.0-next.32

2 years ago

1.26.0-next.35

2 years ago

1.26.0-next.34

2 years ago

1.26.0-next.31

2 years ago

1.26.0-next.30

2 years ago

1.26.0-next.48

2 years ago

1.26.0-next.47

2 years ago

1.26.0-next.44

2 years ago

1.26.0-next.43

2 years ago

1.26.0-next.46

2 years ago

1.26.0-next.45

2 years ago

1.26.0-next.41

2 years ago

1.27.0-next.0

2 years ago

1.27.0-next.1

2 years ago

1.27.0-next.7

2 years ago

1.27.0-next.8

2 years ago

1.27.0-next.9

2 years ago

1.27.0-next.2

2 years ago

1.27.0-next.3

2 years ago

1.27.0-next.4

2 years ago

1.27.0-next.5

2 years ago

1.26.0-next.9

2 years ago

1.26.0-next.6

2 years ago

1.26.0-next.5

2 years ago

1.26.0-next.8

2 years ago

1.26.0-next.7

2 years ago

1.26.0-next.4

2 years ago

1.26.0-next.3

2 years ago

1.25.0-next.7

2 years ago

1.25.0-next.6

2 years ago

1.25.0-next.5

2 years ago

1.25.0-next.4

2 years ago

1.25.0-next.3

2 years ago

1.25.0-next.2

2 years ago

1.25.0-next.1

2 years ago

1.25.0-next.9

2 years ago

1.25.0-next.8

2 years ago

1.25.0-next.32

2 years ago

1.25.0-next.36

2 years ago

1.25.0-next.39

2 years ago

1.25.0-next.38

2 years ago

1.25.0-next.42

2 years ago

1.25.0-next.43

2 years ago

1.25.0-next.40

2 years ago

1.25.0-next.41

2 years ago

1.25.0-next.46

2 years ago

1.25.0-next.47

2 years ago

1.25.0-next.44

2 years ago

1.25.0-next.45

2 years ago

1.25.0-next.48

2 years ago

1.25.0-next.49

2 years ago

1.25.0-next.10

2 years ago

1.25.0-next.13

2 years ago

1.25.0-next.14

2 years ago

1.25.0-next.11

2 years ago

1.25.0-next.12

2 years ago

1.25.0-next.17

2 years ago

1.25.0-next.18

2 years ago

1.25.0-next.15

2 years ago

1.25.0-next.16

2 years ago

1.25.0-next.20

2 years ago

1.25.0-next.21

2 years ago

1.25.0-next.25

2 years ago

1.25.0-next.22

2 years ago

1.25.0-next.23

2 years ago

1.25.0-next.28

2 years ago

1.25.0-next.27

2 years ago

1.25.0-next.50

2 years ago

1.26.0-next.0

2 years ago

1.26.0-next.2

2 years ago

1.26.0-next.1

2 years ago

1.25.0

2 years ago

1.24.0-next.77

2 years ago

1.24.0-next.76

2 years ago

1.24.0-next.75

2 years ago

1.24.0-next.74

2 years ago

1.24.0-next.73

2 years ago

1.24.0-next.72

2 years ago

1.24.0-next.71

2 years ago

1.24.0-next.79

2 years ago

1.24.0-next.78

2 years ago

1.24.0-next.66

2 years ago

1.24.0-next.65

2 years ago

1.24.0-next.64

2 years ago

1.24.0-next.63

2 years ago

1.24.0-next.62

2 years ago

1.24.0-next.61

2 years ago

1.24.0-next.60

2 years ago

1.24.0-next.69

2 years ago

1.24.0-next.68

2 years ago

1.24.0-next.67

2 years ago

1.25.0-next.0

2 years ago

1.24.0-next.55

2 years ago

1.24.0-next.53

2 years ago

1.24.0-next.59

2 years ago

1.24.0-next.58

2 years ago

1.24.0-next.57

2 years ago

1.24.0-next.56

2 years ago

1.24.0

2 years ago

1.24.0-next.44

2 years ago

1.24.0-next.43

2 years ago

1.24.0-next.42

2 years ago

1.24.0-next.41

2 years ago

1.24.0-next.40

2 years ago

1.24.0-next.49

2 years ago

1.24.0-next.48

2 years ago

1.24.0-next.47

2 years ago

1.24.0-next.46

2 years ago

1.24.0-next.45

2 years ago

1.24.0-next.33

2 years ago

1.24.0-next.32

2 years ago

1.24.0-next.31

2 years ago

1.24.0-next.30

2 years ago

1.24.0-next.39

2 years ago

1.24.0-next.38

2 years ago

1.24.0-next.37

2 years ago

1.24.0-next.36

2 years ago

1.24.0-next.35

2 years ago

1.24.0-next.34

2 years ago

1.24.0-next.52

2 years ago

1.24.0-next.51

2 years ago

1.24.0-next.50

2 years ago

1.24.0-next.22

2 years ago

1.24.0-next.21

2 years ago

1.24.0-next.20

2 years ago

1.24.0-next.29

2 years ago

1.24.0-next.28

2 years ago

1.24.0-next.27

2 years ago

1.24.0-next.26

2 years ago

1.24.0-next.25

2 years ago

1.24.0-next.11

2 years ago

1.24.0-next.10

2 years ago

1.24.0-next.18

2 years ago

1.24.0-next.16

2 years ago

1.24.0-next.15

2 years ago

1.24.0-next.13

2 years ago

1.24.0-next.12

2 years ago

1.24.0-next.2

2 years ago

1.24.0-next.3

2 years ago

1.24.0-next.4

2 years ago

1.24.0-next.5

2 years ago

1.24.0-next.6

2 years ago

1.24.0-next.7

2 years ago

1.22.0

2 years ago

1.22.1

2 years ago

1.22.0-next.8

2 years ago

1.22.0-next.7

2 years ago

1.22.0-next.6

2 years ago

1.22.0-next.9

2 years ago

1.23.0-next.0

2 years ago

1.23.0-next.1

2 years ago

1.23.0-next.4

2 years ago

1.23.0-next.5

2 years ago

1.23.0-next.2

2 years ago

1.23.0-next.3

2 years ago

1.23.0

2 years ago

1.24.0-next.0

2 years ago

1.24.0-next.1

2 years ago

1.23.0-next.27

2 years ago

1.23.0-next.26

2 years ago

1.23.0-next.29

2 years ago

1.23.0-next.28

2 years ago

1.23.0-next.34

2 years ago

1.23.0-next.33

2 years ago

1.23.0-next.31

2 years ago

1.23.0-next.38

2 years ago

1.23.0-next.37

2 years ago

1.23.0-next.36

2 years ago

1.23.0-next.35

2 years ago

1.23.0-next.39

2 years ago

1.23.0-next.44

2 years ago

1.23.0-next.43

2 years ago

1.23.0-next.42

2 years ago

1.23.0-next.49

2 years ago

1.23.0-next.48

2 years ago

1.23.0-next.47

2 years ago

1.23.0-next.46

2 years ago

1.23.0-next.52

2 years ago

1.22.0-next.25

2 years ago

1.23.0-next.51

2 years ago

1.22.0-next.26

2 years ago

1.22.0-next.27

2 years ago

1.22.0-next.28

2 years ago

1.23.0-next.56

2 years ago

1.22.0-next.29

2 years ago

1.23.0-next.55

2 years ago

1.23.0-next.54

2 years ago

1.23.0-next.59

2 years ago

1.23.0-next.57

2 years ago

1.22.0-next.20

2 years ago

1.22.0-next.21

2 years ago

1.22.0-next.22

2 years ago

1.22.0-next.23

2 years ago

1.22.0-next.14

2 years ago

1.22.0-next.15

2 years ago

1.23.0-next.61

2 years ago

1.22.0-next.16

2 years ago

1.23.0-next.60

2 years ago

1.22.0-next.17

2 years ago

1.22.0-next.18

2 years ago

1.22.0-next.19

2 years ago

1.22.0-next.10

2 years ago

1.22.0-next.12

2 years ago

1.22.0-next.13

2 years ago

1.22.0-next.30

2 years ago

1.22.0-next.31

2 years ago

1.22.0-next.32

2 years ago

1.22.0-next.0

2 years ago

1.22.0-next.4

2 years ago

1.22.0-next.3

2 years ago

1.22.0-next.2

2 years ago

1.22.0-next.1

2 years ago

1.22.0-next.5

2 years ago

1.18.0-next.176

2 years ago

1.18.0-next.177

2 years ago

1.18.0-next.178

2 years ago

1.18.0-next.179

2 years ago

1.18.0-next.173

2 years ago

1.18.0-next.174

2 years ago

1.18.0-next.170

2 years ago

1.18.0-next.171

2 years ago

1.18.0-next.169

2 years ago

1.18.0-next.165

2 years ago

1.18.0-next.166

2 years ago

1.18.0-next.167

2 years ago

1.18.0-next.168

2 years ago

1.18.0-next.161

2 years ago

1.18.0-next.162

2 years ago

1.18.0-next.163

2 years ago

1.18.0-next.164

2 years ago

1.18.0-next.160

2 years ago

1.18.0-next.154

2 years ago

1.18.0-next.155

2 years ago

1.18.0-next.150

2 years ago

1.18.0-next.151

2 years ago

1.18.0-next.152

2 years ago

1.18.0-next.153

2 years ago

1.18.0-next.147

2 years ago

1.18.0-next.148

2 years ago

1.18.0-next.149

2 years ago

1.18.0-next.144

2 years ago

1.18.0-next.146

2 years ago

1.18.0-next.183

2 years ago

1.18.0-next.181

2 years ago

1.18.0-next.182

2 years ago

1.21.0-next.32

2 years ago

1.21.0-next.31

2 years ago

1.21.0-next.19

2 years ago

1.21.0-next.16

2 years ago

1.21.0-next.15

2 years ago

1.21.0-next.18

2 years ago

1.21.0-next.17

2 years ago

1.21.0-next.12

2 years ago

1.21.0-next.11

2 years ago

1.21.0-next.14

2 years ago

1.21.0-next.29

2 years ago

1.21.0-next.23

2 years ago

1.21.0-next.22

2 years ago

1.21.0-next.24

2 years ago

1.21.0-next.21

2 years ago

1.21.0-next.20

2 years ago

1.20.0

2 years ago

1.21.0

2 years ago

1.18.0-next.143

2 years ago

1.18.0-next.140

2 years ago

1.18.0-next.141

2 years ago

1.18.0-next.142

2 years ago

1.18.0-next.136

2 years ago

1.18.0-next.137

2 years ago

1.18.0-next.138

2 years ago

1.18.0-next.139

2 years ago

1.19.0

2 years ago

1.18.0-next.135

2 years ago

1.18.0-next.131

2 years ago

1.18.0-next.125

2 years ago

1.18.0-next.126

2 years ago

1.18.0-next.128

2 years ago

1.18.0-next.121

2 years ago

1.18.0-next.122

2 years ago

1.18.0-next.123

2 years ago

1.18.0-next.124

2 years ago

1.18.0-next.120

2 years ago

1.18.0-next.118

2 years ago

1.18.0-next.119

2 years ago

1.18.0-next.116

3 years ago

1.18.0-next.117

3 years ago

1.18.0-next.88

3 years ago

1.18.0-next.89

3 years ago

1.18.0-next.86

3 years ago

1.18.0-next.87

3 years ago

1.18.0-next.84

3 years ago

1.18.0-next.85

3 years ago

1.18.0-next.93

3 years ago

1.18.0-next.94

3 years ago

1.18.0-next.92

3 years ago

1.18.0-next.90

3 years ago

1.18.0-next.99

3 years ago

1.18.0-next.97

3 years ago

1.18.0-next.98

3 years ago

1.18.0-next.95

3 years ago

1.18.0-next.96

3 years ago

1.18.0-next.77

3 years ago

1.18.0-next.75

3 years ago

1.18.0-next.76

3 years ago

1.18.0-next.114

3 years ago

1.18.0-next.115

3 years ago

1.18.0-next.110

3 years ago

1.18.0-next.111

3 years ago

1.18.0-next.112

3 years ago

1.18.0-next.113

3 years ago

1.18.0-next.108

3 years ago

1.18.0-next.109

3 years ago

1.18.0-next.103

3 years ago

1.18.0-next.104

3 years ago

1.18.0-next.105

3 years ago

1.18.0-next.106

3 years ago

1.18.0-next.100

3 years ago

1.18.0-next.101

3 years ago

1.18.0-next.69

3 years ago

1.18.0-next.66

3 years ago

1.18.0-next.72

3 years ago

1.18.0-next.70

3 years ago

1.18.0

3 years ago

1.18.0-next.61

3 years ago

1.18.0-next.64

3 years ago

1.18.0-next.65

3 years ago

1.18.0-next.62

3 years ago

1.18.0-next.63

3 years ago

1.17.2

3 years ago

1.17.1

3 years ago

1.17.0

3 years ago

1.16.0

3 years ago

1.15.0

3 years ago

1.14.0

3 years ago

1.13.0

3 years ago

1.12.1

3 years ago

1.12.0

3 years ago

1.11.0

3 years ago

1.10.0

3 years ago

1.9.0

3 years ago

1.8.1

3 years ago

1.8.0

3 years ago

1.7.0

3 years ago

1.6.0

4 years ago

1.5.0

4 years ago

1.4.0

4 years ago

1.3.0

4 years ago

1.2.0

4 years ago

1.1.0

4 years ago

1.0.0

4 years ago

0.16.1

4 years ago

0.16.0

4 years ago

0.15.0

4 years ago

0.14.0

4 years ago

0.13.0

4 years ago

0.12.0

4 years ago

0.11.0

5 years ago

0.10.0

5 years ago

0.9.0

5 years ago

0.8.0

5 years ago

0.7.2

5 years ago

0.7.1

5 years ago

0.7.0

5 years ago

0.6.1

5 years ago

0.6.0

5 years ago

0.5.0

5 years ago

0.4.0

5 years ago

0.3.19

5 years ago

0.3.18

5 years ago

0.3.17

5 years ago

0.3.16

5 years ago

0.3.15

6 years ago

0.3.14

6 years ago

0.3.13

6 years ago

0.3.12

6 years ago

0.3.11

6 years ago

0.3.10

6 years ago

0.3.9

6 years ago

0.3.8

6 years ago

0.3.7

6 years ago

0.3.6

6 years ago

0.3.4

6 years ago

0.3.3

6 years ago

0.3.2

6 years ago