<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.0.4" -->
<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/"
	>

<channel>
	<title>Grigsoft.com Development blog</title>
	<link>http://grigsoft.com/blog</link>
	<description></description>
	<pubDate>Sun, 21 Mar 2010 15:06:01 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.4</generator>
	<language>en</language>
			<item>
		<title>CompareIt update</title>
		<link>http://grigsoft.com/blog/?p=117</link>
		<comments>http://grigsoft.com/blog/?p=117#comments</comments>
		<pubDate>Sun, 21 Mar 2010 15:06:01 +0000</pubDate>
		<dc:creator>Igor Green</dc:creator>
		
	<category>Compare It!</category>
		<guid isPermaLink="false">http://grigsoft.com/blog/?p=117</guid>
		<description><![CDATA[Dialogs size are stored for each resolution;
Fixed some icons problems;
Fixed problem with Search dialog;
Downloads: wincmp4b.zip (1M, #2186) and Unicode

]]></description>
			<content:encoded><![CDATA[<p>Dialogs size are stored for each resolution;<br />
Fixed some icons problems;<br />
Fixed problem with Search dialog;</p>
<p>Downloads: <a href=http://www.grigsoft.com/wincmp4b.zip>wincmp4b.zip</a> (1M, #2186) and <a href=http://www.grigsoft.com/wincmp4bu.zip>Unicode</a>
</p>
]]></content:encoded>
			<wfw:commentRSS>http://grigsoft.com/blog/?feed=rss2&amp;p=117</wfw:commentRSS>
		</item>
		<item>
		<title>Encoding selection for CompareIt</title>
		<link>http://grigsoft.com/blog/?p=116</link>
		<comments>http://grigsoft.com/blog/?p=116#comments</comments>
		<pubDate>Mon, 08 Mar 2010 10:56:19 +0000</pubDate>
		<dc:creator>Igor Green</dc:creator>
		
	<category>Compare It!</category>
		<guid isPermaLink="false">http://grigsoft.com/blog/?p=116</guid>
		<description><![CDATA[Unicode version of CompareIt now has ability to select encoding in View>Encoding menu. It will only work when opening non-unicode files. Note that ANSI version supports encoding specified in Font selection.
Downloads: Unicode (1M, #2184) 
Also, I have update for shell extension, which should finally work fine with Win7, including 64b:
wincmpext.zip (110KB) 
]]></description>
			<content:encoded><![CDATA[<p>Unicode version of CompareIt now has ability to select encoding in View>Encoding menu. It will only work when opening non-unicode files. Note that ANSI version supports encoding specified in Font selection.<br />
Downloads: <a href=http://www.grigsoft.com/wincmp4bu.zip>Unicode</a> (1M, #2184) </p>
<p>Also, I have update for shell extension, which should finally work fine with Win7, including 64b:<br />
<a href=http://www.grigsoft.com/wincmpext.zip>wincmpext.zip</a> (110KB) </p>
]]></content:encoded>
			<wfw:commentRSS>http://grigsoft.com/blog/?feed=rss2&amp;p=116</wfw:commentRSS>
		</item>
		<item>
		<title>Synchronize It! update</title>
		<link>http://grigsoft.com/blog/?p=115</link>
		<comments>http://grigsoft.com/blog/?p=115#comments</comments>
		<pubDate>Sun, 28 Feb 2010 17:24:57 +0000</pubDate>
		<dc:creator>Igor Green</dc:creator>
		
	<category>Uncategorized</category>
		<guid isPermaLink="false">http://grigsoft.com/blog/?p=115</guid>
		<description><![CDATA[Small Synchronize It! update:
show number of same files and support Alt+Gray Plus/Minus to select files of same type.
Downloads: wndsyncb.zip (1MB, #1701) and Unicode

]]></description>
			<content:encoded><![CDATA[<p>Small Synchronize It! update:<br />
show number of same files and support Alt+Gray Plus/Minus to select files of same type.</p>
<p>Downloads: <a href=http://www.grigsoft.com/wndsyncb.zip>wndsyncb.zip</a> (1MB, #1701) and <a href=http://www.grigsoft.com/wndsyncbu.zip>Unicode</a>
</p>
]]></content:encoded>
			<wfw:commentRSS>http://grigsoft.com/blog/?feed=rss2&amp;p=115</wfw:commentRSS>
		</item>
		<item>
		<title>Using Compare It! with Git</title>
		<link>http://grigsoft.com/blog/?p=114</link>
		<comments>http://grigsoft.com/blog/?p=114#comments</comments>
		<pubDate>Fri, 25 Dec 2009 14:37:47 +0000</pubDate>
		<dc:creator>Igor Green</dc:creator>
		
	<category>Compare It!</category>
	<category>Articles</category>
		<guid isPermaLink="false">http://grigsoft.com/blog/?p=114</guid>
		<description><![CDATA[Git is becoming more and more popular as version control system, thanks to it&#8217;s famous creator. Here are few advices on how you can use Compare It! (or any other external comparer) as a difference tool. Note that since Compare It! does not yet support 3-way merge, you can only use it as a difference [...]]]></description>
			<content:encoded><![CDATA[<p>Git is becoming more and more popular as version control system, thanks to it&#8217;s famous creator. Here are few advices on how you can use Compare It! (or any other external comparer) as a difference tool. Note that since Compare It! does not yet support 3-way merge, you can only use it as a difference viewer.<br />
I have to admit that I&#8217;m not even close to a pro-git user, so if you have some corrections or improvements, please feel free to let me know.</p>
<p>Here and later I will use D:\Git as your Git installation folder.</p>
<p>1. Starting comparison from command line<br />
Open D:\git\etc\gitconfig and add these keys and sections:<br />
<code>[difftool "wincmp"]<br />
cmd = F:/Wincmp/wincmp3.exe $LOCAL //=\"Old version\" $REMOTE</code><br />
<code>[alias]<br />
cmp = difftool --tool=wincmp</code><br />
Note that backslashes in path were replaced by normal slashes (<strong>/</strong>) - git requires this change.</p>
<p>Now to compare branches, you can say:</p>
<ul>
<li><b>git cmp master</b> - to compare current folder state with indexed master branch;</li>
<li><b>git cmp master v1.0</b> - to compare current master and v1.0 branches.</li>
</ul>
<p>In either case git will prompt you before invoking CompareIt for each changed file. It&#8217;s a bit awkward, but git also have some UI!</p>
<p>2. Using CompareIt it GitK.<br />
Type gitk in command line to start git toolkit. Select menu Edit>Options, and in the middle of large dialog you will see option to set difference viewer. Just select CompareIt there.<br />
Now when viewing changes in specific commit in patch mode, you can right click file and select Difference viewer there. Unfortunately this doesn&#8217;t seem to work when viewing changes between 2 branches, but maybe this will be fixed in future.</p>
]]></content:encoded>
			<wfw:commentRSS>http://grigsoft.com/blog/?feed=rss2&amp;p=114</wfw:commentRSS>
		</item>
		<item>
		<title>Synchronize It! update</title>
		<link>http://grigsoft.com/blog/?p=113</link>
		<comments>http://grigsoft.com/blog/?p=113#comments</comments>
		<pubDate>Fri, 25 Dec 2009 13:53:14 +0000</pubDate>
		<dc:creator>Igor Green</dc:creator>
		
	<category>Synchronize It!</category>
		<guid isPermaLink="false">http://grigsoft.com/blog/?p=113</guid>
		<description><![CDATA[Small update for 3.5 - now include\exclude folder mask can include variables too.
Downloads: wndsyncb.zip (1M, #1699) and Unicode

]]></description>
			<content:encoded><![CDATA[<p>Small update for 3.5 - now include\exclude folder mask can include variables too.</p>
<p>Downloads: <a href=http://www.grigsoft.com/wndsyncb.zip>wndsyncb.zip</a> (1M, #1699) and <a href=http://www.grigsoft.com/wndsyncbu.zip>Unicode</a>
</p>
]]></content:encoded>
			<wfw:commentRSS>http://grigsoft.com/blog/?feed=rss2&amp;p=113</wfw:commentRSS>
		</item>
		<item>
		<title>Synchronize It! 3.5 RC2</title>
		<link>http://grigsoft.com/blog/?p=112</link>
		<comments>http://grigsoft.com/blog/?p=112#comments</comments>
		<pubDate>Sun, 29 Nov 2009 20:02:46 +0000</pubDate>
		<dc:creator>Igor Green</dc:creator>
		
	<category>Synchronize It!</category>
		<guid isPermaLink="false">http://grigsoft.com/blog/?p=112</guid>
		<description><![CDATA[Added sorting pane (that would be optional), and fixed bug with sorting after start.
Downloads: wndsyncb.zip (1M, #1696) and Unicode

]]></description>
			<content:encoded><![CDATA[<p>Added sorting pane (that would be optional), and fixed bug with sorting after start.</p>
<p>Downloads: <a href=http://www.grigsoft.com/wndsyncb.zip>wndsyncb.zip</a> (1M, #1696) and <a href=http://www.grigsoft.com/wndsyncbu.zip>Unicode</a>
</p>
]]></content:encoded>
			<wfw:commentRSS>http://grigsoft.com/blog/?feed=rss2&amp;p=112</wfw:commentRSS>
		</item>
		<item>
		<title>Synchronize It! 3.5 RC</title>
		<link>http://grigsoft.com/blog/?p=111</link>
		<comments>http://grigsoft.com/blog/?p=111#comments</comments>
		<pubDate>Wed, 04 Nov 2009 19:22:14 +0000</pubDate>
		<dc:creator>Igor Green</dc:creator>
		
	<category>Synchronize It!</category>
		<guid isPermaLink="false">http://grigsoft.com/blog/?p=111</guid>
		<description><![CDATA[I have found quite a critical bug, which could random affect anyone using Projects feature. So I have decided to make a release with what we have ready to this time:
- Win7 compatibility issues fixed;
- FTP can transfer specific files in Text mode;
- general exclude list;
- limit depth of subfolders searched;
- experimental &#8220;Detect possible conflicts&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>I have found quite a critical bug, which could random affect anyone using Projects feature. So I have decided to make a release with what we have ready to this time:<br />
- Win7 compatibility issues fixed;<br />
- FTP can transfer specific files in Text mode;<br />
- general exclude list;<br />
- limit depth of subfolders searched;<br />
- experimental &#8220;Detect possible conflicts&#8221; feature.<br />
This is almost ready 3.5 release, so let&#8217;s call it RC <img src='http://grigsoft.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Downloads: <a href=http://www.grigsoft.com/wndsyncb.zip>wndsyncb.zip</a> (1M, #1692) and <a href=http://www.grigsoft.com/wndsyncbu.zip>Unicode</a></p>
<p>I&#8217;d like to take few words about &#8220;Detect possible conflicts&#8221;. This one is really quite simple, but the idea only comes to me few days ago. I think it will be useful if you often sync same locations. In this case usually you only transfer files, which you have modified since last sync. And it would be reasonable to suggest, that if target folder has a modified file within same date range, then it&#8217;s probably a conflict. Synchronize It! can detect this if History files are used, but without history it was unable to detect this. Now with new option Synchronize It! will check what is the oldest time of <strong>listed newer </strong>source files, and warn you if it&#8217;s going to overwrite any target file newer then that time. I&#8217;m playing with this simple feature for few days, and I really like it. It becomes unusable for large first-time sync though, so I will either have to disable it automatically for this case, or add an option to quickly disable highlighting. I will appreciate any feedback on this feature. Thank you!
</p>
]]></content:encoded>
			<wfw:commentRSS>http://grigsoft.com/blog/?feed=rss2&amp;p=111</wfw:commentRSS>
		</item>
		<item>
		<title>CompareIt update</title>
		<link>http://grigsoft.com/blog/?p=110</link>
		<comments>http://grigsoft.com/blog/?p=110#comments</comments>
		<pubDate>Fri, 04 Sep 2009 13:53:13 +0000</pubDate>
		<dc:creator>Igor Green</dc:creator>
		
	<category>Compare It!</category>
		<guid isPermaLink="false">http://grigsoft.com/blog/?p=110</guid>
		<description><![CDATA[+ Search\replace command now can be limited to same\changed\added lines;
* XML formatter improved to handle multi-line comments correctly
Downloads: wincmp4b.zip (1M, #2180) and Unicode

]]></description>
			<content:encoded><![CDATA[<p>+ Search\replace command now can be limited to same\changed\added lines;<br />
* XML formatter improved to handle multi-line comments correctly</p>
<p>Downloads: <a href=http://www.grigsoft.com/wincmp4b.zip>wincmp4b.zip</a> (1M, #2180) and <a href=http://www.grigsoft.com/wincmp4bu.zip>Unicode</a>
</p>
]]></content:encoded>
			<wfw:commentRSS>http://grigsoft.com/blog/?feed=rss2&amp;p=110</wfw:commentRSS>
		</item>
		<item>
		<title>CompareIt 4.2b update</title>
		<link>http://grigsoft.com/blog/?p=109</link>
		<comments>http://grigsoft.com/blog/?p=109#comments</comments>
		<pubDate>Thu, 03 Sep 2009 10:14:15 +0000</pubDate>
		<dc:creator>Igor Green</dc:creator>
		
	<category>Compare It!</category>
		<guid isPermaLink="false">http://grigsoft.com/blog/?p=109</guid>
		<description><![CDATA[Let&#8217;s begin summarizing changes for 4.2.
* If HTML2 report is generated without external CSS and navigation options, it will use plain html with less tables. This simplifies opening of report in MS Word, as an example.
+ CTRL+F6: toggle expanding single pane. Sidenote to myself - ESC should return original panes first, then exit.
+ Quick cancel: [...]]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s begin summarizing changes for 4.2.<br />
* If HTML2 report is generated without external CSS and navigation options, it will use plain html with less tables. This simplifies opening of report in MS Word, as an example.<br />
+ CTRL+F6: toggle expanding single pane. Sidenote to myself - ESC should return original panes first, then exit.<br />
+ Quick cancel: now CompareIt can be quickly stopped during loading progress - if you have selected wrong large files or forced partial matching goes too slow.</p>
<p>Downloads: <a href=http://www.grigsoft.com/wincmp4b.zip>wincmp4b.zip</a> (1M, #2179) and <a href=http://www.grigsoft.com/wincmp4bu.zip>Unicode</a>
</p>
]]></content:encoded>
			<wfw:commentRSS>http://grigsoft.com/blog/?feed=rss2&amp;p=109</wfw:commentRSS>
		</item>
		<item>
		<title>Shell extensions</title>
		<link>http://grigsoft.com/blog/?p=108</link>
		<comments>http://grigsoft.com/blog/?p=108#comments</comments>
		<pubDate>Thu, 27 Aug 2009 16:06:15 +0000</pubDate>
		<dc:creator>Igor Green</dc:creator>
		
	<category>Compare It!</category>
	<category>Synchronize It!</category>
		<guid isPermaLink="false">http://grigsoft.com/blog/?p=108</guid>
		<description><![CDATA[CompareIt shell extension is fixed and should correctly work with Vista\Win7. It will also work for Synchronize It!, if placed to it&#8217;s folder. But there should be single extension registered - so for best work both programs should be placed in same folders.
Downloads: wincmpext.zip (100Kb), 64b version included.

]]></description>
			<content:encoded><![CDATA[<p>CompareIt shell extension is fixed and should correctly work with Vista\Win7. It will also work for Synchronize It!, if placed to it&#8217;s folder. But there should be single extension registered - so for best work both programs should be placed in same folders.</p>
<p>Downloads: <a href=http://www.grigsoft.com/wincmpext.zip>wincmpext.zip</a> (100Kb), 64b version included.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://grigsoft.com/blog/?feed=rss2&amp;p=108</wfw:commentRSS>
		</item>
	</channel>
</rss>

