Next | Query returned 210 messages, browsing 81 to 90 | Previous

History of commit frequency

CVS Commit History:


   2016-04-11 18:15:22 by Ryo ONODERA | Files touched by this commit (5)
Log message:
Update to 57.1

Changelog:
Common Changes
    CLDR 29: For details of the many changes in CLDR, see CLDR 29.
    Grapheme/word/line breaking for emoji sequences, based on Unicode 9 proposed \ 
rules. See the Unicode emoji break proposal and the Unicode Emoji Technical \ 
Report Proposed Update describing the new emoji sequences.  (#12081).
    Four new Unicode emoji properties (#11802).
    DateFormat day period formatting of "noon", "at night", \ 
etc. via new pattern characters b & B, and DateTimePatternGenerator support \ 
of C for selecting the customary form (#11872).
        Except: Formatting of "0:00 midnight" has been disabled \ 
because it is confusing except for at the end of an interval.
    RelativeDateTimeFormatter: Simpler formatting API (#12072).
    More robust CLDR data loading for MeasureFormat (#11986, #12030), \ 
RelativeDateTimeFormatter (#12018), and DateIntervalFormat/DateIntervalInfo \ 
(#12013).
    New simple & fast SimpleFormatter class for a trivial subset of \ 
MessageFormat as used in CLDR data, e.g., "{0} {1}" (#10896).

ICU4C Specific Changes
    C API support for RelativeDateTimeFormatter (#12072).
    Clang annotations for intended switch case fallthroughs, can now compile \ 
with -Wimplicit-fallthrough (#12166).
    Internal header files can be compiled by themselves, for simpler alternative \ 
build scripts (#12141).
   2016-02-13 21:41:59 by Benny Siegert | Files touched by this commit (3)
Log message:
Apply patch from upstream to fix compilation on CentOS 7. From Thomas
Orgis via mail.
   2015-11-04 03:00:17 by Alistair G. Crooks | Files touched by this commit (797)
Log message:
Add SHA512 digests for distfiles for textproc category

Problems found locating distfiles:
	Package cabocha: missing distfile cabocha-0.68.tar.bz2
	Package convertlit: missing distfile clit18src.zip
	Package php-enchant: missing distfile php-enchant/enchant-1.1.0.tgz

Otherwise, existing SHA1 digests verified and found to be the same on
the machine holding the existing distfiles (morden).  All existing
SHA1 digests retained for now as an audit trail.
   2015-10-26 10:48:14 by Jonathan Perkin | Files touched by this commit (2)
Log message:
Fix preprocessor logic bug causing __STRICT_ANSI__ to be undefined on all
platforms, breaking SunOS/clang's use of GCC headers around __float128.
   2015-10-26 10:28:20 by Jonathan Perkin | Files touched by this commit (3)
Log message:
Use the GCC build file when using SunOS/clang, and patch it to pass the -h
linker argument correctly.
   2015-10-10 12:02:55 by Adam Ciarcinski | Files touched by this commit (1)
Log message:
PLIST fix
   2015-10-10 03:55:28 by Ryo ONODERA | Files touched by this commit (1)
Log message:
Bump ABI.
   2015-10-10 01:15:34 by Ryo ONODERA | Files touched by this commit (8) | Package updated
Log message:
Update to 56.1

Changelog:
Release Overview
The features for this release include support of CLDR 28 and Unicode 8.0.

For more details, including migration issues, see below.
Common Changes

    CLDR 28: For details of the many changes in CLDR, see CLDR 28.
    Unicode data updated to Unicode 8.0: 41 new emoji characters, 5,771 new \ 
ideographs for Chinese/Japanese/Korean, 6 new scripts, improved character \ 
properties data, etc.
    ICU data size reduced by about 7.2% (1.8MB) via sharing string values across \ 
resource bundles. [#11537]
    DateIntervalFormat now handles intervals with seconds, and sets \ 
FieldPosition more consistently. [#11706, #11726]
    DateFormat::createInstanceForSkeleton() caches DateFormat patterns rather \ 
than DateTimePatternGenerator instances, for better performance (for cache hits) \ 
and lower heap memory consumption. [#11780]
    StringSearch (based on collation) defaults to matches on normalization \ 
boundaries rather than grapheme cluster boundaries, which yields more matches on \ 
Indic text. [#11750]
    RuleBasedNumberFormat (spelled-out numbers) now handles rounding (Java \ 
only), infinity, NaN. [#11653, #11760, #8223]
    Most of the old Normalizer/unorm.h had been replaced by (and reimplemented \ 
via) Normalizer2, and is now deprecated. [#7303]
    COLON has been withdrawn as a date pattern character corresponding to the \ 
date field [UDAT_]TIME_SEPARATOR_FIELD; there is currently no pattern character \ 
corresponding to that field. [#11773]
    Support for locale key "cf" to specify currency format style, and \ 
interaction with NumberFormat values for UNumberFormatStyle: [#11787]
        For NumberFormat style UNUM_CURRENCY / CURRENCYSTYLE, the default is \ 
"standard" currency style (typically using minus sign for negative \ 
numbers), but the new locale key "cf" may be used with values \ 
"standard" or "account" to specify currency format style \ 
("account" indicates accounting style, often using parentheses for \ 
negative numbers).
        For other NumberFormat styles, the locale key "cf" is ignored \ 
(they override the locale preference):
            UNUM_CURRENCY_ISO / ISOCURRENCYSTYLE
            UNUM_CURRENCY_PLURAL / PLURALCURRENCYSTYLE
            UNUM_CURRENCY_ACCOUNTING / ACCOUNTINGCURRENCYSTYLE
            UNUM_CASH_CURRENCY / CASHCURRENCYSTYLE
        A new NumberFormat style is availble to explicitly specify standard \ 
style, ignoring the  the locale key "cf"
            UNUM_CURRENCY_STANDARD / STANDARDCURRENCYSTYLE

ICU4C Specific Changes

    C API support for CompactDecimalFormat via UNumberFormatStyle additions: \ 
UNUM_DECIMAL_COMPACT_SHORT, UNUM_DECIMAL_COMPACT_LONG [#11693]
    Larger UnicodeString object stores more characters inside the object without \ 
heap allocation; the UnicodeString object size is now build-time-configurable. \ 
[#11551]
        On 64-bit machines, increase from object size 40 bytes with 15 internal \ 
UChars to a new default of 64 bytes with 27 UChars.
    Some C++ classes now have swap() and moveFrom() methods, and support C++11 \ 
move semantics on compilers that support them. [#10086]
        UnicodeString, LocalPointer, LocalArray
    DecimalFormat code refactored to fix bugs, improve maintainability, and \ 
improve performance. [#10458]
    New FilteredBreakIterator suppresses certain segment boundaries. For \ 
example, it can suppress the sentence boundary in the middle of "Mr. \ 
Smith". [#11248]
    The internal, shared cache has been changed from unbounded to bounded. [#11767]
    For [U]BreakIterator with type UBRK_SENTENCE, the locale key "ss" \ 
can now be used with value "standard" to specify that standard \ 
sentence break suppression data should be used, or with value "none" \ 
to indicate that no break suppression data should be used (the default). \ 
[#11770]
    Collator: first-time startup time improved 20% due to precalculated \ 
unsafe-backward table [#11886]
    A number of memory leaks and buffer overruns have been fixed based on static \ 
code analysis, mostly in data build tools
   2015-09-29 04:15:54 by Tobias Nygren | Files touched by this commit (3)
Log message:
Patch CVE-2015-1270. Via Debian.
   2015-09-07 14:02:07 by Jonathan Perkin | Files touched by this commit (29)
Log message:
Now that _STRIPFLAG_INSTALL is disabled by default on Darwin, remove manual
settings of INSTALL_UNSTRIPPED=yes for Darwin in individual packages.

Next | Query returned 210 messages, browsing 81 to 90 | Previous