Black Friday Cyber Monday Deals 2025

Black Friday Cyber Monday Deals 2025

We’ve put pretty much everything on sale for Black Friday-Cyber Monday this year, so if there are any Apparent Software titles you’re missing, now is a great time to complete your collection.

Sale prices un through Monday Dec 2nd. Here are all the details, with prices shown in USD:

Cashculator — Personal Finance for Mac. Save 50% ($65) off the lifetime (one-time payment) option. This significant discount was never available before. Note that there are no discounts to the subscriptions, for technical reasons. 

Trickster: Recently Used Files. Save 50% off Trickster’s regular pay-up-front price. Pay just $14.99 for this time-saving productivity powerhouse!
At its simplest, Trickster answers “Where is that file I was just working on?” But it’s also packed with power user settings and integrations with Hookmark and DEVONthink so you can work faster and more easily with all your files.

ImageFramer. Your Art. Showcased. All tiers of ImageFramer digital photo and art framing on the Mac as well as all its add-on frame & overlay packs, are 50% off. This includes the Card Creator Pack, which contains elements to craft beautiful greeting cards right within ImageFramer. Learn more about ImageFramer here.

Eter: Streaming Internet Radio is a free iOS, macOS, CarPlay, watchOS, and tvOS app that plays any internet radio.
If you want to save your own favorites (which then work across all the app’s platforms) or use the sleep timer to drift off to your favorite station, you would usually pay $8.99 for a one-time in-app purchase to unlock these premium features. That’s a ridiculously low price already, but hey, the holidays are on the way, so we also made Eter half off right now, bringing the price to just $4.49!

Calm My Dog: Anxiety Training is the newest addition to our app portfolio and came out of our designer’s real-life experiences with his dog.
Squeaks, a pandemic pup, needed gradual desensitization training to learn to stay home alone. Anyone who’s using this method knows it’s hard work and part of that work is tracking and timing the training sessions, which this iPhone app does for you. During our Black Friday sale, purchase lifetime (one-time payment) access for half off, at just $49.99 (less than most trainer’s sessions). Note: you can add as many dogs as you like, so this tool works for trainers as well as individual owners. Learn more about Calm My Dog and download free training resources here

App Clips, universal & deep links: how we added station sharing to Eter

App Clips, universal & deep links: how we added station sharing to Eter

One of the new features that we recently added to Eter: Streaming Internet Radio is the ability to share a radio station via a universal link and a special station web profile. If you’re interested in implementing universal links and App Clips in your own app, read on to learn from Eter’s lead developer, Krystian Kozerawski:

  1. How to configure universal link support on your server.
  2. How to add universal link and deep link support to your project in Xcode.
  3. How to add App Clip support in Xcode.

Eter users can now easily share a particular radio station’s special universal link, which, depending on the situation, will:

  • Open the Eter app on an iPhone, iPad or Mac.
  • Open a special web page in the eter.apparentsoft.com domain with the station’s profile.
  • In the case of an iPhone that doesn’t yet have Eter installed, open a special version of the app that will play the shared station in the form of an App Clip, which functions as a mini-version of Eter, that gets temporarily installed directly from the App Store. 

Here’s a working example of a shared station: Shady Pines radio

Supporting universal links and App Clips is actually one topic. It requires similar moves on the server side, on the domain to whose subpage the universal link refers, as well as similar steps in the project configuration in Xcode. First, let’s look at what you need to configure on your web server to support universal links.

Configuring universal link support on your server

A station profile web page, in the domain referenced by a link, which is also supposed to act as a universal link requires special configuration on the server in the form of a JSON file named apple-app-site-association (without extension) placed in the .well-known folder. 

So the proper form of the address of such JSON configuration file is:

https://[YOUR.DOMAIN]/.well-known/apple-app-site-association

In the case of Eter, this file can be found at: https://eter.apparentsoft.com/.well-known/apple-app-site-association

Importantly, the domain must use the secure HTTPS protocol. 

In the case of Eter, that JSON configuration file looks like this: 

JSON
{
	"applinks": {
		"details": [{
			"appIDs": ["G22F34V2HZ.com.mackozer.NewWorldRadioPlayer"],
			"paths": ["/stations/*", ]
		}]
	},
	"appclips": {
		"apps": ["G22F34V2HZ.com.mackozer.NewWorldRadioPlayer.Clip"]
	}
}

As you can see, it consists of two dictionaries, one under the key applinks, referring to proper universal links, and the other under the key appclips, as you can easily guess, referring to App Clips. 

For universal links (applinks), you need to provide an array of bundle identifiers with Application Identifier Prefix in the following format: [ApplicationIdentifierPrefix].[BundleID].

Your organization’s Application Identifier Prefix can be found on your developer profile (developer.apple.com) in the Certificates list view in the upper right corner under the name of your developer account.

The second array in the configuration file for Eter is paths. Here we specify paths without subdomains. In our case, all addresses containing eter.apparentsoft.com/stations will be treated as universal links. 

It should be mentioned that instead of paths you can use an array of components, in which you specify the components of the path, while having the option to specify whether a component should be included in the address or not. 

The altered JSON on the Eter page would look like this: 

JSON
{
    "applinks":{
        "details":[
            {
                "appIDs":[
                    "G22F34V2HZ.com.mackozer.NewWorldRadioPlayer",
                ],
                "components": [
               {
                  "/": "/stations/*",
                  "comment": "Any URL in Eter subdomain with a path that starts with /stations/*"
               }
                ]
            }
        ]
    },
    "appclips": {
        "apps": [
            "G22F34V2HZ.com.mackozer.NewWorldRadioPlayer.Clip"
        ]
    }
}

The second dictionary, appclips, contains an array with the identifiers of individual App Clips, each beginning with an Application Identifier Prefix. The principle here is the same as for application identifiers. 

Here’s a sample JSON app-association file from Apple’s documentation: 

JSON
{
  "applinks": {
      "details": [
           {
             "appIDs": [ "ABCDE12345.com.example.app", "ABCDE12345.com.example.app2" ],
             "components": [
               {
                  "#": "no_universal_links",
                  "exclude": true,
                  "comment": "Matches any URL with a fragment that equals no_universal_links and instructs the system not to open it as a universal link."
               },
               {
                  "/": "/buy/*",
                  "comment": "Matches any URL with a path that starts with /buy/."
               },
               {
                  "/": "/help/website/*",
                  "exclude": true,
                  "comment": "Matches any URL with a path that starts with /help/website/ and instructs the system not to open it as a universal link."
               },
               {
                  "/": "/help/*",
                  "?": { "articleNumber": "????" },
                  "comment": "Matches any URL with a path that starts with /help/ and that has a query item with name 'articleNumber' and a value of exactly four characters."
               }
             ]
           }
       ]
   },
   "webcredentials": {
      "apps": [ "ABCDE12345.com.example.app" ]
   },


    "appclips": {
        "apps": ["ABCDE12345.com.example.MyApp.Clip"]
    }
}

If we put the JSON file in the mentioned folder (./well-known), that’s half done. We can update the file at any time by adding more bundle IDs, paths or components. 

Have patience; the update takes time

Apple’s web robots will not immediately read this file. Sometimes it takes several hours for it to be updated in the Apple database. You can check the current status / contents of the app-site-association JSON file at:

https://app-site-association.cdn-apple.com/a/v1/YOURDOMAIN.

In the case of Eter, this address is: https://app-site-association.cdn-apple.com/a/v1/eter.apparentsoft.com.

Adding universal and deep link support to your Xcode project

Now it’s time to configure the project appropriately so that, depending on whether the user has an application installed or not, the universal link opens either that application or its App Clip. 

To add support for universal links to your app, you need to add the Associated Domains capability. This is done in the Signing & Capabilities tab of the project view in Xcode. Click the + Capabilities button and select Associated Domains from the list,. Then, add two domains with the appropriate prefixes to the domains list. In case of Eter, it looks like this:


As you can see we added not only associated domains to support universal links (applinks) but also to support App Clips. 

A universal link will not always work. For example, when the link is tapped in Facebook or X/Twitter for iOS, these applications use their own built-in browsers. In such cases, a page in the eter.apparentsoft.com domain will open in this built-in browser with the profile of the given radio station and a button to open the station directly in Eter. This button is a deep link, which the application must also support.

Configuring deep links

As  mentioned, if a universal link opens in a browser that does not support it (like the internal web browser in the Facebook or X apps for iOS), a page with the profile of the given station will be displayed. There is a button with a deep link on it, which will open Eter and start playing (receiving) the given radio station stream.

A deep link with a coded stream address, station name and its identifier starts with the prefix com.apparentsoft.eter:// and the system must recognize this prefix to open Eter. Therefore, it should be added to the list of URL types in the project settings in Xcode in the Info tab.

Click the + button in the URL Types section and enter the identifier (preferably one that will describe the purpose of the deep link). In the URL Schemes field, enter your deep link address prefix, which will inform the system that it should open your application. In the case of Eter, we decided to use the classic format for bundle ID. Leave Role set to Viewer, its default value.

Note that you can add as many URL Types (deep links) as your app needs. Each deep link can be used for different features.   

Handling universal and deep links with onOpenURL

Now that we’ve added support for universal links and deep links to our project, it’s time to handle those incoming links in our app. In SwiftUI, we can catch the universal link events and deep link events using the view modifier .onOpenURL.

Swift
struct ContentView: View {
    var body: some View {
	      Text("Hello World!")
	          .onOpenURL { incomingURL in
                handleIncomingURL(incomingURL)
            }
    }
}

In the handleIncomingURL(_ url: URL) method, we extract the stream URL hidden in the deep link or universal link, along with the station name and its ID.

However, if we’re working in UIKit and we use an app delegate, we can use the following method:

Swift
func application(_ application: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any]) -> Bool {
    /// Handle incoming url accordingly
}

It is now a simple matter to extract the stream link, station name or identifier embedded in such a deep link and establish a connection and start receiving the stream if the address is correct. We also need to handle possible errors, including unreadable deep links.

In the case of Eter, the same method supports deep links from the profile page of a given station in the eter.apparentsoft.com domain as well as the data contained in a universal link.

All of this is enough to handle both universal and deep links placed on a station’s profile page, but the App Clip requires a bit more work.

Adding an App Clip target to your project 

When we were considering ways to implement sharing stations via their profile websites on the eter.apparentsoft.com domain, we immediately had the idea to implement an App Clip, so that people who do not have Eter installed could open a universal link and listen to a given station. An App Clip would be a kind of a demo of the full application for them, which is why it is, to some extent, a mini version of Eter, with an available list of radio stations recommended by us.

Technically, an App Clip is a separate application. To add an App Clip to your project, you need to add it as a new target: File menu -> New -> Target.

Creating a mini version of Eter was not difficult. In the case of most files, we added AppClip to the Target Membership list of each of them. We only created a separate view of the simplified list, and added the aforementioned .onOpenURL modifier to the VStack in the body property of ContentView.

All that remains is to add the Associated Domains capability for the App Clip. The process is exactly the same as for the main application target. In the Signing & Capabilities tab in the project, click the + Capabilities button and add, this time only appclips:eter.apparentsoft.com.

And that’s pretty much it for the project configuration and code. The last part is App Store Connect. 

Configuring an App Clip in App Store Connect

First of all, you should push a new build of the app that includes the App Clip to App Store Connect.  It’s worth mentioning that the App Clip can be tested via TestFlight; however, it is tested as a separate build. This means that testers will test the main app and the App Clip separately. 

When you are ready to submit the app, and when you choose the build that includes the App Clip in the submission form, you’ll see a new App Clip section. You need to provide a header image that will be presented when the universal link opens and the main app is not installed, as well as providing a subtitle and an the action description (in case of Eter it is just “play”). 

With all of this accomplished, when the new build is accepted and released, your app will support universal links, deep links and the App Clip! 

Testing universal links and App Clips

When testing universal links, remember that they are supported by the default web browser in the system, both in iOS and macOS, but the link is not opened in the browser but a dedicated application opens the link instead (in our case, Eter). However, do not paste the universal link into the browser’s address bar. This will not work. We made this mistake ourselves at first and it seemed that universal links did not work. However, if you paste the link, for example, to the system Notes app and then tap (or click) on it, the universal link should work and the application associated with it should open.

We also noticed that universal links do not always work in the simulator or with an application built with Xcode. However, they do work with the test beta version downloaded from TestFlight.

On the other hand, we encountered no problems with testing deep links. These can be pasted into the browser’s address bar, which should result in opening the application associated with such a deep link. This should work in the simulator as well.

As for the App Clip, the app build containing it should be sent to App Store Connect. The App Clip itself is tested in TestFlight as a separate app. Keep in mind that the App Clip is ultimately a mini app temporarily installed ad hoc from the App Store — it is not part of the actual app.

We hope that in sharing our experience adding universal links, deep links, and App Clips to Eter: Streaming Internet Radio, you too can find interesting uses for these features and implement with a bit less trial and error than we encountered. For the ultimate programming productivity boost, we recommend streaming your favorite internet radio station as you work. And, hey, we have an app for that!

Black Friday Cyber Monday Deals 2024

Black Friday Cyber Monday Deals 2024

We’ve put pretty much everything on sale for Black Friday-Cyber Monday this year, so if there are any Apparent Software titles you’re missing, now is a great time to complete your collection.

Sale prices un through Monday Dec 2nd. Here are all the details, with prices shown in USD:

Cashculator — Personal Finance for Mac. Save 50% off the first year of an annual subscription. It only works by clicking on this special link to apply the coupon code in the Mac App Store.
That means you get a year of access to easy-to-use cash flow forecasting and budgeting for just $24.99. You might save more than that the very first month you start taking a closer look at your finances with Cashculator! Note: Cashculator is always free to use with up to five income or expense categories, perfect for simple budgets, teaching financial concepts, or just to try before you buy. You can also choose to subscribe monthly, in which case you can use it with unlimited categories for the first week for free and then pay $5.99 a month thereafter. Learn more about Cashculator here.

Trickster: Recently Used Files. Save 50% off Trickster’s regular pay-up-front price. Pay just $14.99 for this time-saving productivity powerhouse!
At its simplest, Trickster answers “Where is that file I was just working on?” But it’s also packed with power user settings and integrations with Hookmark and DEVONthink so you can work faster and more easily with all your files.

ImageFramer. Your Art. Showcased. All tiers of ImageFramer digital photo and art framing on the Mac as well as all its add-on frame & overlay packs, are 50% off. This includes the Card Creator Pack, which contains elements to craft beautiful greeting cards right within ImageFramer. Learn more about ImageFramer here.

Eter: Streaming Internet Radio is a free iOS, macOS, CarPlay, watchOS, and tvOS app that plays any internet radio.
If you want to save your own favorites (which then work across all the app’s platforms) or use the sleep timer to drift off to your favorite station, you would usually pay $4.99 for a one-time in-app purchase to unlock these premium features. That’s a ridiculously low price already, but hey, the holidays are on the way, so we also made Eter half off right now, bringing the price to just $2.49!

Calm My Dog: Anxiety Training is the newest addition to our app portfolio and came out of our designer’s real-life experiences with his dog.
Squeaks, a pandemic pup, needed gradual desensitization training to learn to stay home alone. Anyone who’s using this method knows it’s hard work and part of that work is tracking and timing the training sessions, which this iPhone app does for you. During our Black Friday sale, get a 50% discount for the first year using this App Store link. Note: you can add as many dogs as you like, so this tool works for trainers as well as individual owners. Learn more about Calm My Dog and download free training resources here.

 

 

 

 

 

 

Alfred workflow for Trickster and DEVONthink v1.2

We’ve released a new version of the Alfred workflow (now at version 1.2) for Trickster. It started with one customer (thank you, Sebastian) updating our existing workflow to work better with Alfred 5.5 and we took it from there, giving it better interoperation with DEVONthink items in your Trickster. Download link is at the bottom. For older Alfred versions (below 5): use the previous version of the workflow, see this older post.

So, what can you do with this new workflow:

Get the latest 30 items from Trickster and show them in Alfred

Invoke it with the ttr command in Alfred or with the global hotkey ⌘⌥Z. You can filter the list further by name by typing. This is similar to what you can already do in Trickster, of course, but if you prefer Alfred interface or have further actions that you’d like on them in Alfred and are not possible in Trickster, this is the way.

Open the items by pressing return

For regular files, holding Command key will allow to continue browsing the files in Alfred for all the operations that it provides.

Open DEVONthink items in DEVONthink

With items that came from DEVONthink (which are also files), pressing Option-Return will open the item directly in DEVONthink instead of in the default application in the system. This is similar to how they open from Trickster by default but now it also works in Alfred. Notice how Alfred also displays the path to items from DEVONthink in the format: DEVONthink 3: [DATABASE NAME]/Path in the database instead of the regular file path.

screenshot of Alfred showing Trickster workflow in action, highlighting Open in DEVONthink command on a list item.

Download the workflow

This is what you were looking for.

Click the image below to download the workflow. Then double-click the file (Get latest files from Trickster.alfredworkflow) to open it in Alfred and continue there with installing it.

Click the image to download the 
"Get latest files from Trickster" 
Alfred workflow for Trickster
Click the image to download the
“Get latest files from Trickster”
Alfred workflow for Trickster
Trickster 3.9.3 Update

Trickster 3.9.3 Update

Full Release Notes:

  • Trickster will now refresh previews for modified files that are already in the list
  • Fix Configure Tracking Settings button in Preferences not always working
  • Add checks when adding watched folders:
    •  Prohibit adding home and root folders
    •  Skip folders that are already in the list
    •  For newly added folders that are children of watched folders, confirm that they should be added
    •  For newly added folders that are parents of watched folders, suggest removing the children watched folders
  • Fix text for right-click menu commands when more than one file is selected
Eter 2.0: New Look, New Features!

Eter 2.0: New Look, New Features!

Eter: Streaming Internet Radio is not just a radio app—it’s your portal to over 40,000 global radio stations and it’s filled with great features!

Before we tell you more, let’s first step back in time… the story of how Eter came to Apparent Software is an interesting one. It starts at Macworld 2011. Apparent founder and senior dev Jacob had a booth there at Macworld and, of course, met a lot of press back in those days when there were loads of people writing articles on slim slices of dead trees. One of them was Krystian Kozerawski, a Polish tech blogger (see the photo from back then below). Jacob and Krystian became fast friends, in part because of their common love for similar music and both being guitarists, having played in bands. They kept in touch and a few years later Krystian decided to become a Swift developer and then he joined Apparent Software as a Junior Developer, more than 5 years ago. He developed Eter as a side-project and it became quite popular in Poland. He then suggested to bring it into Apparent Software’s fold because, as he says, he treats us like a rock band and the app is like a song that he brings to the band. Which is a really nice notion, if you ask us. And now, back to the app!

Apple device lineup for Eter radio streaming app

Whether you’re on the hunt for fresh music or seeking solace in familiar tunes, Eter is your musical companion. If you haven’t experienced the magic of Eter yet, now is the perfect time to dive in, as Eter 2.0 has arrived with a plethora of new features to elevate your listening experience. Here is what’s waiting for you:

  • Fresh Design: Embark on a visual journey with a fresh design overhaul led by our Winnipeg-based designer, Brady Froese, alongside a new app icon that encapsulates the essence of Eter’s evolution.

  • Expanded Search Functionality: Explore the vast world of radio stations with ease through an expanded search feature. Discover stations by genre, location, or tags, unlocking a world of musical exploration at your fingertips.

  • Enhanced Playback Experience for Premium Users: Dive into your listening history with a feature that allows Premium users to view recently played tracks and seamlessly open them in Apple Music, bridging the gap between discovery and engagement.

  • Mac Exclusive Features: Mac users can now indulge in a new mini-player for the menu bar, providing quick access to controls. With the option to hide the Dock icon and support for media keys, the Mac experience is tailored to enrich your journey through music, extending compatibility to iPads with attached keyboards.

Ready to explore the world of Eter? Available on all Apple devices including CarPlay, immerse yourself in seamless radio streaming with Eter 2.0. For more information and to discover all that Eter has to offer, visit our website.

Krystian Kozerawski and Jacob Gorban at Macworld 2011

Trickster 3.9.2 Release Notes

DEVONthink integration improvements

Half of improvements in Trickster 3.9.2 are related to a better integration with DEVONthink. For items originating from DEVONthink:

  • Copying URLs will copy a callback URL that opens the item in DEVONthink. This helps with copying DEVONthink items, for example
  • Option-Double-Click or Option-Return will open the file using a default app for the type instead of inside DEVONthink.

Improvements for the new Dropbox and iCloud Desktop/Documents

Now, for the new Dropbox macOS integration (when the Dropbox folder is inside “Locations”), the path inside Dropbox will be correctly shown, like it was showing for older Dropbox versions

Similarly, when customers use iCloud Desktop/Documents option on the macOS, Trickster will now correctly display the path in these folders instead of an empty path.

Trickster 3.9.2 showing paths in Dropbox and Desktop in iCloud

Integration with Hookmark in Setapp

Lastly, Trickster fixes its integration with the Setapp version of Hookmark.

Better integrations and Favorites in Trickster 3.9.1

The new version of Trickster introduces the following changes:

  • Improved integration with Hookmark and DEVONthink
    • Change name from Hook to its rebrand name Hookmark.
    • Display Hookmark button for tracked DEVONthink documents that have hooks.
    • Invoking Hookmark on a DEVONthink item in Trickster will provide expected URL to DEVONthink.
  • What was called Preferences is now called Settings on macOS Ventura and Trickster is now following that convention
  • Added a setting to select what should be displayed in the Favorites sidebar: Icon, Title or Both (like previously).
The new favorites sidebar, with only icons visible
The new favorites sidebar, with only icons visible

Getting Started with Trickster

Getting up and running with Trickster: Recently Used Files is easy, and takes only a few minutes. Follow along to learn how to install the app on your Mac, choose which files and folders to track, and how to prevent specific file types from being tracked. Get ready to boost your productivity by always having the files you need right at hand! If you’d like to watch a video of this process, you can visit our YouTube channel.

Installing Trickster

Installing Trickster is easy. Just download Trickster from our website. You can download Trickster with your favorite web browser, but if you have any issues try using Safari. Web browsers save files to the Downloads folder by default, so that’s probably where it’s waiting.

The Trickster app icon looks like a top hat with a rabbit popping out. If you see an icon that looks like a sheet of paper with a zipper instead, just double-click it to expand the app. Now you can drag the Trickster top hat icon to your Applications folder. Once it’s there, double-click the Trickster icon to get started.

Understanding Trickster’s Interface

Trickster adds a top hat to your Mac’s menu bar so you have quick access to your files. Click it to open the Trickster window where you can see your recently added, opened, or modified documents and folders. The left edge of the window lets you quickly filter what you see. Click the file drawer, for example, to see all recently modified files and folders. Click the photo to see just images and other graphics files, and click the folder to see the folders where the contents have recently changed.

The window’s bottom bar includes several handy tools. Working from left to right, here’s what you’ll find:

  • Filters Menu: From here, you can add and remove tracked folders, and make filters for controlling what Trickster shows you.
  • Active App Filter: Click this to show files for just the currently active app. If you’re working on a report in Pages, for example, only Pages documents will appear.
  • Row Style Options: Compact Row shows file, folder, or app names along with small icons. Extended Row shows the item name and path with large icons.
  • Sort Options: These options let you sort items by most recently active, or alphabetically.
  • Search: The search field lets you look for items by name.
  • Main Menu: This is where to go to find Tricker’s preferences, check for app updates, and more.

Adding Watched Folders to Trickster

To get the most out of Trickster, you need to track the folders and documents that are most important to you. That could be your Downloads folder, client projects, the Documents folder, or a photos folder, for example.

While the idea of letting Trickster monitor your entire Home directory may sound appealing—after all, seeing every recently changed file or folder sounds pretty handy—you should be more deliberate and specific with your choices. macOS makes and modifies a lot of files behind the scenes that you probably don’t need filling up your Trickster views.

To add new tracked folders, start by clicking the Trickster menu bar item, then click the Filters Menu button in the app window’s lower left corner. Now click Configure File Tracking. Next, click Watched Folders and drag the folders you want to track into the right-side column. When you’re done adding folders, click Apply Changes.

Trickster automatically monitors everything inside the folders you add, so changes in subfolders show up, too. Here’s an example: Let’s say you add your Documents folder to the Watched Folders list. If you make a new folder called “My Favorite Recipes” inside Documents, new and edited documents in the “My Favorite Recipes” folder are also tracked by Trickster.

Excluding Items You Don’t Want to Track

Just because you want to see your recent files and folders in an easy to use interface doesn’t necessarily mean you want to see every file. Let’s say, for example, you don’t need to see .XML files.

Start by clicking the Filters Menu button, then click Configure File Tracking. Click Excluded Extensions, then click the plus button to add an extension. Now enter the extension without a period at the beginning. If you don’t want to see .XML files, for example, enter “XML” in the field. Now click Apply Changes.

Favoriting Folders and Files

You can quickly access the files and folders you use most by adding them to Trickster’s Favorites sidebar. If you don’t see the Favorites bar, click the star in the upper right corner of the Trickster window.

To add folders or documents to Favorites, just click and drag the item from any of Trickster’s recent files lists into the Favorites sidebar. Double-clicking an item in Favorites automatically opens it. You can also move or copy items by dragging them from the Finder onto folders in Trickster’s Favorites sidebar.

Getting Even More Out of Trickster

With Trickster set up to track just what you want, you can find the files you need without spending time manually searching through lots of folders. You can copy, move, rename, and delete files, just like you do in the Finder. Just select the item in the Trickster window, and drag it like you normally do, or click the gear icon to the right of the item’s name to do more, such as rename, show in Finder, and move to the Trash.

Read what Apple loves about Trickster in their App Store feature story, “Files at Your Fingertips.”

To learn even more about what makes Trickster great, check out the online user manual for more tips and tricks or watch the video below!

Cashculator 2.1 brings CSV export

Cashculator 2.1 is available on the Mac App Store. Here are the release notes:

  • NEW: Export to a CSV file.
    • Export any table (including reconciliation and reports)
    • Export list of transactions.
    • Find “Export” commands in the File menu.
  • NEW: Disabling of categories.
    • Disabled categories don’t affect totals and allow for quick simple “what-ifs”.
    • Find “Disable” commands in a category’s context menu (right-click on a category), or in the Categories submenu in Edit menu.
  • IMPROVED: Standalone “new document” window
  • UX improvements and Bug fixes

We have also started work on importing transactions from a CSV file