Skip to content

Releases: xavierog/moulti

[1.5.0] - 2024-03-18

18 Mar 23:15
Compare
Choose a tag to compare

Added

  • Environment variables MOULTI_ANSI and MOULTI_ANSI_THEME_* provide full control over ANSI color themes.
  • tools/gogh2moulti.bash converts Gogh themes into MOULTI_ANSI_THEME_* variables.
  • Shell completion based on the argcomplete library.
  • Bash functions: moulti_exec(): compute and display step duration.
  • Tooltips on the Moulti header and step titles.
  • Progress bar: moulti set --progress-bar --progress-target=100 --progress=80

Changed

  • By default, Moulti no longer alters ANSI colors; the previous behavior can be restored by setting MOULTI_ANSI=textual_default.
  • Use non-ANSI colors in the console.
  • Moulti requires textual >= 0.53.

Fixed

  • Fix "next line color" heuristic for step widgets.
  • Fix detection of markup errors.
  • New layout for button questions: there should no longer be any hidden/unreachable button.
  • MOULTI_CUSTOM_CSS= moulti init/run no longer results in a traceback.

Removed

  • Textual Command Palette (never advertised and offered very little).

[1.4.0] - 2024-03-03

03 Mar 04:13
Compare
Choose a tag to compare

Added

  • Ability to copy step/question/console contents to clipboard, with or without colors/styles.
  • Focus indicators, i.e. visual hints reflecting what part of the UI currently holds focus.
  • Highlighting in the console.

Changed

  • Windows: show explanatory message instead of crashing at startup.
  • The key binding to toggle the console is now n instead of c (which now means "Copy").
  • Make it easier to scroll around answered buttonquestion widgets.
  • Revamp the console by making it a proper widget, as opposed to a refurbished step.

Fixed

  • Handle Rich Markup errors and return a suitable error message to clients.
  • Fix moulti pass on FreeBSD and NetBSD.

1.3.0 - 2024-02-25

25 Feb 15:21
Compare
Choose a tag to compare

Added

  • TUI action "Save" that exports step properties and logs to files.
  • CLI command moulti load that imports step properties and logs from files.
  • Environment variable MOULTI_SAVE_PATH defines where Moulti (TUI) saves files.
  • Show a modal dialog when users attempt to quit Moulti while the process launched by moulti run is still running.
    This dialog allows users to terminate the process or leave it running in the background.
  • Environment variable MOULTI_MODE=light starts Moulti with dark mode disabled.
  • moulti run now sets environment variable MOULTI_INSTANCE_PID.
  • CLI command moulti --version
  • Documentation: add section "moulti run: dealing with stdin, stdout, stderr"

Changed

  • Examples: improve moulti run commands by using --.
  • Update documentation.

1.2.0 - 2024-02-18

25 Feb 15:20
Compare
Choose a tag to compare

Added

  • CLI command moulti buttonquestion {add,update,get-answer,delete}
  • CLI command moulti inputquestion {add,update,get-answer,delete}

Changed

  • moulti (CLI) now writes error messages on stderr, not stdout.
  • Examples: upgrade-system.bash now showcases buttonquestion.
  • Update documentation.

1.1.0 - 2024-02-12

25 Feb 15:19
Compare
Choose a tag to compare

Added

  • MOULTI_INSTANCE environment variable.
  • MOULTI_PASS_CONCURRENCY environment variable.
  • moulti-pass-concurrency.bash example script.

Changed

  • moulti wait now sends a "ping" command.
  • Update documentation.
  • Examples: use MOULTI_INSTANCE instead of MOULTI_SOCKET_PATH.

Fixed

  • Improve behavior on platforms that do not support abstract Unix sockets (e.g. MacOS).
  • Improve behavior on hosts with few CPUs.

1.0.0 - 2024-02-10

25 Feb 15:17
Compare
Choose a tag to compare

Added

  • CLI command moulti init
  • CLI command moulti run
  • CLI command moulti wait --verbose --delay --max-attempts
  • CLI command moulti set --title
  • CLI command moulti step {add,update,delete,clear,append}
  • CLI command moulti pass --append --read-size
  • moulti considers environment variables MOULTI_SOCKET_PATH, MOULTI_ALLOWED_UID, MOULTI_ALLOWED_GID and
    MOULTI_CUSTOM_CSS
  • moulti run sets environment variables MOULTI_RUN and MOULTI_SOCKET_PATH
  • Documentation
  • Example