Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • xfce/thunar
  • alexxcons/thunar
  • lastonestanding/thunar
  • StormByte/thunar
  • Manideep/thunar
  • ikem-krueger/thunar
  • Levitating/thunar
  • correctmost/thunar
  • ncfavier/thunar
  • sgn/thunar
  • aslezar/thunar
  • drsudo/thunar
  • prertik/thunar
  • entwicklerseite/thunar
  • sarahjjust/thunar
  • joebonrichie/thunar
  • raultel/thunar
  • Zetta1_Reid0/thunar
  • RAZOR_99/thunar
  • konsolebox/thunar
  • sulincix/thunar
  • bobby285271/thunar
  • jensenr30/thunar
  • radioactiveman/thunar
  • psydbernz/thunar-contrib
  • landry/thunar
  • stealthninja/thunar
  • kressb-gitlab/thunar
  • keszybz/thunar
29 results
Show changes
Showing
with 710 additions and 256 deletions
......@@ -14,7 +14,7 @@
<vendor>Thunar</vendor>
<vendor_url>https://xfce.org/</vendor_url>
<icon_name>system-file-manager</icon_name>
<icon_name>org.xfce.thunar</icon_name>
<action id="org.xfce.thunar">
......@@ -23,8 +23,8 @@
may wish to modify files they normally do not have read/write access
to. This isn't a good idea, but is common on single user systems.
-->
<_description>Run Thunar as root</_description>
<_message>Authentication is required to run Thunar as root.</_message>
<description>Run Thunar as root</description>
<message>Authentication is required to run Thunar as root.</message>
<defaults>
<allow_any>no</allow_any>
<allow_inactive>auth_admin</allow_inactive>
......
......@@ -26,7 +26,8 @@ thunar_apr_la_SOURCES = \
thunar_apr_la_CFLAGS = \
$(EXIF_CFLAGS) \
$(EXO_CFLAGS) \
$(LIBXFCE4UTIL_CFLAGS) \
$(LIBXFCE4UI_CFLAGS) \
$(GLIB_CFLAGS) \
$(GTK_CFLAGS) \
$(PLATFORM_CFLAGS)
......@@ -42,7 +43,8 @@ thunar_apr_la_LDFLAGS = \
thunar_apr_la_LIBADD = \
$(top_builddir)/thunarx/libthunarx-$(THUNARX_VERSION_API).la \
$(EXIF_LIBS) \
$(EXO_LIBS) \
$(LIBXFCE4UTIL_LIBS) \
$(LIBXFCE4UI_LIBS) \
$(GLIB_LIBS) \
$(GTK_LIBS)
......@@ -51,6 +53,8 @@ thunar_apr_la_DEPENDENCIES = \
EXTRA_DIST = \
README.md
README.md \
meson.build \
$(NULL)
# vi:set ts=8 sw=8 noet ai nocindent syntax=automake:
shared_module(
'thunar-apr',
[
'thunar-apr-abstract-page.c',
'thunar-apr-abstract-page.h',
'thunar-apr-desktop-page.c',
'thunar-apr-desktop-page.h',
'thunar-apr-image-page.c',
'thunar-apr-image-page.h',
'thunar-apr-plugin.c',
'thunar-apr-private.c',
'thunar-apr-private.h',
'thunar-apr-provider.c',
'thunar-apr-provider.h',
],
name_prefix: '',
gnu_symbol_visibility: 'hidden',
c_args: [
'-DG_LOG_DOMAIN="@0@"'.format('thunar-apr'),
],
include_directories: [
include_directories('..'),
include_directories('..' / '..'),
],
dependencies: [
glib,
gtk,
libxfce4ui,
libxfce4util,
exif,
libintl,
],
link_with: [
libthunarx,
],
install: true,
install_dir: get_option('prefix') / get_option('libdir') / 'thunarx-@0@'.format(thunarx_version_api),
)
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.