* changed ssl:verify-certificate default to yes.
* check certificate common name in openssl case (code from curl).
* disable weak algorithms in openssl.
* new setting xfer:log-file.
* support for netkey pasword in ftp.
* added torrent ipv6 support (new setting torrent:ipv6)
* don't accept new connections when no torrent can accept them.
* allow to specify job numbers in `jobs' command.
* fixed a segfault in pget when an error happens on second chunk.
2011-01-23 : zyGrib Version 3.9.9.1
* New russian translation (thanks Yaroslav/Specter).
* Bug fixed : drawing wind arrows on the grid for Meteoblue files.
* Personnal "cities" list :
o All files whose name begins with cities and located in maps / gis / are read.
o Format : text, encoding UTF8
o One city by line (5 data, separator ';') :
country;name;population;latitude;longitude
1. country: 2 chars international code ISO-3166 A2
2. name
3. population : "importance" of the city. 4 levels:
1. population >= 1000000
2. population >= 200000
3. population >= 50000
4. population < 50000
4. latitude
5. longitude
o Sample:
AD;Andorra la Vella;20430;42.5;1.5166667
A variable name that should be set as staged installation location
presented as ${DESTDIR} at installation phase.
"DESTDIR" is set by default.
for packages using different variable for staged installation prefix,
and/or using DESTDIR variable for different purpose.
an array of pointer (in struct fdtab) rather than a pointer of pointers.
Sadly for us, no, arrays and pointers are not equivalent from a memory
perspective: while pointers from/to another address space can
be consumed by kvm(3) to query for data in kernel space, arrays
are more tricky, especially when their content is copied in userland:
they are part of the copied struct.
Address of array members are only valid in their own address space,
in our case userland, which is (fortunately?) different from kernel space.
This breaks the various kvm_read() calls that query for file descriptor
information. Consequence: lsof(1) cannot print filedescriptor information
(starting from 5.99.14), and silently ignores the errors, as using
the userland fdtab (``dt'' variable) is not valid for kernel.
Fix that by using the ``fd_dt'' member of struct filedes, which stores
the address of the fdtab struct in kernel address space. Took a few hours
to understand what was going on with lsof(1), hmmm.
Luckily, fstat(1) uses the proper model (checked about 5min ago). Why
lsof(1) decided not to log an error on kvm_read() is... a good question.
Bump rev.
Upstream changes:
1.14 2011-03-17 00:00:00
- Added support for multiple dns servers to Mojo::IOLoop.
- Added config helper to Mojolicious::Plugin::Config.
- Changed resolv.conf parser in Mojo::IOLoop to use the first
nameserver.
- Changed lookup method in Mojo::IOLoop to pick records randomly.
- Fixed small optional tag bugs in Mojo::DOM.
- Fixed JavaScript/CSS bug in Mojo::DOM.
- Fixed Windows home directory detection bug. (akron)
- Fixed a few warnings.
- Fixed typos.
1.13 2011-03-14 00:00:00
- Deprecated Mojo::Client in favor of the much sleeker
Mojo::UserAgent.
- Made the most common Mojo::IOLoop methods easier to access for the
singleton instance.
- Fixed typos.
1.12 2011-03-10 00:00:00
- Relicensed all artwork to CC-SA, so the whole distribution can be
considered "open" again.
- Deprecated MOJO_JSON_CONFIG environment variable in favor of
MOJO_CONFIG. (crab)
- Added EXPERIMENTAL support for IPv6.
- Added more Perl-ish configuration plugin.
- Added drain callback support for WebSockets.
- Added line numbers to Mojo::JSON error messages. (marcus)
- Removed experimental status from hypnotoad and
Mojolicious::Plugin::TagHelpers.
- Removed experimental status from many attributes and methods all
over Mojolicious.
- Improved attribute support of the select_field tag helper. (yko)
- Improved text_field tag helper.
- Improved tag helper attribute escaping.
- Improved attrs method in Mojo::DOM.
- Updated to jQuery to version 1.5.1.
- Fixed XSS issue in link_to helper.
- Fixed route unescaping bug.
- Fixed small Mojo::DOM bug. (yko)
- Fixed small documentation bug.
- Fixed typos. (kimoto)
From Christian Sturm in PR pkg/44740.
* build system: Fixed building the Qt version of mkvinfo's GUI (again).
* mmg: bug fix: If the header editor finds 'language' elements with ISO-639-1
codes (e.g. "fra" instead of "fre" for "French") then it will map the code to
the corresponding ISO-639-2 code
* mmg: bug fix: Fixed one of the issues causing mmg to report that it is
configured to use an unsupported version of mkvmerge when the reported
version was actually empty.
* mkvmerge: enhancement: HD-DVD subtitles are recognized as being an
unsupported file format. This makes the error message presented to the user
a bit clearer.
* build: Boost 1.36.0 or newer is required (up from 1.34.0). Also fixed
building with v3 of Boost's filesystem library, e.g. with Boost 1.46.0
Beta 1 or newer.
* mkvpropedit: new feature: Added support for adding, replacing and removing
tags.
* all: Added a translation for the programs into Turkish by ßouЯock.
* build system: Fixed compilation if configure choses the internal versions of
libebml and libmatroska while older versions are still installed in a
location named with "-I..." or "-L..." in CFLAGS/CXXFLAGS/LDFLAGS or with
configure's "--with-extra-includes" and "--with-extra-libs" options.