Skip to content

Commit

Permalink
Enum bug fixed. Version set to 1.0.0-beta.
Browse files Browse the repository at this point in the history
  • Loading branch information
niello committed Jun 30, 2019
1 parent 65772ce commit 4d13a58
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 3rdParty/QtnProperty/QtnProperty/Enum.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ bool QtnEnumInfo::toStr(QString &str, const QtnEnumValueInfo *value) const
if (!value)
return false;

str = QString("%1::%2").arg(name(), value->name());
str = value->name();
return true;
}

Expand Down
2 changes: 1 addition & 1 deletion src/Application.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Application::Application(int& argc, char** argv)
setOrganizationName("CEGUI");
setOrganizationDomain("cegui.org.uk");
setApplicationName("CEED - CEGUI editor");
setApplicationVersion("0.0.0-master");
setApplicationVersion("1.0.0-beta");

// Create settings and load all values from the persistence store
settings = new Settings(new QSettings("CEGUI", "CEED", this));
Expand Down
5 changes: 4 additions & 1 deletion src/ui/dialogs/AboutDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ AboutDialog::AboutDialog(QWidget *parent) :
// Background, see the data/images directory for SVG source
ui->aboutImage->setPixmap(QPixmap(":/images/splashscreen.png"));

ui->CEEDDescription->setText("Please report any issues to help this project.");
ui->CEEDDescription->setText("Please <a href=\"https://github.com/niello/ceed-cpp/issues/new\">report any issues</a> to help this project.");
ui->CEEDDescription->setTextFormat(Qt::RichText);
ui->CEEDDescription->setTextInteractionFlags(Qt::TextBrowserInteraction);
ui->CEEDDescription->setOpenExternalLinks(true);

ui->CEEDVersion->setText("CEED: " + qApp->applicationVersion());
ui->QtVersion->setText("Qt: " + QString(qVersion()));
Expand Down

0 comments on commit 4d13a58

Please sign in to comment.