Trickster 2.1.1 fixes bugs and changes the flag

Version 2.1.1 of Trickster a number of important bug fixes. It also makes the flags more visible on the dark background by changing their color from crimson to golden yellow.

  • Fix Trickster reaching 100% CPU usage for users during trial period
  • Fix number of days for 2 weeks of expiration setting to behave correctly
  • Don’t show Trickster’s window on launch, if Hide is set in Login Items.
  • Replaced flag with a yellow one instead of the older crimson-colored one for better contrast.

Update Trickster through its auto-update feature or download Trickster from our site.

Trickster 2.1 release notes

Version 2.1 focuses on extending Trickster’s usefulness through interoperability with OS X and other applications on your Mac to make it better fit your workflow. It also brings voice-over support. Some bug were fixed as well.

Update Trickster through its auto-update feature or download Trickster from our site.

New features

  • Add Share submenu to the context menu (uses Mountain Lion built-in sharing capabilities, so only works on 10.8 or higher).
  • Add copy (Cmd-C) support. Selected files will be copied to the clipboard, like from Finder.
  • Adding files to Evernote from the context menu. You can add files either to the default notebook or to a specific one. Requires Evernote for Mac application to be installed on the machine.
  • Voice-over accessibility support.
  • Preference to only track opened files. In this case, modified and created files won’t appear in Trickster.
  • Support Control-P and Control-N for table navigation.
  • Automation support
    • AppleScript commands to get recent entries, selected entries, add files to Trickster and refresh the sort.
    • Added system-wide Service that allows adding selected files from Finder to Trickster as most recent ones. Even allows adding files by invoking the service on text that includes file paths.
    • Added a URL scheme (trickster-add-recent://) to add files to Trickster

To learn how to use the automation features and see some examples, read this article on our blog.

Minor changes and fixes:

  • Don’t remove flagged files when cleaning items, just as favorite items are not removed.
  • Fixed: flagging a file would add it to any filter with flag set, regardless of other filter settings.
  • Activate the previous app when Trickster hides main window.
  • In Filter manager, when a file is dropped, display if the file won’t pass global tracking settings, even if it passes the filter.
  • Adjust window height to fit the screen, if resolution or display changes.

Trickster automation in version 2.1

Trickster, in version 2.1, adds extensive support for AppleScript and other ways to interact with the application. This way you can make it more useful and adapt it to your workflow. Read below if you’re interested to learn how you can benefit from this, including sample scripts.

Adding files to Trickster’s list

With a System Service “Add to Trickster”.

Either select files in Finder or similar apps or select text that contain paths to files and use “Add to Trickster” service.

With custom URL scheme:

Use trickster-add-recent://fullPath to add the file at fullPath to Trickster.

For example, use in the Terminal as:

open trickster-add-recent:///Users/jacob/Dropbox/Public

For another example, click here to add Preview application to Trickster on your Mac.

With AppleScript

Like this:

tell application "Trickster" to add recent "/Users/jacob/Documents/Sample of Xcode.txt"

or even with multiple files, like this:

set fs to {"/Users/jacob/Documents/File 1.txt", "/Users/jacob/Pictures/Picture 1.jpg"}
tell application "Trickster" to add recent fs

The items can also be file objects and not only string paths.

Getting recent items from Trickster using AppleScript

It’s possible to get either the recent items as they’re shown in Trickster or the selected items. It’s possible to get individual items or the whole list (which might be slow).

There’s a command refresh entries that forces Trickster to sort its recent entries without opening Trickster’s window. You’ll probably want to use it before getting recent entries.

The list of all recent files (no filters applied) is available in entries elements of application object. A specific item (in this example, the first one) can be retrieved directly with the following AppleScript command: get path of entry 1

The selected items are available as selected entries property of the application object. The path to the first selected file can be retrieved with the following script:

tell application "Trickster"
  set se to selected entries
  set t to item 1 of se
  set p to path of t
end tell

The entry object contains the following properties of the file:

  • url (file, r/o) : The file object itself. Use it with Finder or in other ways
  • file name (text, r/o) : File name (without the folder)
  • flagged (boolean, r/o) : Is the item flagged
  • path (text, r/o) : Full path to the file as text
  • folder (text, r/o) : Folder of the file as text
  • favorite (boolean, r/o) : Is the item marked as favorite? If yes, it appears in the Favorites sidebar
  • modification date (date, r/o) : Modification date of the entry. Actually, it’s most usually the time that Trickster detected this change.
  • uti (text, r/o) : UTI of the entry

All of this information is available in the AppleScript dictionary which can be opened with AppleScript Editor.

As a user of LaunchBar I wanted to create a way to send files quickly from Trickster to LaunchBar. I also use the fabulous Keyboard Maestro, which lets me assign hot keys to call these scripts. As an alternative to Keyboard Maestro, you could use FastScripts from Red Sweater, if all you need is call AppleScripts.

The scripts were written with the help of Brett Terpstra and Eugene Gordin.

Script to select the most recent file in LaunchBar:

tell application "Trickster"
    refresh entries
    set f to get path of entry 1
    tell application "Launchbar" to open f
end tell

Script to get selected items in Trickster and put into LauchBar for further processing there:

set sel to selected entries
set paths to {}

repeat with i in sel
    set p to path of i
    set p to POSIX path of p
    copy p to end of paths
end repeat

tell application "LaunchBar"
    remain active
    open paths
end tell

I assigned both scripts to ⌃⌥Z in Keyboard Maestro. You’re welcome to download them.

I also created a custom search in LaunchBar that uses the special URL scheme to add a file from LaunchBar to Trickster. I called it “Add to Trickster”, and can invoke with at. I suppose similar actions can be performed with Alfred or other launchers.

Another usage pattern that Brett suggested is saving these scripts as files in scripts folder for LaunchBar, thus making them available right from within LaunchBar.

You can also create scripts to copy most recent files to the clipboard, for example.

I hope you find it useful in your workflow.

Maybe you can think of new ways to use Trickster’s automation. If you think something is missing and you want more automation functionality, let us know.

Black Friday and Cyber Monday sale

For this year’s Black Friday and Cyber Monday, we’re offering all our products at 50% discount.

From now until end of Monday, Nov 26, you can get all our products at a 50% discount.

The prices appearing on the site are regular prices but the whole store and Mac App Store prices are discounted. No coupon code is needed.

Here are the updated prices:

Don’t miss this rare opportunity!

Socialite 1.5

We’re glad to announce Socialite 1.5 with some important changes. It’s available immediately to direct customers. It was also submitted to the Mac App Store yet the reviews there take about a month now. Use the auto-update mechanism or download directly.

Read the release notes below carefully. There are some important changes in there. There are also some under-the-hood improvements that are not visible in the notes which will help future development.

Note, the version submitted to the Mac App Store will be sandboxed, to adhere to Apple’s requirements. The direct version is not sandboxed.

  • Socialite is now a 64-bit application. Previous versions were only 32-bit. This means it’s more adapted for the future and also that it won’t run on the 32-bit Macs (first generation Intel machines).
  • Text is now sharp on the Retina display. Also updated the application icon for the larger size required for Retina display.
  • Flickr authentication update. Flickr is deprecating its old application authentication mechanism in favor of the more standard OAuth authentication. For you it means future support for Flickr. It also means that Socialite will ask you to authenticate your account again. Only once per a Flickr account.
  • Removed Digg service. The old Digg service was sold and discontinued. The new site is a completely different service. Most of you probably did’t care about Digg by now anyway.
  • Allow increasing and decreasing font size in web view (RSS articles). This is available with Ctrl–+, Ctrl–- and Ctrl–0. The commands are also available in the right-click menu or in the View menu. The zoom setting is remembered between relaunches of Socialite.
  • Updated Growl SDK to version 2.0. If you’re using Growl 2.0, you’ll now be able to forward Socialite’s notifications to Mountain Lion’s Notification Center. Hopefully there also should be less crashes related to the buggy Growl SDK in the previous version.
  • Add menu item “Reveal Database File” in the Help menu.
  • Security enhancements and minor bug fixes

Trickster 2.0.2 brings Retina support and more features

A direct release of Trickster version 2.0.2 is available now. A Mac App Store version is not yet released.

The new version brings full support for the Retina displays on the new MacBook Pros. It also adds a number of new usability features and lots of bug fixes.

Not many people have the Retina Macs yet, but we wanted to delight those who have them and also be ready for future updates to the Mac lineup. Trickster looks gorgeous on the Retina. Sorry, only a portion of the screen can fit the space on the blog.

Full release notes are below the screenshot.

Trickster Window in Retina

  • It’s now possible to drop files from Finder or other apps onto the Recent files list to add them to the list.
  • It’s also possible to drop dragged files on the menu bar icon to add them to the list. From there you can add to Favorites or use Trickster as a temporary “holding area” before dragging them to other applications.
  • Full support for Retina displays
  • Return to items list from search with up/down arrows.
  • Type to search from every part of the window.
  • Remove items from list with Delete/Backspace
  • Added Remove commands to the pop-up menu.
  • Trash files with Command-delete.
  • Add Trash to pop-up menu.
  • Accept “.” in manual extensions in filters and index.

Bug fixes

  • Fixed various crashes
  • Fixed watching the root path.
  • Fixed drag and drop support with some apps, such as Skype and Illustrator.
  • Fixed the creation of excluded files from context menu.
  • Fixed different window resizing problems and Favorites bar drawing.
  • Fixed support for Bartender app

You can download Trickster from our site or use the built-in update mechanism to update your copy.

Socialite 1.4.2 with Mountain Lion support and fixes

We’ve released Socialite 1.4.2 today, to direct customers only. It was also submitted to the Mac App Store but we didn’t want our direct customers to wait since the fixes are important and Apple unfortunately takes quite a lot of time to review submissions recently.

The changes in 1.4.2 are:

  • Fixed constantly spinning Facebook account when sessions expire. Facebook has changed its policy and now applications get only 60 days of access to Facebook before their access tokens expire and the user has to authenticate the application again.
  • Fixed displaying of RSS and Google Reader articles on Mountain Lion
  • Embedded content (such as YouTube videos) now shows in RSS/Google Reader articles. This was a long-standing bug.
  • Socialite is now signed with Developer ID signature for being compatible with Mountain Lion. This is only important to direct customers. This also means that on the first launch of the new version the system will ask you to grant Socialite access to keychain entries. It may ask once for each separate account you have in Socialite.
  • Fixed the incorrect drawing of rows in the sidebar when rows are expanded. Previously the unread badges could be drawn too far to the right.

Direct customers, check using the built-in update option. Or download new version directly.

Trickster — your productivity secret on the Mac

We are glad to announce that we have released a major upgrade to our productivity application Blast. As part of the upgrade we’ve decided to change its name. So please welcome Trickster.

Trickster takes the best ideas of Blast, wraps them in a new shiny package, adds the most requested features from our customers and add some tricks of its own.

Specifically, Trickster improves over Blast with more control over the files and folders that you track, greatly improves performance, adds the much requested ability to quickly find the files by typing their name, all this in an improved, slicker UI. You can get more details about how Trickster improves over Blast here.

You can take a look at the video below to see some of the changes.

Trickster is available both on the Mac App Store and directly from us. Until June 18 it is also available as part of the Productive Macs bundle, which should also check out.

You can also download a 14 day trial from our website. We’re sure you’re going to love it.

Also, don’t forget to follow @tricksterapp on Twitter where we will publish tips about how to get the most out of Trickster.

Socialite 1.4.1 released

The new update of Socialite is mostly a bug fix release, taking care of a lot of crashes that happened in previous versions. It also brings full URLs to twitter status updates and brings back support of showing twitpic and yfrog images in the built-in image viewer.

The update is available both in the Mac App Store and through built-in updater (Sparkle).

If you need to download the last version that worked with 10.5 and PowerPC’s download version 1.3.9.

Release notes for Socialite 1.4.1:

  • Show full links in Twitter instead of short t.co ones
  • Restored showing of twitpic and yfrog images in the built-in image viewer for Twitter.
  • Fix font smoothing issues for some users.
  • Many very important stability fixes, including ones related to Growl notification, Facebook service and more.

Socialite 1.4.0 improves stability, memory usage and drops 10.5 support

The new version of Socialite has some usability improvements along with lots of bug fixing and performance improvements. It also drops support for Mac OS X 10.5, Leopard. If you need to download the last version that worked with 10.5 and PowerPC’s download version 1.3.9.

Release notes for Socialite 1.4.0:

  • Better memory management, especially when using Socialite for a long time.
  • Always show events in favorites/starred containers.
  • Fix loading in RSS URLs with “|” in URLs.
  • If there’s an active filter (search), “Mark All as Read” will only mark read the filtered events.
  • Delay start of search (filtering) by about half a second to allow fast typing of search terms.
  • Twitter: user’s newly posted tweets are now initially unread.
  • Facebook: user’s own status updates become unread if there are new comments for them.
  • Lots of bug fixes and stability improvements
  • Updated Growl framework to version 1.3.1 SDK.

Pin It on Pinterest

Share This