The TeX-GYRE bundle consists of six font families: TeX Gyre Adventor is
based on the URW Gothic L family of fonts (which is derived from ITC
Avant Garde Gothic, designed by Herb Lubalin and Tom Carnase). TeX Gyre
Bonum is based on the URW Bookman L family (from Bookman Old Style,
designed by Alexander Phemister). TeX Gyre Chorus is based on URW
Chancery L Medium Italic (from ITC Zapf Chancery, designed by Hermann
Zapf in 1979). TeX-Gyre Cursor is based on URW Nimbus Mono L (based on
Courier, designed by Howard G. Kettler in 1955, for IBM). TeX Gyre Heros
is based on URW Nimbus Sans L (from Helvetica, prepared by Max
Miedinger, with Eduard Hoffmann in 1957). TeX Gyre Pagella is based on
URW Palladio L (from Palation, designed by Hermann Zapf in the 1940s).
TeX Gyre Schola is based on the URW Century Schoolbook L family (which
was designed by Morris Fuller Benton for the American Type Founders).
TeX Gyre Termes is based on the URW Nimbus Roman No9 L family of fonts
(whose original, Times, was designed by Stanley Morison together with
Starling Burgess and Victor Lardent and first offered by Monotype). The
constituent standard faces of each family have been greatly extended,
and contain nearly 1200 glyphs each (though Chorus omits Greek support,
has no small-caps family and has approximately 900 glyphs). Each family
is available in Adobe Type 1 and Open Type formats, and LaTeX support
(for use with a variety of encodings) is provided. Vietnamese and
Cyrillic characters were added by Han The Thanh and Valek Filippov,
respectively.
no changelog available, at least some security fixes were done:
-fix possible memory corruption due to malformed JPEG images
(was patched in pkgsrc)
-fix (at least) 2 cases of integer overflow in array allocation (SA42320)
* Update HOMEPAGE.
* Remove dependency to ec-fonts-mftraced and mftrace.
* Works fine with python26, delete PYTHON_VERSIONS_ACCEPTED.
* Bump PKGREVISION.
2.9.4 (2011-03-08)
* Added: pass the number of comments to the template (#2753)
* Added: added methods to the Template class to read and write the template
name (#2694)
* Added: add support for __isset() to module, element and template classes
(#2897)
* Added: added a "compileDefinition" and a "createDefinition" hook (#2883)
* Fixed: wrong sorting values when copying multiple elements (#2433)
* Fixed: correct invalid XHTML in the extension catalog (#2651)
* Fixed: textual publication dates in RSS feeds were not translated (#2760)
* Fixed: the description of the newsletter offset was wrong (#2824)
* Fixed: remove insert tags in page names from title attributes (#2853)
* Fixed: do not generate RSS feeds of protected archives/calendars (#2699)
* Fixed: the CSS classes of image galleries with pagination were not set
correctly (#2803)
* Fixed: remove shy-entities from the page title tag (#2709)
* Fixed: assign unique IDs to search box elements in case multiple boxes are
used (#2829)
* Fixed: adjust the file paths in style sheets and modules during theme import
(#2882)
* Fixed: support PNGs and JPGs in the toggleVisibility() function (#2854)
* Fixed: the style sheet importer still did not support some CSS3 selectors
(#2781)
* Fixed: check the target page and article status in the article teaser
element (#2714)
* Fixed: do not send lost password mails if an account is not active (#2685)
* Fixed: the wizard labels can conflict with the field labels (#2860)
* Fixed: allow multiple editArea instances on one page in "edit all" mode
(#2783)
* Fixed some minor issues
Functionality added or changed:
* mysqldump --xml now displays comments from column definitions. (Bug #13618)
Bugs fixed:
* InnoDB Storage Engine: InnoDB returned values for ¡Èrows examined¡É
in the query plan that were higher than expected. NULL values were
treated in an inconsistent way. The inaccurate statistics could
trigger ¡Èfalse positives¡É in combination with the MAX_JOIN_SIZE
setting, because the queries did not really examine as many rows as
reported. (Bug #30423)
* Partitioning: Trying to use the same column more than once in the
partitioning key when partitioning a table by KEY caused mysqld to
crash. Such duplication of key columns is now expressly disallowed,
and fails with an appropriate error. (Bug #53354, Bug #57924)
* Replication: When using the statement-based logging format, INSERT
ON DUPLICATE KEY UPDATE and INSERT IGNORE statements affecting
transactional tables that did not fail were not written to the
binary log if they did not insert any rows. (With statement-based
logging, all successful statements should be logged, whether they do
or do not cause any rows to be changed.) (Bug #59338)
* Replication: Formerly, STOP SLAVE stopped the slave I/O thread first
and then stopped the slave SQL thread; thus, it was possible for the
I/O thread to stop after replicating only part of a transaction
which the SQL thread was executing, in wich case¡½if the transaction
could not be rolled back safely¡½the SQL thread could hang.
Now, STOP SLAVE stops the slave SQL thread first and then stops the
I/O thread; this guarantees that the I/O thread can fetch any
remaining events in the transaction that the SQL thread is
executing, so that the SQL thread can finish the transaction if it
cannot be rolled back safely. (Bug #58546)
* A query of the following form returned an incorrect result, where
the values for col_name in the result set were entirely replaced
with NULL values:
SELECT DISTINCT col_name ... ORDER BY col_name DESC;
(Bug #59308, Bug #11766241)
* DELETE or UPDATE statements could fail if they used DATE or DATETIME
values with a year, month, or day part of zero. (Bug #59173)
* The ESCAPE clause for the LIKE operator allows only expressions that
evaluate to a constant at execution time, but aggregrate functions
were not being rejected. (Bug #59149)
* Memory leaks detected by Valgrind, some of which could cause
incorrect query results, were corrected. (Bug #59110, Bug #11766075)
mysqlslap failed to check for a NULL return from mysql_store_result()
and crashed trying to process the result set. (Bug #59109)
* In debug builds, SUBSTRING_INDEX(FORMAT(...), FORMAT(...)) could
cause a server crash. (Bug #58371)
* When mysqldadmin was run with the --sleep and --count options, it
went into an infinite loop executing the specified command. (Bug
#58221)
* Some string manipulating SQL functions use a shared string object
intended to contain an immutable empty string. This object was used
by the SQL function SUBSTRING_INDEX() to return an empty string when
one argument was of the wrong datatype. If the string object was
then modified by the SQL function INSERT(), undefined behavior
ensued. (Bug #58165, Bug #11765225)
* Parsing nested regular expressions could lead to recursion resulting
in a stack overflow crash. (Bug #58026, Bug #11765099)
* The mysql client went into an infinite loop if the standard input
was a directory. (Bug #57450)
* The expression const1 BETWEEN const2 AND field was optimized
incorrectly and produced incorrect results. (Bug #57030, Bug
#11764215)
* Some RPM installation scripts used a hardcoded value for the data
directory, which could result in a failed installation for users who
have a nonstandard data directory location. The same was true for
other configuration values such as the PID file name. (Bug #56581,
Bug #11763817)
* On FreeBSD and OpenBSD, the server incorrectly checked the range of
the system date, causing legal values to be rejected. (Bug #55755,
Bug #11763089)
* When using ExtractValue() or UpdateXML(), if the XML to be read
contained an incomplete XML comment, MySQL read beyond the end of
the XML string when processing, leading to a crash of the
server. (Bug #44332)
* Fix Winbind crash bug when no DC is available
* Fix finding users on domain members
* Fix memory leaks in Winbind
* Fix printing with Windows 7 clients
Thomas Klausner. Although the two licenses are not word-for-word identical,
they are very close, use much of the same wording, and seem equivalent in
intent. This prevents proliferation of yet another license in the collection.
Pxfonts supplies virtual text roman fonts using Adobe Palatino (or
URWPalladioL) with some modified and additional text symbols in the OT1,
T1, and TS1 encodings; maths alphabets using Palatino/Palladio; maths
fonts providing all the symbols of the Computer Modern and AMS fonts,
including all the Greek capital letters from CMR; and additional maths
fonts of various other symbols. The set is complemented by a sans-serif
set of text fonts, based on Helvetica/NimbusSanL, and a monospace set
derived from the parallel TX font set. All the fonts are in Type 1
format (AFM and PFB files), and are supported by TeX metrics (VF and TFM
files) and macros for use with LaTeX.
* libgnutls: Corrected verification of finished messages.
* libgnutls: Corrected signature generation and verification in the Certificate
Verify message when in TLS 1.2.
* pkg-config gnutls.pc improvements.
* API and ABI modifications: No changes since last version.
* Release 1.3.2
* Add --with-gtk=2.0|3.0|no configure option.
* Fix build with ibus-1.4.
* Use minput_list() instead of mdatabase_list().
* Make class name parsing robuster.
* Add "~/.m17n.d/" to observed-paths.
* Use wildcard pattern in default.xml to set the default value.
* Lower the rank of si-samanala engine.
* Read default config from a file.
* Use gnome-autogen.sh to generate configure and Makefiles.
* Don't compile m17nutil.c twice for engine and setup.
* Use ibus_m17n_scan_engine_name() to simplify the code.
* Assign separate GType to each m17n engine to make config per-class.
* Clear errno to 0 before calling strtol/strtoul.
* Simplify AltGr handling.
* Give higher rank for all Indic engines.
* Use MInputContext::arg and remove the table for ic and engine.
* Don't init IBusBus in print_engines_xml().
* Fix bug in ibus_m17n_engine_reset.
* Add code coderview.settings.