ChangeLog 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. Version 0.9.6
  2. http://svn.edgewall.org/repos/babel/tags/0.9.6/
  3. (Mar 17 2011, from branches/stable/0.9.x)
  4. * Backport r493-494: documentation typo fixes.
  5. * Make the CLDR import script work with Python 2.7.
  6. * Fix various typos.
  7. * Fixed Python 2.3 compatibility (ticket #146, #233).
  8. * Sort output of list-locales.
  9. * Make the POT-Creation-Date of the catalog being updated equal to
  10. POT-Creation-Date of the template used to update (ticket #148).
  11. * Use a more explicit error message if no option or argument (command) is
  12. passed to pybabel (ticket #81).
  13. * Keep the PO-Revision-Date if it is not the default value (ticket #148).
  14. * Make --no-wrap work by reworking --width's default and mimic xgettext's
  15. behaviour of always wrapping comments (ticket #145).
  16. * Fixed negative offset handling of Catalog._set_mime_headers (ticket #165).
  17. * Add --project and --version options for commandline (ticket #173).
  18. * Add a __ne__() method to the Local class.
  19. * Explicitly sort instead of using sorted() and don't assume ordering
  20. (Python 2.3 and Jython compatibility).
  21. * Removed ValueError raising for string formatting message checkers if the
  22. string does not contain any string formattings (ticket #150).
  23. * Fix Serbian plural forms (ticket #213).
  24. * Small speed improvement in format_date() (ticket #216).
  25. * Fix number formatting for locales where CLDR specifies alt or draft
  26. items (ticket #217)
  27. * Fix bad check in format_time (ticket #257, reported with patch and tests by
  28. jomae)
  29. * Fix so frontend.CommandLineInterface.run does not accumulate logging
  30. handlers (#227, reported with initial patch by dfraser)
  31. * Fix exception if environment contains an invalid locale setting (#200)
  32. Version 0.9.5
  33. http://svn.edgewall.org/repos/babel/tags/0.9.5/
  34. (Apr 6 2010, from branches/stable/0.9.x)
  35. * Fixed the case where messages containing square brackets would break with
  36. an unpack error.
  37. * Backport of r467: Fuzzy matching regarding plurals should *NOT* be checked
  38. against len(message.id) because this is always 2, instead, it's should be
  39. checked against catalog.num_plurals (ticket #212).
  40. Version 0.9.4
  41. http://svn.edgewall.org/repos/babel/tags/0.9.4/
  42. (Aug 25 2008, from branches/stable/0.9.x)
  43. * Currency symbol definitions that is defined with choice patterns in the
  44. CLDR data are no longer imported, so the symbol code will be used instead.
  45. * Fixed quarter support in date formatting.
  46. * Fixed a serious memory leak that was introduces by the support for CLDR
  47. aliases in 0.9.3 (ticket #128).
  48. * Locale modifiers such as "@euro" are now stripped from locale identifiers
  49. when parsing (ticket #136).
  50. * The system locales "C" and "POSIX" are now treated as aliases for
  51. "en_US_POSIX", for which the CLDR provides the appropriate data. Thanks to
  52. Manlio Perillo for the suggestion.
  53. * Fixed JavaScript extraction for regular expression literals (ticket #138)
  54. and concatenated strings.
  55. * The `Translation` class in `babel.support` can now manage catalogs with
  56. different message domains, and exposes the family of `d*gettext` functions
  57. (ticket #137).
  58. Version 0.9.3
  59. http://svn.edgewall.org/repos/babel/tags/0.9.3/
  60. (Jul 9 2008, from branches/stable/0.9.x)
  61. * Fixed invalid message extraction methods causing an UnboundLocalError.
  62. * Extraction method specification can now use a dot instead of the colon to
  63. separate module and function name (ticket #105).
  64. * Fixed message catalog compilation for locales with more than two plural
  65. forms (ticket #95).
  66. * Fixed compilation of message catalogs for locales with more than two plural
  67. forms where the translations were empty (ticket #97).
  68. * The stripping of the comment tags in comments is optional now and
  69. is done for each line in a comment.
  70. * Added a JavaScript message extractor.
  71. * Updated to CLDR 1.6.
  72. * Fixed timezone calculations when formatting datetime and time values.
  73. * Added a `get_plural` function into the plurals module that returns the
  74. correct plural forms for a locale as tuple.
  75. * Added support for alias definitions in the CLDR data files, meaning that
  76. the chance for items missing in certain locales should be greatly reduced
  77. (ticket #68).
  78. Version 0.9.2
  79. http://svn.edgewall.org/repos/babel/tags/0.9.2/
  80. (Feb 4 2008, from branches/stable/0.9.x)
  81. * Fixed catalogs' charset values not being recognized (ticket #66).
  82. * Numerous improvements to the default plural forms.
  83. * Fixed fuzzy matching when updating message catalogs (ticket #82).
  84. * Fixed bug in catalog updating, that in some cases pulled in translations
  85. from different catalogs based on the same template.
  86. * Location lines in PO files do no longer get wrapped at hyphens in file
  87. names (ticket #79).
  88. * Fixed division by zero error in catalog compilation on empty catalogs
  89. (ticket #60).
  90. Version 0.9.1
  91. http://svn.edgewall.org/repos/babel/tags/0.9.1/
  92. (Sep 7 2007, from branches/stable/0.9.x)
  93. * Fixed catalog updating when a message is merged that was previously simple
  94. but now has a plural form, for example by moving from `gettext` to
  95. `ngettext`, or vice versa.
  96. * Fixed time formatting for 12 am and 12 pm.
  97. * Fixed output encoding of the `pybabel --list-locales` command.
  98. * MO files are now written in binary mode on windows (ticket #61).
  99. Version 0.9
  100. http://svn.edgewall.org/repos/babel/tags/0.9.0/
  101. (Aug 20 2007, from branches/stable/0.9.x)
  102. * The `new_catalog` distutils command has been renamed to `init_catalog` for
  103. consistency with the command-line frontend.
  104. * Added compilation of message catalogs to MO files (ticket #21).
  105. * Added updating of message catalogs from POT files (ticket #22).
  106. * Support for significant digits in number formatting.
  107. * Apply proper "banker's rounding" in number formatting in a cross-platform
  108. manner.
  109. * The number formatting functions now also work with numbers represented by
  110. Python `Decimal` objects (ticket #53).
  111. * Added extensible infrastructure for validating translation catalogs.
  112. * Fixed the extractor not filtering out messages that didn't validate against
  113. the keyword's specification (ticket #39).
  114. * Fixed the extractor raising an exception when encountering an empty string
  115. msgid. It now emits a warning to stderr.
  116. * Numerous Python message extractor fixes: it now handles nested function
  117. calls within a gettext function call correctly, uses the correct line number
  118. for multi-line function calls, and other small fixes (tickets #38 and #39).
  119. * Improved support for detecting Python string formatting fields in message
  120. strings (ticket #57).
  121. * CLDR upgraded to the 1.5 release.
  122. * Improved timezone formatting.
  123. * Implemented scientific number formatting.
  124. * Added mechanism to lookup locales by alias, for cases where browsers insist
  125. on including only the language code in the `Accept-Language` header, and
  126. sometimes even the incorrect language code.
  127. Version 0.8.1
  128. http://svn.edgewall.org/repos/babel/tags/0.8.1/
  129. (Jul 2 2007, from branches/stable/0.8.x)
  130. * `default_locale()` would fail when the value of the `LANGUAGE` environment
  131. variable contained multiple language codes separated by colon, as is
  132. explicitly allowed by the GNU gettext tools. As the `default_locale()`
  133. function is called at the module level in some modules, this bug would
  134. completely break importing these modules on systems where `LANGUAGE` is set
  135. that way.
  136. * The character set specified in PO template files is now respected when
  137. creating new catalog files based on that template. This allows the use of
  138. characters outside the ASCII range in POT files (ticket #17).
  139. * The default ordering of messages in generated POT files, which is based on
  140. the order those messages are found when walking the source tree, is no
  141. longer subject to differences between platforms; directory and file names
  142. are now always sorted alphabetically.
  143. * The Python message extractor now respects the special encoding comment to be
  144. able to handle files containing non-ASCII characters (ticket #23).
  145. * Added 'N_' (gettext noop) to the extractor's default keywords.
  146. * Made locale string parsing more robust, and also take the script part into
  147. account (ticket #27).
  148. * Added a function to list all locales for which locale data is available.
  149. * Added a command-line option to the `pybabel` command which prints out all
  150. available locales (ticket #24).
  151. * The name of the command-line script has been changed from just `babel` to
  152. `pybabel` to avoid a conflict with the OpenBabel project (ticket #34).
  153. Version 0.8
  154. http://svn.edgewall.org/repos/babel/tags/0.8.0/
  155. (Jun 20 2007, from branches/stable/0.8.x)
  156. * First public release