Skip to content
Snippets Groups Projects
  1. Oct 25, 2024
    • Deucе's avatar
      Don't use ANSI.SYS extensions · e07cf256
      Deucе authored
      CSI s and CSI u are ANSI.SYS extensions, and aren't needed here.
      We're clearing the screen and moveing the cursor anyway.
      e07cf256
    • Deucе's avatar
      Disable the clear to end-of-line optimization · 7554868f
      Deucе authored
      Not only was it broken when window() is set, it's also broken when
      the width is not the full screen width.
      
      We've now disabled pretty much all the optimizations... but it works.
      7554868f
    • Deucе's avatar
      Clean up ANSI output a bit · 76a3a9f1
      Deucе authored
      Specifically, make Win32 Terminal output not suck.
      If stdout is a tty, set the palette appropriately, avoid using \n
      since Windows can't seem to be stopped from expanding it to \r\n
      nd brob the Console modes a bit harder.
      76a3a9f1
    • Deucе's avatar
      Deal with more windows console braindeadedness. · 714e0ec0
      Deucе authored
      The window and the screen buffer are two different things... the
      screen buffer must always be the same size as or larger than the
      window.  Further, there are times where it's not possible to resize
      the windown programatically (new terminal for example).
      
      There still appears to be a stupid bug in what I assume is the
      Windows Terminal LCF flag implementation which causes writes to
      the beginning of a line that occur after a write to the end of the
      previous line to be in the wrong position.  If it's not the LCF flag
      (which isn't turned on), it's in their wrapping thing which is extra
      irritating since I explocitly turn that off.
      714e0ec0
    • Deucе's avatar
      Some more Win32 Terminal fixes · 0bf419eb
      Deucе authored
      Almost there, the main issue remaining is when running from a
      command-line, it sometimes "unwraps" lines.
      0bf419eb
    • Deucе's avatar
      Fix ANSI_KEY_PGDN definition. · f0348c26
      Deucе authored
      Likely still not right though.
      f0348c26
    • Deucе's avatar
      Keep a local copy of the screen for windows · 0f87d4e2
      Deucе authored
      Because it screws up the display when you resize the window.
      0f87d4e2
  2. Oct 24, 2024
  3. Oct 23, 2024
  4. Oct 22, 2024
  5. Oct 21, 2024
    • Rob Swindell's avatar
      Add a bunch of conditional line continuations for 40 column terminals · 82f3426b
      Rob Swindell authored
      Using Ctrl-A\ (\1\\) in a bunch of text strings (especially prompts) to
      better accommodate 40 column terminals.
      
      Fixes email/netmail address prompt issue reported by phigan (TACOPRON)
      along with a bunch of other cosmetic and input issues with 40col terminals.
      82f3426b
    • Rob Swindell's avatar
      The P, C, and v options would report 'unrecognized option' · 454ef936
      Rob Swindell authored
      Fix for issue #798
      454ef936
    • Deucе's avatar
      Fix script to update Info.plist properly. · 867cf8c9
      Deucе authored
      We need -g to do multi-line matching with -p.
      867cf8c9
    • Deucе's avatar
      Fix macOS mouse position reporting · 1ac01645
      Deucе authored
      Under SDL2, with HighDPI enabled, we end up with two coordinate
      systems for our window... there's the pixel coordinates which we
      draw in, and are available via SDL_GetWindowSizeInPixels(), and
      there's the "screen" coordinates, which is an underlying source
      size that is scaled from, and is available via SDL_GetWindowSize().
      
      Mouse events are in the screen coordinates, drawing is in pixel
      coordinates.  This commit converts mouse event positions to pixel
      coordinates before converting further to text coordinates. :(
      
      A specual thanks to u/ten-oh-four for working to track this down
      with me, they ran multiple experimental builds and collected logs
      which allowed to to be tracked down.
      
      Fixes issue 155
      1ac01645
Loading