public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/cosmic-settings-daemon] f44: Update to 1.3.0
@ 2026-07-15  1:40 Ryan Brue
  0 siblings, 0 replies; only message in thread
From: Ryan Brue @ 2026-07-15  1:40 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/cosmic-settings-daemon
Branch : f44
Commit : 51c2ac4d10021662f829e53e1218450023927111
Author : Ryan Brue <ryanbrue.dev@gmail.com>
Date   : 2026-07-14T20:40:53-05:00
Stats  : +92/-53 in 6 file(s)
URL    : https://src.fedoraproject.org/rpms/cosmic-settings-daemon/c/51c2ac4d10021662f829e53e1218450023927111?branch=f44

Log:
Update to 1.3.0

---
diff --git a/.gitignore b/.gitignore
index bbac86d..4c90372 100644
--- a/.gitignore
+++ b/.gitignore
@@ -58,3 +58,5 @@
 /vendor-1.0.16.tar.gz
 /cosmic-settings-daemon-1.1.0.tar.gz
 /vendor-1.1.0.tar.gz
+/cosmic-settings-daemon-1.3.0.tar.gz
+/vendor-1.3.0.tar.gz

diff --git a/cosmic-settings-daemon.spec b/cosmic-settings-daemon.spec
index 69eead0..513b519 100644
--- a/cosmic-settings-daemon.spec
+++ b/cosmic-settings-daemon.spec
@@ -10,16 +10,16 @@ ExcludeArch: %{ix86}
 # While our version corresponds to an upstream tag, we still need to define
 # these macros in order to set the VERGEN_GIT_SHA and VERGEN_GIT_COMMIT_DATE
 # environment variables in multiple sections of the spec file.
-%global commit 75c0480f1315ec96ec3eb216fc939f93f57d7612
-%global commitdatestring 2026-06-18 18:06:35 +0200
-%global cosmic_minver 1.1.0
+%global commit b5e6d827d5d7f4886864564c450d8ca096fa5167
+%global commitdatestring 2026-07-14 11:50:02 -0400
+%global cosmic_minver 1.3.0
 
 Name:           cosmic-settings-daemon
-Version: 1.1.0
+Version: 1.3.0
 Release:        %autorelease
 Summary:        Settings daemon for the COSMIC Desktop Environment
 
-License:        (0BSD OR Apache-2.0 OR MIT) AND Apache-2.0 AND (Apache-2.0 OR Apache-2.0 WITH LLVM-exception OR MIT) AND (Apache-2.0 OR BSD-2-Clause OR MIT) AND (Apache-2.0 OR BSL-1.0) AND (Apache-2.0 OR CC0-1.0 OR MIT) AND (Apache-2.0 OR MIT) AND (Apache-2.0 OR MIT OR Zlib) AND BSD-2-Clause AND BSD-3-Clause AND BSL-1.0 AND CC0-1.0 AND GPL-3.0-or-later AND ISC AND MIT AND (MIT OR Unlicense) AND MPL-2.0 AND Zlib
+License: (0BSD OR Apache-2.0 OR MIT) AND (Apache-2.0 OR Apache-2.0 WITH LLVM-exception OR MIT) AND (Apache-2.0 OR BSD-2-Clause OR MIT) AND (Apache-2.0 OR BSD-3-Clause) AND (Apache-2.0 OR BSL-1.0) AND (Apache-2.0 OR CC0-1.0 OR MIT) AND (Apache-2.0 OR CC0-1.0 OR MIT-0) AND (Apache-2.0 OR GPL-2.0-only) AND (Apache-2.0 OR ISC OR MIT) AND (Apache-2.0 OR LGPL-2.1-or-later OR MIT) AND (Apache-2.0 OR MIT OR Zlib) AND (Apache-2.0 OR MIT) AND (CC0-1.0 OR MIT-0) AND (LGPL-3.0-or-later OR MIT) AND (MIT OR Unlicense) AND Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND BSL-1.0 AND CC0-1.0 AND GPL-3.0-only AND GPL-3.0-or-later AND ISC AND MIT AND MPL-2.0 AND Unicode-3.0 AND Zlib AND bzip2-1.0.6
 
 URL:            https://github.com/pop-os/cosmic-settings-daemon
 
@@ -32,6 +32,9 @@ Source1:        vendor-%{version_no_tilde}.tar.gz
 # * mv vendor-config-%%{version_no_tilde}.toml ..
 Source2:        vendor-config-%{version_no_tilde}.toml
 
+# pop-sound-theme is unmaintained, use freedesktop
+Patch0:         sound-theme-freedesktop.patch
+
 BuildRequires:  cargo-rpm-macros >= 26
 BuildRequires:  rustc
 BuildRequires:  lld
@@ -50,7 +53,7 @@ BuildRequires:  openssl-devel
 
 Requires:       acpid
 Requires:       adw-gtk3-theme
-Requires:       pop-sound-theme
+Requires:       sound-theme-freedesktop
 Recommends:     breeze-icon-theme
 Recommends:     geoclue2
 Recommends:     playerctl

diff --git a/sound-theme-freedesktop.patch b/sound-theme-freedesktop.patch
new file mode 100644
index 0000000..e543dd6
--- /dev/null
+++ b/sound-theme-freedesktop.patch
@@ -0,0 +1,30 @@
+diff -up a/src/battery.rs b/src/battery.rs
+--- a/src/battery.rs	2026-06-18 12:06:35.000000000 -0400
++++ b/src/battery.rs	2026-06-25 13:52:54.567576176 -0400
+@@ -125,7 +125,7 @@ pub async fn low_power_monitor(mut ac_pl
+                             }
+ 
+                             current_battery = BatteryLevel::Low;
+-                            crate::pipewire::play_sound("Pop", "battery-caution");
++                            crate::pipewire::play_sound("freedesktop", "dialog-warning");
+ 
+                             let now = Instant::now();
+                             if now.duration_since(last_low_notification) > Duration::from_secs(5) {
+@@ -148,7 +148,7 @@ pub async fn low_power_monitor(mut ac_pl
+                             }
+ 
+                             current_battery = BatteryLevel::Full;
+-                            crate::pipewire::play_sound("Pop", "battery-full");
++                            crate::pipewire::play_sound("freedesktop", "complete");
+                         }
+ 
+                         _ => {
+@@ -177,7 +177,7 @@ async fn critical_battery_nag(mut watch:
+                     _ => break,
+                 }
+ 
+-                crate::pipewire::play_sound("Pop", "battery-low");
++                crate::pipewire::play_sound("freedesktop", "dialog-error");
+             },
+             Some(false) => (),
+             None => break,

diff --git a/sources b/sources
index 0370060..563a821 100644
--- a/sources
+++ b/sources
@@ -1,2 +1,2 @@
-SHA512 (cosmic-settings-daemon-1.1.0.tar.gz) = cc59727fca4e8067812e078a28dc48b7ad167761254b600986e501de632c4123a6e65d142f8c4f6f4e90039ca0f1e053b65dbc5d6ef63458a218f2df6cb43002
-SHA512 (vendor-1.1.0.tar.gz) = 3090b4b771b5809ff50ae6e943fb66ef6ea0448baa4cad55e10b8fc3661c8e516e40368faa328981fc634feb8076c66e25b1cce60b7eb28ad2001d13be23d49c
+SHA512 (cosmic-settings-daemon-1.3.0.tar.gz) = 3ca806c3ddeb092ad069df49cd64c09bf083cf462b7c0627ddf6cdaa5a9bed1f6669e7b5a63b3976e08a3fce4b2dd561ecc1cb2f7a7a349c408f4cdc917d35ae
+SHA512 (vendor-1.3.0.tar.gz) = d7385967cf50c17ab52989245a222c54c99205d9ad734e34c6257b007b43cc22c77c1f24bff52bb254f05914634fb44a6bb5836f25354e1f3f055091b2a17f84

diff --git a/vendor-config-1.1.0.toml b/vendor-config-1.1.0.toml
deleted file mode 100644
index c84cbd8..0000000
--- a/vendor-config-1.1.0.toml
+++ /dev/null
@@ -1,45 +0,0 @@
-[source.crates-io]
-replace-with = "vendored-sources"
-
-[source."git+https://github.com/iced-rs/cryoglyph.git?rev=e429a025df36ab8145708acb309080ae3deec17a"]
-git = "https://github.com/iced-rs/cryoglyph.git"
-rev = "e429a025df36ab8145708acb309080ae3deec17a"
-replace-with = "vendored-sources"
-
-[source."git+https://github.com/jackpot51/rust-atomicwrites"]
-git = "https://github.com/jackpot51/rust-atomicwrites"
-replace-with = "vendored-sources"
-
-[source."git+https://github.com/pop-os/cosmic-comp"]
-git = "https://github.com/pop-os/cosmic-comp"
-replace-with = "vendored-sources"
-
-[source."git+https://github.com/pop-os/dbus-settings-bindings"]
-git = "https://github.com/pop-os/dbus-settings-bindings"
-replace-with = "vendored-sources"
-
-[source."git+https://github.com/pop-os/freedesktop-icons"]
-git = "https://github.com/pop-os/freedesktop-icons"
-replace-with = "vendored-sources"
-
-[source."git+https://github.com/pop-os/libcosmic"]
-git = "https://github.com/pop-os/libcosmic"
-replace-with = "vendored-sources"
-
-[source."git+https://github.com/pop-os/smithay-clipboard?tag=sctk-0.20"]
-git = "https://github.com/pop-os/smithay-clipboard"
-tag = "sctk-0.20"
-replace-with = "vendored-sources"
-
-[source."git+https://github.com/pop-os/softbuffer?tag=cosmic-4.0"]
-git = "https://github.com/pop-os/softbuffer"
-tag = "cosmic-4.0"
-replace-with = "vendored-sources"
-
-[source."git+https://github.com/pop-os/window_clipboard.git?tag=sctk-0.20"]
-git = "https://github.com/pop-os/window_clipboard.git"
-tag = "sctk-0.20"
-replace-with = "vendored-sources"
-
-[source.vendored-sources]
-directory = "vendor"
\ No newline at end of file

diff --git a/vendor-config-1.3.0.toml b/vendor-config-1.3.0.toml
new file mode 100644
index 0000000..2945b94
--- /dev/null
+++ b/vendor-config-1.3.0.toml
@@ -0,0 +1,49 @@
+[source.crates-io]
+replace-with = "vendored-sources"
+
+[source."git+https://github.com/iced-rs/cryoglyph.git?rev=e429a025df36ab8145708acb309080ae3deec17a"]
+git = "https://github.com/iced-rs/cryoglyph.git"
+rev = "e429a025df36ab8145708acb309080ae3deec17a"
+replace-with = "vendored-sources"
+
+[source."git+https://github.com/jackpot51/rust-atomicwrites"]
+git = "https://github.com/jackpot51/rust-atomicwrites"
+replace-with = "vendored-sources"
+
+[source."git+https://github.com/pop-os/cosmic-comp"]
+git = "https://github.com/pop-os/cosmic-comp"
+replace-with = "vendored-sources"
+
+[source."git+https://github.com/pop-os/cosmic-protocols"]
+git = "https://github.com/pop-os/cosmic-protocols"
+replace-with = "vendored-sources"
+
+[source."git+https://github.com/pop-os/dbus-settings-bindings"]
+git = "https://github.com/pop-os/dbus-settings-bindings"
+replace-with = "vendored-sources"
+
+[source."git+https://github.com/pop-os/freedesktop-icons"]
+git = "https://github.com/pop-os/freedesktop-icons"
+replace-with = "vendored-sources"
+
+[source."git+https://github.com/pop-os/libcosmic"]
+git = "https://github.com/pop-os/libcosmic"
+replace-with = "vendored-sources"
+
+[source."git+https://github.com/pop-os/smithay-clipboard?tag=sctk-0.20"]
+git = "https://github.com/pop-os/smithay-clipboard"
+tag = "sctk-0.20"
+replace-with = "vendored-sources"
+
+[source."git+https://github.com/pop-os/softbuffer?tag=cosmic-4.0"]
+git = "https://github.com/pop-os/softbuffer"
+tag = "cosmic-4.0"
+replace-with = "vendored-sources"
+
+[source."git+https://github.com/pop-os/window_clipboard.git?tag=sctk-0.20"]
+git = "https://github.com/pop-os/window_clipboard.git"
+tag = "sctk-0.20"
+replace-with = "vendored-sources"
+
+[source.vendored-sources]
+directory = "vendor"
\ No newline at end of file

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2026-07-15  1:40 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-07-15  1:40 [rpms/cosmic-settings-daemon] f44: Update to 1.3.0 Ryan Brue

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox