Behdad Esfahbod | b30a971 | 2016-02-24 17:32:22 +0900 | [diff] [blame^] | 1 | Overview of changes leading to 1.2.2 |
| 2 | Wednesday, February 24, 2016 |
| 3 | ==================================== |
| 4 | |
| 5 | - Fix regression with mark positioning with fonts that have |
| 6 | non-zero mark advances. This was introduced in 1.2.0 while |
| 7 | trying to make mark and cursive attachments to work together. |
| 8 | I have partially reverted that, so this version is much more |
| 9 | like what we had before. All clients who updated to 1.2.0 |
| 10 | should update to this version. |
| 11 | |
| 12 | |
Behdad Esfahbod | dabf32a | 2016-02-23 15:38:43 +0900 | [diff] [blame] | 13 | Overview of changes leading to 1.2.1 |
Behdad Esfahbod | b30a971 | 2016-02-24 17:32:22 +0900 | [diff] [blame^] | 14 | Tuesday, February 23, 2016 |
Behdad Esfahbod | dabf32a | 2016-02-23 15:38:43 +0900 | [diff] [blame] | 15 | ==================================== |
| 16 | |
| 17 | - CoreText: Fix bug with wrong scale if font scale was changed later. |
| 18 | https://github.com/libass/libass/issues/212 |
| 19 | - CoreText: Drastically speed up font initialization. |
| 20 | - CoreText: Fix tiny leak. |
| 21 | - Group ZWJ/ZWNJ with previous syllable under cluster-level=0. |
| 22 | https://github.com/behdad/harfbuzz/issues/217 |
| 23 | - Add test/shaping/README.md about how to add tests to the suite. |
| 24 | |
| 25 | |
Behdad Esfahbod | 27847ca | 2016-02-19 15:56:50 +0700 | [diff] [blame] | 26 | Overview of changes leading to 1.2.0 |
| 27 | Friday, February 19, 2016 |
| 28 | ==================================== |
| 29 | |
| 30 | - Fix various issues (hangs mostly) in case of memory allocation failure. |
| 31 | - Change mark zeroing types of most shapers from BY_UNICODE_LATE to |
| 32 | BY_GDEF_LATE. This seems to be what Uniscribe does. |
| 33 | - Change mark zeroing of USE shaper from NONE to BY_GDEF_EARLY. That's |
| 34 | what Windows does. |
| 35 | - Allow GPOS cursive connection on marks, and fix the interaction with |
| 36 | mark attachment. This work resulted in some changes to how mark |
| 37 | attachments work. See: |
| 38 | https://github.com/behdad/harfbuzz/issues/211 |
| 39 | https://github.com/behdad/harfbuzz/commit/86c68c7a2c971efe8e35b1f1bd99401dc8b688d2 |
| 40 | - Graphite2 shaper: improved negative advance handling (eg. Nastaliq). |
| 41 | - Add nmake-based build system for Windows. |
| 42 | - Minor speedup. |
| 43 | - Misc. improvements. |
| 44 | |
| 45 | |
Behdad Esfahbod | 1144129 | 2016-01-11 13:16:35 +0000 | [diff] [blame] | 46 | Overview of changes leading to 1.1.3 |
| 47 | Monday, January 11, 2016 |
| 48 | ==================================== |
| 49 | |
| 50 | - Ported Indic shaper to Unicode 8.0 data. |
| 51 | - Universal Shaping Engine fixes. |
| 52 | - Speed up CoreText shaper when font fallback happens in CoreText. |
| 53 | - Documentation improvements, thanks to Khaled Hosny. |
| 54 | - Very rough directwrite shaper for testing, thanks to Ebrahim Byagowi. |
| 55 | - Misc bug fixes. |
| 56 | - New API: |
| 57 | |
| 58 | * Font extents: |
| 59 | hb_font_extents_t |
| 60 | hb_font_get_font_extents_func_t |
| 61 | hb_font_get_font_h_extents_func_t |
| 62 | hb_font_get_font_v_extents_func_t |
| 63 | hb_font_funcs_set_font_h_extents_func |
| 64 | hb_font_funcs_set_font_v_extents_func |
| 65 | hb_font_get_h_extents |
| 66 | hb_font_get_v_extents |
| 67 | hb_font_get_extents_for_direction |
| 68 | |
| 69 | * Buffer message (aka debug): |
| 70 | hb_buffer_message_func_t |
| 71 | hb_buffer_set_message_func() |
| 72 | Actual message protocol to be fleshed out later. |
| 73 | |
| 74 | |
Behdad Esfahbod | d44d52b | 2015-11-26 19:35:43 -0500 | [diff] [blame] | 75 | Overview of changes leading to 1.1.2 |
| 76 | Wednesday, November 26, 2015 |
| 77 | ==================================== |
| 78 | |
| 79 | - Fix badly-broken fallback shaper that affected terminology. |
| 80 | https://github.com/behdad/harfbuzz/issues/187 |
| 81 | - Fix y_scaling in Graphite shaper. |
| 82 | - API changes: |
| 83 | * An unset glyph_h_origin() function in font-funcs now (sensibly) |
| 84 | implies horizontal origin at 0,0. Ie, the nil callback returns |
| 85 | true instead of false. As such, implementations that have a |
| 86 | glyph_h_origin() that simply returns true, can remove that function |
| 87 | with HarfBuzz >= 1.1.2. This results in a tiny speedup. |
| 88 | |
| 89 | |
Behdad Esfahbod | b24e93e | 2015-11-24 13:18:20 -0600 | [diff] [blame] | 90 | Overview of changes leading to 1.1.1 |
| 91 | Wednesday, November 24, 2015 |
| 92 | ==================================== |
| 93 | |
| 94 | - Build fixes, specially for hb-coretext. |
| 95 | |
| 96 | |
Behdad Esfahbod | e1118ae | 2015-11-18 23:40:47 -0800 | [diff] [blame] | 97 | Overview of changes leading to 1.1.0 |
| 98 | Wednesday, November 18, 2015 |
| 99 | ==================================== |
| 100 | |
| 101 | - Implement 'stch' stretch feature for Syriac Abbreviation Mark. |
| 102 | https://github.com/behdad/harfbuzz/issues/141 |
| 103 | - Disable use of decompose_compatibility() callback. |
| 104 | - Implement "shaping" of various Unicode space characters, even |
| 105 | if the font does not support them. |
| 106 | https://github.com/behdad/harfbuzz/issues/153 |
| 107 | - If font does not support U+2011 NO-BREAK HYPHEN, fallback to |
| 108 | U+2010 HYPHEN. |
| 109 | - Changes resulting from libFuzzer continuous fuzzing: |
| 110 | * Reject font tables that need more than 8 edits, |
| 111 | * Bound buffer growth during shaping to 32x, |
| 112 | * Fix assertions and other issues at OOM / buffer max-growth. |
| 113 | - Misc fixes and optimizations. |
| 114 | - API changes: |
| 115 | * All fonts created with hb_font_create() now inherit from |
| 116 | (ie. have parent) hb_font_get_empty(). |
| 117 | |
| 118 | |
Behdad Esfahbod | 86cadc2 | 2015-10-15 20:25:29 -0300 | [diff] [blame] | 119 | Overview of changes leading to 1.0.6 |
| 120 | Thursday, October 15, 2015 |
| 121 | ==================================== |
| 122 | |
| 123 | - Reduce max nesting level in OT lookups from 8 to 6. |
| 124 | Should not affect any real font as far as I know. |
| 125 | - Fix memory access issue in ot-font. |
| 126 | - Revert default load-flags of fonts created using hb_ft_font_create() |
| 127 | back to FT_LOAD_DEFAULT|FT_LOAD_NO_HINTING. This was changed in |
| 128 | last release (1.0.5), but caused major issues, so revert. |
| 129 | https://github.com/behdad/harfbuzz/issues/143 |
| 130 | |
| 131 | |
Behdad Esfahbod | ab17052 | 2015-10-13 10:55:33 -0300 | [diff] [blame] | 132 | Overview of changes leading to 1.0.5 |
| 133 | Tuesday, October 13, 2015 |
| 134 | ==================================== |
| 135 | |
| 136 | - Fix multiple memory access bugs discovered using libFuzzer. |
| 137 | https://github.com/behdad/harfbuzz/issues/139 |
| 138 | Everyone should upgrade to this version as soon as possible. |
| 139 | We now have continuous fuzzing set up, to avoid issues like |
| 140 | these creeping in again. |
| 141 | - Misc fixes. |
| 142 | |
| 143 | - New API: |
| 144 | * hb_font_set_parent(). |
| 145 | * hb_ft_font_[sg]et_load_flags() |
| 146 | The default flags for fonts created using hb_ft_font_create() |
| 147 | has changed to default to FT_LOAD_DEFAULT now. Previously it |
| 148 | was defaulting to FT_LOAD_DFEAULT|FT_LOAD_NO_HINTING. |
| 149 | |
| 150 | - API changes: |
| 151 | * Fonts now default to units-per-EM as their scale, instead of 0. |
| 152 | * hb_font_create_sub_font() does NOT make parent font immutable |
| 153 | anymore. hb_font_make_immutable() does. |
| 154 | |
| 155 | |
Behdad Esfahbod | 432ffc4 | 2015-09-30 22:51:16 +0100 | [diff] [blame] | 156 | Overview of changes leading to 1.0.4 |
| 157 | Wednesday, September 30, 2015 |
| 158 | ==================================== |
| 159 | |
| 160 | - Fix minor out-of-bounds read error. |
| 161 | |
| 162 | |
Behdad Esfahbod | 7f54053 | 2015-09-01 17:03:50 +0100 | [diff] [blame] | 163 | Overview of changes leading to 1.0.3 |
| 164 | Tuesday, September 1, 2015 |
| 165 | ==================================== |
| 166 | |
| 167 | - Start of user documentation, from Simon Cozens! |
| 168 | - Implement glyph_extents() for TrueType fonts in hb-ot-font. |
| 169 | - Improve GPOS cursive attachments with conflicting lookups. |
| 170 | - More fixes for cluster-level = 1. |
| 171 | - Uniscribe positioning fix. |
| 172 | |
| 173 | |
Behdad Esfahbod | 789b89e | 2015-08-19 13:39:57 +0100 | [diff] [blame] | 174 | Overview of changes leading to 1.0.2 |
| 175 | Wednesday, August 19, 2015 |
| 176 | ==================================== |
| 177 | |
| 178 | - Fix shaping with cluster-level > 0. |
| 179 | - Fix Uniscribe backend font-size scaling. |
| 180 | - Declare dependencies in harfbuzz.pc. |
| 181 | FreeType is not declared though, to avoid bugs in pkg-config |
| 182 | 0.26 with recursive dependencies. |
| 183 | - Slightly improved debug infrastructure. More to come later. |
| 184 | - Misc build fixes. |
| 185 | |
| 186 | |
Behdad Esfahbod | 9002c27 | 2015-07-27 12:17:54 +0200 | [diff] [blame] | 187 | Overview of changes leading to 1.0.1 |
| 188 | Monday, July 27, 2015 |
| 189 | ==================================== |
| 190 | |
| 191 | - Fix out-of-bounds access in USE shaper. |
| 192 | |
| 193 | |
Behdad Esfahbod | 2604423 | 2015-07-26 23:39:10 +0200 | [diff] [blame] | 194 | Overview of changes leading to 1.0.0 |
Behdad Esfahbod | 9002c27 | 2015-07-27 12:17:54 +0200 | [diff] [blame] | 195 | Sunday, July 26, 2015 |
Behdad Esfahbod | 2604423 | 2015-07-26 23:39:10 +0200 | [diff] [blame] | 196 | ==================================== |
| 197 | |
| 198 | - Implement Universal Shaping Engine: |
| 199 | https://www.microsoft.com/typography/OpenTypeDev/USE/intro.htm |
| 200 | http://blogs.windows.com/bloggingwindows/2015/02/23/windows-shapes-the-worlds-languages/ |
| 201 | - Bump version to 1.0.0. The soname was NOT bumped. |
| 202 | |
| 203 | |
Behdad Esfahbod | 2ed6be6 | 2015-07-26 19:29:53 +0200 | [diff] [blame] | 204 | Overview of changes leading to 0.9.42 |
| 205 | Thursday, July 26, 2015 |
| 206 | ===================================== |
Behdad Esfahbod | 376d587 | 2015-07-22 16:51:12 +0100 | [diff] [blame] | 207 | |
Behdad Esfahbod | 2ed6be6 | 2015-07-26 19:29:53 +0200 | [diff] [blame] | 208 | - New API to allow for retrieving finer-grained cluster |
| 209 | mappings if the client desires to handle them. Default |
| 210 | behavior is unchanged. |
| 211 | - Fix cluster merging when removing default-ignorables. |
| 212 | - Update to Unicode 8.0 |
| 213 | - hb-graphite2 fixes. |
| 214 | - Misc fixes. |
Behdad Esfahbod | 376d587 | 2015-07-22 16:51:12 +0100 | [diff] [blame] | 215 | - Removed HB_NO_MERGE_CLUSTERS hack. |
| 216 | - New API: |
| 217 | hb_buffer_cluster_level_t enum |
| 218 | hb_buffer_get_cluster_level() |
| 219 | hb_buffer_set_cluster_level() |
| 220 | hb-shape / hb-view --cluster-level |
| 221 | |
Behdad Esfahbod | 2ed6be6 | 2015-07-26 19:29:53 +0200 | [diff] [blame] | 222 | |
Behdad Esfahbod | a6446d4 | 2015-06-18 11:14:56 -0700 | [diff] [blame] | 223 | Overview of changes leading to 0.9.41 |
| 224 | Thursday, June 18, 2015 |
| 225 | ===================================== |
| 226 | |
| 227 | - Fix hb-coretext with trailing whitespace in right-to-left. |
| 228 | - New API: hb_buffer_reverse_range(). |
| 229 | - Allow implementing atomic ops in config.h. |
| 230 | - Fix hb_language_t in language bindings. |
| 231 | - Misc fixes. |
| 232 | |
Behdad Esfahbod | 2ed6be6 | 2015-07-26 19:29:53 +0200 | [diff] [blame] | 233 | |
Behdad Esfahbod | e3671b8 | 2015-03-20 18:03:02 -0400 | [diff] [blame] | 234 | Overview of changes leading to 0.9.40 |
| 235 | Friday, March 20, 2015 |
| 236 | ===================================== |
| 237 | |
| 238 | - Another hb-coretext crasher fix. Ouch! |
| 239 | - Happy Norouz! |
| 240 | |
| 241 | |
Behdad Esfahbod | 02a04e6 | 2015-03-04 12:32:03 -0800 | [diff] [blame] | 242 | Overview of changes leading to 0.9.39 |
| 243 | Wednesday, March 4, 2015 |
| 244 | ===================================== |
| 245 | |
| 246 | - Critical hb-coretext fixes. |
| 247 | - Optimizations and refactoring; no functional change |
| 248 | expected. |
| 249 | - Misc build fixes. |
| 250 | |
| 251 | |
Behdad Esfahbod | 28f5e0b | 2015-01-23 12:45:35 -0800 | [diff] [blame] | 252 | Overview of changes leading to 0.9.38 |
| 253 | Friday, January 23, 2015 |
| 254 | ===================================== |
| 255 | |
| 256 | - Fix minor out-of-bounds access in Indic shaper. |
| 257 | - Change New Tai Lue shaping engine from South-East Asian to default, |
| 258 | reflecting change in Unicode encoding model. |
| 259 | - Add hb-shape --font-size. Can take up to two numbers for separate |
| 260 | x / y size. |
| 261 | - Fix CoreText and FreeType scale issues with negative scales. |
| 262 | - Reject blobs larger than 2GB. This might break some icu-le-hb clients |
| 263 | that need security fixes. See: |
| 264 | http://www.icu-project.org/trac/ticket/11450 |
| 265 | - Avoid accessing font tables during face destruction, in casce rogue |
| 266 | clients released face data already. |
| 267 | - Fix up gobject-introspection a bit. Python bindings kinda working. |
| 268 | See README.python. |
| 269 | - Misc fixes. |
| 270 | - API additions: |
| 271 | hb_ft_face_create_referenced() |
| 272 | hb_ft_font_create_referenced() |
| 273 | |
| 274 | |
Behdad Esfahbod | 66e3740 | 2014-12-17 12:09:17 -0800 | [diff] [blame] | 275 | Overview of changes leading to 0.9.37 |
| 276 | Wednesday, December 17, 2014 |
| 277 | ===================================== |
| 278 | |
| 279 | - Fix out-of-bounds access in Context lookup format 3. |
| 280 | - Indic: Allow ZWJ/ZWNJ before syllable modifiers. |
| 281 | |
| 282 | |
Behdad Esfahbod | c0e95ab | 2014-11-20 14:42:24 -0800 | [diff] [blame] | 283 | Overview of changes leading to 0.9.36 |
| 284 | Thursday, November 20, 2014 |
| 285 | ===================================== |
| 286 | |
| 287 | - First time that three months went by without a release since |
| 288 | 0.9.2 was released on August 10, 2012! |
| 289 | - Fix performance bug in hb_ot_collect_glyphs(): |
| 290 | https://bugzilla.mozilla.org/show_bug.cgi?id=1090869 |
| 291 | - Add basic vertical-text support to hb-ot-font. |
| 292 | - Misc build fixes. |
| 293 | |
| 294 | |
Behdad Esfahbod | cd5a114 | 2014-08-13 12:39:34 -0400 | [diff] [blame] | 295 | Overview of changes leading to 0.9.35 |
| 296 | Saturday, August 13, 2014 |
| 297 | ===================================== |
| 298 | |
| 299 | - Fix major shape-plan caching bug when more than one shaper were |
| 300 | provided to hb_shape_full() (as exercised by XeTeX). |
| 301 | http://www.mail-archive.com/debian-bugs-dist@lists.debian.org/msg1246370.html |
| 302 | - Fix Arabic fallback shaping regression. This was broken in 0.9.32. |
| 303 | - Major hb-coretext fixes. That backend is complete now, including |
| 304 | respecing buffer direction and language, down to vertical writing. |
| 305 | - Build fixes for Windows CE. Should build fine now. |
| 306 | - Misc fixes: |
| 307 | Use atexit() only if it's safe to call from shared library |
| 308 | https://bugs.freedesktop.org/show_bug.cgi?id=82246 |
| 309 | Mandaic had errors in its Unicode Joining_Type |
| 310 | https://bugs.freedesktop.org/show_bug.cgi?id=82306 |
| 311 | - API changes: |
| 312 | |
| 313 | * hb_buffer_clear_contents() does not reset buffer flags now. |
| 314 | |
| 315 | After 763e5466c0a03a7c27020e1e2598e488612529a7, one doesn't |
| 316 | need to set flags for different pieces of text. The flags now |
| 317 | are something the client sets up once, depending on how it |
| 318 | actually uses the buffer. As such, don't clear it in |
| 319 | clear_contents(). |
| 320 | |
| 321 | I don't expect any changes to be needed to any existing client. |
| 322 | |
| 323 | |
Behdad Esfahbod | 91c2c0f | 2014-08-02 19:24:55 -0400 | [diff] [blame] | 324 | Overview of changes leading to 0.9.34 |
| 325 | Saturday, August 2, 2014 |
| 326 | ===================================== |
| 327 | |
| 328 | - hb_feature_from_string() now accepts CSS font-feature-settings format. |
| 329 | - As a result, hb-shape / hb-view --features also accept CSS-style strings. |
| 330 | Eg, "'liga' off" is accepted now. |
| 331 | - Add old-spec Myanmar shaper: |
| 332 | https://bugs.freedesktop.org/show_bug.cgi?id=81775 |
| 333 | - Don't apply 'calt' in Hangul shaper. |
| 334 | - Fix mark advance zeroing for Hebrew shaper: |
| 335 | https://bugs.freedesktop.org/show_bug.cgi?id=76767 |
| 336 | - Implement Windows-1256 custom Arabic shaping. Only built on Windows, |
| 337 | and requires help from get_glyph(). Used by Firefox. |
| 338 | https://bugzilla.mozilla.org/show_bug.cgi?id=1045139 |
| 339 | - Disable 'liga' in vertical text. |
| 340 | - Build fixes. |
| 341 | - API changes: |
| 342 | |
| 343 | * Make HB_BUFFER_FLAG_BOT/EOT easier to use. |
| 344 | |
| 345 | Previously, we expected users to provide BOT/EOT flags when the |
| 346 | text *segment* was at paragraph boundaries. This meant that for |
| 347 | clients that provide full paragraph to HarfBuzz (eg. Pango), they |
| 348 | had code like this: |
| 349 | |
| 350 | hb_buffer_set_flags (hb_buffer, |
| 351 | (item_offset == 0 ? HB_BUFFER_FLAG_BOT : 0) | |
| 352 | (item_offset + item_length == paragraph_length ? |
| 353 | HB_BUFFER_FLAG_EOT : 0)); |
| 354 | |
| 355 | hb_buffer_add_utf8 (hb_buffer, |
| 356 | paragraph_text, paragraph_length, |
| 357 | item_offset, item_length); |
| 358 | |
| 359 | After this change such clients can simply say: |
| 360 | |
| 361 | hb_buffer_set_flags (hb_buffer, |
| 362 | HB_BUFFER_FLAG_BOT | HB_BUFFER_FLAG_EOT); |
| 363 | |
| 364 | hb_buffer_add_utf8 (hb_buffer, |
| 365 | paragraph_text, paragraph_length, |
| 366 | item_offset, item_length); |
| 367 | |
| 368 | Ie, HarfBuzz itself checks whether the segment is at the beginning/end |
| 369 | of the paragraph. Clients that only pass item-at-a-time to HarfBuzz |
| 370 | continue not setting any flags whatsoever. |
| 371 | |
| 372 | Another way to put it is: if there's pre-context text in the buffer, |
| 373 | HarfBuzz ignores the BOT flag. If there's post-context, it ignores |
| 374 | EOT flag. |
| 375 | |
| 376 | |
Behdad Esfahbod | 8c1bdb4 | 2014-07-22 17:56:43 -0400 | [diff] [blame] | 377 | Overview of changes leading to 0.9.33 |
| 378 | Tuesday, July 22, 2014 |
| 379 | ===================================== |
| 380 | |
| 381 | - Turn off ARabic 'cswh' feature that was accidentally turned on. |
| 382 | - Add HB_TAG_MAX_SIGNED. |
| 383 | - Make hb_face_make_immutable() really make face immutable! |
| 384 | - Windows build fixes. |
| 385 | |
| 386 | |
Behdad Esfahbod | 66f3091 | 2014-07-17 16:05:47 -0400 | [diff] [blame] | 387 | Overview of changes leading to 0.9.32 |
| 388 | Thursday, July 17, 2014 |
| 389 | ===================================== |
| 390 | |
| 391 | - Apply Arabic shaping features in spec order exactly. |
| 392 | - Another fix for Mongolian free variation selectors. |
| 393 | - For non-Arabic scripts in Arabic shaper apply 'rlig' and 'calt' |
| 394 | together. |
| 395 | - Minor adjustment to U+FFFD logic. |
| 396 | - Fix hb-coretext build. |
| 397 | |
| 398 | |
Behdad Esfahbod | a18897f | 2014-07-16 16:02:15 -0400 | [diff] [blame] | 399 | Overview of changes leading to 0.9.31 |
| 400 | Wednesday, July 16, 2014 |
| 401 | ===================================== |
| 402 | |
| 403 | - Only accept valid UTF-8/16/32; we missed many cases before. |
| 404 | - Better shaping of invalid UTF-8/16/32. Falls back to |
| 405 | U+FFFD REPLACEMENT CHARACTER now. |
| 406 | - With all changes in this release, the buffer will contain fully |
| 407 | valid Unicode after hb_buffer_add_utf8/16/32 no matter how |
| 408 | broken the input is. This can be overriden though. See below. |
| 409 | - Fix Mongolian Variation Selectors for fonts without GDEF. |
| 410 | - Fix minor invalid buffer access. |
| 411 | - Accept zh-Hant and zh-Hans language tags. hb_ot_tag_to_language() |
| 412 | now uses these instead of private tags. |
| 413 | - Build fixes. |
| 414 | - New API: |
| 415 | * hb_buffer_add_codepoints(). This does what hb_buffer_add_utf32() |
| 416 | used to do, ie. no validity check on the input at all. add_utf32 |
| 417 | now replaces invalid Unicode codepoints with the replacement |
| 418 | character (see below). |
| 419 | * hb_buffer_set_replacement_codepoint() |
| 420 | * hb_buffer_get_replacement_codepoint() |
| 421 | Previously, in hb_buffer_add_utf8 and hb_buffer_add_utf16, when |
| 422 | we detected broken input, we replaced that with (hb_codepoint_t)-1. |
| 423 | This has changed to use U+FFFD now, but can be changed using these |
| 424 | new API. |
| 425 | |
| 426 | |
Behdad Esfahbod | ea00137 | 2014-07-09 17:28:43 -0400 | [diff] [blame] | 427 | Overview of changes leading to 0.9.30 |
| 428 | Wednesday, July 9, 2014 |
| 429 | ===================================== |
Behdad Esfahbod | a18897f | 2014-07-16 16:02:15 -0400 | [diff] [blame] | 430 | |
Behdad Esfahbod | ea00137 | 2014-07-09 17:28:43 -0400 | [diff] [blame] | 431 | - Update to Unicode 7.0.0: |
| 432 | * New scripts Manichaean and Psalter Pahlavi are shaped using |
| 433 | Arabic shaper. |
| 434 | * All the other new scripts to through the generic shaper for |
| 435 | now. |
| 436 | - Minor Indic improvements. |
| 437 | - Fix graphite2 backend cluster mapping [crasher!] |
| 438 | - API changes: |
| 439 | * New HB_SCRIPT_* values for Unicode 7.0 scripts. |
| 440 | * New function hb_ot_layout_language_get_required_feature(). |
| 441 | - Build fixes. |
| 442 | |
| 443 | |
Behdad Esfahbod | 5875ad9 | 2014-05-29 15:48:16 -0400 | [diff] [blame] | 444 | Overview of changes leading to 0.9.29 |
| 445 | Thursday, May 29, 2014 |
| 446 | ===================================== |
| 447 | |
| 448 | - Implement cmap in hb-ot-font.h. No variation-selectors yet. |
| 449 | - Myanmar: Allow MedialYa+Asat. |
| 450 | - Various Indic fixes: |
| 451 | * Support most characters in Extended Devanagary and Vedic |
| 452 | Unicode blocks. |
| 453 | * Allow digits and a some punctuation as consonant placeholders. |
| 454 | - Build fixes. |
| 455 | |
Behdad Esfahbod | ea00137 | 2014-07-09 17:28:43 -0400 | [diff] [blame] | 456 | |
Behdad Esfahbod | 79ecdc3 | 2014-04-28 14:24:23 -0700 | [diff] [blame] | 457 | Overview of changes leading to 0.9.28 |
| 458 | Monday, April 28, 2014 |
| 459 | ===================================== |
| 460 | |
| 461 | - Unbreak old-spec Indic shaping. (bug 76705) |
| 462 | - Fix shaping of U+17DD and U+0FC6. |
| 463 | - Add HB_NO_MERGE_CLUSTERS build option. NOT to be enabled by default |
| 464 | for shipping libraries. It's an option for further experimentation |
| 465 | right now. When we are sure how to do it properly, we will add |
| 466 | public run-time API for the functionality. |
| 467 | - Build fixes. |
| 468 | |
| 469 | |
Dominik Röttsches | ba8c9d9 | 2014-03-18 14:39:03 +0200 | [diff] [blame] | 470 | Overview of changes leading to 0.9.27 |
| 471 | Tuesday, March 18, 2014 |
| 472 | ===================================== |
| 473 | |
| 474 | - Don't use "register" storage class specifier |
| 475 | - Wrap definition of free_langs() with HAVE_ATEXIT |
| 476 | - Add coretext_aat shaper and hb_coretext_face_create() constructor |
| 477 | - If HAVE_ICU_BUILTIN is defined, use hb-icu Unicode callbacks |
| 478 | - Add Myanmar test case from OpenType Myanmar spec |
| 479 | - Only do fallback Hebrew composition if no GPOS 'mark' available |
| 480 | - Allow bootstrapping without gtk-doc |
| 481 | - Use AM_MISSING_PROG for ragel and git |
| 482 | - Typo in ucdn's Makefile.am |
| 483 | - Improve MemoryBarrier() implementation |
| 484 | |
| 485 | |
Behdad Esfahbod | 189bf23 | 2014-01-30 15:14:58 -0500 | [diff] [blame] | 486 | Overview of changes leading to 0.9.26 |
| 487 | Thursday, January 30, 2014 |
| 488 | ===================================== |
| 489 | |
| 490 | - Misc fixes. |
| 491 | - Fix application of 'rtlm' feature. |
| 492 | - Automatically apply frac/numr/dnom around U+2044 FRACTION SLASH. |
| 493 | - New header: hb-ot-shape.h |
| 494 | - Uniscribe: fix scratch-buffer accounting. |
| 495 | - Reorder Tai Tham SAKOT to after tone-marks. |
| 496 | - Add Hangul shaper. |
| 497 | - New files: |
| 498 | hb-ot-shape-complex-hangul.cc |
| 499 | hb-ot-shape-complex-hebrew.cc |
| 500 | hb-ot-shape-complex-tibetan.cc |
| 501 | - Disable 'cswh' feature in Arabic shaper. |
| 502 | - Coretext: better handle surrogate pairs. |
| 503 | - Add HB_TAG_MAX and _HB_SCRIPT_MAX_VALUE. |
| 504 | |
| 505 | |
Behdad Esfahbod | 860fc9a | 2013-12-04 20:06:59 -0500 | [diff] [blame] | 506 | Overview of changes leading to 0.9.25 |
| 507 | Wednesday, December 4, 2013 |
| 508 | ===================================== |
| 509 | |
| 510 | - Myanmar shaper improvements. |
| 511 | - Avoid font fallback in CoreText backend. |
| 512 | - Additional OpenType language tag mappiongs. |
| 513 | - More aggressive shape-plan caching. |
| 514 | - Build with / require automake 1.13. |
| 515 | - Build with libtool 2.4.2.418 alpha to support ppc64le. |
| 516 | |
| 517 | |
Behdad Esfahbod | 6300694 | 2013-11-13 14:54:07 -0500 | [diff] [blame] | 518 | Overview of changes leading to 0.9.24 |
| 519 | Tuesday, November 13, 2013 |
| 520 | ===================================== |
| 521 | |
| 522 | - Misc compiler warning fixes with clang. |
| 523 | - No functional changes. |
| 524 | |
| 525 | |
Behdad Esfahbod | dce79c2 | 2013-10-28 20:26:40 +0100 | [diff] [blame] | 526 | Overview of changes leading to 0.9.23 |
| 527 | Monday, October 28, 2013 |
| 528 | ===================================== |
| 529 | |
| 530 | - "Udupi HarfBuzz Hackfest", Paris, October 14..18 2013. |
| 531 | - Fix (Chain)Context recursion with non-monotone lookup positions. |
| 532 | - Misc Indic bug fixes. |
| 533 | - New Javanese / Buginese shaping, similar to Windows 8.1. |
| 534 | |
| 535 | |
Behdad Esfahbod | e152d1a | 2013-10-03 15:09:37 -0400 | [diff] [blame] | 536 | Overview of changes leading to 0.9.22 |
| 537 | Thursday, October 3, 2013 |
| 538 | ===================================== |
| 539 | |
| 540 | - Fix use-after-end-of-scope in hb_language_from_string(). |
| 541 | - Fix hiding of default_ignorables if font doesn't have space glyph. |
| 542 | - Protect against out-of-range lookup indices. |
| 543 | |
| 544 | - API Changes: |
| 545 | |
| 546 | * Added hb_ot_layout_table_get_lookup_count() |
| 547 | |
| 548 | |
Behdad Esfahbod | b61f97d | 2013-09-16 22:07:22 -0400 | [diff] [blame] | 549 | Overview of changes leading to 0.9.21 |
| 550 | Monday, September 16, 2013 |
| 551 | ===================================== |
| 552 | |
| 553 | - Rename gobject-introspection library name from harfbuzz to HarfBuzz. |
| 554 | - Remove (long disabled) hb-old and hb-icu-le test shapers. |
| 555 | - Misc gtk-doc and gobject-introspection annotations. |
| 556 | - Misc fixes. |
| 557 | - API changes: |
| 558 | |
| 559 | * Add HB_SET_VALUE_INVALID |
| 560 | |
Behdad Esfahbod | f730b5d | 2013-08-29 15:53:33 -0400 | [diff] [blame] | 561 | Overview of changes leading to 0.9.20 |
| 562 | Thursday, August 29, 2013 |
| 563 | ===================================== |
| 564 | |
| 565 | General: |
| 566 | - Misc substitute_closure() fixes. |
| 567 | - Build fixes. |
| 568 | |
| 569 | Documentation: |
| 570 | - gtk-doc boilerplate integrated. Docs are built now, but |
| 571 | contain no contents. By next release hopefully we have |
| 572 | some content in. Enable using --enable-gtk-doc. |
| 573 | |
| 574 | GObject and Introspection: |
| 575 | - Added harfbuzz-gobject library (hb-gobject.h) that has type |
| 576 | bindings for all HarfBuzz objects and enums. Enable using |
| 577 | --with-gobject. |
| 578 | - Added gobject-introspection boilerplate. Nothing useful |
| 579 | right now. Work in progress. Gets enabled automatically if |
| 580 | --with-gobject is used. Override with --disable-introspection. |
| 581 | |
| 582 | OpenType shaper: |
| 583 | - Apply 'mark' in Myanmar shaper. |
| 584 | - Don't apply 'dlig' by default. |
| 585 | |
| 586 | Uniscribe shaper: |
| 587 | - Support user features. |
| 588 | - Fix loading of fonts that are also installed on the system. |
| 589 | - Fix shaping of Arabic Presentation Forms. |
| 590 | - Fix build with wide chars. |
| 591 | |
| 592 | CoreText shaper: |
| 593 | - Support user features. |
| 594 | |
| 595 | Source changes: |
| 596 | - hb_face_t code moved to hb-face.h / hb-face.cc. |
| 597 | - Added hb-deprecated.h. |
| 598 | |
| 599 | API changes: |
| 600 | - Added HB_DISABLE_DEPRECATED. |
| 601 | - Deprecated HB_SCRIPT_CANADIAN_ABORIGINAL; replaced by |
| 602 | HB_SCRIPT_CANADIAN_SYLLABICS. |
| 603 | - Deprecated HB_BUFFER_FLAGS_DEFAULT; replaced by |
| 604 | HB_BUFFER_FLAG_DEFAULT. |
| 605 | - Deprecated HB_BUFFER_SERIALIZE_FLAGS_DEFAULT; replaced by |
| 606 | HB_BUFFER_SERIALIZE_FLAG_DEFAULT. |
| 607 | |
| 608 | |
Behdad Esfahbod | 2b78d67 | 2013-07-16 16:06:27 -0400 | [diff] [blame] | 609 | Overview of changes leading to 0.9.19 |
| 610 | Tuesday, July 16, 2013 |
| 611 | ===================================== |
| 612 | |
| 613 | - Build fixes. |
| 614 | - Better handling of multiple variation selectors in a row. |
| 615 | - Pass on variation selector to GSUB if not consumed by cmap. |
| 616 | - Fix undefined memory access. |
| 617 | - Add Javanese config to Indic shaper. |
| 618 | - Misc bug fixes. |
| 619 | |
Behdad Esfahbod | 4014aa4 | 2013-05-28 17:28:59 -0400 | [diff] [blame] | 620 | Overview of changes leading to 0.9.18 |
| 621 | Tuesday, May 28, 2013 |
| 622 | ===================================== |
| 623 | |
| 624 | New build system: |
| 625 | |
| 626 | - All unneeded code is all disabled by default, |
| 627 | |
| 628 | - Uniscribe and CoreText shapers can be enabled with their --with options, |
| 629 | |
| 630 | - icu_le and old shapers cannot be enabled for now, |
| 631 | |
| 632 | - glib, freetype, and cairo will be detected automatically. |
| 633 | They can be force on/off'ed with their --with options, |
| 634 | |
| 635 | - icu and graphite2 are default off, can be enabled with their --with |
| 636 | options, |
| 637 | |
| 638 | Moreover, ICU support is now build into a separate library: |
| 639 | libharfbuzz-icu.so, and a new harfbuzz-icu.pc is shipped for it. |
| 640 | Distros can enable ICU now without every application on earth |
| 641 | getting linked to via libharfbuzz.so. |
| 642 | |
| 643 | For distros I recommend that they make sure they are building --with-glib |
| 644 | --with-freetype --with-cairo, --with-icu, and optionally --with-graphite2; |
| 645 | And package harfbuzz and harfbuzz-icu separately. |
| 646 | |
| 647 | |
Behdad Esfahbod | f1b02f4 | 2013-05-20 09:23:58 -0400 | [diff] [blame] | 648 | Overview of changes leading to 0.9.17 |
| 649 | Monday, May 20, 2013 |
| 650 | ===================================== |
| 651 | |
| 652 | - Build fixes. |
| 653 | - Fix bug in hb_set_get_min(). |
| 654 | - Fix regression with Arabic mark positioning / width-zeroing. |
| 655 | |
Behdad Esfahbod | a408d23 | 2013-04-19 16:32:06 -0400 | [diff] [blame] | 656 | Overview of changes leading to 0.9.16 |
| 657 | Friday, April 19, 2013 |
| 658 | ===================================== |
| 659 | |
| 660 | - Major speedup in OpenType lookup processing. With the Amiri |
| 661 | Arabic font, this release is over 3x faster than previous |
| 662 | release. All scripts / languages should see this speedup. |
| 663 | |
| 664 | - New --num-iterations option for hb-shape / hb-view; useful for |
| 665 | profiling. |
| 666 | |
Behdad Esfahbod | 22e4745 | 2013-04-05 18:02:43 -0400 | [diff] [blame] | 667 | Overview of changes leading to 0.9.15 |
Behdad Esfahbod | a408d23 | 2013-04-19 16:32:06 -0400 | [diff] [blame] | 668 | Friday, April 05, 2013 |
Behdad Esfahbod | 22e4745 | 2013-04-05 18:02:43 -0400 | [diff] [blame] | 669 | ===================================== |
| 670 | |
| 671 | - Build fixes. |
| 672 | - Fix crasher in graphite2 shaper. |
| 673 | - Fix Arabic mark width zeroing regression. |
| 674 | - Don't compose Hangul jamo into Unicode syllables. |
| 675 | |
| 676 | |
Behdad Esfahbod | f872a17 | 2013-03-21 13:38:06 -0400 | [diff] [blame] | 677 | Overview of changes leading to 0.9.14 |
| 678 | Thursday, March 21, 2013 |
| 679 | ===================================== |
| 680 | |
| 681 | - Build fixes. |
| 682 | - Fix time-consuming sanitize with malicious fonts. |
| 683 | - Implement hb_buffer_deserialize_glyphs() for both json and text. |
| 684 | - Do not ignore Hangul filler characters. |
| 685 | - Indic fixes: |
| 686 | * Fix Malayalam pre-base reordering interaction with post-forms. |
| 687 | * Further adjust ZWJ handling. Should fix known regressions from |
| 688 | 0.9.13. |
| 689 | |
| 690 | |
Behdad Esfahbod | 05686b5 | 2013-02-25 18:19:20 -0500 | [diff] [blame] | 691 | Overview of changes leading to 0.9.13 |
| 692 | Thursday, February 25, 2013 |
| 693 | ===================================== |
| 694 | |
| 695 | - Build fixes. |
| 696 | - Ngapi HarfBuzz Hackfest in London (February 2013): |
| 697 | * Fixed all known Indic bugs, |
| 698 | * New Win8-style Myanmar shaper, |
| 699 | * New South-East Asian shaper for Tai Tham, Cham, and New Tai Lue, |
| 700 | * Smartly ignore Default_Ignorable characters (joiners, etc) wheb |
| 701 | matching GSUB/GPOS lookups, |
| 702 | * Fix 'Phags-Pa U+A872 shaping, |
| 703 | * Fix partial disabling of default-on features, |
| 704 | * Allow disabling of TrueType kerning. |
| 705 | - Fix possible crasher with broken fonts with overlapping tables. |
| 706 | - Removed generated files from git again. So, one needs ragel to |
| 707 | bootstrap from the git tree. |
| 708 | |
| 709 | API changes: |
| 710 | - hb_shape() and related APIs now abort if buffer direction is |
| 711 | HB_DIRECTION_INVALID. Previously, hb_shape() was calling |
| 712 | hb_buffer_guess_segment_properties() on the buffer before |
| 713 | shaping. The heuristics in that function are fragile. If the |
| 714 | user really wants the old behvaior, they can call that function |
| 715 | right before calling hb_shape() to get the old behavior. |
| 716 | - hb_blob_create_sub_blob() always creates sub-blob with |
| 717 | HB_MEMORY_MODE_READONLY. See comments for the reason. |
| 718 | |
| 719 | |
Behdad Esfahbod | 09b5393 | 2013-01-18 17:10:47 -0600 | [diff] [blame] | 720 | Overview of changes leading to 0.9.12 |
| 721 | Thursday, January 18, 2013 |
| 722 | ===================================== |
| 723 | |
| 724 | - Build fixes for Sun compiler. |
| 725 | - Minor bug fix. |
| 726 | |
Behdad Esfahbod | cf81fb3 | 2013-01-10 09:06:34 -0600 | [diff] [blame] | 727 | Overview of changes leading to 0.9.11 |
| 728 | Thursday, January 10, 2013 |
| 729 | ===================================== |
| 730 | |
| 731 | - Build fixes. |
| 732 | - Fix GPOS mark attachment with null Anchor offsets. |
| 733 | - [Indic] Fix old-spec reordering of viramas if sequence ends in one. |
| 734 | - Fix multi-threaded shaper data creation crash. |
| 735 | - Add atomic ops for Solaris. |
| 736 | |
| 737 | API changes: |
| 738 | - Rename hb_buffer_clear() to hb_buffer_clear_contents(). |
| 739 | |
| 740 | |
Behdad Esfahbod | 34e6c3e | 2013-01-03 00:14:24 -0600 | [diff] [blame] | 741 | Overview of changes leading to 0.9.10 |
| 742 | Thursday, January 3, 2013 |
| 743 | ===================================== |
| 744 | |
| 745 | - [Indic] Fixed rendering of Malayalam dot-reph |
| 746 | - Updated OT language tags. |
| 747 | - Updated graphite2 backend. |
| 748 | - Improved hb_ot_layout_get_size_params() logic. |
| 749 | - Improve hb-shape/hb-view help output. |
| 750 | - Fixed hb-set.h implementation to not crash. |
| 751 | - Fixed various issues with hb_ot_layout_collect_lookups(). |
| 752 | - Various build fixes. |
| 753 | |
| 754 | New API: |
| 755 | |
| 756 | hb_graphite2_face_get_gr_face() |
| 757 | hb_graphite2_font_get_gr_font() |
| 758 | hb_coretext_face_get_cg_font() |
| 759 | |
| 760 | Modified API: |
| 761 | |
| 762 | hb_ot_layout_get_size_params() |
| 763 | |
| 764 | |
Behdad Esfahbod | c6408a1 | 2012-12-05 17:36:52 -0500 | [diff] [blame] | 765 | Overview of changes leading to 0.9.9 |
| 766 | Wednesday, December 5, 2012 |
| 767 | ==================================== |
| 768 | |
| 769 | - Fix build on Windows. |
| 770 | - Minor improvements. |
| 771 | |
| 772 | |
Behdad Esfahbod | a52f51b | 2012-12-04 15:43:38 -0500 | [diff] [blame] | 773 | Overview of changes leading to 0.9.8 |
| 774 | Tuesday, December 4, 2012 |
| 775 | ==================================== |
| 776 | |
| 777 | |
| 778 | - Actually implement hb_shape_plan_get_shaper (). |
| 779 | - Make UCDB data tables const. |
| 780 | - Lots of internal refactoring in OTLayout tables. |
| 781 | - Flesh out hb_ot_layout_lookup_collect_glyphs(). |
| 782 | |
| 783 | New API: |
| 784 | |
| 785 | hb_ot_layout_collect_lookups() |
| 786 | hb_ot_layout_get_size_params() |
| 787 | |
| 788 | |
Behdad Esfahbod | 4c89635 | 2012-11-21 01:20:56 -0500 | [diff] [blame] | 789 | Overview of changes leading to 0.9.7 |
| 790 | Sunday, November 21, 2012 |
| 791 | ==================================== |
| 792 | |
| 793 | |
| 794 | HarfBuzz "All-You-Can-Eat-Sushi" (aka Vancouver) Hackfest and follow-on fixes. |
| 795 | |
| 796 | - Fix Arabic contextual joining using pre-context text. |
| 797 | - Fix Sinhala "split matra" mess. |
| 798 | - Fix Khmer shaping with broken fonts. |
| 799 | - Implement Thai "PUA" shaping for old fonts. |
| 800 | - Do NOT route Kharoshthi script through the Indic shaper. |
| 801 | - Disable fallback positioning for Indic and Thai shapers. |
| 802 | - Misc fixes. |
| 803 | |
| 804 | |
| 805 | hb-shape / hb-view changes: |
| 806 | |
| 807 | - Add --text-before and --text-after |
| 808 | - Add --bot / --eot / --preserve-default-ignorables |
| 809 | - hb-shape --output-format=json |
| 810 | |
| 811 | |
| 812 | New API: |
| 813 | |
| 814 | hb_buffer_clear() |
| 815 | |
| 816 | hb_buffer_flags_t |
| 817 | |
| 818 | HB_BUFFER_FLAGS_DEFAULT |
| 819 | HB_BUFFER_FLAG_BOT |
| 820 | HB_BUFFER_FLAG_EOT |
| 821 | HB_BUFFER_FLAG_PRESERVE_DEFAULT_IGNORABLES |
| 822 | |
| 823 | hb_buffer_set_flags() |
| 824 | hb_buffer_get_flags() |
| 825 | |
| 826 | HB_BUFFER_SERIALIZE_FLAGS |
| 827 | hb_buffer_serialize_glyphs() |
| 828 | hb_buffer_deserialize_glyphs() |
| 829 | hb_buffer_serialize_list_formats() |
| 830 | |
| 831 | hb_set_add_range() |
| 832 | hb_set_del_range() |
| 833 | hb_set_get_population() |
| 834 | hb_set_next_range() |
| 835 | |
| 836 | hb_face_[sg]et_glyph_count() |
| 837 | |
| 838 | hb_segment_properties_t |
| 839 | HB_SEGMENT_PROPERTIES_DEFAULT |
| 840 | hb_segment_properties_equal() |
| 841 | hb_segment_properties_hash() |
| 842 | |
| 843 | hb_buffer_set_segment_properties() |
| 844 | hb_buffer_get_segment_properties() |
| 845 | |
| 846 | hb_ot_layout_glyph_class_t |
| 847 | hb_ot_layout_get_glyph_class() |
| 848 | hb_ot_layout_get_glyphs_in_class() |
| 849 | |
| 850 | hb_shape_plan_t |
| 851 | hb_shape_plan_create() |
| 852 | hb_shape_plan_create_cached() |
| 853 | hb_shape_plan_get_empty() |
| 854 | hb_shape_plan_reference() |
| 855 | hb_shape_plan_destroy() |
| 856 | hb_shape_plan_set_user_data() |
| 857 | hb_shape_plan_get_user_data() |
| 858 | hb_shape_plan_execute() |
| 859 | hb_shape_plan_get_shaper() |
| 860 | |
| 861 | hb_ot_shape_plan_collect_lookups() |
| 862 | |
| 863 | |
| 864 | API changes: |
| 865 | |
| 866 | - Remove "mask" parameter from hb_buffer_add(). |
| 867 | - Rename hb_ot_layout_would_substitute_lookup() and hb_ot_layout_substitute_closure_lookup(). |
| 868 | - hb-set.h API const correction. |
| 869 | - Renamed hb_set_min/max() to hb_set_get_min/max(). |
| 870 | - Rename hb_ot_layout_feature_get_lookup_indexes() to hb_ot_layout_feature_get_lookups(). |
| 871 | - Rename hb_buffer_guess_properties() to hb_buffer_guess_segment_properties(). |
| 872 | |
| 873 | |
| 874 | |
Behdad Esfahbod | da43a92 | 2012-11-13 13:48:26 -0800 | [diff] [blame] | 875 | Overview of changes leading to 0.9.6 |
| 876 | Sunday, November 13, 2012 |
| 877 | ==================================== |
| 878 | |
| 879 | - Don't clear pre-context text if no new context is provided. |
| 880 | - Fix ReverseChainingSubstLookup, which was totally borked. |
| 881 | - Adjust output format of hb-shape a bit. |
| 882 | - Include config.h.in in-tree. Makes it easier for alternate build systems. |
| 883 | - Fix hb_buffer_set_length(buffer, 0) invalid memory allocation. |
| 884 | - Use ICU LayoutEngine's C API instead of C++. Avoids much headache. |
| 885 | - Drop glyphs for all of Unicode Default_Ignorable characters. |
| 886 | - Misc build fixes. |
| 887 | |
| 888 | Arabic shaper: |
| 889 | - Enable 'dlig' and 'mset' features in Arabic shaper. |
| 890 | - Implement 'Phags-pa shaping, improve Mongolian. |
| 891 | |
| 892 | Indic shaper: |
| 893 | - Decompose Sinhala split matras the way old HarfBuzz / Pango did. |
| 894 | - Initial support for Consonant Medials. |
| 895 | - Start adding new-style Myanmar shaping. |
| 896 | - Make reph and 'pref' logic introspect the font. |
| 897 | - Route Meetei-Mayek through the Indic shaper. |
| 898 | - Don't apply 'liga' in Indic shaper. |
| 899 | - Improve Malayalam pre-base reordering Ra interaction with Chillus. |
| 900 | |
| 901 | |
| 902 | |
Behdad Esfahbod | 13c0584 | 2012-10-14 18:37:09 -0500 | [diff] [blame] | 903 | Overview of changes leading to 0.9.5 |
| 904 | Sunday, October 14, 2012 |
| 905 | ==================================== |
| 906 | |
| 907 | - Synthetic-GSUB Arabic fallback shaping. |
| 908 | |
| 909 | - Misc Indic improvements. |
| 910 | |
| 911 | - Add build system support for pthread. |
| 912 | |
| 913 | - Imported UCDN for in-tree Unicode callbacks implementation. |
| 914 | |
| 915 | - Context-aware Arabic joining. |
| 916 | |
| 917 | - Misc other fixes. |
| 918 | |
| 919 | - New API: |
| 920 | |
| 921 | hb_feature_to/from-string() |
| 922 | hb_buffer_[sg]et_content_type() |
| 923 | |
| 924 | |
| 925 | |
Behdad Esfahbod | f7e81ce | 2012-09-04 15:32:37 -0400 | [diff] [blame] | 926 | Overview of changes leading to 0.9.4 |
| 927 | Tuesday, Sep 03, 2012 |
| 928 | ==================================== |
| 929 | |
| 930 | - Indic improvements with old-spec Malayalam. |
| 931 | |
| 932 | - Better fallback glyph positioning, specially with Thai / Lao marks. |
| 933 | |
| 934 | - Implement dotted-circle insertion. |
| 935 | |
| 936 | - Better Arabic fallback shaping / ligation. |
| 937 | |
| 938 | - Added ICU LayoutEngine backend for testing. Call it by the 'icu_le' name. |
| 939 | |
| 940 | - Misc fixes. |
| 941 | |
| 942 | |
| 943 | |
Behdad Esfahbod | 7fe00d1 | 2012-08-18 13:59:46 -0400 | [diff] [blame] | 944 | Overview of changes leading to 0.9.3 |
| 945 | Friday, Aug 18, 2012 |
| 946 | ==================================== |
| 947 | |
| 948 | - Fixed fallback mark positioning for left-to-right text. |
| 949 | |
| 950 | - Improve mark positioning for the remaining combining classes. |
| 951 | |
| 952 | - Unbreak Thai and fallback Arabic shaping. |
| 953 | |
| 954 | - Port Arabic shaper to shape-plan caching. |
| 955 | |
| 956 | - Use new ICU normalizer functions. |
| 957 | |
| 958 | |
| 959 | |
Behdad Esfahbod | e297ee4 | 2012-08-10 14:49:37 -0400 | [diff] [blame] | 960 | Overview of changes leading to 0.9.2 |
Behdad Esfahbod | 9fe7605 | 2012-08-15 17:24:28 -0400 | [diff] [blame] | 961 | Friday, Aug 10, 2012 |
Behdad Esfahbod | e297ee4 | 2012-08-10 14:49:37 -0400 | [diff] [blame] | 962 | ==================================== |
| 963 | |
| 964 | - Over a thousand commits! This is the first major release of HarfBuzz. |
| 965 | |
| 966 | - HarfBuzz is feature-complete now! It should be in par, or better, than |
| 967 | both Pango's shapers and old HarfBuzz / Qt shapers. |
| 968 | |
| 969 | - New Indic shaper, supporting main Indic scripts, Sinhala, and Khmer. |
| 970 | |
| 971 | - Improved Arabic shaper, with fallback Arabic shaping, supporting Arabic, |
| 972 | Sinhala, N'ko, Mongolian, and Mandaic. |
| 973 | |
| 974 | - New Thai / Lao shaper. |
| 975 | |
| 976 | - Tibetan / Hangul support in the generic shaper. |
| 977 | |
| 978 | - Synthetic GDEF support for fonts without a GDEF table. |
| 979 | |
| 980 | - Fallback mark positioning for fonts without a GPOS table. |
| 981 | |
| 982 | - Unicode normalization shaping heuristic during glyph mapping. |
| 983 | |
| 984 | - New experimental Graphite2 backend. |
| 985 | |
| 986 | - New Uniscribe backend (primarily for testing). |
| 987 | |
| 988 | - New CoreText backend (primarily for testing). |
| 989 | |
| 990 | - Major optimization and speedup. |
| 991 | |
| 992 | - Test suites and testing infrastructure (work in progress). |
| 993 | |
| 994 | - Greatly improved hb-view cmdline tool. |
| 995 | |
| 996 | - hb-shape cmdline tool. |
| 997 | |
| 998 | - Unicode 6.1 support. |
| 999 | |
| 1000 | Summary of API changes: |
| 1001 | |
| 1002 | o Changed API: |
| 1003 | |
| 1004 | - Users are expected to only include main header files now (ie. hb.h, |
| 1005 | hb-glib.h, hb-ft.h, ...) |
| 1006 | |
| 1007 | - All struct tag names had their initial underscore removed. |
| 1008 | Ie. "struct _hb_buffer_t" is "struct hb_buffer_t" now. |
| 1009 | |
| 1010 | - All set_user_data() functions now take a "replace" boolean parameter. |
| 1011 | |
| 1012 | - hb_buffer_create() takes zero arguments now. |
| 1013 | Use hb_buffer_pre_allocate() to pre-allocate. |
| 1014 | |
| 1015 | - hb_buffer_add_utf*() now accept -1 for length parameteres, |
| 1016 | meaning "nul-terminated". |
| 1017 | |
| 1018 | - hb_direction_t enum values changed. |
| 1019 | |
| 1020 | - All *_from_string() APIs now take a length parameter to allow for |
| 1021 | non-nul-terminated strings. A -1 length means "nul-terminated". |
| 1022 | |
| 1023 | - Typedef for hb_language_t changed. |
| 1024 | |
| 1025 | - hb_get_table_func_t renamed to hb_reference_table_func_t. |
| 1026 | |
| 1027 | - hb_ot_layout_table_choose_script() |
| 1028 | |
| 1029 | - Various renames in hb-unicode.h. |
| 1030 | |
| 1031 | o New API: |
| 1032 | |
| 1033 | - hb_buffer_guess_properties() |
| 1034 | Automatically called by hb_shape(). |
| 1035 | |
| 1036 | - hb_buffer_normalize_glyphs() |
| 1037 | |
| 1038 | - hb_tag_from_string() |
| 1039 | |
| 1040 | - hb-coretext.h |
| 1041 | |
| 1042 | - hb-uniscribe.h |
| 1043 | |
| 1044 | - hb_face_reference_blob() |
| 1045 | - hb_face_[sg]et_index() |
| 1046 | - hb_face_set_upem() |
| 1047 | |
| 1048 | - hb_font_get_glyph_name_func_t |
| 1049 | hb_font_get_glyph_from_name_func_t |
| 1050 | hb_font_funcs_set_glyph_name_func() |
| 1051 | hb_font_funcs_set_glyph_from_name_func() |
| 1052 | hb_font_get_glyph_name() |
| 1053 | hb_font_get_glyph_from_name() |
| 1054 | hb_font_glyph_to_string() |
| 1055 | hb_font_glyph_from_string() |
| 1056 | |
| 1057 | - hb_font_set_funcs_data() |
| 1058 | |
| 1059 | - hb_ft_font_set_funcs() |
| 1060 | - hb_ft_font_get_face() |
| 1061 | |
| 1062 | - hb-gobject.h (work in progress) |
| 1063 | |
| 1064 | - hb_ot_shape_glyphs_closure() |
| 1065 | hb_ot_layout_substitute_closure_lookup() |
| 1066 | |
| 1067 | - hb-set.h |
| 1068 | |
| 1069 | - hb_shape_full() |
| 1070 | |
| 1071 | - hb_unicode_combining_class_t |
| 1072 | |
| 1073 | - hb_unicode_compose_func_t |
| 1074 | hb_unicode_decompose_func_t |
| 1075 | hb_unicode_decompose_compatibility_func_t |
| 1076 | hb_unicode_funcs_set_compose_func() |
| 1077 | hb_unicode_funcs_set_decompose_func() |
| 1078 | hb_unicode_funcs_set_decompose_compatibility_func() |
| 1079 | hb_unicode_compose() |
| 1080 | hb_unicode_decompose() |
| 1081 | hb_unicode_decompose_compatibility() |
| 1082 | |
| 1083 | o Removed API: |
| 1084 | |
| 1085 | - hb_ft_get_font_funcs() |
| 1086 | |
| 1087 | - hb_ot_layout_substitute_start() |
| 1088 | hb_ot_layout_substitute_lookup() |
| 1089 | hb_ot_layout_substitute_finish() |
| 1090 | hb_ot_layout_position_start() |
| 1091 | hb_ot_layout_position_lookup() |
| 1092 | hb_ot_layout_position_finish() |
| 1093 | |
| 1094 | |
| 1095 | |
Behdad Esfahbod | f245576 | 2011-05-25 16:08:06 -0400 | [diff] [blame] | 1096 | Overview of changes leading to 0.6.0 |
| 1097 | Friday, May 27, 2011 |
| 1098 | ==================================== |
| 1099 | |
| 1100 | - Vertical text support in GPOS |
| 1101 | - Almost all API entries have unit tests now, under test/ |
| 1102 | - All thread-safety issues are fixed |
| 1103 | |
| 1104 | Summary of API changes follows. |
| 1105 | |
| 1106 | |
| 1107 | * Simple Types API: |
| 1108 | |
| 1109 | o New API: |
| 1110 | HB_LANGUAGE_INVALID |
| 1111 | hb_language_get_default() |
| 1112 | hb_direction_to_string() |
| 1113 | hb_direction_from_string() |
| 1114 | hb_script_get_horizontal_direction() |
| 1115 | HB_UNTAG() |
| 1116 | |
| 1117 | o Renamed API: |
| 1118 | hb_category_t renamed to hb_unicode_general_category_t |
| 1119 | |
| 1120 | o Changed API: |
| 1121 | hb_language_t is a typed pointers now |
| 1122 | |
| 1123 | o Removed API: |
| 1124 | HB_TAG_STR() |
| 1125 | |
| 1126 | |
| 1127 | * Use ISO 15924 tags for hb_script_t: |
| 1128 | |
| 1129 | o New API: |
| 1130 | hb_script_from_iso15924_tag() |
| 1131 | hb_script_to_iso15924_tag() |
| 1132 | hb_script_from_string() |
| 1133 | |
| 1134 | o Changed API: |
| 1135 | HB_SCRIPT_* enum members changed value. |
| 1136 | |
| 1137 | |
| 1138 | * Buffer API streamlined: |
| 1139 | |
| 1140 | o New API: |
| 1141 | hb_buffer_reset() |
| 1142 | hb_buffer_set_length() |
| 1143 | hb_buffer_allocation_successful() |
| 1144 | |
| 1145 | o Renamed API: |
| 1146 | hb_buffer_ensure() renamed to hb_buffer_pre_allocate() |
| 1147 | hb_buffer_add_glyph() renamed to hb_buffer_add() |
| 1148 | |
| 1149 | o Removed API: |
| 1150 | hb_buffer_clear() |
| 1151 | hb_buffer_clear_positions() |
| 1152 | |
| 1153 | o Changed API: |
| 1154 | hb_buffer_get_glyph_infos() takes an out length parameter now |
| 1155 | hb_buffer_get_glyph_positions() takes an out length parameter now |
| 1156 | |
| 1157 | |
| 1158 | * Blob API streamlined: |
| 1159 | |
| 1160 | o New API: |
| 1161 | hb_blob_get_data() |
| 1162 | hb_blob_get_data_writable() |
| 1163 | |
| 1164 | o Renamed API: |
| 1165 | hb_blob_create_empty() renamed to hb_blob_get_empty() |
| 1166 | |
| 1167 | o Removed API: |
| 1168 | hb_blob_lock() |
| 1169 | hb_blob_unlock() |
| 1170 | hb_blob_is_writable() |
| 1171 | hb_blob_try_writable() |
| 1172 | |
| 1173 | o Changed API: |
| 1174 | hb_blob_create() takes user_data before destroy now |
| 1175 | |
| 1176 | |
| 1177 | * Unicode functions API: |
| 1178 | |
| 1179 | o Unicode function vectors can subclass other unicode function vectors now. |
| 1180 | Unimplemented callbacks in the subclass automatically chainup to the parent. |
| 1181 | |
| 1182 | o All hb_unicode_funcs_t callbacks take a user_data now. Their setters |
| 1183 | take a user_data and its respective destroy callback. |
| 1184 | |
| 1185 | o New API: |
| 1186 | hb_unicode_funcs_get_empty() |
| 1187 | hb_unicode_funcs_get_default() |
| 1188 | hb_unicode_funcs_get_parent() |
| 1189 | |
| 1190 | o Changed API: |
| 1191 | hb_unicode_funcs_create() now takes a parent_funcs. |
| 1192 | |
| 1193 | o Removed func getter functions: |
| 1194 | hb_unicode_funcs_get_mirroring_func() |
| 1195 | hb_unicode_funcs_get_general_category_func() |
| 1196 | hb_unicode_funcs_get_script_func() |
| 1197 | hb_unicode_funcs_get_combining_class_func() |
| 1198 | hb_unicode_funcs_get_eastasian_width_func() |
| 1199 | |
| 1200 | |
| 1201 | * Face API: |
| 1202 | |
| 1203 | o Renamed API: |
| 1204 | hb_face_get_table() renamed to hb_face_reference_table() |
| 1205 | hb_face_create_for_data() renamed to hb_face_create() |
| 1206 | |
| 1207 | o Changed API: |
| 1208 | hb_face_create_for_tables() takes user_data before destroy now |
| 1209 | hb_face_reference_table() returns empty blob instead of NULL |
| 1210 | hb_get_table_func_t accepts the face as first parameter now |
| 1211 | |
| 1212 | * Font API: |
| 1213 | |
| 1214 | o Fonts can subclass other fonts now. Unimplemented callbacks in the |
| 1215 | subclass automatically chainup to the parent. When chaining up, |
| 1216 | scale is adjusted if the parent font has a different scale. |
| 1217 | |
| 1218 | o All hb_font_funcs_t callbacks take a user_data now. Their setters |
| 1219 | take a user_data and its respective destroy callback. |
| 1220 | |
| 1221 | o New API: |
| 1222 | hb_font_get_parent() |
| 1223 | hb_font_funcs_get_empty() |
| 1224 | hb_font_create_sub_font() |
| 1225 | |
| 1226 | o Removed API: |
| 1227 | hb_font_funcs_copy() |
| 1228 | hb_font_unset_funcs() |
| 1229 | |
| 1230 | o Removed func getter functions: |
| 1231 | hb_font_funcs_get_glyph_func() |
| 1232 | hb_font_funcs_get_glyph_advance_func() |
| 1233 | hb_font_funcs_get_glyph_extents_func() |
| 1234 | hb_font_funcs_get_contour_point_func() |
| 1235 | hb_font_funcs_get_kerning_func() |
| 1236 | |
| 1237 | o Changed API: |
| 1238 | hb_font_create() takes a face and references it now |
| 1239 | hb_font_set_funcs() takes user_data before destroy now |
| 1240 | hb_font_set_scale() accepts signed integers now |
| 1241 | hb_font_get_contour_point_func_t now takes glyph first, then point_index |
| 1242 | hb_font_get_glyph_func_t returns a success boolean now |
| 1243 | |
| 1244 | |
| 1245 | * Changed object model: |
| 1246 | |
| 1247 | o All object types have a _get_empty() now: |
| 1248 | hb_blob_get_empty() |
| 1249 | hb_buffer_get_empty() |
| 1250 | hb_face_get_empty() |
| 1251 | hb_font_get_empty() |
| 1252 | hb_font_funcs_get_empty() |
| 1253 | hb_unicode_funcs_get_empty() |
| 1254 | |
| 1255 | o Added _set_user_data() and _get_user_data() for all object types: |
| 1256 | hb_blob_get_user_data() |
| 1257 | hb_blob_set_user_data() |
| 1258 | hb_buffer_get_user_data() |
| 1259 | hb_buffer_set_user_data() |
| 1260 | hb_face_get_user_data() |
| 1261 | hb_face_set_user_data() |
| 1262 | hb_font_funcs_get_user_data() |
| 1263 | hb_font_funcs_set_user_data() |
| 1264 | hb_font_get_user_data() |
| 1265 | hb_font_set_user_data() |
| 1266 | hb_unicode_funcs_get_user_data() |
| 1267 | hb_unicode_funcs_set_user_data() |
| 1268 | |
| 1269 | o Removed the _get_reference_count() from all object types: |
| 1270 | hb_blob_get_reference_count() |
| 1271 | hb_buffer_get_reference_count() |
| 1272 | hb_face_get_reference_count() |
| 1273 | hb_font_funcs_get_reference_count() |
| 1274 | hb_font_get_reference_count() |
| 1275 | hb_unicode_funcs_get_reference_count() |
| 1276 | |
| 1277 | o Added _make_immutable() and _is_immutable() for all object types except for buffer: |
| 1278 | hb_blob_make_immutable() |
| 1279 | hb_blob_is_immutable() |
| 1280 | hb_face_make_immutable() |
| 1281 | hb_face_is_immutable() |
| 1282 | |
| 1283 | |
| 1284 | * Changed API for vertical text support |
| 1285 | |
| 1286 | o The following callbacks where removed: |
| 1287 | hb_font_get_glyph_advance_func_t |
| 1288 | hb_font_get_kerning_func_t |
| 1289 | |
| 1290 | o The following new callbacks added instead: |
| 1291 | hb_font_get_glyph_h_advance_func_t |
| 1292 | hb_font_get_glyph_v_advance_func_t |
| 1293 | hb_font_get_glyph_h_origin_func_t |
| 1294 | hb_font_get_glyph_v_origin_func_t |
| 1295 | hb_font_get_glyph_h_kerning_func_t |
| 1296 | hb_font_get_glyph_v_kerning_func_t |
| 1297 | |
| 1298 | o The following API removed as such: |
| 1299 | hb_font_funcs_set_glyph_advance_func() |
| 1300 | hb_font_funcs_set_kerning_func() |
| 1301 | hb_font_get_glyph_advance() |
| 1302 | hb_font_get_kerning() |
| 1303 | |
| 1304 | o New API added instead: |
| 1305 | hb_font_funcs_set_glyph_h_advance_func() |
| 1306 | hb_font_funcs_set_glyph_v_advance_func() |
| 1307 | hb_font_funcs_set_glyph_h_origin_func() |
| 1308 | hb_font_funcs_set_glyph_v_origin_func() |
| 1309 | hb_font_funcs_set_glyph_h_kerning_func() |
| 1310 | hb_font_funcs_set_glyph_v_kerning_func() |
| 1311 | hb_font_get_glyph_h_advance() |
| 1312 | hb_font_get_glyph_v_advance() |
| 1313 | hb_font_get_glyph_h_origin() |
| 1314 | hb_font_get_glyph_v_origin() |
| 1315 | hb_font_get_glyph_h_kerning() |
| 1316 | hb_font_get_glyph_v_kerning() |
| 1317 | |
| 1318 | o The following higher-leve API added for convenience: |
| 1319 | hb_font_get_glyph_advance_for_direction() |
| 1320 | hb_font_get_glyph_origin_for_direction() |
| 1321 | hb_font_add_glyph_origin_for_direction() |
| 1322 | hb_font_subtract_glyph_origin_for_direction() |
| 1323 | hb_font_get_glyph_kerning_for_direction() |
| 1324 | hb_font_get_glyph_extents_for_origin() |
| 1325 | hb_font_get_glyph_contour_point_for_origin() |
| 1326 | |
| 1327 | |
| 1328 | * OpenType Layout API: |
| 1329 | |
| 1330 | o New API: |
| 1331 | hb_ot_layout_position_start() |
| 1332 | hb_ot_layout_substitute_start() |
| 1333 | hb_ot_layout_substitute_finish() |
| 1334 | |
| 1335 | |
| 1336 | * Glue code: |
| 1337 | |
| 1338 | o New API: |
| 1339 | hb_glib_script_to_script() |
| 1340 | hb_glib_script_from_script() |
| 1341 | hb_icu_script_to_script() |
| 1342 | hb_icu_script_from_script() |
| 1343 | |
| 1344 | |
| 1345 | * Version API added: |
| 1346 | |
| 1347 | o New API: |
| 1348 | HB_VERSION_MAJOR |
| 1349 | HB_VERSION_MINOR |
| 1350 | HB_VERSION_MICRO |
| 1351 | HB_VERSION_STRING |
| 1352 | HB_VERSION_CHECK() |
| 1353 | hb_version() |
| 1354 | hb_version_string() |
| 1355 | hb_version_check() |
| 1356 | |
| 1357 | |