Skip to content

Commit

Permalink
0.8.7
Browse files Browse the repository at this point in the history
  • Loading branch information
dwarring committed Aug 8, 2024
1 parent 3bbc03b commit 42100f7
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 5 deletions.
1 change: 0 additions & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ jobs:
- name: macOS specific setup
run: |
brew update
brew install harfbuzz
brew install openssl
- name: Install Dependencies
run: |
Expand Down
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
{{$NEXT}}

0.8.7 2024-08-09T05:32:42+12:00
- Removed shaping support to PDF::Font::Loader::HarfBuzz. This module
must be loaded to enable full shaping.

0.8.6 2024-08-03T09:13:48+12:00
- Added more shaping tests.
- Fixed output of zero width glyphs in CID fonts (for Arabic
Expand Down
2 changes: 1 addition & 1 deletion META6.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@
],
"test-depends": [
],
"version": "0.8.6"
"version": "0.8.7"
}
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,7 @@ PDF::Font::Loader depends on:

[Font::FreeType](https://pdf-raku.github.io/Font-FreeType-raku/) Raku module which further depends on the [freetype](https://www.freetype.org/download.html) library, so you must install that prior to installing this module.

The `find-font` method requires installation of the [FontConfig](https://pdf-raku.github.io/FontConfig/) library .
The `find-font` method requires installation of the [FontConfig](https://pdf-raku.github.io/FontConfig/) library.

[PDF::Font::Loader::HarfBuzz](https://pdf-raku.github.io/PDF-Font-Loader-HarfBuzz-raku) - is an optional module, but needs to be installed for font-shaping.

4 changes: 3 additions & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,7 @@ PDF::Font::Loader depends on:

[Font::FreeType](https://pdf-raku.github.io/Font-FreeType-raku/) Raku module which further depends on the [freetype](https://www.freetype.org/download.html) library, so you must install that prior to installing this module.

The `find-font` method requires installation of the [FontConfig](https://pdf-raku.github.io/FontConfig/) library .
The `find-font` method requires installation of the [FontConfig](https://pdf-raku.github.io/FontConfig/) library.

[PDF::Font::Loader::HarfBuzz](https://pdf-raku.github.io/PDF-Font-Loader-HarfBuzz-raku) - is an optional module, but needs to be installed for font-shaping.

2 changes: 1 addition & 1 deletion lib/PDF/Font/Loader.rakumod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use v6;

class PDF::Font::Loader:ver<0.8.6> {
class PDF::Font::Loader:ver<0.8.7> {

use Font::FreeType;
use Font::FreeType::Face;
Expand Down

0 comments on commit 42100f7

Please sign in to comment.