vtm

Text-based desktop environment

MIT License

Stars
1.5K

Bot releases are hidden (Show)

vtm - v0.9.24

Published by o-sdn-o 11 months ago

Changes

  • Improve server starting logic
  • Improve region view navigation
  • Suppress moving maximized window by right click
  • Fix bounding box for flying windows
  • Fix apple terminal detection on macOS (256 colors)
vtm - v0.9.23

Published by o-sdn-o 11 months ago

Changes

  • Don't trigger taskbar on hover (activate only by click)
  • Minor fixes
vtm - v0.9.22

Published by o-sdn-o 11 months ago

Changes

  • Fix maximized and fullscreen modes behavior
vtm - v0.9.21

Published by o-sdn-o 11 months ago

Changes

  • Fix maximized window desync on taskbar resize, #471
  • Fix VS2019 complaints
vtm - v0.9.20

Published by o-sdn-o 11 months ago

Changes

  • Add support for maximized window mode along with fullscreen mode, #468
  • Revise taskbar layout
  • Add taskbar resizing grip
  • Add support for folding the taskbar by click
  • Set window menu always visible by default
  • Add SGR-attributes for colors in settings (xml)
vtm - v0.9.19

Published by o-sdn-o 12 months ago

Changes

  • Add global settings:
    • on posix: /etc/vtm/settings.xml
    • on win32: %programdata%/vtm/settings.xml
  • Remove VTM_CONFIG env variable support.
  • Change settings loading order. See doc/settings.md for details.
vtm - v0.9.18

Published by o-sdn-o 12 months ago

Changes

  • Make elevated and non-elevated users different independent users, #463
  • Rename connection list on taskbar to "admins" or "users" as an indication of whether the vtm is running with elevated privileges or not, #466
vtm - v0.9.17

Published by o-sdn-o 12 months ago

Changes

  • Suppress resetting terminal viewport on non-input keypress
  • Fix platform signal listener, #452
  • Fix debug statistics location
vtm - v0.9.16

Published by o-sdn-o 12 months ago

An extra semicolon crept in when sending the clipboard to Linux... #453

      443: stdout: 
      443:      \e]52;c;;MTIz\u0007
vtm - v0.9.15

Published by o-sdn-o 12 months ago

Changes

  • Fix improper OSC 52 output, #453
  • Cell-based instead of word-based wrapping in clipboard preview
vtm - v0.9.14

Published by o-sdn-o 12 months ago

Changes

  • Fix interference with copy/move/del:
D:\sources\test\cmd>copy iii ooo 
Overwrite ooo? (Yes/No/All): ^C 

        0 file(s) copied.

D:\sources\test\cmd>move iii ooo 
Overwrite D:\sources\test\cmd\ooo? (Yes/No/All): ^C 

        0 file(s) moved.

D:\sources\test\cmd>del ppp 
D:\sources\test\cmd\ppp\*, Are you sure (Y/N)? ^C 

D:\sources\test\cmd>test 
About to do it.
Press any key to continue . . . 
Terminate batch job (Y/N)? (Ctrl+C = Y) y 
^C
D:\sources\test\cmd> 
vtm - v0.9.13

Published by o-sdn-o 12 months ago

Changes

  • Auto Yes by Ctrl+C on Terminate batch job (Y/N)? on Windows

https://github.com/netxs-group/vtm/assets/11535558/ef655472-e045-4c17-9d32-9b60a8579bda

It has a small side effect on copy/move/del commands:

C:\Users\sdn>copy con iii 
^Z 
        1 file(s) copied.

C:\Users\sdn>copy iii ooo 
        1 file(s) copied.

C:\Users\sdn>copy iii ooo
Overwrite ooo? (Yes/No/All): (Ctrl+C = Y) n 
        0 file(s) copied.

C:\Users\sdn>move iii ooo 
Overwrite C:\Users\sdn\ooo? (Yes/No/All): (Ctrl+C = Y) n 
        0 file(s) moved.

C:\Users\sdn>mkdir ppp 

C:\Users\sdn>del ppp 
C:\Users\sdn\ppp\*, Are you sure (Y/N)? (Ctrl+C = Y) n 

C:\Users\sdn> 
vtm - v0.9.12

Published by o-sdn-o 12 months ago

Changes

  • Fix real-time statistics (triple Left+RightClick on taskbar to activate).
vtm - v0.9.11

Published by o-sdn-o 12 months ago

Changes

  • Fix switching between the main scrollback buffer and application-created buffers.
vtm - v0.9.10

Published by o-sdn-o 12 months ago

Changes

  • Pull apart mouse hover and keybd focus
    • hover: pale backlight
    • focus: bright highlight (can be tested in Gems vtm -r gems)
  • Remove taskbar glow option
vtm - v0.9.9w (Windows: Fix DOSKEY macros expanding)

Published by o-sdn-o almost 1 year ago

Changes

  • Windows: Fix multiple $* tags expanding: doskey test=echo $* $1 $*
vtm - v0.9.9w (fast scrolling in terminal)

Published by o-sdn-o about 1 year ago

Changes

  • Disable smooth scrolling in built-in terminal.
vtm - v0.9.9w

Published by o-sdn-o about 1 year ago

Changes:

  • Implemented the following APIs (DOSKEY.EXE) support:
    • AddConsoleAlias
    • GetConsoleAlias
    • GetConsoleAliasExesLength
    • GetConsoleAliasExes
    • GetConsoleAliasesLength
    • GetConsoleAliases
    • ExpungeConsoleCommandHistory
    • SetConsoleNumberOfCommands - not used
    • GetConsoleCommandHistoryLength
    • GetConsoleCommandHistory
    • GetConsoleHistoryInfo - not used
    • SetConsoleHistoryInfo - not used
  • Alt+F10 to wipe DOSKEY aliases for current process (by process module name).
  • Alt+F7 to clear command history (by process module name).
  • Processes with the same module name share a common command history.
  • Force 16-color mode on MS Windows prior Windows 10.
  • Implement word-based text wrapping. #396
  • Add GitHub Action workflow to generate binaries for the big three OS platforms.
  • Disable mouse event processing when any reporting mode enabled. #438
  • Add the ability to change default menu item settings. #439
vtm - v0.9.9v (fixed wide taskbar layout)

Published by o-sdn-o about 1 year ago

Changes:

  • Fix wide taskbar mode
    wide=on option in settings.xml:
    <config>
      <menu wdie=on>
      ...
      </menu>
    </config>
    
vtm - v0.9.9v (fixed terminal)

Published by o-sdn-o about 1 year ago

Changes:

  • Fixes issue with built-in terminal: The new text stops rendering when the scrollback buffer is filled to the top and begins to behave like a ring. #433