diff options
author | rbuj <[email protected]> | 2019-12-09 23:05:56 +0100 |
---|---|---|
committer | Robert Antoni Buj Gelonch <[email protected]> | 2019-12-23 08:55:37 +0100 |
commit | d6318fc5174c6e5915ed22c53b17a681850c97c0 (patch) | |
tree | 52e0c82b9e6318f70ffb07fac79b0d396970a6f9 /logview/data | |
parent | b8b0f4f70656476e51c0a645875d07c8c8225626 (diff) | |
download | mate-utils-d6318fc5174c6e5915ed22c53b17a681850c97c0.tar.bz2 mate-utils-d6318fc5174c6e5915ed22c53b17a681850c97c0.tar.xz |
Use gresources for UI files
Diffstat (limited to 'logview/data')
-rw-r--r-- | logview/data/Makefile.am | 9 | ||||
-rw-r--r-- | logview/data/org.mate.system-log.gresource.xml | 23 |
2 files changed, 27 insertions, 5 deletions
diff --git a/logview/data/Makefile.am b/logview/data/Makefile.am index 1fda2fb1..451f93fa 100644 --- a/logview/data/Makefile.am +++ b/logview/data/Makefile.am @@ -1,8 +1,5 @@ SUBDIRS=icons -xmldir = $(pkgdatadir) -xml_DATA = logview-toolbar.xml logview-filter.ui - desktopdir = $(datadir)/applications desktop_in_files = mate-system-log.desktop.in desktop_DATA = $(desktop_in_files:.desktop.in=.desktop) @@ -19,9 +16,11 @@ gsettings_SCHEMAS = org.mate.system-log.gschema.xml @GSETTINGS_RULES@ EXTRA_DIST = \ + logview-filter.ui \ + logview-toolbar.xml \ mate-system-log.desktop.in.in \ - $(xml_DATA) \ - $(man_MANS) + $(man_MANS) \ + org.mate.system-log.gresource.xml DISTCLEANFILES = \ $(desktop_DATA) \ diff --git a/logview/data/org.mate.system-log.gresource.xml b/logview/data/org.mate.system-log.gresource.xml new file mode 100644 index 00000000..14b1103d --- /dev/null +++ b/logview/data/org.mate.system-log.gresource.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + This file is part of MATE Utils. + + MATE Utils is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 2 of the License, or + (at your option) any later version. + + MATE Utils is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with MATE Utils. If not, see <http://www.gnu.org/licenses/>. +--> +<gresources> + <gresource prefix="/org/mate/system-log"> + <file compressed="true">logview-filter.ui</file> + <file compressed="true">logview-toolbar.xml</file> + </gresource> +</gresources> |