<?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>Evolving Software &#187; New releases</title>
	<atom:link href="http://evolving-software.co.uk/blog/category/new-releases/feed/" rel="self" type="application/rss+xml" />
	<link>http://evolving-software.co.uk/blog</link>
	<description>General tidbits about Domain Driven Design and TrueView</description>
	<lastBuildDate>Tue, 06 Dec 2011 21:29:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>TrueView V2 Beta, now with POCO support</title>
		<link>http://evolving-software.co.uk/blog/2010/10/19/trueview-v2-beta-now-with-poco-support/</link>
		<comments>http://evolving-software.co.uk/blog/2010/10/19/trueview-v2-beta-now-with-poco-support/#comments</comments>
		<pubDate>Tue, 19 Oct 2010 05:47:27 +0000</pubDate>
		<dc:creator>Vijay</dc:creator>
				<category><![CDATA[New releases]]></category>
		<category><![CDATA[News items]]></category>
		<category><![CDATA[c# library]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[library]]></category>

		<guid isPermaLink="false">http://evolving-software.co.uk/blog/?p=355</guid>
		<description><![CDATA[<a href="http://evolving-software.co.uk/blog/2010/10/19/trueview-v2-beta-now-with-poco-support/" title="TrueView V2 Beta, now with POCO support"></a>TrueView V2 has some significant changes since the last version.  You can download the beta and code sample here. POCO support TrueView now supports POCO classes, that don&#8217;t need to be inherited or marked up with attributes. Now you can &#8230;<p class="read-more"><a href="http://evolving-software.co.uk/blog/2010/10/19/trueview-v2-beta-now-with-poco-support/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://evolving-software.co.uk/blog/2010/10/19/trueview-v2-beta-now-with-poco-support/" title="TrueView V2 Beta, now with POCO support"></a><p>TrueView V2 has some significant changes since the last version.  You can download the beta and code sample <a href="http://evolving-software.co.uk/downloads/trueview_v2_beta.zip">here</a>.</p>
<h2>POCO support</h2>
<p>TrueView now supports POCO classes, that don&#8217;t need to be inherited or marked up with attributes. Now you can re-use your POCO assemblies in other applications, and remove the dependency on the TrueView framework.</p>
<p>To make your POCO classes viewable in the UI, add the following property:</p>
<pre>    public Guid ID { get; set; }</pre>
<p>To make your classes persistable, add a Version property:</p>
<pre>    public long Version { get; set; }</pre>
<h2>Domain Class enhancements</h2>
<ul>
<li>Domain Classes no longer need to be marked with attributes</li>
<li>Optional <strong>Configuration</strong> classes can decouple Domain Objects from the TrueView framework</li>
<li>Better support for structs</li>
</ul>
<h2>Infrastructure Class enhancements</h2>
<ul>
<li>Infrastructure classes are now decoupled from Domain Classes.</li>
<li><strong>IPersistenceInfrastructureService </strong>is now exposed, allowing custom Services to be injected at run-time.  TrueView provides <strong>FilePersistenceService </strong>and <strong>NhibernatePersistenceServices</strong> out of the box.</li>
<li><strong>IExportInfrastructureService </strong>replaces the old PrintProvider, and allows you to export data for any Domain Object</li>
<li><strong>IPresenterInfrastructureService </strong>replaces the old IUiPresenter.  You can control the formatting, and well as providing custom &#8216;adornments&#8217; to display</li>
</ul>
<h2>UI enhancements</h2>
<ul>
<li><strong>Error indicators</strong> are now shown next to the property that caused them</li>
<li><strong>Custom adornments</strong> can be rendered next to an item in the Explorer view</li>
<li><strong>Better use of screen estate</strong> using multiple columns</li>
<li><strong>Improved drag/drop tips</strong> now show why certain operations cannot be performed</li>
<li><strong>Inline Object and List properties</strong> allow users to see more detail without having to drill-down manually.</li>
<li><strong>Hyperlinks </strong>make it easier to navigate to associated Objects and Lists</li>
<li><strong>Additional Enum display options</strong> include Slider and Radio-Options.</li>
<li><strong>Enum items can be filtered</strong> using IQuerySpecification&lt;T&gt;</li>
<li>A new <strong>Export</strong> function replaces the old Print option</li>
</ul>
<p>Check out the <a href="http://evolving-software.co.uk/downloads/trueview_v2_beta.zip">included sample code</a> to learn about the new features.</p>
<p>P.S. There&#8217;s a <a href="http://evolving-software.co.uk/downloads/DomainTypes.zip">new DomainTypes library available</a> as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://evolving-software.co.uk/blog/2010/10/19/trueview-v2-beta-now-with-poco-support/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Update to DomainTypes library</title>
		<link>http://evolving-software.co.uk/blog/2010/02/20/update-to-domaintypes-library/</link>
		<comments>http://evolving-software.co.uk/blog/2010/02/20/update-to-domaintypes-library/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 13:18:24 +0000</pubDate>
		<dc:creator>Vijay</dc:creator>
				<category><![CDATA[New releases]]></category>
		<category><![CDATA[c# library]]></category>
		<category><![CDATA[domaintypes]]></category>
		<category><![CDATA[interfaces]]></category>
		<category><![CDATA[source code]]></category>

		<guid isPermaLink="false">http://evolving-software.co.uk/blog/?p=350</guid>
		<description><![CDATA[<a href="http://evolving-software.co.uk/blog/2010/02/20/update-to-domaintypes-library/" title="Update to DomainTypes library"></a>The initial release of DomainTypes was heavily influenced by the existing TrueView framework.  After spending much time working with a current client, it&#8217;s clear that a more &#8216;POCO&#8217; approach has significantly more benefits. Based on my findings (and questions over &#8230;<p class="read-more"><a href="http://evolving-software.co.uk/blog/2010/02/20/update-to-domaintypes-library/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://evolving-software.co.uk/blog/2010/02/20/update-to-domaintypes-library/" title="Update to DomainTypes library"></a><p>The initial release of <em>DomainTypes</em> was heavily influenced by the existing TrueView framework.  After spending much time working with a current client, it&#8217;s clear that a more &#8216;POCO&#8217; approach has significantly more benefits.</p>
<p>Based on my findings (and <a href="http://stackoverflow.com/questions/tagged/domain-driven-design">questions over at StackOverflow</a>), here are the major changes:</p>
<ul>
<li>Refined and enhanced most of the interfaces</li>
<li>Removed the concept of <strong>persistent</strong> and <strong>transient</strong> classes</li>
<li><strong>Domain Services</strong> and <strong>Application Services</strong> have explicit interfaces</li>
<li>Domain Objects no longer implement <strong>IDependencyAware</strong></li>
<li>Removed the <strong>ITrackable</strong> interface</li>
</ul>
<p>I&#8217;ve also added more examples to clarify how you might use the interfaces.</p>
<p>You can <a href="http://evolving-software.co.uk/downloads/DomainTypes.zip">download the code here</a>.  All comments are welcome.</p>
<p><strong>P.S.</strong> Note that this library is <strong>NOT </strong>compatible with the current TrueView framework.  Watch this space for the new version!</p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">http://evolving-software.co.uk/blog/wp-admin/post-new.php</div>
]]></content:encoded>
			<wfw:commentRss>http://evolving-software.co.uk/blog/2010/02/20/update-to-domaintypes-library/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TrueView Maintenance Release 1.3.0908.21</title>
		<link>http://evolving-software.co.uk/blog/2009/08/21/trueview-maintenance-release-13090821/</link>
		<comments>http://evolving-software.co.uk/blog/2009/08/21/trueview-maintenance-release-13090821/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 12:28:22 +0000</pubDate>
		<dc:creator>Vijay</dc:creator>
				<category><![CDATA[New releases]]></category>
		<category><![CDATA[databridge]]></category>
		<category><![CDATA[ui]]></category>

		<guid isPermaLink="false">http://evolving-software.co.uk/blog/?p=273</guid>
		<description><![CDATA[<a href="http://evolving-software.co.uk/blog/2009/08/21/trueview-maintenance-release-13090821/" title="TrueView Maintenance Release 1.3.0908.21"></a>The latest release has some UI fixes for TrueView, and mapping fixes for DataBridge.  Download it here. TrueView Fixes UI now shows changes if entities are modified inside constructors Corrected treenode selection when removing a previously selected node Fixed race &#8230;<p class="read-more"><a href="http://evolving-software.co.uk/blog/2009/08/21/trueview-maintenance-release-13090821/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://evolving-software.co.uk/blog/2009/08/21/trueview-maintenance-release-13090821/" title="TrueView Maintenance Release 1.3.0908.21"></a><p>The <a href="http://evolving-software.co.uk/downloads/TrueViewFreeTrial.exe">latest release</a> has some UI fixes for TrueView, and mapping fixes for DataBridge.  <a href="http://evolving-software.co.uk/downloads/TrueViewFreeTrial.exe">Download it here</a>.</p>
<h3>TrueView Fixes</h3>
<ul>
<li>UI now shows changes if entities are modified inside constructors</li>
<li>Corrected treenode selection when removing a previously selected node</li>
<li>Fixed race condition when opening Entity property nodes</li>
<li>Entity Property treenode no longer renders with the Entity&#8217;s style</li>
<li>Fixed window layout for magnetic windows</li>
<li>Fixed window positioning when overlaying windows</li>
<li>Correctly identifies the top-most window in multi-monitor mode</li>
<li>Exceptions when retrieving Summary value are no longer fatal</li>
<li>Fixed Search Results window ownership in MyApplication.Load&lt;T&gt;(query, parameters)</li>
<li>Shortcut key presses are now handled for multi-monitor mode</li>
</ul>
<h3>Enhancements</h3>
<ul>
<li>&#8216;Short&#8217; values now have smaller widgets (Strings)</li>
<li>Improved &#8216;Version Check&#8217; dialog messages</li>
</ul>
<h3>DataBridge Fixes</h3>
<ul>
<li>Corrected writing of Component properties</li>
<li>Fixed Foreign Key names for Entity properties of the same type</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://evolving-software.co.uk/blog/2009/08/21/trueview-maintenance-release-13090821/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TrueView Release 1.2.0905.22 &#8211; Maintenance release, performance improvements</title>
		<link>http://evolving-software.co.uk/blog/2009/05/22/trueview-release-12090522-maintenance-release-performance-improvements/</link>
		<comments>http://evolving-software.co.uk/blog/2009/05/22/trueview-release-12090522-maintenance-release-performance-improvements/#comments</comments>
		<pubDate>Fri, 22 May 2009 08:43:34 +0000</pubDate>
		<dc:creator>Vijay</dc:creator>
				<category><![CDATA[New releases]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[ui]]></category>

		<guid isPermaLink="false">http://evolving-software.co.uk/blog/?p=212</guid>
		<description><![CDATA[<a href="http://evolving-software.co.uk/blog/2009/05/22/trueview-release-12090522-maintenance-release-performance-improvements/" title="TrueView Release 1.2.0905.22 - Maintenance release, performance improvements"></a>This release has some major UI rendering improvements, and a couple of enhancements to aid usability. TrueView DataBridge also has a couple of small fixes.  Download them here Enhancements: Drag/drop tip now explains the drop action Drag/drop tip now tries &#8230;<p class="read-more"><a href="http://evolving-software.co.uk/blog/2009/05/22/trueview-release-12090522-maintenance-release-performance-improvements/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://evolving-software.co.uk/blog/2009/05/22/trueview-release-12090522-maintenance-release-performance-improvements/" title="TrueView Release 1.2.0905.22 - Maintenance release, performance improvements"></a><p>This release has some major UI rendering improvements, and a couple of enhancements to aid usability. TrueView DataBridge also has a couple of small fixes.  Download them <a href="http://evolving-software.co.uk/downloads/TrueViewFreeTrial.exe">here</a></p>
<h3>Enhancements:</h3>
<ul>
<li>Drag/drop tip now explains the drop action</li>
<li>Drag/drop tip now tries to stay on-screen, regardless of curson position</li>
<li>Now allows new entities to be added to unsaved parent entities</li>
<li>&#8220;Save This&#8221; tooltip now shows reason for being disabled (where applicable)</li>
<li>Removed duplicate results in Search window</li>
<li>Friendly names are now generated for generic lists</li>
<li>Improved icons bitmap scaling quality</li>
<li>Removed error messages when using IQuerySpecification with FilePersistence provider class</li>
</ul>
<h3>Fixes:</h3>
<ul>
<li>UI refresh now updates all Entities</li>
<li>Fixed stack overflow when tracking dirty entities in circular object graphs</li>
<li>Corrected tracking of entities that are removed from lists</li>
<li>Dynamic listbox ensures that property value is automatically loaded</li>
<li>Fixed NullReferenceException when pressing Enter in an empty Queries List</li>
<li>Fixed DataTimePicker background colour on Windows Vista</li>
<li>Removed system beeps when entering/exiting edit controls (NumericUpDown is still a problem)</li>
<li>Correct sizing of PropertyGrid columns</li>
<li>Corrected enabled state for &#8220;Save This&#8221; menu item</li>
<li>Corrected bold text clipping in Search treeview</li>
<li>Allow NHibernate to use reflection-optimizer if configured to do so</li>
<li>Menu and toolbar items are now updated if Undo/Redo fails</li>
<li>Better alignment of Boolean radio-buttons</li>
<li>Better sizing of bitwise(flag) enum listbox</li>
<li>String compacting algorithm no longer creates null-terminated strings</li>
</ul>
<p><strong>Optimisations:</strong></p>
<ul>
<li>Massive improvements to UI rendering performance</li>
<li>Reduced startup time in MyApplication.Initialise (i.e. for unit testing)</li>
<li>FilePersistence now flushes to disk less frequently</li>
<li>Improved string building performance</li>
</ul>
<p><strong>Known issues:<br />
</strong></p>
<ul>
<li>NumericUpDown editor still beeps when Enter is pressed</li>
<li>Search Query Editor window doesn&#8217;t hide Boolean editors immediately (need to hit Escape twice)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://evolving-software.co.uk/blog/2009/05/22/trueview-release-12090522-maintenance-release-performance-improvements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TrueView Release 1.2.0905.02 &#8211; Maintenance release (plus a few extras)</title>
		<link>http://evolving-software.co.uk/blog/2009/05/02/trueview-release-12090502-maintenance-release-plus-a-few-extras/</link>
		<comments>http://evolving-software.co.uk/blog/2009/05/02/trueview-release-12090502-maintenance-release-plus-a-few-extras/#comments</comments>
		<pubDate>Sat, 02 May 2009 12:02:57 +0000</pubDate>
		<dc:creator>Vijay</dc:creator>
				<category><![CDATA[New releases]]></category>
		<category><![CDATA[drop down list]]></category>
		<category><![CDATA[IQuerySpecification]]></category>

		<guid isPermaLink="false">http://evolving-software.co.uk/blog/?p=192</guid>
		<description><![CDATA[<a href="http://evolving-software.co.uk/blog/2009/05/02/trueview-release-12090502-maintenance-release-plus-a-few-extras/" title="TrueView Release 1.2.0905.02 - Maintenance release (plus a few extras)"></a>The latest maintanance release fixes some glaring errors (sorry!). The UI has also been updated for better usability &#8211; and now supports dynamic drop-down lists using IQuerySpecification.  Read the user guide to learn more. Enhancements: Moved MDI window toolbar to &#8230;<p class="read-more"><a href="http://evolving-software.co.uk/blog/2009/05/02/trueview-release-12090502-maintenance-release-plus-a-few-extras/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://evolving-software.co.uk/blog/2009/05/02/trueview-release-12090502-maintenance-release-plus-a-few-extras/" title="TrueView Release 1.2.0905.02 - Maintenance release (plus a few extras)"></a><p>The latest <a href="http://evolving-software.co.uk/downloads/TrueViewFreeTrial.exe">maintanance release</a> fixes some glaring errors (sorry!).</p>
<p>The UI has also been updated for better usability &#8211; and now supports <strong>dynamic drop-down lists</strong> using <strong>IQuerySpecification</strong>.  Read the <a href="http://evolving-software.co.uk/downloads/TrueViewDevelopersGuide.pdf">user guide</a> to learn more.</p>
<h3>Enhancements:</h3>
<ul>
<li>Moved MDI window toolbar to top (tab-like appearance)</li>
<li>MDI window &#8216;tabs&#8217; now toggle normal/maximised window state</li>
<li>Added support for dynamic UI &#8216;lookup lists&#8217; using IQuerySpecification</li>
<li>User is prompted to email errors at shutdown</li>
<li>Added &#8220;Communication Settings&#8221; to Preferences</li>
<li>Added online version checking for Trial build</li>
<li>Added Vista style TaskDialogs</li>
<li>Dirty status is only shown for changed entities</li>
<li>Collapsible panel widgets now highlight on mouse-hover</li>
<li>Reduced flicker when changing between maximised windows</li>
<li>Search &#8220;Add&#8221; now uses &#8220;Query Bookmarks&#8221;, which can be viewed after saving</li>
<li>Added TransientEntityList class</li>
<li>Default settings of AutoSave is now False</li>
</ul>
<h3>Fixes:</h3>
<ul>
<li>Corrected UI updates when list Add/Remove is aborted</li>
<li>Improved UI refreshing after performing commands</li>
<li>Clearing a search form purges the internal cache</li>
<li>Corrected Action button panel flow layout when resized</li>
<li>Corrected tooltip rendering in Property treenodes</li>
<li>Text no longer truncated in Action buttons</li>
<li>Corrected MyApplication.IsStarted value</li>
<li>Dialogs no longer displayed when Workbench isn&#8217;t running (for unit testing)</li>
<li>Improved/optimised tracking of dirty entities within deep object graphs</li>
<li>Now handles hidden/new properties</li>
<li>Reattaches entities to NHibernate ISession before loading properties</li>
<li>Improved NHibernate session management during Save operations</li>
<li>Corrected ListView sorting for sub-items that are null</li>
<li>Corrected ListView header sort icons for Vista</li>
<li>Corrected lock-up when tabbing through PropertyGrid controls</li>
<li>Corrected validation when dragging items from the Class Library</li>
<li>Previous search results are cleared if query returns no matches</li>
<li>Corrected &#8220;Unit of work&#8221; check for method Actions</li>
<li>Added sync locking to allow rapid keyboard actions (e.g. keeping a key pressed)</li>
<li>Now supports icons named after Interfaces</li>
<li>Reset drag/drop label background colour</li>
</ul>
<p><strong>Optimisations:</strong></p>
<ul>
<li> UI widgets are only refreshed once where possible</li>
<li> Reduced amount of redrawing when listviews are refreshed</li>
</ul>
<p><strong>Known issues:<br />
</strong></p>
<ul>
<li>DateTime editor doesn&#8217;t change background colour on Vista</li>
<li>Preferences Editor doesn&#8217;t always render tree nodes</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://evolving-software.co.uk/blog/2009/05/02/trueview-release-12090502-maintenance-release-plus-a-few-extras/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TrueView Release 1.2.0903.01 &#8211; Improved user experience</title>
		<link>http://evolving-software.co.uk/blog/2009/03/01/trueview-release-12090301-improved-user-experience/</link>
		<comments>http://evolving-software.co.uk/blog/2009/03/01/trueview-release-12090301-improved-user-experience/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 11:21:30 +0000</pubDate>
		<dc:creator>Vijay</dc:creator>
				<category><![CDATA[New releases]]></category>

		<guid isPermaLink="false">http://evolving-software.co.uk/blog/?p=25</guid>
		<description><![CDATA[<a href="http://evolving-software.co.uk/blog/2009/03/01/trueview-release-12090301-improved-user-experience/" title="TrueView Release 1.2.0903.01 - Improved user experience"></a>Thanks for all you comments. This release is based on your feedback, so please keep sending your comments. Download the latest version here. Enhancements: Added PropertyGrid editor for unknown types (e.g. structs) Root entities can no longer be explored Top &#8230;<p class="read-more"><a href="http://evolving-software.co.uk/blog/2009/03/01/trueview-release-12090301-improved-user-experience/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://evolving-software.co.uk/blog/2009/03/01/trueview-release-12090301-improved-user-experience/" title="TrueView Release 1.2.0903.01 - Improved user experience"></a><p>Thanks for all you comments. This release is based on your feedback, so <a href="http://www.evolving-software.co.uk/support-request.html">please keep sending your comments</a>. Download the latest version <a href="http://www.evolving-software.co.uk/downloads.html">here</a>.</p>
<h3>Enhancements:</h3>
<ul type="disc">
<li>Added PropertyGrid editor for unknown types (e.g. structs)</li>
<li>Root entities can no longer be explored</li>
<li>Top level nodes in Class Library treeview are now consolidated</li>
<li>&#8220;Enter&#8221; now creates a new entity in Class Library</li>
<li>Method buttons now have equal sizes</li>
<li>Tweaked overall UI appearance (borders, padding, splitters, colours)</li>
<li>Vertical splitter is removed if no methods are displayed</li>
<li>Save action traces all affected entities</li>
<li>Null EntityLists are now rendered with no grid lines</li>
<li>Added &#8220;About Demo&#8221; window</li>
<li>Added &#8220;Report a bug&#8221; option</li>
<li>Trace log now saving in Zip compatible format</li>
<li>&#8220;About&#8221; window now shows application information</li>
<li>&#8220;About&#8221; window can be closed using Escape/Enter</li>
<li>Failures in Query criteria no longer show dialog boxes (improved usability)</li>
<li>Removed &#8220;Property was unchanged&#8221; message</li>
<li>Clicking an empty area of the Actions panel hides Parameters listview</li>
<li>&#8220;Edit Value&#8221; option is only shown in &#8216;Explorer&#8217; mode</li>
</ul>
<h3>Fixes:</h3>
<ul type="disc">
<li>Drag/drop now handles null EntityList properties</li>
<li>Undo/redo now handles EntityLists</li>
<li>Assembly resolve now handles upgrades/downgrades wherever possible</li>
<li>Fixed &#8220;Collection modified exception&#8221; when resolving entity relationships</li>
<li>Correction when identifying all parent entities</li>
<li>Setting null values no longer attempts to create internal associations</li>
<li>Corrected &#8220;Divide by zero&#8221; exception in memory calculation (for Vista64)</li>
<li>Exceptions when invoking actions are only reported once</li>
<li>Removing new instances from lists no longer causes &#8216;phantom&#8217; dirty status</li>
<li>Corrected &#8220;Paste new copy&#8221; functionality</li>
<li>Action (method) button panel now expands correctly</li>
<li>Application menu/toolbar are refreshed after clipboard operations</li>
<li>Application menu/toolbar are refreshed after listview selection changes</li>
<li>Corrected display of confirmation dialogs</li>
<li>&#8220;Remove&#8221; item is now correctly enabled/disabled</li>
<li>Corrected handling of &#8216;char&#8217; editor</li>
<li>Editors now change colour when they get focus</li>
<li>Corrected change detection in &#8216;number&#8217; editor</li>
<li>File Editor now handles valid non-existing paths</li>
<li>Added &#8216;IsMutable&#8217; check when setting properties</li>
<li>ValueObjects now share the same persistence details as their owner (Version, AccessDetails)</li>
<li>Only critical exceptions are shown in a dialog</li>
<li>Progress bar is not updated if form is disposing</li>
<li>Trace message no longer appears when viewing an immutable object</li>
<li>Saved Query filesnames now have 80 char limit</li>
<li>Corrected NHibernate search queries for Component mappings</li>
<li>Corrected NHibernate search queries for properties of same name, but different classes</li>
<li>Corrected NHibernate search queries for subqueries of the same type</li>
<li>Corrected re-hydration of saved Queries with multi-level subqueries</li>
<li>All dialogs and forms are now disposed of explicitly</li>
<li>Optimistic locking exceptions now show who modified the record, and when</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://evolving-software.co.uk/blog/2009/03/01/trueview-release-12090301-improved-user-experience/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TrueView Release 1.2.0901.05 &#8211; Upgraded to Nhibernate 2.0</title>
		<link>http://evolving-software.co.uk/blog/2009/01/05/trueview-release-12090105-upgraded-to-nhibernate-20/</link>
		<comments>http://evolving-software.co.uk/blog/2009/01/05/trueview-release-12090105-upgraded-to-nhibernate-20/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 06:22:28 +0000</pubDate>
		<dc:creator>Vijay</dc:creator>
				<category><![CDATA[New releases]]></category>
		<category><![CDATA[nhibernate]]></category>

		<guid isPermaLink="false">http://evolving-software.co.uk/blog/?p=23</guid>
		<description><![CDATA[<a href="http://evolving-software.co.uk/blog/2009/01/05/trueview-release-12090105-upgraded-to-nhibernate-20/" title="TrueView Release 1.2.0901.05 - Upgraded to Nhibernate 2.0"></a>Happy New Year! We&#8217;re starting the year with a new release. BREAKING CHANGES Upgraded to NHibernate 2.0.1GA (with breaking changes) Added InnerList property to IEntityList Changed NHibernate namespace to NH Removed EntityListAttribute.IListField Enhancements: ValueObject now implements IValueObject AccessDetails now implements &#8230;<p class="read-more"><a href="http://evolving-software.co.uk/blog/2009/01/05/trueview-release-12090105-upgraded-to-nhibernate-20/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://evolving-software.co.uk/blog/2009/01/05/trueview-release-12090105-upgraded-to-nhibernate-20/" title="TrueView Release 1.2.0901.05 - Upgraded to Nhibernate 2.0"></a><p><strong>Happy New Year!</strong></p>
<p>We&#8217;re starting the year with a <a href="http://www.evolving-software.co.uk/downloads.html">new release</a>.</p>
<h3>BREAKING CHANGES</h3>
<ul>
<li>Upgraded to NHibernate 2.0.1GA (with breaking changes)</li>
<li>Added InnerList property to IEntityList</li>
<li>Changed NHibernate namespace to NH</li>
<li>Removed EntityListAttribute.IListField</li>
</ul>
<h3>Enhancements:</h3>
<ul>
<li>ValueObject now implements IValueObject</li>
<li>AccessDetails now implements IValueObject</li>
<li>Copy operations use a different colour when dragging primitives/ValueObjects</li>
<li>MyApplication.Save only persists dirty objects in the graph</li>
<li>TrueView is now responsible for object graph &#8216;cascading&#8217;</li>
<li>Added PropertyAttribute.BackingFieldName</li>
<li>EntityList now uses IEntityList.InnerList for NHIbernate collections</li>
<li>Added custom NHibernatePropertyAccessor to auto-manage all property types</li>
<li>Renamed &#8220;Paste Duplicate&#8221; menu item to &#8220;Paste New Copy&#8221;</li>
</ul>
<h3>Optimisations:</h3>
<ul>
<li>Improved Save performance</li>
<li>Improved UI update after setting a property</li>
</ul>
<p><strong>Fixes</strong>:</p>
<ul>
<li>Fixed duplicate entries in object graph traversal</li>
<li>&#8220;Save this&#8221; never attempts to save other objects in the graph</li>
<li>Cloning now handles ValueObjects</li>
<li>Corrections in Entity version tracking</li>
<li>SetProperty now automatically uses IValueObject.Clone()</li>
<li>AddToList now automatically uses IValueObject.Clone()</li>
<li>Interface inheritance hierarchies now correctly identified</li>
<li>C#3.0 auto-property backing fields now identified</li>
<li>NHibernate query builder now uses class metadata to identify correct property name</li>
<li>Context menu doesn&#8217;t show duplicate Paste items for primitive values</li>
<li>Exceptions during form close displayed with &#8220;Retry/Cancel&#8221; buttons</li>
<li>Correction when validating property relationships</li>
</ul>
<hr />
<h3>TrueView DataBridge 1.3.0901.05</h3>
<h3>BREAKING CHANGES</h3>
<ul>
<li>Upgraded to NHibernate 2.0.1GA (with breaking  changes)</li>
</ul>
<h3>Enhancements</h3>
<ul>
<li>Added MSSQLServer2005 (default option)</li>
<li>Removed FieldNamingStrategy &#8211; it is now  auto-computed</li>
<li>Interfaces are now &#8220;Unmapped&#8221; by  default</li>
<li>Now uses NHibernatePropertyAccessor to manage  EntityList properties</li>
<li>Uses PropertyAttribute.BackingFieldName if  available</li>
<li>Generated properties now have IDENTITY/INDEX  attributes set</li>
</ul>
<h3>Optimisations</h3>
<ul>
<li>Disabled &#8216;cascade&#8217; options (TrueView is now  responsible for cascading)</li>
<li>Disabled &#8220;Select-before-update&#8217;</li>
</ul>
<h3>Fixes</h3>
<ul>
<li>Corrected filter when creating interface  mappings</li>
<li>Component mappings no longer include OID or  AccessDetail properties</li>
<li>Corrected AssemblyResolve for strongly named  assemblies</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://evolving-software.co.uk/blog/2009/01/05/trueview-release-12090105-upgraded-to-nhibernate-20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TrueView Release 1.04.0811.09</title>
		<link>http://evolving-software.co.uk/blog/2008/11/11/trueview-release-104081109/</link>
		<comments>http://evolving-software.co.uk/blog/2008/11/11/trueview-release-104081109/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 10:49:42 +0000</pubDate>
		<dc:creator>Vijay</dc:creator>
				<category><![CDATA[New releases]]></category>

		<guid isPermaLink="false">http://evolving-software.co.uk/blog/?p=21</guid>
		<description><![CDATA[<a href="http://evolving-software.co.uk/blog/2008/11/11/trueview-release-104081109/" title="TrueView Release 1.04.0811.09"></a>Download the latest version here. Enhancements: Updated algorithm for identifying property backing fields Added support for saving multiple entities in a single transaction Fixes: EntityLinker now handles relationships for super classes Corrected relationship tracking when using EntityLinker Corrected scope of &#8230;<p class="read-more"><a href="http://evolving-software.co.uk/blog/2008/11/11/trueview-release-104081109/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://evolving-software.co.uk/blog/2008/11/11/trueview-release-104081109/" title="TrueView Release 1.04.0811.09"></a><p>Download the latest version <a href="http://www.evolving-software.co.uk/downloads.html">here</a>.</p>
<h3>Enhancements:</h3>
<ul>
<li>Updated algorithm for identifying property backing fields</li>
<li>Added support for saving multiple entities in a single transaction</li>
</ul>
<h3>Fixes:</h3>
<ul>
<li>EntityLinker now handles relationships for super classes</li>
<li>Corrected relationship tracking when using EntityLinker</li>
<li>Corrected scope of internal members</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://evolving-software.co.uk/blog/2008/11/11/trueview-release-104081109/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TrueView Release 1.04.0810.27 &#8211; Factory and Repository support</title>
		<link>http://evolving-software.co.uk/blog/2008/10/27/trueview-release-104081027-factory-and-repository-support/</link>
		<comments>http://evolving-software.co.uk/blog/2008/10/27/trueview-release-104081027-factory-and-repository-support/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 06:07:12 +0000</pubDate>
		<dc:creator>Vijay</dc:creator>
				<category><![CDATA[New releases]]></category>
		<category><![CDATA[factory]]></category>
		<category><![CDATA[repository]]></category>

		<guid isPermaLink="false">http://evolving-software.co.uk/blog/?p=19</guid>
		<description><![CDATA[<a href="http://evolving-software.co.uk/blog/2008/10/27/trueview-release-104081027-factory-and-repository-support/" title="TrueView Release 1.04.0810.27 - Factory and Repository support"></a>There are lots of questions in the DDD community about Factories and Repositories.  TrueView now supports these concepts in a nicely decoupled way.  Learn more in the user guide. Enhancements: Added support for Entity factories using IFactory&#60;T&#62; Added support for &#8230;<p class="read-more"><a href="http://evolving-software.co.uk/blog/2008/10/27/trueview-release-104081027-factory-and-repository-support/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://evolving-software.co.uk/blog/2008/10/27/trueview-release-104081027-factory-and-repository-support/" title="TrueView Release 1.04.0810.27 - Factory and Repository support"></a><p>There are lots of questions in the DDD community about <strong>Factories </strong>and <strong>Repositories</strong>.  TrueView now supports these concepts in a nicely decoupled way.  Learn more in the <a href="http://www.evolving-software.co.uk/downloads.html">user guide</a>.</p>
<h3>Enhancements:</h3>
<ul>
<li>Added support for Entity factories using IFactory&lt;T&gt;</li>
<li>Added support for Entity repositories using IRepository&lt;T&gt;</li>
<li>EntityLinker now uses IEntity instead of Entity</li>
<li>Added Min/Max range to MaximumSearchResults attribute property</li>
<li>Added CanModifyContents attribute property to support &#8220;Aggregate Root&#8221;</li>
<li>Added RequiresConfirmation attribute property to MethodAttribute</li>
<li>Stripped System.Reflection.TargetInvocationException to make exception messages clearer</li>
<li>Removed duplicate content from exception messages</li>
<li>Log files are now saved in compressed format</li>
<li>Added &#8220;Close All Windows&#8221; option</li>
</ul>
<h3>Fixes:</h3>
<ul>
<li>EntityLinker now accesses collection properties to allow NHibernate proxies to initialise</li>
<li>NHIbernatePersistence has better tracking of entity statuses</li>
<li>NHibernatePersistence now wakes up before adding/removing items to lists</li>
<li>MemoryCache now simulates versioning like NHibernate</li>
<li>Corrected internal tracking of new instances within object graphs</li>
<li>Corrected NHibernate query for &#8220;OR&#8221; operator</li>
<li>Corrected NHibernate query for GUID values</li>
<li>Improved persistence of unrelated object graphs (explicit UnitOfWork check no longer required)</li>
<li>Guid is now recognised as a Value Type</li>
<li>Window titles are now updated after a Save operation</li>
<li>Toolbar is updated when the active MDI child is changed</li>
<li>Splash screen no longer dominates the desktop at startup</li>
<li>Correction when creating an entity within an aggregate</li>
<li>EntityLinker now sets the dirty status of affected entities</li>
</ul>
<hr /><strong>TrueView DataBridge 1.23.0810.25</strong></p>
<h3>Enhancements:</h3>
<ul>
<li>Now creates link tables for  classes that don&#8217;t have foreign key references</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://evolving-software.co.uk/blog/2008/10/27/trueview-release-104081027-factory-and-repository-support/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Release 1.02.0808.25 &#8211; Value Object support</title>
		<link>http://evolving-software.co.uk/blog/2008/08/08/release-102080825/</link>
		<comments>http://evolving-software.co.uk/blog/2008/08/08/release-102080825/#comments</comments>
		<pubDate>Fri, 08 Aug 2008 09:12:47 +0000</pubDate>
		<dc:creator>Vijay</dc:creator>
				<category><![CDATA[New releases]]></category>
		<category><![CDATA[valueobject]]></category>

		<guid isPermaLink="false">http://evolving-software.co.uk/blog/?p=10</guid>
		<description><![CDATA[<a href="http://evolving-software.co.uk/blog/2008/08/08/release-102080825/" title="Release 1.02.0808.25 - Value Object support"></a>Added support for ValueObjects, as well as various bug fixes and enhancements.  Download it here. Enhancements: Added Evolving.TrueView.Domain.ValueObject to support &#8220;Value Objects&#8221; Added better exception messages when adding and creating entities within lists EntityList TreeNodes are now sorted by Summary &#8230;<p class="read-more"><a href="http://evolving-software.co.uk/blog/2008/08/08/release-102080825/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://evolving-software.co.uk/blog/2008/08/08/release-102080825/" title="Release 1.02.0808.25 - Value Object support"></a><p>Added support for <strong>ValueObjects</strong>, as well as various bug fixes and enhancements.  Download it <a href="http://www.evolving-software.co.uk/downloads.html">here</a>.</p>
<h3>Enhancements:</h3>
<ul>
<li>Added Evolving.TrueView.Domain.ValueObject to support &#8220;Value Objects&#8221;</li>
<li>Added better exception messages when adding and creating entities within lists</li>
<li>EntityList TreeNodes are now sorted by Summary value</li>
<li>Added icons to Query Dialog buttons</li>
<li>EntityAttribute.RelationShipType is no longer enforced by default</li>
<li>EntityListAttribute.RelationShipType is no longer enforced by default</li>
</ul>
<h3>Fixes:</h3>
<ul>
<li>Query Dialog now handles null/empty search values</li>
<li>Fixed exceptions when saving using NHiberate</li>
<li>Fixed formatting in RichText editor</li>
<li>RichText editor now handles CTRL-ENTER</li>
<li>Corrections to Evolving.TrueView.MyApplication.GetManager()</li>
</ul>
<hr />
<h3>TrueView DataBridge 1.22.0808.25</h3>
<h3>Enhancements:</h3>
<ul>
<li>Now creates link tables for classes that have 2+  EntityList&lt;&gt; properties of the same type</li>
<li>Relationships can be explicitly defined between  properties of 2 different classes</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://evolving-software.co.uk/blog/2008/08/08/release-102080825/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

