Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ int CardReaderPlugin::findRunId(int si_id, int si_finish_time, QString *err_msg)
q.exec("SELECT id, leg, startTimeMs, finishTimeMs FROM runs WHERE siId=" QF_IARG(si_id)
" AND isRunning"
" ORDER BY leg DESC"
, qf::core::Exception::Throw);
, qf::core::Exception::Throw);
}
else {
int stage_no = currentStageId();
Expand Down
1 change: 1 addition & 0 deletions quickevent/app/quickevent/plugins/Event/src/dbschema.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ QStringList DbSchema::loadCreateDbSqlScript(const CreateDbSqlScriptOptions &crea
}
auto sql = QString::fromUtf8(f.readAll());
QVariantMap replacements;
replacements["eventId"] = create_options.schemaName();
replacements["minDbVersion"] = Event::EventPlugin::dbVersion();
sql = qf::core::Utils::replaceCaptions(sql, replacements);
auto lines = sql.split(";\n");
Expand Down
2 changes: 1 addition & 1 deletion quickevent/app/quickevent/src/appversion.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#pragma once

#define APP_VERSION "3.5.3"
#define APP_VERSION "3.5.4"

Loading