Skip to content

Releases: ivkos/Pushbullet-for-PHP

Version 3.3.0

22 May 12:48
Compare
Choose a tag to compare
  • Added a Pusbullet::push($iden) method that finds the push with the specified iden and returns a Push object that represents it. Example:
$pb = new Pushbullet(API_KEY);

$push = $pb->push("uZkYsjz6f28PhK4");

$push->dismiss();
$push->delete();

Version 3.2.0

20 May 15:18
Compare
Choose a tag to compare
  • Deprecated pushing lists and addresses (deprecated in Pushbullet API)
  • Deprecated creating and deleting channels (used undocumented endpoints that changed)

Version 3.1.2

23 May 13:56
Compare
Choose a tag to compare
  • Fixed a bug (#46) that prevented users from pushing to their own channels if they are subscribed to them.

Version 3.1.1

12 May 09:28
Compare
Choose a tag to compare
  • Fix contacts not being pushable

Version 2.10.1

04 Apr 08:39
Compare
Choose a tag to compare
  • Lower PHP version requirement: PHP 5.3 or newer

Note: This is only a small fix for the older and less supported v2.x. It's recommended to use the latest v3.x.

Version 3.1.0

21 Mar 13:15
Compare
Choose a tag to compare
  • A new method for targeting all devices for pushing:
$pb->allDevices()->pushNote("...", "...");

Version 3.0.0

09 Mar 22:36
Compare
Choose a tag to compare
  • More object-oriented
  • Better documentation
  • Composer support

Version 2.10.0

25 Feb 09:23
Compare
Choose a tag to compare
  • getPhonebook($device_iden) for getting the entries in a device's phonebook

Version 2.9.1

04 Feb 20:31
Compare
Choose a tag to compare
  • pushFile() can now push files with a title, a body, and an alternative file name.
  • Code has been refactored to be a bit simpler.

Version 2.8.0

04 Feb 19:52
Compare
Choose a tag to compare
  • Method addCurlCallback(function($curl) { ... }) - Add a callback function that will be invoked right before executing each cURL request.
  • The library now requires PHP 5.4.0 or newer