modify contest

This commit is contained in:
hostfj 2020-08-28 11:20:34 +08:00
parent ea69d2592d
commit 3da402c2ca
3 changed files with 604 additions and 0 deletions

BIN
glade3-3.8.6.tar.xz Normal file

Binary file not shown.

View File

@ -0,0 +1,21 @@
diff -Naur glade3-a/help/Makefile.am glade3-3.8.6/help/Makefile.am
--- glade3-a/help/Makefile.am 2019-11-25 22:26:48.737052503 -0500
+++ glade3-3.8.6/help/Makefile.am 2019-11-25 22:27:18.261566436 -0500
@@ -9,4 +9,4 @@
HELP_MEDIA = figures/main-window.png
-HELP_LINGUAS = bg cs de el en_GB es eu fr hi it ja oc pt_BR ru sl sv uk zh_CN
+HELP_LINGUAS = cs de el en_GB es eu fr hi it ja oc pt_BR ru sl sv zh_CN
diff -Naur glade3-a/help/Makefile.in glade3-3.8.6/help/Makefile.in
--- glade3-a/help/Makefile.in 2019-11-25 22:26:48.737052503 -0500
+++ glade3-3.8.6/help/Makefile.in 2019-11-25 22:27:46.958065957 -0500
@@ -336,7 +336,7 @@
$(NULL)
HELP_MEDIA = figures/main-window.png
-HELP_LINGUAS = bg cs de el en_GB es eu fr hi it ja oc pt_BR ru sl sv uk zh_CN
+HELP_LINGUAS = cs de el en_GB es eu fr hi it ja oc pt_BR ru sl sv zh_CN
all: all-am
.SUFFIXES:

583
glade3.spec Normal file
View File

@ -0,0 +1,583 @@
Name: glade3
Epoch: 2
Version: 3.8.6
Release: 6%{?dist}
Summary: User Interface Designer for GTK+ 2
License: GPLv2+
URL: http://glade.gnome.org/
Source0: http://ftp.gnome.org/pub/GNOME/sources/glade3/3.8/glade3-%{version}.tar.xz
Patch0: glade3-delete-bg-uk-po.patch
BuildRequires: gcc
BuildRequires: desktop-file-utils
BuildRequires: gettext
BuildRequires: gtk2-devel
BuildRequires: gtk-doc
BuildRequires: intltool
BuildRequires: itstool
BuildRequires: libgnomeui-devel
BuildRequires: libxml2-devel
BuildRequires: pygtk2-devel
BuildRequires: python2-devel
BuildRequires: chrpath
Requires: hicolor-icon-theme
Requires: %{name}-libgladeui = %{?epoch:%{epoch}:}%{version}-%{release}
%description
Glade is a RAD tool to enable quick and easy development of user interfaces for
the GTK+ 2 toolkit and the GNOME desktop environment.
The user interfaces designed in Glade are saved as XML, which can be used in
numerous programming languages including C, C++, Java, Perl, Python, C#, Pike,
Ruby, Haskell, Objective Caml and Scheme. Adding support for other languages
is easy too.
This package contains Glade for GTK+ 2.x. For GTK+ 3.x support, please install
the 'glade' package instead.
%package libgladeui
Summary: Widget library for Glade UI designer
# The libgladegtk.so modules is under (GPLv2+ and LGPLv2+), the icons are
# under under LGPLv2, and the rest is GPLv2+.
# For a breakdown of the licensing, see COPYING.
License: GPLv2+ and (GPLv2+ and LGPLv2+) and LGPLv2
%description libgladeui
Libgladeui consists of the widgets that compose the Glade GUI as a separate
library to ease the integration of Glade into other applications.
%package libgladeui-devel
Summary: Development files for %{name}-libgladeui
# The glade-parser.h header is under LGPLv2+, and the rest is GPLv2+.
License: GPLv2+ and LGPLv2+
Requires: %{name}-libgladeui = %{?epoch:%{epoch}:}%{version}-%{release}
%description libgladeui-devel
This package contains development files for %{name}-libgladeui.
%prep
%setup -q
%patch0 -p1
%build
%configure --disable-static \
--enable-gtk-doc \
--enable-python
# Omit unused direct shared library dependencies.
sed --in-place --expression 's! -shared ! -Wl,--as-needed\0!g' libtool
make %{?_smp_mflags}
# Strip unneeded translations from .mo files:
# http://bugzilla.gnome.org/474987
pushd ./po
grep --invert-match \
".*[.]desktop[.]in[.]in$\|.*[.]server[.]in[.]in$" \
POTFILES.in > POTFILES.keep
mv POTFILES.keep POTFILES.in
intltool-update --pot
for p in *.po; do
msgmerge $p glade3.pot > $p.out
msgfmt -o `basename $p .po`.gmo $p.out
done
popd
%install
make install INSTALL="%{__install} -p" DESTDIR=$RPM_BUILD_ROOT
find $RPM_BUILD_ROOT -type f -name "*.la" -delete
find $RPM_BUILD_ROOT -type f -name "*.a" -delete
# Register as an application to be visible in the software center
#
# NOTE: It would be *awesome* if this file was maintained by the upstream
# project, translated and installed into the right place during `make install`.
#
# See http://www.freedesktop.org/software/appstream/docs/ for more details.
#
mkdir -p $RPM_BUILD_ROOT%{_datadir}/appdata
cat > $RPM_BUILD_ROOT%{_datadir}/appdata/glade-3.appdata.xml <<EOF
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright 2014 Richard Hughes <richard@hughsie.com> -->
<!--
UpstreamURL: https://git.gnome.org/browse/glade/plain/data/glade.appdata.xml.in
-->
<application>
<id type="desktop">glade-3.desktop</id>
<metadata_license>CC0-1.0</metadata_license>
<description>
<p>
Glade is a tool providing quick and easy development of user interfaces for the
GTK+ 2 toolkit and the GNOME desktop environment.
</p>
<p>
The user interfaces designed in Glade are saved as XML, and can be loaded
dynamically into applications by using GtkBuilder.
Those files can be used in many programming languages including C, C++, C#, Vala,
Java, Perl, Python, and others.
Glade's ability to connect widget signals with corresponding functions makes the
integration of user interfaces into code even simpler.
</p>
<p>
This package contains Glade for GTK+ 2.x. For GTK+ 3.x support, please install
the 'glade' package instead.
</p>
</description>
<url type="homepage">http://glade.gnome.org/</url>
<screenshots>
<screenshot type="default">http://glade.gnome.org/images/glade-main-page.png</screenshot>
</screenshots>
<updatecontact>glade-devel_at_lists.ximian.com</updatecontact>
</application>
EOF
%find_lang glade3 --with-gnome
# Rpath
chrpath --delete $RPM_BUILD_ROOT%{_libdir}/glade3/modules/libgladegnome.so
chrpath --delete $RPM_BUILD_ROOT%{_libdir}/glade3/modules/libgladegtk.so
chrpath --delete $RPM_BUILD_ROOT%{_libdir}/glade3/modules/libgladepython.so
%check
desktop-file-validate $RPM_BUILD_ROOT%{_datadir}/applications/glade-3.desktop
%ldconfig_scriptlets libgladeui
%files -f glade3.lang
%doc AUTHORS
%doc ChangeLog
%doc COPYING.GPL
%doc NEWS
%doc README
%doc TODO
%{_bindir}/glade-3
%{_datadir}/appdata/glade-3.appdata.xml
%{_datadir}/applications/glade-3.desktop
%{_datadir}/icons/hicolor/16x16/apps/glade-3.png
%{_datadir}/icons/hicolor/22x22/apps/glade-3.png
%{_datadir}/icons/hicolor/24x24/apps/glade-3.png
%{_datadir}/icons/hicolor/32x32/apps/glade-3.png
%{_datadir}/icons/hicolor/48x48/apps/glade-3.png
%{_datadir}/icons/hicolor/scalable/apps/glade-3.svg
%files libgladeui
%doc COPYING
%doc COPYING.GPL
%doc COPYING.LGPL
%{_libdir}/libgladeui-1.so.*
%dir %{_datadir}/glade3
%{_datadir}/glade3/catalogs
%{_datadir}/glade3/pixmaps
%dir %{_libdir}/glade3
# Contains *.so files that are not symlinked to *.so.* files.
%{_libdir}/glade3/modules
%files libgladeui-devel
%doc COPYING.GPL
%{_libdir}/libgladeui-1.so
%{_libdir}/pkgconfig/gladeui-1.0.pc
%dir %{_datadir}/gtk-doc
%dir %{_datadir}/gtk-doc/html
%dir %{_datadir}/gtk-doc/html/gladeui
%doc %{_datadir}/gtk-doc/html/gladeui/*
%dir %{_includedir}/libgladeui-1.0
%{_includedir}/libgladeui-1.0/gladeui
%changelog
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2:3.8.6-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2:3.8.6-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2:3.8.6-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2:3.8.6-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
* Thu Jan 11 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2:3.8.6-2
- Remove obsolete scriptlets
* Tue Aug 08 2017 Kalev Lember <klember@redhat.com> - 2:3.8.6-1
- Update to 3.8.6
- Don't require devhelp for the library subpackage
- Co-own gtk-doc directories
- Update descriptions / appdata to make it clearer it's for GTK+ 2.x
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2:3.8.5-10
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2:3.8.5-9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2:3.8.5-8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
* Tue Jun 21 2016 Huzaifa Sidhpurwala - 2:3.8.5-7
- Move to python3
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2:3.8.5-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:3.8.5-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
* Thu Mar 26 2015 Richard Hughes <rhughes@redhat.com> - 2:3.8.5-4
- Add an AppData file for the software center
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:3.8.5-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:3.8.5-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
* Thu May 15 2014 Kalev Lember <kalevlember@gmail.com> - 2:3.8.5-1
- Update to 3.8.5
* Tue May 13 2014 Jaromir Capik <jcapik@redhat.com> - 2:3.8.4-3
- Fixing double colon in the libgladeui requires (#1051204)
* Fri Apr 25 2014 Peter Robinson <pbrobinson@fedoraproject.org> 2:3.8.4-2
- Fix FTBFS on rawhide
* Fri Sep 20 2013 Kalev Lember <kalevlember@gmail.com> - 2:3.8.4-1
- Update to 3.8.4
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:3.8.3-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
* Sun Feb 24 2013 Kalev Lember <kalevlember@gmail.com> - 2:3.8.3-3
- Remove the desktop file vendor prefix
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:3.8.3-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
* Tue Dec 04 2012 Kalev Lember <kalevlember@gmail.com> - 2:3.8.3-1
- Update to 3.8.3
- Clarify the summary and description to show it's the gtk2 version (#882557)
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:3.8.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
* Fri Apr 13 2012 Kalev Lember <kalevlember@gmail.com> - 2:3.8.2-1
- Revert back to gtk2-based 3.8.2 -- following upstream, the gtk3
version is now in 'glade' package (#731227)
* Sat Mar 17 2012 Kalev Lember <kalevlember@gmail.com> - 1:3.11.0-2
- Backport patch to add glade_signal_editor_get_widget(), needed for Anjuta
* Sun Feb 26 2012 Matthias Clasen <mclasen@redhat.com> - 1:3.11.0-1
- Update to 3.11.0
* Mon Jan 30 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 1:3.10.2-3
- Fix dependencies RHBZ 671592 and 604356
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.10.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
* Fri Nov 24 2011 Matthias Clasen <mclasen@redhat.com> - 1:3.10.2-1
- Update to 3.10.2
* Fri Sep 16 2011 John (J5) Palmieri <johnp@redhat.com> - 1:3.10.0-4
- add gnome-common to the BuildRequires
* Fri Sep 16 2011 John (J5) Palmieri <johnp@redhat.com> - 1:3.10.0-3
- add patch to make compile against pygobject3 so that we can
load custom python widgets
* Sat May 07 2011 Christopher Aillon <caillon@redhat.com> - 1:3.10.0-2
- Update scriptlets
* Thu Apr 14 2011 Kalev Lember <kalev@smartlink.ee> - 1:3.10.0-1
- Update to 3.10.0
- Build with gtk3 (#678078)
- Enabled introspection
- Use pygobject instead of pygtk2 for glade-python
- Dropped upstreamed glade-3.9.2-doc.patch
* Thu Mar 31 2011 Dan Horák <dan[at]danny.cz> - 1:3.9.2-3
- better build fix
* Fri Mar 18 2011 Dan Horák <dan[at]danny.cz> - 1:3.9.2-2
- fix build on s390(x)
* Tue Feb 22 2011 Rakesh Pandit <rakesh@fedoraproject.org> - 1:3.9.2-1
- Added epoch to keep update path working
- Removed old patches
- Updated to 3.9.2 (GNOME 3)
* Added signal for IDEs to track created signal editors,
Johannes Schmid.
* Stop installing catalog .xml.in files, Emilio Pozuelo Monfort.
Fixed various memory leaks.
* Removed GtkTreeSelection from the palette, it's only available as
the internal child of a GtkTreeView
* Fixed Drag'n'Drop image drawing with cairo for signal editor,
Johannes Schmid with help from Benjamin Otte.
* Fixed crashes and memory leaks in the GladeBaseEditor (the editor
used for menu editing and treeview editing and the like).
* Edit->Preferences is now File->Properties
* Removed option for project naming policies, object ids in
GtkBuilder are always unique across the whole file.
* Render project widgets in the workspace offscreen, this gives us
more power over the widgets (combo boxes can now be selected,
selection drawing is now enhanced), Juan Pablo Ugarte.
* Added support for GtkComboBoxText with a customized editor to
edit the combo box items.
* Added GtkRecentFilter and GtkRecentManager to the palette,
GtkRecentFilter can specify patterns, mime-types and applications
for the filtering.
* Added support to edit patterns and mime-types for GtkFileFilter
* Added <add-child-verify-function> to the plugin backend,
we now use this to better police user activities in Glade
(notably, you cannot paste a widget that is not a GtkToolItem
to a GtkToolBar or the like).
* Renamed various things from glade-3/glade3 to 'glade'
(the Glade icon, the bugzilla database, the git repository etc,
help from Javier Jardón).
* Glade now uses GtkApplication and is a single instance application.
* Added support for editing a GtkOffscreenWindow
* Changed the workspace to now include all toplevel project objects,
selecting an object from the inspector causes the workspace to scroll
to the selected widget, Juan Pablo Ugarte.
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.7.1-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
* Fri Jul 23 2010 David Malcolm <dmalcolm@redhat.com> - 3.7.1-2
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
* Tue May 18 2010 Adam Miller <maxamillion@fedorproject.org> 3.7.1-1
- Update to 3.7.1
* Wed May 05 2010 Bastien Nocera <bnocera@redhat.com> 3.7.0-1
- Update to 3.7.0
* Fri Jul 24 2009 Release Engineering <rel-eng@fedoraproject.org> - 3.6.7-2
- Autorebuild for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
* Tue Jun 30 2009 Matthias Clasen <mclasen@redhat.com> - 3.6.7-1
- Version bump to 3.6.7.
* Fixed crashes when handling GtkTextView in GtkBuilder format.
* Fixed loading and saving of GtkIconSources.
* GNOME Goal: removed deprecated Gtk+ symbols. (GNOME Bugzilla #572756)
* Fixed obscure crash when loading a project. (GNOME Bugzilla #585860)
* Introspect lowest GTK+ project dependancy when loading files with missing
versioning information. (GNOME Bugzilla #586046)
* Detect correct modifiers and buttons to spawn a context menu in a platform
independant way. (GNOME Bugzilla #587128)
* http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.7.news
* http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.6.news
* http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.7.changes
* http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.6.changes
- Drop the menu patch, since glade-3 is the version we install
by default now, and it didn't work right anyway
* Mon Jun 15 2009 Matthias Clasen <mclasen@redhat.com> - 3.6.5-1
- Version bump to 3.6.5.
* GtkButton only accepts real stock items and GtkImage but not icons.
* Removed buggy query dialog from GtkNotebook creation. (GNOME Bugzilla
#578727)
* Removed hard coded size request to palette. (GNOME Bugzilla #579624)
* Atk proxy objects should always have unique names. (GNOME Bugzilla
#579565)
* Fixed output format for GtkLabel attributes. (GNOME Bugzilla #579793)
* Widget names should be unique withing the project. (GNOME Bugzilla
#580745)
* Dialogs should not disappear on pressing ESC. (GNOME Bugzilla #582559)
* Properly load sizes of fixed/layout children. (GNOME Bugzilla #584334)
* http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.5.news
* http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.4.news
* http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.3.news
* http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.5.changes
* http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.4.changes
* http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.3.changes
* Mon Apr 27 2009 Matthias Clasen <mclasen@redhat.com> - 3.6.2-2
- Don't drop schemas translations from po files
* Fri Apr 17 2009 Debarshi Ray <rishi@fedoraproject.org> - 3.6.2-1
- Version bump to 3.6.2.
* Fixed missing properties/attributes when serializing a GtkWindow. (GNOME
Bugzilla #578211)
* Fixed loading state of GtkCellRenderer attributes (whether to use
attribute or property directly). (GNOME Bugzilla #566928)
* Translation updates: es, sr and sr@latin.
* http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.2.news
* http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.2.changes
- Fixed gladeui-1.0.pc.in by trimming 'Requires' list.
* Tue Apr 07 2009 Debarshi Ray <rishi@fedoraproject.org> - 3.6.1-1
- Version bump to 3.6.1.
* Fixed crash during internal widget selection.
* Fixed Libglade regression. Libglade needs specific ordering of properties,
ATK props, signals and accelerators.
* Disable loading and displaying of 'data' property on GtkTreeStore. Only
GtkListStore understands the 'data' construct.
* Properly initialize a GValue on the stack. (GNOME Bugzilla #577822)
* Translation updates: ar and cs.
* http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.1.news
* http://ftp.gnome.org/pub/GNOME/sources/glade3/3.6/glade3-3.6.1.changes
- Added 'Requires: devhelp' to glade3-libgladeui.
- Removed 'Requires: gtk2-devel >= 2.14.0 libxml2-devel pkgconfig' from
glade3-libgladeui-devel. Let rpm-4.6 autogenerate them.
* Tue Mar 17 2009 Debarshi Ray <rishi@fedoraproject.org> - 3.6.0-1
- Version bump to 3.6.0.
* Support for both GtkBuilder and Libglade, and conversion from one format
to the other.
* Support for GtkAction.
* New interface to allow plugins to define editor layouts on a class level
basis, and new customized editors for GtkButton, GtkImage and GtkEntry.
* New Python plugin for instrospecting and loading Python class properties
and signals, and adding them to the palette automatically.
* Support for filtering and searching the project using the inspector.
* Support for inline editing of widgets in a dialog.
* Cut and pasted widgets should retain original names. (GNOME Bugzilla
#567809)
* The "after" property for a signal handler should be saved to the project
file. (GNOME Bugzilla #573453)
* Fixed crash when choosing not to save a project with errors. (GNOME
Bugzilla #574706)
* Translation updates: el, fr, da, ml, gl, te, lt, pt, or, cs, it, th, en_GB,
sv, ru, fi, de, tr, lv, ko, es, sv, hu, eu, vi and pt_BR.
- Updated License to reflect recent licensing changes according to Fedora
licensing guidelines.
- Stripped redundant translations from .mo files. (GNOME Bugzilla #474987)
* Tue Feb 24 2009 Release Engineering <rel-eng@fedoraproject.org> - 3.5.7-2
- Autorebuild for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
* Wed Feb 18 2009 Matthias Clasen <mclasen@redhat.com> - 3.5.7-1
- Version bump to 3.5.7.
* Allow Anjuta to handle clicks on widgets in the designer. (GNOME Bugzilla
#542337)
* Allow custom signal editors. (GNOME Bugzilla #540691)
* Support running from gtk2-2.14 targetting gtk2-2.16.
* Translation updates: de, es, fi, he, ko and pt_BR.
* http://ftp.gnome.org/pub/GNOME/sources/glade3/3.5/glade3-3.5.7.news
* http://ftp.gnome.org/pub/GNOME/sources/glade3/3.5/glade3-3.5.7.changes
* Sat Jan 31 2009 Rakesh Pandit <rakesh@fedoraproject.org> - 3.5.6-1
- Version bump to 3.5.6.
* Handles new GdkPixbuf properties. (GNOME Bugzilla #567454)
* Translation updates: es, nb and pt_BR.
* http://ftp.gnome.org/pub/GNOME/sources/glade3/3.5/glade3-3.5.6.news
* http://ftp.gnome.org/pub/GNOME/sources/glade3/3.5/glade3-3.5.6.changes
- Fixed unowned directories in libgladeui-devel. (Red Hat Bugzilla #483311)
* Wed Jan 07 2009 Debarshi Ray <rishi@fedoraproject.org> - 3.5.5-1
- Version bump to 3.5.5.
* Improved model data editor with sequential editing mode and better key
navigations.
* Translation updates: es.
* http://ftp.gnome.org/pub/GNOME/sources/glade3/3.5/glade3-3.5.5.news
* http://ftp.gnome.org/pub/GNOME/sources/glade3/3.5/glade3-3.5.5.changes
- Removed 'Provides: glade'.
- Addressed warnings generated by rpmlint.
* Thu Dec 18 2008 Debarshi Ray <rishi@fedoraproject.org> - 3.5.4-1
- Version bump to 3.5.4.
* Some files in plugins/gtk+ have been relicensed from GPLv2+ to LGPLv2+.
* Support for GtkIconFactory, GtkAccelGroup, GtkSizeGroup, GtkListStore,
GtkTreeStore, GtkTreeViewColumn, GtkTreeView, GtkIconView, GtkComboBox and
GtkCellRenderer derivatives.
* GtkBuilder support for GtkMenu hierarchies.
* Added versioning support. One can chose the target version of a project
starting from gtk2-2.8.
* New GtkTreeView editor for combo-boxes and icon views.
* Beefed up editor widget with icon and class header.
* Better resizing in editors for property names, warnings and inputs.
* Simplified accelerator editor.
* New Pango attributes editor for GtkLabel.
* Widgets and their properties in .glade files are now saved in the same
order. (GNOME Bugzilla #422823)
* Permit working with non-GtkWindow top-level widgets. (GNOME Bugzilla
#532636)
* Simplified and improved stock-id properties to allow use of custom icons
from factories.
* Translation updates: ar, bg, da, de, en_gb, es, et, fi, fr, gl, gu, he,
hi, hu, it, ko, ml, mr, nl, oc, pl, pt, pt_BR, ru, sr.po, sr@latin, sv,
th, tr, vi, zh_HK and zh_TW.
* http://ftp.gnome.org/pub/GNOME/sources/glade3/3.5/glade3-3.5.3.news
* http://ftp.gnome.org/pub/GNOME/sources/glade3/3.5/glade3-3.5.2.news
* http://ftp.gnome.org/pub/GNOME/sources/glade3/3.5/glade3-3.5.1.news
* http://ftp.gnome.org/pub/GNOME/sources/glade3/3.5/glade3-3.5.4.changes
* http://ftp.gnome.org/pub/GNOME/sources/glade3/3.5/glade3-3.5.3.changes
* http://ftp.gnome.org/pub/GNOME/sources/glade3/3.5/glade3-3.5.2.changes
* http://ftp.gnome.org/pub/GNOME/sources/glade3/3.5/glade3-3.5.1.changes
* Tue Sep 16 2008 Debarshi Ray <rishi@fedoraproject.org> - 3.4.5-1
- Version bump to 3.4.5.
* http://ftp.gnome.org/pub/GNOME/sources/glade3/3.4/glade3-3.4.5.news
* http://ftp.gnome.org/pub/GNOME/sources/glade3/3.4/glade3-3.4.5.changes
* Wed Apr 19 2008 Debarshi Ray <rishi@fedoraproject.org> - 3.4.4-1
- Version bump to 3.4.4.
* Duplicate widget names not allowed in a project.
* Translation updates: sq, tr, bg, da, es, en_GB, ml, pt_BR and hi.
* http://ftp.gnome.org/pub/GNOME/sources/glade3/3.4/glade3-3.4.4.news
* http://ftp.gnome.org/pub/GNOME/sources/glade3/3.4/glade3-3.4.4.changes
* Wed Mar 12 2008 Debarshi Ray <rishi@fedoraproject.org> - 3.4.3-1
- Version bump to 3.4.3.
* Ported to GtkTooltip. (GNOME Bugzilla #500947)
* Translation updates: nb, ru, fr, lt, mk, it, hu, pt_BR, en_GB, gl, ca, fi,
de, pt, th, uk, he, tr, vi, oc, sv, ar, es and ja.
* http://ftp.gnome.org/pub/GNOME/sources/glade3/3.4/glade3-3.4.3.news
* http://ftp.gnome.org/pub/GNOME/sources/glade3/3.4/glade3-3.4.2.news
* http://ftp.gnome.org/pub/GNOME/sources/glade3/3.4/glade3-3.4.3.changes
* http://ftp.gnome.org/pub/GNOME/sources/glade3/3.4/glade3-3.4.2.changes
* Sun Mar 02 2008 Debarshi Ray <rishi@fedoraproject.org> - 3.4.1-5
- Removed 'BuildRequires: gtk-doc' from all distributions, except Fedora 7.
- Added 'Requires: gtk-doc' for glade3-libgladeui-devel.
* Sun Mar 02 2008 Debarshi Ray <rishi@fedoraproject.org> - 3.4.1-4
- Replaced 'BuildRequires: chrpath' with 'BuildRequires: libtool' for removing
rpaths.
* Sun Feb 03 2008 Debarshi Ray <rishi@fedoraproject.org> - 3.4.1-3
- Omitted unused direct shared library dependencies.
* Fri Dec 21 2007 Debarshi Ray <rishi@fedoraproject.org> - 3.4.1-2
- Removed deletion of /var/lib/scrollkeeper from all distributions, except
Fedora 7.
* Thu Dec 20 2007 Debarshi Ray <rishi@fedoraproject.org> - 3.4.1-1
- Version bump to 3.4.1.
* Translation updates: nb, sl, et, ar, tr, gl, ko, ja and pt_BR.
* http://ftp.gnome.org/pub/GNOME/sources/glade3/3.4/glade3-3.4.1.news
* http://ftp.gnome.org/pub/GNOME/sources/glade3/3.4/glade3-3.4.1.changes
* Tue Nov 27 2007 Debarshi Ray <rishi@fedoraproject.org> - 3.4.0-5
- Fixed usage of _remove_encoding to prevent failure on Fedora 7.
- Added 'BuildRequires: gtk-doc' and 'BuildRequires: scrollkeeper' to prevent
failure on Fedora 7.
* Sun Nov 25 2007 Debarshi Ray <rishi@fedoraproject.org> - 3.4.0-4
- Removed Encoding from Desktop Entry for all distributions, except Fedora 7.
* Tue Nov 13 2007 Debarshi Ray <rishi@fedoraproject.org> - 3.4.0-3
- Clarified multiple licensing issues according to Fedora licensing guidelines.
- Trimmed the 'BuildRequires' list.
- Trimmed the 'Requires' list for glade3-libgladeui-devel.
- Removed custom config files for /etc/ld.so.conf.d.
* Wed Nov 07 2007 Debarshi Ray <rishi@fedoraproject.org> - 3.4.0-2
- Added 'BuildRequires: chrpath' for removing rpaths.
* Tue Nov 06 2007 Debarshi Ray <rishi@fedoraproject.org> - 3.4.0-1
- Initial build. Imported SPEC written by Yijun Yuan and fixed by Tim
Lauridsen.
* Translation updates: et, es, fi, gl, sv, en_CA, ja, pt_BR, th, hu, pt, da,
vi, bg, lt, mk, nb, uk, it, de, si, bn, fr, ar, en_GB, ru, pl and ca.
- Included custom config files for /etc/ld.so.conf.d.
- Changed Name to differentiate with Glade-2.