Page 16 of 34
Re: PushBullet plugin (Pako)
Posted: Sun Jan 11, 2015 11:01 am
by Pako
Yes, the plugin malfunction is caused by a new certificate of pushbullet server.
I'm working on a fix.
This is difficult, because EventGhost is based on Python 2.6.
SSL support there is (unfortunately) obsolete.
Fortunately, it seems that I found workaround.
But a lot of work still awaits me.
Please be patient !
Pako
Re: PushBullet plugin (Pako)
Posted: Sun Jan 11, 2015 2:36 pm
by goodcoproflcop
Awsome! We hope you get it sorted out

Re: PushBullet plugin (Pako)
Posted: Sun Jan 11, 2015 5:05 pm
by photosis
Thanks so much, Pako! This plugin has been a huge help! Looking forward to the new fixed version.
Re: PushBullet plugin (Pako)
Posted: Sun Jan 11, 2015 5:11 pm
by lbretth
My thanks too Pako. This plugin rocks and i'm missing it already.

Re: PushBullet plugin (Pako)
Posted: Sun Jan 11, 2015 6:36 pm
by Pako
The new version (0.2.0) is available.
This required quite substantial changes.
It is quite likely, that some shortcomings will soon appear.
Pako
Re: PushBullet plugin (Pako)
Posted: Mon Jan 12, 2015 5:22 pm
by goodcoproflcop
Thanks for the fast fix, it works perfect for me!
Re: PushBullet plugin (Pako)
Posted: Tue Jan 13, 2015 8:54 am
by Sgbmad
Hi,
I can't install the last version (fresh install). Evenghost freezes when I add it. What it is wrong?
https://www.youtube.com/watch?v=3RJyUjXep2s
Re: PushBullet plugin (Pako)
Posted: Tue Jan 13, 2015 9:49 am
by Pako
Sgbmad wrote:What it is wrong?
Welcome on board Sergio!
I'm not sure, but maybe you have the wrong version EventGhost.
Video resolution did not allow me to check it.
Pako
Re: PushBullet plugin (Pako)
Posted: Tue Jan 13, 2015 9:58 am
by Sgbmad
Pako wrote:Sgbmad wrote:What it is wrong?
Welcome on board Sergio!
I'm not sure, but maybe you have the wrong version EventGhost.
Video resolution did not allow me to check it.
Pako
Thanks Pako
Oh! so sorry. I haven't the correct Evenghost's version. I'll try it again with the lasted version.
Thanks!
EDIT: It works perfectly

Re: PushBullet plugin (Pako)
Posted: Tue Jan 20, 2015 12:35 am
by eventspook
Is anyone else experiencing minor GUI issues? Some of the 'Actions' have some layout issues, where the recipient checkboxes are overlapping some of the UI elements.
This has been an issue for a few weeks now, but I was hoping a new release would address it. Since it hasn't, I'm posting a screenshot. Only 2 of the actions have this issue:
- Pushes to everything
- Push to reply
Any thoughts?
Re: PushBullet plugin (Pako)
Posted: Tue Jan 20, 2015 8:27 am
by Pako
Thanks for the warning.
The bug is fixed, you can download the new version (0.2.1).
Pako
Re: PushBullet plugin (Pako)
Posted: Wed Jan 21, 2015 2:02 am
by eventspook
Perfect, thank you for the quick fix, you have been really great about responding to all our issues. I don't think people understand the power of this plugin
Are you still interested in adding new features to this plugin, or are you in 'maintenance mode' ?
I would love to see the PushBullet sender info attached to the event name. Example: PushBullet.Link.Sender or PushBullet.Link.Sender.Title instead of the current PushBullet.Link.Title
This would make it easier to ignore messages from certain computers in certain scenarios.
Either way, thank you for all your work.
Re: PushBullet plugin (Pako)
Posted: Wed Jan 21, 2015 5:44 am
by Pako
I'm certainly not against adding new features.
Maybe sometime in the future I will add the possibility of customization of event structure.
However, the possibility of filtering by sender exists today.
Just when you add a simple Python Script or Python Command:

- PushFiltering.png (5.74 KiB) Viewed 6646 times
The condition can be variously modified.
Here are some examples:
Code: Select all
if eg.event.payload[3] != 'Chrome': eg.StopMacro()
if eg.event.payload[3] in ('Chrome', 'Firefox'): eg.StopMacro()
if eg.event.payload[3] not in ('Chrome', 'Firefox'): eg.StopMacro()
Pako
Re: PushBullet plugin (Pako)
Posted: Thu Jan 22, 2015 1:41 am
by eventspook
Those are some really great tips, they should be in the helpfile, many thanks!
One more request. Would it be possible to add a TextCtrl to the 'Push' screen, so we can specify our own target with a variable (I'm basically trying to send a delayed reply after a 2nd event has been triggered)?
Re: PushBullet plugin (Pako)
Posted: Fri Jan 23, 2015 8:16 am
by Pako
eventspook wrote:One more request. Would it be possible to add a TextCtrl to the 'Push' screen, so we can specify our own target with a variable ...
I did not think it would ever anyone could need ...
But I see that yes
You can download
the new version (0.2.2). There is a new action "Push to a single".
I hope it will work as you expect.
Pako