Audacity - Raising issues in Open Source project

Audacity - Raising issues in Open Source project

This article is useful for the open source beginners. Here I wrote about how I found some bugs/issues in the famous open-source software.

About project

Audacity is a famous Audio editing software available in cross-platform OSs. It is an Open source software where we can record, and edit files.

How did I encounter multiple issues as a first-time user/contributor

The first bug/issue: [cosmetic issue]

Since I was enthusiastic about multimedia projects, I wanted to explore the Audacity code base to experience the software after locally building it in the development system. As per the build instructions, arranged the necessary packages needed for the application to build and stated the source compilations. After launching the program in debug mode and found that the welcome dialog had a small cosmetic issue. Text was not visible near the check box. After confirming the bug, reported it to the project GitHub ticket. https://github.com/audacity/audacity/issues/5050

Expected behavior

Second bug/issue: [behaviour issue]

I checked the basic functionality of the software and tried the save the recording of the mic in the file and found some glimpses in the TextBox of the filename and unable to view the audio file nametext. After confirming the behaviour and creating the issues in the project GitHub. A screen record has been attached to this ticket. https://github.com/audacity/audacity/issues/5061

Third bug/issue: [source code quality]

My habit is always reading more from the closed issues. Will look for the ways of code is implemented and how the conversations went between the maintainer and developer. Thus, I looked into the codebase and found the boilerplate header comments are missing in the source code files. Also, read about the project coding standards and it was mentioned that the header comments are mandatory and it is part of the Coding standard. Thus finally re-read the coding standard confirmed the issue and raised a ticket in GitHub. https://github.com/audacity/audacity/issues/5077

Key lessons:

  • Any unexpected behaviour needs to be verified before confirming it as an issue.

  • You are allowed to post an issue and it is reviewed by the maintainer. This is one of the coolest things in the open-source communities.

  • You are starting to improve the quality of the open-source product. Small effort makes a good difference.

Disclaimer: I'm not promoting any products, Just writing about my experience in the open-source contribution journey.