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

Update org.freedesktop.impl.portal.Settings backend to v2. #14

Merged
merged 2 commits into from
Mar 28, 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
8 changes: 4 additions & 4 deletions data/org.gnome.SessionManager.xml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
</arg>
<arg type="u" name="flags" direction="in">
<doc:doc>
<doc:summary>Flags that spefify what should be inhibited</doc:summary>
<doc:summary>Flags that specify what should be inhibited</doc:summary>
</doc:doc>
</arg>
<arg type="u" name="inhibit_cookie" direction="out">
Expand All @@ -107,7 +107,7 @@
</arg>
<doc:doc>
<doc:summary>
Proactively indicates that the calling application is performing an action that should not be interrupted and sets a reason to be displayed to the user when an interruption is about to take placea.
Proactively indicates that the calling application is performing an action that should not be interrupted and sets a reason to be displayed to the user when an interruption is about to take place.
</doc:summary>
<doc:description>
<doc:para>Applications should invoke this method when they begin an operation that
Expand Down Expand Up @@ -175,7 +175,7 @@
<method name="IsInhibited">
<arg type="u" name="flags" direction="in">
<doc:doc>
<doc:summary>Flags that spefify what should be inhibited</doc:summary>
<doc:summary>Flags that specify what should be inhibited</doc:summary>
</doc:doc>
</arg>
<arg type="b" name="is_inhibited" direction="out">
Expand Down Expand Up @@ -296,7 +296,7 @@
</doc:item>
<doc:item>
<doc:term>1</doc:term>
<doc:definition>No confirmation inferface should be shown.</doc:definition>
<doc:definition>No confirmation interface should be shown.</doc:definition>
</doc:item>
<doc:item>
<doc:term>2</doc:term>
Expand Down
1 change: 1 addition & 0 deletions debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Maintainer: Linux Mint <root@linuxmint.com>
Build-Depends:
debhelper-compat (= 13),
libglib2.0-dev (>= 2.44),
libgtk-3-dev (>= 3.0),
meson (>= 0.53.0),
systemd (>= 242),
xdg-desktop-portal-dev (>= 1.7.1),
Expand Down
5 changes: 5 additions & 0 deletions debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ export DEB_BUILD_MAINT_OPTIONS = hardening=+all
%:
dh $@


override_dh_auto_configure:
dh_auto_configure -- \
--buildtype=debug

override_dh_auto_install:
dh_auto_install --destdir=debian/tmp

Expand Down
2 changes: 2 additions & 0 deletions src/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ deps = [
meson.get_compiler('c').find_library('m'),
dependency('glib-2.0', version: '>= 2.44'),
dependency('gio-unix-2.0'),
dependency('gtk+-3.0'),
dependency('gdk-3.0'),
xdg_desktop_portal_dep,
]

Expand Down
Loading