char **argvec = malloc(); vprintf(fmt, argvec); va_end(argvec);
which of cource won't work on anything that does not pass its
arguments on the stack (like PPC). This patch adds a handcrafted
vprintf() lookalike damn_i386_centric_printf() that does TRT.
This is a bug fix release, new development is being done in the gnome2
based 1.1.0 version.
* Patches
http://bugzilla.gnome.org/show_bug.cgi?id=69832
* Fix LaTeX and HTML exporter crashes
http://bugzilla.gnome.org/show_bug.cgi?id=69400
* Slow sort dialog startup on large sets.
http://bugzilla.gnome.org/show_bug.cgi?id=69577
* number matching broken in some locales.
http://bugzilla.gnome.org/show_bug.cgi?id=69795
* Dont put non ascii characters in the translated source.
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=131561
* Don't confuse the calling context with the view to save.
* Crash in goalseek (Andreas)
* Crash importing scrollbars from xml. (Jody)
* Importing 3d references to external books from xls. (Jody)
* regression in 1.0.3 setting properties for checkbox. (Jody)
* xml-sax support for v10 of gnumeric's format. (Jody)
* List Column actions before Row actions in menus. (Jody)
* Improve scrolling alignment of formula guru. (Jon Kåre)
* Translations
* Christian Rose (sv), Zbigniew Chyla (pl), Stanislav Visnovsky (sk)
Duarte Loreto (pt), Karsten Weiss (de)
* windowlist, bound to ^A"
* support for other encodings, e.g. big5, koi8r, cp1251
new commands 'encoding', 'defencoding'
'register', 'readreg', 'readbuf', 'writebuf' now understand
an extra encoding parameter
* support for double utf-8 characters
* lots of new string escapes and extensions to existsing ones:
%LD, %LM, %Lw, %W, %-w, %+w, %H, %f, %F, %l, %=, %<, %>
* new commands: 'source', 'eval', 'deflog', 'ignorecase', 'setsid'
* command key classes: 'bind', 'command' and 'help' understand
a '-c <class>' parameter. See the man page for examples
* new login state: always - don't remove slot even if screen gets
detached
* 256 color support (experimental)
* configurable time format string (for ^At)
* config option to use localized month/week names
* new option '-h' for hardcopy: also dump the scrollback buffer
XXX: SunOS PLIST untested.
Unconditionally set PKGSRC_LOCKTYPE to `none' to avoid bootstrapping problem.
Do not generate formatted manual and do not install source manual on Solaris or
else we would need to make this package depends on textproc/groff. IMHO this
should be avoided for this package as it can be considered a prerequisite for
building further packages.
* added a --emacs command-line option to produce output intended
for parsing by Emacs
* added errors for references to non-existent IDs in attributes
such as the headers attribute of the td element
1.3.4.6: fixed a compile error when using gcc 2.96
1.3.4.7: fixed a bug where a bad Host header was sent when fetching
a URL whose host was given as an IP address.
Added backwards compatiblity: both SQL::Statement and SQL::Parser now
work in perl version 5.004 and above.
Changed defaults for DBD::CSV so it now accepts new SQL without adding
extra flags to scripts
Added support for SQL comments
Fixed bugs in qualified column names (e.g. tableA.*), and in joins
using ON or WHERE
Fixed bug in UPDATE that caused the new value to be a hash rather
than a scalar.
New features:
Explicit and implicit joins
Table name aliases
Set functions
String functions
String concatenation
Numeric expressions
IN predicate
BETWEEN predicate
Alphabetic comparison in WHERE clauses
Ordering of text that looks like a number
Verbose error messages for both Parsing and Execution errors
Pure perl, new maintainer.
adjusted docs to show Jeff as the new maintainer.
added docs for extended SQL features (joins, etc.) available
with SQL::Statement 1.0 and above.
adjusted tests blobs.t, chopblanks.t, and ak-dbd.t to work with
all versions of SQL::Statement.
Fixed DBD::Proxy support for AutoCommit
Fixed DBI::ProxyServer bind_param(_inout) handling
Fixed DBI::ProxyServer fetch loop
Fixed install_driver do-the-right-thing with $@ on error. It, and connect(),
will leave $@ empty on success and holding the error message on error.
Fixed fetchrow_hashref to assign columns to the hash left-to-right
so later fields with the same name overwrite earlier ones
as per DBI < 1.15
Changed tables() to use quote_indentifier() if the driver returns a
true value for $dbh->get_info(29) # SQL_IDENTIFIER_QUOTE_CHAR
Changed ping() so it no longer triggers RaiseError/PrintError.
Changed connect() to not call $class->install_driver unless needed.
Changed DESTROY to catch fatal exceptions and append to $@.
Added ISO SQL/CLI & ODBCv3 data type definitions
Removed the definition of SQL_BIGINT data type constant as the value is
inconsistent between standards (ODBC=-5, SQL/CLI=25).
Added $dbh->column_info(...)
Added $dbh->foreign_key_info(...)
Added $dbh->quote_identifier(...)
Added $h->{HandleError} = sub { ... } addition and/or alternative
to RaiseError/PrintError.
Added Fowler/Noll/Vo hash type as an option to DBI::hash().
Added DBI::Changes so now you can "perldoc DBI::Changes", yeah!
Added selectrow_arrayref & selectrow_hashref docs
Changes:
+ Adapted to Python 2.1. Among other things, all uses of the
"regex" module has been repleased with "re".
+ Fixed attribute error when reading large PNG files (this bug
was introduced in maintenance code released after the 1.1.1
release)
+ Ignore non-string objects in sys.path
+ Fixed Image.transform(EXTENT) for negative xoffsets
+ Fixed loading of image plugins if PIL is installed as a package.
(The plugin loader now always looks in the directory where the
Image.py module itself is found, even if that directory isn't on
the standard search path)
+ The Png plugin has been added to the list of preloaded standard
formats
+ Fixed bitmap/text drawing in fill mode.
+ Fixed "getextrema" to work also for multiband images.
+ Added transparency support for L and P images to the PNG codec.
+ Improved support for read-only images. The "load" method now
sets the "readonly" attribute for memory-mapped images. Operations
that modifies an image in place (such as "paste" and drawing operations)
creates an in-memory copy of the image, if necessary. (before this
change, any attempt to modify a memory-mapped image resulted in a
core dump...)
+ Added special cases for lists everywhere PIL expects a sequence.
This should speed up things like "putdata" and drawing operations.
+ The Image.offset method is deprecated. Use the ImageChops.offset
function instead.
+ Changed ImageChops operators to copy palette and info dictionary
from the first image argument.