Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: use new dbus interface name #1

Merged
merged 1 commit into from
Apr 24, 2024
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 .rpm/container-desktop-entries.spec
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
8 changes: 4 additions & 4 deletions src/desktop_entry.rs
Original file line number Diff line number Diff line change
@@ -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.
//!
Expand All @@ -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 {
Expand Down
Loading