active questions tagged release - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T15:26:14Zhttp://stackoverflow.com/feeds/tag/releasehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1853654/jquery-code-behaves-differently-in-debug-vs-release-mode0jQuery code behaves differently in Debug vs. Release modeCristi Cotovan2009-12-05T22:21:42Z2009-12-06T10:06:19Z
<p>I am developing a website where I am using a tabs implementation with jQuery. In Debug mode, all runs fine, I spent the entire day developing it, and when I was about to deploy to the live site and I compiled in 'Release' mode, the tabs don't switch anymore. Why would this code behave differently? I am assuming it's the JavaScript code that gets executed differently.</p>
<p>Any ideas of what I could check? Thanks.</p>
http://stackoverflow.com/questions/1838864/objective-c-release-objects2Objective-C + release Objectspratik2009-12-03T09:51:58Z2009-12-03T11:02:56Z
<p>I am using the following function in my application:</p>
<pre><code>+(TeamTournamentLookUp *)getOpponentTeamTournamentLookUp:(int)tournamentId:(int)opponentTeamId
{
TeamTournamentLookUp *objOpponentTTL = nil;
const char *sql = "SELECT TeamTournamentLookUpID, TournamentID, TeamID, NumberOfWins, NumberOfLosses, NumberOfDraws, Points, Rank, IsUserTeam from TeamTournamentLookUp where TournamentID = ? and TeamID = ?";
sqlite3_stmt *selectstmt;
if(sqlite3_prepare_v2(database, sql, -1, &selectstmt, NULL) != SQLITE_OK)
NSAssert1(0, @"Error. '%s'", sqlite3_errmsg(database));
sqlite3_bind_int(selectstmt, 1, tournamentId);
sqlite3_bind_int(selectstmt, 2, opponentTeamId);
if(SQLITE_DONE != sqlite3_step(selectstmt))
{
NSInteger primaryKey = sqlite3_column_int(selectstmt, 0);
objOpponentTTL = [[TeamTournamentLookUp alloc] initWithPrimaryKey:primaryKey];
objOpponentTTL.tournamentId = sqlite3_column_int(selectstmt, 1);
objOpponentTTL.teamId = sqlite3_column_int(selectstmt, 2);
objOpponentTTL.numberOfWins = (sqlite3_column_type(selectstmt, 3) == SQLITE_NULL) ? 0 : sqlite3_column_int(selectstmt, 3);
objOpponentTTL.numberOfLosses = (sqlite3_column_type(selectstmt, 4) == SQLITE_NULL) ? 0 : sqlite3_column_int(selectstmt, 4);
objOpponentTTL.numberOfDraws = (sqlite3_column_type(selectstmt, 5) == SQLITE_NULL) ? 0 : sqlite3_column_int(selectstmt, 5);
objOpponentTTL.points = (sqlite3_column_type(selectstmt, 6) == SQLITE_NULL) ? 0 : sqlite3_column_int(selectstmt, 6);
objOpponentTTL.rank = (sqlite3_column_type(selectstmt, 7) == SQLITE_NULL) ? 0 : sqlite3_column_int(selectstmt, 7);
objOpponentTTL.isUserTeam = (sqlite3_column_type(selectstmt, 9) == SQLITE_NULL) ? 0 : sqlite3_column_int(selectstmt, 9);
}
return objOpponentTTL;
}
</code></pre>
<p>Basically I am returning an Object of TeamTournamentLookUp class.</p>
<p>In the code I am allocating the object:
objOpponentTTL = [[TeamTournamentLookUp alloc] initWithPrimaryKey:primaryKey];</p>
<p>Now my question is where should I release the object?</p>
http://stackoverflow.com/questions/1817622/checklist-for-releasing-an-open-source-library0Checklist for releasing an open source libraryjd2009-11-30T02:44:51Z2009-11-30T10:42:42Z
<p>Hi all,</p>
<p>I have been working on a web development library (for the CodeIgniter framework) that I soon hope to release. </p>
<p>This would be my first contribution ever, and I have never released an open source library in the past.</p>
<p>I wanted to appeal to the experience of some of you for any steps to follow before releasing. I know that testing and documentation are key... what else ?</p>
http://stackoverflow.com/questions/1405337/console-application-questions-build-release-not-loading-solution-file0Console application questions (build release/ not loading solution file)Gern Blandston2009-09-10T13:33:36Z2009-11-30T10:00:03Z
<p>I've got a couple questions about .net console applications.</p>
<p>I created the console app, and included a solution file during the create, but when I open the solution file, it only shows the project, not the solution. Why doesn't the solution load in the solution explorer?</p>
<p>Also, I don't seem to be able to build the project in 'Release' mode; only debug. I switched the 'Compile/Configuration' and 'Debug/Configuration' to Release, but it doesn't build the 'bin\release' folder.</p>
<p>Any pointers to docs for this would be appreciated.</p>
<p>Thank you</p>
http://stackoverflow.com/questions/1818548/perform-a-maven-patch-release0Perform a maven patch releasefahdshariff2009-11-30T08:39:23Z2009-11-30T09:19:41Z
<p>Is it possible to perform a patch release in maven? I would like to create a jar containing only one class which I have changed since the release.</p>
http://stackoverflow.com/questions/1818171/points-to-consider-before-releasing-a-net-product-beta0"Points to Consider" before releasing a .NET Product BetaA9S62009-11-30T06:32:53Z2009-11-30T06:58:34Z
<p>I am planning to release a .NET product as Beta in the next couple of weeks. I want to know what points should be considered before releasing a product. I think the following needs to be taken care of:</p>
<ol>
<li>Professional Icons/Splash and About screens</li>
<li>Obfuscation of assemblies</li>
<li>Sign the assemblies - Strong Name</li>
<li>Professional Security Certificate (Verisign/Thwate) - Authenticode signing assemblies</li>
<li>Google AdWords, AdSense and Analytics</li>
<li>Writing blogs etc about the application features</li>
<li>A way to get bug/features from BETA users</li>
</ol>
<p>Basically the question is how to release an effective BETA and make my product popular?</p>
http://stackoverflow.com/questions/1812393/enhancements-to-programming-languages-that-had-to-be-withdrawn-after-release3Enhancements to programming languages that had to be withdrawn after release?peter.murray.rust2009-11-28T12:16:41Z2009-11-29T15:29:43Z
<p>Are there examples of significant enhancements to major programming languages that were fully released and then found to be sufficiently flawed that they had to be withdrawn? </p>
<p><strong>UPD</strong> @Jeff Foster has an example of a feature that is not consistently implemented and I'd take those as answers</p>
<p><strong>UPD</strong> There is a grey area between Deprecated and withdrawn. I suspect that there are thousands of Deprecated examples - which can still be used but are not advised. I can conceive that there are features which some creators thought they could implement fully or consistently but actually broke the integrity of the system.</p>
<p>I was particularly looking for enhancements (not original features) as these will have been planned (probably with community involvement) and released after testing, etc.</p>
http://stackoverflow.com/questions/1807338/code-leaks-memory-seems-to-be-coming-from-id3dxbuffer-unsure-why0Code leaks memory, seems to be coming from ID3DXBuffer, unsure why..meds2009-11-27T08:07:37Z2009-11-28T09:02:26Z
<p>I load a shader with the following:</p>
<blockquote>
<p>ID3DXBuffer* errors = 0; ID3DXEffect
*effect = 0;</p>
<p>HR(D3DXCreateEffectFromFile(
gd3dDevice, L"Shader.fx", 0, 0,
D3DXSHADER_DEBUG|D3DXSHADER_SKIPOPTIMIZATION,
0, &effect, &errors) );</p>
<p>for(int i = 0; i < 3; i++) {
if(errors) { errors->Release();
if(effect)
effect->Release();</p>
<p>errors = 0;
HR(D3DXCreateEffectFromFile(gd3dDevice,
L"Shader.fx",
0, 0, D3DXSHADER_DEBUG, 0, effect, &errors)); } else break; }</p>
</blockquote>
<p>Which is trying to load a shader and if it gets an error/warning it tries again 3 more times before giving up.</p>
<p>Now I've found when I close the application D3DX gives me the following message:</p>
<p>D3DX: MEMORY LEAKS DETECTED: 2 allocations unfreed (486 bytes)</p>
<p>and this ONLY happens when there are errors (i.e. it goes into the loop). I'm really not sure why this is happening, any ideas?</p>
<p>OK I fixed it, was just a logic issue, 'error' didn't have 'release' called on it on the third try hence the issue.</p>
http://stackoverflow.com/questions/1804165/jquery-highlight-element-on-select-option0jQuery Highlight element on select optionAshley Ward2009-11-26T14:58:20Z2009-11-26T15:22:48Z
<p>I have a list of values in a drop down style select box e.g.</p>
<pre><code><select id="places">
<option>Italy</option>
<option>France</option>
<option>Germany</option>
<option>Spain</option>
</select>
</code></pre>
<p>I also have the same list of values in a div on my page
e.g.</p>
<pre><code><div>
<span>Italy</span>
<span>France</span>
<span>Germany</span>
<span>Spain</span>
</div>
</code></pre>
<p>Using JQuery, I want to have it so - when a value in the dropdown is selected, the equivalent option in the div is briefly highlighted. </p>
<p>I've been struggling with the jQuery highlight plugin, but I believe the quicker way may be to use the highlight class of JjQuery UI. Apologies in advance for being a noob :)</p>
http://stackoverflow.com/questions/1800083/what-is-the-difference-between-release-and-iteration1What is the difference between release and iteration?streetparade2009-11-25T21:28:35Z2009-11-25T21:33:31Z
<p>The title says What is the difference between release and iteration? Can you explain what the difference is?</p>
http://stackoverflow.com/questions/1795920/how-do-other-development-teams-approach-version-numbers4How do other development teams approach version numbers?Noel2009-11-25T10:11:49Z2009-11-25T11:09:01Z
<p>Our application is quite mature, and thus we are up to version 16. However, this can give the impression that the software is old and out of touch (how many commercial applications are there with a version 20+??)</p>
<p>Obviously, version numbers are quite arbitrary - what do other people use? I quite like the Ubuntu approach of month.date, but I'd like to see what other strategies people use.</p>
http://stackoverflow.com/questions/1245312/how-to-release-often-with-lean-kanban3How to release often with Lean/Kanban?Halvard2009-08-07T15:09:36Z2009-11-25T10:59:20Z
<p>I am quite new to Lean/Kanban, but have poured over online resources over the last few weeks and have come up with a question that I haven't found a good answer for. Lean/Kanban seems otherwise such a good fit for our company, who is already using Scrum, but have reached some limitations inside that methodology. I hope someone here can give me a good idea. </p>
<p>As I see it, one of the biggest advantages of Scrum over Waterfall is the use of sprints. By having everything ready every 14 days you get short feedback cycles and can release often. However, as I have understood from reading about Lean, there are some costs associated with this (for example, time spent in sprint planning meetings, team commitment meetings & some problems with finding something useful for everyone at the end of the sprints).</p>
<p>Lean/Kanban will remove these wastes, but only at the cost of not being able to release every 14 days. Or have I missed an important point? For, in Kanban, how can you work on new development tasks and release at the same time? How do you make sure you don't ship something that is only halfway done? And how can you test it properly? </p>
<p>My best "solutions/ideas" so far are:</p>
<ul>
<li>Don't release often and allow the waste associated with running out of new development tasks. Not really a solution to the question asked though.</li>
<li>Develop in branches and then merge into the main trunk. Makes you have to support at least two branches continuously internally.</li>
<li>Use some smart automatic labelling system to automatically build only certain finished tasks and not others.</li>
</ul>
<p>As a summary, <b>my question is</b>: When you use Lean/Kanban, can you release often without introducing waste? Or is <i>release often</i> not part of Lean/Kanban?</p>
<p><b>Additional info specific to my company</b>:
We use Team Foundation System & Source Control and have previously had some bad experiences in regards to branching and merging. Could this be solved simply by bringing in some expertise in this area?</p>
http://stackoverflow.com/questions/634937/time-performance-in-release-mode-a-grotesque-difference-in-vc-2008-and-vc-201Time performance in Release mode: a grotesque difference in VC++ 2008 and VC++ 2005 Express EditionIsis2009-03-11T15:03:42Z2009-11-22T13:00:01Z
<p>Hi, I ran the same project (with the same configuration properties) in VC++ 2008 and in VC++ 2005 Express Edition. I got surprised with difference in time preformance between them: VC++ 2008 took much more time (approximately 30% additional time) than VC++ 2005 Express Edition. Why did this happen? Is it due to Express Edition being lighter?</p>
<p>Thanks,</p>
<p>Isis</p>
http://stackoverflow.com/questions/1737554/how-to-prove-my-stakeholder-and-manager-my-software-works6How to prove my stakeholder and manager my software works?Hace2009-11-15T13:39:36Z2009-11-17T20:56:40Z
<p>What do software engineers encounter after another stressfull release? Well, the first thing we encounter in our group are the bugs we have released out in the open. The biggest problem that we as software engineers encounter after a stressfull release is spaghetti-code, also called the <a href="http://laputan.org/mud/mud.html" rel="nofollow">big ball of mud</a>. </p>
<blockquote>
<p>The time and money to chase perfection are seldom available, nor should they be. To survive, we must do what it takes to get our software working and out the door on time. Indeed, if a team completes a project with time to spare, today’s managers are likely to take that as a sign to provide less time and money or fewer people the next time around.</p>
<p><B>You need to deliver quality software on time, and under budget</b></p>
<p>Cost: Architecture is a long-term investment. It is easy for the people who are paying the bills to dismiss it, unless there is some tangible immediate benefit, such a tax write-off, or unless surplus money and time happens to be available. Such is seldom the case. More often, the customer needs something working by tomorrow. Often, the people who control and manage the development process simply do not regard architecture as a pressing concern. <B>If programmers know that workmanship is invisible, and managers don't want to pay for it anyway, a vicious circle is born.</B></p>
</blockquote>
<p>But if this was really the case than each longterm software project would eventually always lead to a big ball of mud.</p>
<p>We know that does not, always, happen. How come? Because the statement that managers do not regard architecture as a pressing concern is false. At least nowadays. Managers in the IT field very well know that maintainability is key to the business.</p>
<blockquote>
<p>business becomes dependent upon the data driving it. Businesses have become critically dependent on their software and computing infrastructures. There are numerous mission critical systems that must be on-the-air twenty-four hours a day/seven days per week. If these systems go down, inventories can not be checked, employees can not be paid, aircraft cannot be routed, and so on. [..]</p>
</blockquote>
<p>Therefore it is at the heart of the business to seek ways to keep systems far away from the big ball of mud. That the system is still maintainable. That the system actually works and that you, as programmer can prove it does. Does your manager ask you if you have finished your coding today, does she ask you if the release that has fixes A, B and C can be done today or does she ask if the software that will be released actually works? And have you proved it works? With what?</p>
<p>Now for my question:</p>
<p>What ways do we have to prove our managers and/or stakeholders that our software works? Are those green lights of our software-unit tests good enough? If yes, won't that only prove our big-ball of mud is still doing what we expect it to do? That the software is maintainable? How can you prove your design is right? </p>
<p><strong>[Added later]</strong></p>
<p>Chris Pebble his answer below is putting my team on the right track. The Quality Assurance is definitaly the thing we are looking for. Thanks Chris. Having a QA policy agreed with the stakeholders is than the logical result of what my team is looking for. </p>
<p>The follow-up question is what should all be in that QA policy?</p>
<ul>
<li>Having that buildserver running visible for my stakeholders</li>
<li>Having the buildserver not only 'just build' but adding tests that were part of the QA policy</li>
<li>Having an agreement from my stakeholders on our development process (where developers review each others code is part of)</li>
<li>more..</li>
</ul>
<p>Some more information: The team I'm leading is building webservices that are consumed by other software teams. That is why a breaking webservice is immediately costing money. When the developers of the presentationlayer team, or the actual testers can't move forward we are in immediate stress and have to fix bugs ASAP, which in turn lead to quick hacks..</p>
<p>[ added later ]</p>
<p>Thanks for all the answers. It is indeed about 'trust'. We cannot do a release if the software is not trusted by the stakeholders, who are actively testing our software themselves using the website that is consuming our webservice.
When issues arise, the first question of our testers is: Is it a servicelayer problem or a presentationlayer problem? Which directs me to have a QA policy that ensures that our software is ok for the tests they are doing.</p>
<p>So, the only way I can (now) envision enabling trust with testers is to:
- Talk with the current test-team, go over the tests that they are able to manually execute (from their test-script and scenario's) and make sure that our team has those tests as unit-tests already checked against our webservice. That would be a good starting point for a 'sign-off' before we do a release that the presentationlayerteam has to integrate. It will take some effort to clarify that creating automatic tests for all those scenario's will take some time. But it will definately be usefull to ensure what we build is actually working.</p>
http://stackoverflow.com/questions/1746775/mysql-6-release-date1MySQL 6 release date?Timmyboy2009-11-17T05:23:49Z2009-11-17T20:53:40Z
<p>Anyone know when the MySQL 6 release date is?</p>
<p>I've seen a ton of alpha/beta for it but have not seen an actual release date for 6.0</p>
<p>Looks like back in April, MySQL announced the release of <a href="http://forums.mysql.com/read.php?3,263815,263815#msg-263815" rel="nofollow">ALPHA version 6.0.11</a>. In that release back in April 2009 they stated that this would be the last ALPHA release and the next release in Sept 2009 would be a release candidate.</p>
<p>Sept 2009 has long since passed and I have not seen any release candidates for MySQL 6 :(</p>
<p>Any ideas as to when I can expect 6.0 to be released?</p>
http://stackoverflow.com/questions/1746663/php-6-release-date2PHP 6 release date?Hank2009-11-17T04:51:23Z2009-11-17T05:59:12Z
<p>What's the current release date for PHP 6. </p>
<p>I recall once reading that it was to be released back in 2006. We're just a few weeks away from 2010.</p>
http://stackoverflow.com/questions/898559/metadata-file-release-project-dll-could-not-be-found-in-visual-studio1Metadata file '...\Release\project.dll' could not be found in Visual Studionightcoder2009-05-22T15:45:25Z2009-11-13T22:01:27Z
<p>Recently I started to get this message randomly. I have a solution with several projects in it. Current build mode is Debug and all projects' configuration is set to Debug. But when I try to run the main project - sometimes it gives me a few errors all of which are "Metadata file '...\Release\projectX.dll' could not be found" - and, look, it says about RELEASE folder, though current mode is Debug. Why? I tried to search for reference to "Release\projectX.dll" inside all solution files and I found one in ResolveAssemblyReference.cache file. </p>
<p>I made a good search over the internet and found a few people with the similar problem, but there was no solution, or at least no working solution. </p>
<p>I tried to delete references to those projects and readd them, but in some time I start getting these errors again. </p>
<p>It seems like a bug. Why does it search for referenced projects in Release folders when I always use Debug mode?</p>
<p><strong>PS.</strong> For those who met this problem: I couldn't solve it with an easy way, it disappeared only after I reinstalled windows :(</p>
http://stackoverflow.com/questions/1724694/how-to-dispose-of-a-net-com-interop-object-on-release0How to dispose of a NET COM interop object on Release()mhenry13842009-11-12T19:22:24Z2009-11-12T20:51:27Z
<p>I have a COM object written in managed code (C++/CLI). I am using that object in standard C++.<br>
How do I force my COM object's destructor to be called immediately when the COM object is released? If that's not possible, call I have Release() call a MyDispose() method on my COM object?</p>
<p>My code to declare the object (C++/CLI):</p>
<pre>
[Guid("57ED5388-blahblah")]
[InterfaceType(ComInterfaceType::InterfaceIsIDispatch)]
[ComVisible(true)]
public interface class IFoo
{
void Doit();
};
[Guid("417E5293-blahblah")]
[ClassInterface(ClassInterfaceType::None)]
[ComVisible(true)]
public ref class Foo : IFoo
{
public:
void MyDispose();
~Foo() {MyDispose();} // This is never called
!Foo() {MyDispose();} // This is called by the garbage collector.
virtual ULONG Release() {MyDispose();} // This is never called
virtual void Doit();
};
</pre>
<p>My code to use the object (native C++):</p>
<pre>
#import "..\\Debug\\Foo.tlb"
...
Bar::IFoo setup(__uuidof(Bar::Foo)); // This object comes from the .tlb.
setup.Doit();
setup->Release(); // explicit release, not really necessary since Bar::IFoo's destructor will call Release().
</pre>
<p>If I put a destructor method on my COM object, it is never called. If I put a finalizer method, it is called when the garbage collector gets around to it. If I explicitly call my Release() override it is never called.</p>
<p>I would really like it so that when my native Bar::IFoo object goes out of scope it automatically calls my .NET object's dispose code. I would think I could do it by overriding the Release(), and if the object count = 0 then call MyDispose(). But apparently I'm not overriding Release() correctly because my Release() method is never called.</p>
<p>Obviously, I can make this happen by putting my MyDispose() method in the interface and requiring the people using my object to call MyDispose() before Release(), but it would be slicker if Release() just cleaned up the object.</p>
<p>Is it possible to force the .NET COM object's destructor, or some other method, to be called immediately when a COM object is released?</p>
<p>Googling on this issue gets me a lot of hits telling me to call System.Runtime.InteropServices.Marshal.ReleaseComObject(), but of course, that's how you tell .NET to release a COM object. I want COM Release() to Dispose of a .NET object.</p>
http://stackoverflow.com/questions/1698951/iphone-push-notification-problem-with-ad-hoc-provision0iPhone Push Notification Problem with Ad Hoc Provisionjtrim2009-11-09T03:29:27Z2009-11-10T15:03:55Z
<p>The iPhone i'm developing with (building the application to, not installed via ad-hoc) receives push notifications as it should. I've got an application that just sends dummy push notifications on command, and the dev iphone receives them consistently. However, I've distributed a beta build under the release configuration to several co-workers, and none of these builds of the app have received a single push notification. I've confirmed that the app prompts the user on first run for permission to receive push notifications, and I've also confirmed that everyone has answered "yes" to this prompt. Has anyone else experienced this problem? I feel like it has something to do with provisioning, but the apple developer portal is so vague about things, I very well could be missing something important.</p>
http://stackoverflow.com/questions/798971/how-to-idenfiy-if-the-dll-is-debug-or-release-build-in-net9How to idenfiy if the DLL is Debug or Release build (in .NET)dr. evil2009-04-28T17:13:12Z2009-11-08T07:46:07Z
<p>I'm sure this has been asked before, but google and SO search failed me.</p>
<p>How can I identify if a DLL is a release build or debug build?</p>
http://stackoverflow.com/questions/1512047/is-there-anything-exciting-in-perl-5-1112Is there anything exciting in perl 5.11?Ether2009-10-02T22:13:01Z2009-11-06T00:14:58Z
<p><a href="http://search.cpan.org/~jesse/perl-5.11.0/" rel="nofollow">Perl 5.11</a> is now released! Is there anything really exciting in this release, or is it mostly maintenance patches? (From what I've read so far, it appears to be a rollup of improvements we have already seen in prior releases.)</p>
<ul>
<li>the <a href="http://search.cpan.org/~jesse/perl-5.11.0/pod/perl5110delta.pod" rel="nofollow">CHANGES</a> file</li>
<li><a href="http://www.nntp.perl.org/group/perl.perl5.porters/2009/10/msg151376.html" rel="nofollow">Jesse Vincent's announcement</a></li>
<li><a href="http://www.modernperlbooks.com/mt/2009/10/why-perl-5110-matters.html" rel="nofollow">chromatic's blog post</a></li>
</ul>
<p>5.11 is the development release of what will become 5.12. The release process itself is changing to a monthly release model.</p>
http://stackoverflow.com/questions/1683159/maven-snapshot-repositories0maven snapshot repositoriesJeff Storey2009-11-05T20:01:44Z2009-11-05T20:32:36Z
<p>My project depends on a 3rd party library that only has snapshots in its maven repository (no releases, which seems strange, but that's how it is). Every time I do a full build (and clean my local .m2 repository) maven will obviously go and grab the latest build.</p>
<p>My repository proxies the one with the snapshots in it, is there anyway to tell my repository to stop pulling new versions and basically just keep the current version? I really don't want to be pulling a new build every night.</p>
<p>The only thought I had is to manually label the current versions, but there quite a few dependencies and they are all dependent on the SNAPSHOT versions. Is there an easier way to do this?</p>
<p>thanks,</p>
<p>Jeff</p>
http://stackoverflow.com/questions/1670876/objective-c-iphone-when-to-set-object-references-to-nil1Objective C iPhone when to set object references to nilOscarMk2009-11-03T23:41:02Z2009-11-03T23:50:37Z
<p>Hello,</p>
<p>I have been developing with objective C and the Cocoa framework for quite some time now. However it is still not absolutely clear to me, when am I supposed to set object references to nil. I know it is recommended to do so right before releasing an object that has a delegate and you should also do so in the viewDidUnload method for retained subviews. But exactly when should this be done and why?. What does it accomplish exactly?. Thank you in advance.</p>
<p>-Oscar</p>
http://stackoverflow.com/questions/1667088/how-to-comment-lines-automatically-in-release-mode2How to comment lines automatically in release mode?Pietro2009-11-03T12:38:14Z2009-11-03T17:35:11Z
<p>I need to have some lines of code "active" in debug mode only, and ignored in release mode.
Is there a way to do something like this:</p>
<pre><code>#include <iostream>
using namespace std;
#ifdef _TEST_
#define _cerr cerr
#else
#define _cerr // cerr
#endif
int main() {
_cerr << "TEST message" << endl;
}
</code></pre>
<p>So that when <code>_TEST_</code> is not defined, some lines are commented, or removed from the code. I know that comments are processed before the rest, so this code is wrong. But how can I get the behaviour I need without using #ifdefs explicitely?</p>
http://stackoverflow.com/questions/1667194/web-config-auto-generate-a-release-version3web.config - auto generate a release versionIP2009-11-03T12:58:48Z2009-11-03T16:16:03Z
<p>Simple task, but for some reason no simple solution just yet.</p>
<p>We've all got web.config files - and I haven't worked anywhere yet that doesn't have the problem where someone yells across the room "Sh*t, I've just uploaded the wrong web.config file".</p>
<p>Is there a simple way of being able to auto generate a web.config file that will contain the right things for copying to release? An example of these being:</p>
<ul>
<li>Swap connection string over to use live database</li>
<li>Change
<li>Switch over to use the live/release logging system, and live/release security settings</li>
<li>(in our case we need to change the SessionState mode to InProc from StateServer - this isn't normal)</li>
</ul>
<p><em>If you have others, let me know and I'll update it here so it's easy for someone else to find</em></p>
<p>Maintaining 2 config files works, but is a royal pain, and is usually the reason something's gone wrong while you're pushing things live.</p>
http://stackoverflow.com/questions/1341614/releasedate-for-rails-30Releasedate for Rails 3Lichtamberg2009-08-27T14:51:40Z2009-11-03T02:21:52Z
<p>Does anybody know when Rails 3 will be released?
Tried to find info on the net - but nothing useful that I found...</p>
http://stackoverflow.com/questions/1636286/debug-vs-release-dll-size2debug vs. release dll sizeYaron Naveh2009-10-28T10:10:16Z2009-10-29T08:49:50Z
<p>Why in cpp a dll in debug mode is X10 bigger than release while in .Net they are almost the same size?</p>
http://stackoverflow.com/questions/1600604/dependencies-between-overnight-builds-and-releases-testing-issue1Dependencies between overnight builds and releases - testing issuebattika2009-10-21T12:49:53Z2009-10-28T18:40:28Z
<p>Hi Guys
this is a release-build process question which I would need to solve for our SW Team.</p>
<p>We are developing embedded system applications that are based on several common libraries. We also introduced overnight builds and automatic SW testings in oder to be able to track down errors as soon as possible. The applications and libraries are developed simultaneously. Our development is in BETA phase so we don't introduces new features but mainly correct bugs.</p>
<p>The development is following: When a bug is corrected in an application then an overnight build is done. This overnight build takes the last released stable library, compiles the application and does BlackBox tests on a HW module - result executable is commited to versioning system and has an unique Build version. </p>
<p>Sometimes it happens that the bug needs to be corrected in the library. In such case an overnight build is created for the library. But I need to know if the bugs corrected in the library havent caused new bugs in the applications. In this case it is required that the application takes the "unstable" build library, does the compilation, tests - result is an executable commited, uniq build version for application and also library. </p>
<p>It can happen that we need to do a release for the customers from the application but the library is still not stable it is a build. In such case we take the last released version of the library. BUT if the night before the library was also corrected our tests ran on the build APP,build LIB configuration. So the configuration build APP, release LIB was not tested.</p>
<p>To sum up we have the following possibilities:<br></p>
<pre><code>APP LIBRARY
build release
build build
release release
release build
</code></pre>
<p>But always only 1 combination is compiled, tested with our overnight build. </p>
<p>My question is how to handle such a situation? From 1 overnight build I can get only 1 unique SW version, but I would like to actually know weather also the other combinations has worked? </p>
<p>Could somebody suggest an improovement in our process or are we doing something completly wrong? Any responses are very welcome. Thank you. </p>
<p>greetings
Attila</p>
http://stackoverflow.com/questions/1614391/where-can-you-release-eensy-weensy-helpful-little-net-classes5Where can you release eensy weensy helpful little .NET classes?snicker2009-10-23T15:56:11Z2009-10-23T16:26:55Z
<p>I find myself writing a lot of reusable code because I couldn't find reusable code that other people wrote. Tiny stuff, like little winforms components, among other things.</p>
<p>I am looking for a website where I could release this sort of stuff to the public with licensing on it. I don't need something like Google Code/Sourceforge/Codeplex, as it's too big for tiny classes that I know can help others. Something like <a href="http://www.phpclasses.org/" rel="nofollow">the PHP Classes Repository</a>, but for .NET.</p>
<p>I don't need things like version control, forums, wikis, issue trackers... I just want a place to share code quickly and easily.</p>
<p>Does a such a site exist?</p>
<p>As I realized when I was commenting on an answer, the ideal vision of what I'm looking for (in my head) is something like <strong>the "flickr" of code</strong>. Something where I can toss up a package of source, write a brief description, tag it, and be done with it. If something like that doesn't exist, maybe I just found my next side project.</p>
<p><a href="http://stackoverflow.com/questions/1614391/where-can-you-release-eensy-weensy-helpful-little-net-classes/1614506#1614506">Joe answered</a> with <a href="http://www.codekeep.net/home.aspx" rel="nofollow">CodeKeep</a> which is almost EXACTLY what I'm looking for, but it doesn't handle things like licensing, and it's almost a little too basic. But this is the closest so far.</p>
<p>EDIT:
I should have mentioned, all these things are generally unrelated, and I don't want to package them all up together.</p>
http://stackoverflow.com/questions/935610/clickonce-in-release-mode-doesnt-publish0ClickOnce in Release mode doesn't publishKave2009-06-01T16:31:37Z2009-10-23T15:25:09Z
<p>Just doing some testing/prototyping with ClickOnce. Does anyone know why I can publish with CLickOnce when its set to 'debug' mode but not when its set to 'release' mode? </p>
<p>I dont even get an error message for the latter. The output folder remains empty as nothing has happened. Once I switch to Debug mode and do the publishing everything is fine.</p>
<p>Any idea?
Thanks</p>