Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

tmux-3.5a-1.1 RPM for riscv64

From OpenSuSE Ports Tumbleweed for riscv64

Name: tmux Distribution: openSUSE Tumbleweed
Version: 3.5a Vendor: openSUSE
Release: 1.1 Build date: Sat Oct 5 09:38:40 2024
Group: System/Console Build host: reproducible
Size: 1122164 Source RPM: tmux-3.5a-1.1.src.rpm
Packager: https://bugs.opensuse.org
Url: https://tmux.github.io/
Summary: Terminal multiplexer
tmux is a terminal multiplexer: it enables a number of terminals (or windows),
each running a separate program, to be created, accessed, and controlled from a
single screen. tmux may be detached from a screen and continue running in the
background, then later reattached. tmux is intended to be a modern,
BSD-licensed alternative to programs such as GNU screen.

tmux uses a client-server model. The server holds multiple sessions and each
window is a independent entity which may be freely linked to multiple sessions,
moved between sessions and otherwise manipulated. Each session may be attached
to (display and accept keyboard input from) multiple clients.

Provides

Requires

License

ISC AND BSD-3-Clause AND BSD-2-Clause

Changelog

* Sat Oct 05 2024 Fredrik Lönnegren <fredrik.lonnegren@suse.com>
  - tmux 3.5a:
    * Do not translate BSpace as Unicode with extended keys.
    * Fix so that keys with Shift are represented correctly with extended keys.
    * Revert to using /bin/sh for #() and run-shell and if-shell; the change to
      use default-shell only applies now to popups.
    * Fix grey colour without a number suffix in styles.
* Mon Sep 30 2024 Fredrik Lönnegren <fredrik.lonnegren@suse.com>
  - tmux 3.5:
    * Revamp extended keys support to more closely match xterm and support mode 2
      as well as mode 1. This is a substantial change to key handling which
      changes tmux to always request mode 2 from parent terminal, changes to an
      unambiguous internal representation of keys, and adds an option
      (extended-keys-format) to control the format similar to the xterm(1)
      formatOtherKeys resource.
    * Clear an overlay (popup or menu) when command prompt is entered.
    * Add copy-mode -d flag to scroll a page down if in copy mode already
      (matching -e).
    * Display hyperlinks in copy mode and add copy_cursor_hyperlink format to get
      the hyperlink under the cursor.
    * Add a prefix timeout option.
    * Mouse move keys are not useful as key bindings because we do not turn them
      on unless the application requests them. Ignore them so they do not cause
      the prefix to be canceled
    * Add search_count and search_count_partial formats in copy mode.
    * Do not reset mouse pane if clicked on status line,
    * Add mirrored versions of the main-horizontal and main-vertical layouts
      where the main pane is bottom or right instead of top or left.
    * Allow REP to work with Unicode characters.
    * Fix size calculation of terminators for clipboard escape sequences.
    * Treat CRLF as LF in config files where it is easy to do so.
    * The Linux console has some bugs with bright colours, so add some
      workarounds for it.
    * If built with systemd, remove some environment variables it uses.
    * Adjust the logic when deleting last buffer to better preserve the
      selection: if selecting the element below the deleted one fails (because as
      the last one), select the one above it instead.
    * Add --enable-jemalloc to build with jemalloc memory allocator (since glibc
      malloc is so poor).
    * Add a way (refresh-client -r) for control mode clients to provide OSC 10
      and 11 responses to tmux so they can set the default foreground and
      background colours.
    * Add N to search backwards in tree modes.
    * Use default-shell for command prompt, #() and popups.
    * Revert part of a change intended to improve search performance by skipping
      parts of lines already searched, but which in fact skipped the ends of
      lines altogether.
    * Add a command-error hook when a command fails.
    * Add an option allow-set-title to forbid applications from changing the pane
      title.
    * Correct handling of mouse up events (don't ignore all but the last released
      button), and always process down event for double click.
    * Fix a crash if focusing a pane that is exiting.
    * Pick newest session (as documented) when looking for next session for
      detach-on-destroy.
    * Reduce default escape-time to 10 milliseconds.
    * Add display-menu -M to always turn mouse on in a menu.
    * Look for feature code 21 for DECSLRM and 28 for DECFRA in the device
      attributes and also accept level 1.
    * Fix crash if built with SIXEL and the SIXEL colour register is invalid;
      also remove SIXEL images before reflow.
    * Do not notify window-layout-changed if the window is about to be destroyed.
    * Do not consider a selection present if it is empty for the selection_active
      and selection_present format variables.
    * Fix split-window -p.
* Fri Feb 16 2024 Andreas Stieger <andreas.stieger@gmx.de>
  - tmux 3.4
    * Improve handling of newer Unicode combined characters
    * Add basic support for SIXEL images
    * Add support for spawning panes in separate cgroups with systemd
    * Add support for OSC 8 hyperlinks.
    * Expanded configuration options
    * Improved detection and support of terminal options
    * Tweaks to UI and behavior
  - drop patches:
    * ncurses.patch
    * tmux-CVE-2022-47016.patch
* Tue May 02 2023 Ondřej Súkup <mimi.vx@gmail.com>
  - add ncurses.patch for compactibility with new ncurses
    fixes boo#1210552
* Fri Mar 10 2023 Dirk Müller <dmueller@suse.com>
  - disable utf8proc (following upstreams not use it by default
    on non-macOS)
* Mon Jan 23 2023 pgajdos@suse.com
  - security update
  - added patches
    fix CVE-2022-47016 [bsc#1207393], Null pointer dereference in window.c
    + tmux-CVE-2022-47016.patch
* Mon Jul 25 2022 Dirk Müller <dmueller@suse.com>
  - switch to screen-256color as default terminal to fix incompatibility
    with yast2-ruby-testsuite
* Fri Jul 08 2022 llyyr <llyyr.public@gmail.com>
  - update to 3.3a:
    * Do not crash when run-shell produces output from a config file.
    * Do not unintentionally turn off all mouse mode when button mode is also
      present.
* Sat Jun 04 2022 Dirk Müller <dmueller@suse.com>
  - update to 3.3:
    * Add an ACL list for users connecting to the tmux socket. Users may be
      forbidden from attaching, forced to attach read-only, or allowed to attach
      read-write. A new command, server-access, configures the list. File system
      permissions must still be configured manually.
    * Emit window-layout-changed on swap-pane.
    * Better error reporting when applying custom layouts.
    * Handle ANSI escape sequences in run-shell output.
    * Add pane_start_path to match start_command.
    * Set PWD so shells have a hint about the real path.
    * Do not allow pipe-pane on dead panes.
    * Do not report mouse positions (incorrectly) above the maximum of 223 in
      normal mouse mode.
    * Add an option (default off) to control the passthrough escape sequence.
    * Support more mouse buttons when the terminal sends them.
    * Add a window-resized hook which is fired when the window is actually resized
      which may be later than the client resize.
    * Add next_session_id format with the next session ID.
    * Add formats for client and server UID and user.
    * Add argument to refresh-client -l to forward clipboard to a pane.
    * Add remain-on-exit-format to set text shown when pane is dead.
    * With split-window -f use percentages of window size not pane size.
    * Add an option (fill-character) to set the character used for unused areas of
      a client.
    * Add an option (scroll-on-clear) to control if tmux scrolls into history on
      clear.
    * Add a capability for OSC 7 and use it similarly to how the title is set (and
      controlled by the same set-titles option).
    * Add support for systemd socket activation (where systemd creates the Unix
      domain socket for tmux rather than tmux creating it). Build with
    - -enable-systemd.
    * Add an option (pane-border-indicators) to select how the active pane is shown
      on the pane border (colour, arrows or both).
    * Support underscore styles with capture-pane -e.
    * Make pane-border-format a pane option rather than window.
    * Respond to OSC 4 queries
    * Fix g/G keys in modes to do the same thing as copy mode (and vi).
    * Bump the time terminals have to respond to device attributes queries to three
      seconds.
    * If automatic-rename is off, allow the rename escape sequence to set an empty
      name.
    * Trim menu item text more intelligently.
    * Add cursor-style and cursor-colour options to set the default cursor style
      and colour.
    * Accept some useful and non-conflicting emacs keys in vi normal mode at the
      command prompt.
    * Add a format modifier (c) to force a colour to RGB.
    * Add -s and -S to display-popup to set styles, -b to set lines and -T to set
      popup title. New popup-border-lines, popup-border-style and popup-style
      options set the defaults.
    * Add -e flag to set an environment variable for a popup.
    * Make send-keys without arguments send the key it is bound to (if bound to a
      key).
    * Try to leave terminal cursor at the right position even when tmux is drawing
      its own cursor or selection (such as at the command prompt and in choose
      mode) for people using screen readers and similar which can make use of it.
    * Change so that {} is converted to tmux commands immediately when parsed. This
      means it must contain valid tmux commands. For commands which expand %% and
      %%%, this now only happens within string arguments. Use of nested aliases
      inside {} is now forbidden. Processing of commands given in quotes remains
      the same.
    * Disable evports on SunOS since they are broken.
    * Do not expand the file given with tmux -f so it can contain :s.
    * Bump FORMAT_LOOP_LIMIT and add a log message when hit.
    * Add a terminal feature for the mouse (since FreeBSD termcap does not have kmous).
    * Forbid empty session names.
    * Improve error reporting when the tmux /tmp directory cannot be created or
      used.
    * Give #() commands a one second grace period where the output is empty before
      telling the user they aren't doing anything ("not ready").
    * When building, pick default-terminal from the first of tmux-256color, tmux,
      screen-256color, screen that is available on the build system (--with-TERM
      can override).
    * Do not close popups on resize, instead adjust them to fit.
    * Add a client-active hook.
    * Make window-linked and window-unlinked window options.
    * Do not configure on macOS without the user making a choice about utf8proc
      (either --enable-utf8proc or --disable-utf8proc).
    * Do not freeze output in panes when a popup is open, let them continue to
      redraw.
    * Add pipe variants of the line copy commands.
    * Change copy-line and copy-end-of-line not to cancel and add -and-cancel
      variants, like the other copy commands.
    * Support the OSC palette-setting sequences in popups.
    * Add a pane-colours array option to specify the defaults palette.
    * Add support for Unicode zero-width joiner.
    * Make newline a style delimiter as well so they can cross multiple lines for
      readability in configuration files.
    * Change focus to be driven by events rather than scanning panes so the
      ordering of in and out is consistent.
    * Add display-popup -B to open a popup without a border.
    * Add a menu for popups that can be opened with button three outside the popup
      or on the left or top border. Resizing now only works on the right and bottom
      borders or when using Meta. The menu allows a popup to be closed, expanded to
      the full size of the client, centered in the client or changed into a pane.
    * Make command-prompt and confirm-before block by default (like run-shell). A
      new -b flags runs them in the background as before. Also set return code for
      confirm-before.
    * Change cursor style handling so tmux understands which sequences contain
      blinking and sets the flag appropriately, means that it works whether cnorm
      disables blinking or not. This now matches xterm's behaviour.
    * More accurate vi(1) word navigation in copy mode and on the status line. This
      changes the meaning of the word-separators option: setting it to the empty
      string is equivalent to the previous behavior.
    * Add -F for command-prompt and use it to fix "Rename" on the window menu.
    * Add different command histories for different types of prompts ("command",
      "search" etc).
  - tmux-socket-path.patch: refresh
  - build with utf8proc enabled
  - set default TERM to recommended tmux-256colors
* Sat Jun 26 2021 Andreas Stieger <andreas.stieger@gmx.de>
  - update to 3.2a:
    * Add an "always" value for the "extended-keys" option; if set
      then tmux will forward extended keys to applications even if
      they do not request them.
    * Add a "mouse" terminal feature so tmux can enable the mouse on
      terminals where it is known to be supported even if
      terminfo(5) says otherwise.
    * Do not expand the filename given to -f so it can contain
      colons.
    * Fixes for problems with extended keys and modifiers, scroll
      region, source-file, crosscompiling, format modifiers and other
      minor issues.
* Sat May 08 2021 Dirk Müller <dmueller@suse.com>
  - refresh tmux-socket-path.patch:
    restore ability to overwrite socket path using $TMUX_TMPDIR (bsc#1185572)
* Sat Apr 17 2021 Dirk Müller <dmueller@suse.com>
  - update to 3.2:
    * status-fg and status-bg are now applied before status-style rather than instead
      of; this means that if either is set to default the status-style colour will be
      used. To fix, replace status-bg default with status-style bg=default.
    * How data is sent to control mode clients has been completely revamped to both
      be more fair with multiple panes and to prevent huge amounts of data being
      backed up; this feature is used by default when tmux is attached with the
      latest iTerm2 nightly builds.
    * Configuration file parsing has changed slightly: the contents of the new {}
      syntax introduced in 3.1 must now be valid tmux command syntax; and to allow
      formats to be annotated, strings given with quotes may now contain newlines
      (leading spaces and comments are stripped).
    * A new customize mode available with C-b C (C-b S-c) which allows options and
      key bindings to be browsed and changed interactively.
    * Support for extended keys offered by some terminals (xterm, mintty, iTerm2),
      see https://github.com/tmux/tmux/wiki/Modifier-Keys#extended-keys.
    * A pane-border-lines option to change the characters used to draw the pane
      border separators.
    * How UTF-8 data is stored has been rewritten to reduce memory use for characters
      in the BMP.
    * The message log (C-b ~) has been changed to be per server instead of per client
      and to have some useful content.
    * Client flags have been extended (refresh-client -F becomes -f and also added
      for attach-session and new-session), and a read-only flag added (same as -r to
      attach-session).
    * A new active-pane client flag that if given allows a client to have its own
      active pane for each window rather than being tied to the server's active pane.
    * Improved command-prompt completion including showing a menu of completions.
    * All style options can now be formats, for example the default
      pane-active-border-style now changes colour depending on pane_in_mode and
      synchronize-panes.
    * Search match count has come back in copy mode, as well as performance
      improvements and additional styles for marking of search terms.
    * Try $XDG_CONFIG_HOME/tmux/tmux.conf as well as ~/.config/tmux/tmux.conf.
    * Window and pane hooks such as window-layout-changed and pane-exited are now
      window or pane options instead of session options.
    * copy-pipe and friends can now be given with no arguments in which case they get
      the command from a new copy-command option. The default copy commands all now
      use copy-pipe. This makes it much easier to configure copy-pipe for all copy
      key bindings.
    * Terminal detection and feature code has been rewritten. tmux now collects sets
      of related terminfo(5) capabilties together with sensible default values into
      named "terminal features" which makes them easier to configure via a new
      terminal-features option or -T flag to tmux itself. tmux can detect and will
      automatically configure a number of common, modern terminal emulators.
    * Support for per-client overlay popups with a new display-popup command. A popup
      is also used for an e key binding in buffer mode to edit a buffer using the
      editor given in the new editor option (filled in from the EDITOR or VISUAL
      environment variables by default).
    * DoubleClick and TripleClick mouse key bindings have changed so that only one is
      fired. Behaviour similar to the old double-click key binding is now available
      as SecondClick. There are now default double- and triple-click bindings to copy
      a word or line, and a default middle-click binding to paste the top buffer.
    * When a server socket is given with -S, it is now created with umask 177 rather
      than 117.

Files

/run/tmux
/usr/bin/tmux
/usr/lib/tmpfiles.d/tmux.conf
/usr/share/bash-completion/completions/tmux
/usr/share/doc/packages/tmux
/usr/share/doc/packages/tmux/CHANGES
/usr/share/licenses/tmux
/usr/share/licenses/tmux/COPYING
/usr/share/man/man1/tmux.1.gz


Generated by rpm2html 1.8.1

Fabrice Bellet, Wed Nov 13 00:41:02 2024