Public Relations

With macOS Big Sur and Macs with Apple Silicon on the horizon, I wanted to give a quick update on my Mac apps.
All of them are now available in a new version, making them run nicely under macOS Big Sur, and have been recompiled to natively run on Apple Silicon.

Here’s a quick run-down of what else is new:

Yoink for Mac (website + free trial | Mac App Store | Setapp)
v3.5.11, received numerous quality-of-life improvements

ScreenFloat (website + free trial | Mac App Store)
v1.5.18, adds PDF as export option and fixes a few minor annoyances

Transloader (website | Mac App Store | iOS App Store)
v2.1.1, big upgrade in the works, this update makes sure it runs nicely on the new system and architecture

Glimpses (website + free trial | Mac App Store)
v2.2.3, improves video rendering speed by up to 6x and fixes a couple of minor issues

flickery (website + free trial | Mac App Store)
v1.9.48, minor compatibility update

SiriMote (website | direct download (Freeware))
v1.3.9, improves the connection to the Apple TV Siri Remote and fixes minor bugs

I hope you’ll like them 🤗
As always, if you have any feedback or questions, please don’t hesitate to write me!

Read more

 

Yoink for iPad and iPhone Usage Tip #7

The following explains how to use Yoink on iPad in Slide-Over or Split View.
For more Usage Tips like this, click here.


It seems quite a few people have been getting new iPads recently – to those, I say: congratulations on your purchase 🥳
Coincidentally, that’s probably why I’ve been asked quite frequently lately how to use Yoink in Slide-Over or Split View.
Here’s a quick guide on how to do it.

1) Use Yoink in Slide-Over

– With a full screen app open, swipe up from the very bottom of your iPad to reveal the Dock
– Drag Yoink from the Dock to the side of your iPad’s screen

In Slide-Over, you can reposition Yoink to either edge of your iPad’s screen, or dismiss it by dragging it all the way to the right.

2) Use Yoink in Split View

– With a full screen app open, swipe up from the very bottom of your iPad to reveal the Dock
– Drag Yoink from the Dock to the top right of your iPad’s screen
Alternatively, If Yoink is already in Slide-Over, drag the its top horizontal indicator to the top right of your iPad’s screen, and it will enter Split View.

In Split View, you can adjust the size of each Split view app by dragging the indicator between them.
You can remove an app from Split view by dragging the top horizontal indicator of the app.

Further Reading

Apple’s iPad User Guide
Use Multitasking on your iPad
Open an app in Slide Over

 

Read more

Yoink for Mac Usage Tip #14

The following explains how to make Yoink automatically pick up any new file added to a specified folder.
For more Usage Tips like this, click here.

 

Yoink 256

If you’d like Yoink for Mac to automatically pick up any new files you download or save into a specific folder, here’s how it’s done.

Automator Folder Action

Automator, an app that comes with every Mac, allows you to create Folder Actions, which are small programs that run every time files and folders are added to a folder you specify.

I’ve prepared such a Folder Action for you: Download (direct download, ~42 KB)

Installation
  • Download the action above, then unzip and double-click it. It will prompt you with this:
Screenshot of Automator Installer  13 10 2020 14 39 16

Choose the folder you’d like to attach this action to and click on Install. The action will then be moved to /Users/yourname/Library/Workflows/Applications/Folder Actions/Yoink Save Folder.workflow
If you ever wish to uninstall it, just delete that file.

  • With the Folder Action installed, whenever you download or save a file into that folder, it will be added to Yoink, like you can see in this video:
  • To create multiple of these, all you need to do is unzip again, change the filename of the Automator action, double-click it and follow the instructions above
Details

If you’re curious about what the Folder Action actually does, it’s this:

Screenshot of Automator  13 10 2020 14 35 23

The action runs this shell script

open -a Yoink “$@" 

any time new files or folders are added to the specified folder, which instructs macOS to open the specified file with Yoink (which ultimately results in the file being added to Yoink’s list).

Advanced

You can edit the shell script anytime (by right-clicking onto the Automator file and selecting Automator):

Screenshot of Finder  13 10 2020 14 54 50

which would enable you, for example, to tell the action only to add files of a certain file type, or with a certain file extension.
The following script sample shows how to make the Folder Action only add PDF files:

for str in "$@"
{
filename=${str##*/}
pathExt=${filename##*.}

if [ $pathExt == 'pdf' ]
then
open -a Yoink "$str"
fi
}

Enjoy 🙂

Read more