Sign in to follow this  

Bug Report Manager


After a few days spent working on this hopefully useful program, I’ve got it to the point where I’m ready to release it as a working beta. All of the features that I’ve planned to add to the program are currently working, as far as I’ve tested, and anything else that’s left to be done is mostly behind the scenes other than getting translations for the program done-up.
 
If you have any problems during the setup, have suggestions for the program, find a bug, etc… then just comment below.

Rough Description

This tool allows for easy management and sorting of any and all bug reports for the server it’s used with. Not only does this program deal with bug reports, as the name states, but it deals with any and all feedback given by your players as they play through the content on your server and submit either bug reports or feedback on their play experience.
The addon is quick to install, database easy to prepare, and program simple to use.
The following video is from an early stage of development, but it demonstrates how the reports/feedback are sent in and pulled into the tool.

How to Setup

To set up the bug reporting and tracking system, there are three requirements and three steps. These are all very simple and can be done for any server/account that meets the requirements.
 

Requirements

  1. Your server must be running on TrinityCore.
  2. You must have access to an account with permission to use stored procedures on the characters database.
  3. Your players must be given a small patch file containing the Blizzard Feedback addon. You can download it here.

Step #1:

Execute the following SQL on the characters database. This will create the stored procedures used by the program and add another field to the bugreports table that allows for the unread, read, etc… statuses to be tracked.
 
USE `characters`;

DELIMITER //


DROP PROCEDURE IF EXISTS getAllRawBugReports;

CREATE PROCEDURE getAllRawBugReports()
BEGIN
    SELECT * FROM `bugreport`;
END//


DROP PROCEDURE IF EXISTS setButReportStatus;

CREATE PROCEDURE setButReportStatus(`varBugReportId` INT, `varBugReportStatus` INT)
BEGIN
    UPDATE `bugreport` SET `status` = `varBugReportStatus` WHERE `id` = `varBugReportId`;
END//


DROP PROCEDURE IF EXISTS deleteBugReport;

CREATE PROCEDURE deleteBugReport(`varBugReportId` INT)
BEGIN
    DELETE FROM `bugreport` WHERE id = `varBugReportId`;
END//

DELIMITER ;
USE `characters`;

ALTER TABLE `bugreport` ADD COLUMN `status` TINYINT NOT NULL DEFAULT 0 AFTER `id`;

 

 
Step #2:
Download the bug tracker from here and ensure that you have the latest version of Java.
 
Step #3:
 
Log into World of Warcraft, submit a random report using the addon, then launch the Bug Tracker and see if the report shows up. If the report does show up, then everything should be working as intended.
 
If you ever see a file named error_log.txt, I would appreciate it if you could describe what you did to bug our or crash the program and if you could paste the error log in the comments below for me to take a look at.
 
 

The Interface

Because the program is still being worked on and fixed up here-and-there, the interface may undergo some changes as development progresses. At the moment it contains all initially conceived features.
 
In the image below you can see the initial interface.
 
cKlNcya.png
 
The combobox in the top-left of the screen allows you to select a bug report by its ID number as retrieved from the database.
 
vqn5uEy.png
 
The radio buttons along the center of the menu bar allow you to sort the reports in the previously mentioned combobox by a number of different categories.
 
LQgA8uV.png
 
At the end of the menu bar you’ll find a second combo box with a selection for each of the different sorting categories. When you have a report open, select a sorting category, and then submit your change, both the database and the program will be updated to reflect the change.
 
NSGClZf.png
 
In the main section of the screen you’ll find the bug report.
 
krdtmZ5.png

The Settings File

Within the settings file you’ll find the saved server address, MySQL port, characters database name, MySQL username, and the interface language. All of these values can be manually edited and it’s perfectly fine to just delete the settings file and select everything again through the interface when you launch the program.
 
The only value in the settings which cannot be changed through the GUI after selecting it is the language. If you wish to change the GUI language, then you’ll need to either delete the settings file and launch the program to select it again or change it in the settings file.
 

Supported Languages

If you wish to contribute a translation in your native language, then please contact me on Skype for the latest files to be translated. It will take at-least an hour of your time to translate everything required.

  • English
  • French
  • German
  • Spanish
  • Russian

Examples of Three Settings Files

serverAddress=example.com
port=3306
databaseName=characters
username=root
language=English
serverAddress=127.0.0.1
port=3306
databaseName=serverA_characters
username=root
language=French
serverAddress=123.456.78.9
port=1704
databaseName=characters
username=trinity
language=Spanish

 


Misc Information

The program currently only supports 3.3.5a TrinityCore, but it can easily be made to support other versions and cores. If anyone possesses the Blizzard Feedback addon from the PTR for whichever version they’re playing on, then please contact me and we can hopefully get other versions supported.
 
The current program version is 1.2.

Credits

  • StoneHarry ~ Supplied the feedback addon.
  • Barbz ~ Supplied the French translation for the program.
  • V. Castonguay ~ Reviewed the French translation and helped make a handful of edits.
  • MountianLion ~ Supplied the Spanish translation for the program.
  • Skarn ~ Supplied the Russian translation for the program.
  • Kaev ~ Supplied the German translation for the program.


Recommended Comments

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now