Notice: This forum has been recovered from an old backup, so some content, links, and dates may be outdated. The forum is currently read-only while we restore sign-in and registration functionality. Details
If you find this forum valuable and would like to help keep it online, donations to help cover hosting and domain costs are greatly appreciated, but never expected. You can support the forum through Buy Me a Coffee or Ko-fi. Thank you for helping preserve the EventGhost community.
If you find this forum valuable and would like to help keep it online, donations to help cover hosting and domain costs are greatly appreciated, but never expected. You can support the forum through Buy Me a Coffee or Ko-fi. Thank you for helping preserve the EventGhost community.
PushBullet plugin (Pako)
- Pako
- Plugin Developer
- Posts: 2294
- Joined: Sat Nov 11, 2006 1:31 pm
- Location: Czech Republic
- Contact:
Re: PushBullet plugin (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
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
You know flattr ? You can 

-
goodcoproflcop
- Posts: 21
- Joined: Tue Aug 13, 2013 2:18 pm
Re: PushBullet plugin (Pako)
Awsome! We hope you get it sorted out 
Re: PushBullet plugin (Pako)
Thanks so much, Pako! This plugin has been a huge help! Looking forward to the new fixed version.
Re: PushBullet plugin (Pako)
My thanks too Pako. This plugin rocks and i'm missing it already. 
- Pako
- Plugin Developer
- Posts: 2294
- Joined: Sat Nov 11, 2006 1:31 pm
- Location: Czech Republic
- Contact:
Re: PushBullet plugin (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
This required quite substantial changes.
It is quite likely, that some shortcomings will soon appear.
Pako
You know flattr ? You can 

-
goodcoproflcop
- Posts: 21
- Joined: Tue Aug 13, 2013 2:18 pm
Re: PushBullet plugin (Pako)
Thanks for the fast fix, it works perfect for me!
Re: PushBullet plugin (Pako)
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
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
- Pako
- Plugin Developer
- Posts: 2294
- Joined: Sat Nov 11, 2006 1:31 pm
- Location: Czech Republic
- Contact:
Re: PushBullet plugin (Pako)
Welcome on board Sergio!Sgbmad wrote:What it is wrong?
I'm not sure, but maybe you have the wrong version EventGhost.
Video resolution did not allow me to check it.
Pako
You know flattr ? You can 

Re: PushBullet plugin (Pako)
Thanks PakoPako wrote:Welcome on board Sergio!Sgbmad wrote:What it is wrong?
I'm not sure, but maybe you have the wrong version EventGhost.
Video resolution did not allow me to check it.
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
-
eventspook
- Posts: 23
- Joined: Tue Mar 05, 2013 2:50 pm
Re: PushBullet plugin (Pako)
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:

Any thoughts?
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?
- Pako
- Plugin Developer
- Posts: 2294
- Joined: Sat Nov 11, 2006 1:31 pm
- Location: Czech Republic
- Contact:
Re: PushBullet plugin (Pako)
Thanks for the warning.
The bug is fixed, you can download the new version (0.2.1).
Pako
The bug is fixed, you can download the new version (0.2.1).
Pako
You know flattr ? You can 

-
eventspook
- Posts: 23
- Joined: Tue Mar 05, 2013 2:50 pm
Re: PushBullet plugin (Pako)
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.
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.
- Pako
- Plugin Developer
- Posts: 2294
- Joined: Sat Nov 11, 2006 1:31 pm
- Location: Czech Republic
- Contact:
Re: PushBullet plugin (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:The condition can be variously modified.
Here are some examples:Pako
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: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()You know flattr ? You can 

-
eventspook
- Posts: 23
- Joined: Tue Mar 05, 2013 2:50 pm
Re: PushBullet plugin (Pako)
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)?
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)?
- Pako
- Plugin Developer
- Posts: 2294
- Joined: Sat Nov 11, 2006 1:31 pm
- Location: Czech Republic
- Contact:
Re: PushBullet plugin (Pako)
I did not think it would ever anyone could need ...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 ...
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
You know flattr ? You can 
