Upstream changes:
(from http://joewing.net/projects/jwm/release-2.3.shtml#v2.3.7 )
Changes in 2.3.7 (20170721)
* Made the modifier for dragging a window by clicking its contents
configurable via the mask attribute of the MoveMode tag (issue #324).
* Added group options for setting initial window position and size
(issues #79 and #348).
* Added the clicktitle and sloppytitle options for FocusModel, which cause
windows to be raised only when the title or border of the window is clicked
(issue #286).
* Fixed scaling of icons in the task bar (issue #328).
* Added the decorations attribute to TaskListStyle to allow setting different
decorations on tray buttons and task list buttons (issue #330).
* Fixed a bug with the nextstacked key binding (issue #335).
* Improved support for 3-digit hexcode colors (issue #336).
* Better aerosnap support on multiple monitors (issue #342).
* Fixed a bug with multiple separators in menus (issue #343).
* Fixed a bug with blank trays when there are full screen windows
(issue #356).
* Added the spacing attribute to Dock to allow adding space between icons in
the dock (issue #357).
* Added support for dynamic root menus via the dynamic attribute of RootMenu
(issue #221).
* Fixed an issue with 32-bit TrueColor visuals on some platforms.
* Fixed an issue with menus and multiple monitors (issue #384).
* It is (once again) possible to disable desktop switching by scrolling on
the desktop using an empty root menu (issue #366).
python 3 is strict about file encodings. After glib-mkenums was
translated from perl to python, build failures occur due to e.g.,
ISO-8859-1 characters in authors' names as reported by martin@ in
PR pkg/52631 for xfce4-gtk2-engines, but also causing build failures
for at least libgnome and libgnomeui.
Chritoph Reiter produced an elegant workaround, making use of the
open() function's error decoding "replace" option:
'replace' causes a replacement marker (such as '?') to be inserted
where there is malformed data.
which is applied here.
https://bugzilla.gnome.org/show_bug.cgi?id=785113#c27
* amsmath.dtx: ensure that overfull alignments give warnings in more cases
* amsmath.dtx: move the nulldelimiterspace correction for closing
delimiters in \genfrac for extended TeXs to the line before
\nulldelimiterspace is locally set to 0pt.
Bugfixes and enhancements:
-- bugfix for footnotes in \frquote{} (lualatex);
-- more sensible warnings about loading of captions.sty, fontspec.sty,
etc.; -- nobreak spaces added by babel-french are now properly
converted to HTML by lwarp (pdftex and xetex engines only); -- new
experimental option `UnicodeNoBreakSpaces' for luatex.
* New symbols: \Sleepey and \dSleepey
* New symbol: \SchrodingersCat (Is it dead, unknown or alive? You decide!)
* New option: 'global-scale', scale all symbols by a given number
* New option: 'symbol-scale', scale specific symbols by a given number
* Option 'usebox' can now be used during the document
CHANGES IN R 3.4.2:
NEW FEATURES:
* Setting the LC_ALL category in Sys.setlocale() invalidates any
cached locale-specific day/month names and the AM/PM indicator
for strptime() (as setting LC_TIME has since R 3.1.0).
* The version of LAPACK included in the sources has been updated to
3.7.1, a bug-fix release.
* The default for tools::write_PACKAGES(rds_compress=) has been
changed to "xz" to match the compression used by CRAN.
* c() and unlist() are now more efficient in constructing the
names(.) of their return value, thanks to a proposal by Suharto
Anggono. (PR#17284)
CHANGES IN R 3.4.0:
SIGNIFICANT USER-VISIBLE CHANGES:
* (Unix-alike) The default methods for download.file() and url()
now choose "libcurl" except for file:// URLs. There will be
small changes in the format and wording of messages, including in
rare cases if an issue is a warning or an error. For example,
when HTTP re-direction occurs, some messages refer to the final
URL rather than the specified one.
Those who use proxies should check that their settings are
compatible (see ?download.file: the most commonly used forms work
for both "internal" and "libcurl").
* table() has been amended to be more internally consistent and
become back compatible to R <= 2.7.2 again. Consequently,
table(1:2, exclude = NULL) no longer contains a zero count for
<NA>, but useNA = "always" continues to do so.
* summary.default() no longer rounds, but its print method does
resulting in less extraneous rounding, notably of numbers in the
ten thousands.
* factor(x, exclude = L) behaves more rationally when x or L are
character vectors. Further, exclude = <factor> now behaves as
documented for long.
* Arithmetic, logic (&, |) and comparison (aka 'relational', e.g.,
<, ==) operations with arrays now behave consistently, notably
for arrays of length zero.
Arithmetic between length-1 arrays and longer non-arrays had
silently dropped the array attributes and recycled. This now
gives a warning and will signal an error in the future, as it has
always for logic and comparison operations in these cases (e.g.,
compare matrix(1,1) + 2:3 and matrix(1,1) < 2:3).
* The JIT ('Just In Time') byte-code compiler is now enabled by
default at its level 3. This means functions will be compiled on
first or second use and top-level loops will be compiled and then
run. (Thanks to Tomas Kalibera for extensive work to make this
possible.)
For now, the compiler will not compile code containing explicit
calls to browser(): this is to support single stepping from the
browser() call.
JIT compilation can be disabled for the rest of the session using
compiler::enableJIT(0) or by setting environment variable
R_ENABLE_JIT to 0.
* xtabs() works more consistently with NAs, also in its result no
longer setting them to 0. Further, a new logical option addNA
allows to count NAs where appropriate. Additionally, for the
case sparse = TRUE, the result's dimnames are identical to the
default case's.
* Matrix products now consistently bypass BLAS when the inputs have
NaN/Inf values. Performance of the check of inputs has been
improved. Performance when BLAS is used is improved for
matrix/vector and vector/matrix multiplication (DGEMV is now used
instead of DGEMM).
One can now choose from alternative matrix product
implementations _via_ options(matprod = ). The "internal"
implementation is not optimized for speed but consistent in
precision with other summations in R (using long double
accumulators where available). "blas" calls BLAS directly for
best speed, but usually with undefined behavior for inputs with
NaN/Inf.
NEW FEATURES:
* User errors such as integrate(f, 0:1, 2) are now caught.
* Add signature argument to debug(), debugonce(), undebug() and
isdebugged() for more conveniently debugging S3 and S4 methods.
(Based on a patch by Gabe Becker.)
* Add utils::debugcall() and utils::undebugcall() for debugging the
function that would be called by evaluating the given expression.
When the call is to an S4 generic or standard S3 generic,
debugcall() debugs the method that would be dispatched. A number
of internal utilities were added to support this, most notably
utils::isS3stdGeneric(). (Based on a patch by Gabe Becker.)
And many more - see the NEWS file for details.
Notable changes:
* C++
- Proto3 messages are now able to preserve unknown fields.
- Packable proto3 fields are now packed by default in serialization.
* Python
- SerializeToString API is changed to SerializeToString(self, **kwargs).
- Added sort_keys parameter in json format to make the output
deterministic.
Changes noted in doc/en/RelaseNote:
ver 3.8.3
* Add "trim_trailing_newline_in_pasting" / --trim option which removes trailing
newline characters in pasting text.
* Add "broadcast" / --bc option which broadcasts input or pasted characters to
all ptys whose value of "ignore_broadcasted_chars" option is false.
* Add "ignore_broadcasted_chars" / --ibc option.
* Add "Next pty", "Previous pty" and "Close screen" to context menu on Android.
* Add "next_pty", "prev_pty" and "close_screen" to OSC 5379.
* Add "fontconfig" to OSC 5380.
* Support libssh2 on MacOSX/Cocoa.
* Support ModifyCursorKeys and ModifyFunctionKeys of xterm.
* Support OSC 0 and OSC 1 on MacOSX/Cocoa.
* Support _NET_WM_NAME and _NET_ICON_NAME properties on xlib.
* Support "CSI > Ps t" and "CSI > Ps T".
* Support "CSI 20 h" and "CSI 20 l" (LNM).
* Support right click menu on libvte compatible library on wayland.
* Support fcitx input method module on wayland.
* Support italic on MacOSX/Cocoa.
* Remove --hscr / "screen_height_ratio" option.
* Change the default sequences of Modifier+Function and Modifier+Cursor keys
from xterm's old/obsolete ones to modern ones.
(e.g. Shift+F1 outputs "\e[1;2P" instead of "\eO2P" by default.)
* Merge patches:
https://bitbucket.org/arakiken/mlterm/pull-requests/3/update-a-left-old-code-about-the
* Bug fixes:
Fix a bug which disabled to assign keypad keys in ~/.mlterm/shortcut.
Fix wrong processing of percentage in a font name on framebuffer and wayland.
Fix alpha blending in drawing glyphs on wayland.
Fix disappearance of the cursor if built with --enable-vt52 option.
Fix a bug which shows wrong window title in a splited screen.
Fix faulty drawing a wall picture in closing one of splitted screens.
Fix segfault when mlterm exits after having reconnected to ssh server automatically.
Fix segfault in using input method plugins (except ibus) on wayland.
Fix unexpected fallback to "DEFAULT" font in DECDHL or DECDWL lines.
Fix screen corruption of libvte compatible library in operating multiple tabs on wayland.
Fix segfault on pause or resume on Android.
This version is necessary for ruby-mini_portile2 2.3.0 in pkgsrc-2017Q3.
pkgsrc changes:
- strict dependency against ruby-mini_portile2 as defined in the Gemfile
- take maintainership
Upstream changes (from CHANGELOG.md):
# 1.8.1 / 2017-09-19
## Dependencies
* [MRI] libxml2 is updated from 2.9.4 to 2.9.5.
* [MRI] libxslt is updated from 1.1.29 to 1.1.30.
* [MRI] optional dependency on the pkg-config gem has had its constraint loosened to `~> 1.1` (from `~> 1.1.7`). [#1660]
* [MRI] Upgrade mini_portile2 dependency from `~> 2.2.0` to `~> 2.3.0`, which will validate checksums on the vendored libxml2 and libxslt tarballs before using them.
## Bugs
* NodeSet#first with an integer argument longer than the length of the NodeSet now correctly clamps the length of the returned NodeSet to the original length. [#1650] (Thanks, @Derenge!)
* [MRI] Ensure CData.new raises TypeError if the `content` argument is not implicitly convertible into a string. [#1669]