<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>netsparkle Issue Tracker Rss Feed</title><link>http://netsparkle.codeplex.com/workitem/list/basic</link><description>netsparkle Issue Tracker Rss Description</description><item><title>Created Issue: Install location issue. [19344]</title><link>http://netsparkle.codeplex.com/workitem/19344</link><description>When running NetSparkle if the installed files were put elsewhere from where the application was running it would sometimes find the wrong working directory. It was found this happened because it was using &amp;#38;quot&amp;#59;Environment.GetCurrentDirectory&amp;#59;&amp;#38;quot&amp;#59; to get the location.&lt;br /&gt;&lt;br /&gt;Instead &amp;#38;quot&amp;#59; System.Reflection.Assembly.GetEntryAssembly&amp;#40;&amp;#41;.Location&amp;#59; &amp;#38;quot&amp;#59; has been used as this would consistently give the correctly install location, regardless if the install folder was changed or not.&lt;br /&gt;&lt;br /&gt;File&amp;#58; NetSparkleCheckAndInstall.cs&lt;br /&gt;</description><author>Coderus_Troy</author><pubDate>Tue, 12 Feb 2013 16:11:44 GMT</pubDate><guid isPermaLink="false">Created Issue: Install location issue. [19344] 20130212041144P</guid></item><item><title>Created Issue: Exception Thrown During DSA Key Search [18808]</title><link>http://netsparkle.codeplex.com/workitem/18808</link><description>Under certain circumstances, the code used by NetSparkleDSAVerificator.TryGetResourceStream throws an exception at asm.GetManifestResourceNames&amp;#40;&amp;#41; when the assembly it is checking is dynamic &amp;#40;not file based&amp;#41;. Perhaps a try&amp;#47;catch inside the for loop that traps NotSupportedExceptions is in order.&lt;br /&gt;&lt;br /&gt;The exception stack follows.&lt;br /&gt;&lt;br /&gt;System.NotSupportedException&amp;#58; The invoked member is not supported in a dynamic assembly.&lt;br /&gt;   at System.Reflection.Emit.InternalAssemblyBuilder.GetManifestResourceNames&amp;#40;&amp;#41;&lt;br /&gt;   at AppLimit.NetSparkle.NetSparkleDSAVerificator.TryGetResourceStream&amp;#40;String publicKey&amp;#41;&lt;br /&gt;   at AppLimit.NetSparkle.NetSparkleDSAVerificator.ExistsPublicKey&amp;#40;String publicKey&amp;#41;&lt;br /&gt;   at AppLimit.NetSparkle.NetSparkleDownloadProgress.Client_DownloadFileCompleted&amp;#40;Object sender, AsyncCompletedEventArgs e&amp;#41;&lt;br /&gt;   at System.Net.WebClient.OnDownloadFileCompleted&amp;#40;AsyncCompletedEventArgs e&amp;#41;&lt;br /&gt;   at System.Net.WebClient.DownloadFileOperationCompleted&amp;#40;Object arg&amp;#41;&lt;br /&gt;   at System.Windows.Threading.ExceptionWrapper.InternalRealCall&amp;#40;Delegate callback, Object args, Int32 numArgs&amp;#41;&lt;br /&gt;   at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen&amp;#40;Object source, Delegate method, Object args, Int32 numArgs, Delegate catchHandler&amp;#41;&lt;br /&gt;</description><author>MosaicMatt</author><pubDate>Thu, 18 Oct 2012 17:10:43 GMT</pubDate><guid isPermaLink="false">Created Issue: Exception Thrown During DSA Key Search [18808] 20121018051043P</guid></item><item><title>Created Issue: Delta Update support [18582]</title><link>http://netsparkle.codeplex.com/workitem/18582</link><description>Sparkle supports some more attributes, e.g. delta updates &amp;#40;see https&amp;#58;&amp;#47;&amp;#47;github.com&amp;#47;andymatuschak&amp;#47;Sparkle&amp;#47;wiki&amp;#47;Delta-Updates&amp;#41;.&lt;br /&gt;&lt;br /&gt;It would be nice, if at least this feature would be supported, too&lt;br /&gt;</description><author>cig</author><pubDate>Tue, 04 Sep 2012 08:41:58 GMT</pubDate><guid isPermaLink="false">Created Issue: Delta Update support [18582] 20120904084158A</guid></item><item><title>Created Issue: Finnish localization [18573]</title><link>http://netsparkle.codeplex.com/workitem/18573</link><description>I think it&amp;#39;s obvious&lt;br /&gt;</description><author>mikkoviitala</author><pubDate>Fri, 31 Aug 2012 10:26:09 GMT</pubDate><guid isPermaLink="false">Created Issue: Finnish localization [18573] 20120831102609A</guid></item><item><title>Created Issue: Strong Named Assembly [18049]</title><link>http://netsparkle.codeplex.com/workitem/18049</link><description>Do you have any plans to provide a strong named assembly&amp;#63; I would like to use nuget out of the box, but for now it&amp;#39;s downloading the sources, provide a strong key, generate my own nuget-pack and take this. Since I don&amp;#39;t need any further changes, it&amp;#39;s pointless. I have some projects relying on strong names.&lt;br /&gt;&lt;br /&gt;Thanks, Harald&lt;br /&gt;</description><author>Cyber1000</author><pubDate>Sat, 12 May 2012 06:07:37 GMT</pubDate><guid isPermaLink="false">Created Issue: Strong Named Assembly [18049] 20120512060737A</guid></item><item><title>Created Issue: Always is performing a Reflection with assemblies [17618]</title><link>http://netsparkle.codeplex.com/workitem/17618</link><description>I put this modification in the class NetSparkleConfiguration at line 42&lt;br /&gt;&lt;br /&gt;       &amp;#47;&amp;#47;&amp;#47; &amp;#60;summary&amp;#62;&lt;br /&gt;        &amp;#47;&amp;#47;&amp;#47; The constructor reads out all configured values&lt;br /&gt;        &amp;#47;&amp;#47;&amp;#47; &amp;#60;&amp;#47;summary&amp;#62;        &lt;br /&gt;        public NetSparkleConfiguration&amp;#40;String ReferenceAssembly&amp;#41;&lt;br /&gt;            &amp;#58; this&amp;#40;ReferenceAssembly, ReferenceAssembly &amp;#61;&amp;#61; null&amp;#41; &amp;#123;&amp;#125;&lt;br /&gt;.....&lt;br /&gt;&lt;br /&gt;... And I doing the InitWithDefaultValues&amp;#40;&amp;#41; at the begining of the constructor&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;public NetSparkleConfiguration&amp;#40;String ReferenceAssembly, Boolean UseReflectionBasedAssemblyAccessor&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            &amp;#47;&amp;#47; set default values&lt;br /&gt;            InitWithDefaultValues&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;            &amp;#47;&amp;#47; set the value&lt;br /&gt;            this.UseReflectionBasedAssemblyAccessor &amp;#61; UseReflectionBasedAssemblyAccessor&amp;#59;&lt;br /&gt;&lt;br /&gt;            &amp;#47;&amp;#47; save the referecne assembly&lt;br /&gt;            _referenceAssembly &amp;#61; ReferenceAssembly&amp;#59;&lt;br /&gt;....&lt;br /&gt;</description><author>samydavic</author><pubDate>Fri, 16 Mar 2012 20:45:51 GMT</pubDate><guid isPermaLink="false">Created Issue: Always is performing a Reflection with assemblies [17618] 20120316084551P</guid></item><item><title>Commented Issue: Use Default Credentials for Access [16932]</title><link>http://netsparkle.codeplex.com/workitem/16932</link><description>I got the problem that all WebRequests must use the default credentials to bypass the local proxy.&lt;br /&gt;I would suggest to make an Option at on Sparkle and bypass it to NetSparkleDownloadProgress and NetSparkleAppCast&lt;br /&gt;Comments: ** Comment from web user: nitarmat ** &lt;p&gt;and of course bypass it to WebClient&lt;br /&gt;Client.UseDefaultCredentials &amp;#61; _sparkle.UseDefaultCredentials&amp;#59;&lt;/p&gt;</description><author>nitarmat</author><pubDate>Thu, 24 Nov 2011 06:10:08 GMT</pubDate><guid isPermaLink="false">Commented Issue: Use Default Credentials for Access [16932] 20111124061008A</guid></item><item><title>Created Issue: Use Default Credentials for Access [16932]</title><link>http://netsparkle.codeplex.com/workitem/16932</link><description>I got the problem that all WebRequests must use the default credentials to bypass the local proxy.&lt;br /&gt;I would suggest to make an Option at on Sparkle and bypass it to NetSparkleDownloadProgress and NetSparkleAppCastItem&lt;br /&gt;</description><author>nitarmat</author><pubDate>Wed, 23 Nov 2011 15:03:35 GMT</pubDate><guid isPermaLink="false">Created Issue: Use Default Credentials for Access [16932] 20111123030335P</guid></item><item><title>Commented Issue: Create a NuGet Package [16225]</title><link>http://netsparkle.codeplex.com/workitem/16225</link><description>As a developer I want NetSparkle distributed via NuGet so I don&amp;#39;t have to manually include the dependencies myself or check for updates&lt;br /&gt;Comments: ** Comment from web user: dei79 ** &lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;that is really cool, I will integrate this in our daily build to offer the different versions at NuGet.&lt;/p&gt;&lt;p&gt;Thanks a lot&lt;br /&gt;Dirk&lt;br /&gt;&lt;/p&gt;</description><author>dei79</author><pubDate>Thu, 25 Aug 2011 11:33:08 GMT</pubDate><guid isPermaLink="false">Commented Issue: Create a NuGet Package [16225] 20110825113308A</guid></item><item><title>Commented Issue: Create a NuGet Package [16225]</title><link>http://netsparkle.codeplex.com/workitem/16225</link><description>As a developer I want NetSparkle distributed via NuGet so I don&amp;#39;t have to manually include the dependencies myself or check for updates&lt;br /&gt;Comments: ** Comment from web user: wernervd ** &lt;p&gt;I have uploaded a package on Dirk&amp;#39;s behalf because I want to use it as well&amp;#58; http&amp;#58;&amp;#47;&amp;#47;nuget.org&amp;#47;List&amp;#47;Packages&amp;#47;NetSparkle&lt;/p&gt;&lt;p&gt;Attached the nuspec file so that this can be kept up to date for future releases, more info here&amp;#58; http&amp;#58;&amp;#47;&amp;#47;docs.nuget.org&amp;#47;&lt;/p&gt;</description><author>wernervd</author><pubDate>Wed, 24 Aug 2011 21:09:25 GMT</pubDate><guid isPermaLink="false">Commented Issue: Create a NuGet Package [16225] 20110824090925P</guid></item><item><title>Commented Issue: Make buttons large enough to hold text [16260]</title><link>http://netsparkle.codeplex.com/workitem/16260</link><description>Some of the buttons are not large enough for the &amp;#40;English&amp;#41; text, e.g. &amp;#34;Skip this version&amp;#34; and &amp;#34;Remind me later&amp;#34; &amp;#40;see attached screen shot&amp;#41;.&lt;br /&gt;Comments: ** Comment from web user: dei79 ** &lt;p&gt;So I&amp;#39;m puzzled, your screenshoot shows a different font which is used for buttons. Is AERO activated on your machine&amp;#63;&lt;/p&gt;</description><author>dei79</author><pubDate>Mon, 25 Jul 2011 17:32:45 GMT</pubDate><guid isPermaLink="false">Commented Issue: Make buttons large enough to hold text [16260] 20110725053245P</guid></item><item><title>Commented Issue: Make buttons large enough to hold text [16260]</title><link>http://netsparkle.codeplex.com/workitem/16260</link><description>Some of the buttons are not large enough for the &amp;#40;English&amp;#41; text, e.g. &amp;#34;Skip this version&amp;#34; and &amp;#34;Remind me later&amp;#34; &amp;#40;see attached screen shot&amp;#41;.&lt;br /&gt;Comments: ** Comment from web user: Renald ** &lt;p&gt;Hi,&lt;br /&gt;I review design of each language.&lt;br /&gt;I did some tests with WinForms and WPF app. No problem for my side.&lt;/p&gt;&lt;p&gt;To Dirk&amp;#58; I have reviewed the design before read your message.&lt;/p&gt;</description><author>Renald</author><pubDate>Mon, 25 Jul 2011 10:08:32 GMT</pubDate><guid isPermaLink="false">Commented Issue: Make buttons large enough to hold text [16260] 20110725100832A</guid></item><item><title>Commented Issue: Make buttons large enough to hold text [16260]</title><link>http://netsparkle.codeplex.com/workitem/16260</link><description>Some of the buttons are not large enough for the &amp;#40;English&amp;#41; text, e.g. &amp;#34;Skip this version&amp;#34; and &amp;#34;Remind me later&amp;#34; &amp;#40;see attached screen shot&amp;#41;.&lt;br /&gt;Comments: ** Comment from web user: helgeklein ** &lt;p&gt;No, I did not change anything related to the way system fonts are displayed, neither DPI nor font. I use Windows 7 x64 German with the language switched to English. The application I ran NetSparkle from is written in WPF.&lt;/p&gt;&lt;p&gt;I hope that helps.&lt;/p&gt;</description><author>helgeklein</author><pubDate>Mon, 25 Jul 2011 07:36:19 GMT</pubDate><guid isPermaLink="false">Commented Issue: Make buttons large enough to hold text [16260] 20110725073619A</guid></item><item><title>Closed Issue: Spanish Translation [16283]</title><link>http://netsparkle.codeplex.com/workitem/16283</link><description>I have been searching all over here looking for a spanish translation, if is not available i can make the trabslation for all who need, i just need to know how&lt;br /&gt;Comments: &lt;p&gt;fixed&lt;/p&gt;</description><author>dei79</author><pubDate>Sun, 24 Jul 2011 22:01:13 GMT</pubDate><guid isPermaLink="false">Closed Issue: Spanish Translation [16283] 20110724100113P</guid></item><item><title>Closed Issue: Optionally hide release notes section [16179]</title><link>http://netsparkle.codeplex.com/workitem/16179</link><description>Please add an option to hide the release notes browser control and the label. &lt;br /&gt;If no &amp;#60;sparkle&amp;#58;releaseNotesLink&amp;#62; tag is found in the cast it should be hidden automatically.&lt;br /&gt;Comments: &lt;p&gt;Fixed with &amp;#58; http&amp;#58;&amp;#47;&amp;#47;netsparkle.codeplex.com&amp;#47;SourceControl&amp;#47;changeset&amp;#47;changes&amp;#47;77291&lt;/p&gt;&lt;p&gt;Use the new property in the NetSparkl-Object&amp;#58; sparkle.HideReleaseNotes &amp;#61; true before starting the update loop&amp;#33;&lt;/p&gt;</description><author>dei79</author><pubDate>Sat, 23 Jul 2011 17:35:33 GMT</pubDate><guid isPermaLink="false">Closed Issue: Optionally hide release notes section [16179] 20110723053533P</guid></item><item><title>Commented Issue: Make buttons large enough to hold text [16260]</title><link>http://netsparkle.codeplex.com/workitem/16260</link><description>Some of the buttons are not large enough for the &amp;#40;English&amp;#41; text, e.g. &amp;#34;Skip this version&amp;#34; and &amp;#34;Remind me later&amp;#34; &amp;#40;see attached screen shot&amp;#41;.&lt;br /&gt;Comments: ** Comment from web user: dei79 ** &lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;did you change something on the system font or size or DPI&amp;#63;&lt;/p&gt;&lt;p&gt;I want to understand your change on the system to fix it in the right way &lt;/p&gt;&lt;p&gt;Thanks&lt;br /&gt;Dirk&lt;/p&gt;</description><author>dei79</author><pubDate>Sat, 23 Jul 2011 17:00:19 GMT</pubDate><guid isPermaLink="false">Commented Issue: Make buttons large enough to hold text [16260] 20110723050019P</guid></item><item><title>Closed Issue: Netsparkle window looks resizable but is not [16261]</title><link>http://netsparkle.codeplex.com/workitem/16261</link><description>The Netsparkle window has a grip in the lower right corner designating it as resizable &amp;#40;see attached screen shot&amp;#41;. Also, when you move the mouse over the border, the pointer changes to a &amp;#34;resize&amp;#34; pointer. That makes the user expect he can resize the window. But in reality he cannot.&lt;br /&gt;&lt;br /&gt;I have no problem with the window having a fixed size, but please remove the resize indicators mentioned above so as not to confuse users.&lt;br /&gt;Comments: &lt;p&gt;fixed with check in http&amp;#58;&amp;#47;&amp;#47;netsparkle.codeplex.com&amp;#47;SourceControl&amp;#47;changeset&amp;#47;changes&amp;#47;77288&lt;/p&gt;</description><author>dei79</author><pubDate>Sat, 23 Jul 2011 16:53:24 GMT</pubDate><guid isPermaLink="false">Closed Issue: Netsparkle window looks resizable but is not [16261] 20110723045324P</guid></item><item><title>Commented Issue: Spanish Translation [16283]</title><link>http://netsparkle.codeplex.com/workitem/16283</link><description>I have been searching all over here looking for a spanish translation, if is not available i can make the trabslation for all who need, i just need to know how&lt;br /&gt;Comments: ** Comment from web user: dei79 ** &lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;check out this link, it should help&amp;#58; http&amp;#58;&amp;#47;&amp;#47;netsparkle.codeplex.com&amp;#47;wikipage&amp;#63;title&amp;#61;http&amp;#37;3a&amp;#37;2f&amp;#37;2fnetsparkle.codeplex.com&amp;#37;2fdocumentation&amp;#37;2flocalization&amp;#38;referringTitle&amp;#61;Home&lt;/p&gt;&lt;p&gt;Dirk&lt;/p&gt;</description><author>dei79</author><pubDate>Sat, 23 Jul 2011 15:40:06 GMT</pubDate><guid isPermaLink="false">Commented Issue: Spanish Translation [16283] 20110723034006P</guid></item><item><title>Commented Issue: Spanish Translation [16283]</title><link>http://netsparkle.codeplex.com/workitem/16283</link><description>I have been searching all over here looking for a spanish translation, if is not available i can make the trabslation for all who need, i just need to know how&lt;br /&gt;Comments: ** Comment from web user: manuelpeh ** &lt;p&gt;how i can translate it&amp;#63; or where do i find information on how to make a translation&amp;#63;&lt;/p&gt;</description><author>manuelpeh</author><pubDate>Fri, 22 Jul 2011 22:22:01 GMT</pubDate><guid isPermaLink="false">Commented Issue: Spanish Translation [16283] 20110722102201P</guid></item><item><title>Commented Issue: Spanish Translation [16283]</title><link>http://netsparkle.codeplex.com/workitem/16283</link><description>I have been searching all over here looking for a spanish translation, if is not available i can make the trabslation for all who need, i just need to know how&lt;br /&gt;Comments: ** Comment from web user: dei79 ** &lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;currently no Spanish translation is available. Would be cool to get a spanish version from you.&lt;/p&gt;&lt;p&gt;Thanks&lt;br /&gt;Dirk&lt;br /&gt;&lt;/p&gt;</description><author>dei79</author><pubDate>Fri, 22 Jul 2011 21:16:46 GMT</pubDate><guid isPermaLink="false">Commented Issue: Spanish Translation [16283] 20110722091646P</guid></item></channel></rss>