Auto sync2gitlab import of gsettings-desktop-schemas-3.32.0-6.el8.src.rpm
This commit is contained in:
parent
a29fad4cdc
commit
807b49f6bc
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
/gsettings-desktop-schemas-3.32.0.tar.xz
|
32
0001-Add-a-setting-for-overlay-scrolling.patch
Normal file
32
0001-Add-a-setting-for-overlay-scrolling.patch
Normal file
@ -0,0 +1,32 @@
|
||||
From b94d2334fe6e2578aec32f97b9c3bd0d7709ad12 Mon Sep 17 00:00:00 2001
|
||||
From: Matthias Clasen <mclasen@redhat.com>
|
||||
Date: Wed, 22 May 2019 15:51:19 -0400
|
||||
Subject: [PATCH] Add a setting for overlay scrolling
|
||||
|
||||
This setting will be used by GTK.
|
||||
---
|
||||
schemas/org.gnome.desktop.interface.gschema.xml.in | 9 +++++++++
|
||||
1 file changed, 9 insertions(+)
|
||||
|
||||
diff --git a/schemas/org.gnome.desktop.interface.gschema.xml.in b/schemas/org.gnome.desktop.interface.gschema.xml.in
|
||||
index 22ef50d..680ac4c 100644
|
||||
--- a/schemas/org.gnome.desktop.interface.gschema.xml.in
|
||||
+++ b/schemas/org.gnome.desktop.interface.gschema.xml.in
|
||||
@@ -242,5 +242,14 @@
|
||||
If true, gtk+ uses the primary paste selection, usually triggered by a middle mouse button click.
|
||||
</description>
|
||||
</key>
|
||||
+ <key name="overlay-scrolling" type="b">
|
||||
+ <default>true</default>
|
||||
+ <summary>Allow overlay scrolling</summary>
|
||||
+ <description>
|
||||
+ Whether scrollbars should be overlayed as indicators. Depending
|
||||
+ on input devices in use, permanent scrollbars may still be
|
||||
+ displayed.
|
||||
+ </description>
|
||||
+ </key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
--
|
||||
2.23.0
|
||||
|
37
0001-schemas-Add-enable-hot-corners-setting.patch
Normal file
37
0001-schemas-Add-enable-hot-corners-setting.patch
Normal file
@ -0,0 +1,37 @@
|
||||
From 1e254151b13dbba244a2c8982c4e160a67f7b41b Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Florian=20M=C3=BCllner?= <fmuellner@gnome.org>
|
||||
Date: Thu, 13 Jun 2019 14:40:56 +0000
|
||||
Subject: [PATCH] schemas: Add 'enable-hot-corners' setting
|
||||
|
||||
Whether people love or hate gnome-shell's hot corner depends to large
|
||||
extents on hardware sensitivity and habits, which is hard to get right
|
||||
universally. So bite the bullet and add an option to enable or disable
|
||||
hot corners ...
|
||||
|
||||
https://gitlab.gnome.org/GNOME/gsettings-desktop-schemas/merge_requests/26
|
||||
---
|
||||
schemas/org.gnome.desktop.interface.gschema.xml.in | 8 ++++++++
|
||||
1 file changed, 8 insertions(+)
|
||||
|
||||
diff --git a/schemas/org.gnome.desktop.interface.gschema.xml.in b/schemas/org.gnome.desktop.interface.gschema.xml.in
|
||||
index 22ef50d..1e47888 100644
|
||||
--- a/schemas/org.gnome.desktop.interface.gschema.xml.in
|
||||
+++ b/schemas/org.gnome.desktop.interface.gschema.xml.in
|
||||
@@ -228,6 +228,14 @@
|
||||
If true, display weekday in the clock, in addition to time.
|
||||
</description>
|
||||
</key>
|
||||
+ <key name="enable-hot-corners" type="b">
|
||||
+ <default>true</default>
|
||||
+ <summary>Enable hot corners</summary>
|
||||
+ <description>
|
||||
+ If true, the activities overview can be accessed by moving the
|
||||
+ mouse to the top-left corner.
|
||||
+ </description>
|
||||
+ </key>
|
||||
<key name="show-battery-percentage" type="b">
|
||||
<default>false</default>
|
||||
<summary>Show battery percentage</summary>
|
||||
--
|
||||
2.21.0
|
||||
|
@ -0,0 +1,35 @@
|
||||
From 7cb02a1c179e163170b58e3cbd94584624d996c0 Mon Sep 17 00:00:00 2001
|
||||
From: Ray Strode <rstrode@redhat.com>
|
||||
Date: Wed, 21 Aug 2019 13:41:08 -0400
|
||||
Subject: [PATCH] schemas: Add new lockdown setting for password showing
|
||||
|
||||
A convenient feature of many password entries is the
|
||||
"Show Password" menu that lets the user see what password
|
||||
is hidden behind the bullets they're typing.
|
||||
|
||||
While certainly useful, it can also be problematic in some
|
||||
deployments, and violate security policies.
|
||||
|
||||
This commit adds a new setting to rid users of that "Show Password"
|
||||
menu item.
|
||||
---
|
||||
schemas/org.gnome.desktop.lockdown.gschema.xml.in | 7 +++++++
|
||||
1 file changed, 7 insertions(+)
|
||||
|
||||
diff --git a/schemas/org.gnome.desktop.lockdown.gschema.xml.in b/schemas/org.gnome.desktop.lockdown.gschema.xml.in
|
||||
index d31fb77..e5e408e 100644
|
||||
--- a/schemas/org.gnome.desktop.lockdown.gschema.xml.in
|
||||
+++ b/schemas/org.gnome.desktop.lockdown.gschema.xml.in
|
||||
@@ -79,5 +79,12 @@
|
||||
devices (i.e. flash disks, mobile phones, cameras).
|
||||
</description>
|
||||
</key>
|
||||
+ <key name="disable-show-password" type="b">
|
||||
+ <default>false</default>
|
||||
+ <summary>Disable password showing</summary>
|
||||
+ <description>
|
||||
+ Disable the "Show Password" menu item in password entries.
|
||||
+ </description>
|
||||
+ </key>
|
||||
</schema>
|
||||
</schemalist>
|
@ -0,0 +1,34 @@
|
||||
From 1dec88b007a13860ae8da33687fe4d496053ec98 Mon Sep 17 00:00:00 2001
|
||||
From: Ondrej Holy <oholy@redhat.com>
|
||||
Date: Tue, 14 May 2019 08:12:59 +0200
|
||||
Subject: [PATCH] schemas: Add "mount-removable-storage-devices-as-read-only"
|
||||
option
|
||||
|
||||
Add lockdown option to prevent users from writing or modifying files
|
||||
on removable storage devices. If enabled, gvfs is going to mount removable
|
||||
storage devices (i.e. flashdisks, mobile phones, cameras) as read-only.
|
||||
---
|
||||
schemas/org.gnome.desktop.lockdown.gschema.xml.in | 8 ++++++++
|
||||
1 file changed, 8 insertions(+)
|
||||
|
||||
diff --git a/schemas/org.gnome.desktop.lockdown.gschema.xml.in b/schemas/org.gnome.desktop.lockdown.gschema.xml.in
|
||||
index 0150b32..d31fb77 100644
|
||||
--- a/schemas/org.gnome.desktop.lockdown.gschema.xml.in
|
||||
+++ b/schemas/org.gnome.desktop.lockdown.gschema.xml.in
|
||||
@@ -71,5 +71,13 @@
|
||||
and removing users, as well as changing other users settings.
|
||||
</description>
|
||||
</key>
|
||||
+ <key name="mount-removable-storage-devices-as-read-only" type="b">
|
||||
+ <default>false</default>
|
||||
+ <summary>Mount removable storage devices as read-only</summary>
|
||||
+ <description>
|
||||
+ Prevent users from writing or modifying files on removable storage
|
||||
+ devices (i.e. flash disks, mobile phones, cameras).
|
||||
+ </description>
|
||||
+ </key>
|
||||
</schema>
|
||||
</schemalist>
|
||||
--
|
||||
2.21.0
|
||||
|
444
gsettings-desktop-schemas.spec
Normal file
444
gsettings-desktop-schemas.spec
Normal file
@ -0,0 +1,444 @@
|
||||
%global debug_package %{nil}
|
||||
|
||||
Name: gsettings-desktop-schemas
|
||||
Version: 3.32.0
|
||||
Release: 6%{?dist}
|
||||
Summary: A collection of GSettings schemas
|
||||
|
||||
License: LGPLv2+
|
||||
# no homepage exists for this component
|
||||
URL: http://bugzilla.gnome.org/enter_bug.cgi?product=gsettings-desktop-schemas
|
||||
Source0: http://download.gnome.org/sources/%{name}/3.32/%{name}-%{version}.tar.xz
|
||||
Source1: org.gnome.desktop.interface.gschema.override
|
||||
|
||||
# https://bugzilla.redhat.com/show_bug.cgi?id=1709937
|
||||
Patch0: add-mount-removable-storage-devices-as-read-only-option.patch
|
||||
# Backport from 3.33.1
|
||||
Patch1: 0001-schemas-Add-enable-hot-corners-setting.patch
|
||||
Patch2: 0001-Add-a-setting-for-overlay-scrolling.patch
|
||||
Patch3: 0001-schemas-Add-new-lockdown-setting-for-password-showing.patch
|
||||
|
||||
BuildRequires: gettext
|
||||
BuildRequires: glib2-devel >= 2.31.0
|
||||
BuildRequires: gobject-introspection-devel
|
||||
BuildRequires: meson
|
||||
|
||||
# Older versions need the "scroll-method" key that was removed in 3.19.3
|
||||
Conflicts: control-center < 1:3.19.3
|
||||
Conflicts: gnome-settings-daemon < 3.19.3
|
||||
Conflicts: mutter < 3.19.3
|
||||
|
||||
Requires: glib2 >= 2.31.0
|
||||
|
||||
# Recommend the default fonts set in the schemas
|
||||
Recommends: font(cantarell)
|
||||
Recommends: font(sourcecodepro)
|
||||
Recommends: font(dejavusansmono)
|
||||
|
||||
%description
|
||||
gsettings-desktop-schemas contains a collection of GSettings schemas for
|
||||
settings shared by various components of a desktop.
|
||||
|
||||
|
||||
%package devel
|
||||
Summary: Development files for %{name}
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
|
||||
%description devel
|
||||
The %{name}-devel package contains libraries
|
||||
and header files for developing applications that use %{name}.
|
||||
|
||||
|
||||
%prep
|
||||
%autosetup -p1
|
||||
|
||||
|
||||
%build
|
||||
%meson
|
||||
%meson_build
|
||||
|
||||
|
||||
%install
|
||||
%meson_install
|
||||
|
||||
# Restore old monospace default
|
||||
cp -a %{SOURCE1} %{buildroot}%{_datadir}/glib-2.0/schemas
|
||||
|
||||
%find_lang %{name} --with-gnome
|
||||
|
||||
|
||||
%check
|
||||
# Test that the schemas compile
|
||||
glib-compile-schemas --dry-run --strict $RPM_BUILD_ROOT%{_datadir}/glib-2.0/schemas
|
||||
|
||||
|
||||
%files -f %{name}.lang
|
||||
%doc AUTHORS MAINTAINERS NEWS README
|
||||
%license COPYING
|
||||
%{_datadir}/glib-2.0/schemas/*
|
||||
%{_datadir}/GConf/gsettings/gsettings-desktop-schemas.convert
|
||||
%{_datadir}/GConf/gsettings/wm-schemas.convert
|
||||
%{_libdir}/girepository-1.0/GDesktopEnums-3.0.typelib
|
||||
|
||||
%files devel
|
||||
%doc HACKING
|
||||
%{_includedir}/*
|
||||
%{_datadir}/pkgconfig/*
|
||||
%{_datadir}/gir-1.0/GDesktopEnums-3.0.gir
|
||||
|
||||
|
||||
%changelog
|
||||
* Tue Jul 20 2021 Ray Strode <rstrode@redhat.com> - 3.32.0-6
|
||||
- Add setting for locking down Show Password in entries
|
||||
Related: #1770302
|
||||
|
||||
* Mon Jun 29 2020 Carlos Garnacho <cgarnach@redhat.com> - 3.32.0-5
|
||||
- Recommend DejaVu Sans Mono font as the default monospace font
|
||||
Resolves: #1656262
|
||||
|
||||
* Thu Nov 21 2019 Benjamin Otte <otte@redhat.com> - 3.32-0-4
|
||||
- Backport setting for overlay scrolling
|
||||
Resolves: #1723464
|
||||
|
||||
* Tue Jul 23 2019 Florian Müllner <fmuellner@redhat.com> - 3.32-0-3
|
||||
- Backport 'enable-hot-corners' setting
|
||||
Resolves: #1704355
|
||||
|
||||
* Tue Jun 04 2019 Florian Müllner <fmuellner@redhat.com> - 3.32.0-2
|
||||
- Restore previous monospace font default
|
||||
Resolves: #1715761
|
||||
|
||||
* Thu May 23 2019 Florian Müllner <fmuellner@redhat.com> - 3.32.0-1
|
||||
- Update to 3.32.0
|
||||
Resolves: #1698930
|
||||
|
||||
* Wed May 15 2019 Ondrej Holy <oholy@redhat.com> - 3.28.1-2
|
||||
- Add mount-removable-storage-devices-as-read-only option
|
||||
- Resovles: #1709937
|
||||
|
||||
* Tue Sep 04 2018 Kalev Lember <klember@redhat.com> - 3.28.1-1
|
||||
- Update to 3.28.1
|
||||
|
||||
* Mon Mar 12 2018 Kalev Lember <klember@redhat.com> - 3.28.0-1
|
||||
- Update to 3.28.0
|
||||
|
||||
* Mon Mar 05 2018 Kalev Lember <klember@redhat.com> - 3.27.92-1
|
||||
- Update to 3.27.92
|
||||
|
||||
* Fri Feb 09 2018 Bastien Nocera <bnocera@redhat.com> - 3.27.90-1
|
||||
+ gsettings-desktop-schemas-3.27.90-1
|
||||
- Update to 3.27.90
|
||||
|
||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.27.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Sat Jan 06 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.27.1-2
|
||||
- Remove obsolete scriptlets
|
||||
|
||||
* Thu Nov 02 2017 Kalev Lember <klember@redhat.com> - 3.27.1-1
|
||||
- Update to 3.27.1
|
||||
|
||||
* Mon Sep 04 2017 Kalev Lember <klember@redhat.com> - 3.24.1-1
|
||||
- Update to 3.24.1
|
||||
|
||||
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.24.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.24.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Tue Mar 21 2017 Kalev Lember <klember@redhat.com> - 3.24.0-1
|
||||
- Update to 3.24.0
|
||||
|
||||
* Tue Feb 14 2017 Richard Hughes <rhughes@redhat.com> - 3.23.90-1
|
||||
- Update to 3.23.90
|
||||
|
||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.23.3-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Wed Jan 11 2017 Bastien Nocera <bnocera@redhat.com> - 3.23.3-1
|
||||
+ gsettings-desktop-schemas-3.23.3-1
|
||||
- Update to 3.23.3
|
||||
|
||||
* Wed Sep 21 2016 Kalev Lember <klember@redhat.com> - 3.22.0-1
|
||||
- Update to 3.22.0
|
||||
- Don't set group tags
|
||||
|
||||
* Fri Aug 19 2016 Florian Müllner <fmuellner@redhat.com> - 3.21.4-1
|
||||
- Update to 3.21.4
|
||||
|
||||
* Wed Jun 22 2016 Florian Müllner <fmuellner@redhat.com> - 3.21.3-1
|
||||
- Update to 3.21.3
|
||||
|
||||
* Thu May 26 2016 Florian Müllner <fmuellner@redhat.com> - 3.21.2-1
|
||||
- Update to 3.21.2
|
||||
|
||||
* Tue Mar 22 2016 Kalev Lember <klember@redhat.com> - 3.20.0-1
|
||||
- Update to 3.20.0
|
||||
|
||||
* Thu Mar 17 2016 Richard Hughes <rhughes@redhat.com> - 3.19.92-1
|
||||
- Update to 3.19.92
|
||||
|
||||
* Wed Feb 17 2016 Richard Hughes <rhughes@redhat.com> - 3.19.90-1
|
||||
- Update to 3.19.90
|
||||
|
||||
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.19.3-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Thu Dec 17 2015 Kalev Lember <klember@redhat.com> - 3.19.3-2
|
||||
- Conflict with mutter < 3.19.3
|
||||
|
||||
* Tue Dec 15 2015 Kalev Lember <klember@redhat.com> - 3.19.3-1
|
||||
- Update to 3.19.3
|
||||
|
||||
* Thu Dec 10 2015 Kalev Lember <klember@redhat.com> - 3.19.2-2
|
||||
- Revert natural scrolling for mice
|
||||
|
||||
* Wed Nov 25 2015 Florian Müllner <fmuellner@redhat.com> - 3.19.2-1
|
||||
- Update to 3.19.2
|
||||
|
||||
* Fri Oct 23 2015 Kalev Lember <klember@redhat.com> - 3.18.1-1
|
||||
- Update to 3.18.1
|
||||
|
||||
* Mon Sep 21 2015 Kalev Lember <klember@redhat.com> - 3.18.0-1
|
||||
- Update to 3.18.0
|
||||
|
||||
* Mon Sep 14 2015 Kalev Lember <klember@redhat.com> - 3.17.92-1
|
||||
- Update to 3.17.92
|
||||
- Use make_install macro
|
||||
|
||||
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.16.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Tue Apr 14 2015 Kalev Lember <kalevlember@gmail.com> - 3.16.1-1
|
||||
- Update to 3.16.1
|
||||
|
||||
* Mon Mar 23 2015 Kalev Lember <kalevlember@gmail.com> - 3.16.0-1
|
||||
- Update to 3.16.0
|
||||
|
||||
* Tue Mar 17 2015 Kalev Lember <kalevlember@gmail.com> - 3.15.92-1
|
||||
- Update to 3.15.92
|
||||
- Use license macro for the COPYING file
|
||||
|
||||
* Thu Feb 19 2015 Richard Hughes <rhughes@redhat.com> - 3.15.90-1
|
||||
- Update to 3.15.90
|
||||
|
||||
* Tue Jan 20 2015 Richard Hughes <rhughes@redhat.com> - 3.15.4-1
|
||||
- Update to 3.15.4
|
||||
|
||||
* Wed Oct 15 2014 Kalev Lember <kalevlember@gmail.com> - 3.14.1-1
|
||||
- Update to 3.14.1
|
||||
|
||||
* Mon Sep 22 2014 Kalev Lember <kalevlember@gmail.com> - 3.14.0-1
|
||||
- Update to 3.14.0
|
||||
|
||||
* Tue Sep 02 2014 Kalev Lember <kalevlember@gmail.com> - 3.13.92-1
|
||||
- Update to 3.13.92
|
||||
- Tighten -devel subpackage deps
|
||||
|
||||
* Tue Aug 19 2014 Kalev Lember <kalevlember@gmail.com> - 3.13.91-1
|
||||
- Update to 3.13.91
|
||||
|
||||
* Mon Aug 18 2014 Kalev Lember <kalevlember@gmail.com> - 3.13.90-1
|
||||
- Update to 3.13.90
|
||||
|
||||
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.13.2-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Tue Jul 22 2014 Kalev Lember <kalevlember@gmail.com> - 3.13.2-3
|
||||
- Rebuilt for gobject-introspection 1.41.4
|
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.13.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Wed May 28 2014 Kalev Lember <kalevlember@gmail.com> - 3.13.2-1
|
||||
- Update to 3.13.2
|
||||
|
||||
* Thu May 01 2014 Kalev Lember <kalevlember@gmail.com> - 3.13.1-1
|
||||
- Update to 3.13.1
|
||||
|
||||
* Mon Mar 24 2014 Richard Hughes <rhughes@redhat.com> - 3.12.0-1
|
||||
- Update to 3.12.0
|
||||
|
||||
* Tue Mar 18 2014 Richard Hughes <rhughes@redhat.com> - 3.11.91-1
|
||||
- Update to 3.11.91
|
||||
|
||||
* Tue Feb 18 2014 Richard Hughes <rhughes@redhat.com> - 3.11.90-1
|
||||
- Update to 3.11.90
|
||||
|
||||
* Tue Feb 04 2014 Richard Hughes <rhughes@redhat.com> - 3.11.5-1
|
||||
- Update to 3.11.5
|
||||
|
||||
* Tue Jan 14 2014 Richard Hughes <rhughes@redhat.com> - 3.11.4-1
|
||||
- Update to 3.11.4
|
||||
|
||||
* Mon Dec 23 2013 Adam Williamson <awilliam@redhat.com> - 3.11.3-1
|
||||
- Update to 3.11.3
|
||||
|
||||
* Wed Oct 16 2013 Richard Hughes <rhughes@redhat.com> - 3.10.1-1
|
||||
- Update to 3.10.1
|
||||
|
||||
* Tue Sep 24 2013 Kalev Lember <kalevlember@gmail.com> - 3.10.0-1
|
||||
- Update to 3.10.0
|
||||
|
||||
* Tue Sep 03 2013 Kalev Lember <kalevlember@gmail.com> - 3.9.91-1
|
||||
- Update to 3.9.91
|
||||
|
||||
* Wed Aug 21 2013 Richard Hughes <rhughes@redhat.com> - 3.9.90-1
|
||||
- Update to 3.9.90
|
||||
|
||||
* Fri Aug 09 2013 Kalev Lember <kalevlember@gmail.com> - 3.9.5-1
|
||||
- Update to 3.9.5
|
||||
|
||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.9.3-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Thu Jun 20 2013 Kalev Lember <kalevlember@gmail.com> - 3.9.3-1
|
||||
- Update to 3.9.3
|
||||
|
||||
* Tue May 28 2013 Florian Müllner <fmuellner@redhat.com> - 3.9.2-1
|
||||
- Update to 3.9.2
|
||||
|
||||
* Tue May 14 2013 Richard Hughes <rhughes@redhat.com> - 3.8.2-1
|
||||
- Update to 3.8.2
|
||||
|
||||
* Tue Mar 26 2013 Kalev Lember <kalevlember@gmail.com> - 3.8.0-1
|
||||
- Update to 3.8.0
|
||||
|
||||
* Tue Mar 19 2013 Matthias Clasen <mclasen@redhat.com> - 3.7.92-1
|
||||
- Update to 3.7.92
|
||||
|
||||
* Thu Mar 7 2013 Matthias Clasen <mclasen@redhat.com> - 3.7.91-1
|
||||
- Update to 3.7.91
|
||||
|
||||
* Thu Feb 21 2013 Kalev Lember <kalevlember@gmail.com> - 3.7.90-1
|
||||
- Update to 3.7.90
|
||||
|
||||
* Tue Feb 05 2013 Richard Hughes <rhughes@redhat.com> - 3.7.5-1
|
||||
- Update to 3.7.5
|
||||
|
||||
* Tue Jan 15 2013 Matthias Clasen <mclasen@redhat.com> - 3.7.4-1
|
||||
- Update to 3.7.4
|
||||
|
||||
* Thu Dec 20 2012 Kalev Lember <kalevlember@gmail.com> - 3.7.3-1
|
||||
- Update to 3.7.3
|
||||
|
||||
* Tue Nov 20 2012 Richard Hughes <hughsient@gmail.com> - 3.7.2-1
|
||||
- Update to 3.7.2
|
||||
|
||||
* Tue Nov 13 2012 Kalev Lember <kalevlember@gmail.com> - 3.6.1-1
|
||||
- Update to 3.6.1
|
||||
|
||||
* Tue Sep 25 2012 Richard Hughes <hughsient@gmail.com> - 3.6.0-1
|
||||
- Update to 3.6.0
|
||||
|
||||
* Wed Sep 19 2012 Richard Hughes <hughsient@gmail.com> - 3.5.92-1
|
||||
- Update to 3.5.92
|
||||
|
||||
* Thu Sep 06 2012 Richard Hughes <hughsient@gmail.com> - 3.5.91-1
|
||||
- Update to 3.5.91
|
||||
|
||||
* Wed Aug 22 2012 Richard Hughes <hughsient@gmail.com> - 3.5.90-1
|
||||
- Update to 3.5.90
|
||||
|
||||
* Wed Jul 18 2012 Debarshi Ray <rishi@fedoraproject.org> - 3.5.4-1
|
||||
- Update to 3.5.4
|
||||
|
||||
* Tue Jun 26 2012 Richard Hughes <hughsient@gmail.com> - 3.5.3-1
|
||||
- Update to 3.5.3
|
||||
|
||||
* Wed Jun 06 2012 Richard Hughes <hughsient@gmail.com> - 3.5.2-1
|
||||
- Update to 3.5.2
|
||||
|
||||
* Fri May 18 2012 Richard Hughes <hughsient@gmail.com> - 3.4.2-1
|
||||
- Update to 3.4.2
|
||||
|
||||
* Mon Apr 16 2012 Richard Hughes <hughsient@gmail.com> - 3.4.1-1
|
||||
- Update to 3.4.1
|
||||
|
||||
* Tue Mar 27 2012 Richard Hughes <hughsient@gmail.com> - 3.4.0-1
|
||||
- Update to 3.4.0
|
||||
|
||||
* Mon Mar 19 2012 Richard Hughes <rhughes@redhat.com> 3.3.92-1
|
||||
- Update to 3.3.92
|
||||
|
||||
* Wed Feb 22 2012 Bastien Nocera <bnocera@redhat.com> 3.3.90-1
|
||||
- Update to 3.3.90
|
||||
|
||||
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.2-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Wed Nov 23 2011 Ville Skyttä <ville.skytta@iki.fi> - 3.3.2-3
|
||||
- Disable empty -debuginfo package.
|
||||
- Fix minimum required glib2 version.
|
||||
|
||||
* Tue Nov 22 2011 Matthias Clasen <mclasen@redhat.com> - 3.3.2-2
|
||||
- Enable introspection
|
||||
- Make the package archful, since we now install in libdir
|
||||
|
||||
* Tue Nov 22 2011 Matthias Clasen <mclasen@redhat.com> - 3.3.2-1
|
||||
- Update to 3.3.2
|
||||
|
||||
* Mon Sep 26 2011 Bastien Nocera <bnocera@redhat.com> 3.2.0-1
|
||||
- Update to 3.2.0
|
||||
|
||||
* Tue Sep 6 2011 Matthias Clasen <mclasen@redhat.com> - 3.1.91-1
|
||||
- Update to 3.1.91
|
||||
|
||||
* Mon Jul 04 2011 Bastien Nocera <bnocera@redhat.com> 3.1.3-1
|
||||
- Update to 3.1.3
|
||||
|
||||
* Tue Apr 26 2011 Matthias Clasen <mclasen@redhat.com> 3.0.1-1
|
||||
- Update to 3.0.1
|
||||
|
||||
* Thu Apr 7 2011 Matthias Clasen <mclasen@redhat.com> 3.0.0-2
|
||||
- Don't perform questionable migrations
|
||||
|
||||
* Mon Apr 04 2011 Bastien Nocera <bnocera@redhat.com> 3.0.0-1
|
||||
- Update to 3.0.0
|
||||
|
||||
* Mon Mar 21 2011 Matthias Clasen <mclasen@redhat.com> 2.91.92-1
|
||||
- Update to 2.91.92
|
||||
|
||||
* Wed Mar 09 2011 Bastien Nocera <bnocera@redhat.com> 2.91.91-2
|
||||
- Fix possible crasher when converting schemas
|
||||
|
||||
* Tue Mar 08 2011 Bastien Nocera <bnocera@redhat.com> 2.91.91-1
|
||||
- Update to 2.91.91
|
||||
|
||||
* Thu Feb 24 2011 Colin Walters <walters@verbum.org> - 0.1.7-2
|
||||
- Add patch from git to disable a11y by default; it makes
|
||||
gnome-shell totally unusable right now
|
||||
|
||||
* Mon Feb 21 2011 Bastien Nocera <bnocera@redhat.com> 0.1.7-1
|
||||
- Update to 0.1.7
|
||||
|
||||
* Thu Feb 10 2011 Matthias Clasen <mclasen@redhat.com> - 0.1.5-3
|
||||
- Rebuild
|
||||
|
||||
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.5-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Wed Feb 2 2011 Matthias Clasen <mclasen@redhat.com> - 0.1.5-1
|
||||
- Update to 0.1.5
|
||||
|
||||
* Mon Jan 10 2011 Matthias Clasen <mclasen@redhat.com> - 0.1.4-1
|
||||
- Update to 0.1.4
|
||||
|
||||
* Sat Jan 8 2011 Matthias Clasen <mclasen@redhat.com> - 0.1.3-1
|
||||
- Update to 0.1.3
|
||||
|
||||
* Tue Nov 30 2010 Tomas Bzatek <tbzatek@redhat.com> - 0.1.2-1
|
||||
- Update to 0.1.2
|
||||
|
||||
* Wed Nov 17 2010 Bastien Nocera <bnocera@redhat.com> 0.1.1-1
|
||||
- Update to 0.1.1
|
||||
|
||||
* Tue Nov 2 2010 Matthias Clasen <mclasen@redhat.com> - 0.1.0-1
|
||||
- Update to 0.1.0
|
||||
|
||||
* Tue Aug 24 2010 Matthias Clasen <mclasen@redhat.com> - 0.0.1-1
|
||||
- Update to 0.0.1
|
||||
|
||||
* Tue Aug 3 2010 Tomas Bzatek <tbzatek@redhat.com> - 0.0.1-1.git20100729
|
||||
- Initial packaging
|
2
org.gnome.desktop.interface.gschema.override
Normal file
2
org.gnome.desktop.interface.gschema.override
Normal file
@ -0,0 +1,2 @@
|
||||
[org.gnome.desktop.interface]
|
||||
monospace-font-name='Monospace 11'
|
Loading…
Reference in New Issue
Block a user