File tree 2 files changed +6
-14
lines changed
2 files changed +6
-14
lines changed Original file line number Diff line number Diff line change 9
9
10
10
jobs :
11
11
Windows_Qt6 :
12
- name : Win 2019 Qt 6.7
13
- runs-on : windows-2019
12
+ name : Win 2022 Qt 6
13
+ runs-on : windows-2022
14
14
steps :
15
15
- name : Checkout repository
16
16
uses : actions/checkout@v4
17
17
18
18
- name : Install Qt
19
19
uses : jurplel/install-qt-action@v4
20
20
with :
21
- version : ' 6.7 .*'
21
+ version : ' 6.8 .*'
22
22
modules : ' qtpositioning qtserialport qtwebchannel qtwebengine qtwebview'
23
23
24
24
- name : Install NuSpell using vcpkg
44
44
45
45
- name : Create Package
46
46
env :
47
- VCINSTALLDIR : ' C:\Program Files (x86) \Microsoft Visual Studio\2019 \Enterprise\VC'
47
+ VCINSTALLDIR : ' C:\Program Files\Microsoft Visual Studio\2022 \Enterprise\VC'
48
48
shell : cmd
49
49
run : |
50
50
mkdir InyokaEdit\plugins
Original file line number Diff line number Diff line change @@ -1614,7 +1614,6 @@ auto ProvisionalTplParser::parsePkgInstall(const QStringList &sListArgs)
1614
1614
sListPackages .reserve (sListArgs .length ());
1615
1615
QStringList sListPackagesTMP ;
1616
1616
QString sOutput (" " );
1617
- QString sPackages (" " );
1618
1617
1619
1618
for (int i = 0 ; i < sListArgs .length (); i++) {
1620
1619
sListPackagesTMP .clear ();
@@ -1629,10 +1628,6 @@ auto ProvisionalTplParser::parsePkgInstall(const QStringList &sListArgs)
1629
1628
}
1630
1629
1631
1630
sListPackages << sListPackagesTMP [0 ].trimmed ();
1632
- sPackages += sListPackagesTMP [0 ].trimmed ();
1633
- if (i < sListArgs .size () - 1 ) {
1634
- sPackages += " ," ;
1635
- }
1636
1631
}
1637
1632
1638
1633
sOutput += " \n <p>" +
@@ -1642,11 +1637,8 @@ auto ProvisionalTplParser::parsePkgInstall(const QStringList &sListArgs)
1642
1637
" <div class=\" bash\" >\n "
1643
1638
" <pre class=\" notranslate\" > sudo apt-get install " +
1644
1639
sListPackages .join (' ' ) + " </pre>\n </div>\n " ;
1645
- sOutput += " <p>" + QString::fromUtf8 (
1646
- " Oder mit [:apturl:] installieren, "
1647
- " Link: [apt://" );
1648
- sOutput += sPackages ;
1649
- return sOutput + " ]</p>\n " ;
1640
+
1641
+ return sOutput ;
1650
1642
}
1651
1643
1652
1644
// ----------------------------------------------------------------------------
You can’t perform that action at this time.
0 commit comments