From 48f8d1fdd8baccfd8024e6c8a53db2167a9e900d Mon Sep 17 00:00:00 2001 From: borgmanJeremy <46930769+borgmanJeremy@users.noreply.github.com> Date: Wed, 6 Aug 2025 16:06:50 -0500 Subject: [PATCH 1/2] Packaging fixes for v13 (#4126) --- CMakeLists.txt | 2 +- data/appdata/org.flameshot.Flameshot.metainfo.xml | 3 +-- packaging/debian/changelog | 2 +- packaging/rpm/fedora/flameshot.spec | 3 +++ packaging/rpm/opensuse/flameshot.spec | 3 +++ 5 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 21958fc623..8fdf8641e8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.13) # cmake_policy(SET CMP0076 OLD) -set(FLAMESHOT_VERSION 13.0.0) +set(FLAMESHOT_VERSION 13.0.1) # Flameshot-org set(GIT_API_URL "https://api.github.com/repos/flameshot-org/flameshot/releases/latest") diff --git a/data/appdata/org.flameshot.Flameshot.metainfo.xml b/data/appdata/org.flameshot.Flameshot.metainfo.xml index cbb6252b49..aa448b83cf 100644 --- a/data/appdata/org.flameshot.Flameshot.metainfo.xml +++ b/data/appdata/org.flameshot.Flameshot.metainfo.xml @@ -93,9 +93,8 @@ SPDX-License-Identifier: CC0-1.0 + - - diff --git a/packaging/debian/changelog b/packaging/debian/changelog index 451b72a96e..13a36bbd8d 100644 --- a/packaging/debian/changelog +++ b/packaging/debian/changelog @@ -1,4 +1,4 @@ -flameshot (13.0.0-1) unstable; urgency=medium +flameshot (13.0.1-1) unstable; urgency=medium * Release for v13 diff --git a/packaging/rpm/fedora/flameshot.spec b/packaging/rpm/fedora/flameshot.spec index 15c21de78e..1e3c09cf67 100644 --- a/packaging/rpm/fedora/flameshot.spec +++ b/packaging/rpm/fedora/flameshot.spec @@ -97,6 +97,9 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/*.desktop %{_mandir}/man1/%{name}.1* %changelog +* Sun Aug 06 2025 Jeremy Borgman - 13.0.1 +- Update for v13.0.1 release + * Sun Aug 03 2025 Jeremy Borgman - 13.0.0 - Update for v13 release diff --git a/packaging/rpm/opensuse/flameshot.spec b/packaging/rpm/opensuse/flameshot.spec index 2e7418e352..bbc7c7df72 100644 --- a/packaging/rpm/opensuse/flameshot.spec +++ b/packaging/rpm/opensuse/flameshot.spec @@ -95,6 +95,9 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/*.desktop %{_mandir}/man1/%{name}.1* %changelog +* Sun Aug 06 2025 Jeremy Borgman - 13.0.1 +- Update for v13.0.1 release + * Sun Aug 03 2025 Jeremy Borgman - 13.0.0 - Update for v13 release From 23fade7bb943882d0a84cccc3d25a052ec25edd6 Mon Sep 17 00:00:00 2001 From: El Thoro Date: Thu, 7 Aug 2025 03:32:24 +0200 Subject: [PATCH 2/2] Fix 3135 again (#4122) --- src/utils/screenshotsaver.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/utils/screenshotsaver.cpp b/src/utils/screenshotsaver.cpp index 2c7669b127..b67dad9563 100644 --- a/src/utils/screenshotsaver.cpp +++ b/src/utils/screenshotsaver.cpp @@ -268,6 +268,9 @@ bool saveToFilesystemGUI(const QPixmap& capture) AbstractLogger().attachNotificationPath(savePath) << msg; if (config.copyPathAfterSave()) { +#ifdef Q_OS_WIN + savePath.replace('/', '\\'); +#endif FlameshotDaemon::copyToClipboard( savePath, QObject::tr("Path copied to clipboard as ") + savePath); }