From de2f0d795a3a81c1ff8cd2902e34bb96318b129b Mon Sep 17 00:00:00 2001 From: Ryan Brue Date: Wed, 24 Apr 2024 14:19:24 -0500 Subject: [PATCH] fix: use new dbus interface name --- .rpm/container-desktop-entries.spec | 2 +- README.md | 2 +- src/desktop_entry.rs | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.rpm/container-desktop-entries.spec b/.rpm/container-desktop-entries.spec index 065e132..dcc5873 100644 --- a/.rpm/container-desktop-entries.spec +++ b/.rpm/container-desktop-entries.spec @@ -20,7 +20,7 @@ SourceLicense: Apache-2.0 License: # FIXME # LICENSE.dependencies contains a full license breakdown -URL: https://github.com/ryanabx/container-desktop-entries +URL: https://github.com/desktop-integration/container-desktop-entries Source: container-desktop-entries-%{ver}.tar.xz Source: container-desktop-entries-%{ver}-vendor.tar.xz diff --git a/README.md b/README.md index 99e18a3..73f5de9 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ This project adds linux desktop entries for applications installed inside containers! Support for toolbox is implemented, but podman and docker will need some testing (feel free to submit PRs!) -> **NOTE:** Requires: https://github.com/ryanabx/desktop-entry-daemon +> **NOTE:** Requires: https://github.com/desktop-integration/desktop-entry-daemon ## Build/Install/Uninstall (Server, on host system) diff --git a/src/desktop_entry.rs b/src/desktop_entry.rs index 65d900c..cbf3575 100644 --- a/src/desktop_entry.rs +++ b/src/desktop_entry.rs @@ -1,7 +1,7 @@ -//! # D-Bus interface proxy for: `net.ryanabx.DesktopEntry` +//! # D-Bus interface proxy for: `org.desktopintegration.DesktopEntry` //! //! This code was generated by `zbus-xmlgen` `4.1.0` from D-Bus introspection data. -//! Source: `net.ryanabx.DesktopEntry.xml`. +//! Source: `org.desktopintegration.DesktopEntry.xml`. //! //! You may prefer to adapt it, instead of using it verbatim. //! @@ -21,8 +21,8 @@ //! [D-Bus standard interfaces]: https://dbus.freedesktop.org/doc/dbus-specification.html#standard-interfaces, use zbus::proxy; #[proxy( - interface = "net.ryanabx.DesktopEntry", - default_path = "/net/ryanabx/DesktopEntry", + interface = "org.desktopintegration.DesktopEntry", + default_path = "/org/desktopintegration/DesktopEntry", assume_defaults = true )] trait DesktopEntry {