Locale is ready on App Store

Excellent! After just under 2 weeks, my app is ready for sale on the iTunes Store. Locale is a friendly application that uses your GPS location to retrieve the latest weather information where you are, making easier to get the most precise temperature and feel. Unlike other programs, Locale will provide information related to your current vicinity, and not a general view of large region, being then more accurate and reliable.

Locale is a donationware program, so it’s completely free of adverts.

Download Locale from iTunes App Store

Privacy policy

Finally, after a long while, I’m trying to do some house cleaning over here. It’s not everyday that I decide to work with html, but it’s a necessary part to keep things going forward. Working toward completing my first iOS app, turns out to be necessary to have a privacy policy (turns out to be on Google Analytics’s TOS too) visible to inform how you deal with data. Interestingly, that is something I have been thinking of, to improve usability and general tweaks, so why not stop the engines now and do some parallel job? It’s time for spring cleaning anyway! :)
Soon, website privacy policy in place, plus custom app page.

Change Finder icon size on Mac OS 10.7 via AppleScript

For some time I have been amazed by the ability (or inability, depends on your taste) of Finder to keep icon views organised. Since I normally work on my windows as columns, it was never a problem to me. But changing icon sizes (or deleting files) can make a window very messy to work with, mainly because of all the scrolling it can create.

“It is very easy to have a window reorganised though”, one may say. But what happens to users who are mouse-friends and want a quick access to settings?

So I decided to code a little AppleScript to deal with that. In there, I just call a Finder window, change the folder to icon view and increase/decrease the icon size, then reorder by name. Code as follows to increase icon size:

tell application "Finder"
	activate
	set current view of window 1 to icon view
	set currentSize to (icon size of icon view options of window 1) + 32
	if (currentSize is greater than 512) then
		set currentSize to 512
	end if
	set icon size of icon view options of window 1 to currentSize
	tell window 1
		clean up by name
	end tell
end tell

To decrease, just replace the currentSize (lines 4-7) for the lines below

	set currentSize to (icon size of icon view options of window 1) - 32
	if (currentSize is less than 16) then
		set currentSize to 16
	end if

I think it would work with shortcut applications such as FastScripts, but I haven’t tested. I made an Automator application — one to increase and a separate one to decrease — and added each to my Finder toolbar, so I can change icon sizes and have the window organised by name with just one click. It works well so far on 10.7 and even on 10.6, but I’m quite sure it won’t work on the desktop since the desktop is a sort of special window, but feel free to give it a try.

Working hard!

I had promised myself to keep this website busy, but the only busy here is myself. :)
We have been working hard (including during the holidays), so hopefully there will be proper news here soon!