<?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>PixiApps</title>
	<atom:link href="http://www.pixiapps.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.pixiapps.com/blog</link>
	<description>We do Mac OS X &#38; iOS stuff.</description>
	<lastBuildDate>Fri, 10 Feb 2012 10:00:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to build &#8216;Universal&#8217; Static Libraries for iOS</title>
		<link>http://www.pixiapps.com/blog/?p=116</link>
		<comments>http://www.pixiapps.com/blog/?p=116#comments</comments>
		<pubDate>Tue, 07 Feb 2012 21:07:59 +0000</pubDate>
		<dc:creator>Louka Desroziers</dc:creator>
				<category><![CDATA[iOS]]></category>

		<guid isPermaLink="false">http://www.pixiapps.com/blog/?p=116</guid>
		<description><![CDATA[You can find so many blog-posts related to &#8220;how to build Universal static library iOS&#8221;, but most of them are quite weird&#8230; Tutorial level: Medium (must be familiar with the creation of static libraries or frameworks using Xcode)  &#160; 1. One target. Those blog-posts suggest to create two targets. One for the iphoneos platform, and one [...]]]></description>
			<content:encoded><![CDATA[<p><em>You can find so many blog-posts related to &#8220;how to build Universal static library iOS&#8221;, but most of them are quite weird&#8230;<br />
</em><strong>Tutorial level: Medium (must be familiar with the creation of static libraries or frameworks using Xcode) </strong></p>
<p>&nbsp;</p>
<h1>1. One target.</h1>
<p>Those blog-posts suggest to create <strong>two</strong> targets. One for the iphoneos platform, and one for the iphonesimulator platform. But it quickly becomes a nightmare because you have to build the iphoneos one, then the iphonesimulator one, and finally the aggregation one. <strong>NIGHTMARE</strong>.</p>
<p>While working on an open-source Grid-View component, I found out how to build and aggregate using only 1 target.</p>
<p>&nbsp;</p>
<h1>2. One library target, two build configurations.</h1>
<p>That&#8217;s it, we got two basis build configurations which are Debug and Release&#8230; why not changing <strong>Debug</strong> to <strong>iphonesimulator</strong> and <strong>Release </strong>to <strong>iphoneos</strong>?</p>
<p><a href="http://www.pixiapps.com/blog/wp-content/uploads/2012/02/Screen-Shot-2012-02-07-at-20.57.38.png"><img class="aligncenter size-medium wp-image-119" title="Screen Shot 2012-02-07 at 20.57.38" src="http://www.pixiapps.com/blog/wp-content/uploads/2012/02/Screen-Shot-2012-02-07-at-20.57.38-300x69.png" alt="" width="300" height="69" /></a></p>
<p>&nbsp;</p>
<p>For the build configuration named &#8220;<strong>iphoneos</strong>&#8220;, use <strong>iphoneos</strong> as <strong>supported platform</strong>, and <strong>armv6, armv7</strong> for <strong>valid architectures</strong>.</p>
<p>For the build configuration named &#8220;<strong>iphonesimulator</strong>&#8220;, use <strong>iphonesimulator</strong> as <strong>supported platform</strong>, and <strong>i386</strong> for <strong>valid architectures</strong></p>
<p><a href="http://www.pixiapps.com/blog/wp-content/uploads/2012/02/Screen-Shot-2012-02-07-at-21.59.40.png"><img class="aligncenter size-medium wp-image-123" title="Screen Shot 2012-02-07 at 21.59.40" src="http://www.pixiapps.com/blog/wp-content/uploads/2012/02/Screen-Shot-2012-02-07-at-21.59.40-300x138.png" alt="" width="300" height="138" /></a></p>
<p>&nbsp;</p>
<p>Do not forget to configure your <strong>Copy Headers</strong> phase properly.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h1>3. One aggregate target, One universal library.</h1>
<div></div>
<p>In your newly created &#8216;aggregate&#8217; target (here called <strong>NRGridView Universal</strong>), add a <strong>Run Script</strong> phase and copy/paste the script below:<br />
<p>
								<pre class="Plum_Code_Box"><code class="cplusplus">LIB_NAME=${PROJECT_NAME}
BUILD_DIR=build

# Create paths
INSTALL_DIR=${BUILD_DIR}/${LIB_NAME}
DEVICE_DIR=${BUILD_DIR}/iphoneos-iphoneos
SIMULATOR_DIR=${BUILD_DIR}/iphonesimulator-iphonesimulator


# Build our project using iphoneos and iphonesimulator build configurations
xcodebuild -configuration &quot;iphoneos&quot; -target &quot;${LIB_NAME}&quot; -sdk iphoneos
xcodebuild -configuration &quot;iphonesimulator&quot; -target &quot;${LIB_NAME}&quot; -sdk iphonesimulator

# Clean the old install directory.
if [ -d &quot;${INSTALL_DIR}&quot; ]
then
rm -rf &quot;${INSTALL_DIR}&quot;
fi

# Create the install directory
mkdir -p &quot;${INSTALL_DIR}&quot;

# Copy the iphoneos headers into the install directory
cp -R &quot;${DEVICE_DIR}/usr&quot; &quot;${INSTALL_DIR}&quot;

# Use lipo tool to create 1 universal library
lipo -create &quot;${DEVICE_DIR}/lib${LIB_NAME}.a&quot; &quot;${SIMULATOR_DIR}/lib${LIB_NAME}.a&quot; -output &quot;${INSTALL_DIR}/lib${LIB_NAME}.a&quot;

# Remove useless build directories
rm -rf &quot;${DEVICE_DIR}&quot; &quot;${SIMULATOR_DIR}&quot; &quot;${INSTALL_DIR}.build&quot;
</code>
									</pre>
							</p></p>
<p>&nbsp;</p>
<h1>4. Compile.</h1>
<div> Now build your aggregate target, and you&#8217;ll find the universal library + header at <em><strong>&#8220;location_of_your_xcode_project/build/your_library_name/&#8221;<br />
<a href="http://www.pixiapps.com/blog/wp-content/uploads/2012/02/Screen-Shot-2012-02-07-at-22.06.39.png"><img class="aligncenter size-medium wp-image-124" title="Screen Shot 2012-02-07 at 22.06.39" src="http://www.pixiapps.com/blog/wp-content/uploads/2012/02/Screen-Shot-2012-02-07-at-22.06.39-300x62.png" alt="" width="300" height="62" /></a></strong></em></div>
<div></div>
<p>&nbsp;</p>
<h1>5. Conclusion.</h1>
<div>It&#8217;s now easier to build your own static library. And it also become easier to debug it:</div>
<div></div>
<div><a href="http://www.pixiapps.com/blog/wp-content/uploads/2012/02/Screen-Shot-2012-02-07-at-22.16.51.png"><img class="aligncenter size-medium wp-image-127" title="Screen Shot 2012-02-07 at 22.16.51" src="http://www.pixiapps.com/blog/wp-content/uploads/2012/02/Screen-Shot-2012-02-07-at-22.16.51-300x221.png" alt="" width="300" height="221" /></a></div>
<div></div>
<div>Each time I build my &#8220;NRGridViewSampleApp&#8221;, the universal static library is re-built. <strong>Testing becomes easier <img src='http://www.pixiapps.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </strong></div>
<div></div>
<p>&nbsp;</p>
<div><em><strong>If you got any suggestions or any tricks, please feel free to comment.</strong></em></div>
<div><strong>Louka Desroziers. </strong></div>
]]></content:encoded>
			<wfw:commentRss>http://www.pixiapps.com/blog/?feed=rss2&#038;p=116</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exciting announcement about Ecoute Mac OS/iOS</title>
		<link>http://www.pixiapps.com/blog/?p=94</link>
		<comments>http://www.pixiapps.com/blog/?p=94#comments</comments>
		<pubDate>Thu, 09 Jun 2011 17:49:28 +0000</pubDate>
		<dc:creator>Louka Desroziers</dc:creator>
				<category><![CDATA[Ecoute]]></category>

		<guid isPermaLink="false">http://www.pixiapps.com/blog/?p=94</guid>
		<description><![CDATA[Dear users, I decided to unveil some awesome features coming into Ecoute for Mac OS and iOS. Let&#8217;s get started with Ecoute for iOS. Ecoute for iOS What is coming to your mind when you ear that Ecoute will be ported to iOS? Why? Well, I always use my iPhone when I take my car [...]]]></description>
			<content:encoded><![CDATA[<p>Dear users,</p>
<p>I decided to unveil some awesome features coming into Ecoute for Mac OS and iOS.<br />
Let&#8217;s get started with Ecoute for iOS.</p>
<p><strong>Ecoute for iOS</strong></p>
<p>What is coming to your mind when you ear that Ecoute will be ported to iOS? <em><strong>Why?<br />
</strong></em>Well, I always use my iPhone when I take my car (means: <strong>everyday</strong>), so I&#8217;m using the iPod app a lot. This app is nice, simple, but it&#8217;s missing some features, and the UI became boring whereas every <strong><span style="text-decoration: underline;">cool</span></strong> iOS apps have their <strong>UI Identity</strong>.<br />
<strong>Ecoute</strong> for iOS is going to change the way you listen to your music using your iOS device.<br />
It has a nice User Interface, displaying your artists/albums/playlists on a wooden shelf. <strong><em>BUT WHY THE HELL DID YOU CHOOSE A WOODEN SHELF UI???<br />
</em></strong>Two reasons: firstly, I like wood. Secondly, the shelf-like UI allows us to put artworks. When you quickly scroll through your list of albums, you don&#8217;t have to time to read albums&#8217; names, but when you see images, you can recognize them quickly. Every time I need to use the iPod app while driving, I have to read titles&#8230; Now, I&#8217;m using Ecoute for iOS while driving, and I just need to do a quick look on my iPhone to select the artist or album I want to listen to.</p>
<p>I also wanted to add some cool social features into Ecoute for iOS (share using Twitter/Facebook and also last.fm), and some other features like <strong>play next</strong>, <strong>queue re-ordering</strong>, and so on.</p>
<p>&nbsp;</p>
<p><strong>Ecoute for Mac OS version 2.1</strong></p>
<p><strong>Ecoute </strong>for Mac OS is nice, but Lion is coming and Ecoute must change.<br />
We are going to Lion-ish Ecoute for the next version, and we will add the support of fullscreen for Lion and also a queue re-ordering feature.<br />
No major changes.. but it will change everything again anyway <img src='http://www.pixiapps.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>&nbsp;</p>
<p><em><strong>Now, what could we do with Ecoute for both Mac OS and iOS?<br />
</strong></em><strong>iCloud is the answer.</strong></p>
<p><strong>Apple </strong>has introduced <strong>iCloud</strong>. It&#8217;s free, and powerful, but requires<strong> OS X Lion </strong>and/or <strong>iOS 5.<br />
Ecoute </strong>for Mac OS and iOS will sync their current playlist together using iCloud. What&#8217;s the goal? Well, let&#8217;s imagine you are at home, listening to some music using Ecoute for Mac OS. You have to leave your house, but you want to keep listening to your music.. damn, you&#8217;re loosing your time because you have to launch the iPod app from your iOS device, and select what you were listening to.. but even the playing queue may not be same as the one you had on your Mac.<br />
Ecoute will then synchronize your playing queue, and once you&#8217;ll launch Ecoute for iOS, the playing queue will be restored on it. <strong>Magical.</strong></p>
<p>&nbsp;</p>
<p>Ecoute for OS X 2.1 should be released during this summer, and Ecoute for iOS should be released with iOS 5.</p>
<p>&nbsp;</p>
<p>Stay tuned.<br />
Louka Desroziers.</p>
<p>&nbsp;</p>
<p><strong><br />
</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.pixiapps.com/blog/?feed=rss2&#038;p=94</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Ecoute for iOS is delayed</title>
		<link>http://www.pixiapps.com/blog/?p=90</link>
		<comments>http://www.pixiapps.com/blog/?p=90#comments</comments>
		<pubDate>Tue, 07 Jun 2011 00:50:38 +0000</pubDate>
		<dc:creator>Louka Desroziers</dc:creator>
				<category><![CDATA[Ecoute]]></category>

		<guid isPermaLink="false">http://www.pixiapps.com/blog/?p=90</guid>
		<description><![CDATA[Dear readers, Today, Apple announced iOS 5. It has great new features and I&#8217;m already loving it. I took a look into the newest API for all the music stuff, and find some things very useful that I may use for Ecoute iOS. That&#8217;s why I decided to re-shedule the release of Ecoute for iOS. [...]]]></description>
			<content:encoded><![CDATA[<p>Dear readers,</p>
<p>Today, Apple announced iOS 5. It has great new features and I&#8217;m already loving it.<br />
I took a look into the newest API for all the music stuff, and find some things very useful that I may use for Ecoute iOS.<br />
That&#8217;s why I decided to re-shedule the release of Ecoute for iOS.</p>
<p>But don&#8217;t worry, it&#8217;s because I want it to be perfect! What I can say is that it will be independent to the iPod player, and will add some awesome features like &#8220;play next&#8221; and &#8220;queue re-ordering&#8221; <img src='http://www.pixiapps.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Stay tuned for this fall.<br />
Louka Desroziers.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pixiapps.com/blog/?feed=rss2&#038;p=90</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[Ecoute iOS Player] Final thoughts</title>
		<link>http://www.pixiapps.com/blog/?p=67</link>
		<comments>http://www.pixiapps.com/blog/?p=67#comments</comments>
		<pubDate>Sat, 30 Apr 2011 11:14:27 +0000</pubDate>
		<dc:creator>Louka Desroziers</dc:creator>
				<category><![CDATA[Ecoute]]></category>

		<guid isPermaLink="false">http://www.pixiapps.com/blog/?p=67</guid>
		<description><![CDATA[Dear users, &#160; I played a lot with the iPod Player and AVPlayer APIs. (Un)Fortunately, the best choice seems to be the AVPlayer one. &#160; Here&#8217;s the updated list of Advantages / Disadvantages of each player. &#160; AVPlayer Advantages Ecoute&#8217;s icon replaces the iPod&#8217;s icon in the audio multitask bar Possibility to implement a &#8216;play [...]]]></description>
			<content:encoded><![CDATA[<p>Dear users,</p>
<p>&nbsp;</p>
<p>I played a lot with the <em><strong>iPod Player</strong></em> and <em><strong>AVPlayer </strong></em>APIs.</p>
<p>(Un)Fortunately, the best choice seems to be the <strong>AVPlayer</strong> one.</p>
<p>&nbsp;</p>
<p>Here&#8217;s the updated list of Advantages / Disadvantages of each player.</p>
<p>&nbsp;</p>
<h1><strong>AVPlayer</strong></h1>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong></p>
<ul>
<li>
<h3>Advantages</h3>
</li>
</ul>
<p></strong></p>
<ol>
<li>Ecoute&#8217;s icon replaces the iPod&#8217;s icon in the audio multitask bar</li>
<li>Possibility to implement a &#8216;play next&#8217; feature</li>
<li>Possibility to implement a &#8216;shake to shuffle&#8217; feature</li>
<li>Possibility to manipulate the current playing queue</li>
<li>If there&#8217;s any bug with the Player, I can fix it</li>
</ol>
<ul>
<li>
<h3><strong>Disadvantages</strong></h3>
</li>
</ul>
<ol>
<li>The audio multitask bar does not display the current playing track name</li>
<li>Tracks metadata such as played count and  last played date won&#8217;t be synced with the iPod app (and thus won&#8217;t be synchronized with iTunes)</li>
</ol>
<p>&nbsp;</p>
<h1><strong>iPod Player</strong></h1>
<ul>
<li>
<h3><strong>Advantages</strong></h3>
</li>
</ul>
<ol>
<li>The current playing track name is displayed in the audio multitask bar</li>
<li>Tracks metadata (play count, last played date) are synced with the iPod, and thus with iTunes.</li>
<li>What is currently playing in Ecoute also displays as playing in the iPod app</li>
</ol>
<ul>
<li>
<h3><strong>Disadvantages</strong></h3>
</li>
</ul>
<ol>
<li>Ecoute&#8217;s icon won&#8217;t be displayed in the audio multitask bar (the iPod app icon will be used instead)</li>
<li>The &#8216;play next&#8217; feature won&#8217;t be implemented into Ecoute&#8230;</li>
<li>&#8230; as well as the &#8216;shake to shuffle&#8217; feature</li>
<li>If there&#8217;s any bug with the iPod player API (and <strong>there&#8217;s already a lot of bugs with it..</strong>), I won&#8217;t be able to fix it and we&#8217;ll have to wait for an iOS update.</li>
</ol>
<p>&nbsp;</p>
<p>The vote results have been reset. You can vote again below, but I doubt that the <strong>iPod player</strong> will be used due to the lack of features and the quantity of bugs.</p>
<p>If you&#8217;d like to vote for the <strong>iPod Player</strong>, please drop a comment.</p>
<p>&nbsp;</p>
Note: There is a poll embedded within this post, please visit the site to participate in this post's poll.
]]></content:encoded>
			<wfw:commentRss>http://www.pixiapps.com/blog/?feed=rss2&#038;p=67</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>[Ecoute iOS Player] It&#8217;s time to vote</title>
		<link>http://www.pixiapps.com/blog/?p=43</link>
		<comments>http://www.pixiapps.com/blog/?p=43#comments</comments>
		<pubDate>Sat, 23 Apr 2011 17:12:49 +0000</pubDate>
		<dc:creator>Louka Desroziers</dc:creator>
				<category><![CDATA[Ecoute]]></category>
		<category><![CDATA[PixiApps]]></category>

		<guid isPermaLink="false">http://www.pixiapps.com/blog/?p=43</guid>
		<description><![CDATA[Dear readers, I&#8217;m currently facing a dilemma concerning Ecoute for iOS. There&#8217;s two possible playing mode. I&#8217;ll try to list advantages and disadvantages of each. &#160; AVPlayer Advantages Ecoute&#8217;s icon replaces the iPod&#8217;s icon in the audio multitask bar Possibility to implement a &#8216;play next&#8217; feature Disadvantages The audio multitask bar does not display the [...]]]></description>
			<content:encoded><![CDATA[<p>Dear readers,</p>
<p>I&#8217;m currently facing a dilemma concerning Ecoute for iOS.</p>
<p>There&#8217;s two possible playing mode. I&#8217;ll try to list advantages and disadvantages of each.</p>
<p>&nbsp;</p>
<h1><strong>AVPlayer </strong></h1>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong></p>
<ul>
<li>
<h3>Advantages</h3>
</li>
</ul>
<p></strong></p>
<ol>
<li>Ecoute&#8217;s icon replaces the iPod&#8217;s icon in the audio multitask bar</li>
<li>Possibility to implement a &#8216;play next&#8217; feature</li>
</ol>
<ul>
<li>
<h3><strong>Disadvantages</strong></h3>
</li>
</ul>
<ol>
<li>The audio multitask bar does not display the current playing track name</li>
<li>I have to re-write all the player stuff (The final user doesn&#8217;t care about that, but it means that the official release date may be re-scheduled later)</li>
<li>Tracks metadata such as played count and  last played date won&#8217;t be synced with the iPod app (and thus won&#8217;t be synchronized with iTunes)</li>
</ol>
<p>&nbsp;</p>
<h1><strong>iPod Player</strong></h1>
<ul>
<li>
<h3><strong>Advantages</strong></h3>
</li>
</ul>
<ol>
<li>The current playing track name is displayed in the audio multitask bar</li>
<li>Tracks metadata (play count, last played date) are synced with the iPod, and thus with iTunes.</li>
<li>What is currently playing in Ecoute also displays as playing in the iPod app</li>
</ol>
<ul>
<li>
<h3><strong>Disadvantages</strong></h3>
</li>
</ul>
<ol>
<li>Ecoute&#8217;s icon won&#8217;t be displayed in the audio multitask bar (the iPod app icon will be used instead)</li>
<li>The &#8216;play next&#8217; feature won&#8217;t be implemented into Ecoute</li>
</ol>
<p>&nbsp;</p>
<p><strong><em>The &#8216;play next&#8217; feature is: </em></strong><em>&#8220;oooh, I&#8217;m currently listening to a song which is really nice! I&#8217;d like to ear the &#8216;live&#8217; version I also have into my library. Let&#8217;s play it after this one&#8221;</em><strong><em>.</em></strong></p>
<p><strong><em>In other words, the play next feature allows you to decide what should be played after the current song you are listening to. It can be an artist, or an album.. whatever you&#8217;d like to hear next is inserted into the current queue.</em></strong></p>
<p>&nbsp;</p>
<p><strong><em>AVPlayer / iPod Player  Audio Multitask bar</em></strong></p>
<p><strong><em>
<a href='http://www.pixiapps.com/blog/?attachment_id=61' title='Screen shot 2011-04-24 at 13.32.51'><img width="150" height="150" src="http://www.pixiapps.com/blog/wp-content/uploads/2011/04/Screen-shot-2011-04-24-at-13.32.51-150x150.png" class="attachment-thumbnail" alt="Screen shot 2011-04-24 at 13.32.51" title="Screen shot 2011-04-24 at 13.32.51" /></a>
<a href='http://www.pixiapps.com/blog/?attachment_id=62' title='Screen shot 2011-04-24 at 13.33.01'><img width="150" height="150" src="http://www.pixiapps.com/blog/wp-content/uploads/2011/04/Screen-shot-2011-04-24-at-13.33.01-150x150.png" class="attachment-thumbnail" alt="Screen shot 2011-04-24 at 13.33.01" title="Screen shot 2011-04-24 at 13.33.01" /></a>
<br />
</em></strong></p>
<div><strong><em><br />
</em></strong></div>
<p><em>It&#8217;s time for you to vote, and choose what you would prefer&#8230;</em></p>
Note: There is a poll embedded within this post, please visit the site to participate in this post's poll.
<p>&nbsp;</p>
<p><strong><em><br />
</em></strong></p>
<p>Sincerely yours,</p>
<p>Louka Desroziers.</p>
<p><strong>PS: Feel free to post a comment in order to justify your vote. Would be very interesting for me.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.pixiapps.com/blog/?feed=rss2&#038;p=43</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>&#8220;Hide icon from Dock&#8221;</title>
		<link>http://www.pixiapps.com/blog/?p=38</link>
		<comments>http://www.pixiapps.com/blog/?p=38#comments</comments>
		<pubDate>Sun, 17 Apr 2011 17:25:16 +0000</pubDate>
		<dc:creator>Louka Desroziers</dc:creator>
				<category><![CDATA[Ecoute]]></category>
		<category><![CDATA[PixiApps]]></category>

		<guid isPermaLink="false">http://www.pixiapps.com/blog/?p=38</guid>
		<description><![CDATA[Dear users, &#160; I plan to remove the &#8220;Hide icon from Dock&#8221; option. There&#8217;s 3 reasons: Apple never done that as an option in their apps&#8217; preferences, and I want to follow their guidelines once for all. This option is buggy with the Mac App Store (looks like this bug comes from Apple, and I [...]]]></description>
			<content:encoded><![CDATA[<p>Dear users,</p>
<p>&nbsp;</p>
<p>I plan to remove the &#8220;Hide icon from Dock&#8221; option.</p>
<p>There&#8217;s 3 reasons:</p>
<ul>
<li>Apple never done that as an option in their apps&#8217; preferences, and I want to follow their guidelines once for all.</li>
<li>This option is buggy with the Mac App Store (looks like this bug comes from Apple, and I doubt they will fix it)</li>
<li>I&#8217;m receiving too many mails about that. People who can&#8217;t activate it (MAS version), and people who lost Ecoute menus, and didn&#8217;t know there was a &#8216;menubar icon&#8217; instead.</li>
</ul>
<p>&nbsp;</p>
<p>So, if you really like this feature, you&#8217;ll have to do it by hand once Ecoute 2.0.8 will be released.</p>
<p>Fortunately, there&#8217;s an app for that:<a href="http://foggynoggin.com/dockdodger"> DockDodger</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.pixiapps.com/blog/?feed=rss2&#038;p=38</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ecoute drops Mac OS X Leopard support</title>
		<link>http://www.pixiapps.com/blog/?p=31</link>
		<comments>http://www.pixiapps.com/blog/?p=31#comments</comments>
		<pubDate>Thu, 07 Apr 2011 11:58:13 +0000</pubDate>
		<dc:creator>Louka Desroziers</dc:creator>
				<category><![CDATA[Ecoute]]></category>

		<guid isPermaLink="false">http://www.pixiapps.com/blog/?p=31</guid>
		<description><![CDATA[Dear users, &#160; I chose not to support Mac OS X Leopard anymore since Ecoute v2.0.7. The main reason is that it&#8217;s kind difficult to support both Leopard and Snow Leopard (And the upcoming Lion) in just one app. There&#8217;s so many differences between Leopard and Snow Leopard behaviors, especially with drawing stuff. I also [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Dear users</strong>,</p>
<p>&nbsp;</p>
<p>I chose not to support Mac OS X Leopard anymore since Ecoute v2.0.7.<br />
The main reason is that it&#8217;s kind difficult to support both Leopard and Snow Leopard (And the upcoming Lion) in just one app. There&#8217;s so many differences between Leopard and Snow Leopard behaviors, especially with drawing stuff.</p>
<p>I also plan to add many features in Ecoute 2.1 (especially a fullscreen mode for Lion), and that would be a nightmare to support both Leopard, Snow Leopard, and Lion.</p>
<p>&nbsp;</p>
<p>Hope 10.5 users will understand my point of view. But do not worry, the latest version compatible with Leopard is still there : <a href="http://www.pixiapps.com/ecoute/Ecoute_2.0.6.zip">http://www.pixiapps.com/ecoute/Ecoute_2.0.6.zip</a></p>
<p><del>At the same time, I removed the ability to buy the app from Paypal. You can still download the trial version, and purchase it using Paypal after the 15 days-trial, but you won&#8217;t be able to do it directly from our website. The Mac App Store should progressively be our main selling point.</del></p>
<p>I brought back the ability to purchase a license from Paypal, independently to the Mac App Store. The ability to purchase a license from Paypal should be restored later today.</p>
<p>&nbsp;</p>
<p><strong>Edit: </strong><em>I just want to clarify the situation about Mac OS X Leopard support dropped. As some of you may already know, I&#8217;m not working on PixiApps&#8217; projects everyday. I&#8217;ve got a full-time work (iOS Engineer ; not @ PixiApps), family, friends&#8230;</em></p>
<p><em>I&#8217;m doing my best for PixiApps: I sometimes work very late on our projects once I&#8217;m back home.</em></p>
<p><em>Sincerely yours,</em></p>
<p><strong>Louka Desroziers</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.pixiapps.com/blog/?feed=rss2&#038;p=31</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ecoute for Japan</title>
		<link>http://www.pixiapps.com/blog/?p=22</link>
		<comments>http://www.pixiapps.com/blog/?p=22#comments</comments>
		<pubDate>Fri, 18 Mar 2011 12:57:20 +0000</pubDate>
		<dc:creator>Louka Desroziers</dc:creator>
				<category><![CDATA[PixiApps]]></category>

		<guid isPermaLink="false">http://www.pixiapps.com/blog/?p=22</guid>
		<description><![CDATA[Dear readers, Due to the recent events in Japan, Starting now, Friday 18th March 2011 14:00 GMT+1, Ecoute is available for only $5 through Paypal only. This promo will end on Sunday 20th March 2011 20:00 GMT+1. &#160; All the money will be sent to the International Red Cross in order to give some hope to [...]]]></description>
			<content:encoded><![CDATA[<p>Dear readers,</p>
<p>Due to the recent events in Japan,</p>
<p>Starting now, Friday 18th March 2011 14:00 GMT+1, <strong><a href="http://ecouteapp.com">Ecoute</a> </strong>is available for only <strong>$5</strong> through <strong>Paypal only</strong>.</p>
<p>This promo will end on Sunday 20th March 2011 20:00 GMT+1.</p>
<p>&nbsp;</p>
<p>All the money will be sent to the <strong>International Red Cross</strong> in order to give some hope to Japanese families who have suffered from earthquakes and tsunami.</p>
<p>All my love goes to them, and I hope everything will be alright soon.</p>
<p>&nbsp;</p>
<p>Sincerely yours,</p>
<p>Louka Desroziers &#8211; Developer</p>
<p><strong>The promo is now over. $130 have been sent to the International Red Cross. <em>Better than nothing at all!</em></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.pixiapps.com/blog/?feed=rss2&#038;p=22</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ecoute for iOS</title>
		<link>http://www.pixiapps.com/blog/?p=12</link>
		<comments>http://www.pixiapps.com/blog/?p=12#comments</comments>
		<pubDate>Thu, 17 Mar 2011 22:12:53 +0000</pubDate>
		<dc:creator>Louka Desroziers</dc:creator>
				<category><![CDATA[PixiApps]]></category>

		<guid isPermaLink="false">http://www.pixiapps.com/blog/?p=12</guid>
		<description><![CDATA[Dear readers, As some of you may already know thanks to the Ecoute&#8217;s Twitter , we are currently working on Ecoute for iOS. There&#8217;s no really interests in making Ecoute for the iDevices, but I thought it would be great to bring something new to the iPod app. The current UI of the iPod app [...]]]></description>
			<content:encoded><![CDATA[<p>Dear readers,</p>
<p>As some of you may already know thanks to the <a href="http://www.twitter.com/ecouteapp" target="_blank">Ecoute&#8217;s Twitter</a> , we are currently working on <strong>Ecoute for iOS</strong>.<br />
There&#8217;s no really interests in making Ecoute for the iDevices, but I thought it would be great to bring something new to the iPod app.</p>
<p>The current UI of the iPod app is quite basic, that&#8217;s why we will essentially focus on the User Interface for Ecoute on iOS.</p>
<p>We will also craft some sharing features (Twitter/Facebook).</p>
<p>We have already done the landscape part: some kind of CoverFlow.</p>

<a href='http://www.pixiapps.com/blog/?attachment_id=13' title='IMG_0567'><img width="150" height="150" src="http://www.pixiapps.com/blog/wp-content/uploads/2011/03/IMG_0567-150x150.png" class="attachment-thumbnail" alt="IMG_0567" title="IMG_0567" /></a>
<a href='http://www.pixiapps.com/blog/?attachment_id=14' title='IMG_0568'><img width="150" height="150" src="http://www.pixiapps.com/blog/wp-content/uploads/2011/03/IMG_0568-150x150.png" class="attachment-thumbnail" alt="IMG_0568" title="IMG_0568" /></a>

<p>Stay tuned!</p>
<p>Louka Desroziers &#8211; Developer</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pixiapps.com/blog/?feed=rss2&#038;p=12</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Grand Opening</title>
		<link>http://www.pixiapps.com/blog/?p=4</link>
		<comments>http://www.pixiapps.com/blog/?p=4#comments</comments>
		<pubDate>Thu, 17 Mar 2011 18:44:19 +0000</pubDate>
		<dc:creator>Louka Desroziers</dc:creator>
				<category><![CDATA[PixiApps]]></category>

		<guid isPermaLink="false">http://www.pixiapps.com/blog/?p=4</guid>
		<description><![CDATA[Hi everyone, &#160; After many months, I finally decided to open a little blog in order to keep you updated about our upcoming releases. I also plan to use that blog in order to give some advices in Objective-C/Cocoa programming, and some snippets. &#160; Sincerely yours, Louka Desroziers &#8211; Developer]]></description>
			<content:encoded><![CDATA[<p>Hi everyone,</p>
<p>&nbsp;</p>
<p>After many months, I finally decided to open a little blog in order to keep you updated about our upcoming releases.</p>
<p>I also plan to use that blog in order to give some advices in Objective-C/Cocoa programming, and some snippets.</p>
<p>&nbsp;</p>
<p>Sincerely yours,</p>
<p>Louka Desroziers &#8211; Developer</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pixiapps.com/blog/?feed=rss2&#038;p=4</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

