Skip to content

Releases: directvt/vtm

v0.9.79

21 Apr 14:36
ab8c9c6
Compare
Choose a tag to compare

GitHub all current

Changes:

  • Revise title/footer rendering in GUI mode (fix shadows and overbright). #571
  • Add a side border option config/term/layout/border (=0 by default). #584:
    settings.xml:
    <config>
        <term>
            <layout>
                <oversize=0 opacity=0xC0/>  <!-- Scrollback horizontal (left and right) oversize. (for convenient horizontal scrolling). -->
                <border=1/>                 <!-- Viewport's left and right border. -->
            </layout>
        </term>
    </config>
  • config/term/fields section renamed to config/term/layout
  • config/term/fields/size option renamed to the config/term/layout/oversize section
  • config/term/fields/lucent option renamed to config/term/layout/oversize/opacity

image

v0.9.78

18 Apr 12:18
c96cecc
Compare
Choose a tag to compare

GitHub all current

Changes

  • Switch to ARGB pixel format (0xaarrggbb) from ABGR. All color settings in your current configurations are affected - the red channel has been swapped with the blue channel. This had to be done for compatibility with GUI mode.
  • Terminal: Fix viewport reset when changing selection mode. #584
  • Introducing a graphical window that can run on various Windows platforms starting with Windows 8.1 (including Window Server 2019 Core). #571
    • vtm automatically switches to the graphical mode if it is launched by the graphical shell (explorer.exe), or by the start vtm.exe command (e.g. on Windows Core).
    • Text cell rendering is not implemented. It is just a proof of concept.
    • The vtm server starts in the background, despite the fact that its interface is not rendered yet.
    • It is not yet clear whether we need to involve the GPU here for rendering. It's not a big deal, but at the moment it seems that software rendering is quite enough (60fps, etc). Over time it will become clear.
    • Colored emojis are funny on Windows8:
      image
    • On Windows Server Core (which is desktopless), the system window manager doesn't support "overbright" pixels (it requires alpha-premultiplied pixel values), so translucent windows are a little buggy, but that's not a big deal:
      image
    • Windows PE is also supported:
      image

v0.9.77

05 Apr 11:26
12e0914
Compare
Choose a tag to compare

GitHub all current

Changes

  • Fix PowerShell/PSReadLine input echo on Windows. #581
    image

v0.9.76

02 Apr 10:29
b2e474e
Compare
Choose a tag to compare

GitHub all current

Changes

  • Add color cursor support (OSC 12/112):
    Set/reset cursor color:
    printf "\e]12;rgb:00/ff/00\e\\"  # Set cursor color to green.
    printf "\e]112;\e\\"             # Reset cursor color to default.
    
    Run terminal with red cursor:
    printf "vtm.run(id=Term cfg='<config><term><cursor><color bgc=reddk/></cursor></term></config>')" | vtm
    
    Set red cursor in settings.xml:
    <config>
      <term>
        <cursor>
          <style="block"/> <!-- Cursor style: underline | block -->
          <blink=400ms/>       <!-- Cursor blink period. Set to zero for a steady cursor. -->
          <show=true/>
          <color bgc=reddk fgc=default /> <!-- Cursor cell color. By default, the cursor color (bgc) is set to either black or white depending on the lightness of the underlying text background. -->
        </cursor>
      </term>
    </config>
  • Make the terminal window opaque by default.
  • Make window shadow configurable:
    <config>
      <appearance>
        <defaults>
          <shadow> <!-- Window shadow configuration. -->
            <enabled = true />
            <blur = 3 />         <!-- Blur radius (in cells). Default is 3. -->
            <bias = 0.37 />      <!-- Shadow contour bias [0.0 - 1.0]. Default is 0.37 -->
            <opacity = 105.5 />  <!-- Opacity level (alpha) [0.0 - 255.0]. Default is 105.5 -->
            <offset = 2,1 />     <!-- 2D offset relative to the window (in cells). Default is 2,1. -->
          </shadow>
        </defaults>
      </appearance>
    </config>

v0.9.75b

28 Mar 12:33
db9aedb
Compare
Choose a tag to compare

v0.9.75b

GitHub all current

Changes

  • Make terminal scrollback transparent by default to provide clear boundaries for the console applications output:
    <config>
      <term>
        <color>
          <bground = transparent />  <!-- Independent background color of the scrollback canvas. Set to 0x00ffffff(default) to sync with SGR49 (default background). -->
        </color>
      </term>
    </config>

v0.9.75a

27 Mar 20:46
deba08f
Compare
Choose a tag to compare

GitHub all current

Changes

  • Add window shadows:
    image
  • Make the terminal scrollback background color independent and configurable:
    <config>
      <term>
        <color>
          <bground = transparent />  <!-- Independent background color of the scrollback canvas. Set to 0x00ffffff(default) to sync with SGR49 (default background). -->
        </color>
      </term>
    </config>
    image
  • Remove taskbar menu item's attributes: bgc=..., fgc=..., slimmenu=... (use cfg=... attribute instead).
    echo "vtm.set(id=Azure label='Azure Terminal' type=dtvt cmd='vtm -r term' cfg='<config><term><color><default fgc=0xFFffff00 bgc=bluedk/></color></term></config>')" | vtm
  • Add support for styled and colored underlining (SGR-4:*, SGR-58/59).
  • Fix bug with CSI subparameters parsing.
    repro:
    printf "\e[48:2::255:255:255mWhite\e[m\n"
    printf "\e[48:2:255:255:255mWhite\e[m\n"
    

v0.9.74

27 Feb 21:52
392bdca
Compare
Choose a tag to compare

GitHub all current

Changes

  • Fix semantic block selection

v0.9.73

27 Feb 15:46
5980443
Compare
Choose a tag to compare

GitHub all current

Changes

  • Fix standalone terminal focus, #575
  • Render colored whitespaces instead of shaded block glyphs "▓▒░".
  • Add support for selecting semantically (OSC 133) homogeneous blocks with the mouse (4x left-click).
  • Add semantic markers for cmd.exe by default (OSC 133).
  • Built-in terminal/teletype: Change the multiple left click behavior:
    • Double left click: Select a word.
    • Triple left click: Select paragraph.
    • Quadruple left click: Select the entire scrollback buffer or semantic block (when using OSC 133).
    • Quintuple left click: Select the entire scrollback buffer.

v0.9.72

18 Feb 19:40
c0b2d48
Compare
Choose a tag to compare

GitHub all current

Changes (Windows only)

  • Fix cli usage output for non-UTF-8 code pages, #572

v0.9.71

17 Feb 20:11
e2a3602
Compare
Choose a tag to compare

GitHub all current

Changes (Windows only)

  • Fix dead keys in cmd.exe for US-International kb layout, #568