Compare commits

...

2 Commits

Author SHA1 Message Date
a4bb993217 Set version to 1.5.1 2024-07-17 14:06:18 +02:00
50357997c2 Do not use cleanPath() on an url-path 2024-07-17 14:04:53 +02:00
2 changed files with 3 additions and 2 deletions

View File

@ -138,7 +138,8 @@ DEFINES += QT_DEPRECATED_WARNINGS
# 1.5.0 : Use ptu-config.atb-comm.de (given in ini-file) as new server for # 1.5.0 : Use ptu-config.atb-comm.de (given in ini-file) as new server for
# customer repositories. # customer repositories.
# Fix: allow empty lines in opkg_commands. # Fix: allow empty lines in opkg_commands.
VERSION="1.5.0" # 1.5.1 : Fix: do not use cleanPath() on a url-address.
VERSION="1.5.1"
# PLANNED TODOS: # PLANNED TODOS:
# 1: Das Repository wird repariert bwz. neu geklont. Unabhaengig vom WAIT. # 1: Das Repository wird repariert bwz. neu geklont. Unabhaengig vom WAIT.
# 2: Wenn der WAIT-Button aktiv ist, dann wird ein Repository repariert (neu # 2: Wenn der WAIT-Button aktiv ist, dann wird ein Repository repariert (neu

View File

@ -148,7 +148,7 @@ Worker::Worker(int customerNr,
, m_pluginName(pluginName) , m_pluginName(pluginName)
, m_workingDirectory(workingDirectory) , m_workingDirectory(workingDirectory)
, m_branchName(branchName) , m_branchName(branchName)
, m_customerRepositoryPath(QDir::cleanPath(QString("%1/%2.git").arg(repositoryUrl).arg(m_customerNrStr))) , m_customerRepositoryPath(QString("%1/%2.git").arg(repositoryUrl).arg(m_customerNrStr))
, m_customerRepository(QDir::cleanPath(m_workingDirectory + QDir::separator() + m_customerNrStr)) , m_customerRepository(QDir::cleanPath(m_workingDirectory + QDir::separator() + m_customerNrStr))
, m_noUpdatePsaHardware(noUpdatePsaHardware) , m_noUpdatePsaHardware(noUpdatePsaHardware)
, m_alwaysDownloadConfig(alwaysDownloadConfig) , m_alwaysDownloadConfig(alwaysDownloadConfig)