Skip to content

Releases: bottlesdevs/EasyTerm

0.2.0

07 May 09:25
Compare
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
Compare
Choose a tag to compare
  • support for multiple instances.

0.1.7

11 Dec 07:32
Compare
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
Compare
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
Compare
Choose a tag to compare
  • do not default to dark theme
  • sys.exit when window close

0.1.4

22 Nov 12:58
Compare
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
Compare
Choose a tag to compare

Use the EasyTermLib class inside a project and EasyTerm outside.

0.1.2

11 Nov 17:02
Compare
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
Compare
Choose a tag to compare
fix setup

0.1

11 Nov 15:59
Compare
Choose a tag to compare
0.1
support custom actions