Skip to content

1.4.0

Choose a tag to compare

@freekmurze freekmurze released this 19 Jun 07:31
· 20 commits to main since this release
8ab4210

What's new

Apple pass builders can now set a background image, matching what the docs and Apple's pass spec describe for event tickets. Previously only setStripImage and setThumbnailImage were available.

EventTicketPassBuilder::make()
    // ...
    ->setBackgroundImage(public_path('images/background.png'))
    ->save();

A remote variant, setRemoteBackgroundImage(), is available as well. The image (along with its @2x and @3x densities) is bundled into the generated .pkpass.

Implemented in #50, closes #49.