Digit Software Archive with GUI

coolpcguy

Resistance is Futile.
Good stuff. Now, if you could move the sources & the downloads to github, it'd be sweet.


(I realize I could do that too, but given it's your project I'll leave it up to you).
 

abhijangda

Padawan
Good work nims!! But I would suggest some improvements
in mainwindow.h
you have

char monthStr[13][10];
char licenseStr[15][15];
char dbFilePath[200];
char name[15];
char descrip[1000];
char name[80];
char path[200];
char license[15];

It will be better to use std::string instead of character arrays. Don't do it C way, its C++.
 
OP
nims11

nims11

BIOS Terminator
@rajesh @utkarsh
Main post updated with link to all the latest update files

It will be better to use std::string instead of character arrays. Don't do it C way, its C++.

Yup, i wanted to use it. but since i was using primitive file handling, i needed the objects to be of fixed size, so i had to reject std::string.But i will try reimplementing the database using mySQL or XML to solve this problem. There are also some stupid mistakes in the code that i need to rectify.
 

topgear

Super Moderator
Staff member
the software about page reads that it contains updates from july 2005 - july 2011 and the medifire link contains updates starting from september 2011 - it would be great if you can upload the August 2011 file as well.
 
Top Bottom