vote up 6 vote down star
1

I am considering resurrecting an old hobby project of mine, but since my time is limited I am having trouble deciding how to proceed. I already have an extensive backlog of bugs and feature requests that I probably should be doing, but on the other hand there is also a big need for some serious refactoring to make up for old sins.

Initially I only created the project for fun and technical challenge, but now that there are actually other people out there using the software, I feel somewhat obligated to listen to their input and implement the changes and improvements they request.

Previously I used an internal todo.txt file and a public Bugzilla database to keep track of issues and ideas, but there was never any democracy involved in selecting which features I would implement or which bugs I would fix. If someone nagged me about a bug or feature, they were more likely to get it fixed—if it was significant and not too boring—but most of the time I would just add stuff I came up with that I wanted to try out or I thought would be useful.

I realize this is not an ideal way to run a (democratic) open source project, so I am wondering, how should I decide which features to implement and what should be on my backlog for the next release?

Should I set up a voting system for feature requests and bug fixes (i.e like the one Stack Overflow has) or should I stick with the "dictator" model? Other suggestions?

I don't mind offering some public service by adding features requested by users, but since this is a hobby project I think it should be something I look forward to picking up when I get home from work, not something I keep putting off because I don't want to do it. One of the reasons the project has been lying dead for so long is because I have felt there was so much (boring) work to be done before I had anything I could actually be proud of that I would rather spend my time on other things.

This may sound a bit selfish, but I know similar issues are common to many one-man software projects, so I would like some feedback on how do best handle it.

flag

6 Answers

vote up 7 vote down check

First, get the software up and running to a point where it is usable and YOU are happy with the code (including refactoring). Until then, do not take any requests for additional features from others users (other than bugfix requests).

If you start the "democratic process" too early you will never get to a point where anything really works. Another important issue: DO NOT try to make everybody happy! It is impossible!

You as the developer have to be the final filter for any kind of requests for improvement. If it doesnt make somewhat sense to you, don't do it. Separate bugs and feature improvements strictly. Bugfixes come first, feature improvements next.

Personally, I think putting feature requests up for voting is a good idea. But I would make sure to have filtered through the requests in terms of "does it make sense?" and "do i really want to do this?" before putting them up for vote.

link|flag
vote up 6 vote down

Fix all MAJOR bugs first. After that then work on the fun/interesting features that have been requested until you run out of fun/interesting ones. Then fix more bugs. Judge what you think would be more useful to the users. Also a voting system would be a pretty good idea. Just have a big list of features and have people upvote or downvote the ones they like or dislike respectively.

If you come across a feature that you are not particularly interested in, spice it up a bit yourself. Add your own flavor to it.

And when your bored of all of that, refactor!

link|flag
vote up 1 vote down

Don't worry too much about what other people want. This is your project and you are doing it for free. Your goal should be to make yourself happy.

If I were you, I'd identify whatever it is that is causing the most pain, and fix that first. Then just keep doing that.

Voting might be an interesting way to determine what your users most want, but you should be a dictator. Design by commitee never works

link|flag
vote up 1 vote down

Prioritize like this:

seriousness, effort

So you might have a less serious bug you can fix in an afternoon, and you might do that instead of fixing a more serious bug that takes a month and takes you over a release cycle.

link|flag
vote up 1 vote down

To add to what schroeder said, I would also like to point out that you should take feature requests that are backed by code a lot more easily than I would any other type of request. If you turn them away, you could risk losing a future developer.

EDIT: See the following book. Read it and then read it again just to make sure you got everything. I'm serious about this.

Producing Open Source Software

link|flag
vote up 0 vote down
Fix all MAJOR bugs first. After that then work on the fun/interesting features that have been requested until you run out of fun/interesting ones.

I agree, in principle, but one of the challenges here is that most of the bugs and issues I am not happy with would likely disappear if I rewrote some major parts of the application. Naturally, this would probably introduce new, possibly different, bugs, but at least I would hopefully have more fun doing it than struggling with the old code. The downside to this approach is naturally that it will take much longer time until I have something suitable for release to the public.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.