﻿<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Jason Carr</title>
	<atom:link href="http://www.jasoncarr.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.jasoncarr.com</link>
	<description></description>
	<lastBuildDate>Sun, 06 May 2012 06:36:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>TrueCrypt Automation using Shell Scripts on Mac OS X</title>
		<link>http://www.jasoncarr.com/technology/truecrypt-automation-using-shell-scripts-on-mac-os-x</link>
		<comments>http://www.jasoncarr.com/technology/truecrypt-automation-using-shell-scripts-on-mac-os-x#comments</comments>
		<pubDate>Sun, 06 May 2012 06:36:21 +0000</pubDate>
		<dc:creator>Jason Carr</dc:creator>
				<category><![CDATA[Encryption]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Shell Scripts]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[TrueCrypt]]></category>

		<guid isPermaLink="false">http://www.jasoncarr.com/?p=1502</guid>
		<description><![CDATA[This is probably a fairly unique situation, but I thought I&#8217;d post it here just to see how many people might have the same need. I use TrueCrypt almost exclusively as my encryption solution due to the fact that it&#8217;s &#8230; <a href="http://www.jasoncarr.com/technology/truecrypt-automation-using-shell-scripts-on-mac-os-x">Continue reading</a>]]></description>
			<content:encoded><![CDATA[<p><img src="/pictures/TrueCrypt.jpg" alt="TrueCrypt TrueCrypt Automation using Shell Scripts on Mac OS X" title="TrueCrypt" width="204" height="272" style="float: left; margin-right: 15px; margin-bottom: 10px;" />This is probably a fairly unique situation, but I thought I&#8217;d post it here just to see how many people might have the same need. I use <a href="http://www.truecrypt.org/" target="_blank">TrueCrypt</a> almost exclusively as my encryption solution due to the fact that it&#8217;s both cross platform and open source, and because it&#8217;s highly secure and &#8220;just works&#8221;. Really, I don&#8217;t know why anyone wouldn&#8217;t use it; it really is the ideal encryption solution.</p>
<p>That said, I often find myself having to create new volumes, and I find that process to be relatively cumbersome. I prefer to have many smaller volumes than one or two large volumes, primarily because they sync up via Dropbox (actually just recently I switched to Google Drive), and online sync services do much better with smaller files than, say, a 50GB file.</p>
<p>The non-automated way to create and mount a volume seems to take ages; you run through the wizard, wait for the volume to be created, go hunt for the file, mount it, and then you&#8217;re finally good to go. It requires entering your password not once but three times, and just gets irritating after having to do it even once a day.  To solve this, I looked into TrueCrypt&#8217;s command line options, and created a couple of shell scripts to make things much easier. Read on after the break to dive into the scripts.<br />
<span id="more-1502"></span><br />
These shell scripts were specifically built to be used on Mac OS X Lion (my current version is 10.7.3). I would imagine that they most likely work on any recent and forthcoming OS X version, but I have not tested them on anything other than 10.7.3. Most likely these also work (or can be easily adapted to work) on Linux, but again, I have not tested them there.</p>
<p>Let&#8217;s jump right into the code for the scripts. The first script I wrote I named &#8220;tc-create.sh&#8221; with the purpose of creating a new volume, immediately mounting it, and then dismounting it when the user is finished. Here comes the code&#8230;</p>
<pre class="brush: plain; title: ; notranslate">
DIR=$(cd &quot;$(dirname &quot;$0&quot;)&quot;; pwd)
cd &quot;$DIR&quot;
clear
read -p &quot;Please enter the name of the file to create: &quot; ENCFILE
read -p &quot;Please enter the name of an existing file to use as the random seed: &quot; ENCSEED
read -p &quot;Please enter the password to use for the encrypted file: &quot; ENCPASSWORD
clear
/Applications/TrueCrypt.app/Contents/MacOS/TrueCrypt -t -c &quot;$ENCFILE&quot; --random-source=&quot;$ENCSEED&quot; --password=&quot;$ENCPASSWORD&quot; --filesystem=FAT --volume-type=normal --encryption=AES --hash=ripemd-160 -k &quot;&quot;
/Applications/TrueCrypt.app/Contents/MacOS/TrueCrypt -t --mount &quot;$ENCFILE&quot; &quot;/Volumes/tc1&quot; --password=&quot;$ENCPASSWORD&quot; -k &quot;&quot; --protect-hidden=no
read -p &quot;Copy files and then press Enter to dismount... &quot;
/Applications/TrueCrypt.app/Contents/MacOS/TrueCrypt -t -d
clear
</pre>
<p>You&#8217;ll want to copy and paste this into your favorite text editor and save the file with a &#8220;.sh&#8221; file extension. After saving the file, there&#8217;s a couple of things you need to do in order to make the file executable and easy to open. The first is to change the permissions on the file to allow it to be executed. Open up Terminal and type the following:</p>
<pre class="brush: plain; title: ; notranslate">
chmod 777 &quot;/path/to/tc-create.sh&quot;
</pre>
<p>Obviously you&#8217;ll need to change the path to the file above to the correct path on your machine. You can either use &#8220;/path/to&#8221; to start in the root of your hard disk, or &#8220;~/path/to&#8221; to start in your user folder, in case you&#8217;re unaware of this feature. If you&#8217;re unsure, use the tilde; &#8220;~/&#8221; refers to your user folder.</p>
<p>After the file is executable, you&#8217;ll need to change the file to open up in Terminal when you double-click it. This one&#8217;s a bit easier; right-click on the file in Finder and choose &#8220;Get Info&#8221;.  Under &#8220;Open With&#8221;, either select Terminal from the list if it&#8217;s already there or select &#8220;Other&#8230;&#8221; and browse to it to find it (it should in the Utilities folder inside your Applications folder). Once you&#8217;ve done this, you should be able to double-click on the file to run it in a Terminal window. Easy as pie, right? ;) (Sure wish Apple could have made that process a bit easier&#8230;)</p>
<p>Alright, so now that you know how to set the file up, let&#8217;s take a look at that code to see if there&#8217;s anything you might want to change. The first two lines simply get the directory of the script file, and change to that directory. This is so the script always defaults to creating and opening files in the same directory that the script is run from, so you don&#8217;t have to type long paths; ideally you&#8217;d just put the script file in the folder that contains your encrypted files. This way, when creating a new volume, you can just type &#8220;new-volume-file-name&#8221; instead of &#8220;/ridiculously/long/path/to/new-volume-file-name&#8221;.</p>
<p>Lines 4, 5, and 6 prompt you for the encrypted file name to create, an existing file to use as a random seed, and the password to use for the file. As stated earlier, for the files you can just type the file name without a path and it will assume it to be in the same folder as the script file itself. You can choose to remove line 5&#8242;s random seed request if you so choose (you&#8217;ll also have to remove the &#8211;random-source=&#8221;$ENCSEED&#8221; parameter on line 8), but this will make TrueCrypt prompt you to type 320 random characters, which gets annoying really fast, as it&#8217;s more characters than you would think (this is in place of the random mouse movements that the GUI asks you to perform). I find that picking a random file is usually faster than typing the characters. Keep in mind that you can drag any existing file over to the Terminal window to populate the file; you don&#8217;t have to type it (in fact, I&#8217;d recommend this approach).</p>
<p>You&#8217;ll notice that when you type the password out with the current script, it displays on the screen in cleartext. The purpose of this was to not require you to type the password twice just to make things faster. However, if you would rather not display the password on screen, you can add a -s switch to line 6 in order to hide your password.</p>
<p>Onto line 8; this is the line that actually calls TrueCrypt to create the new volume. Feel free to modify the filesystem, volume-type, encryption, and hash parameters to use whichever settings you&#8217;d like. I&#8217;ve defaulted them to the default settings in the GUI (which work great for most users). The -k &#8220;&#8221; parameters specify that no keyfile will be used; if removed, TrueCrypt will prompt you for a keyfile.</p>
<p>Line 9 mounts the newly created volume. The only things you might want to change on this line would be to remove the -k &#8220;&#8221; in order to specify a keyfile, or change the &#8220;/Volumes/tc1&#8243; to use a different mount point for the volume, but you&#8217;re not likely going to need to change either of them.</p>
<p>Line 10 simply waits until you hit Enter before dismounting the file. The idea is to let you create and mount the file, move whatever files you need to the volume, and then go back to the Terminal to dismount the file. Line 11 dismounts all open volumes in TrueCrypt, and that&#8217;s about it. Whew.</p>
<p>We&#8217;re not quite done yet, though; I also created a script called &#8220;tc-mount.sh&#8221; that simply mounts an existing volume and dismounts it when done. Of course you can use the GUI for this fairly quickly and easily, but I still find this script to be ever-so-slightly faster:</p>
<pre class="brush: plain; title: ; notranslate">
DIR=$(cd &quot;$(dirname &quot;$0&quot;)&quot;; pwd)
cd &quot;$DIR&quot;
clear
read -p &quot;Please enter the name of the file to mount: &quot; FILETOMOUNT
clear
/Applications/TrueCrypt.app/Contents/MacOS/TrueCrypt -t --mount &quot;$FILETOMOUNT&quot; &quot;/Volumes/tc1&quot; -k &quot;&quot; --protect-hidden=no --display-password
clear
read -p &quot;Press Enter to dismount... &quot;
clear
/Applications/TrueCrypt.app/Contents/MacOS/TrueCrypt -t -d
</pre>
<p>This script is much the same as the previous script, just without the volume creation and the password entry has been moved to TrueCrypt itself instead of an external prompt (because TrueCrypt only requires it once for this operation anyway). It is also configured to display the password when typing; to hide it, simply remove the &#8220;&#8211;display-password&#8221; parameter from line 6. Everything else should be fairly straightforward as it resembles what I&#8217;ve described above for the previous script. That said, don&#8217;t forget to change the permissions on the file and set it to open in Terminal as in the previous script.</p>
<p>If you find this useful, please leave me a comment below to let me know. If you find any issues or have anything to add, of course let me know as well. If I find that this article has a large enough response, I&#8217;m thinking I might load up Xcode and build a native app that lets you highlight a set of files, and automatically move them to a new TrueCrypt volume; seems like that would be of significant use. Any thoughts there? I may also look to build scripts for Windows and/or Linux if I see the need&#8230;</p>
<p>Thanks for reading and I hope you find it useful. :)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasoncarr.com/technology/truecrypt-automation-using-shell-scripts-on-mac-os-x/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AudioLog HD v1.9 Released</title>
		<link>http://www.jasoncarr.com/software/audiolog-hd-v1-9-released</link>
		<comments>http://www.jasoncarr.com/software/audiolog-hd-v1-9-released#comments</comments>
		<pubDate>Sun, 25 Dec 2011 07:36:25 +0000</pubDate>
		<dc:creator>Jason Carr</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[AudioLog HD]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.jasoncarr.com/?p=1480</guid>
		<description><![CDATA[It&#8217;s been a while since I&#8217;ve posted about an update, so we&#8217;ll backtrack a little here to get up to speed. Since the last post about version 1.4, I&#8217;ve added full support for Android 4.0 Ice Cream Sandwich tablets and &#8230; <a href="http://www.jasoncarr.com/software/audiolog-hd-v1-9-released">Continue reading</a>]]></description>
			<content:encoded><![CDATA[<p><a href="https://market.android.com/details?id=com.jasoncarr.audiolog" target="_blank" style="float: left; margin-right: 15px;"><img src="/pictures/AudioLogHD.png" alt="AudioLogHD AudioLog HD v1.9 Released"  title="AudioLog HD v1.9 Released" /></a>It&#8217;s been a while since I&#8217;ve posted about an update, so we&#8217;ll backtrack a little here to get up to speed.  Since the last post about version 1.4, I&#8217;ve added full support for Android 4.0 Ice Cream Sandwich tablets and phones, made the app entirely accessible for blind and visually impaired users, and fully tested (and fixed the rough edges) on a shiny new Samsung Galaxy Nexus.</p>
<p>I had the pleasure of working with J.J. Meddaugh of <a href="http://androidaccess.net" target="_blank">AndroidAccess.net</a> to identify which parts of the app would need modified to make it fully accessible to blind users, and I&#8217;m happy to say that we were successful in making the app completely accessible for use with a screen reader.  J.J. was kind enough to post an accessibility review that documents everything here:</p>
<p><a href="http://androidaccess.net/details.php?id=1631" target="_blank">http://androidaccess.net/details.php?id=1631</a></p>
<p>I&#8217;m also excited to say that Android Tapp has also reviewed the app!  <a href="http://www.androidtapp.com/author/McQuilkt/" target="_blank">Toni McQuilken</a> reviewed the app as a &#8220;no frills&#8221; app that &#8220;works perfectly.&#8221;  You can read the review here:</p>
<p><a href="http://www.androidtapp.com/audiolog-hd-sound-recorder/">http://www.androidtapp.com/audiolog-hd-sound-recorder/</a></p>
<p>Finally, I&#8217;ve trimmed all rough edges for the app&#8217;s experience on the new Samsung Galaxy Nexus (running Android 4.0).  The majority of things worked as expected due to my testing on the Android emulator, but there were a few surprise bugs that needed squashed.  Regardless, the experience is better than ever on a Samsung Galaxy Nexus.</p>
<p>Thanks everyone!  Enjoy the app and let me know if you have any suggestions. :)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasoncarr.com/software/audiolog-hd-v1-9-released/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>AudioLog HD v1.4 Released</title>
		<link>http://www.jasoncarr.com/software/audiolog-hd-v1-4-released</link>
		<comments>http://www.jasoncarr.com/software/audiolog-hd-v1-4-released#comments</comments>
		<pubDate>Mon, 17 Oct 2011 21:27:03 +0000</pubDate>
		<dc:creator>Jason Carr</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[AudioLog HD]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.jasoncarr.com/?p=1476</guid>
		<description><![CDATA[This is a quick bugfix release that resolves a force close issue on Android Honeycomb 3.0 and 3.1 devices. My Honeycomb testing was performed on version 3.2, hence this particular issue wasn&#8217;t caught. https://market.android.com/details?id=com.jasoncarr.audiolog New features are on the way! &#8230; <a href="http://www.jasoncarr.com/software/audiolog-hd-v1-4-released">Continue reading</a>]]></description>
			<content:encoded><![CDATA[<p><a href="https://market.android.com/details?id=com.jasoncarr.audiolog" target="_blank" style="float: left; margin-right: 15px;"><img src="/pictures/AudioLogHD.png" alt="AudioLogHD AudioLog HD v1.4 Released"  title="AudioLog HD v1.4 Released" /></a>This is a quick bugfix release that resolves a force close issue on Android Honeycomb 3.0 and 3.1 devices. My Honeycomb testing was performed on version 3.2, hence this particular issue wasn&#8217;t caught.</p>
<p><a href="https://market.android.com/details?id=com.jasoncarr.audiolog" target="_blank">https://market.android.com/details?id=com.jasoncarr.audiolog</a></p>
<p>New features are on the way! Feel free to comment on the new features you want most&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasoncarr.com/software/audiolog-hd-v1-4-released/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AudioLog HD v1.3 Released</title>
		<link>http://www.jasoncarr.com/software/audiolog-hd-v1-3-released</link>
		<comments>http://www.jasoncarr.com/software/audiolog-hd-v1-3-released#comments</comments>
		<pubDate>Fri, 14 Oct 2011 22:25:49 +0000</pubDate>
		<dc:creator>Jason Carr</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[AudioLog HD]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.jasoncarr.com/?p=1467</guid>
		<description><![CDATA[The big new feature in version 1.3 is the ability to record in the background, both while other apps are open and while the screen is locked. Several other important bugfixes are also included, as documented in the Changelog in &#8230; <a href="http://www.jasoncarr.com/software/audiolog-hd-v1-3-released">Continue reading</a>]]></description>
			<content:encoded><![CDATA[<p><a href="https://market.android.com/details?id=com.jasoncarr.audiolog" target="_blank" style="float: left; margin-right: 15px;"><img src="/pictures/AudioLogHD.png" alt="AudioLogHD AudioLog HD v1.3 Released"  title="AudioLog HD v1.3 Released" /></a>The big new feature in version 1.3 is the ability to record in the background, both while other apps are open and while the screen is locked.  Several other important bugfixes are also included, as documented in the Changelog in the app and in the &#8220;What&#8217;s New&#8221; section in the Android Market:</p>
<p><a href="https://market.android.com/details?id=com.jasoncarr.audiolog" target="_blank">https://market.android.com/details?id=com.jasoncarr.audiolog</a></p>
<p>Once again, thanks everyone for your support.  Please let me know if you run into any issues.  This latest round of changes was a beast but I plan on putting out a new release with many more features very soon. :)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasoncarr.com/software/audiolog-hd-v1-3-released/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Weekly Updates for 2011-10-11</title>
		<link>http://www.jasoncarr.com/twitter/twitter-weekly-updates-for-2011-10-11</link>
		<comments>http://www.jasoncarr.com/twitter/twitter-weekly-updates-for-2011-10-11#comments</comments>
		<pubDate>Tue, 11 Oct 2011 11:45:00 +0000</pubDate>
		<dc:creator>Jason Carr</dc:creator>
				<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.jasoncarr.com/twitter/twitter-weekly-updates-for-2011-10-11</guid>
		<description><![CDATA[@jonathancoulton You&#039;re doing it right. Just bought Artificial Heart and downloaded it in FLAC. This makes me giddy in so many ways&#8230; #]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>@<a href="http://twitter.com/jonathancoulton" class="aktt_username">jonathancoulton</a> You&#039;re doing it right. Just bought Artificial Heart and downloaded it in FLAC. This makes me giddy in so many ways&#8230; <a href="http://twitter.com/jasondavidcarr/statuses/121334648243625984" class="aktt_tweet_time">#</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.jasoncarr.com/twitter/twitter-weekly-updates-for-2011-10-11/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Weekly Updates for 2011-09-13</title>
		<link>http://www.jasoncarr.com/twitter/twitter-weekly-updates-for-2011-09-13</link>
		<comments>http://www.jasoncarr.com/twitter/twitter-weekly-updates-for-2011-09-13#comments</comments>
		<pubDate>Tue, 13 Sep 2011 11:45:00 +0000</pubDate>
		<dc:creator>Jason Carr</dc:creator>
				<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.jasoncarr.com/twitter/twitter-weekly-updates-for-2011-09-13</guid>
		<description><![CDATA[What sorrow awaits the unjust judges and those who issue unfair laws. They deprive the poor of justice and deny (cont) http://t.co/GCCUfFv # An older gentleman tried to convince me that kids are much &#34;stupider&#34; now than in his time.I &#8230; <a href="http://www.jasoncarr.com/twitter/twitter-weekly-updates-for-2011-09-13">Continue reading</a>]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>What sorrow awaits the unjust judges and those who issue unfair laws. They deprive the poor of justice and deny (cont) <a href="http://t.co/GCCUfFv" rel="nofollow">http://t.co/GCCUfFv</a> <a href="http://twitter.com/jasondavidcarr/statuses/112984816537964544" class="aktt_tweet_time">#</a></li>
<li>An older gentleman tried to convince me that kids are much &quot;stupider&quot; now than in his time.I asked him, &quot;Oh really? Can you use a computer?&quot; <a href="http://twitter.com/jasondavidcarr/statuses/111995233507610624" class="aktt_tweet_time">#</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.jasoncarr.com/twitter/twitter-weekly-updates-for-2011-09-13/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Weekly Updates for 2011-09-06</title>
		<link>http://www.jasoncarr.com/twitter/twitter-weekly-updates-for-2011-09-06</link>
		<comments>http://www.jasoncarr.com/twitter/twitter-weekly-updates-for-2011-09-06#comments</comments>
		<pubDate>Tue, 06 Sep 2011 11:45:00 +0000</pubDate>
		<dc:creator>Jason Carr</dc:creator>
				<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.jasoncarr.com/twitter/twitter-weekly-updates-for-2011-09-06</guid>
		<description><![CDATA[Seriously, are there no better ways to spread breast cancer awareness than through inside jokes and stupid rumor-causing lies? #]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>Seriously, are there no better ways to spread breast cancer awareness than through inside jokes and stupid rumor-causing lies? <a href="http://twitter.com/jasondavidcarr/statuses/109850332212899840" class="aktt_tweet_time">#</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.jasoncarr.com/twitter/twitter-weekly-updates-for-2011-09-06/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AudioLog HD v1.2 Released</title>
		<link>http://www.jasoncarr.com/software/audiolog-hd-v1-2-released</link>
		<comments>http://www.jasoncarr.com/software/audiolog-hd-v1-2-released#comments</comments>
		<pubDate>Thu, 21 Jul 2011 21:51:33 +0000</pubDate>
		<dc:creator>Jason Carr</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[AudioLog HD]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.jasoncarr.com/?p=1428</guid>
		<description><![CDATA[Version 1.2 is mainly a bugfix update, but it&#8217;s an important one. The new version fixes a glitch which sometimes closed out the current project when switching between applications (or bringing up the Share and Play with External Player screens), &#8230; <a href="http://www.jasoncarr.com/software/audiolog-hd-v1-2-released">Continue reading</a>]]></description>
			<content:encoded><![CDATA[<p><a href="https://market.android.com/details?id=com.jasoncarr.audiolog" target="_blank" style="float: left; margin-right: 15px;"><img src="/pictures/AudioLogHD.png" alt="AudioLogHD AudioLog HD v1.2 Released"  title="AudioLog HD v1.2 Released" /></a>Version 1.2 is mainly a bugfix update, but it&#8217;s an important one.  The new version fixes a glitch which sometimes closed out the current project when switching between applications (or bringing up the Share and Play with External Player screens), and fixes a rare force close upon stopping recording.  Also added is a prompt to view the changelog upon application updates.</p>
<p>Once again, here&#8217;s a link to the app on the Android Market:</p>
<p><a href="https://market.android.com/details?id=com.jasoncarr.audiolog" target="_blank">https://market.android.com/details?id=com.jasoncarr.audiolog</a></p>
<p>Thanks again, all.  Hope everything is working great and I trust that you&#8217;ll let me know if you find any issues!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasoncarr.com/software/audiolog-hd-v1-2-released/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AudioLog HD v1.1 Released</title>
		<link>http://www.jasoncarr.com/software/audiolog-hd-v1-1-released</link>
		<comments>http://www.jasoncarr.com/software/audiolog-hd-v1-1-released#comments</comments>
		<pubDate>Wed, 20 Jul 2011 21:50:29 +0000</pubDate>
		<dc:creator>Jason Carr</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[AudioLog HD]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.jasoncarr.com/?p=1413</guid>
		<description><![CDATA[AudioLog HD&#8217;s first update just hit the Android Market, version 1.1. The big addition with this update is the ability to &#8220;star&#8221; or &#8220;favorite&#8221; projects and recordings. This helps to more easily keep track of important projects and recordings, or &#8230; <a href="http://www.jasoncarr.com/software/audiolog-hd-v1-1-released">Continue reading</a>]]></description>
			<content:encoded><![CDATA[<p><a href="https://market.android.com/details?id=com.jasoncarr.audiolog" target="_blank" style="float: left; margin-right: 15px;"><img src="/pictures/AudioLogHD.png" alt="AudioLogHD AudioLog HD v1.1 Released"  title="AudioLog HD v1.1 Released" /></a>AudioLog HD&#8217;s first update just hit the Android Market, version 1.1.  The big addition with this update is the ability to &#8220;star&#8221; or &#8220;favorite&#8221; projects and recordings.  This helps to more easily keep track of important projects and recordings, or recordings that you need to come back to, for example.  A few bug fixes made it into this release as well; all are listed under What&#8217;s New in the Android Market (and in the app under the changelog).  Take a look at the latest version here:</p>
<p><a href="https://market.android.com/details?id=com.jasoncarr.audiolog" target="_blank">https://market.android.com/details?id=com.jasoncarr.audiolog</a></p>
<p>Here are a couple of screenshots of the new star functionality in action:</p>
<p><img src="/pictures/AudioLog1.1-1.png" style="padding-right: 15px;" title="AudioLog HD v1.1 Released" alt="AudioLog1.1 1 AudioLog HD v1.1 Released" /><img src="/pictures/AudioLog1.1-2.png" title="AudioLog HD v1.1 Released" alt="AudioLog1.1 2 AudioLog HD v1.1 Released" /></p>
<p>Thanks to all who have jumped on the app already!  Looking forward to adding many more features and users. :)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasoncarr.com/software/audiolog-hd-v1-1-released/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Android App: AudioLog HD Released</title>
		<link>http://www.jasoncarr.com/software/new-android-app-audiolog-hd-released</link>
		<comments>http://www.jasoncarr.com/software/new-android-app-audiolog-hd-released#comments</comments>
		<pubDate>Tue, 19 Jul 2011 21:28:37 +0000</pubDate>
		<dc:creator>Jason Carr</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[AudioLog HD]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.jasoncarr.com/?p=1382</guid>
		<description><![CDATA[I just completed and published an Android application called AudioLog HD. The app records using the microphone on your Android device in high quality, up to CD-quality 16-bit 41000 Hz stereo audio. The app is available in the Android Market &#8230; <a href="http://www.jasoncarr.com/software/new-android-app-audiolog-hd-released">Continue reading</a>]]></description>
			<content:encoded><![CDATA[<p><a href="https://market.android.com/details?id=com.jasoncarr.audiolog" target="_blank" style="float: left; margin-right: 15px;"><img src="/pictures/AudioLogHD.png" alt="AudioLogHD New Android App: AudioLog HD Released"  title="New Android App: AudioLog HD Released" /></a>I just completed and published an Android application called AudioLog HD.  The app records using the microphone on your Android device in high quality, up to CD-quality 16-bit 41000 Hz stereo audio.  The app is available in the Android Market here:</p>
<p><a href="https://market.android.com/details?id=com.jasoncarr.audiolog" target="_blank">https://market.android.com/details?id=com.jasoncarr.audiolog</a></p>
<p>See the listing on the market (link above) for full details on the features of the app.</p>
<p>I&#8217;m looking forward to any and all feedback on it, so please feel free to share your experiences here.  Feature suggestions, issues, and both negative and positive feedback are all welcome.  Thanks everyone! :)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jasoncarr.com/software/new-android-app-audiolog-hd-released/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

