public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/firefox] f45: Merge branch 'main' into f45
@ 2026-09-17 12:00 Martin Stransky
0 siblings, 0 replies; 10+ messages in thread
From: Martin Stransky @ 2026-09-17 12:00 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/firefox
Branch : f45
Commit : 2606aefddce12cd42721009083f4cfac2d93fe45
Author : Martin Stransky <stransky@redhat.com>
Date : 2026-09-17T14:00:44+02:00
Stats : +106/-1 in 2 file(s)
URL : https://src.fedoraproject.org/rpms/firefox/c/2606aefddce12cd42721009083f4cfac2d93fe45?branch=f45
Log:
Merge branch 'main' into f45
---
diff --git a/D326840.1789732703.diff b/D326840.1789732703.diff
new file mode 100644
index 0000000..499c25d
--- /dev/null
+++ b/D326840.1789732703.diff
@@ -0,0 +1,100 @@
+diff --git a/widget/gtk/nsWindow.h b/widget/gtk/nsWindow.h
+--- a/widget/gtk/nsWindow.h
++++ b/widget/gtk/nsWindow.h
+@@ -199,12 +199,10 @@
+ bool IsEnabled() const override;
+
+ nsSizeMode GetSizeMode() const { return mSizeMode; }
+ nsSizeMode SizeMode() override { return mSizeMode; }
+ void SetSizeMode(nsSizeMode aMode) override;
+- void GetWorkspaceID(nsAString& workspaceID) override;
+- void MoveToWorkspace(const nsAString& workspaceID) override;
+ void Enable(bool aState) override;
+ void SetFocus(Raise, mozilla::dom::CallerType aCallerType) override;
+ LayoutDeviceIntRect GetBounds() override;
+ LayoutDeviceIntRect GetScreenBounds() override;
+ DesktopIntRect GetScreenBoundsUnscaled();
+diff --git a/widget/gtk/nsWindow.cpp b/widget/gtk/nsWindow.cpp
+--- a/widget/gtk/nsWindow.cpp
++++ b/widget/gtk/nsWindow.cpp
+@@ -1202,18 +1202,10 @@
+
+ const auto& desktop = GetDesktopEnvironmentIdentifier();
+ return desktop.EqualsLiteral("bspwm") || desktop.EqualsLiteral("i3");
+ }
+
+-void nsWindow::GetWorkspaceID(nsAString& workspaceID) {
+- workspaceID.Truncate();
+-}
+-
+-void nsWindow::MoveToWorkspace(const nsAString& workspaceIDStr) {
+- LOG(" MoveToWorkspace disabled, quit");
+-}
+-
+ void nsWindow::SetUserTimeAndStartupTokenForActivatedWindow() {
+ nsGTKToolkit* toolkit = nsGTKToolkit::GetToolkit();
+ if (!toolkit) {
+ return;
+ }
+diff --git a/widget/gtk/nsWindowWayland.h b/widget/gtk/nsWindowWayland.h
+--- a/widget/gtk/nsWindowWayland.h
++++ b/widget/gtk/nsWindowWayland.h
+@@ -14,12 +14,12 @@
+ nsWindowWayland();
+
+ nsWindowWayland* AsWayland() override { return this; }
+ nsWindow* GetEffectiveParent() const;
+
+- void GetWorkspaceID(nsAString& workspaceID) override;
+- void MoveToWorkspace(const nsAString& workspaceIDStr) override;
++ void GetWorkspaceID(nsAString& aWorkspaceID) override;
++ void MoveToWorkspace(const nsAString& aWorkspaceIDStr) override;
+ void RestoreXdgToplevel();
+
+ // Use xdg-activation protocol to transfer focus from gFocusWindow.
+ void TransferFocusTo();
+ void FocusWaylandWindow(const char* aTokenID);
+diff --git a/widget/gtk/nsWindowWayland.cpp b/widget/gtk/nsWindowWayland.cpp
+--- a/widget/gtk/nsWindowWayland.cpp
++++ b/widget/gtk/nsWindowWayland.cpp
+@@ -116,15 +116,19 @@
+ LOG("nsWindowWayland::CreateRestoreSession() ID %s restore %d token %p",
+ mWorkspaceID.get(), aRestoreWindow, mSessionRestoreToken);
+ return !!mSessionRestoreToken;
+ }
+
+-void nsWindowWayland::GetWorkspaceID(nsAString& workspaceID) {
++void nsWindowWayland::GetWorkspaceID(nsAString& aWorkspaceID) {
++ if (!nsAppShell::IsSessionRestoreSupported()) {
++ aWorkspaceID.Truncate();
++ return;
++ }
+ if (mWorkspaceID.IsEmpty()) {
+ mWorkspaceID = GenerateWorkspaceID();
+ }
+- workspaceID = NS_ConvertUTF8toUTF16(mWorkspaceID);
++ aWorkspaceID = NS_ConvertUTF8toUTF16(mWorkspaceID);
+
+ LOG("nsWindowWayland::GetWorkspaceID() ID %s token %p", mWorkspaceID.get(),
+ mSessionRestoreToken);
+
+ if (mSessionRestoreToken) {
+@@ -156,12 +160,15 @@
+ }
+ #endif
+ }
+ }
+
+-void nsWindowWayland::MoveToWorkspace(const nsAString& workspaceIDStr) {
+- mWorkspaceID = NS_ConvertUTF16toUTF8(workspaceIDStr);
++void nsWindowWayland::MoveToWorkspace(const nsAString& aWorkspaceIDStr) {
++ if (!nsAppShell::IsSessionRestoreSupported()) {
++ return;
++ }
++ mWorkspaceID = NS_ConvertUTF16toUTF8(aWorkspaceIDStr);
+ LOG("nsWindowWayland::MoveToWorkspace() session ID %s "
+ "mWaitingToSessionRestore %d mNeedsShow %d",
+ mWorkspaceID.get(), mWaitingToSessionRestore, mNeedsShow);
+ if (!mWaitingToSessionRestore) {
+ return;
+
diff --git a/firefox.spec b/firefox.spec
index 5c5bd76..87b00a2 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -190,7 +190,7 @@ ExcludeArch: i686
Summary: Mozilla Firefox Web browser
Name: firefox
Version: 156.0
-Release: 1%{?pre_tag}%{?dist}
+Release: 2%{?pre_tag}%{?dist}
URL: https://www.mozilla.org/firefox/
# Automatically converted from old format: MPLv1.1 or GPLv2+ or LGPLv2+ - review is highly recommended.
License: LicenseRef-Callaway-MPLv1.1 OR GPL-2.0-or-later OR LicenseRef-Callaway-LGPLv2+
@@ -263,6 +263,7 @@ Patch402: D324870.1789116963.diff
Patch403: D324871.1789116972.diff
Patch404: D324876.1789116899.diff
Patch405: D324877.1789117000.diff
+Patch406: D326840.1789732703.diff
# PGO/LTO patches
Patch600: pgo.patch
@@ -551,6 +552,7 @@ cat %{SOURCE49} | sed -e "s|LIBCLANG_RT_PLACEHOLDER|`pwd`/wasi-sdk-30/build/sysr
%patch -P403 -p1 -b .D324871
%patch -P404 -p1 -b .D324876
%patch -P405 -p1 -b .D324877
+%patch -P406 -p1 -b .D326840
# PGO patches
%if %{build_with_pgo}
@@ -1206,6 +1208,9 @@ fi
#---------------------------------------------------------------------
%changelog
+* Thu Sep 17 2026 Martin Stransky <stransky@redhat.com> - 156.0-2
+- Disabled session restore on Gnome.
+
* Thu Sep 10 2026 Martin Stransky <stransky@redhat.com> - 156.0-1
- Updated to 156.0
- Enabled session restore on KDE
^ permalink raw reply related [flat|nested] 10+ messages in thread* [rpms/firefox] f45: Merge branch 'main' into f45
@ 2026-09-15 3:00 Martin Stransky
0 siblings, 0 replies; 10+ messages in thread
From: Martin Stransky @ 2026-09-15 3:00 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/firefox
Branch : f45
Commit : c82c69d248c11f1c9bed82d854ea305d22db06b4
Author : Martin Stransky <stransky@redhat.com>
Date : 2026-09-15T04:59:39+02:00
Stats : +1/-1 in 1 file(s)
URL : https://src.fedoraproject.org/rpms/firefox/c/c82c69d248c11f1c9bed82d854ea305d22db06b4?branch=f45
Log:
Merge branch 'main' into f45
---
diff --git a/firefox.spec b/firefox.spec
index 8252391..5c5bd76 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -145,7 +145,7 @@ ExcludeArch: i686
%if %{?system_nss}
%global nspr_version 4.38.2
%global nspr_build_version %{nspr_version}
-%global nss_version 3.127
+%global nss_version 3.128
%global nss_build_version %{nss_version}
%endif
^ permalink raw reply related [flat|nested] 10+ messages in thread* [rpms/firefox] f45: Merge branch 'main' into f45
@ 2026-09-07 8:03 Martin Stransky
0 siblings, 0 replies; 10+ messages in thread
From: Martin Stransky @ 2026-09-07 8:03 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/firefox
Branch : f45
Commit : 510cc514ff3aa0908b1b62e8b9d68a8d31056c9d
Author : Martin Stransky <stransky@redhat.com>
Date : 2026-09-07T10:02:42+02:00
Stats : +9/-4 in 3 file(s)
URL : https://src.fedoraproject.org/rpms/firefox/c/510cc514ff3aa0908b1b62e8b9d68a8d31056c9d?branch=f45
Log:
Merge branch 'main' into f45
---
diff --git a/.gitignore b/.gitignore
index ddd1987..bcad10d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -795,3 +795,5 @@ firefox-3.6.4.source.tar.bz2
/firefox-154.0.source.tar.xz
/firefox-155.0.source.tar.xz
/firefox-langpacks-155.0-20260827.tar.xz
+/firefox-langpacks-155.0.1-20260907.tar.xz
+/firefox-155.0.1.source.tar.xz
diff --git a/firefox.spec b/firefox.spec
index 0371964..fb3a806 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -189,14 +189,14 @@ ExcludeArch: i686
Summary: Mozilla Firefox Web browser
Name: firefox
-Version: 155.0
+Version: 155.0.1
Release: 1%{?pre_tag}%{?dist}
URL: https://www.mozilla.org/firefox/
# Automatically converted from old format: MPLv1.1 or GPLv2+ or LGPLv2+ - review is highly recommended.
License: LicenseRef-Callaway-MPLv1.1 OR GPL-2.0-or-later OR LicenseRef-Callaway-LGPLv2+
Source0: https://archive.mozilla.org/pub/firefox/releases/%{version}%{?pre_version}/source/firefox-%{version}%{?pre_version}.source.tar.xz
%if %{with langpacks}
-Source1: firefox-langpacks-%{version}%{?pre_version}-20260827.tar.xz
+Source1: firefox-langpacks-%{version}%{?pre_version}-20260907.tar.xz
%endif
Source2: cbindgen-vendor.tar.xz
Source3: dump_syms-vendor.tar.xz
@@ -1211,6 +1211,9 @@ fi
#---------------------------------------------------------------------
%changelog
+* Mon Sep 7 2026 Martin Stransky <stransky@redhat.com> - 155.0.1-1
+- Updated to 155.0.1
+
* Thu Aug 27 2026 Martin Stransky <stransky@redhat.com> - 155.0-1
- Updated to 155.0
diff --git a/sources b/sources
index addef79..3b245df 100644
--- a/sources
+++ b/sources
@@ -4,5 +4,5 @@ SHA512 (wasi-sdk-30.tar.gz) = c08b2ddb5d5cf5b48c5baba80c65c485a3049b473d2f2dd2ba
SHA512 (wasm-component-ld-vendor.tar.xz) = 356dc09502052198e99745199b8e10d803da9492ce34e41c6ae02cb8674fcc640cd5eafe68a03e4e61c984f7f6c7c8e5cdc3551251556fb3ae4631a340358fc0
SHA512 (wasm-tools-vendor.tar.xz) = 502be0020d1828b75128e6127eb7bd77835ccebe4e5c179abc38d881bb1d1f8e15d2284796cd83574536c7c919a3e820e0952d323e8a3977e94bdef89cd8266a
SHA512 (cbindgen-vendor.tar.xz) = dfefc3ec4c7b7d9fe1b024289866c5a919475b8b733e09ef1750d8d295ba78969ba187089dbc151d91779bf56a2d7898797c3d19db6e2d1cb84929750e86617d
-SHA512 (firefox-155.0.source.tar.xz) = 24292681924edb9f0494eb77a7b19994039abbc3a8c0ba304f0e472b49a943838565723de983bc8ef08e019971e02a3014c8d241bb88c645a06a625c8ace0d6a
-SHA512 (firefox-langpacks-155.0-20260827.tar.xz) = 24c6b220397369a0771743dda4a4755118531a7547de19c4f16875e2e9ce48b2928ad533d3c25b53e32b1b73f7fb23ce10deb917b5bc91374b96d2da5a47a0d0
+SHA512 (firefox-langpacks-155.0.1-20260907.tar.xz) = edc2384f30efe6f29cb5ca8a9ec878beb9fc500f04c29fd5a9e0f8aee23633a502b5fe5ec1b8277808a1b397d60ce126f759ede7aea07ea6a48c9fecec1c4e5f
+SHA512 (firefox-155.0.1.source.tar.xz) = 6d137a7a315cb1d0aac1a3fe314af80fe290c49b7c2e47f8687b25d4720927b2a0dc71a3da9d75f6cab479067db114caa6732d17e888b0abfce99238a8af0f39
^ permalink raw reply related [flat|nested] 10+ messages in thread* [rpms/firefox] f45: Merge branch 'main' into f45
@ 2026-09-01 9:03 Martin Stransky
0 siblings, 0 replies; 10+ messages in thread
From: Martin Stransky @ 2026-09-01 9:03 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/firefox
Branch : f45
Commit : 3ce20ad804da91fe25e137770fa789dc0bc8cad9
Author : Martin Stransky <stransky@redhat.com>
Date : 2026-09-01T11:02:34+02:00
Stats : +1/-1 in 1 file(s)
URL : https://src.fedoraproject.org/rpms/firefox/c/3ce20ad804da91fe25e137770fa789dc0bc8cad9?branch=f45
Log:
Merge branch 'main' into f45
---
diff --git a/firefox.spec b/firefox.spec
index 2ab03e7..0371964 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -77,7 +77,7 @@ ExcludeArch: i686
%global system_webp 1
%global system_drm 1
%global system_gbm 1
-%if 0%{?fedora} < 44
+%if 0%{?fedora} > 43
%global system_pipewire 1
%else
%global system_pipewire 0
^ permalink raw reply related [flat|nested] 10+ messages in thread* [rpms/firefox] f45: Merge branch 'main' into f45
@ 2026-09-01 6:11 Martin Stransky
0 siblings, 0 replies; 10+ messages in thread
From: Martin Stransky @ 2026-09-01 6:11 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/firefox
Branch : f45
Commit : 9a090efbb1f5427e7f84129bb02b96b98ea35f47
Author : Martin Stransky <stransky@redhat.com>
Date : 2026-09-01T08:10:50+02:00
Stats : +4/-0 in 1 file(s)
URL : https://src.fedoraproject.org/rpms/firefox/c/9a090efbb1f5427e7f84129bb02b96b98ea35f47?branch=f45
Log:
Merge branch 'main' into f45
---
diff --git a/firefox.spec b/firefox.spec
index 1c23e4f..2ab03e7 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -77,7 +77,11 @@ ExcludeArch: i686
%global system_webp 1
%global system_drm 1
%global system_gbm 1
+%if 0%{?fedora} < 44
%global system_pipewire 1
+%else
+%global system_pipewire 0
+%endif
%global build_tests 1
# Bundled cbindgen makes build slow.
# Enable only if system cbindgen is not available.
^ permalink raw reply related [flat|nested] 10+ messages in thread* [rpms/firefox] f45: Merge branch 'main' into f45
@ 2026-08-31 17:45 Martin Stransky
0 siblings, 0 replies; 10+ messages in thread
From: Martin Stransky @ 2026-08-31 17:45 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/firefox
Branch : f45
Commit : 16402858ae62cd04ab4b140bc006c4198b44daab
Author : Martin Stransky <stransky@redhat.com>
Date : 2026-08-31T19:45:36+02:00
Stats : +0/-3 in 1 file(s)
URL : https://src.fedoraproject.org/rpms/firefox/c/16402858ae62cd04ab4b140bc006c4198b44daab?branch=f45
Log:
Merge branch 'main' into f45
---
diff --git a/firefox.spec b/firefox.spec
index 56ea7af..1c23e4f 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -1196,9 +1196,6 @@ fi
%{mozappdir}/platform.ini
%{mozappdir}/gmp-clearkey
%{mozappdir}/fonts
-%ifarch aarch64 riscv64
-%{mozappdir}/v4l2test
-%endif
%{mozappdir}/gfxtest
%if !%{?system_nss}
%exclude %{mozappdir}/libnssckbi.so
^ permalink raw reply related [flat|nested] 10+ messages in thread* [rpms/firefox] f45: Merge branch 'main' into f45
@ 2026-08-31 8:32 Martin Stransky
0 siblings, 0 replies; 10+ messages in thread
From: Martin Stransky @ 2026-08-31 8:32 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/firefox
Branch : f45
Commit : 5a26cb2c3374db85f9a38245f87ef66436ff3c68
Author : Martin Stransky <stransky@redhat.com>
Date : 2026-08-31T10:32:13+02:00
Stats : +1/-3 in 1 file(s)
URL : https://src.fedoraproject.org/rpms/firefox/c/5a26cb2c3374db85f9a38245f87ef66436ff3c68?branch=f45
Log:
Merge branch 'main' into f45
---
diff --git a/firefox.spec b/firefox.spec
index 7a61730..56ea7af 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -1148,7 +1148,6 @@ fi
%endif
%{_bindir}/firefox
%{mozappdir}/firefox
-%{mozappdir}/glxtest
%doc %{_mandir}/man1/*
%dir %{_sysconfdir}/%{name}
%dir %{_sysconfdir}/%{name}/*
@@ -1200,8 +1199,7 @@ fi
%ifarch aarch64 riscv64
%{mozappdir}/v4l2test
%endif
-%{mozappdir}/vaapitest
-%{mozappdir}/vulkantest
+%{mozappdir}/gfxtest
%if !%{?system_nss}
%exclude %{mozappdir}/libnssckbi.so
%endif
^ permalink raw reply related [flat|nested] 10+ messages in thread* [rpms/firefox] f45: Merge branch 'main' into f45
@ 2026-08-27 16:00 Martin Stransky
0 siblings, 0 replies; 10+ messages in thread
From: Martin Stransky @ 2026-08-27 16:00 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/firefox
Branch : f45
Commit : 2ad0e84c2096928f5da96b0fdf1ecc657c35880a
Author : Martin Stransky <stransky@redhat.com>
Date : 2026-08-27T17:59:54+02:00
Stats : +1/-1 in 1 file(s)
URL : https://src.fedoraproject.org/rpms/firefox/c/2ad0e84c2096928f5da96b0fdf1ecc657c35880a?branch=f45
Log:
Merge branch 'main' into f45
---
diff --git a/firefox.spec b/firefox.spec
index d5f6786..7a61730 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -141,7 +141,7 @@ ExcludeArch: i686
%if %{?system_nss}
%global nspr_version 4.38.2
%global nspr_build_version %{nspr_version}
-%global nss_version 3.126
+%global nss_version 3.127
%global nss_build_version %{nss_version}
%endif
^ permalink raw reply related [flat|nested] 10+ messages in thread* [rpms/firefox] f45: Merge branch 'main' into f45
@ 2026-08-26 12:04 Martin Stransky
0 siblings, 0 replies; 10+ messages in thread
From: Martin Stransky @ 2026-08-26 12:04 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/firefox
Branch : f45
Commit : aeaecee0795724064f46e80af190109486321595
Author : Martin Stransky <stransky@redhat.com>
Date : 2026-08-26T13:45:33+02:00
Stats : +6/-1 in 2 file(s)
URL : https://src.fedoraproject.org/rpms/firefox/c/aeaecee0795724064f46e80af190109486321595?branch=f45
Log:
Merge branch 'main' into f45
---
diff --git a/firefox-redhat-default-prefs.js b/firefox-redhat-default-prefs.js
index 2e5ee84..9881cb2 100644
--- a/firefox-redhat-default-prefs.js
+++ b/firefox-redhat-default-prefs.js
@@ -31,3 +31,5 @@ pref("browser.policies.perUserDir", true);
pref("browser.gnome-search-provider.enabled",true);
/* Enable ffvpx playback for WebRTC */
pref("media.navigator.mediadatadecoder_vpx_enabled", true);
+/* In HDR mode use new compositor mode */
+pref("gfx.webrender.layer-compositor", true);
diff --git a/firefox.spec b/firefox.spec
index 10e6b28..6dfbb98 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -186,7 +186,7 @@ ExcludeArch: i686
Summary: Mozilla Firefox Web browser
Name: firefox
Version: 154.0
-Release: 5%{?pre_tag}%{?dist}
+Release: 6%{?pre_tag}%{?dist}
URL: https://www.mozilla.org/firefox/
# Automatically converted from old format: MPLv1.1 or GPLv2+ or LGPLv2+ - review is highly recommended.
License: LicenseRef-Callaway-MPLv1.1 OR GPL-2.0-or-later OR LicenseRef-Callaway-LGPLv2+
@@ -1214,6 +1214,9 @@ fi
#---------------------------------------------------------------------
%changelog
+* Wed Aug 26 2026 Martin Stransky <stransky@redhat.com> - 154.0-6
+- Use new (layer) compositor mode for HDR
+
* Mon Aug 24 2026 Martin Stransky <stransky@redhat.com> - 154.0-5
- Disabled session restore due to mzbz#2059617.
^ permalink raw reply related [flat|nested] 10+ messages in thread* [rpms/firefox] f45: Merge branch 'main' into f45
@ 2026-08-24 9:45 Martin Stransky
0 siblings, 0 replies; 10+ messages in thread
From: Martin Stransky @ 2026-08-24 9:45 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/firefox
Branch : f45
Commit : edf734de5960ad4d9a4975150114432112ac0c35
Author : Martin Stransky <stransky@redhat.com>
Date : 2026-08-24T11:44:31+02:00
Stats : +0/-0 in 0 file(s)
URL : https://src.fedoraproject.org/rpms/firefox/c/edf734de5960ad4d9a4975150114432112ac0c35?branch=f45
Log:
Merge branch 'main' into f45
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2026-09-17 12:00 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-17 12:00 [rpms/firefox] f45: Merge branch 'main' into f45 Martin Stransky
-- strict thread matches above, loose matches on Subject: below --
2026-09-15 3:00 Martin Stransky
2026-09-07 8:03 Martin Stransky
2026-09-01 9:03 Martin Stransky
2026-09-01 6:11 Martin Stransky
2026-08-31 17:45 Martin Stransky
2026-08-31 8:32 Martin Stransky
2026-08-27 16:00 Martin Stransky
2026-08-26 12:04 Martin Stransky
2026-08-24 9:45 Martin Stransky
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox