<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><description>Evil Window Dog is a small iOS development studio from Greece. We create apps that we love!</description><title>Evil Window Dog blog</title><generator>Tumblr (3.0; @evilwindowdog)</generator><link>https://evilwindowdog.tumblr.com/</link><item><title>A Pixel Perfect Camera for Unity</title><description>&lt;figure data-orig-height="480" data-orig-width="912" data-orig-src="https://horizon.camera/static/images/blog/pixelperfectcamera.png"&gt;&lt;img src="https://64.media.tumblr.com/113ac9eb25a27ecb8e9cc674d1fbdd15/8d97e0b4f0f155eb-ab/s540x810/834b843faa391cf1e6a506ac6c90e2fd095b353c.png" title="Pixel Perfect Camera" data-orig-height="480" data-orig-width="912" data-orig-src="https://horizon.camera/static/images/blog/pixelperfectcamera.png"/&gt;&lt;/figure&gt;

&lt;p&gt;Lately, we&amp;rsquo;ve been working on our upcoming pixel-art 2D game, &lt;a href="http://www.evilwindowdog.com/projects/#lastpriestess"&gt;The Last Priestess&lt;/a&gt;. It&amp;rsquo;s actually an old project that we started building 3 years ago on &lt;a href="http://www.cocos2d.org/"&gt;Cocos 2D&lt;/a&gt;. At that time we were targeting iPhone 4/4S which meant that there would be a single resolution on which the game would run. Now, we are using Unity and we are targeting both iOS and Android. This means thousands of possible resolutions. &amp;ldquo;Why is this a problem?&amp;rdquo;, you may ask&amp;hellip;well, let me introduce you to our little friend!&lt;/p&gt;

&lt;p&gt;&lt;!-- more --&gt;&lt;/p&gt;

&lt;h4&gt;Texture filtering&lt;/h4&gt;

&lt;p&gt;In non-pixel art 2D games, a sprite can be rendered in any screen resolution using &lt;em&gt;bilinear filtering&lt;/em&gt;. When the sprite is rendered on screen, the screen pixels get their color values by interpolating between the actual texture color values. This produces a smooth result.&lt;/p&gt;

&lt;p&gt;If bilinear filtering is used in a pixel-art game, the result gets quite blurry. I will pause here to mention that retro games that used pixel art back in the day were &lt;strong&gt;meant&lt;/strong&gt; to be viewed blurry! The artists took advantage of the gaussian blur that the CRT phosphors offered for free to reduce the &amp;lsquo;blockiness&amp;rsquo; of the sprites (&lt;a href="http://screenshotcomparison.com/comparison/141327"&gt;take a look here&lt;/a&gt;). In order to view those retro games the way they are suppoded to, CRT-shaders &lt;a href="http://filthypants.blogspot.gr/2015/04/more-crt-shaders.html"&gt;have been developed&lt;/a&gt;, but this a story for another post.
&lt;img src="https://horizon.camera/static/images/blog/pixelart.jpg" alt="Retro games"/&gt;
&lt;em&gt;Left: How pixelart games are rendered today Right: How they use to look back in 90s&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Nowadays, we want our new pixel-art games to look really sharp and blocky! This is why, &lt;em&gt;nearest neighbor filtering&lt;/em&gt; (aka point filtering) is used to render sprites. With this technique, when a texture is sampled, the color value of the nearest texture pixel is returned. Another way to think about that is that each texture pixel gets rendered to multiple screen pixels.&lt;/p&gt;

&lt;h4&gt;The problem&lt;/h4&gt;

&lt;p&gt;But how may screen pixels is a texture pixel going to be rendered into? This is where the problem begins to unfold!&lt;/p&gt;

&lt;p&gt;Let&amp;rsquo;s imagine that we have a 4x4 pixels sprite that is being rendered on an 32x32 screen area. Each sprite pixel will render to an 8x8 region. In a less ideal scenario, the screen region could be 38X38, resulting in a 9.5x9.5 screen area (because 38/4 = 9.5). Since we render on non integer pixel lengths, this actually means that the region will sometimes be 9x9 or 10x10. Thus, some texture pixels will appear slightly bigger than others. Even worse, when a sprite moves (translates) the same sprite pixel could change between 10 and 9, creating a shimmering artifact.&lt;/p&gt;

&lt;h4&gt;The solution&lt;/h4&gt;

&lt;p&gt;We want the screen resolution to be a multiple of our texture&amp;rsquo;s size. However, we can&amp;rsquo;t control the resolution because each device has its own native resolution. What we can do is scale up or down our sprite so that each texture pixel renders to an &lt;strong&gt;integer&lt;/strong&gt; number of screen pixels. Another way to think about this is that we will zoom in or out of our 2D world a bit, in order to match a pixel-perfect ratio.&lt;/p&gt;

&lt;p&gt;The perfect candidate to apply this solution in Unity would be the orthographic camera. So, we created a simple script that adjusts the camera&amp;rsquo;s &lt;a href="https://docs.unity3d.com/ScriptReference/Camera-orthographicSize.html"&gt;size&lt;/a&gt; in order to achieve a pixel perfect result.&lt;/p&gt;

&lt;h4&gt;Pixel Perfect Camera script&lt;/h4&gt;

&lt;p&gt;Using our &lt;a href="http://u3d.as/uWQ"&gt;Pixel Perfect Camera script&lt;/a&gt;, you can set the ideal camera width or height in units (Yep, you can set the camera width if you want!). If you enable the pixel perfect mode, the script will set the camera&amp;rsquo;s size to the closest pixel perfect size to the one you have set.&lt;/p&gt;

&lt;h4&gt;HTML5 demo&lt;/h4&gt;

&lt;p&gt;Below you can take a look at a &lt;a href="https://horizon.camera/static/demos/ppc/"&gt;live demo&lt;/a&gt;, that makes use of some of our upcoming game&amp;rsquo;s assets at your browser. In the demo you can toggle the pixel perfect mode of the script and adjust the camera size.  When pixel perfect is disabled you can notice the following artifacts:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Shimmering artifacts in the falling word&lt;/li&gt;
&lt;li&gt;Distorted geometry of the pixelated grid&lt;/li&gt;
&lt;li&gt;Small details in the background, like windows, appear to change size&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;When pixel perfect mode is enabled, the camera size snaps in specific values. The artifacts disapper in these pixel-perfect sizes.&lt;/p&gt;

&lt;iframe src="https://horizon.camera/static/demos/ppc/" width="520" height="685" frameborder="0"&gt;&lt;/iframe&gt;

&lt;h4&gt;Get the add-on&lt;/h4&gt;

&lt;p&gt;Even though some other solutions exist in the Unity Asset store, our approach is simpler and has a few more features that were important for us. This is why we would like to share it with you with no charge!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;UPDATE&lt;/strong&gt;: In order to continue the support and development of Pixel Perfect Camera further, we decided to put a price tag on the addon.&lt;/p&gt;

&lt;p&gt;You can download our script from the &lt;a href="http://u3d.as/uWQ"&gt;Unity Asset store&lt;/a&gt;. We hope you find it useful!&lt;/p&gt;

&lt;p&gt;&lt;a href="http://u3d.as/uWQ"&gt;&lt;img src="https://horizon.camera/static/images/blog/unity-badge.png" alt=""/&gt;&lt;/a&gt;&lt;/p&gt;</description><link>https://evilwindowdog.tumblr.com/post/147292156801</link><guid>https://evilwindowdog.tumblr.com/post/147292156801</guid><pubDate>Tue, 12 Jul 2016 18:05:42 +0300</pubDate><category>pixel perfect</category><category>camera</category><category>unity</category><category>pixelart</category><category>gamedev</category><category>lastpriestess</category><dc:creator>petrakeas</dc:creator></item><item><title>Linkpack is now available!</title><description>&lt;p&gt;&lt;img src="https://horizon.camera/static/images/blog/linkpack-launch.jpg" alt="Linkpack launch"/&gt;&lt;/p&gt;

&lt;p&gt;We are really excited to announce that Linkpack is now available on the App Store!&lt;/p&gt;

&lt;p&gt;Linkpack helps you save web pages directly from your favorite browser (desktop or mobile) into your Dropbox account, so you can view and categorize them the way you want to. You can easily track your reading progress, listen to your saved articles and share folders of links (called Linkpacks) with the world.&lt;/p&gt;

&lt;p&gt;&lt;!-- more --&gt;&lt;/p&gt;

&lt;iframe width="560" height="315" src="//www.youtube.com/embed/sJhH1mBDx_Q?rel=0" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;

&lt;p&gt;With Linkpack your links are always in sync between the app and your Dropbox account, meaning you can use your Mac or PC to organize them as files and folders. You can also add links using the iOS or the &lt;a href="https://chrome.google.com/webstore/detail/linkpack/jgphmbdloidgdcjljgifdijpcdfjalno"&gt;Chrome&lt;/a&gt; extensions.&lt;/p&gt;

&lt;p&gt;Read your links using Readability view and let Linkpack track your progress, so that you can continue from where you left off. You can even enable narration and have the content read back to you while you are on the move.&lt;/p&gt;

&lt;p&gt;Finally, if you want to share a Linkpack with the world, the app will generate a unique URL that displays all the links in a beautiful page!&lt;/p&gt;

&lt;p&gt;Here are some sample Linkpacks, generated from the app:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.linkpack.io/lp/btKL22/"&gt;Hyperloop&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.linkpack.io/lp/yRWqpN/"&gt;No Man&amp;rsquo;s Sky&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.linkpack.io/lp/kyGSeQ/"&gt;The Apple Watch&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Linkpack is free and &lt;a href="https://itunes.apple.com/app/id953813916?mt=8"&gt;available on the App Store now&lt;/a&gt;! 😊&lt;/p&gt;</description><link>https://evilwindowdog.tumblr.com/post/137272884336</link><guid>https://evilwindowdog.tumblr.com/post/137272884336</guid><pubDate>Thu, 14 Jan 2016 10:20:34 +0200</pubDate><dc:creator>stelabouras</dc:creator></item><item><title>Horizon 2.0 launch aftermath</title><description>&lt;p&gt;&lt;img src="https://horizon.camera/static/images/blog/horizon-2.0-featured.jpg" alt="Horizon 2.0 featured on the App Store"/&gt;&lt;/p&gt;

&lt;p&gt;As you might know, &lt;a href="http://horizon.camera"&gt;Horizon 2.0&lt;/a&gt; was released four days ago on the App Store. We have yet received numerous emails, tweets and reviews revealing how much you love this update and the new features we have added to the app. We really want to thank you for that!&lt;/p&gt;

&lt;p&gt;While we are already working on the 2.0.1 update and we are getting ready for the &lt;a href="http://horizon.camera/android"&gt;Android release&lt;/a&gt;, we thought to take a moment and share with you three really good news that happened lately!&lt;/p&gt;

&lt;p&gt;&lt;!-- more --&gt;&lt;/p&gt;

&lt;h3&gt;Horizon 2.0 on the App Store&lt;/h3&gt;

&lt;p&gt;&lt;img src="https://horizon.camera/static/images/blog/split-second.jpg" alt="Split-Second Video collection"/&gt;&lt;/p&gt;

&lt;p&gt;Horizon update is now featured across the App Store in over 100 countries in various places.&lt;/p&gt;

&lt;p&gt;We are really honored to be part of the &amp;rsquo;&lt;a href="http://appstore.com/splitsecondvideo"&gt;Split Second Video&lt;/a&gt;&amp;rsquo; App Store collection, among apps like Vine and Instagram!&lt;/p&gt;

&lt;p&gt;&lt;a href="http://appstore.com/splitsecondvideo"&gt;&lt;img src="https://horizon.camera/static/images/blog/split-second-video.png" alt="Split Second Video promo image"/&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://itunes.apple.com/app/id778576249?mt=8"&gt;Horizon 2.0&lt;/a&gt; has been also featured in the &amp;lsquo;Best New Apps&amp;rsquo; section in the front-page of the App Store and also with a unique banner in the Photos &amp;amp; Videos category across the world.&lt;/p&gt;

&lt;p&gt;We are really excited &amp;amp; humbled by this! Getting showcased by Apple is always a way of knowing that we are doing the right thing, and also that we are providing you with be possible experience out there.&lt;/p&gt;

&lt;h3&gt;FbStart: Accelerate&lt;/h3&gt;

&lt;p&gt;&lt;img src="https://horizon.camera/static/images/blog/fbstart.jpg" alt="FbStart"/&gt;&lt;/p&gt;

&lt;p&gt;The news do not end there though! We are really excited to announce that we have been chosen by Facebook in its &lt;a href="https://developers.facebook.com/products/fb-start"&gt;FbStart Accelerate track&lt;/a&gt;! But what does that mean essentially?&lt;/p&gt;

&lt;p&gt;&lt;a href="https://developers.facebook.com/products/fb-start"&gt;FbStart&lt;/a&gt; will give us the opportunity to use a large number of services (from &lt;a href="http://proto.io/"&gt;prototyping&lt;/a&gt; and &lt;a href="http://www.adobe.com/"&gt;design&lt;/a&gt;, to &lt;a href="http://appurify.com/"&gt;testing&lt;/a&gt; and &lt;a href="http://www.desk.com/"&gt;customer care&lt;/a&gt;), which will allow us to continuously improve our product even faster!&lt;/p&gt;

&lt;h3&gt;The Summit 2014 @ Dublin&lt;/h3&gt;

&lt;p&gt;&lt;img src="https://horizon.camera/static/images/blog/thesummit.jpg" alt="The Summit"/&gt;&lt;/p&gt;

&lt;p&gt;Last but not least, we have one more announcement to make! We will be exhibiting Horizon during &amp;rsquo;&lt;a href="http://summitdublin.com/"&gt;The Summit&lt;/a&gt;&amp;rsquo; in November this year at Dublin, Ireland!&lt;/p&gt;

&lt;p&gt;&amp;rsquo;&lt;a href="http://summitdublin.com/"&gt;The Summit&lt;/a&gt;&amp;rsquo; is one of the world’s most influential and international tech events out there, with attendees coming from companies like Google, Microsoft, Facebook, Dropbox.&lt;/p&gt;

&lt;p&gt;If you happen to be visiting 'The Summit&amp;rsquo;, come and join us! We will be more that happy to chat with any of you in person!&lt;/p&gt;</description><link>https://evilwindowdog.tumblr.com/post/92140214431</link><guid>https://evilwindowdog.tumblr.com/post/92140214431</guid><pubDate>Fri, 18 Jul 2014 15:16:00 +0300</pubDate><category>horizon</category><category>horizon 2.0</category><category>featured</category><category>fbstart</category><category>the summit</category><category>app store</category><dc:creator>stelabouras</dc:creator></item><item><title>Horizon 2.0 is here!</title><description>&lt;p&gt;&lt;img src="https://horizon.camera/static/images/blog/horizon-2.0-launch.jpg" alt="Horizon 2.0: New Presets"/&gt;&lt;/p&gt;

&lt;p&gt;The 14th of July is here, and this can only mean one thing: &lt;a href="https://itunes.apple.com/app/id778576249?mt=8"&gt;Horizon 2.0&lt;/a&gt;!&lt;/p&gt;

&lt;p&gt;So go ahead and unlock the screen of your iPhone, iPod Touch or iPad and open &lt;a href="https://itunes.apple.com/app/id778576249?mt=8"&gt;Horizon&lt;/a&gt;. You will be greeted by our updated tutorial, which will guide you through the new features of the 2.0 update!&lt;/p&gt;

&lt;p&gt;&lt;!-- more --&gt;&lt;/p&gt;

&lt;p&gt;While &lt;em&gt;Photo Mode, 2K and 60 / 120 FPS video recording&lt;/em&gt; are the highlighted features of this update, we have made quite a lot of changes almost everywhere!&lt;/p&gt;

&lt;p&gt;You can read the full Horizon 2.0 change-log below. We went ahead and highlighted the most important changes for you.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Photo mode&lt;/strong&gt;! Tap the photo button or swipe anywhere on the screen to switch to photo mode!&lt;/li&gt;
&lt;li&gt;You can also &lt;strong&gt;take photos while capturing your video&lt;/strong&gt;!&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;60 FPS&lt;/strong&gt; (720p) support for iPhone 5/5S, iPad 2/Mini/Mini Retina/Air users!&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;2K resolution &amp;amp; 120 FPS&lt;/strong&gt; / 720p (Slow Motion) support for iPhone 5S devices!&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Lossless zoom with the all new ‘Crisp’ resolutions&lt;/strong&gt; at iPhone 5S.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;New Locked mode: Auto&lt;/strong&gt;. This mode chooses the best locked orientation automagically!&lt;/li&gt;
&lt;li&gt;A lot of interface changes that introduce you to the new features!&lt;/li&gt;
&lt;li&gt;The leveling modes have been renamed and revamped: &lt;strong&gt;Meet Flex, Rotate and Locked mode&lt;/strong&gt;!&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;You can now select modes in a much smarter way while capturing&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Toggle flash on/off even while recording&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;The library button now takes you directly to your last captured photo or video&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Do you want to massively delete photos and videos from the photo library? Tap the &amp;lsquo;Select&amp;rsquo; button, then simply swipe to select your items&lt;/strong&gt;!&lt;/li&gt;
&lt;li&gt;The filters have been updated, now working both on video &amp;amp; photo modes.&lt;/li&gt;
&lt;li&gt;The produced photos and videos have correct metadata.&lt;/li&gt;
&lt;li&gt;Metadata are now saved correctly with your photos &amp;amp; videos to your photo library&lt;/li&gt;
&lt;li&gt;Bug fixes and performance improvements&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Oh, and one more thing…&lt;/p&gt;

&lt;p&gt;We have a whole new dedicated website just for Horizon on &lt;strong&gt;&lt;a href="http://horizon.camera"&gt;horizon.camera&lt;/a&gt;&lt;/strong&gt;!&lt;/p&gt;

&lt;p&gt;&lt;img src="https://horizon.camera/static/images/blog/horizoncamera.jpg" alt="Horizon.camera website"/&gt;&lt;/p&gt;

&lt;p&gt;You can visit &lt;a href="http://horizon.camera"&gt;Horizon.camera&lt;/a&gt; now, and &lt;a href="http://horizon.camera/#features"&gt;learn more about Horizon&lt;/a&gt;, read &lt;a href="http://horizon.camera/quotes"&gt;User Reviews&lt;/a&gt;, the &lt;a href="http://horizon.camera/quotes"&gt;Press coverage&lt;/a&gt; and the &lt;a href="http://horizon.camera/quotes"&gt;awards&lt;/a&gt; and also play with the &lt;a href="http://horizon.camera/demo"&gt;interactive demo&lt;/a&gt;!&lt;/p&gt;

&lt;p&gt;And don&amp;rsquo;t forget: If you enjoy using Horizon, please take a minute to leave a nice review or rating in the App Store. If you’ve reviewed or rated a previous version of Horizon please resubmit it as ratings are reset with each new update.&lt;/p&gt;

&lt;p&gt;Thank you for your support!&lt;/p&gt;</description><link>https://evilwindowdog.tumblr.com/post/91733954571</link><guid>https://evilwindowdog.tumblr.com/post/91733954571</guid><pubDate>Mon, 14 Jul 2014 13:09:00 +0300</pubDate><category>horizon</category><category>horizon 2.0</category><category>update</category><category>launch</category><category>website</category><category>new</category><dc:creator>stelabouras</dc:creator></item><item><title>Introducing: 60 &amp; 120 FPS, 2K recording and more!</title><description>&lt;p&gt;&lt;img src="https://horizon.camera/static/images/blog/horizon2-newpresets.jpg" alt="Horizon 2.0: New Presets"/&gt;&lt;/p&gt;

&lt;p&gt;You might have thought by now that the upcoming Horizon 2.0 is all about the &lt;a href="http://blog.evilwindowdog.com/post/91037183656/horizon2-photo-mode"&gt;Photo Mode&lt;/a&gt;, but this is just the peak of the iceberg as far as new features are concerned!&lt;/p&gt;

&lt;p&gt;Beginning with the 2.0 update you will have the option to shoot horizontal videos in &lt;strong&gt;60 &amp;amp; 120 FPS&lt;/strong&gt; as well as capture your moments in a staggering &lt;strong&gt;2K&lt;/strong&gt; resolution!&lt;/p&gt;

&lt;p&gt;&lt;!-- more --&gt;&lt;/p&gt;

&lt;p&gt;Our goal is to make the selection of these new modes as fast and as streamlined as possible, so with just one tap you will be able to choose between them (as shown in the screenshot below) and get the result you want without messing around in the Settings!&lt;/p&gt;

&lt;p&gt;&lt;img src="https://horizon.camera/static/images/blog/horizon2-fastswitch.jpg" alt="Horizon 2.0: Fast Switch selection"/&gt;&lt;/p&gt;

&lt;p&gt;The 60 FPS mode produces videos with more natural movement whereas the 120 FPS gives you the ability to add slow motion your creations!&lt;/p&gt;

&lt;p&gt;For the 120 FPS slow motion videos we added an extra functionality in Horizon&amp;rsquo;s build-in video library: &lt;strong&gt;Tap &amp;amp; hold for slow motion playback&lt;/strong&gt;! You will now have the power to slow time while your video is playing, just by tapping &amp;amp; holding your finger on the screen. Release it and your video goes back to normal playback speed.&lt;/p&gt;

&lt;p&gt;As for the 2K option, we now let you capture horizontal videos in 2592x1936 resolution at 30 FPS, which isn&amp;rsquo;t even available in the default Camera app!&lt;/p&gt;

&lt;p&gt;For iPhone5S users we have yet another ace upon our sleeves: &lt;strong&gt;Crisp modes&lt;/strong&gt;! Crisp modes take the full 2592x1936 stream from your camera and use it to produce 720p &amp;amp; 1080p videos, resulting in a much more cleaner, or as we prefer to say &lt;em&gt;crispier&lt;/em&gt;, output.&lt;/p&gt;

&lt;p&gt;All those new modes are available on Apple devices that can support them hardware-wise. The 120 FPS and 2K recording modes are available only on iPhone5S and 60 FPS recording can be found at iPad Mini, iPad Air, iPad Mini Retina, iPhone 5, iPhone 5C and iPhone 5S.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://bit.ly/horizonapp"&gt;Start shooting horizontally now&lt;/a&gt;!&lt;/p&gt;</description><link>https://evilwindowdog.tumblr.com/post/91251518586</link><guid>https://evilwindowdog.tumblr.com/post/91251518586</guid><pubDate>Wed, 09 Jul 2014 16:52:00 +0300</pubDate><category>horizon</category><category>horizon 2.0</category><category>2k</category><category>60 fps</category><category>120 fps</category><category>slow motion</category><category>crisp</category><dc:creator>stelabouras</dc:creator></item><item><title>Introducing: Photo Mode</title><description>&lt;p&gt;&lt;img src="https://horizon.camera/static/images/blog/horizon2-photomode.jpg" alt="Horizon 2.0: Photo Mode"/&gt;&lt;/p&gt;

&lt;p&gt;With just one week away from the launch of the first huge update of Horizon, let&amp;rsquo;s start talking about the cool new features.&lt;/p&gt;

&lt;p&gt;With the new 2.0 version you can switch between Video and Photo modes just by tapping on the appropriate button or by swiping your finger anywhere on the screen.&lt;/p&gt;

&lt;p&gt;&lt;!-- more --&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src="https://horizon.camera/static/images/blog/horizon2-photomodebutton.jpg" alt="Horizon 2.0: Photo Button"/&gt;&lt;/p&gt;

&lt;p&gt;Photo mode allows you to shoot beautiful full resolution horizontal photos, but wait; there&amp;rsquo;s more! You can also capture horizontal photos while shooting your video. Just tap on the photo button while recording!&lt;/p&gt;

&lt;p&gt;Photo Mode and photo capturing while recording will be supported by any device that Horizon already runs on, available for the back as well as the front cameras!&lt;/p&gt;

&lt;p&gt;Oh, and we also have &lt;a href="https://vine.co/v/MPA3grViJLh"&gt;a Vine video&lt;/a&gt; for it:&lt;/p&gt;

&lt;iframe class="vine-embed" src="https://vine.co/v/MPA3grViJLh/embed/simple" width="480" height="480" frameborder="0"&gt;&lt;/iframe&gt;

&lt;script async src="//platform.vine.co/static/scripts/embed.js" charset="utf-8"&gt;&lt;/script&gt;

&lt;p&gt;Last but not least, &lt;a href="https://itunes.apple.com/app/id778576249?mt=8"&gt;you might want to pick Horizon now&lt;/a&gt;, as we have &lt;strong&gt;dropped its price from $1.99 to $0.99 (-50%)&lt;/strong&gt; in order for you to be among the first to experience the power of the Photo Mode!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://itunes.apple.com/app/id778576249?mt=8"&gt;Start shooting horizontally now&lt;/a&gt;!&lt;/p&gt;</description><link>https://evilwindowdog.tumblr.com/post/91037183656</link><guid>https://evilwindowdog.tumblr.com/post/91037183656</guid><pubDate>Mon, 07 Jul 2014 13:45:00 +0300</pubDate><category>horizon</category><category>photo mode</category><category>horizon 2.0</category><category>update</category><category>feature</category><dc:creator>stelabouras</dc:creator></item><item><title>Announcing Horizon 2.0 launch date</title><description>&lt;p&gt;&lt;img src="https://horizon.camera/static/images/blog/horizon-2.0.jpg" alt="Horizon 2.0"/&gt;&lt;/p&gt;

&lt;p&gt;We’ve been quite busy the past few months. After the last update back in April, we took a step back and read all of your feature requests since launch. It was quite apparent that most of you wanted cool &amp;amp; powerful new functionality to be added to Horizon, and hey, that was exactly what we wanted too!&lt;/p&gt;

&lt;p&gt;&lt;!-- more --&gt;&lt;/p&gt;

&lt;p&gt;So we set out to work on an update that would integrate all those new features and yet more, some of which aren’t even available on the default Camera app! We also had to rewrite most of the ‘backend’ logic of the app to make it faster and more reliable, with tighter integration to the latest iOS libraries.&lt;/p&gt;

&lt;p&gt;After two months of hard work, we are finally there. We call this update ‘&lt;strong&gt;Horizon 2.0&lt;/strong&gt;’ due to the extensive list of the new features and we will launch it exactly six months (time does run fast, huh?) after &lt;a href="http://blog.evilwindowdog.com/post/73291880159/horizon-is-now-available"&gt;the initial release of Horizon&lt;/a&gt;: July 14th, 2014.&lt;/p&gt;

&lt;p&gt;This update will be &lt;strong&gt;free&lt;/strong&gt; for all of our existing users as a thank you note for your ongoing support!&lt;/p&gt;

&lt;p&gt;In the following days we will introduce you to every single change built in Horizon 2.0, so stay tuned!&lt;/p&gt;

&lt;p&gt;Till then, mark the date: &lt;strong&gt;14th of July 2014&lt;/strong&gt;.&lt;/p&gt;</description><link>https://evilwindowdog.tumblr.com/post/90548165581</link><guid>https://evilwindowdog.tumblr.com/post/90548165581</guid><pubDate>Wed, 02 Jul 2014 14:18:16 +0300</pubDate><category>horizon</category><category>update</category><category>horizon 2.0</category><category>upcoming</category><category>features</category><dc:creator>stelabouras</dc:creator></item><item><title>Extreme Horizon experiment: iPhone on Spinning Car Wheel</title><description>&lt;p&gt;&lt;img src="https://horizon.camera/static/images/blog/extremecarexperiment.jpg" alt="Extreme car experiment with Horizon"/&gt;&lt;/p&gt;

&lt;p&gt;As we are getting even closer to the release date of the next major Horizon update, we decided to create a small experiment.&lt;/p&gt;

&lt;p&gt;We all know by now that &lt;a href="http://evilwindowdog.com/horizon"&gt;Horizon&lt;/a&gt; shoots perfect horizontal videos, even if you rotate your device while shooting! We wanted to stress Horizon&amp;rsquo;s capabilities by using it under extreme circumstances.&lt;/p&gt;

&lt;p&gt;&lt;!-- more --&gt;&lt;/p&gt;

&lt;h3&gt;Experiment Setup&lt;/h3&gt;

&lt;p&gt;We attached an iPhone on the front wheel of a car using duct tape and some wires, placed its front face camera at the center of the wheel and took it for a ride! Car&amp;rsquo;s top speed reached up to &lt;strong&gt;50 km/h (31 mph)&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Also, by making use of &lt;em&gt;AirPlay&lt;/em&gt;, we were able to monitor the iPhone camera feed on our Macbook in real time.&lt;/p&gt;

&lt;p&gt;&lt;img src="https://horizon.camera/static/images/blog/carwheel.jpg" alt="Car wheel photo"/&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src="https://horizon.camera/static/images/blog/airplay.jpg" alt="AirPlay"/&gt;&lt;/p&gt;

&lt;h3&gt;Analysis&lt;/h3&gt;

&lt;p&gt;So, what is the conclusion of this simple yet exciting experiment?&lt;/p&gt;

&lt;p&gt;Horizon was able to maintain the orientation of the video, but after a while it had to deal with something called &lt;em&gt;&lt;a href="http://en.wikipedia.org/wiki/Centrifugal_force"&gt;centrifugal force&lt;/a&gt;&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;This bad fella confused the iPhone&amp;rsquo;s device motion algorithms into thinking that the gravity vector was constantly changing, so the iPhone couldn&amp;rsquo;t figure out the real gravity vector.&lt;/p&gt;

&lt;p&gt;Moreover, the lines of the resulting video look curved and create a cool wobbling effect.&lt;/p&gt;

&lt;p&gt;This is because of the iPhone&amp;rsquo;s &lt;em&gt;&amp;ldquo;&lt;a href="http://en.wikipedia.org/wiki/Rolling_shutter"&gt;Rolling shutter&lt;/a&gt;&amp;rdquo;&lt;/em&gt; camera: when an iPhone captures a picture, it scans the camera input top to bottom and this takes time. Because the rotation speed of the camera is close to the scanning speed, straight lines turn to curved ones!&lt;/p&gt;

&lt;p&gt;&lt;img src="https://horizon.camera/static/images/blog/iphone-loop.gif" alt="Resulting video"/&gt;&lt;/p&gt;

&lt;h3&gt;Result&lt;/h3&gt;

&lt;p&gt;We are working on an updated version of the experiment that will probably produce better results under this extreme situation!&lt;/p&gt;

&lt;p&gt;Here&amp;rsquo;s the short clip of our little experiment in Vine and also the video that was recorded by Horizon from the front wheel.&lt;/p&gt;

&lt;iframe class="vine-embed" src="https://vine.co/v/MIdwOQzi5ZD/embed/simple" width="600" height="600" frameborder="0"&gt;&lt;/iframe&gt;

&lt;script async src="//platform.vine.co/static/scripts/embed.js" charset="utf-8"&gt;&lt;/script&gt;

&lt;iframe width="640" height="480" src="//www.youtube.com/embed/5q43pbx716Q" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;

&lt;p&gt;We will be back with more experiments soon! Till then stay tuned for the upcoming Horizon update for iOS!&lt;/p&gt;

&lt;p&gt;&lt;a href="http://eepurl.com/t07ID"&gt;Subscribe to our newsletter&lt;/a&gt;, follow us on &lt;a href="http://twitter.com/evilwindowdog"&gt;Twitter&lt;/a&gt; and &lt;a href="http://facebook.com/evilwindowdog"&gt;Facebook&lt;/a&gt;, and stay up to day with all of our upcoming releases and experiments!&lt;/p&gt;</description><link>https://evilwindowdog.tumblr.com/post/88969373226</link><guid>https://evilwindowdog.tumblr.com/post/88969373226</guid><pubDate>Mon, 16 Jun 2014 19:59:00 +0300</pubDate><category>horizon</category><category>experiment</category><category>extreme</category><category>horizontal</category><category>car</category><category>wheel</category><category>iphone</category><category>spin</category><category>rotation</category><dc:creator>stelabouras</dc:creator></item><item><title>Horizon, an Amazing Video App</title><description>&lt;p&gt;&lt;img src="https://horizon.camera/static/images/blog/amazingvideoapps.jpg" alt="Amazing Photo &amp;amp; Video Apps"/&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://itunes.apple.com/app/id778576249"&gt;Horizon&lt;/a&gt; is now 50% off as part of the App Store&amp;rsquo;s &amp;ldquo;&lt;a href="http://www.appstore.com/amazingphotoandvideoapps"&gt;Amazing Photo &amp;amp; Video Apps&lt;/a&gt;&amp;rdquo; promotion, alongside apps like &lt;a href="https://itunes.apple.com/gr/app/spark-camera/id649470858?mt=8"&gt;Spark Camera&lt;/a&gt;, &lt;a href="https://itunes.apple.com/gr/app/waterlogue/id764925064?mt=8"&gt;Waterlogue&lt;/a&gt;, &lt;a href="https://itunes.apple.com/gr/app/letterglow-stylish-text-design/id650715760?mt=8"&gt;LetterGlow&lt;/a&gt; and &lt;a href="https://itunes.apple.com/gr/app/fragment/id767104707?mt=8"&gt;Fragment&lt;/a&gt;!&lt;/p&gt;

&lt;p&gt;&lt;!-- more --&gt;&lt;/p&gt;

&lt;p&gt;This is a limited time offer, so hurry and get &lt;a href="http://itunes.apple.com/app/id778576249"&gt;Horizon&lt;/a&gt; now!&lt;/p&gt;</description><link>https://evilwindowdog.tumblr.com/post/82377103711</link><guid>https://evilwindowdog.tumblr.com/post/82377103711</guid><pubDate>Fri, 11 Apr 2014 14:49:04 +0300</pubDate><category>horizon</category><category>amazing photo video apps</category><category>bundle</category><category>featured</category><category>apple</category><category>itunes</category><dc:creator>stelabouras</dc:creator></item><item><title>Automating iTunes Connect metadata management</title><description>&lt;p&gt;&lt;img src="http://raw.github.com/evilwindowdog/itunesfs/master/README_PIPELINE.png" alt="pipeline"/&gt;&lt;/p&gt;

&lt;p&gt;While getting ready for the latest version of Horizon that supports seven more languages, we had to update our App Store related assets: app description, screenshots, keywords, &amp;ldquo;What&amp;rsquo;s New&amp;rdquo; section etc. Using iTunes Connect interface slowed down the process considerably and did now allow for an easy way to manage and localize all those assets.&lt;/p&gt;

&lt;p&gt;&lt;!-- more --&gt;&lt;/p&gt;

&lt;p&gt;This is why we developed and used &lt;em&gt;itunesfs&lt;/em&gt;, short for &amp;ldquo;iTunes File System&amp;rdquo;. It is a command line tool, written in Python 3, that lets us work directly on our assets and organize them in a simple file hierarchy. It takes care of generating the final .itmsp package that can be uploaded to iTunes Connect.&lt;/p&gt;

&lt;p&gt;This approach makes the task of localizing the assets extremely easy, as every language is located inside a folder containing the corresponding files. The task can be automated even further by incorporating the &lt;a href="https://github.com/transifex/transifex-client"&gt;Transifex command line tools&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;If you are overwhelmed by maintaining a localized iOS app, you can &lt;a href="https://pypi.python.org/pypi/itunesfs/"&gt;download &lt;em&gt;itunefs&lt;/em&gt; package from PyPi&lt;/a&gt; or install it using pip:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;$ pip3 install itunesfs&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;After organising your files in the asset folder, &lt;em&gt;itunesfs&lt;/em&gt; is as simple as running this:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;$ itunesfs &amp;lt;path to folder&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;This tool can be improved even further by adding support for in app purchases, leaderboards etc. If you feel like contributing, here is &lt;a href="https://github.com/evilwindowdog/itunesfs/"&gt;the project&amp;rsquo;s repo on Github&lt;/a&gt;.&lt;/p&gt;</description><link>https://evilwindowdog.tumblr.com/post/79872712100</link><guid>https://evilwindowdog.tumblr.com/post/79872712100</guid><pubDate>Mon, 17 Mar 2014 17:24:00 +0200</pubDate><dc:creator>petrakeas</dc:creator></item><item><title>Spring update!</title><description>&lt;figure data-orig-height="600" data-orig-width="1140" data-orig-src="https://horizon.camera/static/images/blog/horizon-spring.jpg"&gt;&lt;img src="https://64.media.tumblr.com/1837ce85a663c152ed8f27298ef9200b/tumblr_inline_pmxkufl96m1qz60uw_540.jpg" alt="Horizon Free" data-orig-height="600" data-orig-width="1140" data-orig-src="https://horizon.camera/static/images/blog/horizon-spring.jpg"/&gt;&lt;/figure&gt;

&lt;p&gt;March is here at last and this is what is keeping us busy this period!&lt;/p&gt;

&lt;p&gt;&lt;!-- more --&gt;&lt;/p&gt;

&lt;h3&gt;Horizon 1.2 update&lt;/h3&gt;

&lt;p&gt;&lt;figure data-orig-height="600" data-orig-width="1140" data-orig-src="https://horizon.camera/static/images/blog/horizon-multilang.jpg"&gt;&lt;img src="https://64.media.tumblr.com/646fc5f19ac8a7df6d5b0d5d115662c8/tumblr_inline_pmxkufmTmm1qz60uw_540.jpg" alt="Horizon Free" data-orig-height="600" data-orig-width="1140" data-orig-src="https://horizon.camera/static/images/blog/horizon-multilang.jpg"/&gt;&lt;/figure&gt;&lt;/p&gt;

&lt;p&gt;We have just released the &lt;strong&gt;1.2 update&lt;/strong&gt; in the App Store, &lt;a href="https://itunes.apple.com/app/id778576249?mt=8"&gt;so go get it now&lt;/a&gt;!&lt;/p&gt;

&lt;p&gt;Here are some highlights of the new version:&lt;/p&gt;

&lt;ul&gt;&lt;li&gt;&lt;strong&gt;Multilingual support&lt;/strong&gt;! Horizon now speaks seven more languages: French, Spanish, Japanese, Chinese, Italian, Russian and German!&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Tons of bug fixes&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;A new option for the ‘Disabled’ mode&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;64 bit support&lt;/strong&gt;: Do you own an iPhone 5S, iPad Air or iPad Mini with Retina Display? Then this one is for you!&lt;/li&gt;
&lt;li&gt;And did I mention that there are &lt;strong&gt;a lot of bug fixes&lt;/strong&gt;? Oh, did I? OK!&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Also, during the process of &lt;em&gt;fully&lt;/em&gt; localizing our app (we ❤ &lt;a href="http://transifex.com"&gt;Transifex&lt;/a&gt;), we localized the iTunes metadata as well (Title, Description, Keywords etc) and we developed &amp;amp; open sourced a way to easily organise and update your iTunes metadata from the console. We call our system &lt;strong&gt;iTunes File System&lt;/strong&gt; (or &lt;strong&gt;itunesfs&lt;/strong&gt; for shorts), is written in Python 3 and it’s ready to serve your needs: &lt;a href="https://github.com/evilwindowdog/itunesfs"&gt;Github Repo&lt;/a&gt;. You can also find &lt;strong&gt;itunesfs&lt;/strong&gt; on pip for an easier installation: &lt;code&gt;sudo pip3 install itunesfs&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;That said, we are even more excited for the 1.3 version of Horizon, that will include even more new features!&lt;/p&gt;

&lt;h3&gt;Android Version in the works&lt;/h3&gt;

&lt;p&gt;&lt;figure data-orig-height="600" data-orig-width="1140" data-orig-src="https://horizon.camera/static/images/blog/horizon-android.jpg"&gt;&lt;img src="https://64.media.tumblr.com/710b98f9fca7b11f2264e10dbc19fd49/tumblr_inline_pmxkufqpOK1qz60uw_540.jpg" alt="Horizon Free" data-orig-height="600" data-orig-width="1140" data-orig-src="https://horizon.camera/static/images/blog/horizon-android.jpg"/&gt;&lt;/figure&gt;&lt;/p&gt;

&lt;p&gt;The Android build is going strong! &lt;a href="https://www.facebook.com/evilwindowdog/photos/a.349994365038984.83413.316377135067374/669889496382801/?type=1&amp;amp;stream_ref=10"&gt;We have already released a teaser image&lt;/a&gt; and we hope to have more screenshots, photos and videos from the Android development process really soon!&lt;/p&gt;

&lt;p&gt;Till next time, people!&lt;/p&gt;</description><link>https://evilwindowdog.tumblr.com/post/79449099506</link><guid>https://evilwindowdog.tumblr.com/post/79449099506</guid><pubDate>Thu, 13 Mar 2014 12:27:00 +0200</pubDate><category>horizon</category><category>1.2 update</category><category>multilingual</category><category>android</category><dc:creator>stelabouras</dc:creator></item><item><title>Horizon is FREE!</title><description>&lt;figure data-orig-height="600" data-orig-width="1140" data-orig-src="https://horizon.camera/static/images/blog/horizon-free.jpg"&gt;&lt;img src="https://64.media.tumblr.com/5a5e59c9891533db0fccf5012f6b8890/tumblr_inline_pa99i4MI3W1qz60uw_540.jpg" data-orig-height="600" data-orig-width="1140" data-orig-src="https://horizon.camera/static/images/blog/horizon-free.jpg"/&gt;&lt;/figure&gt;

&lt;p&gt;We are serious on making Vertical Videos a thing of the past. This is why we set Horizon free for a limited time. &lt;a href="https://itunes.apple.com/app/id778576249?mt=8"&gt;Go get it now&lt;/a&gt; and spread the word!&lt;/p&gt;

&lt;p&gt;&lt;!-- more --&gt;&lt;/p&gt;</description><link>https://evilwindowdog.tumblr.com/post/78538260271</link><guid>https://evilwindowdog.tumblr.com/post/78538260271</guid><pubDate>Tue, 04 Mar 2014 13:36:00 +0200</pubDate><category>horizon</category><category>free</category><category>vvs</category><category>vertical videos syndrome</category><category>vertical videos</category><dc:creator>stelabouras</dc:creator></item><item><title>Horizon: 1 month later</title><description>&lt;figure data-orig-height="600" data-orig-width="1140" data-orig-src="https://horizon.camera/static/images/blog/horizon-featured.jpg"&gt;&lt;img src="https://64.media.tumblr.com/cf1f604ea91c6c2cb2718bb611e8bec4/tumblr_inline_pmxi571DDO1qz60uw_540.jpg" data-orig-height="600" data-orig-width="1140" data-orig-src="https://horizon.camera/static/images/blog/horizon-featured.jpg"/&gt;&lt;/figure&gt;

&lt;p&gt;What a month! To say that Horizon had a pretty good launch it would really be an understatement. As you &lt;a href="http://blog.evilwindowdog.com/post/73517733073/horizon-launch"&gt;may have read&lt;/a&gt; throughout the Web, Horizon was a top story in numerous technology websites and still, one month after its launch, we are really excited to read new reviews from major media outlets every day!&lt;/p&gt;

&lt;p&gt;&lt;!-- more --&gt;&lt;/p&gt;

&lt;p&gt;Horizon is also featured by Apple in various ways (Best New Apps, Promotional Banner, Twitter account), mentioned by famous technology personas such as John Gruber and Robert Scoble and even appeared in foreign mainstream media such as ABCNews, BBC and Spiegel!&lt;/p&gt;

&lt;p&gt;We couldn&amp;rsquo;t be more excited and more humbled at the same time by this response.&lt;/p&gt;

&lt;p&gt;As for our plans, we just released the &lt;a href="http://www.evilwindowdog.com/horizon/"&gt;updated version of Horizon mini-site&lt;/a&gt;, which now lists a lot of the quotes we received the past month.&lt;/p&gt;

&lt;p&gt;We have also released the 1.1 update to the App Store, which includes a huge number of optimizations and fixes, making the app more stable and producing even smoother videos!&lt;/p&gt;

&lt;p&gt;We also plan to release the 1.2 update the following weeks, which will feature even more improvements and we are already working on the Android release as well as the next &amp;ldquo;2.0&amp;rdquo; update of the app which will include exciting new features!&lt;/p&gt;

&lt;p&gt;Now get out there and shoot horizontal videos!&lt;/p&gt;</description><link>https://evilwindowdog.tumblr.com/post/77057082280</link><guid>https://evilwindowdog.tumblr.com/post/77057082280</guid><pubDate>Tue, 18 Feb 2014 12:26:00 +0200</pubDate><category>horizon</category><category>ewd</category><category>horizontal videos</category><category>vvs</category><category>ios</category><category>android</category><category>website</category><category>quotes</category><dc:creator>stelabouras</dc:creator></item><item><title>Horizon's phenomenal launch!</title><description>&lt;figure data-orig-height="600" data-orig-width="1140" data-orig-src="https://horizon.camera/static/images/blog/horizon-ranks.jpg"&gt;&lt;img src="https://64.media.tumblr.com/1aa8d7ed2464acd757e2d19093900ceb/tumblr_inline_pmzbmqzWFP1qz60uw_540.jpg" data-orig-height="600" data-orig-width="1140" data-orig-src="https://horizon.camera/static/images/blog/horizon-ranks.jpg"/&gt;&lt;/figure&gt;

&lt;p&gt;&lt;a href="https://itunes.apple.com/app/id778576249?mt=8"&gt;Horizon&lt;/a&gt; already counts two days of life on the App Store and the reception was something we couldn&amp;rsquo;t even dream of! Horizon took over the App Stores around the world by storm!&lt;/p&gt;

&lt;p&gt;&lt;!-- more --&gt;&lt;/p&gt;

&lt;p&gt;All major media outlets throughout the world have covered its launch with raving reviews. Below you can find some of them:&lt;/p&gt;

&lt;h4&gt;&lt;a href="http://techcrunch.com/2014/01/14/horizon-shoots-all-of-your-videos-in-landscape-no-matter-how-you-hold-your-phone/"&gt;Techcrunch&lt;/a&gt;: &amp;ldquo;I’ve been using the app for a good chunk of the morning, and it’s pretty solid.&amp;rdquo;&lt;/h4&gt;

&lt;h4&gt;&lt;a href="http://www.engadget.com/2014/01/14/horizon-ios-app-horizontal-video/"&gt;Engadget&lt;/a&gt;: “We just wish Apple and Google had bundled this as standard.&amp;ldquo;&lt;/h4&gt;

&lt;h4&gt;&lt;a href="http://gizmodo.com/brilliant-overdue-app-forces-your-phone-to-take-horizo-1501848420"&gt;Gizmodo&lt;/a&gt;: &amp;quot;Brilliant, Overdue App Forces Your Phone to Take Horizontal Videos&amp;rdquo;&lt;/h4&gt;

&lt;h4&gt;&lt;a href="http://www.tuaw.com/2014/01/14/horizon-is-a-new-video-recording-app-thatll-eliminate-portrait/"&gt;TUAW&lt;/a&gt;: &amp;ldquo;Love the UI: it’s intuitive and easy&amp;rdquo;&lt;/h4&gt;

&lt;h4&gt;&lt;a href="http://thenextweb.com/apps/2014/01/14/horizon-ios-means-vertical-videos/"&gt;The Next Web&lt;/a&gt;: &amp;ldquo;Horizon for iOS means no more vertical videos&amp;rdquo;&lt;/h4&gt;

&lt;h4&gt;&lt;a href="http://appadvice.com/appnn/2014/01/new-horizon-camera-app-for-ios-may-just-be-the-cure-for-vertical-video-syndrome"&gt;AppAdvice&lt;/a&gt;: &amp;ldquo;You owe it to yourself to check out the new Horizon app for iOS.&amp;rdquo;&lt;/h4&gt;

&lt;p&gt;After the first reviews came in, the word about Horizon spread on social media like wildfire! We weren&amp;rsquo;t even able to track all the tweets and posts about our app!&lt;/p&gt;

&lt;p&gt;Being at the top spot in a lot of App Stores might feel really good, but at the same time it makes us realise the responsibility we have to every and each one of you to deliver an even better product in every future update!&lt;/p&gt;

&lt;p&gt;We have collected your feedback and we have already mapped out some really cool new features for the next update, so stay tuned!&lt;/p&gt;

&lt;p&gt;Horizon is here to stay! :)&lt;/p&gt;</description><link>https://evilwindowdog.tumblr.com/post/73517733073</link><guid>https://evilwindowdog.tumblr.com/post/73517733073</guid><pubDate>Thu, 16 Jan 2014 17:59:00 +0200</pubDate><category>horizon</category><category>launch</category><category>media</category><category>social</category><category>ewd</category><dc:creator>stelabouras</dc:creator></item><item><title>Horizon is now available!</title><description>&lt;figure data-orig-height="600" data-orig-width="1140" data-orig-src="https://horizon.camera/static/images/blog/horizon-app.jpg"&gt;&lt;img src="https://64.media.tumblr.com/0c4126af5b3253d38bad4e7295539667/tumblr_inline_pkjcshcSMx1qz60uw_540.jpg" data-orig-height="600" data-orig-width="1140" data-orig-src="https://horizon.camera/static/images/blog/horizon-app.jpg"/&gt;&lt;/figure&gt;

&lt;p&gt;That&amp;rsquo;s it people, after months of development and preparation, our latest app, &lt;strong&gt;&lt;a href="https://itunes.apple.com/app/id778576249?mt=8"&gt;Horizon&lt;/a&gt;&lt;/strong&gt; is out &amp;amp; about!&lt;/p&gt;

&lt;p&gt;You can find &lt;a href="https://itunes.apple.com/app/id778576249?mt=8"&gt;Horizon on the App Store&lt;/a&gt; for  -as a special 50% launch date discount- download it and start recording your horizontal videos now!&lt;/p&gt;

&lt;p&gt;&lt;!-- more --&gt;&lt;/p&gt;

&lt;iframe width="640" height="360" src="//www.youtube.com/embed/roag3p3g1r4" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;

&lt;p&gt;You can also check out our &lt;a href="http://www.youtube.com/watch?v=roag3p3g1r4"&gt;launch trailer&lt;/a&gt; and the &lt;a href="http://evilwindowdog.com/horizon"&gt;updated website of our app&lt;/a&gt; and tell us what do you think on &lt;a href="http://twitter.com/evilwindowdog"&gt;Twitter&lt;/a&gt;, &lt;a href="http://facebook.com/evilwindowdog"&gt;Facebook&lt;/a&gt;, &lt;a href="http://google.com/+evilwindowdog"&gt;Google+&lt;/a&gt; or in the comments below!&lt;/p&gt;

&lt;p&gt;We are really excited about this launch and we must thank every single one of you for your support!&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Note: If you can&amp;rsquo;t find Horizon in your local App Store today (14/1), check back some hours later. Apple releases the app automatically based on your local timezone, so in the first hours the app will appear in some countries and gradually become available globally.&lt;/em&gt;&lt;/p&gt;</description><link>https://evilwindowdog.tumblr.com/post/73291880159</link><guid>https://evilwindowdog.tumblr.com/post/73291880159</guid><pubDate>Tue, 14 Jan 2014 10:16:07 +0200</pubDate><category>horizon</category><category>app store</category><category>ios</category><category>video</category><category>camera</category><category>vvs</category><category>vertical</category><category>horizontal</category><dc:creator>stelabouras</dc:creator></item><item><title>Mark the day: 14 Jan 14!</title><description>&lt;figure data-orig-height="600" data-orig-width="1140" data-orig-src="https://horizon.camera/static/images/blog/horizon-launchdate.jpg"&gt;&lt;img src="https://64.media.tumblr.com/610817f0f3c5184fec541e5880ab48e0/tumblr_inline_pn03txZo1d1qz60uw_540.jpg" data-orig-height="600" data-orig-width="1140" data-orig-src="https://horizon.camera/static/images/blog/horizon-launchdate.jpg"/&gt;&lt;/figure&gt;

&lt;p&gt;&lt;a href="http://evilwindowdog.com/horizon"&gt;Horizon&lt;/a&gt; launch is just around the corner! In four days we will release our latest project to the App Store and change the way you shoot videos with your iOS device forever!&lt;/p&gt;

&lt;p&gt;&lt;!-- more --&gt;&lt;/p&gt;

&lt;p&gt;We will also unveil our launch trailer, the new Horizon website and lots of info from the development process!&lt;/p&gt;

&lt;p&gt;So mark your calendars people, cause you don&amp;rsquo;t want to miss this launch!&lt;/p&gt;</description><link>https://evilwindowdog.tumblr.com/post/72870434582</link><guid>https://evilwindowdog.tumblr.com/post/72870434582</guid><pubDate>Fri, 10 Jan 2014 16:42:00 +0200</pubDate><category>horizon</category><category>launch</category><category>progress</category><category>video</category><category>camera</category><dc:creator>stelabouras</dc:creator></item><item><title>Horizon Website is up &amp; running!</title><description>&lt;figure data-orig-height="500" data-orig-width="1140" data-orig-src="https://horizon.camera/static/images/blog/horizon-site.jpg"&gt;&lt;img src="https://64.media.tumblr.com/9f30ad9336c47092f8aff9f9a1964468/tumblr_inline_pmxkuelHy11qz60uw_540.jpg" data-orig-height="500" data-orig-width="1140" data-orig-src="https://horizon.camera/static/images/blog/horizon-site.jpg"/&gt;&lt;/figure&gt;

&lt;p&gt;Time to reveal &lt;a href="http://evilwindowdog.com/horizon"&gt;Horizon website&lt;/a&gt;!&lt;/p&gt;

&lt;p&gt;If you visit &lt;a href="http://evilwindowdog.com/horizon"&gt;Horizon&lt;/a&gt; you will see an interactive demo of our application running inside your browser, where you will be able to directly compare the output video of our upcoming app with that of the default Camera application of iOS.&lt;/p&gt;

&lt;p&gt;&lt;!-- more --&gt;&lt;/p&gt;

&lt;p&gt;In the technical side of things, the mini-site makes a heavy use of HTML5 &lt;a href="http://diveintohtml5.info/video.html"&gt;video&lt;/a&gt;, &lt;a href="http://diveintohtml5.info/canvas.html"&gt;canvas&lt;/a&gt; and &lt;a href="https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Using_CSS_transforms"&gt;CSS3 3D transforms&lt;/a&gt; to make the experience as smooth as it can be.&lt;/p&gt;

&lt;p&gt;As for the app itself, we are literally one step before launch &amp;amp; we just started &lt;a href="http://blog.evilwindowdog.com/post/70080318016/shooting-the-launch-trailer"&gt;editing the launch trailer&lt;/a&gt;!&lt;/p&gt;

&lt;p&gt;If you want to follow our progress, &lt;a href="http://evilwindowdog.com/horizon"&gt;enter your email at the Horizon website&lt;/a&gt; and you will always stay up to date with the latest scoop!&lt;/p&gt;</description><link>https://evilwindowdog.tumblr.com/post/70580578643</link><guid>https://evilwindowdog.tumblr.com/post/70580578643</guid><pubDate>Fri, 20 Dec 2013 14:43:33 +0200</pubDate><category>horizon</category><category>website</category><category>video</category><category>canvas</category><category>css</category><category>interactive</category><category>vvs</category><category>horizontal</category><dc:creator>stelabouras</dc:creator></item><item><title>Shooting the launch trailer</title><description>&lt;figure data-orig-height="600" data-orig-width="1140" data-orig-src="https://horizon.camera/static/images/blog/horizon-trailer.jpg"&gt;&lt;img src="https://64.media.tumblr.com/74b01a9a4b911891ae866941652aeb12/tumblr_inline_pmxkuf2S7M1qz60uw_540.jpg" data-orig-height="600" data-orig-width="1140" data-orig-src="https://horizon.camera/static/images/blog/horizon-trailer.jpg"/&gt;&lt;/figure&gt;

&lt;p&gt;As we get closer to &lt;a href="http://evilwindowdog.com/horizon"&gt;Horizon&lt;/a&gt; launch, we thought it would be really cool to shoot a trailer for the app! But just like all of the other Evil Window Dog aspects, we decided to improve the overall process in order to give Horizon the trailer it deserves!&lt;/p&gt;

&lt;p&gt;&lt;!-- more --&gt;&lt;/p&gt;

&lt;p&gt;So we brought &lt;a href="http://redtapephoto.com"&gt;Stelios Stefanidis from RedTape Photography&lt;/a&gt;, a few friends and occupied a cafe in downtown Thessaloniki (&lt;a href="https://www.facebook.com/pages/one-sweet-daychocolat-bar-olympou-57/376016165752515"&gt;One Sweet Day&lt;/a&gt;) for more than three hours!&lt;/p&gt;

&lt;p&gt;Although it was our first time &amp;amp; we did a hell of a lot of retakes, we really enjoyed the whole process!&lt;/p&gt;

&lt;p&gt;As you can see from the &lt;a href="https://horizon.camera/static/images/blog/horizon-trailer.jpg"&gt;picture above&lt;/a&gt;, as well as those on our &lt;a href="https://www.facebook.com/media/set/?set=a.640463452658739.1073741825.316377135067374&amp;amp;type=1"&gt;Facebook Page&lt;/a&gt;, we took several scenes that may or may not be used in the final trailer, but they will definitely appear one way or another!&lt;/p&gt;

&lt;p&gt;Our next task is probably even trickier: The editing &amp;amp; production of the trailer will be begin right away, so stay tuned for more behind the scenes photos!&lt;/p&gt;</description><link>https://evilwindowdog.tumblr.com/post/70080318016</link><guid>https://evilwindowdog.tumblr.com/post/70080318016</guid><pubDate>Sun, 15 Dec 2013 16:13:00 +0200</pubDate><category>horizon</category><category>trailer</category><category>launch trailer</category><category>video shooting</category><dc:creator>stelabouras</dc:creator></item><item><title>And the name is…</title><description>&lt;figure data-orig-height="738" data-orig-width="1140" data-orig-src="https://horizon.camera/static/images/blog/horizon-announcement.jpg"&gt;&lt;img src="https://64.media.tumblr.com/d9c1e9e20ea2f426be8b1a9e8f8c1f50/tumblr_inline_pn03txKXWn1qz60uw_540.jpg" data-orig-height="738" data-orig-width="1140" data-orig-src="https://horizon.camera/static/images/blog/horizon-announcement.jpg"/&gt;&lt;/figure&gt;

&lt;p&gt;I guess it’s time to share with you what we have been working on the past few months.&lt;/p&gt;

&lt;p&gt;We teased you a &lt;a href="http://blog.evilwindowdog.com/post/65985160295/vvs-psa"&gt;couple&lt;/a&gt; of &lt;a href="https://vine.co/v/hQXbvpE3hEX"&gt;times&lt;/a&gt; on our upcoming app and today we will unveil more information!&lt;/p&gt;

&lt;p&gt;&lt;!-- more --&gt;&lt;/p&gt;

&lt;p&gt;First up, its name!&lt;/p&gt;

&lt;h2&gt;Horizon&lt;/h2&gt;

&lt;p&gt;&lt;a href="http://evilwindowdog.com/horizon"&gt;Horizon&lt;/a&gt;, is essentially a camera application for iOS devices, designed to capture horizontal videos. You won’t have to care on how you hold your Apple device; the resulting video will be just right!&lt;/p&gt;

&lt;h3&gt;Huh, what do you mean “just right”?&lt;/h3&gt;

&lt;p&gt;As we have already mentioned, &lt;a href="http://blog.evilwindowdog.com/post/65985160295/vvs-psa"&gt;Vertical Videos is a plague of our days&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Horizon, not only makes recording vertical videos practically impossible (really, you can try), it also allows users to record horizontal videos while tilting their device!&lt;/p&gt;

&lt;h3&gt;I want more!&lt;/h3&gt;

&lt;p&gt;Hold your horses, lad! We will reveal more really soon, till then the name &amp;amp; a screenshot of the interface will do, won’t they? :)&lt;/p&gt;

&lt;p&gt;If you wanna know more about Horizon and be the first to catch the future updates &amp;amp; the upcoming release, &lt;a href="http://evilwindowdog.com/horizon"&gt;sign up for our Horizon newsletter&lt;/a&gt;!&lt;/p&gt;</description><link>https://evilwindowdog.tumblr.com/post/69589560989</link><guid>https://evilwindowdog.tumblr.com/post/69589560989</guid><pubDate>Tue, 10 Dec 2013 16:46:00 +0200</pubDate><category>horizon</category><category>vertical videos</category><category>vvs</category><category>app</category><category>ios</category><category>record</category><category>vertical videos syndrome</category><category>capture</category><dc:creator>stelabouras</dc:creator></item><item><title>Vertical Videos, a Public Service Announcement</title><description>&lt;figure data-orig-height="500" data-orig-width="1140" data-orig-src="https://horizon.camera/static/images/blog/vvs.jpg"&gt;&lt;img src="https://64.media.tumblr.com/24b05992cf62c091f46e7d83c22e3463/tumblr_inline_pmxppzMUlg1qz60uw_540.jpg" data-orig-height="500" data-orig-width="1140" data-orig-src="https://horizon.camera/static/images/blog/vvs.jpg"/&gt;&lt;/figure&gt;

&lt;p&gt;There is no delicate way of saying this: A plague is going around in the past few years and you may already be a victim of it.&lt;/p&gt;

&lt;p&gt;If you own a smartphone then you probably suffer from the &amp;rsquo;&lt;a href="http://www.deseretnews.com/article/865588830/Vertical-Video-Syndrome-driving-some-people-crazy.html"&gt;Vertical Videos Syndrome&lt;/a&gt;&amp;rsquo; (&lt;a href="http://knowyourmeme.com/memes/vertical-video-syndrome"&gt;VVS&lt;/a&gt; for shorts).&lt;/p&gt;

&lt;p&gt;&lt;!-- more --&gt;&lt;/p&gt;

&lt;p&gt;The problem started appearing with the release of &lt;a href="http://en.wikipedia.org/wiki/IPhone_3GS"&gt;iPhone 3GS&lt;/a&gt; and it spread like wild fire.&lt;/p&gt;

&lt;p&gt;Since then, the majority of smartphone owners shoot videos while holding their phone in portrait mode, thus creating vertical videos, the worst type of video a human being can lay eyes on.&lt;/p&gt;

&lt;p&gt;You may have already watched the following PSA which raises awareness for VVS, or even the &amp;lsquo;Turn Your Phone!&amp;rsquo; song that was released this summer.&lt;/p&gt;

&lt;iframe width="640" height="360" src="https://www.youtube.com/embed/Bt9zSfinwFA" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;

&lt;iframe width="640" height="360" src="https://www.youtube.com/embed/NtQWp_31wuI" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;

&lt;p&gt;Quite a bit of an issue, huh?&lt;/p&gt;

&lt;p&gt;Wait, it gets worse: VVS is only one of the problems caused by holding your phone wrong while shooting videos. What happens when you rotate your phone while shooting? Or shooting in an angle? Your video gets irrevocably destroyed.&lt;/p&gt;

&lt;p&gt;As we are already victims of this very plague, we set out to fix the whole mess &amp;amp; we came up with a pretty elegant solution!&lt;/p&gt;

&lt;p&gt;We are really excited about our upcoming product and we can&amp;rsquo;t wait to show you the result of our hard work!&lt;/p&gt;

&lt;p&gt;Till then, note this: You shouldn&amp;rsquo;t have to care on how you hold your phone.&lt;/p&gt;

&lt;p&gt;VVS can &amp;amp; will be stopped!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Transmission ended.&lt;/strong&gt;&lt;/p&gt;</description><link>https://evilwindowdog.tumblr.com/post/65985160295</link><guid>https://evilwindowdog.tumblr.com/post/65985160295</guid><pubDate>Mon, 04 Nov 2013 11:53:00 +0200</pubDate><category>vvs</category><category>vv</category><category>vertical videos syndrome</category><category>vertical videos</category><category>psa</category><dc:creator>stelabouras</dc:creator></item></channel></rss>
