Skip to content

Commit

Permalink
Temporarily neutralize the host app registry
Browse files Browse the repository at this point in the history
Unfortunately, late in the process, concerns about the host app registry
were shared, and there won't be enough time to resolve it.

So temporarily neutralize the host app registry for the 1.20 release.
  • Loading branch information
GeorgesStavracas committed Feb 12, 2025
1 parent 0cd7bd5 commit 5a8c162
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ xdg_desktop_portal_sources = files(
'print.c',
'proxy-resolver.c',
'realtime.c',
'registry.c',
#'registry.c',
'remote-desktop.c',
'screen-cast.c',
'screenshot.c',
Expand Down
6 changes: 6 additions & 0 deletions src/xdg-desktop-portal.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@
#include "print.h"
#include "proxy-resolver.h"
#include "realtime.h"
#if 0
#include "registry.h"
#endif
#include "remote-desktop.h"
#include "xdp-request.h"
#include "screen-cast.h"
Expand Down Expand Up @@ -188,6 +190,7 @@ export_portal_implementation (GDBusConnection *connection,
g_debug ("providing portal %s", g_dbus_interface_skeleton_get_info (skeleton)->name);
}

#if 0
static void
export_host_portal_implementation (GDBusConnection *connection,
GDBusInterfaceSkeleton *skeleton)
Expand All @@ -214,6 +217,7 @@ export_host_portal_implementation (GDBusConnection *connection,

g_debug ("providing portal %s", g_dbus_interface_skeleton_get_info (skeleton)->name);
}
#endif

static void
peer_died_cb (const char *name)
Expand Down Expand Up @@ -401,7 +405,9 @@ on_bus_acquired (GDBusConnection *connection,
xdp_usb_create (connection, implementation->dbus_name));
#endif

#if 0
export_host_portal_implementation (connection, registry_create (connection));
#endif
}

static void
Expand Down
2 changes: 1 addition & 1 deletion tests/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ pytest_files = [
'test_openuri.py',
'test_permission_store.py',
'test_print.py',
'test_registry.py',
#'test_registry.py',
'test_remotedesktop.py',
'test_settings.py',
'test_screenshot.py',
Expand Down

0 comments on commit 5a8c162

Please sign in to comment.