Skip to content
This repository has been archived by the owner on Sep 30, 2020. It is now read-only.

Commit

Permalink
Move --cert-dir option to the begging of arguments
Browse files Browse the repository at this point in the history
Add changelog entry and bump version in order to release bugfix
  • Loading branch information
Wiktor Niesiobędzki authored and wiktorn committed Jun 26, 2017
1 parent 69fa01d commit 449d5fd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Veles changelog

## 2017.06.0.1 (2017-06-26)

### Bugfix

* Fixed invocation of server so it doesn't fail when installed from .deb package

## 2017.06.0.SWOND (2017-06-22)

### Major features and changes:
Expand Down
4 changes: 2 additions & 2 deletions src/ui/connectionmanager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -176,12 +176,12 @@ void ConnectionManager::startLocalServer() {
QStringList arguments;
arguments
<< server_file_name
<< "--cert-dir" << connection_dialog_->certificateDir()
<< QString("%1://%2@%3:%4").arg(scheme)
.arg(connection_dialog_->authenticationKey())
.arg(connection_dialog_->serverHost())
.arg(connection_dialog_->serverPort())
<< connection_dialog_->databaseFile()
<< "--cert-dir" << connection_dialog_->certificateDir();
<< connection_dialog_->databaseFile();

#if defined(Q_OS_LINUX)
QString python_interpreter_executable("/usr/share/veles-server/venv/bin/python3");
Expand Down
2 changes: 1 addition & 1 deletion src/util/version.cc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ namespace version {
const unsigned year = 2017;
const unsigned month = 6;
const unsigned release = 0;
const unsigned patch = 0;
const unsigned patch = 1;
const QString codename = "SWOND";
const QString string = patch ?
QString("%1.%2.%3.%4.%5").arg(
Expand Down

0 comments on commit 449d5fd

Please sign in to comment.