Skip to content

Commit

Permalink
0.7.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
topilski committed Feb 28, 2015
1 parent 69cbd14 commit a34ceb8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ SET(PROJECT_MAINTAINER_MAIL "[email protected]" CACHE STRING "Internet ma
SET(PROJECT_MAINTAINER_NAME "Alexandr Topilski" CACHE STRING "Name of ${PROJECT_NAME} mainteiner")
SET(PROJECT_GITHUB_FORK "www.github.com/fasto/fastoredis" CACHE STRING "Git fork of ${PROJECT_NAME}")
SET(PROJECT_GITHUB_ISSUES "www.github.com/fasto/fastoredis/issues" CACHE STRING "Git issue link for ${PROJECT_NAME}")
SET(PROJECT_BUILD_TYPE "rc") #alfa, beta, rc, release
SET(PROJECT_BUILD_TYPE "release") #alfa, beta, rc, release
##########################################################

STRING(TOLOWER ${PROJECT_NAME} PROJECT_NAME_LOWERCASE)
Expand Down
4 changes: 2 additions & 2 deletions src/gui/dialogs/connection_diagnostic_dialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ namespace fastoredis
emit connectionResult(false, common::time::current_mstime() - startTime_, common::convertFromString<QString>(er->description()));
}
else{
emit connectionResult(true, common::time::current_mstime() - startTime_, "Succsess");
emit connectionResult(true, common::time::current_mstime() - startTime_, "Success");
}
}

Expand All @@ -66,7 +66,7 @@ namespace fastoredis
{
using namespace translations;

setWindowTitle(trDiagnostic);
setWindowTitle(trConnectionDiagnostic);
setWindowIcon(GuiFactory::instance().serverIcon());
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint); // Remove help button (?)

Expand Down
2 changes: 1 addition & 1 deletion src/translations/global.h
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,6 @@ namespace fastoredis
const QString trEncodeDecode = QObject::tr("Encode/Decode");
const QString trEncode = QObject::tr("Encode");
const QString trDecode = QObject::tr("Decode");
const QString trDiagnostic = QObject::tr("Diagnostic");
const QString trConnectionDiagnostic = QObject::tr("Connection diagnostic");
}
}

0 comments on commit a34ceb8

Please sign in to comment.