Skip to content

Releases: bottlesdevs/EasyTerm

1.0.0

15 Nov 12:14
4ab1f6a

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.2.0...1.0.0

0.2.0

07 May 09:25

Choose a tag to compare

  • support for copy and paste
  • moving from spawn to spawn_async
  • fix dark-theme lookup

0.1.8

11 Dec 14:03

Choose a tag to compare

  • support for multiple instances.

0.1.7

11 Dec 07:32

Choose a tag to compare

  • support dark_theme on call with -d option
  • split commands preserving quoted
  • support custom palette on call with p option

0.1.6

11 Dec 06:47

Choose a tag to compare

Use the w flag for cwd option in console, to avoid conflict with command.

0.1.5

11 Dec 06:34

Choose a tag to compare

  • do not default to dark theme
  • sys.exit when window close

0.1.4

22 Nov 12:58

Choose a tag to compare

Support for arguments when using as a standalone application:

  • --cwd
  • --command
  • --env
  • --actions

0.1.3

22 Nov 12:33

Choose a tag to compare

Use the EasyTermLib class inside a project and EasyTerm outside.

0.1.2

11 Nov 17:02

Choose a tag to compare

from easyterm import easyterm
easyterm.EasyTerm(
    cwd='/path',
    command='/bin/bash',
    env=[],
    actions=[
        {
            "name": "Hello",
            "icon": "emblem-favorite",
            "tooltip": "Say hello to the world",
            "command": "echo Hello World"
        }
    ]
)

0.1.1

11 Nov 16:18

Choose a tag to compare

fix setup