EAP version 1.29.0-dev

Forum to discuss everything related to the current development build of Automagic.

Moderator: Martin

bogdyro
Posts: 241
Joined: 04 Apr 2015 15:14

Re: EAP version 1.29.0-dev

Post by bogdyro » 05 Jul 2015 18:51

Yes, got that message too. It's because the file in the last post is an old 1.28 version. Maybe a mistake. However the file in the FIRST post is the latest one (1.29 with all the aditions). Thanks Martin for adding EXIF support. Works great so far.

User avatar
Martin
Posts: 4468
Joined: 09 Nov 2012 14:23

Re: EAP version 1.29.0-dev

Post by Martin » 06 Jul 2015 19:09

Oops, Sorry, completely messed up the link in the last post. The link should work now.

User avatar
Martin
Posts: 4468
Joined: 09 Nov 2012 14:23

Re: EAP version 1.29.0-dev

Post by Martin » 08 Jul 2015 19:59

A new EAP build is available.

Changes in this update:
  • extended action Launch Shortcut to record shortcuts created in other apps
  • support new profiles API on newer CM12.1 builds
  • added checkboxes to preferences to simplify turning on the accessibility service and access to notifications
  • minor changes and fixes
Download: Automagic.apk (2015-07-08)

Wibbly
Posts: 418
Joined: 17 Mar 2014 09:02

Re: EAP version 1.29.0-dev

Post by Wibbly » 09 Jul 2015 07:26

Is SMS delivery confirmation likely to make it to this release?

1ndroid
Posts: 3
Joined: 23 May 2015 11:22

Re: EAP version 1.29.0-dev

Post by 1ndroid » 09 Jul 2015 16:38

Need some help.
Attachments
Screenshot_2015-07-09-15-49-28.png
Screenshot_2015-07-09-15-49-28.png (219.74 KiB) Viewed 29634 times
Screenshot_2015-07-09-15-49-36.png
Screenshot_2015-07-09-15-49-36.png (222.28 KiB) Viewed 29634 times

User avatar
Martin
Posts: 4468
Joined: 09 Nov 2012 14:23

Re: EAP version 1.29.0-dev

Post by Martin » 10 Jul 2015 11:16

The function setWidgetElementBitmap takes a bitmap and not the path to an image file. Something like this should work:

Code: Select all

bitmap=newBitmap(10, 10, newColor(255, 0, 0, 0));
setPixel(bitmap, 5, 5, newColor(255, 255, 0, 0));
setWidgetElementBitmap("Soundboard", "Imitte", bitmap);
You can use the regular/official function setWidgetElementProperty to show an image file:

Code: Select all

setWidgetElementProperty("Soundboard", "Imitte", "path", "/storage/emulated/0/image.jpg");
Regards,
Martin

User avatar
Martin
Posts: 4468
Joined: 09 Nov 2012 14:23

Re: EAP version 1.29.0-dev

Post by Martin » 10 Jul 2015 11:22

@Wibbly: I don't know yet for sure but I hope so. You want delivery confirmations for SMS sent by Automagic, correct? I'll probably add it to the send SMS action itself (with a timeout), would this be useful for your use case?

1ndroid
Posts: 3
Joined: 23 May 2015 11:22

Re: EAP version 1.29.0-dev

Post by 1ndroid » 10 Jul 2015 11:51

@Martin Thanks
and I wish you a nice Holiday

User avatar
Martin
Posts: 4468
Joined: 09 Nov 2012 14:23

Re: EAP version 1.29.0-dev

Post by Martin » 10 Jul 2015 12:00

Thanks :-)

Wibbly
Posts: 418
Joined: 17 Mar 2014 09:02

Re: EAP version 1.29.0-dev

Post by Wibbly » 10 Jul 2015 12:08

Martin wrote:@Wibbly: I don't know yet for sure but I hope so. You want delivery confirmations for SMS sent by Automagic, correct? I'll probably add it to the send SMS action itself (with a timeout), would this be useful for your use case?
Yes I think so. The use case is to control the flow direction based on if the SMS was received after it was sent.

Thanks for the consideration and have a great holiday :)

Locked