pingdynasty / OwlControl

Client application for the OWL
7 stars 3 forks source link

The "About" dialog box says v10 #2

Closed chipaudette closed 8 years ago

chipaudette commented 8 years ago

Just downloaded OwlControl v1.1, but the "About" dialog still says that it's v1.0. You might consider updating this code:

String ApplicationConfiguration::getApplicationDescription(){
  return "OwlControl v10" + newLine
    + "Built by the OWL Team" + newLine
    + "see http://hoxtonowl.com for more information";
}

to something like this

String ApplicationConfiguration::getApplicationDescription(){
  return "OwlControl v11" + newLine
    + "Built by the OWL Team" + newLine
    + "see http://hoxtonowl.com for more information";
}
pingdynasty commented 8 years ago

ok, thanks!

pingdynasty commented 8 years ago

fixed