diff --git a/include/rawview.h b/include/rawview.h index 883048a..aa36dc0 100644 --- a/include/rawview.h +++ b/include/rawview.h @@ -9,9 +9,11 @@ #include #include #include +#include -// RawView shows the raw UART output with timestamps, search, tag suppression, -// unlimited history, H+V scrolling and a copy-to-clipboard button. +// RawView shows the raw UART output with timestamps, search (with next/ +// previous navigation and wrap-around), tag suppression, unlimited history, +// H+V scrolling and a copy-to-clipboard button. // Auto-scroll is ON by default. class RawView : public QWidget { @@ -29,13 +31,22 @@ private slots: void onScrollValueChanged(int value); void onAutoScrollToggled(bool enabled); void copyToClipboard(); + void findNext(); + void findPrevious(); private: void setupUi(); void applyColorScheme(); + // Searches for `text` starting at the current cursor, honouring `flags` + // (e.g. QTextDocument::FindBackward). If nothing is found and + // `wrapAllowed` is true, retries once from the start/end of the + // document so search wraps around instead of dead-ending. + bool searchAndSelect(const QString &text, QTextDocument::FindFlags flags, bool wrapAllowed); QPlainTextEdit *m_textEdit = nullptr; QLineEdit *m_searchEdit = nullptr; + QPushButton *m_findPrevBtn = nullptr; + QPushButton *m_findNextBtn = nullptr; QPushButton *m_clearBtn = nullptr; QPushButton *m_copyBtn = nullptr; QCheckBox *m_autoScrollCb = nullptr; diff --git a/include/tagpanel.h b/include/tagpanel.h index 2a9d68d..6e6704b 100644 --- a/include/tagpanel.h +++ b/include/tagpanel.h @@ -5,17 +5,24 @@ #include #include #include +#include +#include #include #include -// TagPanel displays the most recent data for a single tag (e.g. [WDG]). -// Key=value pairs are shown in a table that updates in-place. -// If a value contains ';', it is treated as a LIST: the key is shown once -// and each list element gets its own row below it (key cell left empty -// for the continuation rows, like a merged-cell look). -// Example: Devs=trackdisk.device;input.device -// Devs trackdisk.device -// input.device +// TagPanel displays the data received for a single tag (e.g. [WDG]) in two +// tabs: +// - "Aktuell": the most recent value(s), updating in-place (a table for +// key=value pairs, or a plain label for raw/free-form content). If a +// value contains ';', it is treated as a LIST: the key is shown once +// and each list element gets its own row below it (key cell left empty +// for the continuation rows, like a merged-cell look). +// Example: Devs=trackdisk.device;input.device +// Devs trackdisk.device +// input.device +// - "Verlauf": every value ever received for this tag, timestamped, in +// receive order - so you can see the full runtime history rather than +// just the latest snapshot. class TagPanel : public QGroupBox { Q_OBJECT @@ -30,16 +37,26 @@ public slots: private slots: void copyToClipboard(); + void clearHistory(); private: void parseKeyValue(const QString &value); void showRaw(const QString &value); // Replaces all rows belonging to `key` with one row per value in `values`. void setKeyValues(const QString &key, const QStringList &values); + // Appends a timestamped entry for `value` to the "Verlauf" tab. + void appendHistory(const QString &value); QString m_tag; - QTableWidget *m_table = nullptr; - QLabel *m_rawLabel = nullptr; + QTabWidget *m_tabs = nullptr; + QTableWidget *m_table = nullptr; + QLabel *m_rawLabel = nullptr; + QPlainTextEdit *m_historyEdit = nullptr; + int m_historyCount = 0; + + // Cap history growth for very chatty/long-running tags so memory use + // stays bounded; oldest entries are dropped first (FIFO). + static constexpr int kMaxHistoryEntries = 5000; // Track which table rows belong to which key, so repeated updates can // replace the previous rows instead of appending duplicates. diff --git a/src/rawview.cpp b/src/rawview.cpp index f3f7c44..59cd0ac 100644 --- a/src/rawview.cpp +++ b/src/rawview.cpp @@ -7,9 +7,17 @@ #include #include #include +#include +#include +// Tag names may contain letters, digits, underscore AND hyphen (e.g. +// [I2C-BUS]) - keep this in sync with the tagRe in serialworker.cpp, which +// is what actually decides whether a tag is detected/emitted in the first +// place. If the two regexes disagree, hyphenated tags can end up detected +// by one but not recognised as "having a tag" by the other (breaking either +// cyan highlighting or the tag filter). const QRegularExpression RawView::s_tagRe( - R"(\[([A-Z][A-Z0-9_]*)\])", QRegularExpression::CaseInsensitiveOption); + R"(\[([A-Z][A-Z0-9_-]*)\])", QRegularExpression::CaseInsensitiveOption); RawView::RawView(QWidget *parent) : QWidget(parent) @@ -30,6 +38,22 @@ void RawView::setupUi() m_searchEdit->setPlaceholderText(tr("Search…")); m_searchEdit->setClearButtonEnabled(true); connect(m_searchEdit, &QLineEdit::textChanged, this, &RawView::onSearch); + connect(m_searchEdit, &QLineEdit::returnPressed, this, &RawView::findNext); + + m_findPrevBtn = new QPushButton(tr("▲"), this); + m_findPrevBtn->setMaximumWidth(28); + m_findPrevBtn->setToolTip(tr("Previous match (Shift+F3)")); + connect(m_findPrevBtn, &QPushButton::clicked, this, &RawView::findPrevious); + + m_findNextBtn = new QPushButton(tr("▼"), this); + m_findNextBtn->setMaximumWidth(28); + m_findNextBtn->setToolTip(tr("Next match (F3 / Enter)")); + connect(m_findNextBtn, &QPushButton::clicked, this, &RawView::findNext); + + auto *nextShortcut = new QShortcut(QKeySequence(Qt::Key_F3), this); + connect(nextShortcut, &QShortcut::activated, this, &RawView::findNext); + auto *prevShortcut = new QShortcut(QKeySequence(Qt::SHIFT | Qt::Key_F3), this); + connect(prevShortcut, &QShortcut::activated, this, &RawView::findPrevious); m_autoScrollCb = new QCheckBox(tr("Auto-scroll"), this); m_autoScrollCb->setChecked(true); // default ON @@ -47,6 +71,8 @@ void RawView::setupUi() toolbar->addWidget(new QLabel(tr("Search:"), this)); toolbar->addWidget(m_searchEdit, 1); + toolbar->addWidget(m_findPrevBtn); + toolbar->addWidget(m_findNextBtn); toolbar->addWidget(m_autoScrollCb); toolbar->addWidget(m_lineCountLbl); toolbar->addWidget(m_copyBtn); @@ -122,18 +148,64 @@ void RawView::copyToClipboard() QApplication::clipboard()->setText(m_textEdit->toPlainText()); } +bool RawView::searchAndSelect(const QString &text, QTextDocument::FindFlags flags, bool wrapAllowed) +{ + if (text.isEmpty()) + return false; + + QTextDocument *doc = m_textEdit->document(); + QTextCursor cursor = doc->find(text, m_textEdit->textCursor(), flags); + + if (cursor.isNull() && wrapAllowed) { + // No further match in the search direction from here - wrap around + // to the start (or end, for backward search) and try once more so + // the user can keep pressing "next"/"previous" in a loop. + QTextCursor wrapCursor(doc); + if (flags.testFlag(QTextDocument::FindBackward)) + wrapCursor.movePosition(QTextCursor::End); + cursor = doc->find(text, wrapCursor, flags); + } + + if (cursor.isNull()) + return false; + + m_textEdit->setTextCursor(cursor); + return true; +} + void RawView::onSearch(const QString &text) { - QTextDocument *doc = m_textEdit->document(); - QTextCursor cursor = doc->find(text); - if (!cursor.isNull()) { - m_textEdit->setTextCursor(cursor); - m_searchEdit->setStyleSheet(QString()); - } else if (!text.isEmpty()) { - m_searchEdit->setStyleSheet("background: #5c2222;"); - } else { + if (text.isEmpty()) { m_searchEdit->setStyleSheet(QString()); + return; } + + // Whenever the search text itself changes, restart from the top of the + // document so editing the query doesn't leave the view stranded at + // wherever the cursor happened to be from a previous search. + QTextCursor cursor(m_textEdit->document()); + m_textEdit->setTextCursor(cursor); + + const bool found = searchAndSelect(text, {}, true); + m_searchEdit->setStyleSheet(found ? QString() : "background: #5c2222;"); +} + +void RawView::findNext() +{ + const QString text = m_searchEdit->text(); + if (text.isEmpty()) + return; + const bool found = searchAndSelect(text, {}, true); + m_searchEdit->setStyleSheet(found ? QString() : "background: #5c2222;"); +} + +void RawView::findPrevious() +{ + const QString text = m_searchEdit->text(); + if (text.isEmpty()) + return; + const bool found = searchAndSelect(text, QTextDocument::FindBackward, true); + m_searchEdit->setStyleSheet(found ? QString() : "background: #5c2222;"); } void RawView::onScrollValueChanged(int value) diff --git a/src/serialworker.cpp b/src/serialworker.cpp index b72010d..3ab4405 100644 --- a/src/serialworker.cpp +++ b/src/serialworker.cpp @@ -269,8 +269,14 @@ void SerialWorker::processLine(const QString &line) m_logStream->flush(); } + // Tag names may contain letters, digits, underscore AND hyphen (e.g. + // [I2C-BUS]). Keep this in sync with RawView::s_tagRe, which is used + // for cyan highlighting and re-checking suppressed tags client-side; + // if the two regexes disagree, a hyphenated tag can be detected here + // (and emitted/filterable) while RawView fails to recognise it as + // tagged, or vice versa. static const QRegularExpression tagRe( - R"(\[([A-Z][A-Z0-9_]*)\](.*))", QRegularExpression::CaseInsensitiveOption); + R"(\[([A-Z][A-Z0-9_-]*)\](.*))", QRegularExpression::CaseInsensitiveOption); const auto match = tagRe.match(line); if (match.hasMatch()) { diff --git a/src/tagpanel.cpp b/src/tagpanel.cpp index 8653814..ec868f6 100644 --- a/src/tagpanel.cpp +++ b/src/tagpanel.cpp @@ -3,6 +3,10 @@ #include #include #include +#include +#include +#include +#include TagPanel::TagPanel(const QString &tag, QWidget *parent) : QGroupBox(QStringLiteral("[%1]").arg(tag), parent) @@ -12,7 +16,15 @@ TagPanel::TagPanel(const QString &tag, QWidget *parent) layout->setContentsMargins(6, 14, 6, 6); layout->setSpacing(4); - m_table = new QTableWidget(0, 2, this); + m_tabs = new QTabWidget(this); + + // ── "Aktuell" tab: latest value(s), updates in-place ─────────────── + auto *currentTab = new QWidget(m_tabs); + auto *currentLayout = new QVBoxLayout(currentTab); + currentLayout->setContentsMargins(0, 4, 0, 0); + currentLayout->setSpacing(4); + + m_table = new QTableWidget(0, 2, currentTab); m_table->setHorizontalHeaderLabels({tr("Key"), tr("Value")}); m_table->horizontalHeader()->setStretchLastSection(true); m_table->verticalHeader()->hide(); @@ -20,18 +32,48 @@ TagPanel::TagPanel(const QString &tag, QWidget *parent) m_table->setAlternatingRowColors(true); m_table->setMaximumHeight(220); m_table->verticalHeader()->setDefaultSectionSize(22); - layout->addWidget(m_table); + currentLayout->addWidget(m_table); - m_rawLabel = new QLabel(this); + m_rawLabel = new QLabel(currentTab); m_rawLabel->setWordWrap(true); m_rawLabel->setStyleSheet("font-family: monospace;"); m_rawLabel->hide(); - layout->addWidget(m_rawLabel); + currentLayout->addWidget(m_rawLabel); + + m_tabs->addTab(currentTab, tr("Aktuell")); + + // ── "Verlauf" tab: every value ever received, timestamped ────────── + auto *historyTab = new QWidget(m_tabs); + auto *historyLayout = new QVBoxLayout(historyTab); + historyLayout->setContentsMargins(0, 4, 0, 0); + historyLayout->setSpacing(4); + + m_historyEdit = new QPlainTextEdit(historyTab); + m_historyEdit->setReadOnly(true); + m_historyEdit->setMaximumHeight(220); + m_historyEdit->setLineWrapMode(QPlainTextEdit::NoWrap); + QFont mono("Monospace"); + mono.setStyleHint(QFont::Monospace); + mono.setPointSize(9); + m_historyEdit->setFont(mono); + historyLayout->addWidget(m_historyEdit); + + auto *historyBtnRow = new QHBoxLayout(); + auto *clearHistBtn = new QPushButton(tr("Verlauf leeren"), historyTab); + clearHistBtn->setToolTip(tr("Nur den Verlauf dieses Tags leeren (Panel bleibt bestehen)")); + connect(clearHistBtn, &QPushButton::clicked, this, &TagPanel::clearHistory); + historyBtnRow->addStretch(); + historyBtnRow->addWidget(clearHistBtn); + historyLayout->addLayout(historyBtnRow); + + m_tabs->addTab(historyTab, tr("Verlauf")); + + layout->addWidget(m_tabs); auto *btnRow = new QHBoxLayout(); btnRow->addStretch(); auto *copyBtn = new QPushButton(tr("📋 Copy"), this); - copyBtn->setToolTip(tr("Copy current tag values to clipboard")); + copyBtn->setToolTip(tr("Copy the active tab's content to clipboard")); copyBtn->setMaximumWidth(90); connect(copyBtn, &QPushButton::clicked, this, &TagPanel::copyToClipboard); btnRow->addWidget(copyBtn); @@ -40,6 +82,8 @@ TagPanel::TagPanel(const QString &tag, QWidget *parent) void TagPanel::update(const QString &value) { + appendHistory(value); + static const QRegularExpression kvRe(R"((\w+)=(\S+))"); if (kvRe.match(value).hasMatch()) { parseKeyValue(value); @@ -52,6 +96,31 @@ void TagPanel::update(const QString &value) } } +void TagPanel::appendHistory(const QString &value) +{ + const QString ts = QDateTime::currentDateTime().toString("hh:mm:ss.zzz"); + m_historyEdit->appendPlainText(QStringLiteral("[%1] %2").arg(ts, value)); + m_historyEdit->verticalScrollBar()->setValue( + m_historyEdit->verticalScrollBar()->maximum()); + + ++m_historyCount; + if (m_historyCount > kMaxHistoryEntries) { + // Drop the oldest entry (topmost line) to keep memory use bounded + // for very chatty or long-running tags. + QTextCursor cursor(m_historyEdit->document()); + cursor.movePosition(QTextCursor::Start); + cursor.movePosition(QTextCursor::Down, QTextCursor::KeepAnchor); + cursor.removeSelectedText(); + --m_historyCount; + } +} + +void TagPanel::clearHistory() +{ + m_historyEdit->clear(); + m_historyCount = 0; +} + void TagPanel::parseKeyValue(const QString &value) { static const QRegularExpression kvRe(R"((\w+)=(\S+))"); @@ -124,6 +193,13 @@ void TagPanel::copyToClipboard() QStringList lines; lines << QStringLiteral("[%1]").arg(m_tag); + if (m_tabs->currentIndex() == 1) { + // "Verlauf" tab active - copy the full timestamped history as-is. + QApplication::clipboard()->setText( + lines.join('\n') + '\n' + m_historyEdit->toPlainText()); + return; + } + if (m_table->isVisible()) { QString lastKey; for (int r = 0; r < m_table->rowCount(); ++r) { diff --git a/uartscope-git/PKGBUILD b/uartscope-git/PKGBUILD index 04198cb..b8d872c 100644 --- a/uartscope-git/PKGBUILD +++ b/uartscope-git/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: diabolus pkgname=uartscope -pkgver=1.0.0.r4.g72a2b7e +pkgver=1.0.0.r5.g1422efd pkgrel=1 pkgdesc="Qt6-based UART serial monitor with tag monitoring, table view and auto-reconnect" arch=('x86_64' 'aarch64') diff --git a/uartscope-git/pkg/uartscope/.BUILDINFO b/uartscope-git/pkg/uartscope/.BUILDINFO index 78be383..c745e96 100644 --- a/uartscope-git/pkg/uartscope/.BUILDINFO +++ b/uartscope-git/pkg/uartscope/.BUILDINFO @@ -1,11 +1,11 @@ format = 2 pkgname = uartscope pkgbase = uartscope -pkgver = 1.0.0.r4.g72a2b7e-1 +pkgver = 1.0.0.r5.g1422efd-1 pkgarch = x86_64 -pkgbuild_sha256sum = 07419e1d87926e1057ee86028fc9eeefd0ef87af6ede41e86e1bf8515e7680ec +pkgbuild_sha256sum = 8242aa269f493268004722051e566533f096b179edde83066e021265ee1edd3e packager = Unknown Packager -builddate = 1785955532 +builddate = 1786450603 builddir = /home/diabolus/Arbeit/Projekt-Hirnfrei/uartscope/uartscope-git startdir = /home/diabolus/Arbeit/Projekt-Hirnfrei/uartscope/uartscope-git buildtool = makepkg @@ -55,7 +55,7 @@ installed = akonadi-search-26.04.3-1-x86_64 installed = alembic-1.8.12-1-x86_64 installed = alsa-card-profiles-1:1.6.8-1-x86_64 installed = alsa-lib-1.2.16.1-1-x86_64 -installed = alsa-plugins-1:1.2.12-5-x86_64 +installed = alsa-plugins-1:1.2.12-6-x86_64 installed = alsa-topology-conf-1.2.5.1-4-any installed = alsa-ucm-conf-1.2.16.1-1-any installed = alsa-utils-1.2.16-1-x86_64 @@ -74,20 +74,21 @@ installed = android-sdk-26.1.1-2-x86_64 installed = android-sdk-build-tools-r37.0.0-2-x86_64 installed = android-sdk-platform-tools-37.0.0-1-x86_64 installed = android-sdk-platform-tools-debug-36.0.0-1-x86_64 -installed = android-tools-37.0.0-1-x86_64 +installed = android-tools-37.0.0-2-x86_64 installed = android-udev-20260423-1-any installed = ant-1.10.17-1-any installed = anydesk-bin-8.0.4-1-x86_64 installed = aom-3.14.1-1-x86_64 installed = apache-2.4.68-1-x86_64 installed = apache-orc-2.3.1-1-x86_64 +installed = apparmor-4.1.7-1-x86_64 installed = appstream-1.1.5-1-x86_64 installed = appstream-glib-0.8.4-1-x86_64 installed = appstream-qt-1.1.5-1-x86_64 installed = apr-1.7.6-1-x86_64 -installed = apr-util-1.6.3-2-x86_64 +installed = apr-util-1.6.4-1-x86_64 installed = arandr-0.1.11-6-any -installed = arch-install-scripts-31-1-any +installed = arch-install-scripts-31-2-any installed = archlinux-appstream-data-20260722-1-any installed = archlinux-keyring-20260727-1-any installed = arduino-1:1.8.19-4-x86_64 @@ -113,7 +114,7 @@ installed = atkmm-2.28.5-2-x86_64 installed = atril-1.28.3-1-x86_64 installed = attica-6.28.0-1-x86_64 installed = attr-2.6.0-1-x86_64 -installed = audacity-1:3.7.8-2-x86_64 +installed = audacity-1:3.7.8-3-x86_64 installed = audiofile-0.3.6-12-x86_64 installed = audit-4.2.1-1-x86_64 installed = aurorae-6.7.4-1-x86_64 @@ -144,7 +145,7 @@ installed = aws-sdk-cpp-core-1.11.792-1-x86_64 installed = aws-sdk-cpp-iam-1.11.792-1-x86_64 installed = aws-sdk-cpp-s3-1.11.792-1-x86_64 installed = ayatana-ido-0.10.4-1-x86_64 -installed = babl-0.1.126-1-x86_64 +installed = babl-0.1.128-1-x86_64 installed = baloo-6.28.0-1-x86_64 installed = baloo-widgets-26.04.3-1-x86_64 installed = baobab-50.0-1-x86_64 @@ -168,7 +169,7 @@ installed = bluez-libs-5.87-2-x86_64 installed = bluez-obex-5.87-2-x86_64 installed = bluez-utils-5.87-2-x86_64 installed = bogofilter-db-1.2.5-12-x86_64 -installed = bolt-0.9.11-1-x86_64 +installed = bolt-0.9.11-2-x86_64 installed = boost-1.91.0-2-x86_64 installed = boost-libs-1.91.0-2-x86_64 installed = brasero-3.12.3+r44+gdea4990b-1-x86_64 @@ -201,7 +202,7 @@ installed = cargo-c-0.10.24-1-x86_64 installed = cauchy-0.9.0-5-x86_64 installed = cblas-3.12.1-2-x86_64 installed = ccache-4.13.6-1-x86_64 -installed = cccl-3.4.1-1-any +installed = cccl-3.4.2-1-any installed = cdparanoia-10.2-10-x86_64 installed = cdrdao-1.2.6-3-x86_64 installed = cdrtools-3.02a09-6-x86_64 @@ -209,8 +210,8 @@ installed = cef-minimal-obs-bin-2:127.3.4+ga0ca18e+chromium_127.0.6533.100_6-1-x installed = ceres-solver-2.2.0-5-x86_64 installed = cfitsio-1:4.6.4-1-x86_64 installed = chmlib-0.40-10-x86_64 -installed = chromaprint-1.6.1-1-x86_64 -installed = chromium-151.0.7922.75-1-x86_64 +installed = chromaprint-1.6.1-2-x86_64 +installed = chromium-151.0.7922.108-1-x86_64 installed = chrpath-0.18-1-x86_64 installed = cifs-utils-7.5-1-x86_64 installed = cinnamon-6.6.9-1-x86_64 @@ -259,7 +260,7 @@ installed = cups-filters-2.0.1-2-x86_64 installed = cups-pk-helper-0.2.7-2-x86_64 installed = cura-bin-5.13.0-1-x86_64 installed = curl-8.21.0-1-x86_64 -installed = curl-impersonate-1.5.6-1-x86_64 +installed = curl-impersonate-2.1.0-1-x86_64 installed = curlftpfs-0.9.2-10-x86_64 installed = curseforge-1.312.1_36055-1-x86_64 installed = cutecom-0.60.0_RC1-2-x86_64 @@ -278,14 +279,14 @@ installed = ddcutil-2.2.7-1-x86_64 installed = debhelper-14.3-1-any installed = debtap-3.6.3-1-any installed = debugedit-5.3-1-x86_64 -installed = debuginfod-0.195-1-x86_64 +installed = debuginfod-0.195-2-x86_64 installed = default-cursors-3-1-any installed = dejagnu-1.6.3-19-any -installed = deno-2.9.4-1-x86_64 +installed = deno-2.9.5-1-x86_64 installed = desktop-file-utils-0.28-1-x86_64 -installed = device-mapper-2.03.41-1-x86_64 +installed = device-mapper-2.03.42-1-x86_64 installed = devilspie-0.23-6-x86_64 -installed = dhcpcd-10.3.2-1-x86_64 +installed = dhcpcd-10.5.0-1-x86_64 installed = dialog-1:1.3_20260721-1-x86_64 installed = diffutils-3.12-2-x86_64 installed = ding-libs-0.7.0-1-x86_64 @@ -298,7 +299,7 @@ installed = dmidecode-3.7-1-x86_64 installed = dnsmasq-2.93-1-x86_64 installed = docbook-xml-4.5-11-any installed = docbook-xsl-1.79.2-9-any -installed = docker-1:29.7.1-1-x86_64 +installed = docker-1:29.7.2-1-x86_64 installed = docker-buildx-0.36.0-1-x86_64 installed = docker-compose-5.4.0-1-x86_64 installed = dolphin-26.04.3-1-x86_64 @@ -337,14 +338,14 @@ installed = egl-x11-1.0.5-1-x86_64 installed = eglexternalplatform-1.2.1-1-any installed = eigen-5.0.1-2-x86_64 installed = electron-1:43-1-any -installed = electron43-43.2.0-1-x86_64 +installed = electron43-43.3.0-1-x86_64 installed = elementary-icon-theme-8.2.0-2-any -installed = elfutils-0.195-1-x86_64 +installed = elfutils-0.195-2-x86_64 installed = embree-4.4.1-1-x86_64 installed = enca-1.22-1-x86_64 installed = enchant-2.8.15-2-x86_64 installed = engrampa-1.28.3-1-x86_64 -installed = epiphany-50.4-2-x86_64 +installed = epiphany-50.5-1-x86_64 installed = epson-inkjet-printer-escpr-1.8.8-1-x86_64 installed = espeak-ng-1.52.0-1-x86_64 installed = eventviews-26.04.3-1-x86_64 @@ -369,11 +370,12 @@ installed = f3-debug-9.0-1-x86_64 installed = faac-2.0-1-x86_64 installed = faad2-2.11.2-1-x86_64 installed = fakeroot-1:1.37.2-3-x86_64 +installed = feather-wallet-bin-2.8.1-2-x86_64 installed = ffcall-2.5-1-x86_64 -installed = ffmpeg-2:8.1.2-11-x86_64 -installed = ffmpeg4.4-4.4.8-2-x86_64 -installed = ffmpegthumbs-26.04.3-1-x86_64 -installed = ffnvcodec-headers-13.0.19.0-1-any +installed = ffmpeg-2:9.0-5-x86_64 +installed = ffmpeg4.4-4.4.8-3-x86_64 +installed = ffmpegthumbs-26.04.3-3-x86_64 +installed = ffnvcodec-headers-13.1.15.0-1-any installed = fftw-3.3.11-1-x86_64 installed = fig2dev-3.2.9-2-x86_64 installed = file-5.48-1-x86_64 @@ -381,7 +383,7 @@ installed = file-roller-44.7-1-x86_64 installed = filesystem-2025.10.12-1-any installed = findutils-4.11.0-1-x86_64 installed = fio-3.42-1-x86_64 -installed = firefox-153.0.3-1-x86_64 +installed = firefox-153.0.3-2-x86_64 installed = firestorm-bin-7.2.4.80712-1-x86_64 installed = flac-1.5.0-1-x86_64 installed = flameshot-14.0.0-1-x86_64 @@ -391,9 +393,9 @@ installed = flatpak-1:1.18.0-1-x86_64 installed = flex-2.6.4-6-x86_64 installed = fltk-1.4.5-1-x86_64 installed = fltk1.3-1.3.11-4-x86_64 -installed = fluidsynth-2.5.6-1-x86_64 +installed = fluidsynth-2.5.7-1-x86_64 installed = fmt-12.2.0-1-x86_64 -installed = fontconfig-2:2.18.2-1-x86_64 +installed = fontconfig-2:2.18.3-1-x86_64 installed = foomatic-db-engine-5:20200131-2-x86_64 installed = fpc-3.2.2-11-x86_64 installed = fpc-src-3.2.2-4-any @@ -402,7 +404,7 @@ installed = freealut-1.1.0-10-x86_64 installed = freecol-1.2.0-2-any installed = freeglut-3.8.0-1-x86_64 installed = freeoffice-1234-1-x86_64 -installed = freerdp-2:3.30.0-1-x86_64 +installed = freerdp-2:3.30.0-2-x86_64 installed = freetype2-2.14.3-1-x86_64 installed = frei0r-plugins-3.2.3-2-x86_64 installed = fribidi-1.0.16-2-x86_64 @@ -446,7 +448,7 @@ installed = geany-2.1-2-x86_64 installed = geany-plugins-2.1-3-x86_64 installed = geekbench-7.0.0-1-x86_64 installed = gef-git-0.0.0.2252.2b7f315-1-any -installed = gegl-0.4.70-2-x86_64 +installed = gegl-0.4.70-3-x86_64 installed = gendesk-1.0.15-1-x86_64 installed = geoclue-2.8.2-1-x86_64 installed = geocode-glib-3.26.4-6-x86_64 @@ -457,13 +459,13 @@ installed = gexiv2-0.16.2-2-x86_64 installed = gexiv2-common-0.16.2-2-x86_64 installed = gflags-2.2.2-6-x86_64 installed = gfxstream-0.1.2-2-x86_64 -installed = ghex-50.2-1-x86_64 +installed = ghex-50.3-1-x86_64 installed = ghostscript-10.07.1-1-x86_64 installed = gi-docgen-2026.1-1-any installed = giflib-6.1.3-2-x86_64 installed = gimp-3.2.4-2-x86_64 installed = git-2.55.0-1-x86_64 -installed = git-lfs-3.7.1-1-x86_64 +installed = git-lfs-3.7.1-2-x86_64 installed = gjs-2:1.88.1-1-x86_64 installed = glabels-3.4.1-13-x86_64 installed = glew-2.3.1-1-x86_64 @@ -534,7 +536,7 @@ installed = gom-0.5.6-1-x86_64 installed = google-chrome-151.0.7922.71-1-x86_64 installed = google-earth-pro-7.3.7.1155-1-x86_64 installed = google-glog-0.7.1-2-x86_64 -installed = goverlay-1.8.10-1-x86_64 +installed = goverlay-1.8.11-1-x86_64 installed = gparted-1.8.1-2-x86_64 installed = gperf-3.3-2-x86_64 installed = gperftools-2.18.1-1-x86_64 @@ -544,9 +546,9 @@ installed = gpm-1.20.7.r38.ge82d1a6-6-x86_64 installed = gradle-9.6.1-1-any installed = grantleetheme-26.04.3-1-x86_64 installed = graphene-1.10.8-2-x86_64 -installed = graphicsmagick-1.3.47-2-x86_64 +installed = graphicsmagick-1.3.48-1-x86_64 installed = graphite-1:1.3.15-1-x86_64 -installed = graphviz-15.1.0-1-x86_64 +installed = graphviz-15.1.1-1-x86_64 installed = grep-3.12-2-x86_64 installed = grilo-0.3.19-2-x86_64 installed = grilo-plugins-1:0.3.18-3-x86_64 @@ -564,17 +566,17 @@ installed = gsound-1.0.3-4-x86_64 installed = gspell-1.14.4-1-x86_64 installed = gssdp-1.6.6-1-x86_64 installed = gssproxy-0.9.2-3-x86_64 -installed = gst-devtools-libs-1.28.5-4-x86_64 -installed = gst-editing-services-1.28.5-4-x86_64 -installed = gst-libav-1.28.5-4-x86_64 -installed = gst-plugin-gtk-1.28.5-4-x86_64 -installed = gst-plugins-bad-1.28.5-4-x86_64 -installed = gst-plugins-bad-libs-1.28.5-4-x86_64 -installed = gst-plugins-base-1.28.5-4-x86_64 -installed = gst-plugins-base-libs-1.28.5-4-x86_64 -installed = gst-plugins-good-1.28.5-4-x86_64 -installed = gst-python-1.28.5-4-x86_64 -installed = gstreamer-1.28.5-4-x86_64 +installed = gst-devtools-libs-1.28.6-1-x86_64 +installed = gst-editing-services-1.28.6-1-x86_64 +installed = gst-libav-1.28.6-1-x86_64 +installed = gst-plugin-gtk-1.28.6-1-x86_64 +installed = gst-plugins-bad-1.28.6-1-x86_64 +installed = gst-plugins-bad-libs-1.28.6-1-x86_64 +installed = gst-plugins-base-1.28.6-1-x86_64 +installed = gst-plugins-base-libs-1.28.6-1-x86_64 +installed = gst-plugins-good-1.28.6-1-x86_64 +installed = gst-python-1.28.6-1-x86_64 +installed = gstreamer-1.28.6-1-x86_64 installed = gtest-1.17.0-2-x86_64 installed = gtk-1.2.10-20-x86_64 installed = gtk-debug-1.2.10-20-x86_64 @@ -604,8 +606,8 @@ installed = gupnp-1:1.6.10-1-x86_64 installed = gupnp-av-0.14.5-1-x86_64 installed = gupnp-dlna-0.12.0-5-x86_64 installed = gupnp-igd-1.6.0-2-x86_64 -installed = guvcview-2.2.2-3-x86_64 -installed = guvcview-common-2.2.2-3-x86_64 +installed = guvcview-2.2.2-4-x86_64 +installed = guvcview-common-2.2.2-4-x86_64 installed = gvfs-1.60.2-1-x86_64 installed = gvfs-afc-1.60.2-1-x86_64 installed = gvfs-goa-1.60.2-1-x86_64 @@ -623,7 +625,7 @@ installed = hardinfo2-debug-2.2.13-1-x86_64 installed = harfbuzz-14.3.0-1-x86_64 installed = harfbuzz-icu-14.3.0-1-x86_64 installed = haveged-1.9.26-1-x86_64 -installed = hdf5-2.1.1-1-x86_64 +installed = hdf5-2.2.0-1-x86_64 installed = heroic-games-launcher-bin-2.22.0-1-x86_64 installed = hicolor-icon-theme-0.18-1-any installed = hidapi-0.15.0-1-x86_64 @@ -648,7 +650,7 @@ installed = icu69-69.1-2-x86_64 installed = iec16022-0.3.1-3-x86_64 installed = iio-sensor-proxy-3.9-1-x86_64 installed = ijs-0.35-7-x86_64 -installed = imagemagick-7.1.2.29-1-x86_64 +installed = imagemagick-7.1.2.29-2-x86_64 installed = imake-1.0.11-1-x86_64 installed = imath-3.2.2-6-x86_64 installed = imlib-1.9.15-19-x86_64 @@ -703,6 +705,7 @@ installed = json-glib-1.10.8-1-x86_64 installed = jsoncpp-1.9.6-3-x86_64 installed = jstest-gtk-git-0.1.0.r127.g92bdf8e-1-x86_64 installed = jstest-gtk-git-debug-0.1.0.r127.g92bdf8e-1-x86_64 +installed = judy-1.0.5-10-x86_64 installed = junit-4.13.2-2-any installed = kaccounts-integration-26.04.3-1-x86_64 installed = kactivitymanagerd-6.7.4-1-x86_64 @@ -746,7 +749,7 @@ installed = kdeedu-data-26.04.3-1-any installed = kdegraphics-mobipocket-26.04.3-1-x86_64 installed = kdegraphics-thumbnailers-26.04.3-1-x86_64 installed = kdenetwork-filesharing-26.04.3-1-x86_64 -installed = kdenlive-26.04.3-1-x86_64 +installed = kdenlive-26.04.3-2-x86_64 installed = kdepim-addons-26.04.3-1-x86_64 installed = kdesu-6.28.0-1-x86_64 installed = kdiagram-3.0.1-5-x86_64 @@ -757,7 +760,7 @@ installed = kdsingleapplication-1.2.1-1-x86_64 installed = kdsoap-2.3.0-1-x86_64 installed = kdsoap-ws-discovery-client-0.4.0-3-x86_64 installed = keyutils-1.6.3-4-x86_64 -installed = kfilemetadata-6.28.0-1-x86_64 +installed = kfilemetadata-6.28.0-2-x86_64 installed = kglobalaccel-6.28.0-1-x86_64 installed = kglobalaccel5-5.116.0-2-x86_64 installed = kglobalacceld-6.7.4-1-x86_64 @@ -804,7 +807,7 @@ installed = kpackage5-5.116.0-3-x86_64 installed = kparts-6.28.0-1-x86_64 installed = kpeople-6.28.0-1-x86_64 installed = kpimtextedit-26.04.3-1-x86_64 -installed = kpipewire-6.7.4-3-x86_64 +installed = kpipewire-6.7.4-5-x86_64 installed = kpkpass-26.04.3-1-x86_64 installed = kpty-6.28.0-1-x86_64 installed = kquickcharts-6.28.0-1-x86_64 @@ -831,7 +834,7 @@ installed = kwayland-6.7.4-1-x86_64 installed = kwayland5-5.116.0-2-x86_64 installed = kwidgetsaddons-6.28.0-1-x86_64 installed = kwidgetsaddons5-5.116.0-2-x86_64 -installed = kwin-6.7.4-1-x86_64 +installed = kwin-6.7.4-3-x86_64 installed = kwindowsystem-6.28.0-1-x86_64 installed = kwindowsystem5-5.116.0-2-x86_64 installed = kxmlgui-6.28.0-1-x86_64 @@ -870,7 +873,7 @@ installed = lib32-duktape-2.7.0-7-x86_64 installed = lib32-e2fsprogs-1.47.4-1-x86_64 installed = lib32-expat-2.8.2-1-x86_64 installed = lib32-flac-1.5.0-1-x86_64 -installed = lib32-fontconfig-2:2.18.2-1-x86_64 +installed = lib32-fontconfig-2:2.18.3-1-x86_64 installed = lib32-freetype2-2.14.3-1-x86_64 installed = lib32-fribidi-1.0.16-2-x86_64 installed = lib32-gcc-libs-16.1.1+r595+g171d15ac6959-1-x86_64 @@ -903,7 +906,7 @@ installed = lib32-libdrm-2.4.134-1-x86_64 installed = lib32-libdv-1.0.0-9-x86_64 installed = lib32-libelf-0.195-1-x86_64 installed = lib32-libepoxy-1.5.10-2-x86_64 -installed = lib32-libffi-3.7.1-1-x86_64 +installed = lib32-libffi-3.8.0-1-x86_64 installed = lib32-libgcrypt-1.12.2-1-x86_64 installed = lib32-libglvnd-1.7.0-1-x86_64 installed = lib32-libgpg-error-1.61-1-x86_64 @@ -974,20 +977,20 @@ installed = lib32-libxxf86vm-1.1.5-2-x86_64 installed = lib32-llvm-libs-1:22.1.8-1-x86_64 installed = lib32-lm_sensors-1:3.6.2-2-x86_64 installed = lib32-mesa-1:26.1.6-1-x86_64 -installed = lib32-mpg123-1.33.5-1-x86_64 +installed = lib32-mpg123-1.33.7-1-x86_64 installed = lib32-ncurses-6.6-2-x86_64 installed = lib32-nettle-4.0-2-x86_64 -installed = lib32-nspr-4.39-1-x86_64 +installed = lib32-nspr-4.40-1-x86_64 installed = lib32-nss-3.126-1-x86_64 -installed = lib32-nvidia-utils-610.43.03-1-x86_64 +installed = lib32-nvidia-utils-610.57.04-1-x86_64 installed = lib32-openal-1.25.2-1-x86_64 installed = lib32-openssl-1:3.6.3-1-x86_64 installed = lib32-openssl-1.1-1.1.1.w-5-x86_64 installed = lib32-opus-1.6.1-1-x86_64 installed = lib32-orc-0.4.42-1-x86_64 -installed = lib32-p11-kit-0.26.4-1-x86_64 +installed = lib32-p11-kit-0.26.5-1-x86_64 installed = lib32-pam-1.7.2-1-x86_64 -installed = lib32-pango-1:1.58.1-1-x86_64 +installed = lib32-pango-1:1.58.2-1-x86_64 installed = lib32-pcre2-10.47-1-x86_64 installed = lib32-pipewire-1:1.6.8-1-x86_64 installed = lib32-pipewire-jack-1:1.6.8-1-x86_64 @@ -1007,7 +1010,7 @@ installed = lib32-v4l-utils-1.32.0-1-x86_64 installed = lib32-vkd3d-1.19-1-x86_64 installed = lib32-vulkan-icd-loader-1.4.357.0-1-x86_64 installed = lib32-wavpack-5.9.0-1-x86_64 -installed = lib32-wayland-1.25.0-1-x86_64 +installed = lib32-wayland-1.26.0-1-x86_64 installed = lib32-xz-5.8.3-1-x86_64 installed = lib32-zlib-1.3.2-1-x86_64 installed = lib32-zstd-1.5.7-2-x86_64 @@ -1071,7 +1074,7 @@ installed = libcue-2.3.0-2-x86_64 installed = libcups-2:2.4.19-1-x86_64 installed = libcupsfilters-2.1.1-4-x86_64 installed = libdaemon-0.14-6-x86_64 -installed = libdatachannel-0.24.5-1-x86_64 +installed = libdatachannel-0.24.5-2-x86_64 installed = libdatrie-0.2.14-1-x86_64 installed = libdazzle-3.44.0-2-x86_64 installed = libdbusmenu-glib-18.10.20180917-1-x86_64 @@ -1097,7 +1100,7 @@ installed = libebml-1.4.5-3-x86_64 installed = libebur128-1.2.6-2-x86_64 installed = libedit-20260512_3.1-1-x86_64 installed = libei-1.6.0-1-x86_64 -installed = libelf-0.195-1-x86_64 +installed = libelf-0.195-2-x86_64 installed = libepoxy-1.5.10-3-x86_64 installed = libev-4.33-5-x86_64 installed = libevdev-1.13.6-1-x86_64 @@ -1106,7 +1109,7 @@ installed = libexif-0.6.26-1-x86_64 installed = libfabric-2.6.0-1-x86_64 installed = libfakekey-0.3-4-x86_64 installed = libfdk-aac-2.0.3-2-x86_64 -installed = libffi-3.7.1-1-x86_64 +installed = libffi-3.8.0-1-x86_64 installed = libfido2-1.17.0-1-x86_64 installed = libfm-1.4.1-1-x86_64 installed = libfm-extra-1.4.1-1-x86_64 @@ -1117,7 +1120,7 @@ installed = libfreeaptx-0.2.2-1-x86_64 installed = libftdi-1.5-10-x86_64 installed = libfyaml-0.9.6-3-x86_64 installed = libgadu-1.12.2-14-x86_64 -installed = libgbinder-1.1.51-1-x86_64 +installed = libgbinder-1.1.52-1-x86_64 installed = libgcc-16.1.1+r595+g171d15ac6959-1-x86_64 installed = libgcrypt-1.12.2-1-x86_64 installed = libgdata-0.18.1-5-x86_64 @@ -1151,7 +1154,7 @@ installed = libgweather-4-4.6.0-1-x86_64 installed = libgxps-0.3.2-5-x86_64 installed = libhandy-1.8.3-2-x86_64 installed = libharu-2.4.6-1-x86_64 -installed = libheif-1.23.1-1-x86_64 +installed = libheif-1.23.1-4-x86_64 installed = libhwasan-16.1.1+r595+g171d15ac6959-1-x86_64 installed = libibus-1.5.34-1-x86_64 installed = libical-4.0.4-1-x86_64 @@ -1177,7 +1180,7 @@ installed = libisofs-1.5.8.2-1-x86_64 installed = libjcat-0.2.6-1-x86_64 installed = libjpeg-turbo-3.2.0-2-x86_64 installed = libjpeg6-turbo-1.5.3-3-x86_64 -installed = libjuice-1.7.2-1-x86_64 +installed = libjuice-1.7.3-1-x86_64 installed = libjxl-0.12.0-1-x86_64 installed = libkate-0.4.3-4-x86_64 installed = libkdcraw-26.04.3-1-x86_64 @@ -1212,7 +1215,7 @@ installed = libmediaart-1.9.7-2-x86_64 installed = libmediainfo-26.05-1-x86_64 installed = libmfx-23.2.2-6-x86_64 installed = libmicrodns-0.2.0-2-x86_64 -installed = libmicrohttpd-1.0.9-1-x86_64 +installed = libmicrohttpd-1.0.10-1-x86_64 installed = libmikmod-3.3.13-1-x86_64 installed = libmm-glib-1.24.2-1-x86_64 installed = libmms-0.6.4-6-x86_64 @@ -1252,7 +1255,7 @@ installed = libnsl-2.0.1-2-x86_64 installed = libnss_nis-3.4-1-x86_64 installed = libntfs-3g-2026.7.7-1-x86_64 installed = libnvidia-container-1.19.1-1-x86_64 -installed = libnvme-1.16.2-1-x86_64 +installed = libnvme-1.16.2-2-x86_64 installed = liboauth-1:1.0.3+r16+gc26f038-2-x86_64 installed = libobjc-16.1.1+r595+g171d15ac6959-1-x86_64 installed = libodfgen-0.1.8-5-x86_64 @@ -1262,8 +1265,8 @@ installed = liboggz-1.1.3-1-x86_64 installed = libomxil-bellagio-0.9.3-5-x86_64 installed = libopenmpt-0.8.7-1-x86_64 installed = libosinfo-1.12.0-3-x86_64 -installed = libp11-0.4.19-2-x86_64 -installed = libp11-kit-0.26.4-1-x86_64 +installed = libp11-0.4.20-1-x86_64 +installed = libp11-kit-0.26.5-1-x86_64 installed = libpackagekit-glib-1.3.6-1-x86_64 installed = libpamac-aur-11.7.4-2-x86_64 installed = libpaper-2.2.8-1-x86_64 @@ -1374,7 +1377,7 @@ installed = libvirt-1:12.6.0-1-x86_64 installed = libvirt-glib-5.0.0-3-x86_64 installed = libvirt-python-1:12.6.0-1-x86_64 installed = libvisio-0.1.11-1-x86_64 -installed = libvlc-3.0.23_2-9-x86_64 +installed = libvlc-3.0.23_2-10-x86_64 installed = libvncserver-0.9.15-1-x86_64 installed = libvoikko-4.3.3-3-x86_64 installed = libvorbis-1.3.7-4-x86_64 @@ -1404,13 +1407,13 @@ installed = libxcvt-0.1.3-1-x86_64 installed = libxdamage-1.1.7-1-x86_64 installed = libxdg-basedir-1.2.3-3-x86_64 installed = libxdmcp-1.1.5-2-x86_64 -installed = libxdp-1.6.3-1-x86_64 +installed = libxdp-1.6.3-2-x86_64 installed = libxext-1.3.7-1-x86_64 installed = libxfce4ui-4.20.2-1-x86_64 installed = libxfce4util-4.20.1-1-x86_64 installed = libxfce4windowing-4.20.6-1-x86_64 installed = libxfixes-6.0.2-1-x86_64 -installed = libxfont2-2.0.8-1-x86_64 +installed = libxfont2-2.0.9-1-x86_64 installed = libxft-2.3.9-1-x86_64 installed = libxi-1.8.3-1-x86_64 installed = libxinerama-1.1.6-1-x86_64 @@ -1424,7 +1427,7 @@ installed = libxml2-legacy-2.13.9-2-x86_64 installed = libxmlb-0.3.29-1-x86_64 installed = libxmp-4.7.2-1-x86_64 installed = libxmu-1.3.1-1-x86_64 -installed = libxnvctrl-610.43.03-1-x86_64 +installed = libxnvctrl-610.57.04-1-x86_64 installed = libxpm-3.5.19-1-x86_64 installed = libxpresent-1.0.2-1-x86_64 installed = libxrandr-1.5.5-1-x86_64 @@ -1451,7 +1454,7 @@ installed = lightdm-settings-2.1.1-1-any installed = lightdm-slick-greeter-2.2.7-1-x86_64 installed = lilv-0.28.0-1-x86_64 installed = linphone-desktop-appimage-6.1.2-1-x86_64 -installed = linux-7.1.5.arch1-2-x86_64 +installed = linux-7.1.7.arch1-1-x86_64 installed = linux-api-headers-7.1-1-x86_64 installed = linux-firmware-20260622-1-any installed = linux-firmware-amdgpu-20260622-1-any @@ -1465,9 +1468,9 @@ installed = linux-firmware-other-20260622-1-any installed = linux-firmware-radeon-20260622-1-any installed = linux-firmware-realtek-20260622-1-any installed = linux-firmware-whence-20260622-1-any -installed = linux-headers-7.1.5.arch1-2-x86_64 -installed = linux-zen-7.1.5.zen1-2-x86_64 -installed = linux-zen-headers-7.1.5.zen1-2-x86_64 +installed = linux-headers-7.1.7.arch1-1-x86_64 +installed = linux-zen-7.1.7.zen1-1-x86_64 +installed = linux-zen-headers-7.1.7.zen1-1-x86_64 installed = lirc-1:0.10.2-6-x86_64 installed = litehtml-0.10-1-x86_64 installed = litehtml0.9-0.9-2-x86_64 @@ -1483,7 +1486,7 @@ installed = llvm21-21.1.8-1-x86_64 installed = llvm21-libs-21.1.8-1-x86_64 installed = lm_sensors-1:3.6.2-1-x86_64 installed = lmdb-0.9.35-1-x86_64 -installed = localsearch-3.11.1-1-x86_64 +installed = localsearch-3.11.1-2-x86_64 installed = log4cplus-2.2.0.1-1-x86_64 installed = lsb-release-2.0.r55.a25a4fc-1-any installed = lshw-B.02.20-3-x86_64 @@ -1499,8 +1502,8 @@ installed = luanti-common-5.16.1-1-x86_64 installed = luit-20250912-1-x86_64 installed = lutris-0.5.22-2-any installed = lv2-1.18.10-2-x86_64 -installed = lvm2-2.03.41-1-x86_64 -installed = lxc-1:7.0.0-1-x86_64 +installed = lvm2-2.03.42-1-x86_64 +installed = lxc-1:7.0.0-2-x86_64 installed = lximage-qt-2.4.0-1-x86_64 installed = lxmenu-data-0.1.7-1-any installed = lxqt-about-2.4.0-1-x86_64 @@ -1540,7 +1543,7 @@ installed = masterpdfeditor-debug-5.9.94-1-x86_64 installed = masterpdfeditor-free-4.3.89-1-x86_64 installed = mate-desktop-1.28.2-2-x86_64 installed = mate-system-monitor-1.28.1-3-x86_64 -installed = materialx-1.39.4-5-x86_64 +installed = materialx-1.39.5-1-x86_64 installed = mathjax2-2.7.9-2-any installed = maturin-1.14.1-1-x86_64 installed = mbedtls-3.6.5-1-x86_64 @@ -1553,7 +1556,7 @@ installed = menu-cache-1.1.1-2-x86_64 installed = mercurial-7.2.3-1-x86_64 installed = mesa-1:26.1.6-1-x86_64 installed = mesa-utils-9.0.0-7-x86_64 -installed = meson-1.11.2-1-any +installed = meson-1.12.0-1-any installed = messagelib-26.04.3-1-x86_64 installed = micromamba-bin-2.8.1.0-1-x86_64 installed = micropolis-git-r113.f46cb0f-1-x86_64 @@ -1570,7 +1573,7 @@ installed = minizip-ng-4.2.2-1-x86_64 installed = mjpegtools-2.2.1-4-x86_64 installed = mkinitcpio-41-4-any installed = mkinitcpio-busybox-1.36.1-1-x86_64 -installed = mlt-7.40.0-2-x86_64 +installed = mlt-7.40.0-3-x86_64 installed = mobile-broadband-provider-info-20251101-1-any installed = mod_dnssd-0.6-10-x86_64 installed = modemmanager-1.24.2-1-x86_64 @@ -1582,9 +1585,9 @@ installed = mp3splt-2.6.3.1519+r2+g4b48268-3-x86_64 installed = mp3wrap-0.5-7-x86_64 installed = mpdecimal-4.0.1-3-x86_64 installed = mpfr-4.2.2-1-x86_64 -installed = mpg123-1.33.5-1-x86_64 -installed = mplayer-38542-8-x86_64 -installed = mpv-1:0.41.0-3-x86_64 +installed = mpg123-1.33.7-1-x86_64 +installed = mplayer-38542-9-x86_64 +installed = mpv-1:0.41.0-4-x86_64 installed = ms-sys-1:2.8.0-1-x86_64 installed = mtdev-1.1.7-1-x86_64 installed = mtools-1:4.0.49-1-x86_64 @@ -1597,7 +1600,7 @@ installed = mutter-50.4-1-x86_64 installed = mypaint-brushes-2.0.2-2-any installed = mypaint-brushes1-1.3.1-2-any installed = namcap-3.6.0-3-any -installed = nanobind-2.13.0-1-any +installed = nanobind-2.14.0-1-any installed = nasm-3.02-1-x86_64 installed = nautilus-50.2.2-1-x86_64 installed = nautilus-python-4.1.0-3-x86_64 @@ -1620,7 +1623,7 @@ installed = networktablet-1.5-3-x86_64 installed = nextcloud-34.0.2-1-any installed = nextcloud-app-spreed-1:24.0.3-1-any installed = nextcloud-app-talk_matterbridge-1.33.1026000-1-any -installed = nextcloud-client-2:34.0.0-1-x86_64 +installed = nextcloud-client-2:34.0.1-2-x86_64 installed = nfs-utils-2.9.2-1-x86_64 installed = nfsidmap-2.9.2-1-x86_64 installed = nftables-1:1.1.6-3-x86_64 @@ -1629,7 +1632,7 @@ installed = ninja-1.13.2-3-x86_64 installed = nlohmann-json-3.12.0-2-any installed = nm-connection-editor-1.36.0-2-x86_64 installed = node-gyp-13.0.1-1-any -installed = nodejs-26.5.1-1-x86_64 +installed = nodejs-26.7.0-1-x86_64 installed = nodejs-nopt-10.0.1-1-any installed = noise-suppression-for-voice-1.21-1-x86_64 installed = nordic-theme-2.2.0-1-any @@ -1640,7 +1643,7 @@ installed = notparadoxlauncher-debug-1.3.1-4-x86_64 installed = npm-12.0.2-1-any installed = npth-1.8-1-x86_64 installed = nrg2iso-0.4.1-3-x86_64 -installed = nspr-4.39-1-x86_64 +installed = nspr-4.40-1-x86_64 installed = nss-3.126-1-x86_64 installed = nss-mdns-0.15.1-2-x86_64 installed = ntfs-3g-2026.7.7-1-x86_64 @@ -1648,9 +1651,9 @@ installed = ntp-4.2.8.p18-6-x86_64 installed = ntsync-autoload-1-1-any installed = numactl-2.0.19-1-x86_64 installed = nvidia-container-toolkit-1.19.1-1-x86_64 -installed = nvidia-open-dkms-610.43.03-5-x86_64 -installed = nvidia-settings-610.43.03-1-x86_64 -installed = nvidia-utils-610.43.03-5-x86_64 +installed = nvidia-open-dkms-610.57.04-1-x86_64 +installed = nvidia-settings-610.57.04-1-x86_64 +installed = nvidia-utils-610.57.04-1-x86_64 installed = nvm-0.40.5-1-any installed = obconf-qt-0.16.6-1-x86_64 installed = obs-studio-git-32.1.2.r109.g84b8d16-1-x86_64 @@ -1663,18 +1666,18 @@ installed = ocs-url-3.1.0-7-x86_64 installed = onednn-3.11.3-1-x86_64 installed = onetbb-2023.1.0-1-x86_64 installed = oniguruma-6.9.10-1-x86_64 -installed = openal-1.25.2-1-x86_64 +installed = openal-1.25.2-2-x86_64 installed = openblas-0.3.34-1-x86_64 installed = openbox-3.6.1-14-x86_64 installed = opencamlib-2023.01.11-4-x86_64 installed = opencascade-1:7.9.3-3-x86_64 installed = opencl-headers-2:2026.05.29-1-any -installed = opencl-nvidia-610.43.03-5-x86_64 +installed = opencl-nvidia-610.57.04-1-x86_64 installed = opencolorio-2.5.1-1-x86_64 installed = opencore-amr-0.1.6-2-x86_64 installed = opencsg-1.8.2-2-x86_64 -installed = opencv-5.0.0-7-x86_64 -installed = openexr-3.4.13-3-x86_64 +installed = opencv-5.0.0-9-x86_64 +installed = openexr-3.4.14-1-x86_64 installed = openh264-2.6.0-2-x86_64 installed = openimagedenoise-2.4.1-2-x86_64 installed = openimageio-3.1.12.1-5-x86_64 @@ -1690,15 +1693,15 @@ installed = opensc-0.27.1-2-x86_64 installed = openscad-2021.01-22-x86_64 installed = openshadinglanguage-1.15.3.0-1-x86_64 installed = opensp-1.5.2-11-x86_64 -installed = openssh-10.4p1-3-x86_64 +installed = openssh-10.4p1-4-x86_64 installed = openssl-3.6.3-1-x86_64 installed = openssl-1.1-1.1.1.w-11-x86_64 installed = opensubdiv-3.7.0-1-x86_64 installed = opentimelineio-0.18.1-3-x86_64 -installed = opentrack-git-1:2026.1.0+r7093.20260709.5ce3de85-1-x86_64 +installed = opentrack-git-1:2026.1.0+r7111.20260724.f009bb52-1-x86_64 installed = openucx-1.20.1-2-x86_64 installed = openvdb-13.0.0-2-x86_64 -installed = openvpn-2.7.5-1-x86_64 +installed = openvpn-2.7.6-1-x86_64 installed = openvr-2.15.6-1-x86_64 installed = openxr-1.1.60-1-x86_64 installed = optipng-7.9.1-1-x86_64 @@ -1708,9 +1711,9 @@ installed = orc-0.4.42-1-x86_64 installed = orca-50.2-1-any installed = os-prober-1.84-1-x86_64 installed = osinfo-db-20251212-1-any -installed = ostree-2026.2-1-x86_64 +installed = ostree-2026.3-1-x86_64 installed = otf-atkinsonhyperlegiblemono-nerd-3.5.0-1-any -installed = p11-kit-0.26.4-1-x86_64 +installed = p11-kit-0.26.5-1-x86_64 installed = packagekit-1.3.6-1-x86_64 installed = packagekit-qt5-1.1.3-1-x86_64 installed = pacman-7.1.0.r9.g54d9411-2-x86_64 @@ -1720,7 +1723,7 @@ installed = pam-1.7.2-2-x86_64 installed = pamac-all-git-debug-1:1.7.1.r1.g61b7570-1-x86_64 installed = pamac-aur-11.7.5-1-x86_64 installed = pambase-20260616-1-any -installed = pango-1:1.58.1-1-x86_64 +installed = pango-1:1.58.2-1-x86_64 installed = pangomm-2.46.5-1-x86_64 installed = pangomm-2.48-2.56.2-1-x86_64 installed = papirus-icon-theme-20260801-1-any @@ -1735,7 +1738,7 @@ installed = pcaudiolib-1.3-1-x86_64 installed = pciutils-3.15.0-1-x86_64 installed = pcmanfm-1.4.0-2-x86_64 installed = pcmanfm-qt-2.4.0-1-x86_64 -installed = pcre-8.45-4-x86_64 +installed = pcre-8.45-5-x86_64 installed = pcre2-10.47-1-x86_64 installed = pcsclite-2.5.1-1-x86_64 installed = perl-5.42.2-1-x86_64 @@ -1752,7 +1755,7 @@ installed = perl-crypt-openssl-random-0.17-3-x86_64 installed = perl-crypt-openssl-rsa-0.41-1-x86_64 installed = perl-crypt-random-seed-0.03-13-any installed = perl-crypt-ssleay-0.73_06-7-x86_64 -installed = perl-cryptx-0.090-1-x86_64 +installed = perl-cryptx-0.091-1-x86_64 installed = perl-data-optlist-0.114-7-any installed = perl-dbi-1.651-1-x86_64 installed = perl-digest-hmac-1.05-3-any @@ -1840,7 +1843,7 @@ installed = pipewire-session-manager-1:1.6.8-1-x86_64 installed = pixman-0.46.4-1-x86_64 installed = pkcs11-helper-1.31.0-1-x86_64 installed = pkgconf-3.0.5-1-x86_64 -installed = pkgfile-25-2-x86_64 +installed = pkgfile-26-1-x86_64 installed = plasma-activities-6.7.4-1-x86_64 installed = plasma-activities-stats-6.7.4-1-x86_64 installed = plasma-desktop-6.7.4-1-x86_64 @@ -1886,14 +1889,14 @@ installed = psmisc-23.7-2-x86_64 installed = pstoedit-4.3-1-x86_64 installed = ptex-2.5.2-1-x86_64 installed = pugixml-1.16-1-x86_64 -installed = pulseaudio-alsa-1:1.2.12-5-x86_64 +installed = pulseaudio-alsa-1:1.2.12-6-x86_64 installed = pulseaudio-qt-1.8.1-1-x86_64 installed = purpose-6.28.0-1-x86_64 installed = pv-1.11.0-1-x86_64 installed = pwvucontrol-0.5.3-2-x86_64 installed = pwvucontrol-debug-0.5.1-1-x86_64 installed = pyalpm-0.11.1-1-x86_64 -installed = pybind11-3.0.4-1-any +installed = pybind11-3.1.0-1-any installed = pyside6-6.11.1-4-x86_64 installed = pystring-1.2.0-1-x86_64 installed = python-3.14.6-1-x86_64 @@ -1906,7 +1909,7 @@ installed = python-annotated-types-0.8.0-1-any installed = python-anyascii-0.3.3-1-any installed = python-anyio-4.14.2-1-any installed = python-appdirs-1.4.4-12-any -installed = python-argcomplete-3.7.1-1-any +installed = python-argcomplete-3.7.2-1-any installed = python-asgiref-3.12.1-1-any installed = python-async-timeout-5.0.1-2-any installed = python-atspi-2.58.2-1-any @@ -1927,7 +1930,7 @@ installed = python-brltty-6.9.1-3-x86_64 installed = python-brotli-1.2.0-1-x86_64 installed = python-build-1.4.3-1-any installed = python-cachecontrol-1:0.14.4-3-any -installed = python-cairo-1.29.0-2-x86_64 +installed = python-cairo-1.29.1-1-x86_64 installed = python-cairocffi-1.7.1-2-any installed = python-caja-1.28.0-4-x86_64 installed = python-certifi-2026.07.22-1-any @@ -1944,7 +1947,7 @@ installed = python-coverage-7.13.5-1-x86_64 installed = python-cryptography-49.0.0-1-x86_64 installed = python-cssselect-1.5.0-1-any installed = python-curl-adapter-1.2.1-2-any -installed = python-curl_cffi-0.15.0-3-x86_64 +installed = python-curl_cffi-0.16.0-2-x86_64 installed = python-cycler-0.12.1-4-any installed = python-dasbus-1.7-5-any installed = python-datasets-5.0.1-1-any @@ -1972,13 +1975,13 @@ installed = python-fastbencode-0.3.10-1-x86_64 installed = python-fastjsonschema-2.21.2-2-any installed = python-filelock-3.29.3-1-any installed = python-flask-3.1.3-1-any -installed = python-flit-core-4.0.0-1-any +installed = python-flit-core-4.0.2-1-any installed = python-fonttools-4.63.0-1-x86_64 installed = python-freezegun-1.5.5-2-any installed = python-frozenlist-1.8.0-2-x86_64 installed = python-fsspec-2026.7.0-1-any installed = python-gbinder-1.3.1-1-x86_64 -installed = python-gevent-26.7.0-1-x86_64 +installed = python-gevent-26.8.0-1-x86_64 installed = python-gmpy2-2.3.1-1-x86_64 installed = python-gobject-3.56.3-1-x86_64 installed = python-greenlet-3.5.1-1-x86_64 @@ -1987,13 +1990,13 @@ installed = python-grpcio-tools-1.83.0-1-x86_64 installed = python-h11-0.16.0-2-any installed = python-h5py-3.16.0-1-x86_64 installed = python-hatchling-1.30.1-1-any -installed = python-hf-xet-1.5.2-1-x86_64 +installed = python-hf-xet-1.6.0-1-x86_64 installed = python-html2text-2025.4.15-2-any installed = python-html5lib-1.1-18-any installed = python-httpcore-1.0.9-3-any installed = python-httpx-0.28.1-7-any -installed = python-huggingface-hub-1:1.26.0-1-any -installed = python-hypothesis-6.165.0-1-x86_64 +installed = python-huggingface-hub-1:1.27.0-1-any +installed = python-hypothesis-6.165.2-1-x86_64 installed = python-idna-3.18-1-any installed = python-imagesize-2.0.0-1-any installed = python-importlib-metadata-9.0.0-1-any @@ -2013,10 +2016,11 @@ installed = python-jmespath-1.1.0-1-any installed = python-joblib-1.5.3-1-any installed = python-kiwisolver-1.5.0-1-x86_64 installed = python-ko-speech-tools-0.1.0-1-any -installed = python-ladybug-core-0.44.53-1-any -installed = python-ladybug-geometry-1.35.1-1-any +installed = python-ladybug-core-0.44.54-1-any +installed = python-ladybug-geometry-1.35.2-1-any installed = python-lark-parser-1.3.1-2-any installed = python-lazy-loader-0.5-1-any +installed = python-legacy-cgi-2.6.4-2-any installed = python-lhafile-0.3.1-2-x86_64 installed = python-librosa-0.11.0-2-any installed = python-license-expression-30.4.4-2-any @@ -2048,11 +2052,11 @@ installed = python-networkx-3.6.1-1-any installed = python-nose-1.3.7-19-any installed = python-num2words-0.5.14-3-any installed = python-numba-0.66.0-1-x86_64 -installed = python-numpy-2.5.1-1-x86_64 -installed = python-opencv-5.0.0-7-x86_64 +installed = python-numpy-2.5.2-1-x86_64 +installed = python-opencv-5.0.0-9-x86_64 installed = python-opengl-3.1.10-3-any installed = python-outcome-1.3.0.post0-7-any -installed = python-packaging-26.2-1-any +installed = python-packaging-26.3-1-any installed = python-pam-2.0.2-6-any installed = python-pandas-2.3.3-2-x86_64 installed = python-parso-1:0.8.6-1-any @@ -2065,7 +2069,7 @@ installed = python-pillow-12.3.0-1-x86_64 installed = python-pip-26.2.1-1-any installed = python-pipx-1.15.0-1-any installed = python-pkg_resources-81.0.0-1-any -installed = python-platformdirs-4.11.0-1-any +installed = python-platformdirs-4.11.2-1-any installed = python-pluggy-1.6.0-3-any installed = python-poetry-core-2.4.1-1-any installed = python-pooch-1.9.0-1-any @@ -2130,7 +2134,7 @@ installed = python-semantic-version-2.10.0-9-any installed = python-sentry_sdk-2.66.1-1-any installed = python-serpent-1.43-1-any installed = python-setproctitle-1.3.7-2-x86_64 -installed = python-setuptools-1:83.0.0-1-any +installed = python-setuptools-1:84.0.0-1-any installed = python-setuptools-rust-1.13.0-1-any installed = python-setuptools-scm-10.2.1-1-any installed = python-shellingham-1.5.4-4-any @@ -2140,7 +2144,7 @@ installed = python-sniffio-1.3.1-5-any installed = python-snowballstemmer-3.1.1-1-any installed = python-sortedcontainers-2.4.0-8-any installed = python-soundfile-0.14.0-1-any -installed = python-soupsieve-2.9.1-1-any +installed = python-soupsieve-2.9.2-1-any installed = python-soxr-1.1.0-2-x86_64 installed = python-sphinx-9.1.0-1-any installed = python-sphinx-alabaster-theme-1.0.0-6-any @@ -2165,10 +2169,10 @@ installed = python-tensorboardx-2.6.5-1-any installed = python-termcolor-3.3.0-1-any installed = python-threadpoolctl-3.6.0-1-any installed = python-tinycss2-1.5.1-2-any -installed = python-tldextract-5.3.1-2-any +installed = python-tldextract-5.3.2-1-any installed = python-tokenizers-0.23.1-1-x86_64 installed = python-torchaudio-2.11.0-1-x86_64 -installed = python-torchcodec-0.15.0-1-x86_64 +installed = python-torchcodec-0.15.0-3-x86_64 installed = python-tqdm-4.70.0-1-any installed = python-transformers-5.12.1-1-any installed = python-trio-0.33.0-1-any @@ -2176,18 +2180,19 @@ installed = python-trio-websocket-0.12.2-4-any installed = python-trove-classifiers-2026.6.1.19-1-any installed = python-typeguard-4.6.0-1-any installed = python-typer-0.27.1-1-any -installed = python-typing-inspection-0.4.2-2-any +installed = python-typing-inspection-0.4.3-1-any installed = python-typing_extensions-4.16.0-1-any installed = python-typogrify-2.1.0-2-any installed = python-tzlocal-1:5.4.4-1-any installed = python-uc-micro-py-2.0.0-1-any installed = python-ujson-5.13.0-1-x86_64 installed = python-urllib3-2.7.0-1-any +installed = python-urwid-4.0.8-2-any installed = python-userpath-1.9.2-4-any -installed = python-uv-build-0.12.1-1-x86_64 -installed = python-vcs-versioning-2.2.3-1-any +installed = python-uv-build-0.12.3-1-x86_64 +installed = python-vcs-versioning-2.2.4-1-any installed = python-vdf-4.0-5-any -installed = python-virtualenv-21.7.1-1-any +installed = python-virtualenv-21.7.4-1-any installed = python-wcwidth-0.8.2-1-any installed = python-webencodings-0.5.1-13-any installed = python-websocket-client-1.9.0-3-any @@ -2205,7 +2210,7 @@ installed = python-yarl-1.23.0-1-x86_64 installed = python-zipp-3.21.0-4-any installed = python-zope-event-6.2-1-any installed = python-zope-interface-8.5-1-x86_64 -installed = python-zstandard-0.25.0-2-x86_64 +installed = python-zstandard-0.25.0-3-x86_64 installed = python310-3.10.19-1-x86_64 installed = python311-3.11.14-1-x86_64 installed = qca-qt5-2.3.10-7-x86_64 @@ -2295,7 +2300,7 @@ installed = qemu-vmsr-helper-11.0.3-1-x86_64 installed = qgpgme-2.2.0-1-x86_64 installed = qhexedit2-0.8.9-2-x86_64 installed = qhull-2020.2-5-x86_64 -installed = qmmp-2.3.3-1-x86_64 +installed = qmmp-2.3.3-2-x86_64 installed = qogir-gtk-theme-2025.08.17-1-any installed = qpdf-12.3.2-2-x86_64 installed = qpwgraph-1.0.3-1-x86_64 @@ -2334,8 +2339,8 @@ installed = qt6-doc-6.11.1-1-any installed = qt6-graphs-6.11.1-1-x86_64 installed = qt6-imageformats-6.11.1-1-x86_64 installed = qt6-location-6.11.1-1-x86_64 -installed = qt6-multimedia-6.11.1-1-x86_64 -installed = qt6-multimedia-ffmpeg-6.11.1-1-x86_64 +installed = qt6-multimedia-6.11.1-2-x86_64 +installed = qt6-multimedia-ffmpeg-6.11.1-2-x86_64 installed = qt6-networkauth-6.11.1-1-x86_64 installed = qt6-positioning-6.11.1-1-x86_64 installed = qt6-quick3d-6.11.1-1-x86_64 @@ -2351,7 +2356,7 @@ installed = qt6-translations-6.11.1-1-any installed = qt6-virtualkeyboard-6.11.1-1-x86_64 installed = qt6-wayland-6.11.1-1-x86_64 installed = qt6-webchannel-6.11.1-1-x86_64 -installed = qt6-webengine-6.11.1-4-x86_64 +installed = qt6-webengine-6.11.1-5-x86_64 installed = qt6-websockets-6.11.1-1-x86_64 installed = qt6pas-6.2.10-4-x86_64 installed = qtcreator-20.0.1-1-x86_64 @@ -2378,7 +2383,7 @@ installed = reflector-2023-5-any installed = remarkable-cups-1-1-any installed = rhash-1.4.6-1-x86_64 installed = ripgrep-15.2.0-1-x86_64 -installed = ripgrep-all-0.10.10-1-x86_64 +installed = ripgrep-all-0.10.10-2-x86_64 installed = rmapi-0.0.34-2-x86_64 installed = rnnoise-1:0.2-1-x86_64 installed = robin-map-1.4.1-1-x86_64 @@ -2437,8 +2442,9 @@ installed = rubygems-3.6.9-1-any installed = runc-1.5.1-1-x86_64 installed = rust-bindgen-0.72.1-3-x86_64 installed = rustup-1.29.0-2-x86_64 -installed = rutabaga-ffi-0.1.80-1-x86_64 +installed = rutabaga-ffi-0.1.85-1-x86_64 installed = rygel-1:45.2-1-x86_64 +installed = s-tui-1.4.0-1-any installed = s2n-tls-1.7.2-1-x86_64 installed = safecopy-1.7-1-x86_64 installed = samba-2:4.24.5-1-x86_64 @@ -2468,7 +2474,7 @@ installed = sdl_sound-1.0.3-13-x86_64 installed = seabios-1.17.0-2-any installed = seahorse-1:47.0.1-6-x86_64 installed = seatd-0.9.3-1-x86_64 -installed = sed-4.10-1-x86_64 +installed = sed-4.10-2-x86_64 installed = semver-7.8.5-1-any installed = serd-0.32.10-1-x86_64 installed = serf-1.3.10-2-x86_64 @@ -2529,16 +2535,18 @@ installed = steam-1.0.0.87-1-x86_64 installed = steam-devices-1.0.0.87-1-x86_64 installed = steamcmd-latest-7-x86_64 installed = strace-7.0-1-x86_64 +installed = stress-1.0.7-3-x86_64 +installed = stress-ng-0.21.04-2-x86_64 installed = strip-nondeterminism-1.15.1-1-any installed = subversion-1.14.5-5-x86_64 installed = sudo-1.9.17.p2-6-x86_64 installed = suil-0.10.26-1-x86_64 -installed = suitesparse-7.12.3-1-x86_64 +installed = suitesparse-7.13.0-1-x86_64 installed = supertuxkart-1.5-1-x86_64 installed = sushi-50.0-1-x86_64 installed = svt-av1-4.2.0-1-x86_64 installed = svt-hevc-1.5.1-4-x86_64 -installed = swig-4.4.1-2-x86_64 +installed = swig-4.5.0-1-x86_64 installed = sword-1.9.0-18-x86_64 installed = swtpm-0.10.1-2-x86_64 installed = syndication-6.28.0-1-x86_64 @@ -2552,7 +2560,7 @@ installed = systemdgenie-0.99.0-8-x86_64 installed = systemsettings-6.7.4-1-x86_64 installed = taglib-2.3.1-1-x86_64 installed = talloc-2.5.0-1-x86_64 -installed = tar-1.35-2-x86_64 +installed = tar-1.35-3-x86_64 installed = tcl-8.6.16-1-x86_64 installed = tdb-1.4.15-1-x86_64 installed = tde-abakus-14.1.6-1-x86_64 @@ -2776,7 +2784,7 @@ installed = thrift-0.22.0-6-x86_64 installed = thunar-4.20.9-1-x86_64 installed = thunar-volman-4.20.0-2-x86_64 installed = tig-2.6.1-1-x86_64 -installed = tigervnc-1.16.2-4-x86_64 +installed = tigervnc-1.16.2-5-x86_64 installed = tilix-1.9.6-9-x86_64 installed = tilix-debug-1.9.6-9-x86_64 installed = timezonemap-0.4.5.4-1-x86_64 @@ -2808,9 +2816,9 @@ installed = ttf-ubuntu-font-family-1:0.83-2-any installed = tumbler-4.20.2-1-x86_64 installed = twolame-0.4.0-4-x86_64 installed = tzdata-2026c-1-x86_64 -installed = uartscope-1.0.0.r3.gd3229c7-1-x86_64 +installed = uartscope-1.0.0.r4.g72a2b7e-1-x86_64 installed = uchardet-0.0.8-4-x86_64 -installed = udisks2-2.11.1-2-x86_64 +installed = udisks2-2.11.2-1-x86_64 installed = unifdef-2.12-4-x86_64 installed = unigine-superposition-1.1-7-x86_64 installed = unigine-valley-1.0-1-x86_64 @@ -2822,13 +2830,13 @@ installed = upower-1.91.3-1-x86_64 installed = usbmuxd-1.1.1-4-x86_64 installed = usbredir-0.15.0-1-x86_64 installed = usbutils-019-1-x86_64 -installed = usd-26.05-3-x86_64 +installed = usd-26.05-4-x86_64 installed = uthash-2.3.0-3-any installed = util-linux-2.42.2-1-x86_64 installed = util-linux-libs-2.42.2-1-x86_64 -installed = uv-0.12.1-1-x86_64 +installed = uv-0.12.3-1-x86_64 installed = v4l-utils-1.32.0-2-x86_64 -installed = v4l2loopback-dkms-0.15.4-1-any +installed = v4l2loopback-dkms-0.15.4-2-any installed = vala-0.56.19-1-x86_64 installed = valgrind-3.25.1-7-x86_64 installed = vamp-plugin-sdk-1:2.10-1-x86_64 @@ -2850,52 +2858,52 @@ installed = virtualbox-guest-iso-7.2.14-1-any installed = virtualbox-host-dkms-7.2.14-1-x86_64 installed = virtualgl-3.1.4-1-x86_64 installed = visual-studio-code-bin-1.131.0-1-x86_64 -installed = vivaldi-8.1.4087.61-1-x86_64 +installed = vivaldi-8.1.4087.62-1-x86_64 installed = vivaldi-ffmpeg-codecs-150.0.7871.120-1-x86_64 -installed = vlc-3.0.23_2-9-x86_64 -installed = vlc-cli-3.0.23_2-9-x86_64 -installed = vlc-gui-qt-3.0.23_2-9-x86_64 -installed = vlc-plugin-a52dec-3.0.23_2-9-x86_64 -installed = vlc-plugin-alsa-3.0.23_2-9-x86_64 -installed = vlc-plugin-archive-3.0.23_2-9-x86_64 -installed = vlc-plugin-dav1d-3.0.23_2-9-x86_64 -installed = vlc-plugin-dbus-3.0.23_2-9-x86_64 -installed = vlc-plugin-dbus-screensaver-3.0.23_2-9-x86_64 -installed = vlc-plugin-faad2-3.0.23_2-9-x86_64 -installed = vlc-plugin-flac-3.0.23_2-9-x86_64 -installed = vlc-plugin-gnutls-3.0.23_2-9-x86_64 -installed = vlc-plugin-inflate-3.0.23_2-9-x86_64 -installed = vlc-plugin-journal-3.0.23_2-9-x86_64 -installed = vlc-plugin-jpeg-3.0.23_2-9-x86_64 -installed = vlc-plugin-lua-3.0.23_2-9-x86_64 -installed = vlc-plugin-matroska-3.0.23_2-9-x86_64 -installed = vlc-plugin-mpg123-3.0.23_2-9-x86_64 -installed = vlc-plugin-ogg-3.0.23_2-9-x86_64 -installed = vlc-plugin-opus-3.0.23_2-9-x86_64 -installed = vlc-plugin-png-3.0.23_2-9-x86_64 -installed = vlc-plugin-pulse-3.0.23_2-9-x86_64 -installed = vlc-plugin-shout-3.0.23_2-9-x86_64 -installed = vlc-plugin-speex-3.0.23_2-9-x86_64 -installed = vlc-plugin-tag-3.0.23_2-9-x86_64 -installed = vlc-plugin-theora-3.0.23_2-9-x86_64 -installed = vlc-plugin-twolame-3.0.23_2-9-x86_64 -installed = vlc-plugin-vorbis-3.0.23_2-9-x86_64 -installed = vlc-plugin-vpx-3.0.23_2-9-x86_64 -installed = vlc-plugin-xml-3.0.23_2-9-x86_64 -installed = vlc-plugins-base-3.0.23_2-9-x86_64 -installed = vlc-plugins-video-output-3.0.23_2-9-x86_64 +installed = vlc-3.0.23_2-10-x86_64 +installed = vlc-cli-3.0.23_2-10-x86_64 +installed = vlc-gui-qt-3.0.23_2-10-x86_64 +installed = vlc-plugin-a52dec-3.0.23_2-10-x86_64 +installed = vlc-plugin-alsa-3.0.23_2-10-x86_64 +installed = vlc-plugin-archive-3.0.23_2-10-x86_64 +installed = vlc-plugin-dav1d-3.0.23_2-10-x86_64 +installed = vlc-plugin-dbus-3.0.23_2-10-x86_64 +installed = vlc-plugin-dbus-screensaver-3.0.23_2-10-x86_64 +installed = vlc-plugin-faad2-3.0.23_2-10-x86_64 +installed = vlc-plugin-flac-3.0.23_2-10-x86_64 +installed = vlc-plugin-gnutls-3.0.23_2-10-x86_64 +installed = vlc-plugin-inflate-3.0.23_2-10-x86_64 +installed = vlc-plugin-journal-3.0.23_2-10-x86_64 +installed = vlc-plugin-jpeg-3.0.23_2-10-x86_64 +installed = vlc-plugin-lua-3.0.23_2-10-x86_64 +installed = vlc-plugin-matroska-3.0.23_2-10-x86_64 +installed = vlc-plugin-mpg123-3.0.23_2-10-x86_64 +installed = vlc-plugin-ogg-3.0.23_2-10-x86_64 +installed = vlc-plugin-opus-3.0.23_2-10-x86_64 +installed = vlc-plugin-png-3.0.23_2-10-x86_64 +installed = vlc-plugin-pulse-3.0.23_2-10-x86_64 +installed = vlc-plugin-shout-3.0.23_2-10-x86_64 +installed = vlc-plugin-speex-3.0.23_2-10-x86_64 +installed = vlc-plugin-tag-3.0.23_2-10-x86_64 +installed = vlc-plugin-theora-3.0.23_2-10-x86_64 +installed = vlc-plugin-twolame-3.0.23_2-10-x86_64 +installed = vlc-plugin-vorbis-3.0.23_2-10-x86_64 +installed = vlc-plugin-vpx-3.0.23_2-10-x86_64 +installed = vlc-plugin-xml-3.0.23_2-10-x86_64 +installed = vlc-plugins-base-3.0.23_2-10-x86_64 +installed = vlc-plugins-video-output-3.0.23_2-10-x86_64 installed = vmaf-3.2.0-1-x86_64 installed = volume_key-0.3.12-12-x86_64 installed = vscodium-bin-1.126.04524-1-x86_64 installed = vte-common-0.84.1-1-x86_64 installed = vte3-0.84.1-1-x86_64 -installed = vtk-9.6.2-4-x86_64 +installed = vtk-9.6.2-5-x86_64 installed = vulkan-headers-1:1.4.357.0-1-any installed = vulkan-icd-loader-1.4.357.0-1-x86_64 installed = vulkan-tools-1.4.357.0-1-x86_64 installed = w3m-0.5.6-1-x86_64 installed = wavpack-5.9.0-1-x86_64 -installed = wayland-1.25.0-1-x86_64 +installed = wayland-1.26.0-1-x86_64 installed = wayland-protocols-1.49-1-any installed = webapp-manager-git-1.4.4.r0.gd8ef0df-1-any installed = webkit2gtk-4.1-2.52.5-2-x86_64 @@ -2908,7 +2916,7 @@ installed = wget-1.25.0-6-x86_64 installed = which-2.25-1-x86_64 installed = widelands-1:1.3.1-3-x86_64 installed = wildmidi-0.5.0-1-x86_64 -installed = wine-11.14-2-x86_64 +installed = wine-11.15-1-x86_64 installed = wine-gecko-2.47.4-2-x86_64 installed = wine-mono-11.2.0-1-x86_64 installed = winetricks-20260125-2-any @@ -2928,7 +2936,7 @@ installed = wsdd-0.9-2-any installed = wxwidgets-common-3.2.11-2-x86_64 installed = wxwidgets-gtk3-3.2.11-2-x86_64 installed = x264-3:0.165.r3222.b35605a-2-x86_64 -installed = x265-4.2-2-x86_64 +installed = x265-4.3-1-x86_64 installed = xapian-core-1:2.0.0-2-x86_64 installed = xapp-3.2.2-1-x86_64 installed = xapp-symbolic-icons-1.1.0-1-any @@ -2970,8 +2978,9 @@ installed = xfdesktop-4.20.2-1-x86_64 installed = xfsprogs-7.1.1-1-x86_64 installed = xfwm4-4.20.0-2-x86_64 installed = xfwm4-themes-4.10.0-6-any -installed = xine-lib-1.2.13-18-x86_64 +installed = xine-lib-1.2.13-19-x86_64 installed = xkeyboard-config-2.48-1-any +installed = xmrig-6.26.0-1-x86_64 installed = xorg-appres-1.0.7-1-x86_64 installed = xorg-fonts-alias-misc-1.0.6-1-any installed = xorg-fonts-encodings-1.1.0-2-any @@ -3008,9 +3017,9 @@ installed = yakuake-26.04.3-1-x86_64 installed = yaml-cpp-0.9.0-1-x86_64 installed = yarn-1.22.22-2-any installed = yasm-1.3.0-9-x86_64 -installed = yay-git-13.0.1.r9.ga4154cf1-1-x86_64 +installed = yay-git-13.0.1.r35.g2d52ad47-1-x86_64 installed = yaz-5.37.3-1-x86_64 -installed = yelp-49.1-1-x86_64 +installed = yelp-49.2-1-x86_64 installed = yelp-tools-42.1-2-any installed = yelp-xsl-49.0-1-any installed = youtube-dl-2021.12.17-5-any diff --git a/uartscope-git/pkg/uartscope/.MTREE b/uartscope-git/pkg/uartscope/.MTREE index c484c8d..4c46c3a 100644 Binary files a/uartscope-git/pkg/uartscope/.MTREE and b/uartscope-git/pkg/uartscope/.MTREE differ diff --git a/uartscope-git/pkg/uartscope/.PKGINFO b/uartscope-git/pkg/uartscope/.PKGINFO index ed8d06f..417c629 100644 --- a/uartscope-git/pkg/uartscope/.PKGINFO +++ b/uartscope-git/pkg/uartscope/.PKGINFO @@ -3,12 +3,12 @@ pkgname = uartscope pkgbase = uartscope xdata = pkgtype=pkg -pkgver = 1.0.0.r4.g72a2b7e-1 +pkgver = 1.0.0.r5.g1422efd-1 pkgdesc = Qt6-based UART serial monitor with tag monitoring, table view and auto-reconnect url = https://git.projekt-hirnfrei.de/diabolus/uartscope -builddate = 1785955532 +builddate = 1786450603 packager = Unknown Packager -size = 389745 +size = 397937 arch = x86_64 license = MIT conflict = uartscope diff --git a/uartscope-git/pkg/uartscope/usr/bin/uartscope b/uartscope-git/pkg/uartscope/usr/bin/uartscope index 40663e3..13c160d 100755 Binary files a/uartscope-git/pkg/uartscope/usr/bin/uartscope and b/uartscope-git/pkg/uartscope/usr/bin/uartscope differ diff --git a/uartscope-git/src/uartscope b/uartscope-git/src/uartscope index 72a2b7e..1422efd 160000 --- a/uartscope-git/src/uartscope +++ b/uartscope-git/src/uartscope @@ -1 +1 @@ -Subproject commit 72a2b7edd0d87becbbbfcae8b1c2ecda630f43e2 +Subproject commit 1422efdc2f14d71edf3c7accec15966f5aa81c07 diff --git a/uartscope-git/uartscope/FETCH_HEAD b/uartscope-git/uartscope/FETCH_HEAD index 9d77d6c..d7f4b72 100644 --- a/uartscope-git/uartscope/FETCH_HEAD +++ b/uartscope-git/uartscope/FETCH_HEAD @@ -1,2 +1,2 @@ -72a2b7edd0d87becbbbfcae8b1c2ecda630f43e2 not-for-merge branch 'main' of https://git.projekt-hirnfrei.de/diabolus/uartscope +1422efdc2f14d71edf3c7accec15966f5aa81c07 not-for-merge branch 'main' of https://git.projekt-hirnfrei.de/diabolus/uartscope cc102c93eb17f7b910d8e74c3505f198bed77f10 not-for-merge tag 'v1.0.0' of https://git.projekt-hirnfrei.de/diabolus/uartscope