vtm

Text-based desktop environment

MIT License

Stars
1.5K

Bot releases are hidden (Show)

vtm - v0.9.8g

Published by o-sdn-o almost 2 years ago

Changes

  • Customizable window menu for built-in terminal, #304
    The following actions are implemented:
    • TerminalWrapMode
    • TerminalAlignMode
    • TerminalSelectionMode
    • TerminalFindPrev
    • TerminalFindNext
    • TerminalOutput
    • TerminalSendKey
  • Show all configuration sources on demand (vtm -l)
vtm - v0.9.8f

Published by o-sdn-o almost 2 years ago

Changes

  • Fix fatal error when running python in built-in terminal on Windows, #305
  • Error reporting improvement for XML parser
vtm - v0.9.8e

Published by o-sdn-o almost 2 years ago

Changes

  • Right clicks are only handled on the focused terminal
  • Make text selection shaders configurable (fx=...)
<config>
    ...
    <term>
        ...
        <color>
        ...
            <match fx=color bgc="0xFF007F00" fgc=whitelt />  <!-- Color of the selected text occurrences. Set fx to use cell::shaders: xlight | color | invert | reverse -->
            <selection>
                <text fx=color bgc=bluelt fgc=whitelt />  <!-- Highlighting of the selected text in plaintext mode. -->
                <ansi fx=xlight/>
                <rich fx=xlight/>
                <html fx=xlight/>
                <none fx=color bgc=blacklt fgc=whitedk />  <!-- Inactive selection highlighting. -->
            </selection>
        </color>
        ...
    </term>
</config>
vtm - v0.9.8d

Published by o-sdn-o almost 2 years ago

Changes

  • Configurable autorun (see/config/menu/autorun/ config section), #233
  • Restore focus for the last connected user, #300
vtm - v0.9.8c

Published by o-sdn-o almost 2 years ago

Changes

  • Fix item moving between lists (DirectVT configuration bug)
  • Block graphics drawing improvements
vtm - v0.9.8b

Published by o-sdn-o almost 2 years ago

Changes

  • Allow adding custom literals to configuration (e.g. to /config/set/)
vtm - v0.9.8a

Published by o-sdn-o almost 2 years ago

Changes:

  • Fix scrollback viewport position reset behavior (trigger on any key except modifiers)
vtm - v0.9.8

Published by o-sdn-o almost 2 years ago

Changes

  • Make DirectVT-apps configurable via settings, #234
  • Configurable scrollback viewport reset behavior
    • Reset viewport position on key press (default: on)
    • Reset viewport position on data output (default: off)
vtm - v0.9.7e

Published by o-sdn-o almost 2 years ago

Changes

  • Change option name for /config/term/atexit
    • nothing -> ask
...
        <atexit = auto /> <!-- auto:    Stay open and ask if exit code != 0. (default)
                               ask:     Stay open and ask.
                               close:   Always close.
                               restart: Restart session.
                               retry:   Restart session if exit code != 0. -->
...
vtm - v0.9.7d

Published by o-sdn-o almost 2 years ago

Changes

  • Configurable terminal session termination /config/term/atexit
    • auto (default) - Stay open if exit code != 0.
    • nothing - Stay open.
    • close - Always quit.
    • restart - Restart session.
    • retry - Restart session if exit code != 0.
<config>
  <term>
        <atexit = auto /> <!-- auto:    Stay open if exit code != 0.
                               nothing: Stay open.
                               close:   Always quit.
                               restart: Restart session.
                               retry:   Restart session if exit code != 0. -->
  </term>
</config>
vtm - v0.9.7c

Published by o-sdn-o almost 2 years ago

Changes

  • Fix clipboard forwarding
vtm - v0.9.7b

Published by o-sdn-o almost 2 years ago

Changes

  • Add a configurable shadow to the clipboard preview #266.
vtm - v0.9.7a

Published by o-sdn-o almost 2 years ago

Changes

  • vtm clipboard format sync between vtm instances (win32)
vtm - v0.9.7

Published by o-sdn-o almost 2 years ago

Changes

  • Bidirectional clipboard synchronization for MS Windows
  • Clipboard preview
    • Highlighting for plain text
    • Configurable timeout to hide on inactivity
  • Bug fixes
vtm - v0.9.6k

Published by o-sdn-o almost 2 years ago

Changes

  • Fix VS2019 complaints #284
  • Fix mouse scroll wheel for linux console
  • Rewrite events processing (fix mouse related bugs)
vtm - v0.9.6j

Published by o-sdn-o almost 2 years ago

Changes

  • Fix the focus selection using Tile's pane list
  • Fix focus reset when maximizing panel in Tile
vtm - v0.9.6h

Published by o-sdn-o almost 2 years ago

Changes

  • Fix spurious mouse clicks when dragging a DirectVT app
  • Remove deprecated native mode in favor of DirectVT
  • Fix window menu scrollbar
  • Fix applying app settings on startup in Tile
  • Do not touch terminal window title in standalone mode
  • Fix resetting the currently selected app to the previous one when launching Tile
vtm - v0.9.6i

Published by o-sdn-o almost 2 years ago

Changes

  • Fix deadlock if invalid shell specified (win32)
  • Auto hide window menu by default
vtm - v0.9.6g

Published by o-sdn-o almost 2 years ago

Changes

  • Fix crash while pasting multiline data in cmd.exe #274
  • Disable item's animated highlighting (can be activated via settings.xml)
  • Enable autohide built-in terminal window menu (can be pinned via settings.xml)
vtm - v0.9.6f

Published by o-sdn-o almost 2 years ago

Changes

  • Auto hide window menu configuration option #270
       <config><term>
          <menu>
              <autohide=true/>
          </menu>
       </term></config>
    
  • Fader config option
      <config>
        <appearance>
            <defaults>
                <fader duration=150ms fast=0ms />
            </defaults>
        </appearance>
      </config>