The NetBSD Project

CVS log for pkgsrc/x11/xterm/distinfo

[BACK] Up to [cvs.NetBSD.org] / pkgsrc / x11 / xterm

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.111 / (download) - annotate - [select for diffs], Fri Feb 23 17:26:28 2024 UTC (4 weeks, 5 days ago) by pin
Branch: MAIN
CVS Tags: HEAD
Changes since 1.110: +4 -4 lines
Diff to previous 1.110 (colored) to selected 1.31 (colored)

x11/xterm: update to 390

Patch #390 - 2024/02/19
 - improve typography of control-sequences page (patches by Branden Robinson).
 - amend UPSS change from patch #389, fixing a regression in VT100/VT220
   character sets.
 - modify ANSI conformance per ECMA-43 and DEC 070:
    - set ANSI conformance level to 3 for DEC levels 2 and up.
    - disable locking shifts in level 1, e.g., VT100.
    - disable single-shifts from G2/G3 in level 1.
    - use UPSS for G2/G3 in levels 2 and up.
 - modify invisible-character attribute to permit DECRQCRA to report a
   consistent checksum (report/testcase by Thomas Wolff).
 - align terminfo building blocks in terminfo to correspond to recent
   refactoring/trimming in ncurses.
 - set flag in regexec call for onNClicks to handle ãà׿ãàanchor
   (patch by Matthew Martin).
 - add line-drawing data for the characters in DEC Technical which have no
   Unicode equivalents.
 - remove a special case in encode_scs which made xterm report Latin-1 when
   encoding is set to UTF-8, where ASCII is the selected character set.
   This fixes a regression in vttest for the DECRSPS cursor test.
 - correct values for Ps of DECAUPSS in ctlseqs.ms
   (report by James Holderness).
 - simplify/correct expression for checking Unicode non-characters
   (report by Thomas Wolff).
 - correct loop for trimming environment variables (report/patch by Casper Dik).
 - fixes for manpage formatting (Debian #1041809).
 - update config.guess, config.sub

Revision 1.110 / (download) - annotate - [select for diffs], Tue Jan 9 20:11:46 2024 UTC (2 months, 2 weeks ago) by pin
Branch: MAIN
Changes since 1.109: +4 -4 lines
Diff to previous 1.109 (colored) to selected 1.31 (colored)

x11/xterm: update to 389

Patch #389 - 2024/01/01
 - interchange variables in subparameter parsing, fixing a bug where
   subparameters after the first parameter could be misidentified
   (patch by Adam Saponara).
 - correct popping of icon/window titles in a case where only one was pushed
   from patch #385 changes.
 - add XTQMODKEYS response in DECRQSS, as alternative for vim.
 - correct DECCIR encoded information on character set size, handle a VT525
   quirk, and add DECST8C (Windows Terminal #14984).
 - improve DECRQCRA (prompted by discussion with James Holderness, Windows
   Terminal #14974).
 - add part of VT525 color controls:
    - DECAC, to update default foreground/background, respond to DECRQSS
    - DECATC, to respond with DECRQSS
 - prevent Unicode non-characters from being printed
   (prompted by patch by Grady Martin).
 - modify send_SGR() to avoid modifying colors 16 to 255 in printed output
   (patch by Grady Martin).
 - minor cleanup of miscellaneous error-codes with ERROR_MISC.
 - remove legacy CSI 53 for locator status, corrected in patch #294.
 - modify DECRQUPSS and DECAUPSS feature to support VT5xx character sets
   (report by Thomas Wolff).
 - improve configure script:
    - reduce configure-check compiler warnings
      (prompted by Florian Weimer, Redhat #2251945)
    - improve usage messages in configure script to make it clearer when an
      option value is optional.
 - improve EWMH handling (report/analysis by Edward Rosten)
    - reset _NET_WM_STATE_HIDDEN flag from _NET_WM_STATE before mapping the
      window to deiconify.
    - cache X properties to reduce latency
      (adapted from patch by Edward Rosten).

Revision 1.109 / (download) - annotate - [select for diffs], Tue Oct 31 16:18:09 2023 UTC (4 months, 3 weeks ago) by pin
Branch: MAIN
CVS Tags: pkgsrc-2023Q4-base, pkgsrc-2023Q4
Changes since 1.108: +4 -4 lines
Diff to previous 1.108 (colored) to selected 1.31 (colored)

x11/xterm: update to 388

Patch #388 - 2023/10/22
 - improve disallowPasteControls by adding a category for the special characters
   known to stty (prompted by discussion with David Leadbeater).
 - amend support of DECAUPSS, undoing change to initialization of G2/G3 so that
   pasting of GR characters works properly (report/analysis by Petri Kaukasoina).
 - update config.guess, config.sub

Patch #387 - 2023/10/15
 - add DECRQUPSS and DECAUPSS.
 - add DECRQDE (report by Jake Hamby).
 - correct indexing expression in title-stack, from patch #385 changes
   (report by Brian Lindholm).

Patch #386 - 2023/10/09
 - improve references in ctlseqs.ms (prompted by discussion with Kirill Chibisov).
 - make the maximum amount of memory used for buffering DCS and OSC strings
   configurable with maxStringParse resource (report by Daniel Franke).
 - improve performance of ReGIS when initializing the largest fontsize
   (report by Ben Wong).
 - fix regression in SIXEL colors, in patch #385 (report/patch by Jonny Langley).
 - fix typo in --with-wtmp (report/patch by Sven Joachim)

Revision 1.108 / (download) - annotate - [select for diffs], Wed Oct 4 05:15:01 2023 UTC (5 months, 3 weeks ago) by pin
Branch: MAIN
Changes since 1.107: +4 -4 lines
Diff to previous 1.107 (colored) to selected 1.31 (colored)

x11/xterm: update to 385

Patch #385 - 2023/10/01

 - fixes for ReGIS (report by Ben Wong).
     - correct conversion from HLS to RGB
     - improve font-caching performance.
 - update tables in wcwidth.c based on Unicode 15.1.0
 - improve fastScroll resource:
     - suppress screen-refreshes for carriage-returns
     - add -jf option to simplify use of this resource.
     - add a control sequence for enabling/disabling the resource.
     - enable this feature by default
 - extend title-stack feature to allow an additional parameter to directly
   access the stack, like the XTPUSHCOLORS and XTPOPCOLORS feature.
 - correct size and position of box shown for double-cell character which
   happens to be missing from the bitmap font (report by Peter Fabinski).
 - improved configure script:
     - add pattern for uClibc-ng to CF_XOPEN_SOURCE (report/patch by Waldemar
       Brodkorb).
     - add configure options --with-utmp-path and --with-wtmp-path to override
       configure script's check for utmp/wtmp pathnames which are shown in the
       manual (Debian #1042767).
     - CF_XOPEN_SOURCE provides for defining _DEFAULT_SOURCE for MinGW32 and
       MinGW64.
     - sed expression used to report gcc version now works with MinGW
 - ensure that line-attributes are reset after drawing missing character
   (report by Christian Weisgerber).
 - update config.guess, config.sub

Revision 1.107 / (download) - annotate - [select for diffs], Wed Aug 2 17:34:55 2023 UTC (7 months, 3 weeks ago) by pin
Branch: MAIN
CVS Tags: pkgsrc-2023Q3-base, pkgsrc-2023Q3
Changes since 1.106: +4 -4 lines
Diff to previous 1.106 (colored) to selected 1.31 (colored)

x11/xterm: update to 348

Patch #384 - 2023/07/10
 - exclude ASCII space from showMissingGlyphs, since a few bitmap fonts lack
   this (report by "SanRemo", Emanuel Haupt).
 - correct a step in rendering double-width characters with bitmap-fonts
   (report by Peter Fabinski, Debian #1039986).
 - fixes for ReGIS-related problems (report by Ben Wong):
    - mimic an undocumented hardware VT340 feature which handles color
      initialization with incomplete parameters.
    - handle whitespace between operator/operands for color values.
    - reset ReGIS-context when resetting graphics in RIS.

Revision 1.106 / (download) - annotate - [select for diffs], Tue Jul 4 19:30:15 2023 UTC (8 months, 3 weeks ago) by pin
Branch: MAIN
Changes since 1.105: +4 -4 lines
Diff to previous 1.105 (colored) to selected 1.31 (colored)

x11/xterm: update to 383

Patch #383 - 2023/06/27
 - expand description of full- and soft-reset in the manual.
 - fixes for full- and soft-reset:
    - clear alternate screen on full reset.
    - disable menu-entry for active icon; it merely shows whether the feature
      is enabled.
    - use appcursorDefault and appkeypadDefault resources for reset of DECCKM
      and DECKPM.
    - save initial resource values for sixelScrolling and privateColorRegisters,
      using those in full reset.
    - update checkbox for Enable Blinking Cursor (report by Rajeev V. Pillai).
 - add reply for DECSACE with DECRQSS.
 - modify status-line feature to exit without erasing for DECSTR.
 - add private mode 1045 which imitates the original xterm cursor-back reverse
   wrapping mode 45 (see patch #380).
 - improve checks for non-Unicode values, e.g., in DECRQCRA.
 - re-checkout from RCS archive to fix stale identifiers (report by Sven
   Joachim).

Revision 1.105 / (download) - annotate - [select for diffs], Mon Jun 5 15:52:19 2023 UTC (9 months, 3 weeks ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2023Q2-base, pkgsrc-2023Q2
Changes since 1.104: +4 -4 lines
Diff to previous 1.104 (colored) to selected 1.31 (colored)

xterm: update to 382.

Based on a patch by pin@

x11/xterm: update to 382

Patch #382 - 2023/05/30
 - amend change to CursorBack in patch #380, allowing the result to be on the
   hidden right-half of double-cell characters (report by Rajeev V. Pillai).
 - amend xtermDrawString, fixing regression with --disable-wide-chars
   configuration from patch #380.
 - corrected pathname for run-tic.sh, for full install in an out-of-tree build
   (report by Rajeev V. Pillai).

Patch #381 - 2023/05/28
 - fix a regression in wide bitmap fonts versus check for missing glyphs
   (report by Rajeev V. Pillai).

Patch #380 - 2023/05/09
 - simplify the change for sixelScrolling from patch #374
   (report by Per Bothner).
 - add xterm+focus and report+da2, update report+version building blocks in
   terminfo, from post-ncurses 6.4
 - drop the -title option from uxterm and koi8rxterm, because that interferes
   with deriving the default title from the -e option (Debian #1031837).
   Compensate for this by using the -class option to derive a default title.
 - improve description of readline 2003 mode in ctlseqs.ms
   (report by Thomas Wolff).
 - other improvements to status-line feature (report by Thomas Wolff):
    - clear status line on DECCOLM
    - ignore DECSASD if no previous DECSSDT
    - allow DECSSDT 1 immediately after DECSSDT 2, i.e., without switching back
      to host mode.
 - adjust RequestResize to avoid shrinking screen when using DECCOLM while the
   status-line is active (report/patch by Thomas Wolff).
 - disallow wrapping before the beginning of the screen, to the end of the
   screen, for cursor-back sequences (Redhat #2182357).
 - modify makefile to install the 16x16 xpm files (report by Harald Dunkel).
 - update test-package to reflect resolution of Debian #906901.
 - change default of showMissingGlyphs to True.
 - improve handling of double-sized characters when those happen to be missing
   from the bitmap font and/or are fullwidth.
 - pointer/overflow fixes (reported by David Leadbeater):
    - improve limit-checks for control-sequence numeric parameters in SIXEL
      graphics.
    - add null-pointer checks in WriteNow macro to handle a case where SS2 or
      SS3 might be in effect while processing a combining character.
    - disallow ReGIS reporting for character-set names containing characters
      other than alphanumerics or underscore.
    - implement TrueType fallback font for double-sized characters, including
      Unicode fullwidth. Also add limitFontHeight to provide for configuring
      the distinction between slightly-oversized glyphs and double-sized glyphs.
 - configure script improvements:
    - check for nfsd_t
 - fix a typo in the underline cursor thickness derivation
   (patch by Jan Engelhardt).

Revision 1.104 / (download) - annotate - [select for diffs], Mon Mar 6 07:27:09 2023 UTC (12 months, 3 weeks ago) by pin
Branch: MAIN
CVS Tags: pkgsrc-2023Q1-base, pkgsrc-2023Q1
Changes since 1.103: +4 -4 lines
Diff to previous 1.103 (colored) to selected 1.31 (colored)

x11/xterm: update to 379

Patch #379 - 2023/02/15
 - improve text-cursor (patch by Jan Engelhardt):
     - allow selecting CURSOR_BAR mode from command-line/Xresources.
     - draw cursor using filled rectangle instead of rectangle outline to
       permit thicker underlines/bars.
     - scale up cursor relative to font size.
 - improve readline modes (Fedora #2166860):
     - document readline modes
     - change the feature to configure by default
     - replace hard-coded SS3 for cursor movement with current mode
     - replace hard-coded erase/lnext characters with current values
 - improve status-line (report by Thomas Wolff):
     - RIS turns off status-line
     - Right-margin (DECLRMM and DECSLRM) limits the length of text
       written/updated in the status-line.
     - Most controls which affect the whole screen are ignored while updating
       the status-line.
 - modify configure check for tgetent to allow for some special cases of
   ncurses configuration (report by Satadru Pramani).
 - reduce timeout, improve warning message if resize is run on a terminal which
   is not VT100-compatible.
 - reduce compiler warnings in configure script.

Thanks to @wiz for help with initial build failure.

Revision 1.103 / (download) - annotate - [select for diffs], Thu Jan 12 15:58:17 2023 UTC (14 months, 2 weeks ago) by pin
Branch: MAIN
Changes since 1.102: +4 -4 lines
Diff to previous 1.102 (colored) to selected 1.31 (colored)

x11/xterm: update to 378

Patch #378 - 2023/01/09

- improve descriptions of XTQMODKEYS and XTQALLOWED features in ctlseqs.ms
  (reports by Bram Moolenaar, Thomas Wolff).
- add bracketed+paste and report+version building blocks to terminfo, from
  ncurses 6.4
- improve check for unsupported formatting characters, e.g., zero-width space,
  to properly ignore them (report by Thomas Wolff).
- improve/document error-checking for some of the controls which return
  responses: DECRQSS, XTGETXRES, XTSETTCAP, XTGETTCAP (prompted by discussion
  with David Leadbeater).
- improve limit-checks for fallback font cache (report by Dimitrije Erdeljan).
- improve check for too-wide glyph in fallback font by allowing xterm to
  continue searching for a suitable font rather than just failing on the first.
  Also add limitFontWidth to allow changing the amount by which a glyph must
  extend outside the font's bounding box to disallow it.

Revision 1.102 / (download) - annotate - [select for diffs], Tue Jan 3 14:10:12 2023 UTC (14 months, 3 weeks ago) by pin
Branch: MAIN
Changes since 1.101: +4 -4 lines
Diff to previous 1.101 (colored) to selected 1.31 (colored)

x11/xterm: update to 377

Patch #377 - 2022/11/25

 - add control sequences for reporting the current state of the modified keys
   options (XTQMODKEYS) and allowed/disallowed operations (XTQALLOWED),
   (prompted by discussion with Bram Moolenaar).
 - amend modifyOtherKeys case 2 to distinguish the escape character with
   modifiers, e.g., shift-escape, from a plain escape character (suggested by
   Bram Moolenaar).
 - improve parsing and error-recovery in the case where a list of X11 bitmap
   fonts is given in the -fn and related options.
 - change default for xftTrackMemUsage to false, because libXft has does not
   handle certain fonts.

Patch #376 - 2022/11/16

 - modify configure script to always check for gcc attributes,
 - update install-sh.
 - fix parsing of result -u in vttests/halves.pl.
 - add a note in ctlseqs.ms about compatibility of TBC.
 - fix a copy/paste error in manual (patch by Grady Martin).
 - add null-pointer checks in x_strcasecmp and x_strncasecmp, to help with
   error-recovery for a missing font (Debian #1022942).

Revision 1.101 / (download) - annotate - [select for diffs], Tue Oct 25 09:33:11 2022 UTC (17 months ago) by pin
Branch: MAIN
CVS Tags: pkgsrc-2022Q4-base, pkgsrc-2022Q4
Changes since 1.100: +4 -4 lines
Diff to previous 1.100 (colored) to selected 1.31 (colored)

x11/xterm: update to 375

 - improve error-recovery when setting a bitmap font for the VT100 window, e.g.,
   in case OSC 50 failed, restoring the most recent valid font so that a
   subsequent OSC 50 reports this correctly (report by David Leadbeater).
 - exclude MC_XDG_OPEN from environment variables trimmed on startup (report by
   Gabor Hauzer).
 - check for null pointer in isSelect() (report by Column Paget).

Revision 1.100 / (download) - annotate - [select for diffs], Wed Oct 12 16:19:54 2022 UTC (17 months, 2 weeks ago) by pin
Branch: MAIN
Changes since 1.99: +4 -4 lines
Diff to previous 1.99 (colored) to selected 1.31 (colored)

x11/xterm: update to 374

Patch #374 - 2022/10/10
   - eliminate use of grep aliases from vttests scripts.
   - amend discussion of DECSDM versus Sixel Scrolling in ctlseqs.ms (reports
     by Hayaki Saito, Ben Wong).
   - change default for sixelScrolling resource to better match VT330/VT340
     DECSDM setting (patch by Ben Wong).
   - fix some gcc and coverity warnings.
   - improve memory usage for OSC 52 (report by David Leadbeater).
   - fix regression in xterm-373 change adding resources xftTrackMemUsage to
     xftMaxGlyphMemory, which did not first cache the server's resource-settings
     (report/testcase by Gabor Hauzer, as well as Debian #1021243).
   - fix regression in xterm-373 change for status-line vs alternate screen
     (report by Rajeev V. Pillai).
   - configure script improvements:
       - modify CF_XOPEN_SOURCE to handle more special cases of Linux (reports
         by Adam Sampson, Sven Joachim).
       - modify checks for egrep/fgrep aliases to work around warning messages
       from GNU grep 3.8

Patch #373 - 2022/09/25
   - improve rendering of TrueType fonts:
       - add resource xftTrackMemUsage to enable/disable a new feature of Xft
         which improves performance.
       - add resources xftMaxGlyphMemory and xftMaxUnrefFonts to customize
         memory-usage of Xft and fontconfig.
       - provide for display of colored fonts in libXft 2.3.5
       - allow for an extra TrueType font to be specified using the -fa option,
         as an override to the fontconfig scheme of fallback fonts (request by
         Nickolas Raymond Kaczynski).
       - improve caching of TrueType missing-glyph tests.
       - allow no more than 255 fonts to be scanned for a fontset.
       - eliminate a table-lookup in findXftGlyph
   - improvements status-line feature:
       - save/restore wraparound flag when updating the status-line (report
         by Rajeev V. Pillai).
       - avoid clearing the status-line when switching between normal and
         alternate screens (report by Valtteri Vuorikoski).
       - remove adjustment from update_winsize leftover from initial work
         (report by Valtteri Vuorikoski).
   - modify wcwidth tables to separate Unicode Cf category as formatting
     control-characters, to better match the guideline for unsupported
     characters (report by Tim Chase).
   - add configure option --disable-exec-selection.
   - use mkstemp where mkdtemp is unavailable, when initializing colored cursor.
   - adapt fixes from OpenBSD xenocara:
       - improve ifdef's for a few optional features.
       - correct #ifdef to #if in a few uses of OPT_PRINT_ON_EXIT.
   - set StartupWMClass in ãàdesktopãàfiles, e.g., to help cinnamon-session
     notice that xterm sets WM_CLASS and use its icon (patch by Richard de Boer).
   - disable pixel computation when rgb width is greater than 8, to work with
     depth 30 (patch by Denis Kaganovich).
   - improve color-computation for SGR 2 faint/dim (patch by Boian Bonev).
     Add resource faintIsRelative to specify if the modified computation should
     be used (prompted by discussion with Matthieu Herrb).
   - correct comparison-length for environment variable cleanup (patch by
     Brendan O' Dea).
   - correct dsl capability for dec+sl block in terminfo (report by Rajeev
     V. Pillai).
   - improve output formatting by vttests/utf8.pl
   - repair test/demo scripts still using "vxt-" prefix, some cleanup with
     shellcheck.
   - enable page-number for DECXCPR response in VT330.
   - amend change for combining characters in patch #371 to limit it to the
     currently-defined codes (report by Thomas Wolff).
   - add directory-template parameter to mktemp in shell-scripts to improve
     portability to older systems (patch by Ryan Schmidt).
   - mention webpage XTerm ãàbracketed-paste in ctlseqs.ms
   - update manual-page descriptions for allowPasteControls and
     disallowedPasteControls (patch #363).
   - further extended list of environment variables to purge on startup
     (suggested by Thomas Wolff).
   - update config.guess, config.sub

Revision 1.99 / (download) - annotate - [select for diffs], Mon Mar 14 13:27:20 2022 UTC (2 years ago) by pin
Branch: MAIN
CVS Tags: pkgsrc-2022Q3-base, pkgsrc-2022Q3, pkgsrc-2022Q2-base, pkgsrc-2022Q2, pkgsrc-2022Q1-base, pkgsrc-2022Q1
Changes since 1.98: +4 -5 lines
Diff to previous 1.98 (colored) to selected 1.31 (colored)

x11/xterm: update to 372

Patch #372 - 2022/03/09
    -amend allocation/freeing of scrollback lines, eliminating an adjustment for
    status-line added in patch #371 (report/testcase by Rajeev V. Pillai).

Patch #371 - 2022/02/24
    -drop double-buffer default from test-packages, since that interferes with
    status-line.
    -add faceSize7 to table in charproc.c, overlooked in patch #360 (patch by
    Vladimir A. Pavlov).
    -use XDrawString rather than XDrawString16 for text when the latter is not
    needed.
    -improve performance for initializing/reusing graphic objects in the SIXEL
    feature.
    -improve error-checking for resize.
    -fix errata in manual page (Debian #988221).
    -extended list of environment variables to purge on startup, i.e., in case a
    user starts xterm from another terminal emulator.
    -add comment in cursor.c to explain why autowrap (DECAWM) does not apply to
    data saved/restored with save/restore cursor-operations (report by Thomas
    Wolff).
    -add special case in generating the combining-character table in wcwidth.c,
    for Hangul Jamo Extended-B (report by Luis Javier Merino).
    -simplify/improve portability of trap commands in shell-scripts.
    -update configure options
     --disable-rectangles,
     --disable-tcap-fkeys and
     --disable-tcap-query
     to account for changed default settings.
    -rather than ignore empty parameter for setting title, use that to reset it
    to ãà×Ùtermãàfor scripting.
    -check for out-of-bounds condition while drawing sixels, and quit that
    operation (report by Nick Black).
    -add fallback definition for PROJECTROOT so that a suitable default location
    for luit will be compiled-in on build-servers.
    -implement DEC status-line controls DECSASD/DECSSDT:
        decode controls, set state
        implement DECRQSS responses
        implement indicator-style status-line
        add configure option --enable-status-line
        add resource indicatorFormat
        implement host-writable status-line, able to handle video-attributes and
        simple left/right cursor movement. This disallows all of the DEC/xterm
        private modes such as switching to/from the alternate screen.
        move the status-line if the window is resized.
        Note: the associated screen-resizing does not work for the special case
        of TrueType fonts with double-buffering (see note in patch #349).
    -modify configure-script fixup for -Werror options to exclude fixup for
     -Werror=format, e.g., -Werror=format-security.
    -amend change from patch #370; DEC 070's pseudo-code for DECCOLM incorrectly
    suggests that it enables DECLRMM as a side-effect.
    -fix some memory leaks seen using esctest and asan2 (patch by Luis Javier
    Merino).

Revision 1.98 / (download) - annotate - [select for diffs], Mon Jan 31 10:00:24 2022 UTC (2 years, 1 month ago) by wiz
Branch: MAIN
Changes since 1.97: +2 -1 lines
Diff to previous 1.97 (colored) to selected 1.31 (colored)

xterm: add patch for CVE-2022-24130

From upstream.

Bump PKGREVISION.

Revision 1.97 / (download) - annotate - [select for diffs], Fri Nov 26 08:37:29 2021 UTC (2 years, 4 months ago) by pin
Branch: MAIN
CVS Tags: pkgsrc-2021Q4-base, pkgsrc-2021Q4
Changes since 1.96: +4 -4 lines
Diff to previous 1.96 (colored) to selected 1.31 (colored)

x11/xterm: update to 370

-add -a, -c and -d options to query-status.pl to improve test for DECRQSS.
-expanded discussion of maximum graphics geometry in ctlseqs.ms (suggested by
 Bon Wong).
-corrected parameter symbol for DECCARA and DECRARA in ctlseqs.ms to indicate
 that multiple parameters may be used (report by Thomas Wolff).
-add several test/demo scripts.
-improve DECCOLM, DECLRMM and DECALN referring to pseudo-code in DEC 070.
-amend a change in patch #348 which caused left/right margin mode to be reset
 when resizing the terminal window (report by Valentine Barshak).
-fix a misnamed macro-parameter (patch by Rajeev V. Pillai).
-fix spacing of wideFont when its width is not exactly twice as wide as the
 normal font (report by Rajeev V. Pillai).
-suppress loading of italic font in a few places when colorITmode is enabled
 (report/analysis by Rajeev V. Pillai).
-modify XTSMGRAPHICS to return failure status if the terminal is not configured
 to support the corresponding ReGIS or SIXEL feature (report by Nick Black,
 notcurses #2252, notcurses #2257).
-modify DECERA and DECFRA to erase corresponding area in SIXEL graphics (patch
 by Nick Black, notcurses #1740, vt340test #16). Also modify DECSERA.
-equate visuals for TrueColor and DirectColor (patch by Denis Kaganovich).
-correct computation for pixel value of rgb when using depth 16 (report by
 Denis Kaganovich).
-correct wrapping of VT100-style double-sized characters when configured for
 Unicode wide-characters (report by Luis Javier Merino).
-updated default value for sixelScrolling resource to match expected behavior
 versus DECSDM change in patch #369 (report by Grant Taylor).

Revision 1.96 / (download) - annotate - [select for diffs], Tue Oct 26 11:34:58 2021 UTC (2 years, 5 months ago) by nia
Branch: MAIN
Changes since 1.95: +2 -2 lines
Diff to previous 1.95 (colored) to selected 1.31 (colored)

x11: Replace RMD160 checksums with BLAKE2s checksums

All checksums have been double-checked against existing RMD160 and
SHA512 hashes

Unfetchable distfiles (fetched conditionally?):
./x11/py-qt4/distinfo PyQt4_gpl_mac-4.12.3.tar.gz

Revision 1.95 / (download) - annotate - [select for diffs], Wed Oct 13 07:24:11 2021 UTC (2 years, 5 months ago) by pin
Branch: MAIN
Changes since 1.94: +4 -4 lines
Diff to previous 1.94 (colored) to selected 1.31 (colored)

x11/xterm: update to 369

-modify run-tic.sh to work around bug in development version of ncurses which
was packaged in FreeBSD ports.
-remove ifdef's for OPT_COLOR_RES and OPT_COLOR_RES2.
-improve performance over slow connections (report by Harald Dunkel).
-update cursor if restoring mode for DECTCEM.
-modify CharWidth macro to ensure that the shortcut for Latin-1 is only applied
when UTF-8 is not enabled, to fix a bug in handling soft-hyphen from patch #334
changes (patch by Martijn van Duren).
-improve terminfo:
	-fill-in function-keys in terminfo which are not Sun/HP keyboards using
	xterm+nopcfkeys building-block.
	-add kbeg to xterm+keypad to accommodate termcap applications
	-add smglp and smgrp to vt420+lrmm, to provide useful data for the "tabs"
	+m option
-support shift-tab in Sun, HP and SCO keyboards.
-document some legacy features in ctlseqs.ms (prompted by discussion with Jimmy
Aguilar Mena "Ergus").
-add ãà×Õrimãàoption to cdXtraScroll and tiXtraScroll.
-remove support for non-fifo save-lines configuration.
-extend cdXtraScroll to check if the cursor is at the upper-left of the
scrolling region when the erasure is for the remainder of the screen versus the
whole screen (prompted by discussion with Jörg Breitbart).
-add workaround for broken pcre2 package in Debian 10.
-change screen-refresh call used for DECCARA and DECRARA to ensure that trailing
blanks which are part of the rectangle are repainted (report/analysis by Dennis
Filder).
-when resetting the terminal, ensure that the cursor shape also is reset, e.g.,
if DECSCUSR has been used to modify the cursor shape for an xterm which was
started with the underlined cursor option (report/analysis by Luis Javier
Merino).
-prevent DECSCUSR from blinking the cursor if the cursorBlink resource is
×Ïeverãà(report by Vladimir D Seleznev).
-invert the sense of DECSDM, to correspond with VT382 manuals (lsix #41).
-update tables in wcwidth.c based on Unicode 14.0.0

Revision 1.94 / (download) - annotate - [select for diffs], Thu Oct 7 15:14:44 2021 UTC (2 years, 5 months ago) by nia
Branch: MAIN
Changes since 1.93: +1 -2 lines
Diff to previous 1.93 (colored) to selected 1.31 (colored)

x11: Remove SHA1 hashes for distfiles

Revision 1.93 / (download) - annotate - [select for diffs], Tue Jun 8 17:32:34 2021 UTC (2 years, 9 months ago) by pin
Branch: MAIN
CVS Tags: pkgsrc-2021Q3-base, pkgsrc-2021Q3, pkgsrc-2021Q2-base, pkgsrc-2021Q2
Changes since 1.92: +5 -5 lines
Diff to previous 1.92 (colored) to selected 1.31 (colored)

x11/xterm: update to 368

Patch #368 - 2021/06/07
-add DefaultOff option to RenderFont resource, as part of the session-management
feature.
-add auto-scroll-lock feature (patch by add Stelios Bounanos).
-update the window-size information returned via TIOCGWINSZ when rows/columns
are unchanged but the font-size changes (report by Nick Black).
-improve session-management feature by saving/restoring the font settings.
-update config.guess, config.sub

Revision 1.92 / (download) - annotate - [select for diffs], Sun Mar 28 14:01:16 2021 UTC (3 years ago) by pin
Branch: MAIN
CVS Tags: pkgsrc-2021Q1-base, pkgsrc-2021Q1
Changes since 1.91: +5 -5 lines
Diff to previous 1.91 (colored) to selected 1.31 (colored)

x11/xterm: update to 367

Patch #367 - 2021/03/26
-add OSC 22 to allow programs to select different pointer cursor at runtime.
-change configuration for no-return functions to use _Noreturn when it is
available, because clang --analyze does not properly handle the gcc noreturn
attribute.
-add cursorTheme resource to provide a way to enable or disable the cursor
theme feature.
-modified CopyWait event retries to use shorter sleeps, to improve
responsiveness (tmux #2556).
-improve quoting/escaping in demo-scripts per shellcheck.
-add resizeByPixel resource, to permit disabling window manager resizing-hints
(patch by Tim Oehl).
-corrected printOptsImmediate handling of alternate-screen (report by Abhijit
Dasgupta).
-update sample terminfo to more closely match ncurses.
-add/improve limit-checks for Xlib calls (report by Roman Fiedler).
-fix a typo in the help-message (report by Tomas Korbar).

Revision 1.88.2.1 / (download) - annotate - [select for diffs], Sun Feb 14 16:15:26 2021 UTC (3 years, 1 month ago) by bsiegert
Branch: pkgsrc-2020Q4
Changes since 1.88: +5 -5 lines
Diff to previous 1.88 (colored) next main 1.89 (colored) to selected 1.31 (colored)

Pullup ticket #6429 - requested by wiz
x11/xterm: security fix

Revisions pulled up:
- x11/xterm/Makefile                                            1.131
- x11/xterm/distinfo                                            1.91

---
   Module Name:	pkgsrc
   Committed By:	wiz
   Date:		Thu Feb 11 09:02:52 UTC 2021

   Modified Files:
   	pkgsrc/x11/xterm: Makefile distinfo

   Log Message:
   xterm: update to 366.

   Patch #366 - 2021/02/10

       correct a compiler-warning fix in patch #352 which allowed sign-extension of coordinate values (report by "CismonX").
       correct upper-limit for selection buffer, accounting for combining characters (report/testcase by Tavis Ormandy).
       with alwaysHighlight true, xterm does not properly track focus. The screen->select FOCUS flag remains always on, which prevents bellIsUrgent from working, as the urgent WM_HINT flag is only set in setXUrgency() when the window is not focused. Fix this by updating screen->select in unselectwindow() regardless of the value of always_highlight (patch by Jiri Bohac).
       improve fix for interaction between SRM and ENQ (report by Grant Taylor).
       build-fix for --with-Xaw3dxft, needed when --with-toolbar is omitted (report by Jimmy Olgeni, Emanuel Haupt).

Revision 1.91 / (download) - annotate - [select for diffs], Thu Feb 11 09:02:52 2021 UTC (3 years, 1 month ago) by wiz
Branch: MAIN
Changes since 1.90: +5 -5 lines
Diff to previous 1.90 (colored) to selected 1.31 (colored)

xterm: update to 366.

Patch #366 - 2021/02/10

    correct a compiler-warning fix in patch #352 which allowed sign-extension of coordinate values (report by "CismonX").
    correct upper-limit for selection buffer, accounting for combining characters (report/testcase by Tavis Ormandy).
    with alwaysHighlight true, xterm does not properly track focus. The screen->select FOCUS flag remains always on, which prevents bellIsUrgent from working, as the urgent WM_HINT flag is only set in setXUrgency() when the window is not focused. Fix this by updating screen->select in unselectwindow() regardless of the value of always_highlight (patch by Jiri Bohac).
    improve fix for interaction between SRM and ENQ (report by Grant Taylor).
    build-fix for --with-Xaw3dxft, needed when --with-toolbar is omitted (report by Jimmy Olgeni, Emanuel Haupt).

Revision 1.90 / (download) - annotate - [select for diffs], Mon Feb 8 21:04:15 2021 UTC (3 years, 1 month ago) by pin
Branch: MAIN
Changes since 1.89: +5 -5 lines
Diff to previous 1.89 (colored) to selected 1.31 (colored)

x11/xterm: update to 356

Patch #365 - 2021/02/03
-Amend fix for ãà×Øordãàselection in patch #364 to limit that to the insert
selectable action, which reads data from the screen. This restores the
interactive behavior where double-clicking on a ãà×Øordãàwould make subsequent
selection extensions by words as well as suppressing some boundary-checks
(report by David Wolfskill, FreeBSD #253225).

Patch #364 - 2021/02/02
-Add -fc option.
-Correct/improve limit-checks for SRM versus ENQ from patch #344 (report by
Tom Szilagyi).
-Enable XftFont resource in Xaw3dxft configuration (patch by Tavis Ormandy).
-Improve quoting/escaping in build-scripts per shellcheck.
-Add libpcre2-posix to the packages tested for --with-pcre2 option, needed with
Fedora (report by Tomas Korbar).
-Correct a typo in manual page, and note that KeepClipboard may not be
compiled-in (report/patch by Sean C Farley).
-Corrected boundary-checks for ãà×Øordãàselection used in onNClicks resources
(report by Tavis Ormandy).
-Update to autoconf-2.52-20210101, to improve shellcheck warnings.
-Improve configure check for desktop categories.

Revision 1.89 / (download) - annotate - [select for diffs], Fri Jan 1 13:35:14 2021 UTC (3 years, 2 months ago) by pin
Branch: MAIN
Changes since 1.88: +5 -5 lines
Diff to previous 1.88 (colored) to selected 1.31 (colored)

x11/xterm: update to 363

Patch #363 - 2020/12/26
-disable groff hyphenation in generated html when using man2html.
-change SCS ãà4ãàCyrillic to non-NRCS, per VT520 manual.
-amend fix for SCS in patch #198 to remove DEL rather than converting it to a
space (report by Thomas Wolff).
-modify state transitions for selecting character sets to eliminate an ambiguity
between the ãà×¢ãàused in VT220 versus VT320.
-improve error recovery when selecting characters by resetting to US ASCII when
no suitable encoding is found, e.g., attempting to use an NRCS sequence when
NRCS is not enabled.
-turn off hyphenation in ãàtxtãàconversion, prompted by groff changes.
-add VT5xx ISO Latin-2 (prompted by discussion with Thomas Wolff).
-amend change from patch #361 to event-handling in CopyWait to handle
active-icon as a special case (Debian #975687).
-add call to loadColorTable to get the visual information needed to decode BE
RGBA32 color format (patch by Leandro Lupori).
-modify the resource-parsing for disallowedPasteControls and similar lists of
names/numbers to recognize ãà×ß;ãà(tilde) for cancelling a given name/number.
-add ENQ, EOT and NUL to default for disallowedPasteControls.
-change default for disallowedPasteControls to omit the tab character
(suggested by Harald Dunkel).
-fix swapped height/width in regisScreenSize and maxGraphicSize resources using
"auto" value, from patch #314 (report by Anton Lavrentiev)
-revise patch #362 change for shift-modifier versus mouse protocol and
select/paste by adding resource shiftEscape, which can be enabled via a control
sequence (prompted by discussion with Matthijs van Duin).
-simplify/improve ifdef in trace code for using a separate set of files for each
run of xterm.
-add options -r and -t to vttests/query-color.pl to show the 6-digit RGB code
and actual colors.
-add nel to xterm-basic terminfo.
-alter vttests/modify-keys.pl to omit HTML reference links to the modified-keys
table where no keycode was available.

Revision 1.88 / (download) - annotate - [select for diffs], Sun Nov 22 13:32:27 2020 UTC (3 years, 4 months ago) by pin
Branch: MAIN
CVS Tags: pkgsrc-2020Q4-base
Branch point for: pkgsrc-2020Q4
Changes since 1.87: +5 -5 lines
Diff to previous 1.87 (colored) to selected 1.31 (colored)

x11/xterm: update to 362

Patch #362 - 2020/11/11
-cleanup of calls to free, removing checks for null (Walter Harms).
-improved mouse-button reporting (prompted by discussion with Stephane Chazelas)
	-narrow the scope of the change for shift-key in patch #361 to make it apply
	only when the modifyOtherKeys resource is set to 2 (i.e., ãà×Ñrogram modeãà.
	Also, when checking the shift-key, ignore modifiers other than shift,
	control and ãà×Îetaãà	-use the alt/meta modifier information obtained in VTInitModifiers to
	replace a hard-coded mod1 used to detect ãà×®etaãàfor mouse-button responses.
-reduce SIGWINCH's sent to the client by filtering out duplicates.
-improve display when scaleHeight is greater than 1:
	-the text-cursor is vertically-centered on the current line, rather than
	only extending below the current line (report by Manu Chaturvedi).
	-the built-in line-drawing characters extend to the scaled cell-height.
-fill-in special case for motion-events to match the changes for shift-key in
pointer-button events from patch #361.

Revision 1.87 / (download) - annotate - [select for diffs], Sun Oct 18 08:27:54 2020 UTC (3 years, 5 months ago) by pin
Branch: MAIN
Changes since 1.86: +5 -5 lines
Diff to previous 1.86 (colored) to selected 1.31 (colored)

x11/xterm: update to 361

Patch #361 - 2020/10/14

-treat the return value of strerror as readonly (patch by Philipp Klaus Krause).
-modify event-handling in CopyWait to work around hanging while writing large
amounts of text to an active icon and at the same time iconifying/deiconifying
(report by Dave Kemper).
-initialize double-buffer for active-icon window.
-improve manual page description of scrollbar resources
(report by Brian Lindholm).
-correct ifdef for menu entry for active-icon, when initializing it with toolbar
configuration.
-add preprocessor option to makefile to set internal definition of pixmaps
directory to match the install-configuration (FreeBSD #250036).
-cleanup of calls to free, removing checks for null (Walter Harms).
-add fallback actions pointer-button and pointer-motion which handle events for
the mouse control-sequences protocol if the select-related translations are
omitted with *omitTranslation:select (prompted by discussion with "Ergus")
-amend rule for using shift-key to override mouse-

Revision 1.86 / (download) - annotate - [select for diffs], Mon Sep 28 09:00:02 2020 UTC (3 years, 5 months ago) by pin
Branch: MAIN
Changes since 1.85: +5 -5 lines
Diff to previous 1.85 (colored) to selected 1.31 (colored)

x11/xterm: update to 360

Patch #360 - 2020/09/20

-mention decGraphicsID in ctlseqs.ms (suggested by Thomas Wolff).
-modify pixel-coordinate mouse reponse to use as origin the VT100-window rather
than the underlying widget, which includes the scrollbar
(report by Thomas Wolff).
-add configure option --disable-print-graphics (Ross Combs).
-add test_ptydata to make check rule.
-minor fixes for ctlseqs.ms (report by Jean-Marc Bourguet).
-minor fixes for manpage style (report/patch by "a1346054").
-correct cleanup from switch between italics/normal font in the show/hide cursor
functions (report/testcase by Peter Fabinski).
-integrated patch by Ross Combs:
  -internal renaming of GraphicsID symbols, for readability.
  -adjust logic for VT125, treating it as a ReGIS terminal.
-update configure macros, for compiler-warning fixes.
-integrated patch by Ross Combs:
  -add control sequence modes for graphics printing.
  -improve conversion to bitmaps for TrueType fonts in ReGIS
  -add font7 resource, for an enormous bitmap font.
  -do not reset graphics in a soft-reset.
  -add pointerFont resource, and -pf command-line option.
-improve typography of manual page (patch by Branden Robinson).
-amend patch #359 change to df-install.in to ignore a command-line assignment to
DESTDIR if followed by an explicit --dir (report by Sven Joachim).

Revision 1.85 / (download) - annotate - [select for diffs], Fri Aug 21 08:07:34 2020 UTC (3 years, 7 months ago) by pin
Branch: MAIN
CVS Tags: pkgsrc-2020Q3-base, pkgsrc-2020Q3
Changes since 1.84: +5 -5 lines
Diff to previous 1.84 (colored) to selected 1.31 (colored)

x11/xterm: update to 359

Patch #359 - 2020/08/17

-add special case in WriteText to allow colors 8-15 to -override colorBDMode
(patch by Ingo Brkl).
-add utf8Weblike resource, to provide an alternate scheme for handling ill-formed
UTF-8 sequences (adapted from patch by Dan Gohman).
-improve computation for the number of lines needed to scroll-up a SIXEL graphic
(report/patch by Ben Wong).
-correct manpage description for default value of disallowWindowOps from changes
in xterm #331 (patch by Ben Wong).
-correct a loop starting-point in refresh_graphics from optimization in patch #358
changes (report by Ben Wong).
-add a new mouse mode 1016, which uses the same format as mode 1006, but sends
the mouse's position in pixels (suggested by Igor van den Hoven).
-fix an issue from patch #338 changes where only the first selection buffer
specified in the request would be updated using OSC 52 (patch by Michael Gulick).
-modify makefile/scripts to allow DESTDIR to prefix the target directory for
desktop-file-install (report by Fred Heitkamp).
-enable SIXEL feature by default.
-update config.guess, config.sub

Note: sixel-graphics should now be enabled by default.
Hence, I've removed the corresponding CONFIGURE_ARGS.
If you experience any issues please report and I'll add it back if needed.

Revision 1.84 / (download) - annotate - [select for diffs], Sat Jul 18 19:25:51 2020 UTC (3 years, 8 months ago) by pin
Branch: MAIN
Changes since 1.83: +5 -5 lines
Diff to previous 1.83 (colored) to selected 1.31 (colored)

x11/xterm: update to 358

Patch #358 - 2020/07/12
-correct logic for decodeTerminalID changes in patch #357 (report by "Chartreuse").
-modify makefile to use plink.sh when linking test-programs, to fix build when
using pcre (report by H Merijn Brand)
-build-fix for test_ptydata program (patch by H Merijn Brand)

Patch #357 - 2020/07/05
-several minor optimizations for the ReGIS and SIXEL features, improving
performance by 10%.
-add resource decGraphicsID to allow displaying graphics when the emulation
level would ordinarily disallow this (prompted by discussion with Thomas Wolff).
-add control sequences for fast switching of color palettes: XTPUSHCOLORS,
XTPOPCOLORS, XTREPORTCOLORS
-amend change for soft-hyphen from patch #328 to avoid stripping replacement-
characters which would be shown with malformed or overlong UTF-8 input.
-corrected an error-handling case in decodeUtf8, matching a similar fix in patch
#268 (report/patch by Dan Gohman).
-add a test-driver for ptydata.c
-minor cleanup of macros (adapted from patch by Walter Harms).
-fix some errata in ctlseqs.ms (report by Thomas Wolff).
-allow immediate repaint-on-palette-changed if double-buffering is enabled.
-deprecate codes 10/11 in sgr push controls, changing those to 30/31, to avoid
confusion with sgr 10-19.
-modify SGR parameter handling to stop if an unrecognized parameter is
encountered, to guard against malformed or nonstandard sequences
(report by Bram Moolenaar).
-modify DECERA color for consistency with other erasures/clearing
(report by Thomas Wolff).
-ECH should not be masked by DECSCA (report by Thomas Wolff).
-extend DECFRA and REP to accept any graphic character rather than just
Latin1, etc. (report by Thomas Wolff).
-add -C option to 256colors2.pl and 88colors2.pl, to demonstrate mixed semicolon
/colon separators which are implied by ECMA-48.
-update sample terminfo to reflect the documentation improvements.
-update description of 88/256/direct color in ctlseqs.ms to point out that using
semicolons is a deprecated legacy feature, and standard terminal applications
should use colons (prompted by discussion with Bram Moolenaar).
-modify configure-check for tgetent to conditionally include termcap.h, enabling
configuration using clang's pedantic-errors option (report by Dennis Clarke).
See Other Compatibility in ncurses' curs_termcap(3X).
-remove some unnecessary pointer checks (patch by Walter Harms).
-accept terminal-id and add DA response for VT131, VT132.

Patch #356 - 2020/05/02
-revise fix for Debian #954730, which interfered with wheel mouse events
(report by Gabriele Balducci).

Patch #355 - 2020/05/01
-revise fix for Debian #954730, which interfered with wheel mouse events
(report by Henri Menke).
-fix typos in documentation (reports by Stephen Hurd, Stefan Assmann).
-add mapping for decTerminalID for 100 overlooked in patch #354.
-update tables in wcwidth.c based on Unicode 13.0.0
-build-fix for make check when building out-of-tree (report by Sven Joachim).

Patch #354 - 2020/04/26
-work around performance problems of XDrawImageString and XDrawImageString16
functions (Debian #954845).
-add a control sequence which reports xterm's version (patch by Nicholas
Marriott, mintty #881).
-temporarily set numeric locale category to "C" when parsing resources, so that
scaleHeight and faceSize settings do not depend on locale (Debian #820803).
-improve DA/DA2 response by ensuring that the decTerminalID maps to one of the
known identifiers, as well as providing DA2 response for VT241 and VT382.
-terminfo improvements:
-add (my) comments from ncurses which explain the keypad layouts.
-add vt52+keypad from ncurses
-use improved xm example for xterm+x11mouse, xterm+sm+1006 from ncurses 6.2
terminfo.src
-two fixes for left/right wheel mouse event reporting (Debian #954730):
filter identical button-events
correct order of button-range versus protocol type (see patch #345)
-change make check makefile-rule to use test-drivers for charclass and wcwidth
data.
-quiet did not find a usable xxx TrueType font warnings by making fontWarnings
apply to these messages (report by Jim Rees).
-improve reinitialization of parameter list (report/testcase by James Holderness).
-temporarily set numeric locale category to "C" when formatting SVG or XHTML
screendumps, to make the radix separator used in RGB values consistent
(adapted from patch by George Kouryachy).
-add resource forceXftHeight to control whether workaround from Debian #880407
is used.
-apply updated ascent/descent in workaround from Debian #880407 to fix a 1-pixel
gap in built-in vertical lines (report/testcase by Stefan Assmann).
-improve round-off of scaling for built-in line-drawing (prompted by discussion
with Stefan Assmann).
-adjust fonts in svg-icon files to accommodate reduced functionality of new pango
(report/analysis by YOKOTA Hiroshi).
-improve configure check for X Toolkit library.
-correct Y-coordinate transformation in ClearCurBackground, overlooked in changes
for patch #334 (report/analysis by Chuck Silvers).
-remove --vendor option from test-packages' install of desktop files; the feature
is badly broken in gnome-shell.
-modify uxterm to make it possible to select nonstandard locale C.UTF-8, e.g, if
the user's locale is set to C (Debian #940626).
-re-save/tweak .svg icon-files to work around breakage in toolset since the
files were created in patch #283.

Patch #353 - 2020/02/01
-amend change in patch #352 for button-events to fix a case where some followup
events were not processed soon enough (report/patch by Jimmy Aguilar Mena).
-handle MappingNotify X event, to improve recovery when switching keyboard
configurations using xkbcomp (prompted by discussion with Frank Mosch, Debian
#661295). There is more work needed here, possibly in the X libraries.
improve discussion of mouse-mode in ctlseqs.ms (suggested by Igor van den Hoven).
-further improve checks for Xft max-advance-width to take into account fonts
which use two cells for ambiguous width characters. Also improve the time used
for these checks (reports by Yuri Pankov, Frank Mosch).
-fix a few spelling errors reported by codespell (report by Jens Schleusener).
-modify run-tic.sh to prefer development version of ncurses since changes to
terminfo file in patch #345 rely upon bug-fixes in ncurses (prompted by discussion
with Will Senn).

Patch #352 - 2020/01/16
-adjust fontsize data to handle a minor inconsistency from recent Xft versions
(Debian #880407, adapted from patch by Vincent Lefï×re).
-add a table to the manual page description of forceBoxChars to alert the reader
to the special characters aside from line-drawing which are drawn directly
when this resource is set (Debian #931305).
-improve checkXft logic which attempts to detect fonts whose max-advance-width
is inconsistent with the actual glyph widths. For some fonts, it is necessary to
check additional characters (report/analysis by Jan Engelhardt).
-improve configure-checks for X headers and libraries on recent MacOS, which has
moved those files under /usr/X11.
-improve portability of iconify/deiconify feature by taking into account some
window managers which manipulate the EWMH _NET_WM_STATE property,
adding/removing _NET_WM_STATE_HIDDEN rather than actually minimizing the window
(pon with Jg Breitbart).
-improve workaround from patch #287 fo postponing the extra request for minimizing the window to the key by itself can generate button-events
(report/analysis by Maal page (patch by Larry Hynes).
-add definitions in xterm_io.h updated autoconf macros
-update config.guess

Patch #351 - 2019-add -report-icons to help-message.
-improved autoconf macros:
update config.guess, config.sub
-correct status in XTGETXRES resize from the struct-notify event handler to prevent
-recursion(report by Stefan Assmann).
-improve the note on the xterm-rep  not ignore zero'd/blank cells.
-align terminfo file with ncurs-add vttests/modify-keys.pl script to illustrate the modifyOtheines resource default value
(Branden Robinson, Debian #913815).n is complete.
-add a control sequence which, like tcap-query, in the imake configuration as they
would be by default via the  Sven Joachim).
-build-fix for the case when configure --enableSven Joachim).
-fix a few minor bugs found with Coverity.
-add the --disable-doublechars configure option (report by Brian Lin-document window properties in the manual page.
-improve title-le-string encoded in UTF-8, check if that is the case, and if iencoding (FreeBSD #240393).
-Make sameName resource work for thn UTF-8 is active.
-reorganize text-drawing to make it possiblen switching from 132 to 80 columns.
-improve font-warning messafont-warning messages, to accommodate broken X configurations.
ont (Redhat #1679790). That relies upon the :unscaled
property configurations.
-set a graphic-context for border when double-bg when switching to reverse-video.
-build-fix for --disable-zic(report by Scott Bertilson).

Patch #348 - 2019/07/22
-update wos types, to improve compiler-warnings.
-ensure that when resetgins), and DECSTR.
-corrected order of reset/move when setting ing margins, rather than only when the mode is changed
(report fering configuration.
-correct logic for filtering scrollbar-updescription of 1006 and 1005 mouse modes, to avoid implying thawere xterm extensions
rather than VT100/VT220 terminal featuresnse (suggested by Thomas Wolff).
-fix a typo, improve wording iolff).
-fix off-by-one in VT52 graphics character mapping (patcarnings when building with imake.
-update config.sub

Patch #34esource to control the maximum rate of screen updates
(report bed by report by Martin Hostettler).
-correct off-by-one in paraestcase by Thomas Wolff).
-add resource buffered to allow enablthat the needSwap flag is set after drawing TrueType text
-corr video attributes. The attribute to use is
in the left-half (reomas Wolff).
-reset flags including wraparound and reverse-wrap(report by Thomas Wolff).
-ensure that italic font is turned ofth
binary-search table generated using updated uniset (report b name comparisons work when active-icon is enabled,
since CSI13e since 2008 (see patch #238).

Patch #346 - 2019/05/27
.update#862042).
-account for internalBorder in useBorderClipping (repcharacters in wcwidth.c based on Unicode 12.1.0
(prompted by diort by Bram Moolenaar).
-fix a sign-extension when reporting of run-tic.sh for HPUX, whose mktemp prints the name of a temporalation is VT420 (suggested by Thomas Wolff).
-modify treatment discussion
with Ben Wong, lsix #20).
-modify button-handling tor after
a direct-color to be ignored.
-add resource useBorderClRobert Ross).
-improve logic for displaying xterm's built-in li, as well as to
demonstrate push/pop of the various color typesof indexed-colors, contrary to documentation.
-reduce buffer-fl for OSC 5 use the 5 in the response; formerly
it was mapped to request.
-update tables of combining and unknown-width charact-add vttests/query-dynamic.pl
-modify vttests/query-color.pl towhether to use OSC 5 rather than OSC 4.
-modify cursor coloringmouse responses from patch #342 changes; the legacy
protocol suy.pl to demonstrate batch queries with -q option.
-increase reslation of predefined symbols
-check for updated X Toolkit, whicrt by Emile LeBlanc).
-documentation errata (patch by Larry Hynfull-screen mode.
-window's border-size was incorrectly added t

Revision 1.83 / (download) - annotate - [select for diffs], Fri Feb 15 20:00:01 2019 UTC (5 years, 1 month ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2020Q2-base, pkgsrc-2020Q2, pkgsrc-2020Q1-base, pkgsrc-2020Q1, pkgsrc-2019Q4-base, pkgsrc-2019Q4, pkgsrc-2019Q3-base, pkgsrc-2019Q3, pkgsrc-2019Q2-base, pkgsrc-2019Q2, pkgsrc-2019Q1-base, pkgsrc-2019Q1
Changes since 1.82: +5 -5 lines
Diff to previous 1.82 (colored) to selected 1.31 (colored)

xterm: update to 344.

Provided by Thomas Dickey in private email.

                            Patch #344 - 2019/02/12

     * add  ASCII  escape to default for disallowedPasteControls (prompted
       by discussion with Martin Hostettler).
     * fix typo in ctlseqs.ms (Robert Ross).
     * implement  DEC  Cyrillic  NRCS  (based  on  screenshots  of  vttest
       provided by Markus Schmidt).
     * correct control returning sixel geometry maximum versus actual size
       (patch by Ben Wong).
     * improve  manual  page  for  resize  to clarify that resize does not
       execute   the   shell  commands  which  it  generates  for  setting
       environment variables.
     * improve  memory-management  for  parser, to handle response strings
       that  might  occur  with  ENQ  or when SRM mode is active (patch by
       Martin Hostettler).
     * change  Comment  text  in  uxterm's  desktop  file to work around a
       limitation   of   GNOME's   GIO   application   (issue  #940).  The
       documentation reads:

     Searches desktop files for ones that match search_string.
     The  return value is an array of strvs. Each strv contains a list of
     applications  that  matched  search_string  with an equal score. The
     outer  list  is  sorted by score so that the first strv contains the
     best-matching applications, and so on. The algorithm for determining
     matches is undefined and may change at any time.
     * a  check  of zIconBeep resource was removed in double-buffer fix in
       patch  #334. That is used to decide whether to handle struct-notify
       events.  When  xterm does handle the events, it may negotiate a new
       window-size  with the window manager. In that case, the limitResize
       resource  setting  limited  the new window-size to the screen-size.
       Amended  that  by  eliminating the limit for this special case when
       double-buffer  is configured, and restoring the check for zIconBeep
       when double-buffer is not configured (Debian #919475).
     * disallow  recursion  which  could  happen  if a user configures the
       answerbackString  resource  with  the ENQ code and experiments with
       that code when SRM is enabled (report by by Martin Hostettler).
     * add remaining credits in COPYING file.
     * modify  run-tic.sh  to  check  if  it  is using an older version of
       ncurses  which does not support large terminal descriptions, and if
       so,  remove  a  non-essential  feature to keep within the 4096-byte
       legacy limit.

Revision 1.82 / (download) - annotate - [select for diffs], Tue Jul 4 08:52:38 2017 UTC (6 years, 8 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2018Q4-base, pkgsrc-2018Q4, pkgsrc-2018Q3-base, pkgsrc-2018Q3, pkgsrc-2018Q2-base, pkgsrc-2018Q2, pkgsrc-2018Q1-base, pkgsrc-2018Q1, pkgsrc-2017Q4-base, pkgsrc-2017Q4, pkgsrc-2017Q3-base, pkgsrc-2017Q3
Changes since 1.81: +5 -5 lines
Diff to previous 1.81 (colored) to selected 1.31 (colored)

Updated xterm to 330.

Patch #330 - 2017/06/20

  ãàupdates for ReGIS (Ross Combs):
      remove redundant text command error check which broke T(B) and T(E).
      retain the loading alphabet number across multiple ×­ãàcommands.
      ãöadd S(T) delay handler.
      fix some color handling error messages.
      add stubbed-out macrograph handling.
      use fragment_remaining() and fragment_consumed() instead of manually
        checking position / length in various places.
      rename some local variables in string / extent / option parsing
      wrap some long lines.
      move macrograph command handling out of the top-level.
  add a summary of the italic fonts loaded to -report-fonts option.
  modify the font-lookup for italics to allow for i-ãàif no match is found
    with slant ãào-ãà(prompted by patch by Ben Wong).
  ãàchange default values for mkSamplePass and mkSampleSize to reflect
    generally-improved locale support in various operating systems (FreeBSD #
    219800).
  modify wcwidth.c to return -1 for non-Unicode values, and adjust a couple
    of blocks to better match assumptions about ambiguous-width characters in
    other implementations. Also modify wcwidth.c to support configurable
    soft-hyphen, so there is no drawback to using this version rather than a
    system wcwidth.
  amend change made in patch #328 for cursor-visibility to handle case where
    an application is updating the reverse-video state (FreeBSD #219800).
  update tables of combining and ambiguous-width characters in wcwidth.c
    based on Unicode 10.0.0.
  build-fix for --enable-sixel-graphics without --enable-regis-graphics
    (reports by Sven Joachim, FreeBSD #219945).

Revision 1.81 / (download) - annotate - [select for diffs], Mon Jun 19 20:24:37 2017 UTC (6 years, 9 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2017Q2-base, pkgsrc-2017Q2
Changes since 1.80: +5 -5 lines
Diff to previous 1.80 (colored) to selected 1.31 (colored)

Updated xterm to 329.

                            Patch #329 - 2017/06/12

     * add  control  sequences  for  reading  the Sixel and ReGIS graphics
       sizes (suggested by Ben Wong).
     * add  a  workaround  for  wcwidth  returning -1 for characters which
       should have been printable (FreeBSD #219800).
     * fix a bug in font initialization from patch #328 (FreeBSD #219800).
     * fix  a special case in HideCursor which assigned a bold font to the
       slot  used  for  normal  font  in changes for italics in patch #307
       (Debian #858304).
     * updates for ReGIS (Ross Combs):
          + Strings  specified  with  no  command  are used as "comments".
            Print these in the log when tracing.
          + Catch  attempts  to use "alternate display" mode (AKA "blink")
            from the GIGI, but do not implement it.
          + The  T(M)  command  should only multiply the height by 10, not
            20.
          + Make  the  S(E)  command reset more state than just the screen
            contents.
          + Remove two rotation variables which were only being printed.
          + Numerous minor fixes and comment updates in the R command.
          + Unknown R command option names trigger an empty response.
          + Fix  the  output  position after printing rotated text (it was
            missing the the sign before).
          + Fix  the  position  change  with pixelvectors and rotated text
            (the rotation transform was not being applied).
          + Update  the TODO list and remove a verification FIXME (slanted
            text positioning is correct as is).
          + Emulate  the  approximately  1.4x  enlargement  for text which
            isn't rotated at right angles.
          + Only  update the color planes specified in the plane mask (the
            W command's F option).
     * fix  a  bug  introduced by the changes to font information in patch
       #328.   When  processing  the  "checkfont"  option  of  the  locale
       resource,  the  program  referred  to the request data, to an array
       which  was  only  allocated  in  the new/result widget (report by H
       Merijn Brand).
     * fix  a  missing assignment initialization to make the utf8 resource
       control  whether  escape sequences to enable/disable UTF-8 mode are
       allowed.

Revision 1.80 / (download) - annotate - [select for diffs], Wed Jun 14 12:20:03 2017 UTC (6 years, 9 months ago) by wiz
Branch: MAIN
Changes since 1.79: +5 -5 lines
Diff to previous 1.79 (colored) to selected 1.31 (colored)

Updated xterm to 328.

                            Patch #328 - 2017/06/01

     * revise parser for charClass resource, making these improvements:
          + accept octal and hexadecimal values
          + allow embedded whitespace
          + allow  the  class  after  colon to be optional, e.g., to clear
            class settings for a range of characters.
     * add command-line option -report-charclass.
     * fix most lintian warnings about test-package
     * add eraseSavedLines resource.
     * document DECSED 3 in ctlseqs.ms (report by Ben Longmans).
     * improve   integration  between  configure-events  and  updates  for
       reported screensize, in particular when switching between vt100 and
       tek4014 modes.
     * modify  selection-highlighting  of  reverse-video text to keep that
       distinct,   e.g.,   by   reversing  the  selection  foreground  and
       background  colors as one would expect. This fixes a "useless" case
       in the description of highlightColorMode.
     * improve fix for Debian #759734, addressing a case where non-colored
       cursor would be invisible against reverse-video (see patch #311).
     * updates for ReGIS (Ross Combs):
          + the  "H"  option of the "T" command should multiply by 10, not
            20.
          + display unknown glyphs as a solid block.
          + given a succession of text-direction options, use the last.
          + fix  the  direction  of  ReGIS  slanted  text so that negative
            values produce oblique output .
          + fix  the ReGIS text direction option to only rotate characters
            when no following size option is used.
     * update  terminfo  to better match corresponding entries in ncurses,
       e.g.,   u8  pattern  to  match  the  VT220,  VT420,  etc.,  primary
       responses, as well as adding smxx and rmxx.
     * fixes from Jörg Sommer:
          + corrected  a trace-message regarding maximum graphics-size; it
            used  the  similar  ReGIS  maximum  size  which  might  not be
            configured.
          + in  do_select_regex,  clear selection if there is no match. If
            the  regex  does  not  match  anything  around the cursor, the
            selection  returned must be empty, otherwise the whole line is
            treated   as   a  match.  This  way  the  command  defined  by
            exec-selectable will not be executed if there is no match.
          + modify  limit  in  do_select_regex to include the character at
            the  cursor  in  the match, making it easier to type something
            and then hit the key to trigger exec-selectable.
          + If exec-selectable or insert-selection is triggered by a mouse
            button  click,  the  position  of  the mouse pointer should be
            used.  This  makes  it  easier  to address any position on the
            window  and  it  makes it possible to use the mouse, e.g., for
            applications such as mutt where you cannot move the cursor.
     * modify  DECRC  to  save/restore  xterm's  last-column  flag used to
       control   wrapping   behavior   rather   than  manipulating  DECAWM
       (report/analysis by Mattias Engdegård).
     * add  configure option --enable-terminfo-env to use the value set by
       --with-own-terminfo  for  the  $TERMINFO environment variable. That
       variable  was  set  automatically  for HPUX, but would be useful in
       other systems, e.g., for Solaris (request by Jeff Wieland).
     * fix a race condition when setting up a signal handler to timeout if
       opening /dev/tty hangs (patch by Tobias Stoeckmann).
     * review/cleanup  resources which were not in the manual page (report
       by Maxwell Anselm):
          + add manual page description as needed.
          + drop resource name for menuBar, as unnecessary.
          + modify  fallback numeric value for regisScreenSize resource to
            match that for maxGraphicSize.
     * updated    configure    macros    CF_ADD_CFLAGS,   CF_CC_ENV_FLAGS,
       CF_GNU_SOURCE,   CF_MATH_LIB,   and   CF_XOPEN_SOURCE   from  other
       program-changes.
     * update config.guess, config.sub
     * change  ×Îaximum screensizeãàassumed by resize to 9999x9999, to
       accommodate people using the Unreadable font.
     * drop  Utility from default value of --with-desktop-category (Debian
       #780176).
     * widen  the  configure  script  pattern  used  for  finding  related
       ".desktop" files, including ãà×µerminalãà     * several minor improvements to font utility functions:
          + provide  for  later  modification  to  implement  font-sets by
            parsing the font resources as comma-separated lists.
          + parse -fn and -fa similarly, using ãà×Ù:ãàand ãà×Ùft:ãàprefixes
            for  font  name/family strings to distinguish between XLFD and
            Xft font specifications.
          + use loops to iterate over font classes
          + use  getters/setters  for  font  data  to  allow for on-demand
            lookups.
          + make  the debugging trace for missing glyph less verbose since
            that interferes with the -report-fonts option.
          + refactor  xtermLoadFont  to make it clearer how some fonts are
            derived from others, e.g., bold, wide.
          + make  the  triggering  and  suppressing  of font-warnings more
            consistent by storing the last state in the widget.
          + reduce font-warnings by checking for repeated warnings.
     * add vttests/query-status.pl
     * add vttests/closest-rgb
     * add  special  case for displaying soft-hyphen if it happens to fall
       at  the  right  margin,  and omitting similar case such as the BIDI
       markers,   where  a  zero-width  character  is  neither  a  control
       character nor a combining character (Debian #844325).
     * modify  logic  for OSC 52, manipulate selection data, to update the
       selection-time  to  include  the  latest  X events. This fixes some
       cases  where the selection was invalid, e.g., after an event due to
       focus-follows-mouse (report/testcase by Stephane Chauveau).
     * revise  macro  CastMallocN  as new macro TextAlloc to make explicit
       use of sizeof(char) (prompted by patch by Cade Foster).
     * add ãà×®ouse Opsãàmenu entry and related resources to allow runtime
       disabling/enabling   of   the   mouse   protocol  escape  sequences
       (discussion with Bob Proulx).
     * improve  discussion  of mouse actions versus protocol in the manual
       (discussion with Bob Proulx).
     * improve discussion of environment variables in the manual, pointing
       out  where  some  features (such as termcap and the System5 COLUMNS
       and  LINES  variables)  are  used  rarely, mainly to support legacy
       applications.
     * add  examples  of  translations  resource for select/paste, and for
       font-size changes to the manual.
     * minor  reordering  of  some  entries  in ctlseqs.ms for consistency
       (report by Arran Ubels).
     * add  -s  option  to  256colors2.pl and 88colors2.pl, to demonstrate
       modifying the ãà×Ôystemãàcolors 0ãà5.
     * omit  XFT_SPACING  property  from  call to XftPatternBuild, to work
       around  a  bug  in  fontconfig  for handling Google Go fonts, whose
       names  sort  in  an  order  not expected by fontconfig, causing the
       request for a monospaced font to return italics, e.g.,

$ fc-match 'Go Mono:spacing=monospace'
Go-Mono-Italic.ttf: "Go Mono" "Italic"
(report by Giacomo Boffi on Stackoverflow).


     * modify minstall.in to improve a workaround added to the manual page
       in  patch #182 to avoid having the C preprocessor used in the imake
       configuration  strip  out  the  comments  in  the character classes
       section (reports by Ted Unangst, Anthony J Bentley).

Revision 1.79 / (download) - annotate - [select for diffs], Sun Oct 9 21:05:16 2016 UTC (7 years, 5 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2017Q1-base, pkgsrc-2017Q1, pkgsrc-2016Q4-base, pkgsrc-2016Q4
Changes since 1.78: +5 -5 lines
Diff to previous 1.78 (colored) to selected 1.31 (colored)

Updated xterm to 327.

                            Patch #327 - 2016/10/07

     * add  a  check in the function which handles end-of-line wrapping to
       ensure   that   C1   controls   are   allocated   one  column  when
       allowC1Printable is set (Debian #738794).
     * use  consistent  error-checking  after  strtol  calls, fixes a case
       where  a  query  with  OSC 6 did not ensure there was a valid color
       number (report by Alex Smith).
     * add -baudrate option, for testing ncurses.
     * always  generate  the CASE_xxx symbols in VTparse.h and Tekparse.h,
       as  part of a change to improve debug-logging. This makes the build
       always depend upon awk.
     * modify   allowC1Printable   to  disallow  codes  160-254  as  being
       equivalent  to  codes  32-126 when parsing escape sequences (Debian
       #839220).
     * amend  fix from patch #326 for TrueType fonts to exclude the hidden
       character used for double-width cells (report by Grady Martin).
     * fix a typo in ctlseqs.ms

Revision 1.78 / (download) - annotate - [select for diffs], Mon Oct 3 12:07:34 2016 UTC (7 years, 5 months ago) by wiz
Branch: MAIN
Changes since 1.77: +5 -5 lines
Diff to previous 1.77 (colored) to selected 1.31 (colored)

Updated xterm to 326.

Patch #326 - 2016/09/25

    updated appdata file (report by Richard Hughes).
    improve discussion of the different terminal emulations provided by xterm in the manual page.
    add examples of setting the icon title with/without the window title in the manual (Debian #833984).
    correct a limit-check when using a numeric value for extended Booleans e.g., *fullscreen:3 rather than a name such as *fullscreen:never.
    add action allow-bold-fonts
    improved formatting fixes for manual page, using script to find mismatches in spelling of resources, actions and menu entries.
    improve documentation of logging resources.
    fix a special case of flickering cursor by adding GraphicsExpose to the list of event types that should not trigger making the mouse cursor visible (patch by Joe Peterson).
    correct initialization of line-drawing in VT52-mode, overlooked in changes for patch #297 (report/patch by Ben Wiley Sittler).
    minor clarification of form-feed versus line-feed in ctlseqs.ms (suggested by David Kemper).
    amend fix for Debian #738794 to restore a check for missing characters which are not combining characters. Also fill in a corresponding special case for TrueType fonts (Debian #827905).

Revision 1.77 / (download) - annotate - [select for diffs], Sun Jun 12 14:40:27 2016 UTC (7 years, 9 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2016Q3-base, pkgsrc-2016Q3, pkgsrc-2016Q2-base, pkgsrc-2016Q2
Changes since 1.76: +5 -6 lines
Diff to previous 1.76 (colored) to selected 1.31 (colored)

Updated xterm to 325.

Patch #325 - 2016/06/05

    improve manual page discussion of function keys (discussion with Ross Combs).
    further improve fix for Debian #545220 in patch #248, to avoid conflict with combining characters (Debian #738794).
    improve -hold option to avoid 100% CPU usage with NetBSD after closing the shell, which makes subsequent checks for X input events fail (prompted by patch by Pierre Pronchery).
    review #ifdef statements, listed those which do not have a configure option in xtermcfg.hin.
    fixed one case where the menu sensistivity for Print-All Immediately and Print-All on Error was not properly ifdef'd.
    modify terminfo entries for 16-, 88- and 256-color to reset palette with rs1 capability.
    accept legacy value of -kt as synonym for the oldXtermFKeys resource, and extend the full-reset logic to use the keyboard type set via -kt.
    modify ioctl calls for I_PUSH to first check if the module has been added, using I_FIND. This is needed for newer Solaris libraries with c11 support (adapted from patch by Alan Coopersmith).
    add check in getXtermCombining to ensure that combining characters were allocated (report by Tor Andersson).
    add configure option --without-xinerama to allow suppressing the extension (Gentoo #580936).
    update keysym2ucs.c based on Unicode 9.0
    fixed most cppcheck --enable=all warnings, including for style (prompted by report by David Binderman). There was one bug-fix:
        RGB least-squares computation in allocateClosestRGB used only one ordinate
    add cppcheck to lint-like programs in configure script and makefile.
    updates for SIXEL and ReGIS (Ross Combs):
        Fixes some const correctness issues and points out an array lifetime issue
        Sixel drawing should still happen after an error if some commands have been processed
        Tiny steps toward reporting ReGIS input

Revision 1.76 / (download) - annotate - [select for diffs], Thu May 26 14:57:24 2016 UTC (7 years, 10 months ago) by khorben
Branch: MAIN
Changes since 1.75: +2 -1 lines
Diff to previous 1.75 (colored) to selected 1.31 (colored)

Add a patch to avoid consuming 100% CPU in hold mode

Without this patch, this happens every time the child exits. To reproduce,
simply run "xterm -hold -e true".

Submitted upstream on March 29th 2016.

Bumps PKGREVISION.

Revision 1.75 / (download) - annotate - [select for diffs], Fri Apr 8 14:43:25 2016 UTC (7 years, 11 months ago) by wiz
Branch: MAIN
Changes since 1.74: +5 -5 lines
Diff to previous 1.74 (colored) to selected 1.31 (colored)

Update xterm to 324:

Patch #324 - 2016/03/10

    updated configure macro CF_LD_RPATH_OPT from ncurses changes.
    provide alternate fix for Juha Nurmela's report by turning on POSIX signals if _POSIX_C_SOURCE is at least one. This is done to improve the behavior if a direct child process receives a STOP signal.
    revert change to CF_POSIX_C_SOURCE from patch #323 (reports by Ashish Shukla, Christian Weisgerber).

Patch #323 - 2016/03/07

    updated appdata and desktop files to add keywords (report by Richard Hughes).
    modify configure macro CF_POSIX_C_SOURCE to accommodate some systems, e.g., FreeBSD, which have separated their implementation specific preprocessor symbols from the POSIX ones, requiring both to be defined (report by Juha Nurmela).
    change the directory to the current working dir of the child process in exec-formatted and exec-selectable actions (patch by Alexander Pohoyda).
    correct typo in xterm.man (patch by Larry Hynes).
    correct typo in ctlseqs.ms (report by Shriramana Sharma).
    add feature to support XHTML and SVG screen dumps (patch by Jens Schweikhardt).
    correct response to DECRQSS when terminal id is less than 400 (patch by Iwamoto Kouichi).

Revision 1.74 / (download) - annotate - [select for diffs], Sun Jan 3 11:18:30 2016 UTC (8 years, 2 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2016Q1-base, pkgsrc-2016Q1
Changes since 1.73: +5 -5 lines
Diff to previous 1.73 (colored) to selected 1.31 (colored)

Update xterm to 322:

Patch #322 - 2016/01/02

    fix regression due to incorrect fix for compiler warning when allocating storage for /etc/shells (reports by Ashish Shukla, Debian #809646).

Patch #321 - 2015/12/31

    add resource keepClipboard, escape sequence and action keep-clipboard.
    add optional feature to capture text copied to clipboard at the time of copying rather than at the time the clipboard contents are requested for pasting (patch by Milan Mehner).
    improve a special case where the -e option was used to pass a single-quoted command via luit, by wrapping it in a ãà×Ôh -cãà(report by Keith Hedger).
    minor fix for type-cleanliness when allocating storage for /etc/shells (Tobias Stoeckmann).
    fix a typo in manual page (Dan Church).
    fix minor file-descriptor leak; after calling openpty, the slave's file descriptor is not needed (report by Juha Nurmela).
    editorial change to ctlseqs.ms (report by David Gomboc).
    minor updates for autoconf macros.
    update config.guess, config.sub

Revision 1.73 / (download) - annotate - [select for diffs], Wed Nov 4 03:29:12 2015 UTC (8 years, 4 months ago) by agc
Branch: MAIN
CVS Tags: pkgsrc-2015Q4-base, pkgsrc-2015Q4
Changes since 1.72: +2 -1 lines
Diff to previous 1.72 (colored) to selected 1.31 (colored)

Add SHA512 digests for distfiles for x11 category

Problems found locating distfiles:
        Package modular-xorg-server: missing distfile xorg-server-1.17.4.tar.bz2
        Package py-qt4: missing distfile PyQt-mac-gpl-4.11.1.tar.gz
        Package xservers: missing distfile xservers-3.3.6.5.tar.bz2
        Package xview-clients: missing distfile xview3.2p1-X11R6.tar.gz
        Package xview-lib: missing distfile xview3.2p1-X11R6.tar.gz

Otherwise, existing SHA1 digests verified and found to be the same on
the machine holding the existing distfiles (morden).  All existing
SHA1 digests retained for now as an audit trail.

Revision 1.72 / (download) - annotate - [select for diffs], Sun Aug 30 14:32:37 2015 UTC (8 years, 7 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2015Q3-base, pkgsrc-2015Q3
Changes since 1.71: +4 -4 lines
Diff to previous 1.71 (colored) to selected 1.31 (colored)

Update to 320:

Patch #320 - 2015/08/28

correct documentation for %t format (report by Martin Tournoij).

add %R for consistency to exec-formatted() and insert-formatted()
actions.

add %r format to exec-formatted() and insert-formatted() actions
(patch by Martin Tournoij).

Amend fix for Debian #794201 (report forwarded from Christian
Jachmann by Emanuel Haupt, Debian #797008).

Revision 1.71 / (download) - annotate - [select for diffs], Sun Aug 23 14:06:38 2015 UTC (8 years, 7 months ago) by wiz
Branch: MAIN
Changes since 1.70: +4 -4 lines
Diff to previous 1.70 (colored) to selected 1.31 (colored)

Update to 319:

Patch #319 - 2015/08/19

    add a section to ctlseqs.ms discussing control sequences and
    ECMA-48, to explain why C1 controls do not occur in the decoded
    characters from UTF-8 byte streams (prompted by discussion with
    Poul-Henning Kamp).
    modify check for cursor-theme from patch #301 to also check if
    the resource Xcursor.theme is set to a nonempty value before
    fallback to xterm's own dummy theme (request by Robert Kloefkorn).
    explain in ctlseqs.ms that some keys which normally send
    SS3-prefixes are changed to CSI-prefixes if key-modifiers are
    passed as parameters (report by George Nachman).
    correct double-free of font information when multiple problems
    are found, particularly for the wide fonts loaded via the -wc
    option (report/testcase by Nelson Beebe).
    make configure option --enable-builtin-xpms actually work
    (report by William Bulley).
    correct combination of -ls and -e options for utempter
    configuration (Debian #794201).
    NetBSD build-fix for OPT_RENDERFONT versus OPT_SHIFT_FONTS
    (patch by Matthew Green, forwarded by Thomas Klausner).
    fix a few minor bugs found with Coverity.
    update pixelvector handling (patch by Ross Combs):
	split pixel-based and coord-based functions with common
	parts factored out to a "raw" function
	add a "step" variant which loads a single PV digit
    make the graphic dirty upon resize or clear, fixing some missing
    refreshes (patch by Ross Combs)
    fixes scrolling to use user coordinates and move in the correct
    direction (patch by Ross Combs)
    several fixes/improvements for ReGIS whitespace and page-handling
    (patch by Ross Combs).

Revision 1.70 / (download) - annotate - [select for diffs], Sun Apr 19 18:15:07 2015 UTC (8 years, 11 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2015Q2-base, pkgsrc-2015Q2
Changes since 1.69: +4 -4 lines
Diff to previous 1.69 (colored) to selected 1.31 (colored)

Update to 318:

Patch #318 - 2015/04/12

* rename new(er) configure option --enable-initial-erase to
  --enable-pty-erase, since that conflicted with an existing option
  (report by Jens Schweikhardt).
* fix cut/paste error in --with-builtin-xpms configure option
  (reports by Jens Schweikhardt, Ross Combs).
* fix minor formatting issue in xterm manual (report by Jens
  Schweikhardt).
* eliminate unnecessary "#(vi" markers in autoconf macros by using
  "(" to begin case-statement cases (suggested by Jens Schweikhardt).
* minor fixes to improve const usage (Ross Combs).

Revision 1.69 / (download) - annotate - [select for diffs], Thu Apr 2 22:37:01 2015 UTC (8 years, 11 months ago) by wiz
Branch: MAIN
Changes since 1.68: +4 -4 lines
Diff to previous 1.68 (colored) to selected 1.31 (colored)

Update to 317:

  Patch #317 - 2015/03/27


    adapt example for exec-formatted from
    Lukas Zapletal's webpage to manual (Debian
    #780008).

    add a short usage section to the xterm manual, including
    notes on setting the window title (Debian #742477).

    revise a change made to ICH in patch #314 to address limit-checks
    (reports/testcases by Zoltán Keri and Joe
    Peterson, also reported by Christian Weisgerber).

Revision 1.68 / (download) - annotate - [select for diffs], Mon Mar 9 08:17:45 2015 UTC (9 years ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2015Q1-base, pkgsrc-2015Q1
Changes since 1.67: +4 -4 lines
Diff to previous 1.67 (colored) to selected 1.31 (colored)

Update to 316:

  Patch #316 - 2015/03/07


    revert change to make DCH honor top/bottom scrolling margins.
    For the record, both the VT420 and VT520 reference manuals
    incorrectly state that "DCH has no effect outside the scrolling
    margins."

    fix regression in DCH introduced in adjustment for limit-check
    in patch #315 (report/testcase by Zoltan Keri, also reported
    by Christian Weisgerber).

    correct default value for configure option --enable-initial-erase;
    it should be "False", but in patch #315 it was "Maybe", which
    differed from default set in patch #192.


  Patch #315 - 2015/03/02


    change default for --enable-narrowproto for Cygwin to "no" to
    better match contemporary configurations (report by Jens
    Schweikhardt, prompted by <a href=
    "http://stackoverflow.com/questions/28137618/what-is-a-narrow-prototype-and-why-would-i-need-one/28334574?noredirect=1#comment45022128_28334574">
    discussion).

    provide OSC 106 as an alternative to OSC 6, avoiding conflict
    with one of Terminal.app's undocumented escape sequences (report
    by Egmont Koblinger).

    fix an off-by-one in comparison when autowrap and left/right
    margins are combined (report by George Nachman).

    modify DECBI and DECFI to work outside the left/right margins,
    since the vague VT520 reference manual could support that
    interpretation (suggested by George Nachman).

    correct response for DECSCUSR in DECRQSS (report/analysis by
    George Nachman).

    add DECSLRM to list for DECRQSS in ctlseqs.ms (report by George
    Nachman).

    improve limit-checks versus assert's in the debugging version
    (reports by George Nachman).

    correct a problem with multiple writes to the right-margin when
    autowrap is turned off (report by George Nachman, also reported
    in Gnome #744819 by Ulf Magnusson).

    modify DCH to honor top/bottom and left/right margins (report
    by George Nachman).

    correct off-by-one in comparison so that DL honors left/right
    margins (report by George Nachman).

    correct logic of DECSCL, which always set 8-bit controls as a
    side-effect (report by George Nachman).

    correct loop limit for DECSED 1, when DECSCA is enabled (report
    by George Nachman).

    fix a entry in csi_table for "$", needed for CSI [ $ z (report
    by George Nachman).

    remove restriction from patch #279 changes on DECIC and DECDC
    to left-right mode (report by George Nachman).

    correct PID value returned in response to DECRQCRA (report/analysis
    by George Nachman).

    fix an ifdef'ing problem, where --disable-dec-locator would
    turn off logic needed for DECIC and DECDC (report by George
    Nachman).

    correct order of parameters in report for CSI 1 9 t, which
    gives the screensize in characters (report by George Nachman).

    add null pointer checks for a case in DECCRA where part of the
    target rectangle lies outside the screen limits (report by
    George Nachman).

    remove extra "6" for selective erase from DA1 response (report
    by George Nachman).

    support Xinerama screen specification in geometry parsing (patch
    by Nicolas George).

    add configure option --enable-initial-erase to set ptyInitialErase
    consistently with manpage, as well as adding a table in manpage
    to clarify the relationship between the resources related to
    the backarrow key (Debian #775952).

    add configure --enable-builtin-xpms to simplify compiling-in
    the icons introduced in <a href= "#xterm_284">patch #284
    (prompted by discussion with William Bulley).

    fix/improve autoconf macros:


	CF_WITH_APP_DEFAULTS, add paths for OSX

	CF_WITH_MAN2HTML, configure option "--with-man2html" provides
	"man2html" as alternative to groff's man/html conversion



    fix some minor issues in manpage (Jens Schweikhardt).

Revision 1.67 / (download) - annotate - [select for diffs], Fri Jan 2 15:56:28 2015 UTC (9 years, 2 months ago) by wiz
Branch: MAIN
Changes since 1.66: +4 -4 lines
Diff to previous 1.66 (colored) to selected 1.31 (colored)

Update to 314:

Patch #314 - 2014/12/28

    fix a minor bug in the termcap-specific version of resize when
    the lines or columns values are at the very end of an incomplete
    termcap string (prompted by coverity report).
    improve paste64 feature (report by Olaf Rogalsky)
    add configure option --with-man2html to allow an alternative
    to groff's man/html conversion.
    review and modify resource-settings which can be set via control
    sequences, etc.
    change passedPty from fixed-length to allocated to ensure that
    it is long enough to hold the -S option value (report by Ben
    Longbons).
    improve ReGIS graphics initialization (Ross Combs):

Revision 1.66 / (download) - annotate - [select for diffs], Mon Dec 1 08:59:00 2014 UTC (9 years, 3 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2014Q4-base, pkgsrc-2014Q4
Changes since 1.65: +4 -4 lines
Diff to previous 1.65 (colored) to selected 1.31 (colored)

Update to 313:
Various improvements to ReGIS graphics. Several minor fixes/improvements.

Revision 1.65 / (download) - annotate - [select for diffs], Sun Oct 5 14:41:21 2014 UTC (9 years, 5 months ago) by wiz
Branch: MAIN
Changes since 1.64: +4 -4 lines
Diff to previous 1.64 (colored) to selected 1.31 (colored)

Update to 312:
* undo change to do_select_regex() in patch #311 (reports by H Merijn
  Brand, Sven-Haegar Koch, Debian #762978).

Revision 1.64 / (download) - annotate - [select for diffs], Wed Oct 1 11:13:38 2014 UTC (9 years, 5 months ago) by wiz
Branch: MAIN
Changes since 1.63: +4 -4 lines
Diff to previous 1.63 (colored) to selected 1.31 (colored)

Update to 311:

Patch #311 - 2014/09/18

* mention  xclip  in manpage as an alternative workaround for copying
  clipboard  data, noting that selectToClipboard (from patch #209) is
  the recommended approach (Debian #639094).
* correct comparison in do_select_regex() of working position against
  starting column.
* correct    initialization   for   regular-expression   feature   of
  exec-selectable and insert-selectable actions (Debian #758633).
* modify  logic  for  exec-formatted  and insert-formatted actions to
  ensure  that  the  formatting  occurs  just  after the selection is
  received (Debian #758633).
* account  for  state  of  reverse-video  in  special  case of cursor
  coloring (Debian #759734).
* fix   a  sign-extension  problem  in  ReGIS  support,  as  well  as
  correcting  a case where ignored-characters were not really ignored
  (patch by Ross Combs).
* Enable the "Escape Sequence" menu entry when an OSC 50 is received.
  Also  disable  it  if the escape sequence specifies no font (Debian
  #760208).
* improve fix for the fontsel menu entry from patch #304: because the
  recovery  used  the  "current  font",  it  would  fail if one first
  selected a valid font, then an invalid font (Debian #760207).
* correct  an  off-by-one  in  limit-check for ScrnLimitChar function
  (report by Egmont Koblinger).

Revision 1.63 / (download) - annotate - [select for diffs], Tue Jul 29 11:39:53 2014 UTC (9 years, 8 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2014Q3-base, pkgsrc-2014Q3
Changes since 1.62: +4 -4 lines
Diff to previous 1.62 (colored) to selected 1.31 (colored)

Update to 310:

     * update package/freebsd files based on xterm #309 port.
     * adapt  changes  from  Minux3.2  which  ported  xterm #197, to allow
       building  on  that  platform  both using imake as well as using the
       configure script.
     * update precompose.c based on Unicode 7.0
     * build-fix for --with-Xaw3dxft option (report by Emanuel Haupt).

Revision 1.62 / (download) - annotate - [select for diffs], Tue Jul 22 09:46:20 2014 UTC (9 years, 8 months ago) by wiz
Branch: MAIN
Changes since 1.61: +4 -4 lines
Diff to previous 1.61 (colored) to selected 1.31 (colored)

Update to 309:

Patch #309 - 2014/07/13

     * modify  configure  script  to  work  around  debris left by XQuartz
       upgrades.
     * modify test-package scripts to enable ReGIS graphics.
     * improvements/additions  to ReGIS graphics, e.g., drawing text (Ross
       Comb).
     * add  --with-Xaw3dxft,  to  link  with Xaw 3d xft library (Stephen P
       Wall).
     * amend  reset  for cursor-shape to take into account cursorUnderline
       resource (report by Christian Weisgerber).
     * update config.guess, config.sub

Revision 1.61 / (download) - annotate - [select for diffs], Sat Jul 12 14:41:04 2014 UTC (9 years, 8 months ago) by wiz
Branch: MAIN
Changes since 1.60: +4 -4 lines
Diff to previous 1.60 (colored) to selected 1.31 (colored)

Update to 308. Changes for 308 unknown; I only know that they were posted
on freshcode, but that's dead.

Changes in 307:
This release fixes several display issues remaining from the changes
to support italics.

Revision 1.60 / (download) - annotate - [select for diffs], Mon Jun 9 12:31:45 2014 UTC (9 years, 9 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2014Q2-base, pkgsrc-2014Q2
Changes since 1.59: +4 -4 lines
Diff to previous 1.59 (colored) to selected 1.31 (colored)

Update to 306: fix incomplete implementation of new SGRs

Revision 1.59 / (download) - annotate - [select for diffs], Fri Jun 6 12:22:43 2014 UTC (9 years, 9 months ago) by wiz
Branch: MAIN
Changes since 1.58: +4 -4 lines
Diff to previous 1.58 (colored) to selected 1.31 (colored)

Update to 305:

This release reviewed/improved features reset on "hard reset" and
implemented four SGRs, for completeness. There were several other
minor fixes/improvements.

Revision 1.58 / (download) - annotate - [select for diffs], Sun May 4 16:48:36 2014 UTC (9 years, 10 months ago) by wiz
Branch: MAIN
Changes since 1.57: +4 -4 lines
Diff to previous 1.57 (colored) to selected 1.31 (colored)

Update to 304:

This adds experimental support for ReGIS. There are also several
minor bugfixes and portability improvements.

Revision 1.57 / (download) - annotate - [select for diffs], Wed Mar 12 09:51:48 2014 UTC (10 years ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2014Q1-base, pkgsrc-2014Q1
Changes since 1.56: +4 -4 lines
Diff to previous 1.56 (colored) to selected 1.31 (colored)

Update to 303:

303:

This release fixes a regression in validation against /etc/shells
and adds a check for paths which match /etc/shells via a symbolic
link.

302:

This release fixes several minor bugs and adds a new command-line
option to show colors as they are allocated.

Revision 1.56 / (download) - annotate - [select for diffs], Sat Jan 25 10:52:11 2014 UTC (10 years, 2 months ago) by wiz
Branch: MAIN
Changes since 1.55: +4 -4 lines
Diff to previous 1.55 (colored) to selected 1.31 (colored)

Update to 301:
This release adds minor bugfixes and documentation improvements.

Revision 1.55 / (download) - annotate - [select for diffs], Fri Dec 6 13:36:48 2013 UTC (10 years, 3 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2013Q4-base, pkgsrc-2013Q4
Changes since 1.54: +4 -4 lines
Diff to previous 1.54 (colored) to selected 1.31 (colored)

Update to 300:

300: This release fixed a problem when running in XFCE4.

299: This release fixed an error in line drawing.

298: This release fixes several minor bugs and adds a new option
"-report-fonts" to show which fonts are actually loaded.

Revision 1.54 / (download) - annotate - [select for diffs], Thu Sep 12 12:59:39 2013 UTC (10 years, 6 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2013Q3-base, pkgsrc-2013Q3
Changes since 1.53: +4 -4 lines
Diff to previous 1.53 (colored) to selected 1.31 (colored)

Update to 297:

This release revises and extends the DEC NRCS (national replacement
character set) feature, adding several character sets and making
it usable in a UTF-8 environment. There are other fixes for a few
control sequences, improvements in font handling, and improvements
to configurability.

Revision 1.53 / (download) - annotate - [select for diffs], Thu Jul 11 11:44:07 2013 UTC (10 years, 8 months ago) by wiz
Branch: MAIN
Changes since 1.52: +1 -2 lines
Diff to previous 1.52 (colored) to selected 1.31 (colored)

Add option for toolbar mode.

Thomas E. Dickey says it has hard-to-fix layout issues and slows
the startup, so turn the option default off.

Bump PKGREVISION for the default change from on to off.

Revision 1.52 / (download) - annotate - [select for diffs], Thu Jul 11 09:37:01 2013 UTC (10 years, 8 months ago) by wiz
Branch: MAIN
Changes since 1.51: +4 -5 lines
Diff to previous 1.51 (colored) to selected 1.31 (colored)

Update to 296:

modify delimiter in configure macro used to add a library
after a given library to avoid confusion with -Wl
pass-through options to linker (NetBSD #48031).

fix quoting in expression used to trim extra libraries from
patch #295 changes (report by Thomas Klausner).

Revision 1.51 / (download) - annotate - [select for diffs], Wed Jul 10 09:11:04 2013 UTC (10 years, 8 months ago) by wiz
Branch: MAIN
Changes since 1.50: +2 -1 lines
Diff to previous 1.50 (colored) to selected 1.31 (colored)

Add patch from Thomas E. Dickey to address the build problems from
PR 48031 and PR 48035.

Revision 1.50 / (download) - annotate - [select for diffs], Mon Jul 8 08:39:10 2013 UTC (10 years, 8 months ago) by wiz
Branch: MAIN
Changes since 1.49: +4 -4 lines
Diff to previous 1.49 (colored) to selected 1.31 (colored)

Update to 295:
This release fixes a minor regression introduced by the --as-needed
loader option.

Revision 1.49 / (download) - annotate - [select for diffs], Sat Jul 6 23:18:54 2013 UTC (10 years, 8 months ago) by wiz
Branch: MAIN
Changes since 1.48: +4 -4 lines
Diff to previous 1.48 (colored) to selected 1.31 (colored)

Update to 294. Add desktopdb.mk.
Changes:
Experimental support for sixel graphics, a fix for a regression in
selection, and minor improvements to performance and configurability.

Revision 1.48 / (download) - annotate - [select for diffs], Tue May 28 21:09:53 2013 UTC (10 years, 10 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2013Q2-base, pkgsrc-2013Q2
Changes since 1.47: +4 -4 lines
Diff to previous 1.47 (colored) to selected 1.31 (colored)

Update to 293:

A regression in selection was fixed. A workaround was added for
icon misconfiguration in KDE 4.8 on OpenSuSE.

Revision 1.47 / (download) - annotate - [select for diffs], Sat Apr 27 07:35:08 2013 UTC (10 years, 11 months ago) by wiz
Branch: MAIN
Changes since 1.46: +4 -4 lines
Diff to previous 1.46 (colored) to selected 1.31 (colored)

Update to 292:

Improves configurability of openpty versus posix_openpt functions.
Adds a new feature PasteControls to enable control characters (other
than formatting) to be pasted. Several minor bugfixes.

Revision 1.46 / (download) - annotate - [select for diffs], Wed Feb 27 09:19:09 2013 UTC (11 years, 1 month ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2013Q1-base, pkgsrc-2013Q1
Changes since 1.45: +4 -4 lines
Diff to previous 1.45 (colored) to selected 1.31 (colored)

Update to 291:
This release fixes the special case of the #282 change for
"alternateScroll" to allow the wheel-mouse to work properly in the
scrollbar area.

Revision 1.45 / (download) - annotate - [select for diffs], Thu Feb 14 10:23:21 2013 UTC (11 years, 1 month ago) by wiz
Branch: MAIN
Changes since 1.44: +4 -4 lines
Diff to previous 1.44 (colored) to selected 1.31 (colored)

Update to 290:
Fixes an incomplete revert of a change in the previous patch, which
caused incorrect display in the scrollback area.

Revision 1.44 / (download) - annotate - [select for diffs], Mon Feb 11 12:01:27 2013 UTC (11 years, 1 month ago) by wiz
Branch: MAIN
Changes since 1.43: +4 -4 lines
Diff to previous 1.43 (colored) to selected 1.31 (colored)

Update to 289:
This fixes several minor bugs, and also updates the wide-character
width tables for Unicode 6.2.

Revision 1.43 / (download) - annotate - [select for diffs], Mon Jan 21 13:00:54 2013 UTC (11 years, 2 months ago) by wiz
Branch: MAIN
Changes since 1.42: +4 -4 lines
Diff to previous 1.42 (colored) to selected 1.31 (colored)

Update to 288:
This release fixes issues found by Coverity and adds other small
bugfixes and code cleanup.

Revision 1.42 / (download) - annotate - [select for diffs], Sat Dec 8 22:16:38 2012 UTC (11 years, 3 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2012Q4-base, pkgsrc-2012Q4
Changes since 1.41: +4 -4 lines
Diff to previous 1.41 (colored) to selected 1.31 (colored)

Update to 287:

Several small bugfixes/improvements. One is a fix for the -iconic
option broken in #282 when the icon pixmap is configured. The other
fixes are for older problems.

Revision 1.41 / (download) - annotate - [select for diffs], Fri Nov 2 16:07:23 2012 UTC (11 years, 4 months ago) by wiz
Branch: MAIN
Changes since 1.40: +4 -4 lines
Diff to previous 1.40 (colored) to selected 1.31 (colored)

Update to 286:
285:
This release fixes two minor bugs, improves recovery from misconfigured
colors, and adds test scripts for building the FreeBSD port and
for demonstrating OSC 4 color-queries.
286:
This release fixes four bugs, chiefly a workaround for a bug in
GDM exposed by the change in patch #282 that identifies the window
manager. The other fixes add a check for misconfiguration of the
printerCommand resource and improve transformation of the manpage
to other formats.

Revision 1.40 / (download) - annotate - [select for diffs], Sat Oct 20 13:23:38 2012 UTC (11 years, 5 months ago) by wiz
Branch: MAIN
Changes since 1.39: +4 -4 lines
Diff to previous 1.39 (colored) to selected 1.31 (colored)

Update to 284:
Fixes bugs reported with the #283 release (regression in the --regex
configure option and undesirable interaction with existing iconName
behavior).

Revision 1.39 / (download) - annotate - [select for diffs], Wed Oct 10 13:50:56 2012 UTC (11 years, 5 months ago) by wiz
Branch: MAIN
Changes since 1.38: +4 -4 lines
Diff to previous 1.38 (colored) to selected 1.31 (colored)

Update to 283:
This release adds further improvements for icon configurability
and cleanup of the configure script to remove obsolete checks.

Revision 1.38 / (download) - annotate - [select for diffs], Tue Oct 2 17:12:20 2012 UTC (11 years, 5 months ago) by wiz
Branch: MAIN
Changes since 1.37: +4 -4 lines
Diff to previous 1.37 (colored) to selected 1.31 (colored)

Update to 282:
Several bugfixes and new features, including new escape sequences and a new icon.

Revision 1.37 / (download) - annotate - [select for diffs], Sun Jul 1 17:36:41 2012 UTC (11 years, 8 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2012Q3-base, pkgsrc-2012Q3
Changes since 1.36: +4 -4 lines
Diff to previous 1.36 (colored) to selected 1.31 (colored)

Update to 281:

281:
This release fixes two regressions in patch #280 (one affects
packaging, the other keyboard).

280:
This release changes the default emulation level to VT420 (reflecting
implementation of margins in patch #279), adds/modifies configure
script options to support icon-themes, and includes several minor
bugfixes and other feature enhancements.

Revision 1.36 / (download) - annotate - [select for diffs], Sun Jun 3 18:29:26 2012 UTC (11 years, 9 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2012Q2-base, pkgsrc-2012Q2
Changes since 1.35: +4 -5 lines
Diff to previous 1.35 (colored) to selected 1.31 (colored)

Update to 279.

Patch #279 - 2012/05/10

    fill in missing cases in the save/restore modes feature (report by Thomas Wolff).
    add check to ensure that combining characters are precomposed in the order given (report/analysis by Andries E Brouwer).
    improve workability check for posix_openpt(), to take into account BSD systems which do not complete initialization until both sides of the pseudoterminal are opened (report by Christian Weisgerber).
    amend fix for Debian #650291 in patch #277 changes to account for different data returned by vnc4server (Debian #670638).
    add check in DECCRA operation to make copies of blinking text also blink by updating a line-level flag.
    modify rectangle operations to work with DECOM.
    modify DECSERA to use the current protected state rather than preserving it.
    add precompose resource to allow storing character data in Normalized Form D as described in http://unicode.org/reports/tr15/ (report/discussion with Andries E Brouwer).
    modify CBT, other ISO-6429 controls which are used by VT520 to work with DECOM.
    add HPR and VPR controls, ISO 6429 cursor movement used in VT520.
    remove "linux" restriction for IUTF8 ifdef in main.c (prompted by Matthew Dempsky posting on mailing.openbsd.tech).
    implement the remaining VT420-level device status reports.
    change DECXCPR to return page 1, rather than 0.
    improve VT-level checks on reporting functions, such as DECXCPR.
    change limit on decTerminalID to 525.
    fixes to improve vttest vt52 screen when running as a VT420:
        add checks for some VT2xx and up controls for consistency: DECSCL, S1C8T, S1C7T.
        modify DECRQSS return for DECSCL to only return that when running as VT2xx and up.
        when exiting from VT52-mode, resume in VT100 level rather than the level before starting VT52-mode.
    implement DECLRMM, DECSLRMM and DECNCSM (prompted by discussions with Ailin Nemui and Paul LeoNerd Evans). This modifies several controls to obey top/bottom and left/right margins.
    correct macro definition used for testing modes used in ANSI/DEC request-mode controls introduced in patch #262.
    modify x_getlogin to check $LOGNAME and $USER before fallback to getlogin, so that user's choice for these variables can be carried forward to the xterm process (Debian #611487).
    document DECSCUSR response for DECRQSS in ctlseqs.ms
    add zIconTitleFormat resource to allow customizing the "*** " prefixed to the icon title when the zIconBeep feature is activated (request by Thomas Adam).
    modify DECSCUSR to update the same internal variable as RM/SM 12, and document in manpage the two variables used for controlling blinking cursor (report by Paul LeoNerd Evans).
    correct response data for DECSCUSR in reply for DECRQSS response, which had inverted the blink-value (reports by Ailin Nemui, Paul LeoNerd Evans).
    add a null-pointer check in OkPasswd macro to fix a problem in resize with Fedora 17 and a serial console (report/patch by Daniel Drake).
    add workaround for Mac OS X, which loses the window size of a pseudo-terminal when the tty device is opened (report/analysis by Egmont Koblinger).
    updated configure check for workable posix_openpt versus grantpt, from luit fixes.
    modify DECIC/DECDC/DECBI/DECFI implemented in patch #277 to enable them only in VT4xx mode and up (report by Ailin Nemui).
    update config.guess, config.sub

Patch #278 - 2012/01/18

    correct initialization for eightBitMeta resource (FreeBSD #164101).
    make special check for Darwin 9 (and lower) to not use posix_openpt (report by Christian Ebert).
    minor fixes (adding ".ne" directives) to reduce the cases where groff's utility for generating images for tables dumps core. Most versions of groff (I've found 1.19.2 to be the most stable) dump core when attempting to report that there are too few lines on a page for a table to be shown.
Patch #277 - 2012/01/07

    remove special case for ISC pseudo-terminals which attempts to open the pty in two different ways.
    move call to grantpt before asking utempter to add a record, to work with kFreeBSD which does not update the terminal's ownership until this point (Debian #652907).
    document limitation of XIM interface in manpage (Debian #230787).
    cleanup error reporting with new xtermWarning function.
    add configure option --disable-selection-ops to make the new actions optional.
    add four new actions for making the selection or data directly copied from the screen (prompted by discussion in Debian #637001, as well as report by Arjen van Tol):
        exec-formatted
        exec-selectable
        insert-formatted
        insert-selectable
    add visualBellLine resource to allow visualBell to flash only the current line (prompted by patch by Gertjan Halkes).
    add eightBitMeta resource to control the features which modify or interpret the eighth bit of a key when the meta modifier key is pressed (prompted by Debian #326200).
    improve discussion of eightBitInput in the manpage (prompted by Debian #326200).
    correct logic for alt-sends-escape action, overlooked when implementing altSendsEscape resource, which still used eightBitInput resource value.
    add a workaround for XAllocColor(), which does not actually allocate "a read-only colormap entry corresponding to the closest RGB value supported by the hardware", but rather a rough approximation (Debian #650291).
    undo parameter checks for RequestResize() added in patch #251 and amended in patch #270, because zeros also are special cases (report by John S Urban).
    modify some test-scripts to use /bin/echo rather than the shell's possibly-builtin echo, to work around broken configuration on Mac OS X, i.e., neither honoring the option nor flagging an error.
    add SGR 1006, as a better technical solution than SGR 1015:
        the responses will not be confused with line-deletion and scrolling controls.
        the button encoding is a little simpler, since it does not add an unnecessary 32 because the integer parameter does not have to be represented as a printable character.
        the control responses for pressing and releasing a mouse button differ, allowing an application to tell which button was released.

    Besides these improvements, in discussion, it was noted that urxvt's implementation of 1005 is incorrect, relying upon a locale that provides UTF-8 encoding. In contrast, vttest demonstrates a correct decoding, independent of locale.
    add support for urxvt SGR 1015 to address shortcoming of SGR 1005 with luit (patch by Egmont Koblinger).
    add ISO and DEC controls useful for left/right scrolling.
    add some changes for OpenBSD and MirBSD (adapted from patch by Thorsten Glaser):
        disable search for non-Unix96 ptys.
        fix a gcc warning in timestamp_filename
        modify Imakefile to install xterm setgid to utmp.
    add/use/prefer posix_openpt() for opening pseudo-terminal.
    modify special errno handling case in ptydata.c from patch #158 to allow for the possibility that any platform may have special cases where "/dev/tty" is absent. For example, this can happen in a FreeBSD jail (patch by David Wolfskill).
    add keyboard logic to map shift-tab into XK_ISO_Left_Tab, which is usually, not always, done by the X keyboard configuration.
    portability fixes for some configure macros: CF_XOPEN_SOURCE

Patch #276 - 2011/10/10

    modify clipping limits for TrueType fonts to account for the scaleHeight resource setting, to work around another problem due to recent FreeType changes. In this case, the DejaVu Sans Mono set to pixelsize=13.5 is truncated because the font descent is reduced by FreeType to match an incorrect height metric (report by Adam Lee).
    improve recovery when bitmap fonts are not installed, e.g., so that switching font-sizes works for TrueType fonts.
    modify lookup for XTERM_SHELL feature to allow relative pathnames.
    modify abbreviation disambiguation check for command-line parameters to account for -geometry, whose parameter may begin with "+" or "-" (report by Scott Bertilson).

Patch #275 - 2011/09/11

    add ash, zsh to known shells for resize.
    modify resize to reuse the logic from xterm which determines the actual logon-user's shell if $SHELL is not set.
    revert the unsetenv("SHELL") added in patch #272.
    an unsetenv("SHELL") added in patch #272 to help ensure that luit would get the user's shell consistently did not work as expected for cases where multiple names are in the password-file for a given uid. That was because changes in patch #157 to handle this situation did not take into account that repeated calls to getpwnam and getpwuid return a pointer to the same static buffer. Fixed the older logic to work as intended, by ensuring that the passwd-data from each call is stored separately (report by Paul Keusemann).
    adjust ifdef's for putenv and unsetenv in case only one of those is provided on a given platform.
    correct comparison used in ExposeContains macro from patch #274 changes, to handle window-dragging (patch by Todd Eigenschink).

Patch #274 - 2011/09/05

    portability fixes for cygwin: do not define SVR4, and work around nonstandard header location.
    ifdef'd use of unsetenv from patch #273 changes to work with Solaris 9 (report by Waldemar Rachwal).
    modify logic for XtAppPending to merge adjacent Expose and ConfigureNotify events which are redundant (report by Edward McGuire).
    fix an unneeded warning message when -r option is given.
    remove a few redundant entries from table used for helping abbreviation-checking of command-line options, makes -geom work again after patch #272 changes as an abbreviation of -geometry.
    add scaleHeight resource and command-line option -sh as workaround for some font-configurations broken by changes in FreeType 2.4.6 (report by Miroslav Hodak).
    portability fixes for some configure macros: CF_FUNC_TGETENT, CF_XOPEN_SOURCE, CF_X_ATHENA_LIBS.
    add configure option --with-freetype-config to improve selection over the plethora of configuration options which freetype has so far provided.
    build-fix for configure --enable-load-vt-fonts when --enable-widec is not specified.
    build-fixes for suppressing various features, needed after changes in patches 270, 271 and 272 (report by Brian Lindholm)

Patch #273 - 2011/08/25

    build-fix for out-of-tree "make docs" rule.
    correct a typo in x_strdup, from patch #198 changes.
    correct initialization for -e option, broken in patch #272 changes (report by Gabriele Balducci).
    build-fix for out-of-tree builds to address minstall script changes in patch #272 (patch by Thierry Reding).

Patch #272 - 2011/08/24

    document limitation of Gtk in connection with xterm's -into option, in the manpage (Ubuntu #806969).
    improve -into by checking for and using the size of the window within which xterm is embedded, overriding other clues.
    modify logic for localeFilter resource to allow that to include command-line options of luit.
    improve -into by checking for invalid window-id, and allowing hexadecimal/decimal/octal values.
    improve keepSelection, adding the case where the highlighting is cleared, overlooked in patch #230 (patch by Marco Peereboom).
    improve command-line parsing to make abbreviate options work consistently across xterm-specific versus standard X toolkit options, and report cases where an abbreviated option happens to be ambiguous. In particular, -d now works as an abbreviation for -display.
    fix regression in command-line parsing introduced in patch #271 changes for Debian #629358, (Debian #637910).
    split-out new termcap/terminfo building block xterm+kbs for configurability.
    modify terminfo file to reflect changes in ncurses for xterm-16color and xterm-256color.
    modify minstall.sh, etc., to reflect the default default class, $TERM and decTerminalID values.
    reword resize manpage to reflect the fact that $TERMCAP is not set on all systems (patch by Alan Coopersmith).
    work around combined Xaw6/Xaw7 package in DragonFlyBSD which omits the usual symbolic link to the preferred library name.
    further improve build-fix for termcap systems by checking for some which are only partial implementations, e.g., termcap 2.08 in CentOS 5.2

Patch #271 - 2011/07/14

    omit permissions adjustments to pty on exit except for pre-Unix98 ptys, since modern implementations handle this (report by Sean C Farley).
    modify logic for switching fonts between UTF-8 and non-UTF-8 encoding to not merge the derivable bold-, wide- and widebold values from the VT100 fonts. Also suppress warning when not using UTF-8 fonts if wide- and widebold-fonts cannot be derived or otherwise loaded (report by Werner Scheinast).
    modify menu-creation to suppress entries which will never be used in the current configuration, rather than simply disabling them.
    add resource printModeImmediate and menu item to allow print of screen plus saved lines to a file.
    add menu item to allow runtime enable/disable of the printFileOnXError feature.
    append a timestamp to filename used in printFileOnXError feature, and restrict its permissions (request by Vincent Lefevre).
    add a check when cancelling cursor-blinking, in case the cursor is blinked off. Fix so that the cursor is repainted without waiting for other events, e.g., keypress (report by Ailin Nemui).
    add configure --with-app-class option, to simplify building "xterm-dev" packages with filenames that do not conflict with conventional "xterm" packages.
    corrected logic flow for DECSCL, which prevented the updated operating level from being reported via DECRQSS (report by Ailin Nemui).
    corrected default for brokenStringTerm resource to match manpage.
    add vttests/dynamic.pl
    add runtime check for locale not supported by X libraries, and fallback to XA_STRING in this case (request by Bryan Henderson).
    fix a special case in configure script after no FreeType libraries are found. The script was proceeding to check for a usable configuration.
    add xterm+tmux building block to terminfo (adapted from changes proposed by Ailin Nemui and Nicholas Marriott).
    improve discussion of faceName resource in manpage (adapted from suggestions by Jens Schweikhardt).
    correct mapping of shifted up/down cursor-keys in termcap function-keys mode, i.e., resource tcapFunctionKeys (patch by Gertjan Halkes).
    update AIX case in CF_XOPEN_SOURCE configure macro to add release 7.x.
    modify ifdef's in xterm_io.h for __hpux to force that to use the hacked SYSV support in that file. This fixes a problem with a non-blocking socket call (patch by Paul Lampert).
    improve filtering of desktop category scanning, to exclude XFCE.
    modify configure script to work with systems that have both ncurses (or other terminfo) as well as a real termcap library, e.g., Slackware (report by Andrew Watts).
    modify configure script to work around special case where user's environment adds compiler flags to the CC variable (prompted by report by Paul Lampert).
    amend change for Debian #110226 so that "-h" or "-v" options cause an exit, rather than simply printing to stdout while the window is displayed (Debian #629358).
    add response for DECRQSS which gives the setting for DECSCUSR.
    modify AllocateTermColor() to handle XtDefaultForeground and XtDefaultBackground, which are not recognized by XParseColor. For example, this fixes the use of OSC 112 when no explicit cursor color was set (report by Ailin Nemui).
    handle special-case of KeyPress translated to popup-menu action (Ubuntu #756273).

Patch #270 - 2011/04/26

    build-fix, e.g., for using imake on platforms which use the termcap library.
    modify utf8 resource to accept a name.
    mention default for fontWarnings in manpage (report by Werner Scheinast).
    split "UTF-8" menu entry into "UTF-8 Encoding" and "UTF-8 Fonts" (prompted by discussion with Werner Scheinast).
    gray-out font-menu entries when a font fails to load, e.g., a bitmap font is not installed.
    improve behavior when there is no app-defaults file:
        set the toolBar resource to false
        gray-out the font menu entries where no resource is found.
    add configure option --with-desktop-category to allow customization of the ".desktop" files.
    build-fix for the install-desktop makefile-rule, when the source/build directories differ (patch by Loïc Minier).
    add menu entry and corresponding resource which can be used to suppress all bold-fonts (discussion with Jan Engelhardt).
    make internal line-size value consistent with allocated sizes of character and related arrays to ensure that bulk copying of line data, e.g., in scrolling, accounts for the padding used for pointer alignment (adapted from patch by Rajesh Mandalemula, also reported by Ali Bahar).
    widen ifdef for screen-resizing logic from patch #176 changes to send SIGWINCH to process group to include any system supporting ioctl(*,TIOCGPGRP,*) (prompted by linux-specific patch in OpenSUSE rpm package).
    add printModeOnXError and printFileOnXError resources, which allow the user to specify that xterm will write the contents of its screen to a file if it is exiting due to an X error (Debian #280457).
    restore logic that made reverse-video apply to the scrollbar's foreground/background, broken in patch #158 (report by Bryan Ischo).
    amend some of the window operations parameter-checks added in patch #251 for the push/pop title feature, to allow the parameters used for window resizing to be -1's, which makes the corresponding values ignored rather than using the window's maximum width/height (report by Noah Friedman).
    correct order of initialization for translations vs fullscreen resources to enable a special case which omits the Alt-Enter translation when fullscreen is disabled (Debian #612978).
    update config.guess, config.sub

Patch #269 - 2011/02/19

    build-fixes for imake (report by Heiko Berges).
    modify autoconf macro CF_PKG_CONFIG to work with cross-compile environments (patch by Thierry Reding).
    modify MapToColorMode() to favor bold over underline, matching the precedence used before patch #252 (report/analysis by Nicolas George).
    add omitTranslation resource, which can be used to suppress the default translations for these features:
        fullscreen
        scroll-lock
        shift-fonts
        wheel-mouse
    make the fullscreen feature configurable (Debian #612978)
        add it to the configurable list disallowedWindowOps.
        add command-line option -fullscreen to allow the feature to be enabled at startup.
        add resource fullscreen to control whether the feature is active or may be enabled.
    modify probe_netwm_fullscreen_capability for 64-bit machines. Contrary to XGetWindowProperty manpage, that function returns 32-bit data packed as long's.
    eliminate copy of name resource, which was otherwise used only to give the terminal-description name for the tcap-query feature. Use the actual $TERM value instead, as derived from termName resource, etc.
    eliminate an old inconsistency with error messages, some used the -name option, while others used argv[0]. The latter is now used consistently.
    improve configure check for rpath-hack, to improve builds on systems where gcc will not search /usr/local/lib, etc.
    build-fix for Xaw3d configuration (report by H Merijn Brand).
    update config.guess, config.sub

Patch #268 - 2011/02/10

    fix an inconsistency of the "Enable Reverse Video" checkbox in the VT Options menu. This also removes a special case added in patch #217 which limited the effect of the reverseVideo resource (Debian #603808).
    amend decoding of misformed UTF-8 sequences to avoid absorbing valid characters as documented in Unicode 6.0 section 3.9 (report by Keith Winstein).
    do not set urgency hint when window already has focus (patch by Dimitrios Christidis).
    amend extended mouse-coordinate mode from patch #262 changes to include the Cb button-code, which also may be greater than 127 (report by Ailin Nemui).
    ensure that underline-cursor is visible when an application happens to set the background color (report by Christian Weisgerber).
    add feature for full-screen toggling using either Alt-Enter or a menu selection (integrated patch by Dave Simmons).
    add missing logic to handle reallocation of FIFO index for the "UTF-8" menu entry (report by David Holland, NetBSD #44344).
    add makefile rules docs-ctlseqs, docs-xterm, etc.
    correct typo in description of DECRPM in control sequences document (report by Ailin Nemui).

Patch #267 - 2010/11/20

    minor formatting changes to ctlseqs.ms to simplify a script which extracts the feature information. See the results in Comparing versions, by counting controls in the xterm FAQ.
    add docs-clean makefile rule.
    add copy-selection action (request by Timo Juhani Lindfors, Debian #588785).
    trim leading/trailing blanks from string used for "Selection" font-menu data.
    trim leading/trailing blanks from color resource values.
    configure script improvements:
        add workaround for removal of X11 dependency from Xt's package file (report by Robert Hooker).
        add workaround for removal of fontconfig dependency from Xft's package file (report by Jeremy Huddleston).
        add workaround for removal of Xmu dependency from Xaw's package file (report by Jeremy Huddleston).
        improve workaround in CF_X_TOOLKIT macro, checking for other possible packages where Xt's dependencies may be given.
        prefer ${name:=value} to ${name-value}, since recent bash changes break legacy support for that feature.

Patch #266 - 2010/10/24

    add rpm and dpkg scripts, for testing.
    more fixes for Debian #600707 (report by Cyril Brulebois).

Patch #265 - 2010/10/22

    fix a regression in fontname logic from patch #263 changes (Debian #600707, reported by Vincent Lefevre).
    revert modification of any-event/any-button protocol from patch #263 changes. It interferes with selection using a shifted mouse button (reports by Neil Bird, Bram Moolenaar).

Patch #264 - 2010/10/14

    replace a null-pointer check with check for empty string in xtermOpenFont, to eliminate a warning message from patch #263 changes.
    build-fix for patch #263 when toolbar is not configured (patch by Chris Clayton) (reports by Robby Workman, David Wood).

Patch #263 - 2010/10/13

    corrected initialization of "misc" resource values, to ensure that xterm has allocated a copy of strings which may not have been malloc'd by the X library (Debian #600129).
    modify handling of any-event/any-button mouse protocol; it now is active with any combination of key-modifiers.
    add debugging feature showWrapMarks, which marks lines which xterm knows are wrapped, showing where a double-click will select past the end of a line.
    build-fix to address change in include-guards for Xlib.h in ongoing Xorg edits (patch by Jeremy Huddleston).
    improve pointerMode by continuing to watch for motion events after mouse tracking is disabled if the pointer is hidden (Debian #594856).
    further extend initialization for active-icon font to check if the font was not loaded succesfully, to retry with font1, or as even (if TrueType fonts are used) to use a TrueType font. The retries are to help with cases as in patch #241 where the bitmap fonts are not available.
    fix special case of active-icon used when TrueType font is specified for the xterm window, from patch #261 change. In that case, the default font's size was used for layout of the active icon's window (Debian #591265).

Patch #262 - 2010/8/30

    fix a case where changing the cursor color via escape sequences did not immediately update the screen (report by Andreas Wagner).
    implement ANSI and DEC request-mode control sequences. The latter includes the xterm-specific private modes such as the mouse mode. The feature is ifdef'd with the rectangle operations since its decoding overlaps that feature.
    correct typo in ctlseqs.ms for response of OSC 21 (patch by Kevin Schoedel).
    improve discussion of mouse tracking in ctlseqs.ms
    increase an array limit used in reporting mouse events (report by Ryan Johnson).
    add extended mouse-coordinates mode, allowing up to 2015x2015 windows, using UTF-8 encoding (patch by Ryan Johnson).
    modify manpage hyphens to conform with Debian.

Patch #261 - 2010/6/28


    fix regression in renderFont logic, from patch #260 changes (report by Joseph Quinsey).

Patch #260 - 2010/6/20

    modify plink.sh to work around problem linking to recent PCRE libraries.
    extend renderFont resource to allow deferred switch to TrueType fonts without affecting existing resource settings (Debian #585620).
    modify configure macro CF_X_TOOLKIT to work around omission of ICE library from ".pc" file (report by Miroslav Lichvar).
    change configure script default for --enable-broken-st i.e., the brokenStringTerm feature) to normally enable it. If the corresponding resource is enabled, this feature eliminates an apparent freeze of xterm when sending mis-encoded data to the screen (Debian #584801).
    document in manpage some actions which were overlooked:
        readline-button
        scroll-lock
        set-8-bit-control
    undo a change to limit-check in ScrnRefresh in patch #257, which broke fastScroll feature (Debian #584841).
    modify handling of brokenLinuxOSC and brokenStringTerm to also sound the bell.
    add control/D and control/Q to controls which will cause early exit from control string per brokenStringTerm resource.
    improve documentation of brokenStringTerm resource in manpage.

Revision 1.35 / (download) - annotate - [select for diffs], Sat Sep 24 13:03:10 2011 UTC (12 years, 6 months ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2012Q1-base, pkgsrc-2012Q1, pkgsrc-2011Q4-base, pkgsrc-2011Q4, pkgsrc-2011Q3-base, pkgsrc-2011Q3
Changes since 1.34: +2 -1 lines
Diff to previous 1.34 (colored) to selected 1.31 (colored)

Fix fallout from include guard changes in libX11

Revision 1.34 / (download) - annotate - [select for diffs], Wed Jun 16 16:27:47 2010 UTC (13 years, 9 months ago) by drochner
Branch: MAIN
CVS Tags: pkgsrc-2011Q2-base, pkgsrc-2011Q2, pkgsrc-2011Q1-base, pkgsrc-2011Q1, pkgsrc-2010Q4-base, pkgsrc-2010Q4, pkgsrc-2010Q3-base, pkgsrc-2010Q3, pkgsrc-2010Q2-base, pkgsrc-2010Q2
Changes since 1.33: +4 -4 lines
Diff to previous 1.33 (colored) to selected 1.31 (colored)

update to 259
changes:
-build system changes (uses pkg-config)
-minor fixes
-manpage improvements

Revision 1.33 / (download) - annotate - [select for diffs], Wed Feb 24 19:37:38 2010 UTC (14 years, 1 month ago) by drochner
Branch: MAIN
CVS Tags: pkgsrc-2010Q1-base, pkgsrc-2010Q1
Changes since 1.32: +4 -4 lines
Diff to previous 1.32 (colored) to selected 1.31 (colored)

update to 255
changes: many bugfixes, minor improvements

Revision 1.32 / (download) - annotate - [select for diffs], Tue Sep 15 11:37:02 2009 UTC (14 years, 6 months ago) by drochner
Branch: MAIN
CVS Tags: pkgsrc-2009Q4-base, pkgsrc-2009Q4, pkgsrc-2009Q3-base, pkgsrc-2009Q3
Changes since 1.31: +4 -4 lines
Diff to previous 1.31 (colored)

update to 248
changes: minor bugfixes

Revision 1.31 / (download) - annotate - [selected], Sun Aug 30 05:40:06 2009 UTC (14 years, 7 months ago) by obache
Branch: MAIN
Changes since 1.30: +4 -4 lines
Diff to previous 1.30 (colored)

Update xterm to Patch#246.

Patch #246 - 2009/8/16

    * remove obsolete logic for saving/restoring wrapping flags, which did not
      work on 64-bit platform. Wrapping flags (stored in the line-index) are now
      copied with line-data (Debian #541160).
    * modify comments in app-defaults files to avoid problem with C preprocessor
      used by xrdb (Debian #541603).
    * restore special case in makeColorPair, needed for colorBDMode resource
      (Debian #541089).
    * correct SetLineFlags() macro, broken in patch #244 when recoding to avoid
      gcc-specific bitfields (Debian #541236).
    * modify initialization of screen buffers to ensure that pointers align to
      int-boundaries. This fixes a problem introduced in patch #244 where the
      color- and character-arrays (stored after the video-attributes in each
      row) might be misaligned (report by Rajeev V Pillai).
    * add limit-check in ScrnRefresh for handling saved-lines from the circular
      buffer which are repainted on a screen whose width has increased. To
      improve performance, circular buffer entries are not resized (report by
      Rajeev V Pillai).
    * correct type for CellColor (a late change in patch #244 to avoid gcc-
      specifc enums made that unsigned rather than unsigned short, for the
      256-color option).
    * fix typo in configure option --enable-16bit-chars (report by Rajeev V.
      Pillai).

Patch #245 - 2009/8/12

    * correct a special case in saving FIFO-lines from patch #244. If the screen
      was shrunk, xterm used the wrong amount for copying to FIFO-lines, and
      then used this amount to adjust the current row on the screen. That was
      both a visible defect (Debian #541109) as well as a potential addressing
      error (Debian #541132, #541160, and #541236).
    * add clarification in xterm manual about the various allowXXXOps resources,
      which are disabled when the allowSendEvents resource is active (patch by
      Julien Cristau, Debian #531597).

Patch #244 - 2009/8/9

    * refactored storage of saved-lines, providing a configure option to manage
      them as a FIFO (actually a circular buffer), improving performance. Added
      configure option --enable-fifo-lines to enable/disable the new feature (it
      is enabled by default).
    * added fastScroll resource, to amuse people who measure terminal emulator
      performance by cat'ing large files to the screen.
    * modify check in readPtyData from return values to provide exit on zero-
      bytes read from pty for FreeBSD, or eliminate high-CPU in "xterm-hold"
      processing (discussion with Ulrich Spoerlein, FreeBSD ports/136686). The
      check was originally modified to combine negative/zero values in
      XFree86-3.1.2E, 1996/05/06.
    * add configure option --enable-16bit-chars to provide wide-characters with
      16-bits (rather than the default 32-bits).
    * add retryInputMethod resource to allow configuring out the retries xterm
      uses to connect to non-responsive XIM server, to work around defective X
      configurations as noted in NetBSD mailing list.
      http://mail-index.netbsd.org/tech-x11/2009/06/07/msg000511.html
    * make regular-expression selection work for VT100 double-sized characters.
    * improve layout when drawing missing characters in a proportional font,
      e.g., as boxes, to take into account whether they are double-width
      (report by Guilbert Stabilo on comp.unix.shell).
    * add capability for keypad-center (kb2/KA2) to termcap entry for xterm-new,
      as well as xterm-8bit, xterm-sun and xterm-vt220 (FreeBSD conf/136336).
    * change default for keepSelection resource to true (prompted by discussion
      with David Muir Sharnoff).
    * remove a limit-check in ptydata.c, allowing Unicode values past 64k to be
      displayed using TrueType fonts (Debian #458432).
    * remove a vt52-specific ifdef to allow mapping F1-F4 to PF1-PF4 when vt52
      support is not compiled (report by Olaf 'Rhialto' Seibert).
    * save/restore line-wrapping flags when converting from ISO-8859-1 encoding
      to UTF-8 encoding, as well as when resizing screen.
    * remove extra adjustment of position in fix for Debian #418324.
    * modify default check for mkWidth resource to check for line-drawing
      characters, which are categorized as double-width in Solaris 10 (report by
      Sebastian Kayser).
    * add "print-everything" action (patch by Ovidiu Gheorghioiu).
    * start refactoring scrollback data using new getLineData() function.
    * demote recent change to Debian #252873 fix to experimental, ifdef'd out as
      EXP_BOGUS_FG (Debian #522141).
    * work around groff mapping of ASCII quotes using macros (requested by
      Reuben Thomas based on Colin Watson advice, fixes Debian #378700).
    * correct symbol used for default of allowWindowOps which was DEF_ALLOW_FONT
      rather than DEF_ALLOW_WINDOW (report by Matthieu Herrb).
    * amend fix for tek4014 from patch #243 to make it only apply to the Tek
      Options menu.

Revision 1.30 / (download) - annotate - [select for diffs], Fri May 22 19:52:02 2009 UTC (14 years, 10 months ago) by tnn
Branch: MAIN
CVS Tags: pkgsrc-2009Q2-base, pkgsrc-2009Q2
Changes since 1.29: +5 -5 lines
Diff to previous 1.29 (colored) to selected 1.31 (colored)

Update to xterm-243.

Patch #243 - 2009/3/28
* revert change to default for allowTcapOps (request by Bram Moolenaar).
* reallocate result returned by xtermEnvLocale() to avoid reference to freed
  memory after handling menuLocale resource.
* fix an old (X11R5) bug in tek4014 for switching fontsizes.
* add resource defaultString to make configurable the use of "#" when pastes
  of UTF-8 text fail due to limitations in the current locale settings.
* make the set of selection target Atom's configurable by two new resources
  eightBitSelectTypes and utf8SelectTypes, e.g., to use the TEXT Atom in
  preference to UTF8_STRING (discussion with Stanislav Sedov regarding
  koi8rxterm and the FreeBSD port).
* modify handling of TARGETS Atom by making it return exactly the set of
  targets as those which xterm is currently providing.
* set MANPAGER and PAGER explicitly to /bin/cat in minstall.sh to work around
  /etc/man.conf's with those variables already set
* improve error-checking of tcap-query parser.
* add check for keyboard tcap), which ensures that terminal descriptions
  containing the same string for shifted/unshifted keys will be seen by
  tcap-query as only the unshifted key. (This would only happen with an
  incorrect terminal description).
* fix conversion for input event-state to modifier-parameter which made
  tcap-query feature not work with tcapFunctionKeys (keyboard type tcap).
* add "DEF_ALLOW_XXX" definitions to main.h to allow overriding the
  default compiled-in values for "allowxxx" resources.
* remove check on bell-percentage added in patch #242, which disallowed
  zero/negative values (Redhat Bugzilla #487829).

Patch #242 - 2009/2/15
* fix configure check for XkbBell and provide appropriate parameter for it.
* fix a caching problem with double-size fonts versus reverse video that could
  cause core dump.
* repair double-size fonts from workaround used in patch #240.
* add new section to the VT Fonts menu which allows enabling or disabling the
  font, termcap (tcap-query), title and window operations.
* add fontWarnings resource, to control whether to show warnings on failure to
  load a font.
* improve warnings for unloadable fonts introduced in patch #240 by limiting
  those to the cases where a font would be specified directly by a resource
  setting rather than a derived fontname.
* further amend fix for Debian #252873 from patch #197 to treat a blank cell
  which does not have both foreground and background colored as a non-colored
  cell. This improves a special case where the cursor is on a blank cell which
  had foreground color scrolled in (report by Miroslav Lichvar).
  Also add the same logic when hiding cursor, so the outline matches the
  in-focus cursor.
* modify internals to reduce places PAIRED_CHARS() is used, making WriteText()
  and ScrnWriteText() accept IChar array, as well as providing a wrapper for
  drawXtermText().
* change default XIM font from "*" to "fixed" to improve startup time in
  zh_CN.UTF-8 locale (Mike Fabian, SuSE Bugzilla #464930).
* typo in #240 log (Slava Semushin)

Patch #241 - 2009/1/26
*  improve checks for missing bitmap fonts, fallback to "fixed" as needed to
  work around broken font-packages (report by Jacek Luczak).
* fix breakage from patch #240 changes for xtermAddInput() (patches by
  Jeff Chua, Julien Cristau).

Patch #240 - 2009/1/25
* use plink.sh for linking xterm (suggested by Larry Doolittle).
* add resource descriptions for input method to xterm manpage.
* update configure script; consistently append to $CFLAGS rather than prepend.
* add install-scripts rule to makefile, to allow koi8rxterm and uxterm scripts
  to be altered independently of install-bin
* add -maximized command-line option and corresponding resource (prompted by
  alt.os.linux newsgroup comment).
* modify translations of scrollbar widget using xtermAddInput() (see
  patch #181) to accept the actions that the vt100 widget accepts, such as
  shift-insert to perform a paste operation (request by Martin Zwickel).
* change default for allowTcapsOpS resource to false, since it causes
  unexpected behavior for vim users with AltGr.
* update config.guess, config.sub

Revision 1.29 / (download) - annotate - [select for diffs], Wed Jan 14 20:57:02 2009 UTC (15 years, 2 months ago) by tnn
Branch: MAIN
CVS Tags: pkgsrc-2009Q1-base, pkgsrc-2009Q1
Changes since 1.28: +4 -4 lines
Diff to previous 1.28 (colored) to selected 1.31 (colored)

Update to xterm-239.
Fixes broken translation of numpad codes on 64-bit platforms.

Revision 1.27.4.1 / (download) - annotate - [select for diffs], Wed Jan 7 11:42:44 2009 UTC (15 years, 2 months ago) by rtr
Branch: pkgsrc-2008Q4
Changes since 1.27: +4 -4 lines
Diff to previous 1.27 (colored) next main 1.28 (colored) to selected 1.31 (colored)

pullup ticket #2626 - requested by tnn
xterm: update package for security vulnerability

revisions pulled up:
pkgsrc/x11/xterm/Makefile	1.50
pkgsrc/x11/xterm/distinfo	1.28

   Module Name:    pkgsrc
   Committed By:   tnn
   Date:           Tue Jan  6 18:20:25 UTC 2009

   Modified Files:
           pkgsrc/x11/xterm: Makefile distinfo

   Log Message:
   update to xterm-238. Closes PR pkg/40334 and fixes CVE-2008-2383.

Revision 1.28 / (download) - annotate - [select for diffs], Tue Jan 6 18:20:25 2009 UTC (15 years, 2 months ago) by tnn
Branch: MAIN
Changes since 1.27: +4 -4 lines
Diff to previous 1.27 (colored) to selected 1.31 (colored)

update to xterm-238. Closes PR pkg/40334 and fixes CVE-2008-2383.

Patch #238 - 2008/12/30
* update configure macro CF_XOPEN_SOURCE for AIX 6.x and Mint platforms.
* reset the screen wrapping-flag at the end of ClearRight to fix an occasional
  case where the last character of a scrolled and wrapped line would be cleared
  (patch by Joe Peterson).
* modify to use POSIX coding for comparing resource settings such as locale,
  to work with locales such as Turkish (report by M Vefa Bicakci).
* turn on configure paste64 feature by default (request by
  Jean-Philippe Bernardy). It is runtime enabled/disabled with allowWindowOps.
* turn on configure tcap-query feature by default, add resource allowTcapOps
  to make this runtime enabled/disabled.
* make OSC 3 (change X property, from patch #110) subject to allowWindowOps
  resource.
* make VT220 DSR responses inactive in VT100-mode.
* make DECUDK feature inactive in VT100-mode.
* respond to incorrectly formatted DECRQSS with a cancel.
* add allowFontOps resource to allow the fontsize-switching and font query/set
  control sequences to be enabled/disabled (prompted by Debian #510030).
* some code cleanup based on gcc 4.x -Wconversion warnings in button.c and
  charproc.c
* modify tcap-query feature to not return data for shifted cursor-keys when
  the keyboard type is set to vt220, since returning the same string for
  shifted/unshifted keys may confuse some applications (GenToo #212546).

Revision 1.27 / (download) - annotate - [select for diffs], Tue Sep 16 22:18:26 2008 UTC (15 years, 6 months ago) by bjs
Branch: MAIN
CVS Tags: pkgsrc-2008Q4-base, pkgsrc-2008Q3-base, pkgsrc-2008Q3
Branch point for: pkgsrc-2008Q4
Changes since 1.26: +4 -4 lines
Diff to previous 1.26 (colored) to selected 1.31 (colored)

Update to xterm-237.  This release contains a number of significant
bug fixes, including the problems with resizing the terminal
with certain applications (second item listed here).

                       Patch #237 - 2008/09/14

* improve usability of TrueType fonts by making the font-size switching
  for shifted keypad plus/minus use the faceSize resources to determine
  the order of fonts (when TrueType fonts are used) rather than the
  bitmap fonts, since their sizes may not be in the same order (report
  by H Merijn Brand)

* remove an optimization of ConfigureNotify events from patch #236 which
  seems to interfere with passing SIGWINCH to applications (GenToo
  #233836).

* modify handling of altSendsEscape to reset the eightBitInput mode,
  like metaSendsEscape (patch by Ted Phelps).

* add feature to show the text-cursor as an underline rather than a box,
  plus command-line options -uc and +uc and resource cursorUnderLine to
  control the feature (patch by Paul Lampert).

* update config.guess, config.sub

Revision 1.26 / (download) - annotate - [select for diffs], Fri Aug 1 23:14:47 2008 UTC (15 years, 7 months ago) by bjs
Branch: MAIN
CVS Tags: cube-native-xorg-base, cube-native-xorg
Changes since 1.25: +5 -7 lines
Diff to previous 1.25 (colored) to selected 1.31 (colored)

Update to xterm-236.  Changes:

                            Patch #236 - 2008/07/27

     * correct memory reallocation when handling a paste of UTF-8 text from
       patch #225 changes (report/patch by Max Mikhanosha).
     * correct allocation of temporary buffer in xtermFindShell in case the
       user's $PATH contains no ":" (report/analysis by Victor Stinner,
       Freedesktop.Org Bugzilla #16790).
     * modify CF_XOPEN_SOURCE to add case for DragonFly BSD, to fix new
       compile problem exposed by fix for fd_mask (patch by Hasso Tepper).
     * add configure-check for ncurses use_extended_names, (report by
       Martin Mokrejs).
     * correct computation for toolbar height; layout manager already takes
       into account borderWidth resource.
     * implement VT320-style SCS (select character set) for ISO Latin-1
       supplemental.
     * fixes for vt100-style character sets in UTF-8 mode (Ubuntu #230919).
     * fix to make luit work with xterm's -ls option (report/patch by
       Marius Tolzmann).
     * update config.guess, config.sub

Revision 1.25 / (download) - annotate - [select for diffs], Wed Jul 2 13:50:56 2008 UTC (15 years, 8 months ago) by obache
Branch: MAIN
CVS Tags: pkgsrc-2008Q2-base, pkgsrc-2008Q2, cwrapper
Changes since 1.24: +3 -1 lines
Diff to previous 1.24 (colored) to selected 1.31 (colored)

Fix build failure on DragonFly, treat DragonFly same as FreeBSD.
Patch provided by Hasso Tepper in PR 39048.

Revision 1.24 / (download) - annotate - [select for diffs], Mon Apr 21 17:10:40 2008 UTC (15 years, 11 months ago) by bjs
Branch: MAIN
Changes since 1.23: +5 -4 lines
Diff to previous 1.23 (colored) to selected 1.31 (colored)


Update to xterm-235.

Changes within pkgsrc:

    - Remove most options, as I see no reason not just to build them in
      by default (they shouldn't be intrusive).  I also enabled a few
      features that weren't there before (mouse support for readline
      applications, support for the mini/built-in luit, paste64, etc.).

    - Build-in the toolbar by default.  I patched xterm to disable the
      toolBar resource by default.

    - Include xaw.buildlink3.mk instead of libXaw/buildlink3.mk and
      add some code to configure xterm properly according to the
      user's preference.

    - Use @unexec ${RMDIR} ... when attempting to remove
      lib/X11/app-defaults.

    - Install xterm.desktop and uxterm.desktop to share/applications
      (I don't think this needs desktopdb.mk).

    - Added a 'debug' option which builds in support for event tracing.
      Also, if PKG_DEVELOPER=yes, tell configure to --enable-warnings.


                            Patch #235 - 2008/04/20

     * add control sequences for some of the recent resource/menu settings:

          * altSendsEscape (private mode 1039)
          * keepSelection (private mode 1040)
          * selectToClipboard (private mode 1041)
          * bellIsUrgent (private mode 1042)
          * popOnBell (private mode 1043)

     * add resource formatOtherKeys to provide an alternate escape sequence
       format for the modifyOtherKeys resource (request by Paul LeoNerd
       Evans).
     * adjust saved-cursor position if the window is resized while
       displaying the alternate screen (Novell #196880, Debian #383384).
     * improve pointer-checks to fix a bug exposed by resizing during
       initialization under StumpWM window manager (Fedora Bugzilla #437928).
     * modify unselectwindow() to ensure that the mouse pointer is not
       hidden after xterm loses focus (report by Jeremy Huddleston).
     * add special check for fd_mask on Mac OS X (report by Jeremy
       Huddleston).
     * add dylib to autoconf's suffix list used for checking the result
       from xmkmf, to work with Mac OS X (report by Jeremy Huddleston).
     * correct initialization of bold- and wide-, wide-bold fonts which may
       be set via the utf8Fonts subresource (Debian #347790).

                            Patch #234 - 2008/03/02

     * modify sinstall.sh to use POSIX locale to bypass GNU ls changes to
       date-format.
     * improved/refined changes for closing bitmap font (patch by Andrea
       Odetti).
     * improve resize computation for situations where the negotiation
       fails, by invoking the xterm widget's core-class resize method
       (Debian #365602, patch by Jim Paris).
     * restore initialization of terminal's VMIN and VTIME settings, from
       patch #232 changes (patch by Matthieu Herrb).

                            Patch #233 - 2008/02/24

     * add configure check for ttydefaults.h, include if needed, e.g., for
       systems where defining _POSIX_C_SOURCE, etc., prevents it from being
       included via termios.h (prompted by comments by Robert Delius Royar
       and Jeremy Huddleston).
     * patches from Alan Coopersmith. These correspond to bug-ids on
       bugs.opensolaris.org

            4029911
                    fix a typo in manpage

            4045962
                    xterm doesn't properly set ut_syslen

            4192572
                    left-left-right misinterpreted as triple click

     * minor optimization to tab-initialization (patch by Nemeth Marton).
     * fix a case where an incorrect font was freed during initialization
       from patch #232 changes (patch by Andrea Odetti).
     * improve comparison used in SameFont function for GC-caching (Julien
       Cristau).
     * correct macro name used for default CKILL definition to work with
       Mac OS X (report by Jeremy Huddleston).

                            Patch #232 - 2008/01/30

     * corrected logic in a font-cache used for reverse-video (Debian
       #404079).
     * add control sequence to alter pointerMode at runtime.
     * add limit-checks for rectangle operation parameters (report by
       Martin Pirker).
     * modify minstall.sh to suppress $MANPAGER and $PAGER environment
       variables, which may interfere with redirecting output of man to a
       shell variable (report/patch by Zdenek Sekera).
     * do not try to hide mouse pointer in the tek4014 window, fixes broken
       "-t" option at startup from patch #230 changes (report by Robert K.
       Nelson).
     * correct datatype used when drawing tek4014 data using xterm compiled
       for wide-characters, on big-endian machines (reports by Jeremy
       Huddleston, Harald Hanche-Olsen, Martin Costabel, Merle Reinhart).
     * modify to cache the font-names along with the bitmap font data, to
       improve comparison of fonts.
     * modify to allow building with configure options --disable-ansi-color
       and --disable-leaks (Debian #459817, report/patch by Nemeth Marton).
     * modify to allow building with configure options --enable-wide-chars
       and --disable-c1-print (Debian #459816, report/patch by Nemeth
       Marton).
     * add pointerMode resource to control whether and when the pointer
       cursor is hidden as the user types.
     * simplify initialization of ttyMode- and related characters using a
       table.
     * modify initialization-logic for stty values that correspond to
       ltchars structure and the BSD TIOCSLTC ioctl (susp, dsusp, rprnt
       flush, werase, lnext). These were reset to constants for both
       termios and legacy interfaces immediately after asking the system
       for the existing values since X11R6.1, rather than using them to
       provide inherited values. While the legacy interface has some
       constraints, e.g., on HPUX, the POSIX or termios interface should
       not. Your shell may reset these anyway (prompted by patch by Ed
       Schouten).
     * improve logic for hiding/displaying pointer-cursor (report by Mark
       Brukhartz).
     * add limit-checks to tabs.c, increase maximum column for setting
       tab-stops from 320 to 1024 (report by Nemeth Marton).
     * correct length, i.e., number of types of selection targets, computed
       by ConvertSelection() when not handling wide characters for the
       XA_TARGETS() case. This leaves an extra Atom on the end of the list
       which is not handled by Java applications. The problem was introduced
       in patch #151 (report by David Wood).

Revision 1.23 / (download) - annotate - [select for diffs], Fri Jan 25 18:21:18 2008 UTC (16 years, 2 months ago) by bjs
Branch: MAIN
CVS Tags: pkgsrc-2008Q1-base, pkgsrc-2008Q1
Changes since 1.22: +4 -4 lines
Diff to previous 1.22 (colored) to selected 1.31 (colored)


Update to #231.

NOTE: I am going to again re-enable the xterm-toolbar option by default,
as there have been some fixes with font handling.  If anyone notices
any problems with this, please file a PR or email the pkgsrc lists.
Thanks.

ChangeLog:


                            Patch #231 - 2008/01/05

     * undo change to getXtermCell() from patch #230 using PACK_PAIR macro
       (Debian #459014, analysis by Caetano Jimenez Carezzato).
     * minor documentation fixes (patch by Slava Semushin)
     * add makefile actions to install KOI8RXTerm app-defaults file
       (patch by Julien Cristau).

                            Patch #230 - 2007/12/31

     * add quietGrab resource, which when true, suppresses cursor
       repainting
       when NotifyGrab and NotifyUngrab event types are received during
       change of focus (request by Nicolas George).
     * do not treat Unicode BIDI control characters as combining characters
       (Debian #457634).
     * add koi8rxterm, from Debian.
     * add manpage for uxterm, from Debian (Ubuntu #128136, Debian #438645)
     * remove ".xpm" suffixes from Icon filenames in desktop files since it
       confuses some lookups following the Icon Theme Specification (report
       by Slava Semushin)
     * correct width-calculation used for adjusting proportional fonts, to
       work with wide-characters (Debian #441354).
     * fixes/improvements for double-size characters:

          * correct old clipping calculation which used total height of
            glyphs where ascent was needed.
          * if bold font is unavailable, fall back to normal font
          * adjust to "work" with Xft (which does not support double-width
            single-height characters).
          * restore reset of doublesize for a line when it is cleared,
	    broken in patch #228.

     * modify logic for forceBoxChars resource when using TrueType fonts
       to be consistent with bitmap fonts
     * modify logic for forceBoxChars resource to make the "Line-Drawing
       Characters" menu entry use xterm's line-drawing characters even
       asked to draw wide line-drawing characters which are available in
       the font.
     * modify rectangle-support functions to preserve colors when
       filling/erasing (request by Enzo Toscano, to match WRQ Reflection
       behavior).
     * add getopt-parsing to tcapquery.pl, including feature to test the
       extended cursor/editing keys.
     * make missing double-width glyphs display as double-width (Debian
       #456236).
     * change tcap-fkeys and rectangles configure options to enable them
       by default.
     * hide the mouse pointer while user is typing (request by Rodolfo
       Borges).
     * extend configure options --enable-tcap-query and
       --enable-tcap-fkeys to send cursor- and editing-keypad keys
       modified according to the keyboard (or termcap) selection for
       shift, alt, control, meta.
     * modify kdch1 in termcap, e.g., xterm-r6 to match the terminfo file.
     * add -hm option to turn highlightColorMode on or off.
     * add highlightColorMode resource to separate the new
       (since patch #225)
       highlighting with both text- and background-colors (prompted by
       report/example by Thomas Wolff).
     * add Keep Selection menu entry to turn the keepSelection resource
       on/off at runtime.
     * add keepSelection resource, which when enabled, tells xterm to
       retain the X selection even after it stops highlighting it
       (patch by Sergey Vlasov).
     * extend the CSI > n sequence to allow disabling all types of
       modified-keys that the CSI > m sequence affects.
     * move include for <xtermcap.h> in resize.c to avoid redefinition of
       termios structure on OpenSolaris (report by Rahul Gopinathan Nair).
     * extend terminfo building blocks for modified editing keys to
       include all six keys.
     * synchronize terminfo with ncurses (report by Stephane Chazelas):

          * equate xterm-xfree86 and xterm-xf86-v44.
          * add ncurses extensions OTbs, AX, for termcap conversions.
          * make old/legacy entries such as xterm-24, xterm-65 and aliases
            xterms, vs100 inherit from xterm-old.
          * make xterm-r5 and xterm-r6 the same, ignoring historical
	    errors in X Consortium's version.

     * fix an ifdef in logic for selecting regular expressions while in a
       narrow-character locale (Debian #449227).

Revision 1.22 / (download) - annotate - [select for diffs], Mon Sep 17 06:36:21 2007 UTC (16 years, 6 months ago) by bjs
Branch: MAIN
CVS Tags: pkgsrc-2007Q4-base, pkgsrc-2007Q4, pkgsrc-2007Q3-base, pkgsrc-2007Q3
Changes since 1.21: +4 -4 lines
Diff to previous 1.21 (colored) to selected 1.31 (colored)



Update to version #229.  Too many changes to list here; please see
${WRKSRC}/xterm.log.html.  Additionally, the pkgsrc-specific
changes are:

-- Add an "xterm-toolbar" option and add it to PKG_DEFAULT_OPTIONS.  Now
   we may all enjoy pull-down menus.

-- In the ${X11_TYPE} == "modular" case, add --disable-imake and
   --enable-narrowproto to CONFIGURE_ARGS.  The latter fixes [possible]
   problems with Xaw scrollbars.

-- Add USE_DIRS+=xdg-1.4 to handle newly-provided xterm pixmaps.

-- Add build-time dependency on x11/libxkbfile to pull in XKB extension
   headers, e.g. ${X11BASE}/include/X11/extensions/XKBbells.h.  The XKB
   bell extension should now be properly detected and supported.

-  Add "pcre" option, thereby supporting devel/pcre as xterm's regex
   library.

Changes ok'd (more or less) by joerg@ and tested by me.  For more detail
wrt: rationale for --enable-narrowproto and/or libxkbfile dependency,
please contact me.

Revision 1.21 / (download) - annotate - [select for diffs], Tue Mar 13 11:14:26 2007 UTC (17 years ago) by drochner
Branch: MAIN
CVS Tags: pkgsrc-2007Q2-base, pkgsrc-2007Q2, pkgsrc-2007Q1-base, pkgsrc-2007Q1
Changes since 1.20: +4 -4 lines
Diff to previous 1.20 (colored) to selected 1.31 (colored)

update to 224
many minor fixes and improvements - see the changelog

Revision 1.20 / (download) - annotate - [select for diffs], Wed Apr 26 14:04:57 2006 UTC (17 years, 11 months ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2006Q4-base, pkgsrc-2006Q4, pkgsrc-2006Q3-base, pkgsrc-2006Q3, pkgsrc-2006Q2-base, pkgsrc-2006Q2
Changes since 1.19: +4 -4 lines
Diff to previous 1.19 (colored) to selected 1.31 (colored)

Update xterm to patch 212, featuring a number of small improvements,
bugfixes and portability fixes.

Revision 1.19 / (download) - annotate - [select for diffs], Thu Jan 19 20:23:33 2006 UTC (18 years, 2 months ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2006Q1-base, pkgsrc-2006Q1
Changes since 1.18: +4 -4 lines
Diff to previous 1.18 (colored) to selected 1.31 (colored)

Update to xterm patchset 208.

Changes include lastlogx support on NetBSD, portability fixes e.g. for
openpty and bugfixes.

Revision 1.18 / (download) - annotate - [select for diffs], Mon Oct 3 20:37:12 2005 UTC (18 years, 5 months ago) by reed
Branch: MAIN
CVS Tags: pkgsrc-2005Q4-base, pkgsrc-2005Q4
Changes since 1.17: +4 -4 lines
Diff to previous 1.17 (colored) to selected 1.31 (colored)

Update to 205, from maintainer.
The changes are detailed at
http://dickey.his.com/xterm/xterm.log.html
Some of the changes include:
    * for FreeBSD, drop setuid privileges after startup (XFree86 Bugzilla
       #878, report/patch by Alexander Pohoyda)
...
     * improve error-reporting when chown/chmod of the pseudo-terminal fails,
       e.g., if a copy of xterm which was designed to work with old-style
       pseudo-terminals is not installed setuid or setgid (report by Jeremy
       C. Reed).
and many others.

Revision 1.17 / (download) - annotate - [select for diffs], Sun Aug 28 17:58:16 2005 UTC (18 years, 7 months ago) by minskim
Branch: MAIN
CVS Tags: pkgsrc-2005Q3-base, pkgsrc-2005Q3
Changes since 1.16: +4 -7 lines
Diff to previous 1.16 (colored) to selected 1.31 (colored)

Update xterm to 203.

Changes:
  - pkgsrc patches for Darwin and DragonFlyBSD were incorporated.
  - Many bug fixes and improvements.  See
    http://dickey.his.com/xterm/xterm.log.html for the complete list.

Revision 1.15.2.1 / (download) - annotate - [select for diffs], Thu Jul 21 19:03:49 2005 UTC (18 years, 8 months ago) by snj
Branch: pkgsrc-2005Q2
Changes since 1.15: +2 -1 lines
Diff to previous 1.15 (colored) next main 1.16 (colored) to selected 1.31 (colored)

Pullup ticket 592 - requested by Min Sik Kim
portability fix for xterm

Revisions pulled up:
- pkgsrc/x11/xterm/distinfo		1.16
- pkgsrc/x11/xterm/patches/patch-ac	1.4

    Module Name:   pkgsrc
    Committed By:  minskim
    Date:          Thu Jun 30 05:05:37 UTC 2005

    Modified Files:
        pkgsrc/x11/xterm: distinfo
    Added Files:
        pkgsrc/x11/xterm/patches: patch-ac

    Log Message:
    setpgrp(pid_t, pid_t) is not available on Darwin-8.x.  Use setpgid
    instead.

Revision 1.16 / (download) - annotate - [select for diffs], Thu Jun 30 05:05:37 2005 UTC (18 years, 9 months ago) by minskim
Branch: MAIN
Changes since 1.15: +2 -1 lines
Diff to previous 1.15 (colored) to selected 1.31 (colored)

setpgrp(pid_t, pid_t) is not available on Darwin-8.x.  Use setpgid instead.

Revision 1.15 / (download) - annotate - [select for diffs], Sat Jun 4 17:42:32 2005 UTC (18 years, 9 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2005Q2-base
Branch point for: pkgsrc-2005Q2
Changes since 1.14: +4 -4 lines
Diff to previous 1.14 (colored) to selected 1.31 (colored)

Update to 202, provided by Jeroen Ruigrok van der Werven in private mail.
Add some options to the package.

Changes:

    * add extended shift- and control-modifier cursor keys to "xterm+pcfkeys"
      terminfo entry to correspond to ncurses 20050430 patch.
    * fix a rare case where text would be written with the wrong colors because
      output of scrolled text would reset the colors and the new text would be
      written with the same colors
    * add environment variables $XTERM_SHELL and $XTERM_VERSION
    * corrected workaround for background color of menubar, which gave a
      too-broad expression, coloring the background of the VT100 widget unless
      overridden by another resource setting.
    * correct an error in the logic which decides when sched_yield() is run; it
      would occasionally hang when contending with other pseudo-terminal
      applications such as screen
    * improve resource files to show how the menubar and popup menus can be
      colored
    * modify parsing of OSC (and SOS, etc), strings so their contents are not
      interpreted as UTF-8. This allows non-ASCII title strings to be set,
      provided that the window manager complies (report by Thomas Wolff).
    * improved some of the built-in line-drawing glyphs.
    * correct color of "box" character drawn for line-drawing glyph 1 (report
      by Nicolas George).
    * improve behavior when switching to UTF-8 mode after startup so xterm will
      check if the current fonts are already wide (ISO10646-1). If they are not,
      xterm will use the utf8Fonts subresource to load appropriate fonts
    * modify logic for setting title-string so it applies to the current widget
      rather than the vt100 widget.
    * correct computation of width for wide characters with the invisible
      attribute
    * modify interaction between +u8 and locale resource to allow the
      command-line option to override the resource
    * ignore error in the I/O initialization that tries to set the tty to 7-bit
      input for the case where eightBitInput resource is false
    * modify command-processing to accept an optional parameter that tells
      xterm which shell program to use
    * correct logic of ReallocateBufOffsets() which did not copy the content of
      the old screen buffer to the proper location, making a repaint clear
      after switching to wide-character mode
    * implement the remaining pieces to make xterm allocate cells for
      wide-characters when the "UTF-8" menu entry is selected. Also, load the
      UTF-8 font when that menu entry is selected, or the escape sequence for
      UTF-8 mode is received

Revision 1.14 / (download) - annotate - [select for diffs], Wed May 25 02:55:01 2005 UTC (18 years, 10 months ago) by reed
Branch: MAIN
Changes since 1.13: +3 -1 lines
Diff to previous 1.13 (colored) to selected 1.31 (colored)

Add patch-aa and patch-ab for DragonFly support.
This is from Joerg Sonnenberger via PR #30256.

(I redid patch-aa and my patch sums were different too.)

Revision 1.13 / (download) - annotate - [select for diffs], Wed Feb 23 17:36:25 2005 UTC (19 years, 1 month ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2005Q1-base, pkgsrc-2005Q1
Changes since 1.12: +2 -1 lines
Diff to previous 1.12 (colored) to selected 1.31 (colored)

Add RMD160 checksums to the SHA1 ones.

Revision 1.12 / (download) - annotate - [select for diffs], Mon Feb 14 22:46:50 2005 UTC (19 years, 1 month ago) by minskim
Branch: MAIN
Changes since 1.11: +3 -4 lines
Diff to previous 1.11 (colored) to selected 1.31 (colored)

Update xterm to 200.

Changes:

    * increase color pairs value for xterm-256color and xterm-88color
      to match ncurses, which has an experimental option to support this.

    * modify ifdef's to make AIX use termios rather than termio; the
      struct sizes for the two were not the same.

    * improve CF_WITH_IMAKE_CFLAGS configure macro script for
      OSMAJORVERSION and OSMINORVERSION values, e.g., for Tru64 and AIX.

    * modify ifdef to define USE_POSIX_TERMIOS for Darwin (patch by
      Min Sik Kim).

    * modify find_utmp() to initialize the whole utmpx struct (except
      ut_id), since that is needed for OSF1 4.0D to prevent an infinite loop
      on exit.

    * add configure check before adding -D_POSIX_SOURCE since some
      platforms predefine it, e.g., cygwin.

    * add simplified sed expressions in CF_IMAKE_CFLAGS configure
      script macro to ensure value for PROJECTROOT is quoted on Solaris,
      i.e., when nested \( and \) are not interpreted correctly.

    * correct DEC rectangle operations to reset state after completing
      the operations.

    * modify CASE_ST handling in charproc.c to ensure that the parse
      state is reset even if xterm is not currently processing an OSC or
      other string (patch by Johnny Billquist forwarded by Matthias Scheler,
      NetBSD xsrc/29003).

    * fix OS/2 build for innotek_libc (patch by David Yeo).

    * fix a regression from patch #197 fix for Debian #277832 which
      disowned the selection if it was scrolled, e.g., by the user pressing
      return at the bottom of the screen (Debian #291787).

    * move the warning/exit for missing $DISPLAY into the error
      handler in case -display is given, and the connect fails for some
      other reason.

Revision 1.11 / (download) - annotate - [select for diffs], Sat Feb 5 06:22:51 2005 UTC (19 years, 1 month ago) by minskim
Branch: MAIN
Changes since 1.10: +2 -1 lines
Diff to previous 1.10 (colored) to selected 1.31 (colored)

Make xterm build on Darwin by defining USE_POSIX_TERMIOS as on other
BSDs.

Revision 1.10 / (download) - annotate - [select for diffs], Sat Feb 5 06:00:48 2005 UTC (19 years, 1 month ago) by minskim
Branch: MAIN
Changes since 1.9: +3 -3 lines
Diff to previous 1.9 (colored) to selected 1.31 (colored)

Update xterm to 199.

Changes since 197:

    * instead of setting $DISPLAY, check for the unset variable and
     warn/exit on this condition (comments by H Merijn Brand and
     Bernhard R Link).

    * fix a typo in Imakefile from patch #198 (reports/patches by
     Stefan Dirsch, and Mike Castle).

    * add utmpDisplayId resource to allow users to control whether the
     display identifier (display number and screen number) are
     retained in the connection information recorded in utmp
     (discussion with Edoardo Tirtarahardja).

    * add bellOnReset resource to allow users to disable bell which
     sounds on hard reset since patch #183 changes to DECSCL
     (discussion with Danek Duvall).

    * improve $WINDOWID for configuration with toolbar by making it
     refer to the top-level shell rather than the parent of the
     current window. For that case, the parent is a form widget,
     which does not have a name, which made the $WINDOWID not very
     useful as a parameter for xwininfo (suggested by Dave
     Bodenstab).

    * fix a typo in WhichVFont() macro from patch #197 changes which
     broke the --disable-active-icon configuration (report by Ralf
     S. Engelschall).

    * improve some limit checks (Gentoo Bugzilla #75604).

    * add --disable-setuid option to configure script (Gentoo Bugzilla #76453).

    * add --disable-full-tgetent option to configure script, allowing
     one to ignore a termcap library in favor of ncurses/curses
     (Gentoo Bugzilla #69926).

    * modify configure script to choose useful warning options for
     Intel version 8.0 compiler.

    * update config.guess, config.sub

    * make active-icon work properly when TrueType fonts are used
     (Debian #286068).

    * correct change from patch #157 which uses getlogin() to check
     for an alias; the storage used for the related getpwuid() call
     was overwritten by the data used for comparison (patch by Per
     Hedeland).

    * correct case of SCS for character set 0 (line-drawing) to allow
     it to be selected into GR.

    * fix a file-descriptor leak (Redhat Bugzilla #139597).

    * modify creat_as() to only fork if xterm is actually running as
     setuid and/or setgid. This works around a Cygwin bug which hangs
     when logging is enabled and makes xterm a little faster for
     systems using interfaces such as utempter (report by Al
     Goodman).

    * modify Cleanup() to avoid operations such as X calls that might
     use unsafe functions when it is called by a signal handler
     (report by Michiel Boland).

    * fix bugs in patch #191 and in SRM changes from patch #197 that
     broke DECSET 38: switch to Tek4014 emulation (report by Dave
     Bodenstab).

    * fix for manpage escapes (Marc La France).

    * improve on IRIX-specific change for Imakefile in XFree86 CVS
     versus resize linking against termcap library to reflect
     definitions for USE_TERMCAP in resize.c

Revision 1.9 / (download) - annotate - [select for diffs], Tue Dec 21 17:24:48 2004 UTC (19 years, 3 months ago) by minskim
Branch: MAIN
Changes since 1.8: +3 -8 lines
Diff to previous 1.8 (colored) to selected 1.31 (colored)

Update xterm to 197.

Mainly bug fixes.  See http://dickey.his.com/xterm/xterm.log.html
for the complete changelog.

Revision 1.8 / (download) - annotate - [select for diffs], Thu Dec 16 16:25:09 2004 UTC (19 years, 3 months ago) by minskim
Branch: MAIN
CVS Tags: pkgsrc-2004Q4-base, pkgsrc-2004Q4
Changes since 1.7: +3 -3 lines
Diff to previous 1.7 (colored) to selected 1.31 (colored)

Use distfile with a version number in its filename (xterm-196.tgz).
The previous distfile (xterm.tar.gz) was updated to the new version
(197).

Revision 1.7 / (download) - annotate - [select for diffs], Thu Oct 21 07:51:14 2004 UTC (19 years, 5 months ago) by minskim
Branch: MAIN
Changes since 1.6: +2 -1 lines
Diff to previous 1.6 (colored) to selected 1.31 (colored)

Use POSIX termios on Interix.

Revision 1.6 / (download) - annotate - [select for diffs], Thu Oct 21 07:39:43 2004 UTC (19 years, 5 months ago) by minskim
Branch: MAIN
Changes since 1.5: +5 -5 lines
Diff to previous 1.5 (colored) to selected 1.31 (colored)

Use initgroups(3) only when it is available.

Revision 1.5 / (download) - annotate - [select for diffs], Sat Oct 16 21:47:37 2004 UTC (19 years, 5 months ago) by minskim
Branch: MAIN
Changes since 1.4: +2 -1 lines
Diff to previous 1.4 (colored) to selected 1.31 (colored)

Add patch missed in the previous commit, which replaces setpgrp with
setpgid when setpgrp is not available.

Revision 1.4 / (download) - annotate - [select for diffs], Sat Oct 16 18:19:54 2004 UTC (19 years, 5 months ago) by minskim
Branch: MAIN
Changes since 1.3: +4 -1 lines
Diff to previous 1.3 (colored) to selected 1.31 (colored)

Use setpgid(3) if setpgrp(3) is not available (e.g. on Interix).

Revision 1.3 / (download) - annotate - [select for diffs], Mon Aug 16 04:53:46 2004 UTC (19 years, 7 months ago) by minskim
Branch: MAIN
CVS Tags: pkgsrc-2004Q3-base, pkgsrc-2004Q3
Changes since 1.2: +3 -3 lines
Diff to previous 1.2 (colored) to selected 1.31 (colored)

Update xterm to 196.

Changes since 188:
  - Many bug fixes and enhancements.  See the following web page for
  the complete list.
    http://dickey.his.com/xterm/xterm.log.html

Revision 1.2 / (download) - annotate - [select for diffs], Fri May 14 11:24:49 2004 UTC (19 years, 10 months ago) by grant
Branch: MAIN
CVS Tags: pkgsrc-2004Q2-base, pkgsrc-2004Q2
Changes since 1.1: +3 -3 lines
Diff to previous 1.1 (colored) to selected 1.31 (colored)

Updated xterm to 188.

Package changes:

- use buildlink3.
- use GNU configure instead of imake.
- use official MASTER_SITE.
- external Xpoll.h no longer needed.
- remove ONLY_FOR_PLATFORM.

Major changes since 164 are lengthy and can be found at:

	http://invisible-island.net/xterm/xterm.log.html

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Mon Dec 17 14:34:17 2001 UTC (22 years, 3 months ago) by tron
Branch: TNF
CVS Tags: pkgviews-base, pkgviews, pkgsrc-base, pkgsrc-2004Q1-base, pkgsrc-2004Q1, pkgsrc-2003Q4-base, pkgsrc-2003Q4, netbsd-1-6-RELEASE-base, netbsd-1-6-1-base, netbsd-1-6-1, netbsd-1-6, netbsd-1-5-PATCH003, buildlink2-base, buildlink2
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (colored) to selected 1.31 (colored)

Import new Solaris only "xterm" package:
Latest terminal emulator for the X Window System

Revision 1.1 / (download) - annotate - [select for diffs], Mon Dec 17 14:34:17 2001 UTC (22 years, 3 months ago) by tron
Branch: MAIN
Diff to selected 1.31 (colored)

Initial revision

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.




CVSweb <webmaster@jp.NetBSD.org>