Tagged Questions
The releasing tag has no wiki summary.
120
votes
23answers
17k views
Do you continue development in a branch or in the trunk?
Suppose you're developing a software product that has periodic releases. What are the best practices with regard to branching and merging? Slicing off periodic release branches to the public (or ...
9
votes
8answers
474 views
How do I simultaneously work on version 1.1 and version 2.0?
The situation: We're out of beta and version 1.0 has been released to several customer sites. Team A is already busy working on version 1.1 that will have incremental bugfixes and usability tweaks, ...
8
votes
7answers
397 views
Should a first release be an 0.1 version or 1.0b?
I see so many projects and softwares released on the internet that has a 0.x version and they never reaches 1.0.
Shouldn't a first release be 1.0 (or 1.0b at least)?
Example, the VLC project dated ...
7
votes
1answer
83 views
what's the correct way to release a new website? [closed]
so i've been working on a website on and off for about a year now, and i'm finally at a point where it's functional enough to test out in a sort of private beta (not ready for live release). but i ...
3
votes
2answers
179 views
release from SVN using “export” and then? how to upgrade?
Using SVN, I was thinking about releasing the first build (ver 1.0) to production server using SVN export command.
What's the next step for upgrading? For example, if i want to release the next build ...
2
votes
2answers
182 views
Releasing WinForm Program Updates
Another quick question.
I'd like to release some updates for a WinForm program, but to date I have simply released an all-new compile. People have to un-install the old version and install the new ...
2
votes
2answers
268 views
What is the opposite of the Loaded event in Silverlight?
I am writing an app in Silverlight 3 using the Application Navigation template. So each page has a Loaded event, however I don't see a Closing event or an Unloaded event.
Does this concept even ...
1
vote
4answers
228 views
Memory leak in char pointer
To be specific, my program uses pointers to char. The program itself runs smooth, but every loop i leak about 8kb of data. As i found out, my mistake lies in my style of using these char pointers. It ...
1
vote
6answers
419 views
Is there a common practice how to make freeing memory for Garbage Collector easier in .NET?
I've been thinking if there's a way how to speed up freeing memory in .NET. I'm creating a game in .NET (only managed code) where no significant graphics is needed but still I would like to write it ...