#
cc81971e |
| 28-Oct-2016 |
Anatol Belski |
extend info to float related constants
|
#
431abb21 |
| 28-Oct-2016 |
Anatol Belski |
note to UPDRADING
|
#
da22cfe0 |
| 28-Oct-2016 |
Benjamin Morel |
Typo
|
#
701df2c4 |
| 26-Oct-2016 |
Anatol Belski |
note to UPGRADING
|
#
e893abda |
| 25-Oct-2016 |
Yasuo Ohgaki |
Revert "Update UPGRADING to reflect bug fix" This change was made in 7.0. Sorry for the noise. This reverts commit e9c8e50b66366c250becb663bb76db24ed1b5890.
|
#
e9c8e50b |
| 25-Oct-2016 |
Yasuo Ohgaki |
Update UPGRADING to reflect bug fix
|
#
ed61791a |
| 20-Oct-2016 |
Christoph M. Becker |
Update UPGRADING wrt. imageresolution() Cf. <http://git.php.net/?p=php-src.git;a=commit;h=209d4220>.
|
#
85853166 |
| 17-Oct-2016 |
Andrea Faulds |
NEWS and UPGRADING for utf8_encode() and utf8_decode() move
|
#
64945e93 |
| 16-Oct-2016 |
Kalle Sommer Nielsen |
Implemented proc_nice() for Windows (FR #49806) The core implementation details are described in win32/nice.c for values sent to proc_nice(), these can however be discussed to maybe comply w
Implemented proc_nice() for Windows (FR #49806) The core implementation details are described in win32/nice.c for values sent to proc_nice(), these can however be discussed to maybe comply with those of wmic, Anatol, thoughts? The test supplied uses wmic for testing the functionality, it could potentially fail on systems where either wmic is not available or the system language is not english (as Microsoft tends to translate even CLI programs).
show more ...
|
#
2cc3aeb4 |
| 27-Sep-2016 |
Christoph M. Becker |
Implement #72918: negative offset inside a quoted string leads to parse error We allow negative numeric offsets for the simple syntax inside double-quoted and heredoc strings.
|
#
bccc1dd1 |
| 13-Oct-2016 |
Yasuo Ohgaki |
Update UPGRADING
|
#
14d4ee93 |
| 07-Oct-2016 |
Christoph M. Becker |
Implement #65038: IMAGETYPE_WEBP constant missing We add WebP support for getimagesize(), getimagesizefromstring)(), image_type_to_extension() and image_type_to_mime_type(). For now we
Implement #65038: IMAGETYPE_WEBP constant missing We add WebP support for getimagesize(), getimagesizefromstring)(), image_type_to_extension() and image_type_to_mime_type(). For now we care only about the simple lossy WebP format (VP8) and ignore the lossless (VP8L) and extended (VP8X) formats. We use image/webp as MIME type as it appears to be pretty common, even though it is not yet registered with IANA. Relevant specifications: * <https://developers.google.com/speed/webp/docs/riff_container> * <https://tools.ietf.org/html/rfc6386>
show more ...
|
#
825e0fd4 |
| 07-Oct-2016 |
Christoph M. Becker |
Document that ext/shmop deals with resources as of PHP 7.0.0 Second attempt
|
#
88d0201a |
| 07-Oct-2016 |
Christoph M. Becker |
Document that ext/shmop deals with resources as of PHP 7.0.0
|
#
5b52d5ac |
| 03-Oct-2016 |
Christoph M. Becker |
Fix #73207: Array ordering is same between 5.6.21 and 7.1.0 RC3
|
#
82a8e57f |
| 02-Oct-2016 |
Christoph M. Becker |
Add support for gdEffectMultiply gdLayerMultiply() has been introduced in libgd 2.1.1, and as such would have been already available for imagelayereffect() with a system libgd. We port
Add support for gdEffectMultiply gdLayerMultiply() has been introduced in libgd 2.1.1, and as such would have been already available for imagelayereffect() with a system libgd. We port the respective code to the bundled libgd, and also make IMG_EFFECT_MULTIPLY available to userland.
show more ...
|
#
d0f14a44 |
| 02-Oct-2016 |
Christoph M. Becker |
Switch to libgd anti-aliased drawing API Instead of rolling our own in the bundled libgd, we use libgd's anti-aliased drawing API. This way imageantialias() is also available, when built
Switch to libgd anti-aliased drawing API Instead of rolling our own in the bundled libgd, we use libgd's anti-aliased drawing API. This way imageantialias() is also available, when built against a system libgd.
show more ...
|
#
94f7e4a5 |
| 28-Sep-2016 |
Davey Shafik |
Update UPGRADING to reflect new reality
|
#
bd893061 |
| 25-Sep-2016 |
Nikita Popov |
Use SEND_USER for CONST|TMP as well Otherwise we're missing the "expected to be a reference, value given" warning that appears for ordinary calls to call_user_func(). Also updat
Use SEND_USER for CONST|TMP as well Otherwise we're missing the "expected to be a reference, value given" warning that appears for ordinary calls to call_user_func(). Also update an UPGRADING note with recent changes wrt call_user_func().
show more ...
|
#
d95b8eaf |
| 24-Sep-2016 |
Christoph M. Becker |
Don't enforce palette conversion when writing GD images The GD image format is able to handle truecolor images as of libgd 2.0.12 (<https://github.com/libgd/libgd/blob/gd-2.2.3/src/gd_gd
Don't enforce palette conversion when writing GD images The GD image format is able to handle truecolor images as of libgd 2.0.12 (<https://github.com/libgd/libgd/blob/gd-2.2.3/src/gd_gd.c#L31-L33>). Therefore we don't need the potentially lossy and time consuming palette conversion. This way, imagegd() can also be used to export raw truecolor image data.
show more ...
|
#
6e530502 |
| 14-Sep-2016 |
Yasuo Ohgaki |
Implemented Bug #68776 mail() does not have mail header injection prevention for additional headers (PR 2060)
|
#
219d8599 |
| 14-Sep-2016 |
Christoph M. Becker |
Fix #72430: [] operator not supported for strings
|
#
494c5dc7 |
| 13-Sep-2016 |
Christoph M. Becker |
Remove effectless --enable-gd-native-ttf and USE_GD_IMGSTRTTF --enable-gd-native-ttf did set USE_GD_IMGSTRTTF, which is otherwise unused as of commit 8a90aad3 (i.e. PHP 5.5.0), at least.
|
#
8bea911f |
| 08-Sep-2016 |
Christoph M. Becker |
Update UPGRADING wrt. [RFC]: Add Argon2 to password_*
|
#
2605ceea |
| 06-Sep-2016 |
Yasuo Ohgaki |
Added array parameter support to mb_convert_encoding()
|