v1.15.5: fix wroing replace //
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Installer>
|
||||
<Name>ProjektManager</Name>
|
||||
<Version>1.15.4</Version>
|
||||
<Version>1.15.5</Version>
|
||||
<Title><Name>ProjektManager</Name> Installer</Title>
|
||||
<InstallerApplicationIcon>installerIcon1</InstallerApplicationIcon>
|
||||
<InstallerWindowIcon>installerIcon2</InstallerWindowIcon>
|
||||
|
@@ -1,8 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Package>
|
||||
<DisplayName>ProjektManager 1.15.4</DisplayName>
|
||||
<DisplayName>ProjektManager 1.15.5</DisplayName>
|
||||
<Description>A Program to manage my Qt Projects</Description>
|
||||
<Version>1.15.4</Version>
|
||||
<Version>1.15.5</Version>
|
||||
<Default>true</Default>
|
||||
<ReleaseDate>2024-04-09</ReleaseDate>
|
||||
<Licenses>
|
||||
|
@@ -2,7 +2,7 @@
|
||||
#include <QApplication>
|
||||
#include "wakeuplistener.h"
|
||||
|
||||
QString MainWindow::version = "1.15.4";
|
||||
QString MainWindow::version = "1.15.5";
|
||||
QString MainWindow::appName = "ProjektManager";
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
|
@@ -154,6 +154,11 @@
|
||||
<addaction name="actionEinstellungen"/>
|
||||
</widget>
|
||||
<widget class="QMenu" name="menuAnalyse">
|
||||
<property name="font">
|
||||
<font>
|
||||
<pointsize>10</pointsize>
|
||||
</font>
|
||||
</property>
|
||||
<property name="title">
|
||||
<string>Analyse</string>
|
||||
</property>
|
||||
@@ -222,11 +227,21 @@
|
||||
<property name="text">
|
||||
<string>Statistiken</string>
|
||||
</property>
|
||||
<property name="font">
|
||||
<font>
|
||||
<pointsize>10</pointsize>
|
||||
</font>
|
||||
</property>
|
||||
</action>
|
||||
<action name="actionListe_Aktualiseren">
|
||||
<property name="text">
|
||||
<string>Liste Aktualiseren</string>
|
||||
</property>
|
||||
<property name="font">
|
||||
<font>
|
||||
<pointsize>10</pointsize>
|
||||
</font>
|
||||
</property>
|
||||
</action>
|
||||
</widget>
|
||||
<resources/>
|
||||
|
@@ -549,7 +549,6 @@ void NewProjektDialog::on_pushButtonSearch_clicked()
|
||||
void NewProjektDialog::on_lineEdit_qt_online_repo_url_editingFinished()
|
||||
{
|
||||
QString text = this->ui->lineEdit_qt_online_repo_url->text();
|
||||
text = text.replace("//", "/");
|
||||
if(text.endsWith("/"))
|
||||
text.chop(1);
|
||||
this->ui->lineEdit_qt_online_repo_url->setText(text);
|
||||
|
Reference in New Issue
Block a user