<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link rel="hub" href="http://tumblr.superfeedr.com/" xmlns:atom="http://www.w3.org/2005/Atom"/><description>QSApp.comLoveSubmissionsLoveQuestionsLoveQuicksilver</description><title>Quicksilver — LoveQuicksilver Blog</title><generator>Tumblr (3.0; @lovequicksilver)</generator><link>http://blog.qsapp.com/</link><item><title>Triggering Web Apps</title><description>&lt;h3&gt;How to activate a web app in its open tab (and quickly set up the trigger)&lt;/h3&gt;

&lt;p&gt;Triggers are great for summoning apps – if an app is not running, it launches, and if it is running, it activates. However, services such as &lt;a href="http://www.feedly.com/" target="_blank"&gt;&lt;/a&gt;&lt;a href="http://www.feedly.com/" target="_blank"&gt;Feedly&lt;/a&gt; provide their… services in web apps. A trigger to open a service&amp;#8217;s URL can result in multiple duplicate tabs cluttering up the default browser.&lt;/p&gt;

&lt;center&gt;&lt;img src="http://media.tumblr.com/50a3ec29b681e375d22a4c207fe3a2d5/tumblr_inline_moevhbeobX1qz4rgp.png"/&gt;&lt;br/&gt;&lt;i&gt;Help, indeed&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;p&gt;To reduce tab-closing chores, the following script activates or, if necessary, opens a Feedly tab in the frontmost Chrome window:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;tell application "Google Chrome"
	
	activate
	
try
	tell window 1
		set _tabs to tabs
		set _tabNumber to 0
		
		repeat with _tab in _tabs
			set _tabNumber to _tabNumber + 1
			if URL of _tab contains "http://www.feedly.com/" then
				set URL of _tab to¬
				 "http://www.feedly.com/home#my"
				set active tab index to _tabNumber
				return
			end if
		end repeat
	end tell
end try

	-- If no tabs contain the parent URL:
	open location "http://www.feedly.com/home#my"
	
	activate
	
end tell

&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;No need to save the script – just grab it into Quicksilver, set &amp;#8216;Run as AppleScript&amp;#8217; in pane 2, and hit ⌃⏎ to find the &amp;#8216;Add Trigger…&amp;#8217; action.&lt;/p&gt;

&lt;br/&gt;&lt;center&gt;&lt;img src="http://media.tumblr.com/f8f46bfe6e5877a6728148abe19cf4cb/tumblr_inline_mof674vzmp1qz4rgp.png"/&gt;&lt;br/&gt;&lt;i&gt;&lt;/i&gt;&lt;/center&gt;

&lt;center&gt;&lt;br/&gt;&lt;iframe width="560" height="380" src="http://www.youtube.com/embed/IC-e5QhuCdY" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;
&lt;br/&gt;&lt;i&gt;Control-enter displays the command based actions such as &amp;#8216;Add Trigger…&amp;#8217;&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;p&gt;The script can be modified to accommodate almost any URL.&lt;/p&gt;

&lt;br/&gt;
@LoveQuicksilver
&lt;br/&gt;&lt;br/&gt;</description><link>http://blog.qsapp.com/post/53002397309</link><guid>http://blog.qsapp.com/post/53002397309</guid><pubDate>Sat, 15 Jun 2013 13:57:00 +0900</pubDate></item><item><title>AirPlay and Quicksilver</title><description>&lt;h3&gt;Toggle AirPlay with Quicksilver triggers&lt;/h3&gt;
&lt;br/&gt;&lt;center&gt;&lt;img src="http://media.tumblr.com/ee4cc5254fcdd3df2147a73205bd2309/tumblr_inline_mnc990WdRa1qz4rgp.jpg" alt="image"/&gt;&lt;br/&gt;&lt;i&gt;&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;p&gt;AirPlay is one of the best features of Mountain Lion. YouTube becomes a proper TV channel, and iTunes music can be streamed away from tinny MacBook speakers.&lt;/p&gt;

&lt;p&gt;However, first-world problems arise when a video is already fullscreen and the AirPlay button can&amp;#8217;t be clicked, and hitting play on the keyboard doesn&amp;#8217;t really save time because iTunes&amp;#8217; AirPlay icon needs to be clicked to stream audio.&lt;/p&gt;

&lt;p&gt;Thanks to &lt;a href="http://dougscripts.com/itunes/category/airplay/" target="_blank"&gt;Doug Adams&lt;/a&gt;, I&amp;#8217;ve been able to write a  &lt;a href="http://dl.dropbox.com/u/157506/AirPlay%20iTunes.scpt" target="_blank"&gt;script&lt;/a&gt; that toggles AirPlay in iTunes 11.0.3 and upwards. I&amp;#8217;m assuming one Apple TV that hasn&amp;#8217;t been renamed. Check out Doug Adam&amp;#8217;s posts if you have a more complex setup.&lt;/p&gt;

&lt;p&gt;Subsequently, I was unreasonably annoyed to discover that iTunes&amp;#8217; AirPlay feature is separate from the rest of Mountain Lion, So I wrote another &lt;a href="http://dl.dropbox.com/u/157506/AirPlay.scpt" target="_blank"&gt;script&lt;/a&gt; that does the hard work of clicking the menubar&amp;#8217;s AirPlay icon – even when a video is (and this can&amp;#8217;t be done manually) fullscreen.&lt;/p&gt;

&lt;center&gt;&lt;br/&gt;&lt;iframe width="560" height="380" src="http://www.youtube.com/embed/mAicj4hM34s" frameborder="0"&gt;&lt;/iframe&gt;
&lt;br/&gt;&lt;i&gt;QuickTime Player slows down the menu&amp;#8217;s appearance – it&amp;#8217;s a lot faster in practice!&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;p&gt;Save the scripts anywhere you like, and create triggers for them in the form &amp;#8216;[script]⇥Run&amp;#8217;. If anyone&amp;#8217;s got a cleaner way of toggling Mountain Lion&amp;#8217;s AirPlay feature, let&amp;#8217;s hear it!&lt;/p&gt;
&lt;br/&gt;
@LoveQuicksilver
&lt;br/&gt;&lt;br/&gt;</description><link>http://blog.qsapp.com/post/51281607628</link><guid>http://blog.qsapp.com/post/51281607628</guid><pubDate>Sat, 25 May 2013 14:05:00 +0900</pubDate></item><item><title>Grab the Current iTunes Track</title><description>&lt;a href="http://rowofl0.tumblr.com/" target="_blank"&gt;rowofl0&lt;/a&gt; asks:
&lt;blockquote&gt;&lt;p&gt;Is there a way to grab the iTunes track that is playing? Something like how command-g grabs the current Finder selection.
&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;Sure! With the iTunes plugin installed, check &amp;#8216;Currently Playing Track&amp;#8217; is selected in Preferences&amp;gt;Catalog&amp;gt;Quicksilver&amp;gt;Proxy Objects.

&lt;/p&gt;&lt;center&gt;&lt;img src="http://media.tumblr.com/7a4a700f054e3ef13f1ef9ee7cf49ba4/tumblr_inline_mnbtne4WIu1qz4rgp.png" alt="image"/&gt;&lt;br/&gt;&lt;i&gt;&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;p&gt;Make a triggger for &amp;#8216;Currently Playing Track→Select in Command Window&amp;#8217;, and you&amp;#8217;re done.&lt;/p&gt;

&lt;center&gt;&lt;br/&gt;&lt;iframe width="560" height="380" src="http://www.youtube.com/embed/SGcVIOB34Po" frameborder="0"&gt;&lt;/iframe&gt;
&lt;br/&gt;&lt;i&gt;&amp;#8216;Currently Playing Track&amp;#8217; points to a file as well as an iTunes object&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;br/&gt;
@LoveQuicksilver
&lt;br/&gt;&lt;br/&gt;</description><link>http://blog.qsapp.com/post/51261903730</link><guid>http://blog.qsapp.com/post/51261903730</guid><pubDate>Sat, 25 May 2013 09:11:00 +0900</pubDate></item><item><title>Print to Quicksilver with Printopia</title><description>&lt;h3&gt;Get images and PDFs out of iOS and into Quicksilver with a couple of taps&lt;/h3&gt;
&lt;br/&gt;&lt;center&gt;&lt;img src="http://media.tumblr.com/1a2eb1ec383105e43b5dbb608e92735f/tumblr_inline_mn64bdwbAf1qz4rgp.png" alt="image"/&gt;&lt;br/&gt;&lt;i&gt;&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;p&gt;&lt;a href="http://www.ecamm.com/mac/printopia/" target="_blank"&gt;Printopia&lt;/a&gt; is an excellent way to print from an iOS device. It costs some bucks, but it&amp;#8217;s a lot cheaper than buying an AirPlay printer. Files needn&amp;#8217;t go straight to a printer though. As files are routed through a Mac, Printopia also provides an option to open them in any app of the user&amp;#8217;s choosing – including Quicksilver.&lt;/p&gt;

&lt;p&gt;Go to Printopia&amp;#8217;s System Preferences pane, click the &amp;#8216;+&amp;#8217; icon, and then &amp;#8216;Send to Application&amp;#8217; to add Quicksilver.&lt;/p&gt;

&lt;center&gt;&lt;br/&gt;&lt;iframe width="560" height="380" src="http://www.youtube.com/embed/woefgBL-54g" frameborder="0"&gt;&lt;/iframe&gt;
&lt;br/&gt;&lt;i&gt;&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;p&gt;Select a document or image on an iOS device and find the Print button. Select &amp;#8216;Send to Quicksilver&amp;#8217; from the list of printers, and tap &amp;#8216;Print&amp;#8217;.&lt;/p&gt;

&lt;center&gt;&lt;img src="http://media.tumblr.com/67e650894072ff61a74cb77b92ed1e31/tumblr_inline_mn66k96RIq1qz4rgp.png" alt="image"/&gt;&lt;br/&gt;&lt;i&gt;An Image in iOS…&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;p&gt;The file will appear in Quicksilver shortly. Do with it as you will.&lt;/p&gt;

&lt;center&gt;&lt;br/&gt;&lt;iframe width="560" height="380" src="http://www.youtube.com/embed/9P9PdHwS_jU" frameborder="0"&gt;&lt;/iframe&gt;
&lt;br/&gt;&lt;i&gt;… and now in Quicksilver&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;br/&gt;
@LoveQuicksilver
&lt;br/&gt;&lt;br/&gt;</description><link>http://blog.qsapp.com/post/51021620724</link><guid>http://blog.qsapp.com/post/51021620724</guid><pubDate>Wed, 22 May 2013 07:40:00 +0900</pubDate></item><item><title>Developing Plugins for Quicksilver</title><description>&lt;center&gt;&lt;img src="http://media.tumblr.com/d0259fb98a3fdbe79795cc156818c809/tumblr_inline_ml4vyex5Zc1qz4rgp.png" alt="Quicksilver Plugin"/&gt;&lt;/center&gt;

&lt;p&gt;We don&amp;#8217;t normally talk about the development changes we make under the hood for Quicksilver, but without our developers making &lt;a href="http://qsapp.com/plugins.php" target="_blank"&gt;awesome plugins&lt;/a&gt;, Quicksilver wouldn&amp;#8217;t be what it is today.&lt;/p&gt;

&lt;p&gt;Recently we&amp;#8217;ve been working hard to make it as easy as possible for new developers to create plugins for Quicksilver. As a testament to this, you&amp;#8217;ll see that the list of &amp;#8216;developer changes&amp;#8217; in the &lt;a href="http://qsapp.com/changelog.php" target="_blank"&gt;changelog&lt;/a&gt; is almost as long as the &amp;#8216;features&amp;#8217; and &amp;#8216;fixes&amp;#8217; list for recent versions of Quicksilver.

&lt;/p&gt;&lt;p&gt;For now, let&amp;#8217;s skip past those changes (if you want to know more abou them, either check out their corresponding pull request on Github, or ask in the Quicksilver Developer Groups (see link below), and look at some of the bigger things we&amp;#8217;ve done over the past years to give anyone and everyone as much help as possible in creating plugins.&lt;/p&gt;

&lt;h2&gt;Plugin Documentation&lt;/h2&gt;

&lt;p&gt;Who ever said documentation wasn&amp;#8217;t important?&lt;br/&gt;
Over the years, Rob McBroom (a Quicksilver lead dev) has meticulously compiled a comprehensive &lt;a href="http://projects.skurfer.com/QuicksilverPlug-inReference.mdown" target="_blank"&gt;Plugin Reference&lt;/a&gt; on getting started with plugins, and an &lt;a href="http://projects.skurfer.com/QuicksilverPlug-inReference.mdown#property_list_overview" target="_blank"&gt;overview of what you need to define in a plugin&amp;#8217;s Info.plist&lt;/a&gt; so that you (the developer of a brand new Quicksilver plugin) can get the most out of your plugin. The Info.plist has always been the tricky bit in creating plugins (here&amp;#8217;s an &lt;a href="https://github.com/quicksilver/iTunes-qsplugin/blob/master/Info.plist" target="_blank"&gt;example .plist file&lt;/a&gt; from the iTunes plugin to show how complicated things can &lt;em&gt;really&lt;/em&gt; get), but Rob&amp;#8217;s overview makes life so much easier.&lt;/p&gt;

&lt;p&gt;If you ever get the smallest urge to create a plugin, this is where you want to start.&lt;/p&gt;

&lt;h2&gt;XCode Plugin Template&lt;/h2&gt;

&lt;p&gt;Discussed in the Plugin Development Reference is the XCode Plugin project template. This is a handy template (&lt;code&gt;.xctemplate&lt;/code&gt; file) that you can drop into Xcode to make setting up a new plugin project much, much easier.&lt;/p&gt;

&lt;center&gt;&lt;img src="http://media.tumblr.com/697915d039e3ed3db7637e395a258aaf/tumblr_inline_ml4vtqZalV1qz4rgp.png" alt="New Quicksilver Plugin"/&gt;&lt;/center&gt;

&lt;p&gt;From the plugin reference, here&amp;#8217;s the &lt;a href="http://projects.skurfer.com/QuicksilverPlug-inReference.mdown#getting_started" target="_blank"&gt;steps you need to take&lt;/a&gt;:&lt;/p&gt;

&lt;ol&gt;&lt;li&gt;Get the Xcode Project template from &lt;a href="https://github.com/quicksilver/PluginDevelopmentReference" target="_blank"&gt;the GitHub repository&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Copy &lt;code&gt;Quicksilver Plug-in.xctemplate&lt;/code&gt; to &lt;code&gt;~/Library/Developer/Xcode/Templates/Application Plug-in&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Create a new project in Xcode. You should see “Quicksilver Plug-in” in the “Application Plug-in” category.&lt;/li&gt;
&lt;li&gt;There are three types to choose from. Standard, Scripting Bridge (which is like Standard but adds the Scripting Bridge framework), and Interface which is mainly useless for now.&lt;/li&gt;
&lt;/ol&gt;&lt;p&gt;Make sure you take a look at the plugin reference though, as there are a few more steps and niggles that you&amp;#8217;ll need to complete before you&amp;#8217;re ready to go.&lt;/p&gt;

&lt;h2&gt;Existing Plugins&lt;/h2&gt;

&lt;p&gt;When the current development team jumped on board to save Quicksilver, documentation on existing plugins was few and far between. Comments in code were non existent, and things were just a right pickle, to be perfectly honest.&lt;br/&gt;
Things are much better now, with it much easier to dive straight into the code of &lt;a href="https://github.com/quicksilver/" target="_blank"&gt;one of the existing plugins&lt;/a&gt; to find out how something or other was done.&lt;/p&gt;

&lt;h2&gt;Programming at ease&lt;/h2&gt;
&lt;p&gt;We&amp;#8217;ve tried to make writing plugins as simple and &lt;em&gt;bash-my-head-against-the-wall&lt;/em&gt;-free in recent months. Now, when writing plugins, you can define new QSObjects and Actions based on UTIs of objects. We hope to expand this further in the future by converting all Quicksilver &amp;#8216;types&amp;#8217; to conform to the &lt;a href="http://developer.apple.com/library/ios/#documentation/FileManagement/Conceptual/understanding_utis/understand_utis.tasks/understand_utis_tasks.html#//apple_ref/doc/uid/TP40001319-CH203-BABHCIAC" target="_blank"&gt;UTI API&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;One of the most convenient feature of Quicksilver is the &lt;a href="http://qsapp.com/wiki/Comma_Trick" target="_blank"&gt;comma trick&lt;/a&gt;. Previously, developers would have to write two bits of code for each and every action (&lt;code&gt;QSAction&lt;/code&gt;) depending on whether one or more than one object was selected (using the comma trick). Now you can use the same code and just iterate over an array of &lt;code&gt;QSObjects&lt;/code&gt; (be it an array that contains 1&amp;#160;&lt;code&gt;QSObjects&lt;/code&gt; or 10, it doesn&amp;#8217;t matter). Here&amp;#8217;s some code to show how easy it is to implement the comma trick in one of your plugins:

&lt;/p&gt;&lt;pre style="white-space: pre-wrap;"&gt;
// 'dObject' is the 'direct object' sent to the action method from Quicksilver's 1st pane when the user executes your plugin's action
for (QSobject *eachObject in [dObject splitObject]) {
	// do something with data from eachObject in the 'comma trick' list. e.g. email it, trash it, display it large type...
}
&lt;/pre&gt;

&lt;hr&gt;&lt;p&gt;And there we have it, a quick look at developing plugins for Quicksilver. If there&amp;#8217;s positive feedback about the post, and people want to know more, we&amp;#8217;ll make sure to get a series of blog posts out from start to finish on creating plugins for Quicksilver.&lt;br/&gt;
Also: stay tuned&amp;#8230; we&amp;#8217;ll be arranging a Quicksilver code meet up in the not too distant future!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;References:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;
&lt;a href="http://projects.skurfer.com/QuicksilverPlug-inReference.mdown" target="_blank"&gt;Plugin Development Reference&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://qsapp.com/wiki/Developer_Information" target="_blank"&gt;Developer Information on the wiki&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://groups.google.com/forum/?fromgroups#!forum/quicksilver---development" target="_blank"&gt;Developer Google Groups&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</description><link>http://blog.qsapp.com/post/47769690224</link><guid>http://blog.qsapp.com/post/47769690224</guid><pubDate>Fri, 12 Apr 2013 17:38:00 +0900</pubDate></item><item><title>Quicksilver: An Interview with the Developers</title><description>&lt;center&gt;&lt;img src="http://media.tumblr.com/2792b792d1fab59e66c372bf370ab393/tumblr_inline_mk3rruskXq1qz4rgp.png" alt="image"/&gt;&lt;br/&gt;&lt;i&gt;&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;p&gt;With the release of Quicksilver v1.0, I sat with Quicksilver&amp;#8217;s lead developers (at our respective far-flung computers) to gather their thoughts on this historic occasion, and to find out a bit more about Quicksilver behind the scenes.&lt;/p&gt;

&lt;center&gt;&lt;img src="http://media.tumblr.com/84d493d57f1972a0ad9c3743ffbcbc7e/tumblr_inline_mk3g0vTY8w1qz4rgp.png" alt="image"/&gt;&lt;br/&gt;&lt;i&gt;Patrick Robertson and Rob McBroom&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;p&gt;Rob and Patrick have been at the forefront of the machine that&amp;#8217;s driven this 1.0 release, so let&amp;#8217;s hear what they have to say:&lt;/p&gt;

&lt;p&gt;&lt;b&gt;LoveQuicksilver:&lt;/b&gt; What makes Quicksilver worthy of a 1.0 status?&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Patrick:&lt;/b&gt; Now that users can upload their crash reports to us, we&amp;#8217;ve fixed tons of lingering bugs that we would never have known about otherwise. Stability is what v1.0 boasts, but accessibility should not be forgotten. We&amp;#8217;ve worked to simplify Quicksilver and add great documentation (a new manual is coming out!), meaning Quicksilver can be picked up by anyone much more easily than before.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Rob:&lt;/b&gt; All the major known bugs are OS X bugs, not Quicksilver bugs. :-)&lt;/p&gt;


&lt;p&gt;&lt;b&gt;LoveQuicksilver:&lt;/b&gt; What&amp;#8217;s next for Quicksilver?&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Rob:&lt;/b&gt; When Quicksilver asks a plugin for objects to add to the catalog, there’s an assumption the plugin can create those objects instantly. Sometimes that isn’t the case. We need to be able to ask the plugin for objects, but let it send the results back whenever it wants. Sort-of related, plugins need a way to recreate objects on-the-fly when they’re &lt;i&gt;not&lt;/i&gt; in the catalog. Anything not in the catalog is currently lost after a restart, so they can’t be used with triggers, synonyms, etc.&lt;/p&gt;

&lt;p&gt;Interfaces are too hard to customise, and the way the results are displayed in a separate panel creates a dated appearance in my opinion. But, you know, hard to customise.&lt;/p&gt;

&lt;center&gt;&lt;h2&gt;&lt;i&gt;&amp;#8220;The true power of Quicksilver comes from our plugin developers&amp;#8221;&lt;/i&gt;&lt;/h2&gt;&lt;/center&gt;

&lt;p&gt;&lt;b&gt;Patrick:&lt;/b&gt; We need to make it as easy as possible for developers and users to create plugins and AppleScript extensions for Quicksilver. The true power of Quicksilver comes from our plugin developers, so I&amp;#8217;ll be happy once we have a strong dev community back on our side creating great plugins, and over the coming months I&amp;#8217;m going to be working hard to try and achieve this – we can always make things simpler for new developers!&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Rob:&lt;/b&gt; Proxy objects can&amp;#8217;t be used in the third pane. They should be there. Pretty self-explanatory, I think. The reason they aren’t is because the simple act of including them in the results causes them to be “resolved” (the process that figures out what they refer to at any given moment). For some, this is fairly slow. Doing several at once compounds the problem and introduces delays we find unacceptable.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;LoveQuicksilver:&lt;/b&gt; It&amp;#8217;d be great to use folder synonyms in the third pane as well as the first. Any other practical examples of functionality that improvements to proxy objects could bring?&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Rob:&lt;/b&gt;
&lt;/p&gt;&lt;p&gt;File ⇥ Move To… ⇥ Finder Selection&lt;/p&gt;
&lt;p&gt;Text ⇥ Find With… ⇥ Current Website (Safari)&lt;/p&gt;

&lt;center&gt;&lt;img src="http://media.tumblr.com/a3bbd710ef794b156f102f3ef11f60a1/tumblr_inline_mk3e0vncLx1qz4rgp.png" alt="image"/&gt;&lt;br/&gt;&lt;i&gt;Not yet&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;p&gt;&lt;b&gt;LoveQuicksilver:&lt;/b&gt; Now for a question close to your hearts – why did you start developing QS?&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Rob:&lt;/b&gt; I learned Objective-C because I didn’t want Quicksilver to stop working – it’s as simple as that. I continue to spend time on Quicksilver because I want it to work well for me on my machine.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Patrick:&lt;/b&gt; I started to help save the project, but now it&amp;#8217;s also fun to work with our inspiring community around the globe. A community that really appreciates what we do and shows their support in so many ways – translations for Quicksilver, donations or just kind words of thanks.&lt;/p&gt;

&lt;center&gt;&lt;h2&gt;&lt;i&gt;&amp;#8220;I didn’t want Quicksilver to stop working – it’s as simple as that&lt;/i&gt;&amp;#8221;&lt;/h2&gt;&lt;/center&gt;
&lt;p&gt;&lt;b&gt;LoveQuicksilver:&lt;/b&gt; It&amp;#8217;s great to hear how passionate you are about the project! Something I&amp;#8217;m sure many users are keen to know is: What is the state of Quicksilver Development?&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Rob:&lt;/b&gt; I don’t know what it was like at the height of the &lt;a href="http://www.blacktree.com/" target="_blank"&gt;Blacktree&lt;/a&gt; days, but, as far as I know, it’s better now than ever. Enormous changes and improvements are being made every couple of months. It could always be better. We could use more people, or better yet, the &lt;i&gt;same&lt;/i&gt; people with more time. :-)&lt;/p&gt;

&lt;center&gt;&lt;img src="http://media.tumblr.com/bd7e954e0db468c7ad0ca2514af98392/tumblr_inline_mk3edvsarW1qz4rgp.png" alt="image"/&gt;&lt;br/&gt;&lt;i&gt;&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;p&gt;&lt;b&gt;LoveQuicksilver:&lt;/b&gt; Historically, I believe, Quicksilver was difficult to code for due to its unstructured nature, out-of-date code and lack of documentation. What changes have you made to make it easier for potential contributors to get involved?&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Patrick:&lt;/b&gt; When I joined the project five years ago, it was almost impossible to start developing. One of my own personal ambitions has been to make it really easy for new developers to dive straight into the code. This meant moving over to GitHub (arguably the best version control site around), and much better documentation. Developing for Quicksilver has never been easier.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Rob:&lt;/b&gt; Yeah! There&amp;#8217;s now detailed a &lt;a href="http://projects.skurfer.com/QuicksilverPluginReference.mdown" target="_blank"&gt; reference for creating plugins&lt;/a&gt;, which is great for new developers. The core application is still mostly undocumented, but the code is much cleaner now. If it&amp;#8217;s difficult finding your way around the code, there are always a few of us who know our way around and can &lt;a href="https://groups.google.com/forum/?fromgroups#!forum/quicksilver---development" target="_blank"&gt;answer questions&lt;/a&gt; for new developers. Not many people are asking, though!&lt;/p&gt;

&lt;center&gt;&lt;h2&gt;&lt;i&gt;&amp;#8220;Developing for Quicksilver has never been easier&amp;#8221;&lt;/i&gt;&lt;/h2&gt;&lt;/center&gt;

&lt;p&gt;&lt;b&gt;LoveQuicksilver:&lt;/b&gt; What would you like to see developed in Quicksilver?&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Rob:&lt;/b&gt; The ultimate interface for me would be one based on WebKit. Every part of the interface would be an HTML &lt;code&gt;&amp;lt;div&amp;gt;&lt;/code&gt; or whatever, and any user would be able to customise the appearance using CSS (including animations and 3D transformations). I don’t know how realistic that would be, but I would be much happier tweaking CSS than spending an hour and a half in Xcode just trying to figure out where a box even comes from! And of course this would open up interface customisation to a ton more people.&lt;/p&gt;

&lt;center&gt;&lt;img src="http://media.tumblr.com/a7e55ab3dbfc4746219e7a6bbdd31908/tumblr_inline_mk3fdunyGC1qz4rgp.png" alt="image"/&gt;&lt;br/&gt;&lt;i&gt;Easier to make interfaces&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;p&gt;&lt;b&gt;LoveQuicksilver:&lt;/b&gt; Lots of people in the Quicksilver userbase are asking questions like &amp;#8220;Why isn&amp;#8217;t there a Sparrow/Twitter/Textmate 2/Duke Nukem/[insert app name] plugin?&amp;#8221; What do you have to say to them?&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Rob:&lt;/b&gt; Some people (probably a vocal minority) seem confused about why we aren’t working on a plugin for Sparrow, or &lt;a href="http://qsapp.com/plugins.php?order=moddate&amp;amp;sort=DESC" target="_blank"&gt;Google Chrome&lt;/a&gt; before that, because surely so many user requests have gotten our attention, right? Unfortunately it doesn&amp;#8217;t work like that. I don’t use those apps, so I have no need for those plugins. End of decision tree.&lt;/p&gt;

&lt;p&gt;I’ve said something like this before, but for almost any open source project, you need someone that knows how to do it and someone who wants it done before something will happen – and of course they need to be the same person! It’s pretty common for the people who want it done to appeal to the people that know what to do. I think it’s only fair to make the opposite appeal. If you want something done, don’t &lt;i&gt;tell&lt;/i&gt; me it’s important to you. &lt;i&gt;Show&lt;/i&gt; me. I will spend hours and hours answering your programming questions on the mailing list, or looking over your code, but I’m not going to spend 20 minutes on a feature or plugin if I don’t need it. I’m not losing any sleep if that hurts some feelings. After all, I’m not asking anyone to do anything I didn’t do myself, and the barriers to entry are considerably lower now. :-)&lt;/p&gt;

&lt;center&gt;&lt;h2&gt;&lt;i&gt;&amp;#8220;I will spend hours and hours answering your programming questions&amp;#8221;&lt;/i&gt;&lt;/h2&gt;&lt;/center&gt; 

&lt;p&gt;&lt;b&gt;LoveQuicksilver:&lt;/b&gt; Wow! I expect you&amp;#8217;ll be seeing more plugin developers jumping on board now right?! What have you learned while working on QS?&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Patrick:&lt;/b&gt; Put simply – how to code. It may seem crazy, but I was driven to help keep Quicksilver functioning, and to do so I had to learn how to code.
Another important thing has to be working internationally. The current development team spans 12 timezones (from Japan to the US East Coast) which makes discussion and collaboration difficult, but we make it work with the great tools we have – git, GitHub, IRC and good old mailing lists.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Rob:&lt;/b&gt; A little Cocoa and a lot of Git. Or at least that’s how it feels sometimes. I wouldn’t have guessed how much time goes into the work surrounding the work. That is, you probably spend 10% of the time programming and the other 90% reviewing issues reported by users, discussing changes with other devs, reviewing code from others, branching/merging/rebasing/committing stuff with Git, etc. Then there’s a web site and an update system to think about, documentation, and accounts to maintain. You get the idea.&lt;/p&gt;

&lt;p&gt;I’ve also learned that when someone forks the project on GitHub, it doesn’t mean they’re interested in helping out. And I have no idea what it &lt;i&gt;does&lt;/i&gt; mean. There are 112 forks and only a handful of people actually doing something with them.&lt;/p&gt;


&lt;p&gt;&lt;b&gt;LoveQuicksilver:&lt;/b&gt; It all sounds intriguing! Let&amp;#8217;s cap things off with one more personal question for you: What&amp;#8217;s your favourite thing about Quicksilver?&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Rob:&lt;/b&gt; This will probably seem like such a stupid little thing to be excited about, but it’s what I immediately thought of when you asked the question, so it’s probably true. It has to be the way searching works; the fact that I can find “peanut butter” by typing “pb”, or “nbtr”, or whatever makes sense at the time. It doesn’t force me to start at the beginning of the term, nor does it force me to enter all letters in sequence, like “peanu”. That’s a huge part of the general theme in Quicksilver of not having to think. You just call it up and start smacking keys, and the right thing happens. Someone should write a Chinese proverb about that.&lt;/p&gt;

&lt;center&gt;&lt;img src="http://media.tumblr.com/1a74a232785c00613867b9fe07a18a94/tumblr_inline_mk4u4y6vmL1qz4rgp.png" alt="image"/&gt;&lt;i&gt;&lt;/i&gt;&lt;/center&gt;

&lt;p&gt;Maybe that general “wei wu wei” theme should be my answer, but I think there are two reasons the search behavior specifically stands out.&lt;/p&gt;
&lt;ol&gt;&lt;li&gt;It was one of the first things that got me interested in using Quicksilver (if not &lt;i&gt;the&lt;/i&gt; first thing).&lt;/li&gt;
&lt;li&gt;After all these years of the idea being “out there” for anyone to copy, I can still count on one hand the applications that employ this type of searching.&lt;/li&gt;
&lt;/ol&gt;&lt;p&gt;As a result, Quicksilver remains special.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Patrick:&lt;/b&gt; The simple things are always the best, right? So for me it has to be the speed and huge scope of what Quicksilver can find. There&amp;#8217;s nothing else out there that will find your Dad&amp;#8217;s phone number, Bob Marley&amp;#8217;s &amp;#8220;Three Little Birds&amp;#8221;, my Safari bookmarks&amp;#8230; all these different things as quickly as Quicksilver. It&amp;#8217;s partly to do with what Quicksilver concentrates on, and, as Rob says, Quicksilver&amp;#8217;s awesome searching algorithm. This doesn&amp;#8217;t mean I&amp;#8217;m happy with the speed though – I&amp;#8217;m still looking for ways to make it faster!&lt;/p&gt;


&lt;p&gt;&lt;b&gt;LoveQuicksilver:&lt;/b&gt; Great, thanks for your time Patrick and Rob!&lt;/p&gt;
&lt;br/&gt;&lt;hr&gt;&lt;p&gt;And finally, I got in touch with Quicksilver&amp;#8217;s creator Nicholas Jitkoff (né Alcor) to see what he had to say about this historic v1.0 release of Quicksilver:&lt;/p&gt;
&lt;blockquote&gt;&lt;div&gt;&amp;#8220;I&amp;#8217;m amazed at what the Quicksilver team has accomplished since they took over the project a few years ago. They&amp;#8217;ve created something truly worthy of a 1.0, taking Quicksilver from a flight of fancy to a fast, reliable productivity app. It has been a pleasure to use thanks to their frequent updates, countless refinements, and tireless effort.&amp;#8221;&lt;/div&gt;&lt;/blockquote&gt;

&lt;center&gt;&lt;h2&gt;&lt;i&gt;&amp;#8220;They’ve created something truly worthy of a 1.0&amp;#8221;&lt;/i&gt;&lt;/h2&gt;&lt;/center&gt;

&lt;p&gt;For those of you who remember, LifeHacker &lt;a href="http://lifehacker.com/330548/quicksilvers-creator-on-the-future-of-qs?tag=softwareexclusivelifehackerinterview" target="_blank"&gt;interviewed Nicholas&lt;/a&gt; all of 5 years ago on the state of Quicksilver. It&amp;#8217;s amazing to see the turnaround in Quicksilver&amp;#8217;s stability and development state since then.&lt;/p&gt;

&lt;center&gt;&lt;img src="http://media.tumblr.com/2d66311e7fbcfcef6baa39cc0d5854a1/tumblr_inline_mk3f8ueOlj1qz4rgp.png" alt="image"/&gt;&lt;br/&gt;&lt;i&gt;&lt;/i&gt;&lt;/center&gt;

&lt;p&gt;There&amp;#8217;s nothing more to say except that I hope you&amp;#8217;re as happy with Quicksilver v1.0 as the development team and I are. Don&amp;#8217;t forget to spread the word and share the love!&lt;/p&gt;
&lt;br/&gt;
@LoveQuicksilver
&lt;br/&gt;&lt;br/&gt;</description><link>http://blog.qsapp.com/post/46268470658</link><guid>http://blog.qsapp.com/post/46268470658</guid><pubDate>Tue, 26 Mar 2013 04:07:00 +0900</pubDate></item><item><title>Quicksilver Comes of Age</title><description>&lt;h3&gt;Bye Bye ßeta&lt;/h3&gt;

&lt;center&gt;&lt;br/&gt;&lt;img src="http://media.tumblr.com/0cc56adbfecb551b8485a60b33a2cb16/tumblr_inline_mip67cx78V1qz4rgp.png" alt="image"/&gt;&lt;i&gt;&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;p&gt;&lt;b&gt;Quicksilver 1.0&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;After almost 10 years of testing, Quicksilver lays the beta tag to rest. (If the lack of an eszett brings a tear to your eye, you can always reminisce by hitting ⌥S on your keyboard). What does this release mean? It means more than just a change in the version numbering system - it signifies a maturity of Quicksilver and a sign of what&amp;#8217;s to come.&lt;/p&gt;

&lt;p&gt;For more info on this historic release day, you can read an &lt;a href="http://blog.qsapp.com/post/46268470658/quicksilver-an-interview-with-the-developers" target="_blank"&gt;interview with the lead developers&lt;/a&gt; where they discuss their thoughts on Quicksilver, but now it&amp;#8217;s time to dive right in and see what Quicksilver&amp;#8217;s getting on its release birthday.&lt;/p&gt;
&lt;br/&gt;&lt;b&gt;Add files and folders to the catalog using the Add To Catalog action&lt;/b&gt;&lt;br/&gt;A core feature of QS is direct access to only the things you care about. Now it&amp;#8217;s easier then ever to add your latest fancy to the top-level catalog.

&lt;center&gt;&lt;br/&gt;&lt;img src="http://media.tumblr.com/5e6dc58719c3c971cf9f310d3d2d05a5/tumblr_inline_miw95hQEbS1qz4rgp.png" alt="image"/&gt;&lt;br/&gt;&lt;i&gt;Visit the new entry&amp;#8217;s catalog info panel to include its contents&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;p&gt;&lt;/p&gt;&lt;b&gt;Assign an alternate name to something by creating a synonym&lt;/b&gt;&lt;br/&gt;Abbreviations are limited to letters contained within the target object&amp;#8217;s name. Synonyms make it possible to use any name you like! Die-hard Address Book devotees rejoice.

&lt;center&gt;&lt;br/&gt;&lt;iframe width="560" height="380" src="http://www.youtube.com/embed/o791BTR6cUo" frameborder="0"&gt;&lt;/iframe&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;/center&gt;

&lt;b&gt;Fixed the Add Trigger action, and the trigger type can be specified in the third pane&lt;/b&gt;&lt;br/&gt;Get a new trigger straight into preferences. Make a command, press ⌃⏎ and search for &amp;#8216;Add Trigger…&amp;#8217;.

&lt;center&gt;&lt;br/&gt;&lt;img src="http://media.tumblr.com/d2b130455750a25c04d9a31a360963dc/tumblr_inline_miwcv5k28z1qz4rgp.png" alt="image"/&gt;&lt;i&gt;&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;p&gt;&lt;/p&gt;&lt;b&gt;Assign the same trigger to different actions in different applications&lt;/b&gt;&lt;br/&gt;Add apps in the &amp;#8216;Scope&amp;#8217; field of the triggers&amp;#8217; information panels to use the same shortcut multiple times.
&lt;br/&gt;&lt;br/&gt;

&lt;p&gt;&lt;/p&gt;&lt;b&gt;AppleScript Action enhancements&lt;/b&gt;&lt;br/&gt;Custom actions now have the ability to handle files in both the first and third panes. Also, the type of objects that the action will appear for, and will subsequently display in pane 3 can be specified – making it a lot easier to mimic plugin functionality without lower-level coding skills.

&lt;center&gt;&lt;br/&gt;&lt;img src="http://media.tumblr.com/840efacb035c2d62c9ce948a0b86da75/tumblr_inline_miwdf5R4m11qz4rgp.png" alt="image"/&gt;&lt;br/&gt;&lt;i&gt;An explanation of object types can be found &lt;a href="http://qsapp.com/wiki/AppleScript_Types" target="_blank"&gt;here&lt;/a&gt;&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;p&gt;The AppleScript action at the end of this post uses Sparrow to send an attachment to a specified email address. It will only appear for text objects in pane 1, and provides only files in pane 3.&lt;/p&gt;

&lt;center&gt;&lt;img src="http://media.tumblr.com/374aa4f0d743ba790bdbbe08d0a4cdeb/tumblr_inline_miwig0hLW51qz4rgp.png" alt="image"/&gt;&lt;br/&gt;&lt;i&gt;Store email addresses on the Shelf for easy access&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;b&gt;Recent Commands and the Last Command proxy are working&lt;/b&gt;&lt;br/&gt;One excellent use for the Last Command proxy is doing repetitive tasks within an app that are normally done from the menubar. Assign &amp;#8216;Last Command&amp;gt;Run&amp;#8217; to a trigger. Use the User Interface plugin to press a menu item. The Last Command is now that menu item. Your shortcut will work for as long as you can resist using QS for something else. But even then, you can just → in &amp;#8216;Recent Commands (Catalog)&amp;#8217; to perform the task again.

&lt;center&gt;&lt;br/&gt;&lt;iframe width="560" height="380" src="http://www.youtube.com/embed/6sFzMZwyvwI" frameborder="0"&gt;&lt;/iframe&gt;
&lt;br/&gt;&lt;i&gt;Also shows how to add a trigger from the bezel&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;p&gt;&lt;/p&gt;&lt;b&gt;Release Notes have some style&lt;/b&gt;&lt;br/&gt;Which is a good thing, as I can&amp;#8217;t possibly reveal all the other goodies here. Have a look at &lt;a href="http://qsapp.com/changelog.php" target="_blank"&gt;QSApp.com&lt;/a&gt;.

&lt;br/&gt;&lt;br/&gt;&lt;b&gt;Bug Fixes&lt;/b&gt;&lt;br/&gt;And finally, there are over 40 different bugs and stability improvements in this release, more than in any other release. Quicksilver has well and truly left its old days behind!
&lt;br/&gt;&lt;br/&gt;&lt;hr&gt;&lt;p&gt;So there&amp;#8217;s a rundown of the latest and greatest things you can find in this version of Quicksilver, to finish off, here&amp;#8217;s a quick word from lead developer Patrick:&lt;/p&gt;

&lt;blockquote&gt;&lt;p&gt;Quicksilver 1.0 doesn&amp;#8217;t just mean stability, it means the whole package: localisations for all our users; easy to use APIs for plugin and AppleScript extension developers; and a reliable, responsive support system.&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;It&amp;#8217;s easier than ever for newcomers to contribute localizations, create plugins, add to the code base, or simply ask for help. Why not join the party or &lt;a href="http://QSApp.com/donate.php" target="_blank"&gt;donate&lt;/a&gt; to the cause?&lt;/p&gt;

&lt;br/&gt;&lt;p&gt;What next? Find out more in the &lt;a href="http://blog.qsapp.com/post/46268470658/quicksilver-an-interview-with-the-developers" target="_blank"&gt;interview with the developers&lt;/a&gt;. In the meantime, let us know your thoughts on this release, spread the word and above all - enjoy using Quicksilver!&lt;/p&gt;

&lt;br/&gt;
@LoveQuicksilver
&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;hr&gt;&lt;br/&gt;&lt;br/&gt;&lt;em&gt;Example AppleScript using the new AppleScript features:&lt;/em&gt;
&lt;pre&gt;&lt;code&gt;using terms from application "Quicksilver"
	on get direct types
		return {"NSStringPboardType"}
	end get direct types
	
	on get indirect types
		return {"NSFilenamesPboardType"}
	end get indirect types
	
	on process text _emailAddress with _attachment
		try
			-- Put your email address between the following quotes:
			set _myAddress to "johndoe@emailprovider.com"
			tell me to set _body to (current date) as text
			
			set _attachmentText to _attachment as text
			set _path to POSIX path of _attachmentText
			
			tell application "Sparrow"
				set _outgoingMessage to make new outgoing message with properties ¬
				{subject:_attachmentText, content:_body, sender:_myAddress}
				
				tell _outgoingMessage to make new to recipient with properties ¬
				{address:_emailAddress}
				tell _outgoingMessage to make new mail attachment with properties ¬
				{filename:_path}
				
				sendmessage _outgoingMessage with to recipient and mail attachment
			end tell
			
		on error a number b
			activate
			display dialog a with title "Sparrow Attachment"
		end try
	end process text
	
	on get argument count
		return 2
	end get argument count
end using terms from&lt;/code&gt;&lt;/pre&gt;</description><link>http://blog.qsapp.com/post/46268365849</link><guid>http://blog.qsapp.com/post/46268365849</guid><pubDate>Tue, 26 Mar 2013 04:06:00 +0900</pubDate></item><item><title>EverTips: Evernote + Quicksilver = Quick shortcuts to common notes</title><description>&lt;a href="http://evertips.tumblr.com/post/45838198151/evernote-quicksilver-quick-shortcuts-to-common"&gt;EverTips: Evernote + Quicksilver = Quick shortcuts to common notes&lt;/a&gt;: &lt;p&gt;&lt;a href="http://evertips.tumblr.com/post/45838198151/evernote-quicksilver-quick-shortcuts-to-common" class="tumblr_blog" target="_blank"&gt;evertips&lt;/a&gt;:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;img src="http://media.tumblr.com/4c8a12274973e8cb14ca83198913cbcc/tumblr_inline_mjyrz0kCoW1qz4rgp.jpg" alt="Evernote + Quicksilver"/&gt;&lt;/p&gt; &lt;p&gt;Do you have notes that you are use every single day? Sure, you can add them to the sidebar of the Mac &lt;a href="http://www.evernote.com" target="_blank"&gt;Evernote&lt;/a&gt; client but there some notes should be in closer reach. Many times a day I make calls to coworkers throughout our office. I never seem to be able to remember people’s extensions so…&lt;/p&gt;&lt;/blockquote&gt;</description><link>http://blog.qsapp.com/post/45905093856</link><guid>http://blog.qsapp.com/post/45905093856</guid><pubDate>Thu, 21 Mar 2013 19:12:13 +0900</pubDate></item><item><title>Alternate Actions</title><description>&lt;p&gt;Over the years, Quicksilver&amp;#8217;s arsenal of available actions has grown as more and more plugins have been created. At last count, Quicksilver has over 400 different actions from various sources for you to play with. That&amp;#8217;s a lot!&lt;/p&gt;

&lt;p&gt;So what if you don&amp;#8217;t want to have all of these actions enabled? They may make searching for your most useful actions more laborious or difficult, or just clutter up your really neat and tidy results list:&lt;/p&gt;

&lt;img style="text-align:center" align="center" src="http://media.tumblr.com/tumblr_mf10uvcY171qfln44.png"/&gt;&lt;h4&gt;Enter &amp;#8216;Alternate Actions&amp;#8217;&lt;/h4&gt;

&lt;p&gt;Alternate actions have been around for a while, but have been one of the many features that&amp;#8217;s been hidden from prying eyes.
&lt;/p&gt;&lt;p&gt;With the release of ß71, we&amp;#8217;ve made this feature much more accessible and intuitive.&lt;/p&gt;

&lt;p&gt;Alternate actions are a set of paired actions; a primary and an alternate action.
We all know that with an action selected in Quicksilver&amp;#8217;s 2nd pane, you can run this (the primary action) by hitting the enter key (↩).&lt;/p&gt;

&lt;img style="text-align:center" align="center" src="http://media.tumblr.com/tumblr_mf10vyK7KG1qfln44.png"/&gt;&lt;p&gt;Now if a primary action has an alternate action, you can run this alternate action by hitting command enter (⌘↩). With ß71, you&amp;#8217;ll see if an action has a paired action by holding the command key (⌘). For example, the alternate action for &amp;#8216;Open&amp;#8217; is &amp;#8216;Reveal&amp;#8217;. Hold ⌘ with the &amp;#8216;Open&amp;#8217; action in the 2nd pane to see it, then ⌘↩ to use it!&lt;/p&gt;

&lt;img style="text-align:center" align="center" src="http://media.tumblr.com/tumblr_mf10wj40Vm1qfln44.png"/&gt;&lt;h4&gt;What does this mean?&lt;/h4&gt;

&lt;p&gt;So now you know about alternate actions, where can you use them, and what are the benefits?
With alternate actions, it means many &lt;em&gt;more&lt;/em&gt; actions are available at the tips of your fingers. If &amp;#8216;Open&amp;#8217; is the default action for files, you can now run the &amp;#8216;Reveal&amp;#8217; action directly - without having to search for it.
&amp;#8216;Move To…&amp;#8217; and &amp;#8216;Copy To…&amp;#8217; actions are alternates, so if you&amp;#8217;re set up to move a file from A to B, but decide you only want to copy it, just press ⌘↩.&lt;/p&gt;

&lt;p&gt;The great thing about alternate actions is that they work &lt;em&gt;regardless&lt;/em&gt; of whether or not the alternate action is enabled in the Actions Preferences. You can disable all your alternates (Reveal, Copy To… etc.) and access them through the primary action with ⌘↩.&lt;/p&gt;

&lt;h4&gt;Tell me more about these alternate actions!&lt;/h4&gt;

&lt;p&gt;You can see which actions have alternates in the &lt;a href="http://qs.qsapp.com/actions" target="_blank"&gt;Actions Preferences&lt;/a&gt; in Quicksilver. We&amp;#8217;ll be looking to add more as time goes on, but if you have any suggestions, then just let us know via &lt;a href="http://twitter.com/lovequicksilver" target="_blank"&gt;@LoveQuicksilver&lt;/a&gt; or on the &lt;a href="https://github.com/quicksilver/Quicksilver/issues/1333" target="_blank"&gt;dedicated GitHub Issue&lt;/a&gt;&lt;/p&gt;

&lt;img style="text-align:center" align="center" src="http://media.tumblr.com/tumblr_mf10xjpMlY1qfln44.png"/&gt;&lt;p&gt;Happy Quicksilvering!&lt;/p&gt;</description><link>http://blog.qsapp.com/post/40848025937</link><guid>http://blog.qsapp.com/post/40848025937</guid><pubDate>Sat, 19 Jan 2013 01:34:00 +0900</pubDate></item><item><title>Quicksilver Delivers</title><description>&lt;h3&gt;A new look, iCloud documents, new alternate actions, and much, much (much) more*&lt;/h3&gt;
&lt;br/&gt;&lt;center&gt;&lt;img src="http://media.tumblr.com/tumblr_mdlwowj0Mq1qfln44.png"/&gt;&lt;br/&gt;&lt;i&gt;&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;p&gt;Quicksilver ß71 lands with a thud like a Sunday newspaper&amp;#8217;s anniversary edition. Where to begin? As well as the headliners, new features include Mountain Lion notifications, more translations, the Large Type action for text files, multiple objects for triggers, and all apps being available for the &amp;#8216;Open With…&amp;#8217; action.&lt;/p&gt;

&lt;p&gt;Read the full changelog &lt;a href="http://qsapp.com/changelog.php" target="_blank"&gt;here&lt;/a&gt;. Now, let&amp;#8217;s peruse the big features.&lt;/p&gt;
&lt;br/&gt;&lt;li&gt;&lt;b&gt;New bezel and icons&lt;/b&gt;&lt;br/&gt;&lt;/li&gt;First, the cover. Big thanks go out to &lt;a href="http://strandeddesign.com/index.html" target="_blank"&gt;Dan Deming-Henes&lt;/a&gt; for his work on the Quicksilver and action icons, among others. We&amp;#8217;ve had a lot of favourable feedback about the new look. However, it has attracted some &lt;a href="http://blog.qsapp.com/post/35882340206/quicksilvers-new-look" target="_blank"&gt;criticism&lt;/a&gt;. So, in an effort to avoid an inter-appearance schism, the old bezel has been granted clemency. Simply go to Plugins, in Preferences, and install the Bezel Classic Interface. &lt;br/&gt;&lt;br/&gt;&lt;center&gt;&lt;img src="http://media.tumblr.com/047ba174b00b81718f55a75f866e177d/tumblr_inline_mgpwe7zyMh1qfln44.png"/&gt;&lt;br/&gt;&lt;i&gt;Classic&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;p&gt;&lt;/p&gt;&lt;li&gt;&lt;b&gt;iCloud documents&lt;/b&gt;&lt;br/&gt;&lt;/li&gt;Your iCloud documents might exist only at the end of the rainbow, for all the information the system provides about their location. They do also reside on your computer, but the files are awkward to access manually. A typical iCloud file path:

&lt;p&gt;&lt;code&gt;~/Library/Mobile Documents/com~apple~Numbers/Documents/Blank.numbers-tef&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Quicksilver does away with this problem by providing a catalog entry for &lt;i&gt;all&lt;/i&gt; iCloud documents. Start typing a name in the first pane, select an iCloud doc from the list, and pretty soon it&amp;#8217;ll be the top hit for your preferred abbreviation. Also, → into an app to show &lt;i&gt;all&lt;/i&gt; its iCloud docs, not just the recents. Or even → into the catalog entry to see every single iCloud document, ready to be opened in any application you wish!&lt;/p&gt;

&lt;p&gt;Your iCloud documents, back under your control.&lt;/p&gt;

&lt;center&gt;&lt;img src="http://media.tumblr.com/tumblr_mdszx8KFjh1qfln44.png"/&gt;&lt;br/&gt;&lt;i&gt;Makes a good trigger…&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;br/&gt;&lt;center&gt;&lt;img src="http://media.tumblr.com/tumblr_mdnwduhsIv1qfln44.png"/&gt;&lt;br/&gt;&lt;i&gt;…for this&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;li&gt;&lt;b&gt;New and discoverable alternate actions&lt;/b&gt;&lt;br/&gt;&lt;/li&gt;There has always been the option to hold ⌘ to use an alternative action in the second pane. Now, the action will appear while ⌘ is pressed. &lt;a href="http://qsapp.com/wiki/Alternate_Actions" target="_blank"&gt;New alternate actions&lt;/a&gt; have been added, and Preferences&amp;gt;Actions now shows which actions have alternates. Here&amp;#8217;s the full core list: (Plugins are able to add additional alternates.)
&lt;br/&gt;&lt;br/&gt;&lt;center&gt;&lt;img src="http://media.tumblr.com/tumblr_mdnwumWdEl1qfln44.png"/&gt;&lt;br/&gt;&lt;i&gt;&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;p&gt;&lt;/p&gt;&lt;li&gt;&lt;b&gt;Large Type action works on text files&lt;/b&gt;&lt;br/&gt;&lt;/li&gt;Handy for quickly viewing lists.
&lt;br/&gt;&lt;br/&gt;&lt;center&gt;&lt;iframe width="560" height="380" src="http://www.youtube.com/embed/tWdhNwVY7iw" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;&lt;br/&gt;&lt;i&gt;&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;li&gt;&lt;b&gt;More translations (localizations)&lt;/b&gt;&lt;br/&gt;&lt;/li&gt;Volunteer translators &lt;a href="https://www.transifex.com/projects/p/quicksilver/" target="_blank"&gt;welcome&lt;/a&gt;!
&lt;br/&gt;&lt;br/&gt;&lt;center&gt;&lt;img src="http://media.tumblr.com/tumblr_mdnyk00Rwt1qfln44.png"/&gt;&lt;br/&gt;&lt;i&gt;&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;p&gt;&lt;/p&gt;&lt;li&gt;&lt;b&gt;Text entry mode allows undo and substitutions&lt;/b&gt;&lt;br/&gt;&lt;/li&gt;And this works even when tabbing out of text mode.
&lt;br/&gt;&lt;br/&gt;&lt;center&gt;&lt;iframe width="560" height="380" src="http://www.youtube.com/embed/VDsLIp6-jDY" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;&lt;br/&gt;&lt;i&gt;&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;li&gt;&lt;b&gt;Mountain Lion notifications&lt;/b&gt;&lt;br/&gt;&lt;/li&gt;With all the trimmings.
&lt;br/&gt;&lt;br/&gt;&lt;center&gt;&lt;img src="http://media.tumblr.com/tumblr_mdnxj19GWs1qfln44.png"/&gt;&lt;br/&gt;&lt;i&gt;&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;p&gt;&lt;/p&gt;&lt;li&gt;&lt;b&gt;Triggers can be created for multiple files/folders/applications&lt;/b&gt;&lt;br/&gt;&lt;/li&gt;Got a workflow that includes several apps and documents? Open them all in a stroke.
&lt;br/&gt;&lt;br/&gt;&lt;center&gt;&lt;iframe width="560" height="380" src="http://www.youtube.com/embed/7Evy5LtDzF0" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;&lt;br/&gt;&lt;i&gt;&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;li&gt;&lt;b&gt;The &amp;#8216;Open With…&amp;#8217; action lists all applications&lt;/b&gt;&lt;br/&gt;&lt;/li&gt;Of particular annoyance to me was QS&amp;#8217;s failure to show certain apps in pane 3 when using this action. No more. The only downside is a lot of unnecessary apps now appear in the list. Perfect, though, if you know what you&amp;#8217;re looking for.
&lt;br/&gt;&lt;br/&gt;&lt;center&gt;&lt;img src="http://media.tumblr.com/tumblr_mdo0kiar2t1qfln44.png"/&gt;&lt;br/&gt;&lt;i&gt;&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;p&gt;&lt;/p&gt;&lt;li&gt;&lt;b&gt;The interface remains visible when the Shelf or Clipboard are activated&lt;/b&gt;&lt;br/&gt;&lt;/li&gt;This is great, as it&amp;#8217;s now possible to use snippets in Quicksilver as well.
&lt;br/&gt;&lt;br/&gt;&lt;center&gt;&lt;iframe width="560" height="380" src="http://www.youtube.com/embed/QaBBmIEQ60I" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;&lt;br/&gt;&lt;i&gt;&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;li&gt;&lt;b&gt;Users can control which file types get preview icons&lt;/b&gt;&lt;br/&gt;&lt;/li&gt;Tired of that folder full of movies dragging QS down? For the tinkerer in you, a way for Quicksilver to preview only the file types of your choice. Details &lt;a href="http://qsapp.com/wiki/Hidden_Defaults" target="_blank"&gt;here&lt;/a&gt;.

&lt;p&gt;&lt;/p&gt;&lt;li&gt;&lt;b&gt;Miscellany&lt;/b&gt;&lt;br/&gt;&lt;/li&gt;Links in browsed URLs are ordered correctly, all core actions have descriptions, count badges are fixed, the interface will appear above full-screen applications, updates no longer require an admin password, pane 1 can be cleared with ⌃U – and &lt;a href="http://qsapp.com/changelog.php" target="_blank"&gt;many more&lt;/a&gt;.
&lt;br/&gt;&lt;br/&gt;&lt;center&gt;&lt;img src="http://media.tumblr.com/tumblr_mdt05rLFnH1qfln44.png"/&gt;&lt;br/&gt;&lt;i&gt;New mail icon and mailto: action&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;center&gt;&lt;img src="http://media.tumblr.com/tumblr_mdt06luWZq1qfln44.png"/&gt;&lt;br/&gt;&lt;i&gt;New URL icon&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;p&gt;The interest shown in Quicksilver&amp;#8217;s appearance has been great (metaphor switch warning), but that&amp;#8217;s one cog in the large number of real improvements made to Quicksilver&amp;#8217;s works. So (warning end), for the sake of balance, which new features do you think are newsworthy?&lt;/p&gt;

&lt;br/&gt;
@LoveQuicksilver
&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;
* 80 changes in total!</description><link>http://blog.qsapp.com/post/35966004492</link><guid>http://blog.qsapp.com/post/35966004492</guid><pubDate>Sun, 18 Nov 2012 14:09:00 +0900</pubDate></item><item><title>Quicksilver's New Look</title><description>&lt;h3&gt;Looks great, looks wrong, looks like a storm in a teacup?&lt;/h3&gt;
&lt;br/&gt;&lt;center&gt;&lt;img src="http://media.tumblr.com/tumblr_mdlwowj0Mq1qfln44.png"/&gt;&lt;br/&gt;&lt;i&gt;&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;p&gt;The new bezel and action icon in the pre-release version of ß71 have attracted some &lt;a href="https://github.com/quicksilver/Quicksilver/issues/1217" target="_blank"&gt;criticism&lt;/a&gt;:&lt;/p&gt;

&lt;center&gt;&lt;img src="http://media.tumblr.com/tumblr_mdlzgdTmam1qfln44.png"/&gt;&lt;br/&gt;&lt;i&gt;&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;p&gt;Here&amp;#8217;s a comparison of old and new:&lt;/p&gt;

&lt;center&gt;&lt;img src="http://media.tumblr.com/tumblr_mdlzjmYES41qfln44.png"/&gt;&lt;br/&gt;&lt;i&gt;&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;center&gt;&lt;img src="http://media.tumblr.com/tumblr_mdlzk53QEH1qfln44.png"/&gt;&lt;br/&gt;&lt;i&gt;&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;p&gt;In my opinion, the old bezel looked like a cathode ray tube, while the new version is sharper and more compact. As for the shiny new action icon, &lt;a href="https://github.com/quicksilver/Quicksilver/issues/1217#issuecomment-10416969" target="_blank"&gt;I agree&lt;/a&gt; that it&amp;#8217;s better than the plasticky original. How about a &lt;a href="http://twitpic.com/bdgu4z" target="_blank"&gt;compromise&lt;/a&gt;? Alternatively:&lt;/p&gt;

&lt;center&gt;&lt;img src="http://media.tumblr.com/tumblr_mdm10nJVj11qfln44.png"/&gt;&lt;br/&gt;&lt;i&gt;&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;p&gt;Either or both design elements could be changed, rescinded or added as options by the final release.&lt;/p&gt;

&lt;p&gt;So what do you think?&lt;/p&gt;

&lt;br/&gt;
@LoveQuicksilver
&lt;br/&gt;&lt;br/&gt;</description><link>http://blog.qsapp.com/post/35882340206</link><guid>http://blog.qsapp.com/post/35882340206</guid><pubDate>Sat, 17 Nov 2012 11:38:00 +0900</pubDate></item><item><title>Quicksilver Understands</title><description>&lt;h3&gt;And it&amp;#8217;s talking your language&lt;/h3&gt;
&lt;br/&gt;&lt;center&gt;&lt;img src="http://media.tumblr.com/tumblr_maisb4PjWO1qfln44.png"/&gt;&lt;br/&gt;&lt;i&gt;&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;p&gt;There&amp;#8217;s a lot of communication improvements in ß70. Quicksilver is ready to be adressed in your preferred language. It&amp;#8217;s more likely to find what you want, as it allows searching across an object&amp;#8217;s display name or localised name. List results and certain file paths are presented in a more logical way. Search is now case insensitive, so typing &amp;#8216;r&amp;#8217; or &amp;#8216;⇧r&amp;#8217; returns the same results. Consequently, internal ⌘⇧letter shortcuts are more likely to execute the desired command. All this, plus a number of plugin system fixes, and speed and stability enhancements.&lt;/p&gt;

&lt;p&gt;Here&amp;#8217;s the full transcript:&lt;/p&gt;
&lt;br/&gt;&lt;h3&gt;New&lt;/h3&gt;


&lt;p&gt;&lt;/p&gt;&lt;li&gt;&lt;b&gt;Option to switch the keyboard layout when Quicksilver is active &lt;a href="https://github.com/quicksilver/Quicksilver/issues/987" target="_blank"&gt;#987&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;Select the preferred input in Preferences.
&lt;br/&gt;&lt;br/&gt;&lt;center&gt;&lt;img src="http://media.tumblr.com/tumblr_m9aozoHyOM1qfln44.png"/&gt;&lt;br/&gt;&lt;i&gt;The options reflect the input sources selected in Language &amp;amp; Text in System Preferences&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;

&lt;p&gt;&lt;/p&gt;&lt;li&gt;&lt;b&gt;Allow searching on both filsystem and localized names for files and folders &lt;a href="https://github.com/quicksilver/Quicksilver/issues/730" target="_blank"&gt;#730&lt;/a&gt; &lt;a href="https://github.com/quicksilver/Quicksilver/issues/952" target="_blank"&gt;#952&lt;/a&gt; &lt;a href="https://github.com/quicksilver/Quicksilver/issues/1017" target="_blank"&gt;#1017&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;Search for the filesystem name or the display name.
&lt;br/&gt;&lt;br/&gt;&lt;center&gt;&lt;img src="http://media.tumblr.com/tumblr_m9aiktWuJy1qfln44.png"/&gt;&lt;br/&gt;&lt;i&gt;Both &amp;#8216;Security &amp;amp; Privacy&amp;#8217; and &amp;#8216;Security.prefPane&amp;#8217; can be searched for&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;

&lt;p&gt;&lt;/p&gt;&lt;li&gt;&lt;b&gt;Show the location for iCloud documents as &amp;#8220;iCloud&amp;#8221; instead of the actual path &lt;a href="https://github.com/quicksilver/Quicksilver/issues/1018" target="_blank"&gt;#1018&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;QS won&amp;#8217;t show paths like this:&lt;br/&gt;&lt;code&gt;/Users/home/Library/Mobile Documents/com~apple~TextEdit/Documents/list.txt&lt;/code&gt;


&lt;p&gt;&lt;/p&gt;&lt;li&gt;&lt;b&gt;Required bundles are taken into consideration when loading plugins &lt;a href="https://github.com/quicksilver/Quicksilver/issues/1002" target="_blank"&gt;#1002&lt;/a&gt; &lt;a href="https://github.com/quicksilver/Quicksilver/issues/1079" target="_blank"&gt;#1079&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;


&lt;p&gt;&lt;/p&gt;&lt;li&gt;&lt;b&gt;After going through the Setup Assistant, new users no longer need to manually refresh to download the list of plugins &lt;a href="https://github.com/quicksilver/Quicksilver/issues/1052" target="_blank"&gt;#1052&lt;/a&gt; &lt;a href="https://github.com/quicksilver/Quicksilver/issues/1079" target="_blank"&gt;#1079&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;


&lt;p&gt;&lt;/p&gt;&lt;li&gt;&lt;b&gt;The latest version of a plugin for the current operating system will be downloaded instead of the latest overall version &lt;a href="https://github.com/quicksilver/Quicksilver/issues/1063" target="_blank"&gt;#1063&lt;/a&gt; &lt;a href="https://github.com/quicksilver/Quicksilver/issues/1079" target="_blank"&gt;#1079&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;


&lt;p&gt;&lt;/p&gt;&lt;li&gt;&lt;b&gt;Plugins that satisfy dependencies will be downloaded immediately, instead of on the next relaunch &lt;a href="https://github.com/quicksilver/Quicksilver/issues/1079" target="_blank"&gt;#1079&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;


&lt;p&gt;&lt;/p&gt;&lt;li&gt;&lt;b&gt;When obsolete plugins are replaced, only one relaunch is required to fully get rid of it &lt;a href="https://github.com/quicksilver/Quicksilver/issues/1079" target="_blank"&gt;#1079&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;

&lt;p&gt;&lt;/p&gt;
&lt;br/&gt;&lt;h3&gt;Fixed&lt;/h3&gt;


&lt;p&gt;&lt;/p&gt;&lt;li&gt;&lt;b&gt;Jump to the third pane when ⇧[Letter] shortcuts trigger an action that requires it &lt;a href="https://github.com/quicksilver/Quicksilver/issues/982" target="_blank"&gt;#982&lt;/a&gt; &lt;a href="https://github.com/quicksilver/Quicksilver/issues/966" target="_blank"&gt;#966&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;Internal Quicksilver shortcuts just got a lot more useful. Previously, Running the &amp;#8216;Move To…&amp;#8217; command from pane 1 using (for example) ⌘⇧M would immediately use the default folder in pane 3 – the file&amp;#8217;s original parent folder.
&lt;br/&gt;&lt;br/&gt;&lt;center&gt;&lt;img src="http://media.tumblr.com/tumblr_m9ah5wykiW1qfln44.png"/&gt;&lt;br/&gt;&lt;i&gt;Jump to the third pane in one step instead of three, without running the command&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;

&lt;p&gt;&lt;/p&gt;&lt;li&gt;&lt;b&gt;Prevent the same object from being added more than once via the comma trick &lt;a href="https://github.com/quicksilver/Quicksilver/issues/1029" target="_blank"&gt;#1029&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;You won&amp;#8217;t be able to do this any more:
&lt;br/&gt;&lt;br/&gt;&lt;center&gt;&lt;img src="http://media.tumblr.com/tumblr_m9agi1II4f1qfln44.png"/&gt;&lt;br/&gt;&lt;i&gt;Actually, nothing bad happens in this case&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;

&lt;p&gt;&lt;/p&gt;&lt;li&gt;&lt;b&gt;The &amp;#8220;Start at login&amp;#8221; preference and &amp;#8220;Open at Login&amp;#8221;/&amp;#8221;Do Not Open at Login&amp;#8221; actions work under 10.8&amp;#160;&lt;a href="https://github.com/quicksilver/Quicksilver/issues/831" target="_blank"&gt;#831&lt;/a&gt; &lt;a href="https://github.com/quicksilver/Quicksilver/issues/1055" target="_blank"&gt;#1055&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;


&lt;p&gt;&lt;/p&gt;&lt;li&gt;&lt;b&gt;Preserve existing web sources when no network connection is available &lt;a href="https://github.com/quicksilver/Quicksilver/issues/960" target="_blank"&gt;#960&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;


&lt;p&gt;&lt;/p&gt;&lt;li&gt;&lt;b&gt;Crash prevention &lt;a href="https://github.com/quicksilver/Quicksilver/issues/986" target="_blank"&gt;#986&lt;/a&gt; &lt;a href="https://github.com/quicksilver/Quicksilver/issues/1015" target="_blank"&gt;#1015&lt;/a&gt; &lt;a href="https://github.com/quicksilver/Quicksilver/issues/1045" target="_blank"&gt;#1045&lt;/a&gt; &lt;a href="https://github.com/quicksilver/Quicksilver/issues/828" target="_blank"&gt;#828&lt;/a&gt; &lt;a href="https://github.com/quicksilver/Quicksilver/issues/912" target="_blank"&gt;#912&lt;/a&gt; &lt;a href="https://github.com/quicksilver/Quicksilver/issues/1013" target="_blank"&gt;#1013&lt;/a&gt; &lt;a href="https://github.com/quicksilver/Quicksilver/issues/1094" target="_blank"&gt;#1094&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;

&lt;p&gt;&lt;/p&gt;
&lt;br/&gt;&lt;h3&gt;Changed&lt;/h3&gt; 


&lt;p&gt;&lt;/p&gt;&lt;li&gt;&lt;b&gt;Don&amp;#8217;t automatically switch to text mode unless searching the main catalog &lt;a href="https://github.com/quicksilver/Quicksilver/issues/981" target="_blank"&gt;#981&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;When browsing within a folder, QS assumes a file is being sought and won&amp;#8217;t switch to text mode, even if specified in Preferences&amp;gt;Command.


&lt;p&gt;&lt;/p&gt;&lt;li&gt;&lt;b&gt;Files with leading numbers in their name are sorted like Finder &lt;a href="https://github.com/quicksilver/Quicksilver/issues/1029" target="_blank"&gt;#1029&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;Folder contents&amp;#8217; file names will be displayed as in Finder – numerically, not alphabetically.
&lt;br/&gt;&lt;br/&gt;&lt;center&gt;&lt;img src="http://media.tumblr.com/tumblr_m9als2PnV71qfln44.png"/&gt;&lt;br/&gt;&lt;i&gt;&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;

&lt;p&gt;&lt;/p&gt;&lt;li&gt;&lt;b&gt;Don&amp;#8217;t distinguish upper and lower case letters. Ensures that holding ⇧ to select an action gives the same results as typing in the second pane normally &lt;a href="https://github.com/quicksilver/Quicksilver/issues/961" target="_blank"&gt;#961&lt;/a&gt; &lt;a href="https://github.com/quicksilver/Quicksilver/issues/853" target="_blank"&gt;#853&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;


&lt;p&gt;&lt;/p&gt;&lt;li&gt;&lt;b&gt;Alter the appearance of text entry mode to more closely match the chosen interface &lt;a href="https://github.com/quicksilver/Quicksilver/issues/1029" target="_blank"&gt;#1029&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;


&lt;p&gt;&lt;/p&gt;&lt;li&gt;&lt;b&gt;Only search items matched by previous keystrokes (should speed matching) &lt;a href="https://github.com/quicksilver/Quicksilver/issues/1029" target="_blank"&gt;#1029&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;


&lt;p&gt;&lt;/p&gt;&lt;li&gt;&lt;b&gt;Don&amp;#8217;t read whole files into memory when checking for executables &lt;a href="https://github.com/quicksilver/Quicksilver/issues/1025" target="_blank"&gt;#1025&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;A major cause of beachballing consigned to history.


&lt;p&gt;&lt;/p&gt;&lt;li&gt;&lt;b&gt;The &amp;#8220;Quicksilver Catalog Entries&amp;#8221; preset is disabled by default for new users &lt;a href="https://github.com/quicksilver/Quicksilver/issues/1041" target="_blank"&gt;#1041&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;


&lt;p&gt;&lt;/p&gt;&lt;li&gt;&lt;b&gt;Browsing through folders should be faster &lt;a href="https://github.com/quicksilver/Quicksilver/issues/1029" target="_blank"&gt;#1029&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;

&lt;p&gt;&lt;/p&gt;
&lt;br/&gt;&lt;h3&gt;Development&lt;/h3&gt;


&lt;p&gt;&lt;/p&gt;&lt;li&gt;&lt;b&gt;Removed unused `.xcconfig` files &lt;a href="https://github.com/quicksilver/Quicksilver/issues/956" target="_blank"&gt;#956&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;


&lt;p&gt;&lt;/p&gt;&lt;li&gt;&lt;b&gt;Streamlined documentation process for plugins &lt;a href="https://github.com/quicksilver/Quicksilver/issues/988" target="_blank"&gt;#988&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;


&lt;p&gt;&lt;/p&gt;&lt;li&gt;&lt;b&gt;New `indirectTypes` key for actions to filter what&amp;#8217;s acceptable in the third pane &lt;a href="https://github.com/quicksilver/Quicksilver/issues/629" target="_blank"&gt;#620&lt;/a&gt; &lt;a href="https://github.com/quicksilver/Quicksilver/issues/1057" target="_blank"&gt;#1057&lt;/a&gt; &lt;a href="https://github.com/quicksilver/Quicksilver/issues/1094" target="_blank"&gt;#1094&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;

&lt;br/&gt;&lt;p&gt;Quicksilver 1.0 gets that little bit closer.&lt;/p&gt;

&lt;br/&gt;
@LoveQuicksilver
&lt;br/&gt;&lt;br/&gt;</description><link>http://blog.qsapp.com/post/31762456955</link><guid>http://blog.qsapp.com/post/31762456955</guid><pubDate>Tue, 18 Sep 2012 09:11:00 +0900</pubDate></item><item><title>Remiel: How to Use Quicksilver to Post Tweets to Twitter in 2012</title><description>&lt;a href="http://remiel.info/post/23553313210/how-to-use-quicksilver-to-post-tweets-to-twitter-in"&gt;Remiel: How to Use Quicksilver to Post Tweets to Twitter in 2012&lt;/a&gt;: &lt;p&gt;&lt;a href="http://remiel.info/post/23553313210/how-to-use-quicksilver-to-post-tweets-to-twitter-in" class="tumblr_blog" target="_blank"&gt;remiel&lt;/a&gt;:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;a href="http://qsapp.com/index.php" target="_blank"&gt;Quicksilver&lt;/a&gt; is, of course, sexy as hell. But after searching around a lot, I had to conclude there is no longer any good, published way to post tweets via Quicksilver. The &lt;a href="http://blog.codahale.com/2007/01/15/tweet-twitter-quicksilver/" target="_blank"&gt;original method&lt;/a&gt; stopped working when Twitter implemented OAuth.&lt;/p&gt; &lt;p&gt;On top of which, Quicksilver has always lacked a…&lt;/p&gt;&lt;/blockquote&gt;</description><link>http://blog.qsapp.com/post/30001167054</link><guid>http://blog.qsapp.com/post/30001167054</guid><pubDate>Thu, 23 Aug 2012 09:47:14 +0900</pubDate></item><item><title>Launch QS with Dictation Active</title><description>&lt;center&gt;&lt;img src="http://media.tumblr.com/tumblr_m8ibu3shsI1qfln44.png"/&gt;&lt;br/&gt;&lt;i&gt;&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;p&gt;It&amp;#8217;s hacky, but it works:&lt;/p&gt;

&lt;p&gt;Make a trigger for the &amp;#8216;QS Command Window with Text&amp;gt;Run&amp;#8217; command, and set the key combo to &amp;#8216;shift-command space&amp;#8217;.&lt;/p&gt;

&lt;p&gt;Set Dictation to its default double function key shortcut.&lt;/p&gt;

&lt;p&gt;Unzip this:
&lt;a href="http://dl.dropbox.com/u/157506/Launch%20QS%20with%20Dictation.zip" target="_blank"&gt;http://dl.dropbox.com/u/157506/Launch%20QS%20with%20Dictation.zip&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Put it wherever you like, and make a trigger to run it (I use ⌘⌥⌃space).&lt;/p&gt;

&lt;p&gt;Optional: open the script in AppleScript Editor to alter the key combos or, for slower Macs, delay times.&lt;/p&gt;

&lt;br/&gt;
@LoveQuicksilver
&lt;br/&gt;&lt;br/&gt;</description><link>http://blog.qsapp.com/post/29076568830</link><guid>http://blog.qsapp.com/post/29076568830</guid><pubDate>Fri, 10 Aug 2012 06:35:13 +0900</pubDate></item><item><title>Dictation and Quicksilver</title><description>&lt;h3&gt;Siri, anyone?&lt;/h3&gt;
&lt;br/&gt;&lt;center&gt;&lt;iframe width="560" height="380" src="http://www.youtube.com/embed/Gqpa-XgoJCg?hl=en&amp;amp;fs=1" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;&lt;br/&gt;&lt;i&gt;&lt;/i&gt;&lt;/center&gt;&lt;br/&gt;&lt;p&gt;Now, the Reminders script is hackier than hacked-up hacker with a hacking cough, but imagine the possibilities… Dictation is only supposed to work in text entry fields, but, &lt;i&gt;once&lt;/i&gt;, I was able to search Quicksilver&amp;#8217;s catalog when using it.&lt;/p&gt;

&lt;p&gt;If you&amp;#8217;ve any great uses for Dictation and QS, please leave a message after the tone.&lt;/p&gt;

&lt;br/&gt;
@LoveQuicksilver
&lt;br/&gt;&lt;br/&gt;</description><link>http://blog.qsapp.com/post/28732084599</link><guid>http://blog.qsapp.com/post/28732084599</guid><pubDate>Sun, 05 Aug 2012 10:03:00 +0900</pubDate></item><item><title>Toggle that application - improving your Quicksilver workflow</title><description>&lt;p&gt;Today I&amp;#8217;ll talk about a very small change we made in Quicksilver ß69, but one we believe will improve your workflow and just how &amp;#8216;clever&amp;#8217; Quicksilver is.&lt;/p&gt;

&lt;p&gt;The idea was suggested by Howard, the author of the brilliant and comprehensive &lt;a href="http://mysite.verizon.net/hmelman/Quicksilver.pdf" target="_blank"&gt;Quicksilver manual&lt;/a&gt;. Like all good ideas, we jumped on it as quick as we could!&lt;/p&gt;

&lt;center&gt;&lt;img src="http://media.tumblr.com/tumblr_m84f1t3rAy1qfln44.png" alt="Quicksilver toggle application action"/&gt;&lt;br/&gt;Quicksilver toggle application action&lt;/center&gt;

&lt;p&gt;If you&amp;#8217;re not aware of the &amp;#8220;Toggle Application&amp;#8221; action, it can be used to show or hide an application, depending on its state. It is often recommended by some (Howard himself) to use it in triggers over the &amp;#8220;Open&amp;#8221; action, as it adds the benefit of being able to hide applications if they&amp;#8217;re already open.&lt;br/&gt;
The idea from Howard was to alter the action so that running the action on an application would bring it to the front &lt;b&gt;always&lt;/b&gt;, &lt;i&gt;unless&lt;/i&gt; the application is already frontmost. At which point, it would be hidden.&lt;/p&gt;


&lt;p&gt;Perhaps one of the lesser well-known actions, this is great when combined with triggers for Quickly launching apps, hiding apps, and activating apps.&lt;/p&gt;

&lt;center&gt;&lt;img src="http://media.tumblr.com/tumblr_m84f2lXgeI1qfln44.png" alt="toggle action triggers in Quicksilver"/&gt;&lt;br/&gt;Toggle action triggers in Quicksilver&lt;/center&gt;

&lt;p&gt;If you, like Howard, have a really good idea for Quicksilver, then just let us know by creating a &lt;a href="https://github.com/quicksilver/Quicksilver/issues" target="_blank"&gt;new issue&lt;/a&gt; on our Bug tracker. We&amp;#8217;ll keep track of your feature request and try to get it implemented into Quicksilver!&lt;/p&gt;</description><link>http://blog.qsapp.com/post/28547915439</link><guid>http://blog.qsapp.com/post/28547915439</guid><pubDate>Thu, 02 Aug 2012 18:17:00 +0900</pubDate></item><item><title>Coming soon to Quicksilver: the ability to select any keyboard...</title><description>&lt;img src="http://25.media.tumblr.com/tumblr_m84egrXqrY1qgjg4yo1_400.png"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;Coming soon to Quicksilver: the ability to select any keyboard layout for when Quicksilver is activated. Thanks to &lt;a href="https://github.com/ybian" target="_blank"&gt;ybian&lt;/a&gt; for the hard work!&lt;br/&gt;&lt;br/&gt;
To add more keyboard layouts to the list in Quicksilver’s preferences, all you need to do is add them to your ‘Input Sources’ list in the Language &amp; Text System Preferences pane. Easy peasy!&lt;/p&gt;</description><link>http://blog.qsapp.com/post/28547553477</link><guid>http://blog.qsapp.com/post/28547553477</guid><pubDate>Thu, 02 Aug 2012 18:02:00 +0900</pubDate></item><item><title>Mountain Lion is upon us - update you Quicksilver now!</title><description>&lt;p&gt;So Apple have gone ahead and quietly announced the release of their newest OS &lt;a href="http://www.apple.com/osx/" target="_blank"&gt;Mountain Lion&lt;/a&gt; for today, 25th July. Probably the most important question you want answering before you jump aboard this new cat&amp;#8217;s wagon is &amp;#8220;does Quicksilver work, or will I be left feeling like a lost child with nothing to guide me?&amp;#8221;&lt;/p&gt;

&lt;p&gt;The answer is of course: Yes. As of &lt;a href="http://blog.qsapp.com/post/27644282840/ss69-release-quicksilver-1-0-draws-nearer" target="_blank"&gt;Quicksilver ß69&lt;/a&gt;, released late last week, Quicksilver should run on Mountain Lion as smoothly as your brand new Jaguar.
We suggest that everyone upgrading to Mountain Lion makes sure they are running Quicksilver ß69 or higher before they do so. Click the &amp;#8216;Update Now&amp;#8217; button inside Quicksilver&amp;#8217;s preferences, or download the &lt;a href="http://qs0.qsapp.com/download.php" target="_blank"&gt;latest Quicksilver version&lt;/a&gt; directly.&lt;/p&gt;

&lt;p&gt;Enjoy the ride, and let us know how you get on! Before updating, we suggest you check to make sure all your other favourite apps are Mountain Lion-ready. Not all apps are ready on launch day!&lt;/p&gt;</description><link>http://blog.qsapp.com/post/27968374731</link><guid>http://blog.qsapp.com/post/27968374731</guid><pubDate>Wed, 25 Jul 2012 15:46:00 +0900</pubDate><category>quicksilver</category><category>mountain lion</category><category>os x</category><category>apple</category><category>mac</category></item><item><title>Internal shortcuts - unlock those hidden Quicksilver features</title><description>&lt;p&gt;With the release of Quicksilver ß69, we added support for Quicksilver to process keyboard shortcuts from all keyboard layouts. Triggers have worked in this way ever since they were introduced into Quicksilver, but the same can&amp;#8217;t be said for the long list of (often hidden) &lt;a href="http://qsapp.com/wiki/Keyboard_shortcuts" target="_blank"&gt;internal shortcuts&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In this blog post, I&amp;#8217;ll take you through some of the most useful, and less well known shortcuts Quicksilver has to offer.&lt;/p&gt;

&lt;h4&gt;Paste Action&lt;/h4&gt;

&lt;p&gt;Whilst this technically isn&amp;#8217;t a shortcut, Quicksilver&amp;#8217;s &amp;#8220;Paste&amp;#8221; and &amp;#8220;Paste as Plain Text&amp;#8221; actions (which allow you to paste whatever item is in Quicksilver&amp;#8217;s 1st pane) have only ever worked for QWERTY keyboard users until now. The action simulates the ⌘V keystroke, so never quite worked for all our international users. Now, however, this action is available for everyone to use. Here are some examples of where you might use it:

&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Use &lt;strong&gt;Current Web Page ⇥ Paste&lt;/strong&gt; when wanting to paste your current website URL (for example, into an email or tweet). Requires a browser plugin (e.g. Safari Plugin, Chrome Plugin)&lt;/li&gt;
&lt;li&gt;To remove formatting from copied text, try &lt;strong&gt;Clipboard Contents → Paste as Plain Text&lt;/strong&gt;. Useful to set up as a trigger.&lt;/li&gt;
&lt;li&gt;Paste items from your shelf (requires the &amp;#8216;Shelf Plugin&amp;#8217;) by bringing up the shelf item in Quicksilver&amp;#8217;s 1st pane and using the &amp;#8216;Paste&amp;#8217; action.&lt;/li&gt;
&lt;li&gt;Easily paste a file or folder&amp;#8217;s path by simply using &lt;strong&gt;File or Folder → Paste&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

There are many, many more uses for this action, perhaps one of the most useful in Quicksilver&amp;#8217;s arsenal!&lt;br/&gt;&lt;strong&gt;Tip&lt;/strong&gt;: turn on &amp;#8220;Allow capitalised keys to select the action&amp;#8221; in the Extras preferences, and you can then run the action with ⌘⇧P without having to tab to the 2nd pane. See &lt;a href="http://blog.qsapp.com/post/7413266835/putting-in-a-shift" target="_blank"&gt;this blog post on &amp;#8216;shifting&amp;#8217;&lt;/a&gt; for more information.

&lt;h4&gt;Browsing Quicksilver&amp;#8217;s History&lt;/h4&gt;

&lt;p&gt;Believe it or not, Quicksilver has an object history just like your browser. If you want to bring up that file, folder, or snippet of text you were using in Quicksilver a few days ago, just use the ⌘[ (back) and ⌘] (forward) shortcuts to browse your history. Just like your browser, except inside Quicksilver. For more information, read about it in a &lt;a href="http://blog.qsapp.com/post/21225132753/quicksilver-makes-itself-clear" target="_blank"&gt;recent Quicksilver release article&lt;/a&gt; or view the video below.&lt;/p&gt;

&lt;center&gt;&lt;iframe width="560" height="380" src="http://www.youtube.com/embed/iJfDVrigLQ4" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;&lt;br/&gt;&lt;i&gt;Browsing object History in Quicksilver&lt;/i&gt;&lt;/center&gt;
&lt;p&gt;&lt;br/&gt;&lt;/p&gt;
&lt;h4&gt;Showing an item&amp;#8217;s contents and browsing in Quicksilver&lt;/h4&gt;

&lt;p&gt;You should all be familiar with using the → (right arrow) key to show an item&amp;#8217;s contents (for example, a folder), and then using ← (left arrow) to move back &amp;#8216;up&amp;#8217;.&lt;br/&gt;
For some years now, the / (forward slash) key has also worked for showing an item&amp;#8217;s contents. To move &amp;#8216;up&amp;#8217;, a corresponding ⌥/ (option forward slash) keyboard shortcut has existed. Only now, with the release of Quicksilver ß69 will this work correctly for all users, no matter what their keyboard shortcut.&lt;/p&gt;

&lt;p&gt;A useful shortcut if you don&amp;#8217;t want to stretch all the way to those arrow keys!&lt;/p&gt;

&lt;h4&gt;A few more hidden gems&lt;/h4&gt;

&lt;p&gt;The &lt;code&gt;~&lt;/code&gt; (tilde) key represents your &amp;#8216;Home&amp;#8217; folder on your Mac. You can type this in Quicksilver&amp;#8217;s 1st pane to instantly bring up the home folder - now available for all our users.&lt;/p&gt;

&lt;center&gt;&lt;img src="http://media.tumblr.com/tumblr_m7i8vg919N1qfln44.png"/&gt;&lt;br/&gt;&lt;em&gt;Typing &lt;code&gt;~&lt;/code&gt; to show your Home folder&lt;/em&gt;&lt;/center&gt;
&lt;p&gt;&lt;br/&gt;&lt;/p&gt;
&lt;p&gt;Entering into Text Mode in Quicksilver is typically done by pressing the &lt;code&gt;.&lt;/code&gt; (period) key. Now, with Quicksilver ß69 you can also use the &lt;code&gt;'&lt;/code&gt; (apostrophe) key.&lt;/p&gt;

&lt;p&gt;If you&amp;#8217;re using the Calculator plugin, an easy way to put Quicksilver into &amp;#8220;Calculate&amp;#8221; mode is by typing &lt;code&gt;=&lt;/code&gt;. This puts Quicksilver into text mode (allowing you to type your mathematical expression) and makes &amp;#8216;Calculate&amp;#8217; the default action.&lt;/p&gt;

&lt;center&gt;&lt;img src="http://media.tumblr.com/tumblr_m7i8uvhEeV1qfln44.png"/&gt;&lt;br/&gt;&lt;em&gt;Calculating expressions in Quicksilver&lt;/em&gt;&lt;/center&gt;
&lt;p&gt;&lt;br/&gt;&lt;/p&gt;
&lt;h4&gt;Wrapping it all up&lt;/h4&gt;

&lt;p&gt;This post should have given you a (not so) brief look into some of the internal shortcuts available to Quicksilver. For the full list, be sure to checkout our &lt;a href="http://qsapp.com/wiki/Keyboard_shortcuts" target="_blank"&gt;Keyboard Shortcuts page on the wiki&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Let us know if you have any more that you&amp;#8217;re particularly fond of!&lt;/p&gt;</description><link>http://blog.qsapp.com/post/27690060464</link><guid>http://blog.qsapp.com/post/27690060464</guid><pubDate>Sat, 21 Jul 2012 18:59:00 +0900</pubDate><category>quicksilver</category><category>shortcuts</category><category>mac</category></item><item><title>ß69 Release: Quicksilver 1.0 draws nearer</title><description>&lt;p&gt;It&amp;#8217;s here, something you&amp;#8217;ve all been waiting for!&lt;/p&gt;

&lt;p&gt;After much hard and painstaking work, we&amp;#8217;ve finally brought Quicksilver kicking and screaming into the world of Mountains and Lions. This release of Quicksilver is perhaps one of the biggest in its history. It&amp;#8217;s certainly the biggest release for everyone on the current development team.&lt;/p&gt;

&lt;p&gt;Over the course of the next few weeks, we&amp;#8217;ll be making blog posts and tweets on everything that&amp;#8217;s gone on under the hood with this version of Quicksilver… but, in order to whet your appetite, here&amp;#8217;s a quick rundown of the major changes:&lt;/p&gt;


&lt;ul&gt;&lt;li&gt;&lt;strong&gt;Official support for Mountain Lion&lt;/strong&gt; - Quicksilver is now code-signed to work with Mountain Lion&amp;#8217;s &lt;a href="http://www.apple.com/osx/whats-new/features.html#gatekeeper" target="_blank"&gt;Gatekeeper&lt;/a&gt;, and has been extensively tested with Apple&amp;#8217;s latest operating system.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;64 bit code&lt;/strong&gt; - Quicksilver is now a 64 bit application, meaning it should run faster, and with fewer hiccups.
&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Localisations, localizations, localización&lt;/strong&gt; - There&amp;#8217;s now full localisation support built into Quicksilver. We are working hard on &lt;a href="https://www.transifex.com/projects/p/quicksilver/announcements/" target="_blank"&gt;paving the way&lt;/a&gt; for volunteers from across the globe to translate &lt;em&gt;all parts&lt;/em&gt; of Quicksilver into their own language. On top of this, Quicksilver now supports many more keyboard layouts, and all &lt;a href="http://qsapp.com/wiki/keyboard_shortcuts" target="_blank"&gt;internal shortcuts&lt;/a&gt; are keyboard independent.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Fixes galore&lt;/strong&gt; - In terms of fixes, there&amp;#8217;s no doubt that ß69 has the most out of any release we&amp;#8217;ve ever seen. This line (from the &lt;a href="http://qsapp.com/changelog.php" target="_blank"&gt;changelog&lt;/a&gt;) is only half the story…
&lt;ul&gt;&lt;li&gt;FIX: Further crash fixes and clean up (&lt;a href="https://github.com/quicksilver/Quicksilver/issues/910" target="_blank"&gt;#910&lt;/a&gt;, &lt;a href="https://github.com/quicksilver/Quicksilver/issues/923" target="_blank"&gt;#923&lt;/a&gt;, &lt;a href="https://github.com/quicksilver/Quicksilver/issues/928" target="_blank"&gt;#928&lt;/a&gt;, &lt;a href="https://github.com/quicksilver/Quicksilver/issues/929" target="_blank"&gt;#929&lt;/a&gt;, &lt;a href="https://github.com/quicksilver/Quicksilver/issues/943" target="_blank"&gt;#943&lt;/a&gt;, &lt;a href="https://github.com/quicksilver/Quicksilver/issues/944" target="_blank"&gt;#944&lt;/a&gt;, &lt;a href="https://github.com/quicksilver/Quicksilver/issues/949" target="_blank"&gt;#949&lt;/a&gt;, &lt;a href="https://github.com/quicksilver/Quicksilver/issues/950" target="_blank"&gt;#950&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Stay tuned for some more in-depth posts on what&amp;#8217;s been going on behind the scenes, and what more you can expect. Now that a 64 bit Quicksilver has been released to the world, expect Quicksilver v1.0 to be just around the corner…&lt;/p&gt;
&lt;p&gt;If you want to learn more now, check out the &lt;a href="http://qsapp.com/changelog.php" target="_blank"&gt;changelog&lt;/a&gt;.&lt;/p&gt;</description><link>http://blog.qsapp.com/post/27644282840</link><guid>http://blog.qsapp.com/post/27644282840</guid><pubDate>Sat, 21 Jul 2012 04:44:01 +0900</pubDate></item></channel></rss>
