Under The Microscope


Author Archive

The Latest SoundSource Brings Two Major Advances

SoundSource is now much simpler to install and it supports MacOS 15 (Sequoia).

We’ve recently updated our sound control utility SoundSource, and it’s a big leap forward. On top of a wealth of assorted improvements and bug fixes, there are two notable advances.

First, SoundSource is now dramatically simpler to install on your Mac. There’s no longer any need to adjust startup security settings, nor even restart your Mac a single time. You can get started in seconds.

Second, SoundSource has support for MacOS 15 (Sequoia). If you’ve already updated your Mac to Sequoia, you can now run SoundSource on it.

You can download the latest right from the SoundSource product page. For more details about this update, read on.

Simplified Setup

SoundSource is now powered by our next-generation audio capture backend, “ARK”. Thanks to ARK, you can start using SoundSource in under a minute, with a new, streamlined setup process.

When you launch SoundSource on MacOS 14.5 and higher1, the app will walk you through the necessary setup. With a few clicks, you’ll install the ARK plugin, grant the necessary permissions, and be up and running.

This change is the result of many months of development, as extensive work was required to overhaul the app’s backend. Despite those huge changes under the hood, we worked diligently to ensure existing users experience minimal changes in functionality. SoundSource remains the most powerful utility for audio adjustment on your Mac, and now, getting started with it is a snap.

Update SoundSource Now

If you’re already a SoundSource user, all you need to do is choose Check for Updates from the SoundSource menu to update to the latest version for your system.

If you’re not currently using SoundSource, visit the product page to learn more and download the free trial. It’s never been so easy to take control of all the audio on your Mac.


Footnotes:

  1. The new audio capture backend requires MacOS 14.5 or higher, so SoundSource currently has two variants, with nearly identical functionality. On MacOS 14.5 and up, SoundSource 5.7.1 is the current version, while MacOS 14.4.1 and lower uses SoundSource 5.6.4.

    You don’t have to worry about that, however. All you have to do is download, and SoundSource will take care of making sure you have the right variant for your Mac. ↩︎

All Rogue Amoeba Apps Support the New MacOS 15 (Sequoia)

Download our latest versions and you’ll be set on Sequoia.

With Monday’s update to SoundSource, our entire product lineup now offers support for MacOS 15 (Sequoia). While it’s always wise to exercise caution in updating your Mac’s operating system, you won’t need to delay due to our apps. Make sure you have our latest versions, and you’ll be set to update your Mac to Sequoia.

Better Beta Cycles

When the first developer preview appeared back in June, we were thrilled to have five of our seven products already functional on Sequoia. Airfoil, Audio Hijack, Farrago, Fission, and Piezo were all capable of running on the new OS without needing any updates. By contrast, Loopback and SoundSource required most of the summer to gain Sequoia support. Eventually, though, they too were able to support Sequoia in advance of its release.

This required an immense amount of hard work from our entire team. We’ve spent much of the past two years overhauling the backend of all our audio capture apps to use our next-generation capture system, which we call “ARK”. In addition to the greatly simplified setup ARK affords, it also gives us the ability to support new OSes sooner.1

In the past, it was not viable to provide updated versions of our products until near the end of Apple’s beta cycle. Thanks to ARK, the future looks brighter. If Apple follows their standard beta process next year, we hope to be able to provide updates that work on previews of MacOS 16 (Rancho Cucamonga?) earlier than ever.

This is also a good spot to once again link to our helpful Status page, which provides the most up-to–date information on compatibility with various operating system versions. This page is updated year-round, so if any of our tools are crucial to your setup, consider bookmarking the Status page to check before installing any major OS updates.

Happy Updating

As folks begin to update their Macs to Sequoia, we’re watching for any issues. We’re also working hard on further improvements, which we expect to ship in the weeks ahead. For now, though, we’re just thrilled to be ready for Sequoia after a long summer of work and testing. Make sure you have our latest versions, and after that, happy updating!


Footnotes:

  1. I’ll also mention that ARK is available for licensing. If you have a Mac app that can benefit from audio capture, see our Licensing page for more information. ↩︎

How To: Highlight Text Fragments When Linking

With this bookmarklet, you can create links that highlight text on the resulting page.

Update (December 11, 2024): After posting this in August, we received a helpful tip that Chrome has the functionality to create these links built in, with the “Copy Link to Highlight” options. See this link for more details.

In October, Firefox 131 added support for opening links with text fragments.

Most recently, Safari 18.2 added built-in support too, with a “Copy Link with Highlight” option available when control-clicking highlighted text on a web page.


A highlighted result

In recent months, I’ve begun to notice that results from web searches often highlight specific text on the page to which they’re linking. The web page is also scrolled to the relevant content. It’s quite helpful!

A quick investigation showed this is accomplished by appending a bit of code, #:~:text= to the URL for a link. These are called Text Fragments, and they’ve been supported by Chrome since back in 2020. It took a couple more years for support to come to Safari, but at this point, the element is well-supported enough to be worth using.

For example, during Apple’s beta season each summer, we get a lot of inquiries about our support for the upcoming OS. We guide users to our Status page, which is regularly updated with the latest information. When we do, we also want to highlight the fact that they can turn on optional test releases, to get pre-release access to updates. With Text Fragments, we can do just that. A specific link to rogueamoeba.com/status/#:~:text=Test%20Releases%20Provide%20Early%20Access will scroll the page down and highlight the relevant text:

A highlighted result

I tested making a few of these manually, which worked but was quite a hassle. While contemplating a bookmarklet to handle it, our man Lee Falin beat me to the punch.

Here’s what he worked out:

javascript:(function() {
    var selectedText = window.getSelection ? window.getSelection().toString() : document.selection.createRange().text;
    if (!selectedText) {
        alert("Please select some text on the page first.");
        return;
    }
    var newUrl = window.location.href.split('#')[0] + "#:~:text=" + encodeURIComponent(selectedText);
    var textArea = document.createElement("textarea");
    textArea.value = newUrl;
    document.body.appendChild(textArea);
    textArea.select();
    document.execCommand("copy");
    document.body.removeChild(textArea);
})();

By using this code in a bookmarklet, you can easily create links with helpful highlighting. The one-time process to turn that code into a bookmarklet is slightly clunky, but it can be accomplished quickly.

Update (October 9, 2024): For a simpler way to save this bookmarklet, just drag this link to your browser’s Favorites bar: Link to Selection

Thanks to Daniel Jalkut of Red Sweater for this!


First, bookmark any page at all in your web browser. Next, edit the bookmark’s address (in Safari, select Edit Bookmarks from the Bookmarks menu, control-click the bookmark, then select Edit Address…). You can now paste in the JavaScript from above. Finally, you can rename the bookmarklet to whatever you like.

Once you have your bookmarklet set, just highlight text on any page, then select the bookmark. The URL for the current page will be placed on your clipboard, ready for pasting. When the link is clicked, it will appear with your specified highlighting. Handy!

Farrago 2.1 Brings Over Two Dozen Improvements

Get the free update to Farrago 2.1 today.

We’ve just posted a free update to Farrago! Version 2.1 brings over two dozen enhancements and fixes to the Mac’s best soundboard app. Read on for more details, or just update immediately by selecting “Check for Update” in the Farrago menu.

Notable Updates

First up, for fans of automation, we’ve introduced several enhancements to Farrago’s Shortcuts support. It’s now possible to set the color of a sound using the “Set Sound Setting” shortcut, and the “Get Sound” and “Get Sound Set” shortcuts can now extract Sounds and Sound Sets directly from shortcut input. We’ve also added new properties to the “Sound” (“X Position”, “Y Position”, and “OSC Base Address”), and the “Sound Set” (“OSC Base Address”) types.

Farrago also offers the ability to get or set OSC values from a shortcut, which allows shortcuts to read a tile’s remaining time, set its playback position, and more. We’ve also made several updates to OSC support itself, with new paths for resetting List playback state and managing the playback mode setting for sets in List mode, as well as several bug fixes.

We’ve leveled up our accessibility too, with a handful of fixes and improvements for users operating Farrago via VoiceOver. A rare crash has been fixed, tooltips have been improved, and several rough edges have been sanded down.

There are many other small changes in Farrago 2.1. You can read all about them in the comprehensive release notes.

Preliminary MacOS 15 (Sequoia) Support

With this latest update, Farrago also joins Airfoil, Audio Hijack, Fission, and Piezo in offering preliminary support for MacOS 15 (Sequoia). The latest versions of all these apps no longer warn about the OS being unsupported when run on Sequoia. At this time, there are no known issues.

Do note that Apple’s OS betas remain in flux, and we always encourage users to stick with Apple’s official (non-beta) OS releases to avoid problems. If you’re already running Sequoia, however, just be sure you’ve got our latest versions.

Further Sequoia Updates Still to Come

At present, Loopback and SoundSource do not yet run on Sequoia. We’re still hard at work on updates for both of these apps, and we’ll have more there in the weeks ahead. Keep an eye on our official Status page for more soon.

Update (August 6, 2024)

Loopback 2.4.3 released today, offers preliminary support for Sequoia. A SoundSource update remains in the works. As before, keep an eye on our official Status page.

Loopback 2.4.1 Brings Key Bug Fixes

Use “Check for Update” to get the latest.

We’ve just released a small but important update to our cable-free audio routing tool, Loopback. The recent release of Loopback 2.4.0 featured a simplified setup process on MacOS 14.5 and up, powered by an overhauled audio capture backend. However, that change introduced several new problems we needed to correct. Today’s update brings critical fixes for those issues.

All Loopback users on MacOS 14.5 or higher should update to version 2.4.1 now. To do so, select the Check for Updates option in the Loopback menu to update to the latest version now.1

Transitioning to a New Audio Capture Backend

With the release of MacOS 11 in 2020, Apple made changes that negatively impacted the setup process for our apps. Getting the necessary audio capture system (known as “ACE”) working was painful, with Apple Silicon-based machines even requiring changes to the Mac’s “Startup Security Policy”. These hurdles were difficult for both users and us.

We wanted to provide a better experience, and that meant we needed to change the backend system Airfoil, Audio Hijack, Loopback, Piezo, and SoundSource use for audio capture. We began work on our new audio capture system (dubbed “ARK”) in late 2022. It’s been an immense undertaking, but after nearly two years, ARK is ready for real-world use.2

This spring, we began to transition our products away from using ACE for audio capture. We’ve aimed for the move to ARK to be invisible to existing users of our products, and updates to Audio Hijack, Piezo, and Airfoil were very successful in that regard.

Loopback 2.4.0 and 2.4.1

Loopback, however, fell a bit short of the goal of a completely seamless transition. It needed more substantial changes than our other apps, and that led to a few rough edges in the Loopback 2.4.0 release. After several weeks of effort, we’ve now smoothed those out in version 2.4.1, which includes:

  • A fix for distortion which could be heard when audio was routed through Loopback’s virtual devices
  • Improved audio capture of apps playing audio through a non-default output device
  • Substantial CPU performance improvements

To see the full list of improvements in Loopback 2.4.1, give the release notes a read.

Your Feedback Is Essential

Before every release, we do a substantial amount of testing to ensure the app is ready. Still, it’s impossible to test all potential scenarios, so user feedback is essential to us. Recent communications with Loopback users helped us rectify the issues mentioned above, and we’re very grateful for the assistance.

Our top-notch Support team is always here for you, listening to input and assisting with issues. Those conversations are a key part of our development process, so please don’t hesitate to reach out.

More Updates to Come

We expect to ship further updates with initial support for MacOS 15 (Sequoia) in the coming weeks. An update to our essential sound control utility SoundSource is also still in the works, and will complete our transition to the new audio capture backend. Watch for more later this summer.


Footnotes:

  1. If you’re not yet on MacOS 14.5, you’ll continue to use Loopback 2.3.3, which does not need an update at this time. We now have two functionally equivalent variants of the app, based on your exact operating system version. You don’t need to do anything, however. The app’s built-in version checking handles this for you automatically. ↩︎

  2. A brief marketing note: Our licenseable ARK-SDK, built on top of ARK, makes it easy to capture and process audio on MacOS. If you’re a MacOS software developer in need of audio capture or just a simplified way of dealing with audio, learn more about licensing. ↩︎