Search Criteria
Package Details: cutecom 0.51.0-2
Git Clone URL: | https://aur.archlinux.org/cutecom.git (read-only, click to copy) |
---|---|
Package Base: | cutecom |
Description: | A graphical serial terminal |
Upstream URL: | https://gitlab.com/cutecom/cutecom |
Keywords: | rs232 serial µC |
Licenses: | |
Submitter: | noEntry |
Maintainer: | dviktor |
Last Packager: | dviktor |
Votes: | 35 |
Popularity: | 0.43 |
First Submitted: | 2015-08-10 11:33 |
Last Updated: | 2020-07-06 14:33 |
Latest Comments
1 2 Next › Last »
Sabu commented on 2020-07-06 18:50
Well done!
dviktor commented on 2020-07-06 14:33
@Sabu should be fixed now
Sabu commented on 2020-07-05 13:09
I've tried to build Cutecom but it fails with this error:
[ 74%] Building CXX object CMakeFiles/cutecom.dir/ctrlcharacterspopup.cpp.o
/var/tmp/pamac-build-sabu/cutecom/src/cutecom-v0.51.0 /ctrlcharacterspopup.cpp:145:18: error: field ‘m_borderPath’ has incomplete type ‘QPainterPath’
145 | QPainterPath m_borderPath;
| ^~~~~~~~~~~~
Is this a QT 5.15 issue?
dviktor commented on 2019-03-20 17:46
Please update to 0.51.0!
jihem commented on 2019-02-08 10:26
Can you add the application icon in the package? For example by adding the following line in package():
noEntry commented on 2018-07-04 18:17
Done.
TrialnError commented on 2018-07-03 22:04
For those who are using a common SRCDEST set in makepkg.conf, could you please make the name of the downloaded archive unique by adding ${pkgname}-${pkgver}.tar.gz:: in front of the source url?
Edit: Additional info, as they had done this in the official repos too
noEntry commented on 2018-06-12 14:40
Thanks for the report. Waiting for upstream fix. https://github.com/neundorf/CuteCom/issues/69
maderios commented on 2018-06-11 17:37
I got error: CMake Error at CMakeLists.txt:48 (qt5_use_modules): Unknown CMake command "qt5_use_modules". -- Configuring incomplete, errors occurred!
simeonfelis commented on 2017-03-10 07:37
There is a patch here: https://github.com/neundorf/CuteCom/issues/46
It looks like this:
<pre>
From 27949f877381760e6c27ef7073bc320f8358789a Mon Sep 17 00:00:00 2001
From: slapab <sla.pab.dev@gmail.com>
Date: Fri, 10 Mar 2017 01:55:57 +0100
Subject: [PATCH] Attempts to fix issue #46
---
mainwindow.cpp | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/mainwindow.cpp b/mainwindow.cpp
index 9d93cfc..2ab888f 100644
--- a/mainwindow.cpp
+++ b/mainwindow.cpp
@@ -825,8 +825,8 @@ void MainWindow::sendFile()
default:
break;
}
- QString device = controlPanel->m_combo_device->currentText();
- tmp = tmp + "-vv \"" + filename + "\" < " + device + " > " + device;
+ const QString device = controlPanel->m_combo_device->currentText();
+ tmp = tmp + " -vv \"" + filename + "\" > " + device + " < " + device;
listProcessArgs.append(tmp);
m_sz->setReadChannel(QProcess::StandardError);
@@ -836,13 +836,13 @@ void MainWindow::sendFile()
&MainWindow::sendDone);
m_sz->start("sh", listProcessArgs);
- if (!!m_sz->waitForStarted()) {
+ if (false == m_sz->waitForStarted()) {
QMessageBox::information(this, tr("Comm error"), tr("Could not start sz"));
delete m_sz;
openDevice();
return;
}
- m_progress = new QProgressDialog(tr("Sending file via %1 ...").arg(protocol), tr("Cancel"), 0, 100, this);
+ m_progress = new QProgressDialog(tr("Sending file via %1 ...").arg(m_combo_protocol->currentText()), tr("Cancel"), 0, 100, this);
connect(m_progress, &QProgressDialog::canceled, this, &MainWindow::killSz);
m_progress->setMinimumDuration(100);
QFileInfo fi(filename);
--
2.12.0
</pre>
To apply, place the patch in src/0001-Attempts-to-fix-issue-46.patch and add following lines to PKGBUILD:
<pre>
prepare () {
cd ${srcdir}/CuteCom-${pkgver}
patch -p1 -i "${srcdir}/0001-Attempts-to-fix-issue-46.patch"
}
</pre>
I tested it and it seems to work. Or wait until the next release of cutecom. I don't known the schedule and if this fix will make it into it.