changing dev version

This commit is contained in:
Leonardo Murillo 2014-01-17 14:02:57 -06:00
parent 9582fadef4
commit a4efe55bbf
2 changed files with 2 additions and 2 deletions

View file

@ -15,7 +15,7 @@ set(SIXENSE_ROOT_DIR ${CMAKE_CURRENT_SOURCE_DIR}/external/Sixense)
if (DEFINED ENV{JOB_ID})
set(BUILD_SEQ $ENV{JOB_ID})
else ()
set(BUILD_SEQ "0.1")
set(BUILD_SEQ "dev")
endif ()
if (APPLE)

View file

@ -4436,7 +4436,7 @@ bool Application::shouldSkipVersion(QString latestVersion) {
QByteArray skipFileContents = skipFile->readAll();
QString *skipVersion = new QString(skipFileContents);
skipFile->close();
if (*skipVersion == latestVersion /*|| applicationVersion() == "0.1"*/) {
if (*skipVersion == latestVersion || applicationVersion() == "dev") {
return true;
}
return false;