<?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>Zennaware » Blog &#187; News</title>
	<atom:link href="http://www.zennaware.com/blog/category/news/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zennaware.com/blog</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sat, 24 Dec 2011 10:47:50 +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>Taking the Time to Get it Right</title>
		<link>http://www.zennaware.com/blog/2011/12/taking-the-time-to-get-it-right/</link>
		<comments>http://www.zennaware.com/blog/2011/12/taking-the-time-to-get-it-right/#comments</comments>
		<pubDate>Sat, 24 Dec 2011 10:47:50 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Cornerstone]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.zennaware.com/blog/?p=2149</guid>
		<description><![CDATA[In October we wrote about our plans to add support for Subversion 1.7 to Cornerstone 2.7. It was our hope that this would be ready by the end of 2011. Unfortunately this won’t be the case. We knew that supporting 1.7 would take more work than previous versions. We described it as “disruptive” but we didn’t [...]]]></description>
			<content:encoded><![CDATA[<p>In October <a href="http://www.zennaware.com/blog/2011/10/subversion-1_7/">we wrote about our plans</a> to add support for Subversion 1.7 to Cornerstone 2.7. It was our hope that this would be ready by the end of 2011.</p>
<p>Unfortunately this won’t be the case.</p>
<p>We knew that supporting 1.7 would take more work than previous versions. We described it as “disruptive” but we didn’t anticipate just <em>how</em> disruptive it would be.</p>
<h3 id="theproblem:incompatibleapisperformanceregressionandsqlite">The Problem: Incompatible APIs, Performance Regression and SQLite</h3>
<p>Subversion 1.7 includes a complete re-write of the code that manages working copies. While the Subversion developers have attempted to hide the differences between the old and new implementations they were unfortunately unable to do so with 100% compatibility.</p>
<p>For example, 1.7’s re-implementation of the working copy status API used by Cornerstone is now <em>10x slower</em> than the same API in Subversion 1.6. It provides the same output, but what previously completed in 200 ms now take over 2 seconds. We don’t think this kind of performance degredation is acceptable and spent some time migrating Cornerstone to use newer and faster APIs.</p>
<p>But the most disruptive change results from Subversion’s use of SQLite.</p>
<p>Cornerstone makes heavy use of threading – almost all interactions with Subversion take place on background threads to prevent the user interface from blocking – and SQLite places strict constraints on how it&#8217;s data structures can (or, more accurately can’t) be shared between threads. As a result, certain data structures that could be shared between threads prior to 1.7 (and had worked absolutely fine in 1.3, 1.4, 1.5 and 1.6) now raise errors as soon as they&#8217;re accessed from different threads.</p>
<h3 id="thesolution:buildingaplatformforfuturedevelopment">The Solution: Building a Platform for Future Development</h3>
<p>We came to the conclusion that we would have to re-think certain core aspects of how Cornerstone interacts with Subversion. The constraints introduced by SQLite make it substantially more complicated to use Subversion’s APIs from multiple threads. We ended up having to re-design the way in which key data structures are allocated and managed by Cornerstone.</p>
<p>This has taken a lot of work. We&#8217;ve been working on this at full-tilt for the last four months, dedicating all available resources to re-building key areas of the application to serve as a solid foundation for future development.</p>
<p>We&#8217;ve also totally re-written Cornerstone’s security stack to enable this new design, and have done so in a way that enables key improvements such as support for certificate-based authentication and temporary (i.e. non-persistent) credentials.</p>
<p>Finally, we&#8217;ve also re-thought how Cornerstone should store its credentials and have replaced key areas of the Subversion authentication stack with alternatives that use the Mac OS X keychain.</p>
<p>These are big and worthwhile improvements. And rather than take shortcuts or rush these changes, we&#8217;ll be taking the time to get them right.</p>
<p>We now plan to release Cornerstone 2.7 before the end of February 2012.</p>
<p>Thanks for your patience.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zennaware.com/blog/2011/12/taking-the-time-to-get-it-right/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Subversion 1.7</title>
		<link>http://www.zennaware.com/blog/2011/10/subversion-1_7/</link>
		<comments>http://www.zennaware.com/blog/2011/10/subversion-1_7/#comments</comments>
		<pubDate>Wed, 12 Oct 2011 13:46:53 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Cornerstone]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.zennaware.com/blog/?p=2141</guid>
		<description><![CDATA[Yesterday the Apache project released Subversion 1.7, a major update to our favorite version control system. This new version brings with it some much-requested improvements that will affect the lives of Cornerstone users in a positive way. The most significant improvements in 1.7 are: Improved Working Copy Metadata Storage All versions of Subversion prior to [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday the Apache project released Subversion 1.7, a major update to our favorite version control system. This new version brings with it some much-requested improvements that will affect the lives of Cornerstone users in a positive way.</p>
<p>The most significant improvements in 1.7 are:</p>
<ul>
<li>
<p><strong>Improved Working Copy Metadata Storage</strong></p>
<p>All versions of Subversion prior to 1.7 have stored housekeeping information about a working copy&#8217;s contents in hidden <code>.svn</code> folders distributed throughout the working copy. While not normally visible, these pesky folders have nonetheless been the cause of issues for users. In particular, moving or removing <code>.svn</code> folders (or the folders that contain them) with Finder or Terminal could result in Subversion (and Cornerstone by extension) no longer being able to access that working copy.</p>
<p>While tools such as Finder and Terminal should still not be used to move and rename working copy items (you should <em>always</em> use Cornerstone or another Subversion app to do so), Subversion should be able to better handle such situations.</p>
<p>So where did the data in the <code>.svn</code> folders go? It&#8217;s still there, but it&#8217;s now stored in a single hidden <code>.svn</code> folder at the top of your working copy.</p>
<p>But what about performance?</p>
<p>The Subversion developers claim that the new storage format should significantly improve performance. However, our own experience doesn&#8217;t support this. If anything, our testing shows 1.7 to be <em>slower</em> than 1.6, with real-world working copies being between 30% and 100% slower than 1.6.</p>
<p>The bottom line? While the new metadata format in 1.7 should simplify working copy management &#8211; and make it more robust &#8211; it won&#8217;t necessarily be any faster.</p>
</li>
<li>
<p><strong>Improved HTTP Performance</strong></p>
<p>To be honest, Subversion&#8217;s HTTP network performance has always been, ahem, less than stellar, particularly on high-latency networks. If you use a hosted Subversion repository on the other side of the planet, then you&#8217;ll be accustomed to 3+ second roundtrip times for even the simplest actions, such as listing the contents of a repository folder or comparing a working copy against the repository. And heavyweight actions such as commits and updates can take much longer.</p>
<p>This poor performance stems from Subversion&#8217;s support for the WebDav DeltaV specification. DeltaV&#8217;s failure to gain any significant traction meant that the promised inter-operability benefits were never realized, leaving only the overhead of a chatty, complex and inefficient protocol.</p>
<p>1.7 implements a new, simplified HTTP protocol, which promises to reduce the time it takes to perform most common actions. The catch? You&#8217;ll need to upgrade your server to 1.7 so that it can speak this new protocol.</p>
</li>
</ul>
<p>If you are interested in finding out more about Subversion 1.7 then we recommend that you take a look at the <a href="http://subversion.apache.org/docs/release-notes/1.7.html">Subversion 1.7 release notes</a>.</p>
<h2 id="whenwillcornerstonesupport1.7">When Will Cornerstone Support 1.7?</h2>
<p>We will roll out full support for 1.7 with the release of Cornerstone 2.7, which we plan to release before the end of 2011.</p>
<p>We have been working with 1.7 for quite some time. While 1.7 is not a particularly significant release in terms of end-user features, it is a disruptive release for Cornerstone. Re-writing &#8211; re-architecting even &#8211; certain aspects of the application to incorporate Subversion 1.7 is going to take some time, but we believe it will be worth the wait.</p>
<h2 id="whataboutcornerstone1.5">What About Cornerstone 1.5?</h2>
<p>Active development of Cornerstone 1.x ceased with the release of 1.5 in September 2009, over two years ago. </p>
<p>Much water has flowed under the bridge since then, with over 4,000 changes committed to Cornerstone during the development of 2.0 and the subsequent releases of 2.1, 2.2, 2.5 and 2.6. Cornerstone 2 has diverged so far from 1.5 that it&#8217;s impossible for us to target both versions simultaneously with the integration of 1.7.</p>
<p>Therefore we will not be adding 1.7 support to Cornerstone 1, instead concentrating our efforts on getting 1.7 support into the hands of Cornerstone 2 users as soon as possible.</p>
<p>If you are still using Cornerstone 1.x and want to enjoy the benefits of Subversion 1.7 support then you will need to upgrade to Cornerstone 2.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zennaware.com/blog/2011/10/subversion-1_7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>August Discount</title>
		<link>http://www.zennaware.com/blog/2011/07/august-discount/</link>
		<comments>http://www.zennaware.com/blog/2011/07/august-discount/#comments</comments>
		<pubDate>Sun, 31 Jul 2011 08:32:43 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Cornerstone]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.zennaware.com/blog/?p=2050</guid>
		<description><![CDATA[We are excited to announce that we will be discounting Cornerstone 2 from the standard price of $59 to just $39 in August. The offer will be valid from August 1st to August 31st. Please note that the following restrictions apply: Full Licenses Only The discount only applies to full licenses. The pricing remains the [...]]]></description>
			<content:encoded><![CDATA[<p>We are excited to announce that we will be discounting Cornerstone 2 from the standard price of $59 to just $39 in August. The offer will be valid from August 1st to August 31st.</p>
<p>Please note that the following restrictions apply:</p>
<ul>
<li>
<p><strong>Full Licenses Only</strong></p>
<p>The discount only applies to full licenses. The pricing remains the same for upgrade licenses.</p>
</li>
<li>
<p><strong>Volume Discounts</strong></p>
<p>We are not offering volume discounts on full Cornerstone 2 licenses while this offer is valid. Volume discounts remain in effect for upgrade licenses.</p>
</li>
<li>
<p><strong>Other Discounts and Offers</strong></p>
<p>We are also not offering student or non-profit discounts on Cornerstone 2 licenses while this offer is valid. However, student and non-profit discounts are still available for upgrade licenses.</p>
<p>Other offers valid during August 2011 are also limited to upgrade licenses.</p>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.zennaware.com/blog/2011/07/august-discount/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>All Good Things Must Come to an End</title>
		<link>http://www.zennaware.com/blog/2011/07/all-good-things-must-come-to-an-end/</link>
		<comments>http://www.zennaware.com/blog/2011/07/all-good-things-must-come-to-an-end/#comments</comments>
		<pubDate>Thu, 28 Jul 2011 16:12:22 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Cornerstone]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.zennaware.com/blog/?p=1985</guid>
		<description><![CDATA[It is our policy to support the current and previous versions of OS X in any given release. For example, Cornerstone versions 1.0-1.1 supported 10.4 Tiger &#038; 10.5 Leopard, while 2.0-2.2 supported 10.5 Leopard &#038; 10.6 Snow Leopard. 1.5 and 2.5 were exceptions to this rule. Both were released on the cusp of a new [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.zennaware.com/blog/?attachment_id=1990" rel="attachment wp-att-1990"><img class="alignnone size-full wp-image-1990" title="Mac OS X 10.5 Leopard" src="http://www.zennaware.com/blog/wp-content/10_5-leopard.png" alt="" width="588" height="158" /></a></p>
<p>It is our policy to support the current and previous versions of OS X in any given release. For example, Cornerstone versions 1.0-1.1 supported 10.4 Tiger &#038; 10.5 Leopard, while 2.0-2.2 supported 10.5 Leopard &#038; 10.6 Snow Leopard.</p>
<p>1.5 and 2.5 were exceptions to this rule. Both were released on the cusp of a new Mac OS X version and provided simultaneous support for three versions of OS X: 10.4-10.6 with 1.5 and 10.5-10.7 with 2.5.</p>
<p>We believe that this policy represents a good compromise between supporting older operating system versions and simultaneously allowing us to migrate to newer tools and keep Cornerstone up-to-date. Unfortunately, it can&#8217;t be achieved without leaving something behind.</p>
<p>So, now that 10.7 Lion is here we will be making the next step by dropping support for 10.5 Leopard in the next 2.x update. As a consequence, we will also be dropping support for Macs with PowerPC processors.</p>
<p>We believe that very few Cornerstone users will be impacted by this change. Currently less than 3% of visitors to zennaware.com are running 10.5 Leopard and we think this number will decrease very rapidly as 10.7 Lion is adopted (already almost 30% of visitors are running 10.7 Lion).</p>
<p>However, we do understand that some users will continue to need a version of Cornerstone that runs on 10.5 Leopard. For this reason we will be making 2.5.x available for download from the <a href="http://www.zennaware.com/cornerstone/support.php">Cornerstone support page</a>, in the same way as we do with 1.5.</p>
<p>We will continue to support Leopard with 2.5.x maintenance updates up until the release of the next 2.x update.</p>
<p>Future versions of Cornerstone will be Intel-only and will be better for it &#8212; removing the PowerPC code means smaller downloads and potentially faster launch times &#8212; but we can&#8217;t help feeling a little nostalgic.</p>
<p>Leaving the PowerPC behind marks the end of an era.</p>
<p>So long PPC. So long Mac OS X 10.5 Leopard.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zennaware.com/blog/2011/07/all-good-things-must-come-to-an-end/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>uDevGames 2011</title>
		<link>http://www.zennaware.com/blog/2011/07/udevgames-2011/</link>
		<comments>http://www.zennaware.com/blog/2011/07/udevgames-2011/#comments</comments>
		<pubDate>Wed, 20 Jul 2011 11:56:39 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Cornerstone]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.zennaware.com/blog/?p=1963</guid>
		<description><![CDATA[We&#8217;re really exited to announce that Zennaware is sponsoring this year&#8217;s uDevGames contest. There is a great selection of prizes available and the lucky winner will win a 5-user license for Cornerstone 2! Other fantastic prizes include BBEdit and Yojimbo from Bare Bones, Reason from Propellerhead and OmniFocus and OmniGraffle from Omni Group. What is [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.zennaware.com/blog/2011/07/udevgames-2011/udevgames-2011/" rel="attachment wp-att-1964"><img src="http://www.zennaware.com/blog/wp-content/udevgames-2011.png" alt="" title="uDevGames 2011" width="588" height="176" class="alignnone size-full wp-image-1964" /></a></p>
<p>We&#8217;re really exited to announce that Zennaware is sponsoring this year&#8217;s <a href="http://www.udevgames.com/">uDevGames</a> contest.</p>
<p>There is a great selection of prizes available and the lucky winner will win a 5-user license for Cornerstone 2!</p>
<p>Other fantastic prizes include BBEdit and Yojimbo from Bare Bones, Reason from Propellerhead and OmniFocus and OmniGraffle from Omni Group.</p>
<p>What is uDevGames? In their own words:</p>
<blockquote><p>The uDevGames contest is iDevGames&#8217; unique grass-roots game creation contest, established in 2001 to encourage Macintosh game development, and to recognize the best and most innovative developers in the community.</p></blockquote>
<p>We think it&#8217;s a great idea and are proud to be a part of it in our own small way.</p>
<p>Check out the <a href="http://www.udevgames.com/">uDevGames site</a> for more information.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zennaware.com/blog/2011/07/udevgames-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cornerstone and Mac OS X 10.7 Lion</title>
		<link>http://www.zennaware.com/blog/2011/07/cornerstone-and-mac-os-x-10-7-lion/</link>
		<comments>http://www.zennaware.com/blog/2011/07/cornerstone-and-mac-os-x-10-7-lion/#comments</comments>
		<pubDate>Wed, 13 Jul 2011 11:55:57 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Cornerstone]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.zennaware.com/blog/?p=1835</guid>
		<description><![CDATA[Mac OS X 10.7 Lion is almost here and we&#8217;re really excited about Apple&#8217;s new operating system. It brings a number of great features from iOS to the Mac and we&#8217;re sure Cornerstone&#8217;s users will want to move to Lion as soon as possible. We have been testing Cornerstone on the various pre-release versions of [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.zennaware.com/blog/2011/07/cornerstone-and-mac-os-x-10-7-lion/lion-launchpad/" rel="attachment wp-att-1852"><img src="http://www.zennaware.com/blog/wp-content/lion-launchpad.png" alt="" title="lion-launchpad" width="591" height="386" class="alignnone size-full wp-image-1852" /></a></p>
<p>Mac OS X 10.7 Lion is almost here and we&#8217;re really excited about Apple&#8217;s new operating system. It brings a number of great features from iOS to the Mac and we&#8217;re sure Cornerstone&#8217;s users will want to move to Lion as soon as possible.</p>
<p>We have been testing Cornerstone on the various pre-release versions of Mac OS X 10.7 over the past four months.</p>
<p>Cornerstone runs well on Lion but does exhibit a couple of issues, so we&#8217;ve been very busy fixing and tweaking the app to ensure that it runs as well on Lion as it does on Snow Leopard.</p>
<h2>Cornerstone 2</h2>
<p>We want the upgrade to Lion to be as smooth as possible for Cornerstone users, so we planned our next update to coincide with Lion&#8217;s release. This new version will bring full Lion compatibility to Cornerstone 2, while still supporting 10.5 Leopard and 10.6 Snow Leopard.</p>
<p>The update has been submitted to Apple for review. We intend to release it simultaneously via the Mac App Store and our own software update once the review process is complete.</p>
<p>We can&#8217;t be sure how long this will take, but hope that the update will be available for Lion&#8217;s release.</p>
<h2>Cornerstone 1.x</h2>
<p>We will be releasing a minor update to 1.5 though software update in the coming days. This update solves the biggest issues on Lion, ensuring that Cornerstone is fully-functional.</p>
<p>Some minor cosmetic issues do remain though. You&#8217;ll need to upgrade to Cornerstone 2 for the best possible fit and finish when running on Lion!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zennaware.com/blog/2011/07/cornerstone-and-mac-os-x-10-7-lion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cornerstone 2 Available on the Mac App Store &#187; Press Release</title>
		<link>http://www.zennaware.com/blog/2011/04/cornerstone-2-available-on-the-mac-app-store-press-release/</link>
		<comments>http://www.zennaware.com/blog/2011/04/cornerstone-2-available-on-the-mac-app-store-press-release/#comments</comments>
		<pubDate>Tue, 26 Apr 2011 14:34:25 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Cornerstone]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Press Releases]]></category>

		<guid isPermaLink="false">http://www.zennaware.com/blog/?p=1654</guid>
		<description><![CDATA[ZURICH, Switzerland &#8211; April 26th 2011 Zennaware is pleased to announce that Cornerstone, the ultimate Subversion app for Mac OS X is immediately available for purchase on the Mac App Store. Cornerstone is priced at $59. Zennaware will also continue to sell Cornerstone direct to customers through the online store on zennaware.com. About Zennaware Zennaware [...]]]></description>
			<content:encoded><![CDATA[<p><a style="float:right; margin-left: 20px;" href="http://itunes.apple.com/us/app/cornerstone/id404789253?mt=12&#038;ls=1"><img src="http://www.zennaware.com/blog/wp-content/MacAppStoreBadge.png" alt="Mac App Store" title="Mac App Store" width="200" height="66" class="alignnone size-full wp-image-1667" /></a></p>
<p><strong>ZURICH, Switzerland &#8211; April 26th 2011</strong></p>
<p>Zennaware is pleased to announce that Cornerstone, the ultimate Subversion app for Mac OS X is immediately available for purchase on the Mac App Store.</p>
<p>Cornerstone is priced at $59.</p>
<p>Zennaware will also continue to sell Cornerstone direct to customers through the <a href="http://www.zennaware.com/cornerstone/store.php">online store</a> on zennaware.com.</p>
<p><strong>About Zennaware</strong></p>
<p><a href="http://www.zennaware.com/blog/2011/04/cornerstone-2-available-on-the-mac-app-store-press-release/macappstorebadge/" rel="attachment wp-att-1667"></a></p>
<p>Zennaware is a small independent software vender which develops high-quality applications exclusively for Apple&#8217;s Mac line of computers to run on Mac OS X. Zennaware is located in Zurich, Switzerland.</p>
<p><strong>Press Contacts</strong></p>
<p>For press-related questions please contact <a href="mailto:press@zennaware.com">press@zennaware.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zennaware.com/blog/2011/04/cornerstone-2-available-on-the-mac-app-store-press-release/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cornerstone 1.5 Released</title>
		<link>http://www.zennaware.com/blog/2009/09/cornerstone-1-5-released/</link>
		<comments>http://www.zennaware.com/blog/2009/09/cornerstone-1-5-released/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 12:59:50 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Cornerstone]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.zennaware.com/blog/?p=446</guid>
		<description><![CDATA[Today we&#8217;re releasing Cornerstone 1.5 after 8 months of development and 2 months of beta testing. It&#8217;s a huge release containing numerous new features and tons of smaller improvements and refinements. We&#8217;ve listened very carefully to input from our users since 1.1 was released and have worked hard to make Cornerstone both more powerful and [...]]]></description>
			<content:encoded><![CDATA[<p>Today we&#8217;re releasing Cornerstone 1.5 after 8 months of development and 2 months of beta testing. It&#8217;s a huge release containing numerous new features and tons of smaller improvements and refinements.</p>
<p>We&#8217;ve listened very carefully to input from our users since 1.1 was released and have worked hard to make Cornerstone both more powerful and easier to use. We&#8217;ve also added support for Subversion 1.6 and Mac OS X 10.6 Snow Leopard.</p>
<p>The improvements made to 1.5 are listed in detail in the release notes, but the major additions are:</p>
<ol>
<li> <strong>Improved User Interface</strong>
<p>Cornerstone&#8217;s user interface was redesigned to make navigation more consistent and intuitive. The new screen-based interface also makes far better use of available screen space.</p>
</li>
<li> <strong>New Log View</strong>
<p>The new log view compliments the existing timeline view by displaying a project&#8217;s log in a form similar to the output of <code>svn</code>&#8216;s <code>log</code> command.</p>
</li>
<li> <strong>New Commit View</strong>
<p>We have made big improvements to the commit view: it&#8217;s now non-modal, files can be included and excluded, and most important of all, files can be compared right in the commit view.</p>
</li>
<li> <strong>New Transcript View</strong>
<p>The new transcript view provides progress information on operations such as updates and commits.</p>
</li>
<li> <strong>New Externals Editor</strong>
<p>1.5 now includes support for editing <code>svn:externals</code> properties in the form of a new dedicated externals editor.</p>
</li>
<li> <strong>New Preference Pane for Subversion Configuration</strong>
<p>The most commonly-used Subversion configuration options can now be configured within Cornerstone. Supported options include global ignores, auto properties and HTTP proxy settings.</p>
</li>
</ol>
<p>We believe that these improvements combine to make this a substantial release, so much so that we decided it deserved the jump to version 1.5.</p>
<p>1.5 is a free upgrade for all 1.0 and 1.1 license holders and is available for immediate download.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zennaware.com/blog/2009/09/cornerstone-1-5-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cornerstone and Mac OS X Snow Leopard</title>
		<link>http://www.zennaware.com/blog/2009/08/cornerstone-and-mac-os-x-snow-leopard/</link>
		<comments>http://www.zennaware.com/blog/2009/08/cornerstone-and-mac-os-x-snow-leopard/#comments</comments>
		<pubDate>Mon, 31 Aug 2009 14:37:54 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.zennaware.com/blog/?p=363</guid>
		<description><![CDATA[A number of users have been in contact with us over the last couple of days asking about Cornerstone compatibility with the recently-released Mac OS X Snow Leopard. First the bad news: Cornerstone 1.1 isn&#8217;t compatible with Snow Leopard. While some users are successfully running Cornerstone on Snow Leopard, enough users are experiencing issues that [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.zennaware.com/blog/wp-content/snow-leopard.png" alt="snow-leopard" title="snow-leopard" width="544" height="250" class="alignnone size-full wp-image-371" /></p>
<p>A number of users have been in contact with us over the last couple of days asking about Cornerstone compatibility with the recently-released Mac OS X Snow Leopard.</p>
<p>First the bad news: Cornerstone 1.1 isn&#8217;t compatible with Snow Leopard.</p>
<p>While some users are successfully running Cornerstone on Snow Leopard, enough users are experiencing issues that our recommendation is to hold off upgrading to Snow Leopard if you need to run Cornerstone.</p>
<p>But the good news is that you don&#8217;t have long to wait:</p>
<p><strong>We have added support for both Snow Leopard and Subversion 1.6 to the next 1.x update of Cornerstone and plan to release the new version this September</strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zennaware.com/blog/2009/08/cornerstone-and-mac-os-x-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get a Discount on Skorpiostech Changes in February</title>
		<link>http://www.zennaware.com/blog/2009/02/changes-promotion/</link>
		<comments>http://www.zennaware.com/blog/2009/02/changes-promotion/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 13:44:42 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[Cornerstone]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.zennaware.com/blog/?p=68</guid>
		<description><![CDATA[The February Changes promotion has ended. We&#8217;d like to take this opportunity to thank the guys at Skorpiostech for their involvement in the promotion. Cornerstone provides out-of-the-box integration with Skorpiostech&#8216;s excellent Changes visual diff and synching application. Extend the functionality of Cornerstone with Changes to highlight intra-line differences and interactively accept or reject edits while reviewing the modifications made [...]]]></description>
			<content:encoded><![CDATA[<map name="imgmap">
<area shape="poly" coords="42,34,126,34,126,112,42,112,42,34" href="http://www.changesapp.com" target="_blank" alt="1">
 </map>
<p><img class="alignnone size-full wp-image-71" title="Changes Promotion" src="http://www.zennaware.com/blog/wp-content/changes-banner.png" alt="Changes Promotion" width="544" height="159" usemap="#imgmap"/></p>
<p>
<strong>The February Changes promotion has ended.</strong> We&#8217;d like to take this opportunity to thank the guys at Skorpiostech for their involvement in the promotion.
</p>
<hr/>
<p>
Cornerstone provides out-of-the-box integration with <a href="http://www.skorpiostech.com" target="_blank">Skorpiostech</a>&#8216;s excellent <a href="http://www.changesapp.com" target="_blank">Changes</a> visual diff and synching application.
</p>
<p>
Extend the functionality of Cornerstone with Changes to highlight intra-line differences and interactively accept or reject edits while reviewing the modifications made to your working copy files.
</p>
<p>
Zennaware has teamed up with Skorpiostech to offer you a <strong>$10 discount on Changes</strong> if you purchase Cornerstone <strong>between 7th February and 7th March &#8217;09</strong>.
</p>
<p>
Customers who purchase Cornerstone during this period will receive their discount code for Changes in their purchase confirmation E-mail.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.zennaware.com/blog/2009/02/changes-promotion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

