| OLD | NEW |
| 1 Overview of changes leading to 1.1.3 |
| 2 Monday, January 11, 2016 |
| 3 ==================================== |
| 4 |
| 5 - Ported Indic shaper to Unicode 8.0 data. |
| 6 - Universal Shaping Engine fixes. |
| 7 - Speed up CoreText shaper when font fallback happens in CoreText. |
| 8 - Documentation improvements, thanks to Khaled Hosny. |
| 9 - Very rough directwrite shaper for testing, thanks to Ebrahim Byagowi. |
| 10 - Misc bug fixes. |
| 11 - New API: |
| 12 |
| 13 * Font extents: |
| 14 hb_font_extents_t |
| 15 hb_font_get_font_extents_func_t |
| 16 hb_font_get_font_h_extents_func_t |
| 17 hb_font_get_font_v_extents_func_t |
| 18 hb_font_funcs_set_font_h_extents_func |
| 19 hb_font_funcs_set_font_v_extents_func |
| 20 hb_font_get_h_extents |
| 21 hb_font_get_v_extents |
| 22 hb_font_get_extents_for_direction |
| 23 |
| 24 * Buffer message (aka debug): |
| 25 hb_buffer_message_func_t |
| 26 hb_buffer_set_message_func() |
| 27 Actual message protocol to be fleshed out later. |
| 28 |
| 29 |
| 30 Overview of changes leading to 1.1.2 |
| 31 Wednesday, November 26, 2015 |
| 32 ==================================== |
| 33 |
| 34 - Fix badly-broken fallback shaper that affected terminology. |
| 35 https://github.com/behdad/harfbuzz/issues/187 |
| 36 - Fix y_scaling in Graphite shaper. |
| 37 - API changes: |
| 38 * An unset glyph_h_origin() function in font-funcs now (sensibly) |
| 39 implies horizontal origin at 0,0. Ie, the nil callback returns |
| 40 true instead of false. As such, implementations that have a |
| 41 glyph_h_origin() that simply returns true, can remove that function |
| 42 with HarfBuzz >= 1.1.2. This results in a tiny speedup. |
| 43 |
| 44 |
| 1 Overview of changes leading to 1.1.1 | 45 Overview of changes leading to 1.1.1 |
| 2 Wednesday, November 24, 2015 | 46 Wednesday, November 24, 2015 |
| 3 ==================================== | 47 ==================================== |
| 4 | 48 |
| 5 - Build fixes, specially for hb-coretext. | 49 - Build fixes, specially for hb-coretext. |
| 6 | 50 |
| 7 | 51 |
| 8 Overview of changes leading to 1.1.0 | 52 Overview of changes leading to 1.1.0 |
| 9 Wednesday, November 18, 2015 | 53 Wednesday, November 18, 2015 |
| 10 ==================================== | 54 ==================================== |
| (...skipping 1248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1259 HB_VERSION_MAJOR | 1303 HB_VERSION_MAJOR |
| 1260 HB_VERSION_MINOR | 1304 HB_VERSION_MINOR |
| 1261 HB_VERSION_MICRO | 1305 HB_VERSION_MICRO |
| 1262 HB_VERSION_STRING | 1306 HB_VERSION_STRING |
| 1263 HB_VERSION_CHECK() | 1307 HB_VERSION_CHECK() |
| 1264 hb_version() | 1308 hb_version() |
| 1265 hb_version_string() | 1309 hb_version_string() |
| 1266 hb_version_check() | 1310 hb_version_check() |
| 1267 | 1311 |
| 1268 | 1312 |
| OLD | NEW |