This Week's Sponsor:

FastMinder

A Simple, Lightweight, and Clutter-Free Intermittent Fasting Tracking Experience


A Roundup of Apps Updated for iOS 12 and watchOS 5

It’s been a busy week of app updates. We’ve already covered many of them, but there are always more good examples of apps that show off feature of iOS 12 like Siri shortcuts or watchOS 5’s new functionality. So, we’ve collected some additional favorite updates from this past week from Federico, John, and Ryan.

Halide

Apple's new Portrait Effects Matte. Source: Halide

Apple’s new Portrait Effects Matte. Source: Halide

John: iOS 12 introduced a new Portrait Effects Matte (PEM) that camera apps can use to capture detailed depth data. The results from PEM are significantly better than camera apps could previously produce, especially for hair and glasses. The main limitation of the PEM is that it works for human subjects only. With the new technology, Halide applies a custom background blur that is different than the one Apple’s Camera app uses.

Halide, which we’ve covered before on MacStories, has also added support for shortcuts. Halide’s Advanced Settings include a ‘Set Up Siri Shortcuts’ button that opens a view explaining how Siri shortcuts work and links to Halide’s settings in Apple’s Settings app. There, under Siri & Search are a list of saved and suggested Siri shortcuts.

Source: Halide

Source: Halide

What you can add in Siri & Search depends on what parts of Halide you’ve used recently. One of my favorite shortcuts is the most simple: you can fire the shutter to take a photo hands-free. It’s like a voice-controlled remote control, which is perfect for taking a shot without worrying that you’re making your photo blurry by tapping the shutter button in the app and moving your iPhone in the process.

In addition to the new features, Halide’s developers say the app’s performance has been significantly improved. The numbers posted by the Halide team show that the app uses less CPU power than Apple’s Camera app.

Halide is available on the App Store for $5.99.

ETA

John: ETA is a travel time and directions app from Eastwood that we’ve covered before on MacStories. ETA has added a host of Siri shortcuts that allow users to add new locations, check travel times, and start turn-by-turn directions. The shortcuts can be enabled with a custom recorded command from ETA’s entry in the Settings App.

My favorite shortcut is the ability to capture locations quickly. When you’re on the go, especially in an unfamiliar place, stopping to figure out where you are isn’t always possible. With ETA’s Siri shortcut, you can add new locations and use the shortcut to return where you were, with the app providing directions and an arrival time estimate. The same tasks can also be accomplished from the Siri watch face for frequently visited locations, although whether the ETA card appears is up to iOS and watchOS and cannot be forced to display by users.

ETA is available on the App Store for $2.99.

WaterMinder

John: WaterMinder is a hydration tracker that we’ve covered on MacStories before. The latest update adds several Siri shortcuts that let users log their hydration, show their hydration status, report their last drink consumed, and show how much more they need to drink to meet their goal.

What I like best about WaterMinder’s implementation of Siri shortcuts is the rich interface that’s presented when you use one of the commands. WaterMinder presents an illustrated card similar to the main app’s design that depicts the information being requested or conveyed. For example, logging 8 oz of water consumed shows a card with the current status of your hydration. Siri asks if you’d like to add the water and you can verbally confirm or cancel the request, which Siri acknowledges.

Tracking apps like WaterMinder are going to benefit considerably from Siri shortcuts. As I said in my Streaks review, the hard part about tracking apps is removing the friction of tracking. It’s too easy for someone to quit tracking. With Siri shortcuts, WaterMinder and similar trackers are more likely to retain users and get them to use their apps more consistently.

Pedometer++

Source: David Smith

Source: David Smith

John: David Smith’s Pedometer++ is another app we’ve covered in the past and was one of the earliest Apple Watch apps. The debut version of the app pushed watchOS further and worked more reliably than almost any other Watch app I used. watchOS has evolved since then, and so has Pedometer++ with an all-new Watch app that takes advantage of the new capabilities of watchOS 5.

The main screen of the app includes the same data as before: step count, mileage, floors, and a graph of steps over time. If you swipe right to left, you can start one of six workouts: outdoor walk, run, hike, indoor walk, run, or ‘Indoor Other.’ The hiking activity is new to watchOS 5 and provides better tracking of elevation than picking a walk would.

Taking a page from Workouts++, another of Smith’s apps, the real-time statistics displayed during your workout are highly customizable. You can pick from among duration, distance, step count, numerical or graphical representations of your heart rate, and elevation climbed, average speed or pace, and calories burned. Customization settings are available by swiping left to right on the watch face during a workout and tapping the gear icon.

Source: David Smith

Source: David Smith

Also, swiping right to left during a workout reveals playback controls for audio playing on your iPhone or Apple Watch, and if you’ve turned on GPS when you start a workout, a tiny map of your route. When the Apple Watch Series 4 is delivered to users, they can choose new Pedometer++ complications designed for the Infograph and Infograph Modular watch faces too.

Pedometer++ is available as a free download on the App Store, but you can leave a $1.99 tip from the iOS app’s settings view, which is something I do periodically to support updates like this one.

Scriptable

Federico: As I promised on AppStories earlier this week, I plan to publish a full review of this app in the near future; in the meantime however, I want to highlight Scriptable, created by indie developer Simon Støvring, as one of the most interesting new releases this week, as well as the most powerful addition to my automation arsenal since Workflow.

The best way to think of Scriptable is the following: it’s like Pythonista, but for JavaScript, and modernized for the current era of iOS 12 and Siri shortcuts. Scriptable lets you automate your iOS devices using JavaScript: in addition to a code editor that has access to the standard JavaScript library and supports syntax highlighting, what makes Scriptable unique is that it bridges native iOS APIs to JavaScript. This means that you can program native iOS frameworks, such as Reminders, Calendar, SiriKit Intents, and even basic UIKit elements in JavaScript, mixing and matching variables and functions with data from iOS itself.

Here’s a selection of the native iOS APIs that are available via JavaScript in Scriptable:

  • Alerts
  • Calendar
  • Dictation
  • Document Picker
  • Files
  • Location
  • Mail
  • Messages
  • Clipboard
  • Photos
  • Quick Look
  • Reminders
  • Safari
  • Share Sheet
  • Speech
  • UITable
  • URL schemes
  • Web views

The idea of letting users create their own scripts to automate native iOS functionalities is an extremely powerful concept that allows for basic “programming” without the overhead of writing an app from scratch in Xcode. I argued the same years ago for Pythonista, and the same holds true for Scriptable today – with all the advantages that making an automation app in 2018 entails.

For instance, Scriptable comes with a FileManager object that, among other things, lets you save files into Scriptable’s document container in iCloud Drive and optionally tag them – which is something that even Shortcuts can’t do (yet?). It can also create native alert dialogs with buttons and text fields. And it comes with share sheet integration, so you can pass files from other apps to a script via the Scriptable extension, which will treat them as input arguments. Combine all these aspects together, and you get the script I used to save screenshots from the Photos app into dedicated Files sub-folders for my iOS review:

Saving screenshots to Files using Scriptable, which can apply tags to each file.

Saving screenshots to Files using Scriptable, which can apply tags to each file.

This custom save menu – which saved images at full resolution, renamed them, and applied two iCloud Drive tags – was based on this script:

var fm = FileManager.iCloud();
var baseDir = fm.documentsDirectory();

var folders = ['Setup', 'iPad', 'Well-Being', 'Communications', 'Shortcuts', 'Apps', 'Everything Else']
var folderLength = folders.length;

for (arg of args.images) {
  var ask = new Alert
  ask.title = 'Save File'
  ask.message = 'Choose one of the folders below.'
for (var i = 0; i < folderLength; i++) {
    ask.addAction(folders[i])
}
  ask.addCancelAction('Close')
  var fileName = ask.addTextField()
  var show = ask.presentAlert()
  var actionIndex = await show
  var selectedAction = folders[actionIndex]
  var screenTitle = ask.textFieldValue(0) + '.jpeg'
  var path = fm.joinPath(baseDir, '/Review/' + selectedAction + '/' + screenTitle)
  fm.writeImage(path, arg)
  fm.addTag(path, 'Assets')
  fm.addTag(path, 'Not Uploaded')
  var saved = fm.fileExists(path)
  if (saved) {
    console.log('Your image was saved.')
    }
}

My favorite feature of Scriptable, however, is that its JavaScript automation can be combined with shortcuts and custom intents to display any kind of data in Siri just by speaking a custom phrase. In the months I’ve been testing Scriptable, I’ve come up with custom scripts to display custom table views for my reminders, play video inside Siri, upload images to our CDN, and more – some of which I will share on Club MacStories soon. But you don’t have to create complex scripts to take advantage of Scriptable’s Siri integration via Shortcuts. Take the following example:

Who wouldn't want to have dog pictures readily available via Siri?

Who wouldn’t want to have dog pictures readily available via Siri?

With Scriptable, you can show any picture from iCloud Drive in Siri with a personalized phrase. Think this is complex? Think again:

let fm = FileManager.iCloud()
let dir = fm.documentsDirectory()
let path = fm.joinPath(dir, "pups.jpg")
img = fm.readImage(path)
QuickLook.present(img)

With five lines of JavaScript, you can build something useful that, for some reason, still isn’t natively supported by Siri. Now imagine what you can build if you spend a couple of hours tinkering with Scriptable and finding gaps in your daily iOS workflow.

I want to do Scriptable justice with a proper review here on MacStories and advanced scripts to share with Club MacStories members. What I can say for now is that, if it weren’t for Scriptable’s automation, I wouldn’t have been able to save and sort nearly 450 screenshots for my iOS 12 review in three days. In big and small ways, Scriptable – together with Shortcuts – is opening new horizons for automation in iOS 12, and I highly recommend playing around with the app if you know the basics of JavaScript. The app is free to download, and it’s one of the most exciting new releases of the year.

Twitter

Ryan: It may not be particularly popular among many MacStories readers, but I’ve been using the first-party Twitter app on iOS for nearly two years now, and it continues to receive interesting new updates at a regular clip, including quick adoption of major iOS features. Last year the app received iPad drag and drop support quickly, and this year the same proved true of shortcuts.

It may not have been on day one, but the day after iOS 12 launched, a Twitter update brought the power to create shortcuts for actions like creating a tweet or DM, scanning a QR code, searching Twitter, opening the search/explore tab in the app, and reopening a specific DM thread. Each of these is a standalone action that launches a specific function or area in the app, and none of them can be combined with input to pre-fill things like search boxes or DM fields. Despite that shortcoming, I can still see these shortcuts being useful timesavers, especially when run from places like the Shortcuts app’s widget. Most of all, I’m just thankful to continue seeing Twitter care about adopting native iOS features in its app.

Evernote

Ryan: Evernote the company may be undergoing some challenging times, but those haven’t stopped it from bringing immediate support for shortcuts on iOS, and in an impressive manner. While some writing apps have opted to provide only limited shortcut options, Evernote has done a good job letting users select for themselves from a wide array of possibilities.

Some of the most commonly used Evernote shortcuts will likely be those that launch you into specific notes or notebooks, or enable creation of new camera and audio notes. However, the app also includes more niche shortcuts, like one that copies a specific note’s link to the clipboard, another that prints your current note, and a shortcut for converting your current note to a PDF. Finally, one of my favorite shortcuts lets you save a previous search query; running the search shortcut has worked extremely quickly on my iPhone X, immediately loading the search results with no further taps or actions needed. If you have a Premium subscription, this search shortcut becomes even more powerful because it will include results from inside note attachments.

With these shortcuts, Evernote also provides easy ways to create each of them, with options available throughout the app in various menus. While I’m still content with Apple Notes as my primary note-taking app, Evernote’s extensive shortcut support out of the gate has me pleasantly surprised.

Agenda and Day One

Ryan: I group these two together partly because they’re both writing apps, but more because each app has a fairly limited set of supported shortcuts.

Agenda offers a saved search feature in its app already, so the now-included shortcuts for those searches was a given. You can also setup shortcuts that open specific notes, projects, and overviews. Unfortunately I haven’t discovered a way to create any shortcuts from inside the app itself, so Agenda users will need to check Settings.app for actions you’ve repeated multiple times so they’ll appear as shortcut suggestions.

Day One’s shortcuts support is exclusive to new entry creation. For each journal you keep in Day One, you can set up shortcuts to create a new text, camera, or audio recording entry in the app.

Unlock More with Club MacStories

Founded in 2015, Club MacStories has delivered exclusive content every week for over six years.

In that time, members have enjoyed nearly 400 weekly and monthly newsletters packed with more of your favorite MacStories writing as well as Club-only podcasts, eBooks, discounts on apps, icons, and services. Join today, and you’ll get everything new that we publish every week, plus access to our entire archive of back issues and downloadable perks.

The Club expanded in 2021 with Club MacStories+ and Club Premier. Club MacStories+ members enjoy even more exclusive stories, a vibrant Discord community, a rotating roster of app discounts, and more. And, with Club Premier, you get everything we offer at every Club level plus an extended, ad-free version of our podcast AppStories that is delivered early each week in high-bitrate audio.

Choose the Club plan that’s right for you:

  • Club MacStories: Weekly and monthly newsletters via email and the web that are brimming with app collections, tips, automation workflows, longform writing, a Club-only podcast, periodic giveaways, and more;
  • Club MacStories+: Everything that Club MacStories offers, plus exclusive content like Federico’s Automation Academy and John’s Macintosh Desktop Experience, a powerful web app for searching and exploring over 6 years of content and creating custom RSS feeds of Club content, an active Discord community, and a rotating collection of discounts, and more;
  • Club Premier: Everything in from our other plans and AppStories+, an extended version of our flagship podcast that’s delivered early, ad-free, and in high-bitrate audio.