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.

PushBullet plugin (Pako)

Questions and comments specific to a particular plugin should go here.
User avatar
Pako
Plugin Developer
Posts: 2294
Joined: Sat Nov 11, 2006 1:31 pm
Location: Czech Republic
Contact:

Re: PushBullet plugin (Pako)

Post 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
You know flattr ? You can Image
goodcoproflcop
Posts: 21
Joined: Tue Aug 13, 2013 2:18 pm

Re: PushBullet plugin (Pako)

Post by goodcoproflcop »

Awsome! We hope you get it sorted out :D
photosis
Posts: 4
Joined: Wed Mar 16, 2011 4:19 am

Re: PushBullet plugin (Pako)

Post by photosis »

Thanks so much, Pako! This plugin has been a huge help! Looking forward to the new fixed version.
lbretth
Posts: 6
Joined: Sat Jan 10, 2015 7:44 am

Re: PushBullet plugin (Pako)

Post by lbretth »

My thanks too Pako. This plugin rocks and i'm missing it already. :D
User avatar
Pako
Plugin Developer
Posts: 2294
Joined: Sat Nov 11, 2006 1:31 pm
Location: Czech Republic
Contact:

Re: PushBullet plugin (Pako)

Post 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
You know flattr ? You can Image
goodcoproflcop
Posts: 21
Joined: Tue Aug 13, 2013 2:18 pm

Re: PushBullet plugin (Pako)

Post by goodcoproflcop »

Thanks for the fast fix, it works perfect for me!
Sgbmad
Posts: 2
Joined: Tue Jan 13, 2015 7:52 am

Re: PushBullet plugin (Pako)

Post by Sgbmad »

Hi,

I can't install the last version (fresh install). Evenghost freezes when I add it. What it is wrong? :roll:

https://www.youtube.com/watch?v=3RJyUjXep2s
User avatar
Pako
Plugin Developer
Posts: 2294
Joined: Sat Nov 11, 2006 1:31 pm
Location: Czech Republic
Contact:

Re: PushBullet plugin (Pako)

Post 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
You know flattr ? You can Image
Sgbmad
Posts: 2
Joined: Tue Jan 13, 2015 7:52 am

Re: PushBullet plugin (Pako)

Post 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 :wink:

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 :D
eventspook
Posts: 23
Joined: Tue Mar 05, 2013 2:50 pm

Re: PushBullet plugin (Pako)

Post 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
Image

Any thoughts?
User avatar
Pako
Plugin Developer
Posts: 2294
Joined: Sat Nov 11, 2006 1:31 pm
Location: Czech Republic
Contact:

Re: PushBullet plugin (Pako)

Post by Pako »

Thanks for the warning.
The bug is fixed, you can download the new version (0.2.1).

Pako
You know flattr ? You can Image
eventspook
Posts: 23
Joined: Tue Mar 05, 2013 2:50 pm

Re: PushBullet plugin (Pako)

Post 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.
User avatar
Pako
Plugin Developer
Posts: 2294
Joined: Sat Nov 11, 2006 1:31 pm
Location: Czech Republic
Contact:

Re: PushBullet plugin (Pako)

Post 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
PushFiltering.png (5.74 KiB) Viewed 6645 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
You know flattr ? You can Image
eventspook
Posts: 23
Joined: Tue Mar 05, 2013 2:50 pm

Re: PushBullet plugin (Pako)

Post 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)?
User avatar
Pako
Plugin Developer
Posts: 2294
Joined: Sat Nov 11, 2006 1:31 pm
Location: Czech Republic
Contact:

Re: PushBullet plugin (Pako)

Post 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 :D
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 Image
Post Reply