Releases: ivkos/Pushbullet-for-PHP
Releases · ivkos/Pushbullet-for-PHP
Version 3.3.0
- Added a
Pusbullet::push($iden)
method that finds the push with the specified iden and returns aPush
object that represents it. Example:
$pb = new Pushbullet(API_KEY);
$push = $pb->push("uZkYsjz6f28PhK4");
$push->dismiss();
$push->delete();
Version 3.2.0
- Deprecated pushing lists and addresses (deprecated in Pushbullet API)
- Deprecated creating and deleting channels (used undocumented endpoints that changed)
Version 3.1.2
- Fixed a bug (#46) that prevented users from pushing to their own channels if they are subscribed to them.
Version 3.1.1
- Fix contacts not being pushable
Version 2.10.1
- 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
- A new method for targeting all devices for pushing:
$pb->allDevices()->pushNote("...", "...");
Version 3.0.0
- More object-oriented
- Better documentation
- Composer support
Version 2.10.0
getPhonebook($device_iden)
for getting the entries in a device's phonebook
Version 2.9.1
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
- 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