Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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")
Expand Down
3 changes: 1 addition & 2 deletions data/appdata/org.flameshot.Flameshot.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,8 @@ SPDX-License-Identifier: CC0-1.0
</categories>

<releases>
<release version="13.0.1" date="2025-08-06"/>
<release version="13.0.0" date="2025-08-03"/>
<release version="13.0.rc2" date="2025-07-27"/>
<release version="13.0.rc1" date="2025-07-12"/>
<release version="12.1.0" date="2022-07-03"/>
<release version="12.0.0" date="2022-06-21"/>
<release version="11.0.0" date="2022-01-14"/>
Expand Down
2 changes: 1 addition & 1 deletion packaging/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
flameshot (13.0.0-1) unstable; urgency=medium
flameshot (13.0.1-1) unstable; urgency=medium

* Release for v13

Expand Down
3 changes: 3 additions & 0 deletions packaging/rpm/fedora/flameshot.spec
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,9 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/*.desktop
%{_mandir}/man1/%{name}.1*

%changelog
* Sun Aug 06 2025 Jeremy Borgman <[email protected]> - 13.0.1
- Update for v13.0.1 release

* Sun Aug 03 2025 Jeremy Borgman <[email protected]> - 13.0.0
- Update for v13 release

Expand Down
3 changes: 3 additions & 0 deletions packaging/rpm/opensuse/flameshot.spec
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,9 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/*.desktop
%{_mandir}/man1/%{name}.1*

%changelog
* Sun Aug 06 2025 Jeremy Borgman <[email protected]> - 13.0.1
- Update for v13.0.1 release

* Sun Aug 03 2025 Jeremy Borgman <[email protected]> - 13.0.0
- Update for v13 release

Expand Down
3 changes: 3 additions & 0 deletions src/utils/screenshotsaver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down
Loading