Age | Commit message (Collapse) | Author | Files | Lines |
|
0.11 tree, which is also used by other packages.
|
|
* Fix non-OpenType fonts losing kerning in 1.12.0 [#336026, Denis Jacquerye]
* Fix blurred underlines on Win32 [#332656, Tor Lillqvist]
* Build fix when having both Win32 and FreeType cairo backends available
[#337502, Alexander Larsson]
* Bugs fixed in this release:
334802,336026,332656,337502
|
|
not break when using this script. This should avoid having to patch some
po files to "fix" them.
|
|
I missed this in my commit earlier.
|
|
changes:
* Documentation improvements
* New locales
* Cleanup
* Bugfixes
|
|
changes:
-enum/leak fix
|
|
RECOMMENDED is removed. It becomes ABI_DEPENDS.
BUILDLINK_RECOMMENDED.foo becomes BUILDLINK_ABI_DEPENDS.foo.
BUILDLINK_DEPENDS.foo becomes BUILDLINK_API_DEPENDS.foo.
BUILDLINK_DEPENDS does not change.
IGNORE_RECOMMENDED (which defaulted to "no") becomes USE_ABI_DEPENDS
which defaults to "yes".
Added to obsolete.mk checking for IGNORE_RECOMMENDED.
I did not manually go through and fix any aesthetic tab/spacing issues.
I have tested the above patch on DragonFly building and packaging
subversion and pkglint and their many dependencies.
I have also tested USE_ABI_DEPENDS=no on my NetBSD workstation (where I
have used IGNORE_RECOMMENDED for a long time). I have been an active user
of IGNORE_RECOMMENDED since it was available.
As suggested, I removed the documentation sentences suggesting bumping for
"security" issues.
As discussed on tech-pkg.
I will commit to revbump, pkglint, pkg_install, createbuildlink separately.
Note that if you use wip, it will fail! I will commit to pkgsrc-wip
later (within day).
|
|
(25 March 2006, from /branches/1.3.x)
http://svn.collab.net/repos/svn/tags/1.3.1
pkgsrc changes:
- Remove patch-ae, now fixed upstream.
User-visible-changes:
- Client:
* fixed: segfault moving unversioned files (issue #2436)
* fixed: verbose list broken over ra_dav (issue #2442)
* fixed: 'svn ci -m path_name' not requiring '--force-log' (r17956)
* fixed: crash on mixed-case https URL scheme (r18042)
* fixed: crash in status with ignored directories (r18291)
* fixed: strip peg rev from default checkout directory (r18416)
* fixed: diff crash with non-recursive checkout (r17231, 18539, -41)
* fixed: 'svn ls' URL encoding bug with locks (r18665, -68)
* fixed: unlock circumvents lock token check (r18691, -94)
* fixed: repos-to-repos copy crash (r18451)
* fixed: 'svnmerge' utility improvements (r18811)
* translation updates for German, Swedish and Norwegian
- Server:
* fixed: set svn:date at the end of commit in fsfs (r18078)
* fixed: don't wait for hook script background jobs (r18146)
* fixed: mod_dav_svn should log the whole error chain (r18211)
* fixed: uncomment section headers in repos config files (r18247, -50)
* fixed: log scalability issues with many paths (r18395, -404)
* fixed: better path input validation in mod_dav_svn (r18660)
* fixed: assert in copy in fsfs and bdb (issue #2398)
* fixed: RPM package bad interaction with NFS servers (issue #1456)
- Both:
* fixed: copyright years updated to include 2006 (r18021, -127)
Developer-visible-changes:
* fixed: missing #include (r18065)
* fixed: allow building with Neon 0.25.5 (r18215)
* fixed: error leaks (18196, -249)
* javahl bindings:
- fixed: compile error on Visual Studio 2005 (r18054, -55)
* python bindings:
- fixed: libsvn_swig_py link problem on Solaris 10 (r17910)
- fixed: pool lifetime bug (r17992)
- fixed: memory leak (r18230)
- fixed: race condition during application pool initialization (r18721)
* ruby bindings:
- fixed: pool management issue (r17795, -811)
- fixed: protect baton from garbage collection (r17627)
- fixed: conversion bug (r17726, -925)
- fixed: compile errors with SWIG 1.3.24 (r18456, -58)
|
|
against the curses library used.
|
|
sure that we preserve any other MAKE_FLAGS when setting INSTALL_MAKE_FLAGS.
|
|
any more in pkgsrc since the latest package using them (evolution14) is
now gone.
|
|
It does not install info file, but does create directory.
|
|
|
|
There have been a number of API changes and several methods have been
depreciated in this release. Although current GNUstep programs that use
these methods will still work in this version, there are enough changes
that a new library version was considered useful. See the release notes
for more details
New NSStream classes where added to the library.
User defaults were restructured to create the defaults lazily and
can be set to not write to an external file at all, for developers who
wish to use the library as a stand-alone library or in other situations
where using external resources is not desired.
|
|
* Minor fixes.
|
|
Version 3.81
* GNU make is ported to OS/2.
* GNU make is ported to MinGW. The MinGW build is only supported by
the build_w32.bat batch file; see the file README.W32 for more
details.
* WARNING: Future backward-incompatibility!
Up to and including this release, the '$?' variable does not contain
any prerequisite that does not exist, even though that prerequisite
might have caused the target to rebuild. Starting with the _next_
release of GNU make, '$?' will contain all prerequisites that caused
the target to be considered out of date. See this Savannah bug:
http://savannah.gnu.org/bugs/index.php?func=detailitem&item_id=16051
* WARNING: Backward-incompatibility!
GNU make now implements a generic "second expansion" feature on the
prerequisites of both explicit and implicit (pattern) rules. In order
to enable this feature, the special target '.SECONDEXPANSION' must be
defined before the first target which takes advantage of it. If this
feature is enabled then after all rules have been parsed the
prerequisites are expanded again, this time with all the automatic
variables in scope. This means that in addition to using standard
SysV $$@ in prerequisites lists, you can also use complex functions
such as $$(notdir $$@) etc. This behavior applies to implicit rules,
as well, where the second expansion occurs when the rule is matched.
However, this means that when '.SECONDEXPANSION' is enabled you must
double-quote any "$" in your filenames; instead of "foo: boo$$bar" you
now must write "foo: foo$$$$bar". Note that the SysV $$@ etc. feature,
which used to be available by default, is now ONLY available when the
.SECONDEXPANSION target is defined. If your makefiles take advantage
of this SysV feature you will need to update them.
* WARNING: Backward-incompatibility!
In order to comply with POSIX, the way in which GNU make processes
backslash-newline sequences in command strings has changed. If your
makefiles use backslash-newline sequences inside of single-quoted
strings in command scripts you will be impacted by this change. See
the GNU make manual subsection "Splitting Command Lines" (node
"Splitting Lines"), in section "Command Syntax", chapter "Writing the
Commands in Rules", for details.
* WARNING: Backward-incompatibility!
Some previous versions of GNU make had a bug where "#" in a function
invocation such as $(shell ...) was treated as a make comment. A
workaround was to escape these with backslashes. This bug has been
fixed: if your makefile uses "\#" in a function invocation the
backslash is now preserved, so you'll need to remove it.
* New command-line option: -L (--check-symlink-times). On systems that
support symbolic links, if this option is given then GNU make will
use the most recent modification time of any symbolic links that are
used to resolve target files. The default behavior remains as it
always has: use the modification time of the actual target file only.
* The "else" conditional line can now be followed by any other valid
conditional on the same line: this does not increase the depth of the
conditional nesting, so only one "endif" is required to close the
conditional.
* All pattern-specific variables that match a given target are now used
(previously only the first match was used).
* Target-specific variables can be marked as exportable using the
"export" keyword.
* In a recursive $(call ...) context, any extra arguments from the outer
call are now masked in the context of the inner call.
* Implemented a solution for the "thundering herd" problem with "-j -l".
This version of GNU make uses an algorithm suggested by Thomas Riedl
<thomas.riedl@siemens.com> to track the number of jobs started in the
last second and artificially adjust GNU make's view of the system's
load average accordingly.
* New special variables available in this release:
- .INCLUDE_DIRS: Expands to a list of directories that make searches
for included makefiles.
- .FEATURES: Contains a list of special features available in this
version of GNU make.
- .DEFAULT_GOAL: Set the name of the default goal make will
use if no goals are provided on the command line.
- MAKE_RESTARTS: If set, then this is the number of times this
instance of make has been restarted (see "How Makefiles Are Remade"
in the manual).
- New automatic variable: $| (added in 3.80, actually): contains all
the order-only prerequisites defined for the target.
* New functions available in this release:
- $(lastword ...) returns the last word in the list. This gives
identical results as $(word $(words ...) ...), but is much faster.
- $(abspath ...) returns the absolute path (all "." and ".."
directories resolved, and any duplicate "/" characters removed) for
each path provided.
- $(realpath ...) returns the canonical pathname for each path
provided. The canonical pathname is the absolute pathname, with
all symbolic links resolved as well.
- $(info ...) prints its arguments to stdout. No makefile name or
line number info, etc. is printed.
- $(flavor ...) returns the flavor of a variable.
- $(or ...) provides a short-circuiting OR conditional: each argument
is expanded. The first true (non-empty) argument is returned; no
further arguments are expanded. Expands to empty if there are no
true arguments.
- $(and ...) provides a short-circuiting AND conditional: each
argument is expanded. The first false (empty) argument is
returned; no further arguments are expanded. Expands to the last
argument if all arguments are true.
* Changes made for POSIX compatibility:
- Only touch targets (under -t) if they have at least one command.
- Setting the SHELL make variable does NOT change the value of the
SHELL environment variable given to programs invoked by make. As
an enhancement to POSIX, if you export the make variable SHELL then
it will be set in the environment, just as before.
* On MS Windows systems, explicitly setting SHELL to a pathname ending
in "cmd" or "cmd.exe" (case-insensitive) will force GNU make to use
the DOS command interpreter in batch mode even if a UNIX-like shell
could be found on the system.
* On VMS there is now support for case-sensitive filesystems such as ODS5.
See the readme.vms file for information.
* Parallel builds (-jN) no longer require a working Bourne shell on
Windows platforms. They work even with the stock Windows shells, such
as cmd.exe and command.com.
* Updated to autoconf 2.59, automake 1.9.5, and gettext 0.14.1. Users
should not be impacted.
* New translations for Swedish, Chinese (simplified), Ukrainian,
Belarusian, Finnish, Kinyarwandan, and Irish. Many updated
translations.
A complete list of bugs fixed in this version is available here:
http://savannah.gnu.org/bugs/index.php?group=make&report_id=111&fix_release_id=103
|
|
Changes in version 1.11.4:
=========================
* Enhanced documentation: gtk-doc API docs are
now at 100% coverage.
* allow for NULL in-params to AtkImage coordinate APIs.
* New langs: Georgian (ka) Vladimir Sichinava
Oriya (or) Gora Mohanty
|
|
Differences include better tracing functionality, and some internal
changes for some functions returning boolean values.
The target now runs again on my big-endian UltrasparcIIi Solaris 9
machine.
|
|
|
|
certain circumstances, observed devel/gettext-tools.
fixes PR pkg/32886 from Lloyd Parkes.
bump PKGREVISION.
|
|
|
|
Tailor is a tool to migrate changesets between ArX, Bazaar,
`Bazaar-NG`, CVS, Codeville, Darcs, Git, Mercurial, Monotone,
Subversion, and Tla repositories.
This script makes it easier to keep the upstream changes merged in
a branch of a product, storing needed information such as the
upstream URI and revision in special properties on the branched
directory.
|
|
|
|
Bump PKGREVISION to 1.
|
|
* Honor PKGINFODIR and EMACS_INFOPREFIX.
|
|
etc. Fix the paths to the tools embedded in the prcs binary. Also
set the default PRCS repository to /var/PRCS instead of $HOME/PRCS,
where HOME is the default home directory of the user building the
package.
Bump the PKGREVISION to 3.
|
|
|
|
location for both emacs and xemacs.
* List the info files directly in the PLIST.
* Use EMACS_MODULES to deal with a possible xemacs-packages dependency.
|
|
CHECK_WRKREF). Bump PKGREVISION to 4.
|
|
|
|
libgnomeui 2.14.0
-----------------
* Docs
- Update the API docs a lot (Dinoop Tomas)
* Updated and new translations:
- cs (Petr Tomes), de (Hendrik Brandt), hu (Gabor Kelemen),
it (Francesco Marletta), ka (Vladimer Sichinava)
nn (Kjartan Maraas), pl (GNOME PL team), ro (Misu Moldavan),
sv (Daniel Nylander)
libgnomeui 2.13.90
------------------
* Fix critical warnings in gnome-icon-list (Harry Lu)
* Fix permissions on created directories in the file selector
(Federico)
* Portability improvements in the file chooser (Mark)
* Make the authentication dialog thread safe (jylefort at freebsd org)
* Remove some redundant strings (Clytie Siddall)
* Fix typo in the docs (Behdad)
libgnomeui 2.13.3
-----------------
* Don't scale up small images when creating thumbnails (Lucas Rocha)
* Fix critical warning and crash in thumbnailer (Alex Larsson)
libgnomeui 2.13.2
-----------------
* Sync GOption code with latest libgnome (Christian)
libgnomeui 2.13.1
-----------------
* Fix mime type problem with the thumbnailer (Bastien)
* Fix a crasher (Felix Riemann)
* Fix leaks in the GOption code (Christian Perch)
* Thread safety fixes (jylefort at FreeBSD org)
* Warning fixes (Kjartan)
* Leak fixes in the GOption code (Christian Perch)
libgnomeui 2.13.0
-----------------
* Support the icon theme name spec (Dobey)
* Remove some stale code in the file selector (Kjartan)
* Fix a leak in gnome_entry_save_history() (Paolo Borelli) [
* Fix a GnomeCanvas-CRITICAL warning in gnome-icon-item (Federico)
[#323521]
* Scale images before doing a thumbnail to avoid
eating up all ram on very large images (Victor STINNER) [#307885]
* Fix a crash in gnomefileentry (Petr Mladek) [#315549]
* Fix a mem leak (Kjartan)
* Skip hidden pages in GnomeDruid (Ricardo Fernández Pascual) [#89145]
* Remove useless check and warning about (Jens Elkner) [#118532]
* Don't use gnome-keyring on Win32 (Tor Lillqvist)
* Add support for GOption argument parsing (Pawel Sliwowski, chpe) [#307312]
* Focus the first non-empty field in the password dialog (Nate Nielsen) [#318026]
* Convert text from the file entry to filename encoding before returning it.
Patch from Yydzero <yandong.yao@sun.com>, [#321144]
* Translation updates:
* Mahay Alam Khan (bn)
* Miloslav Trmac (cs)
* Marie Lund (da)
* Adam Weinberger (en_CA)
* Francisco Javier F. Serrador (es)
* Ivar Smolin (et)
* Ignacio Casal Quinteiro (gl)
* Reinout van Schouwen (nl)
* Marcel Telka (sk)
* Christian Rose (sv)
* Theppitak Karoonboonyanan (th)
* Albert Fazlí (tt)
* Funda Wang (zh_CN)
|
|
What's new in at-spi-1.7.4:
* Fixed dist to include Accessibility_Selector.idl (missing from dist though
in cvs since 1.7.3).
* Bugfixes to EventDetails event support, and fixed event emission for
implementors of SPI_REMOTE_OBJECT.
What's new in at-spi-1.7.0 through 1.7.3:
* Added idl/Accessibility_Selector.idl to the repository (missing in 1.7.0
through 1.7.2, added in 1.7.3)
* DOCS:
All the IDL is now documented with doxygen-compatible docs.
Just run 'doxygen oxyfile' in the IDL directory. (This will
be automated in a future version).
* NEW API:
idl:
Accessibility::Accessible:getAttributes (name/value pair annotation
for all objects)
Accessibility::Accessible:getApplication (retrieves ref to host app)
Accessibility::Component:getAlpha (get transparency/opacity value of component)
Accessibility::Image:getLocale (get POSIX locale for image and
imagedesc)
Accessibility::Text:getAttributeValue (retrieve a single named
attribute value)
Accessibility::Relation:RELATION_PARENT_WINDOW_OF
Accessibility::Role:ROLE_ENTRY, ROLE_CHART, ROLE_CAPTION,
ROLE_DOCUMENT_FRAME, ROLE_HEADING, ROLE_PAGE, ROLE_SECTION (New roles
for complex docs and forms.)
Accessibility::State:STATE_REQUIRED, STATE_TRUNCATED, STATE_ANIMATED,
STATE_INVALID_ENTRY, STATE_SUPPORTS_AUTOCOMPLETION,
STATE_SELECTABLE_TEXT, STATE_IS_DEFAULT (New states, for complex forms)
Accessibility::EventDetails (new, more detailed info marshalled with events)
cspi:
(AccessibleEvent_getSourceName):
(AccessibleEvent_getSourceRole):
(AccessibleEvent_getSourceApplication):
(AccessibleEvent_getSourceDetails):
New methods for interrogating/demarshalling
event details i.e. source's accessible name, role,
and host app.
(Accessible_getAttributes): New, retrieve annotations/attributes
on objects.
(Accessible_getHostApplication): New, retrieve enclosing Application
instance for an object.
(AccessibleImage_getImageLocale): New, retrieve Locale info for an
image.
(AccessibleComponent_getAlpha): New, retrieve alpha value for
an AccessibleComponent (see discussion in idl section above).
* BUGFIXES:
Some compiler fixes from Kjartan Marass.
Some thread-related fixes from Michael Meeks.
Don't allow non-preemptive listeners to pre-empt events! (Bill Haneman).
|
|
Major changes in 2.14.0 were:
* Translation updates
* Fix a11y crash
Major changes in 2.13.92 were:
* Translation fixes for EditableLabel context menu
* Build fixes
Major changes in 2.13.91 were:
* Fix exec line for open-with desktop files
* Translation updates
Major changes in 2.13.90 were:
* Translation updates.
Major changes in 2.13.4 were:
* New background setting mode supported
* Add eel_mime_get_availible_mime_types()
* HIG fixes to open with dialog
* Don't show alerts in taskbar
Major changes in 2.13.3 were:
* Remove titles from alerts
* Use GtkComboBox instead of (deprecated) GtkOptionMenu
Major changes in 2.13.2 were:
* Fix translations in alerts
* Code cleanups
Major changes in 2.13.1 were:
* sort by name in application chooser
|
|
* Reverted incorrect fix which regressed treeview accessibility.
|
|
2.14.0
======
Fixes
- Don't minimize the window when it's on another desktop and it was the last
active window (Vincent) [#331661]
- Fix C89 compliance (Jens Granseuer) [#332866]
Translations
- Rhys Jones (cy)
- Hendrik Richter (de)
- Rajesh Ranjan (hi)
- Raivis Dejus (lv)
- Mugurel Tudor (ro)
- Laurent Dhima (sq)
- Daniel Nylander (sv)
- Maxim Dziumanenko (uk)
2.13.92
=======
Fixes
- Fix window disappearing in workspace switcher after drag and drop (Vincent)
[#317373]
- Fix corrupted drawing of windows (Vincent) [#155502]
- Fix critical warning with action menu of pinned windows (Vincent)
Translations
- Lasse Bang Mikkelsen (da)
- Kostas Papadimas (el)
- Iñaki Larrañaga (eu)
- Gabor Kelemen (hu)
- Aiet Kolkhi (ka)
- Žygimantas Beručka (lt)
- Duarte Loreto (pt)
- Leonid Kanter (ru)
- Woodman Tuen (zh_HK)
- Woodman Tuen (zh_TW)
2.13.91
=======
Misc
- Automate the creation of some files (Torsten Schoenfeld)
- Don't redefine the _ macro for translation (Vincent) [#328621]
- Make the selector widget translations work again (Vincent) [#323181]
Translations
- Vladimir Petkov (bg)
- Miloslav Trmac (cs)
- Priit Laes (et)
- Luca Ferretti (it)
- Takeshi AIHANA (ja)
- Слободан Д. Средојевић (sr)
2.13.90
=======
Fixes
- Fix crash on workspace activation (Elijah, Bart Vanbrabant)
[#327435]
- Include demands-attention/urgent windows unconditionally in
tasklist; this should help users not miss important windows on
other workspaces (Elijah) [#305979]
- Synchronize the right-click-menu with that of Metacity's (Srirama
Sharma, Leena Gunda, Christian Neumair) [#135710]
- Escape window titles used in pango markup, avoids some crashes too
(Vincent Noel, jylefort FreeBSD org) [#306289]
- Correctly catch and handle demands-attention/urgent state changes
for transients of windows in the tasklist (Elijah) [#317541]
- Make the pager Fitts's law compliant when shadow type is none
(Vincent) [#304248]
- Avoid a compiler warning (Kjartan)
Translations
- Jordi Mallach (ca)
- Adam Weinberger (en_CA)
- Lucas Vieites (es)
- Pauli Virtanen (fi)
- Ignacio Casal Quinteiro (gl)
- Ankit Patel (gu)
- Kjartan Maraas (nb)
- Tino Meinen (nl)
- Kjartan Maraas (no)
- Evandro Fernandes Giovanini (pt_BR)
- Theppitak Karoonboonyanan (th)
- Clytie Siddall (vi)
- Wang Jian (zh_CN)
2.13.5
======
Fixes
- Correctly specify the source indication (Elijah)
- Doc generation fixes (Thomas Vander Stichele)
Translations
- Abel Cheung (zh_HK)
2.13.4
======
Features
- Sort window in a group alphabetically (Xavier Claessens, Vincent)
- Change active window when scrolling on the selector (Nigel Tao)
Fixes
- Remove critical warning (Vincent)
- Use virtual desktop size when computing size of pager (Loic Minier, Vincent)
2.13.3
=======
Features
- Add scrolling support to the tasklist (Xavier Claessens)
Misc
- Remove old hack (Vincent)
Translators
- Ivar Smolin (et)
- Kjartan Maraas (nb)
- Kjartan Maraas (nn)
- Kjartan Maraas (no)
2.13.1
=======
Fixes
- Minor code cleanup (Elijah)
Translators
- Erdal Ronahi (ku)
- Ilyas Bakirov (ky)
|
|
libbonoboui 2.14.0
* Fix CORBA object leaks (Adriano Winter Bess)
* Fix bonobo-object-browser .desktop file
(Stephane Loeuillet and Vincent Untz
* Translation updates:
* Žygimantas Beručka (lt)
* Kjartan Maraas (nn)
* Subhransu Behera (or)
* Mişu Moldovan (ro)
libbonoboui 2.13.1
* Fix leaks introduced by the GOption argument handling code
(Christian Perch)
* Sync with latest libgnome (Christian Persch) [#326846]
libbonoboui 2.13.0
* Add support for GOption argument parsing in libgnome (Pawel Sliwowski, chpe) [#307312]
* Don't use deprecated gnome_i18n_get_language_list (Gustavo J. A. M. Carneiro)
* Translation updates:
* Khandakar Mujahidul Islam (bn)
* Jordi Mallach (ca)
* Iñaki Larrañaga Murgoitio (eu)
* Roozbeh Pournader (fa)
* Christophe Merlet (RedFox) (fr)
* Mohammad DAMT (id)
* Alessio Frusciante (it)
* Changwoo Ryu (ko)
* Erdal Ronahi (ku)
* Žygimantas Beručka (lt)
* Tino Meinen (nl)
* Afonso Celso Medina (pt_BR)
* Leonid Kanter (ru)
* Christian Rose (sv)
* Baris Cicek (tr)
* Clytie Siddall (vi)
|
|
libgnome 2.14.0
---------------
What's new since 2.13.90
* Updated and new translations:
- cs (Miroslav Trmac), cy (Rhys Jones), da (Ole Laursen),
de (Frank Arnold), et (Ivar Smolin),
hi (Rajesh Ranjan), hu (Gabor Kelemen), it (Francesco Marletta),
ja (Satoru SATOH), nl (Timo Meinen), nn (Kjartan Maraas),
or (Subhransu Behera), ro (Misu Moldovan), ru (Leonid Kanter),
sv (Daniel Nylander), th (Theppitak Karoonboonyan)
libgnome 2.13.90
----------------
What's new since 2.13.7
* Bug fixes
- Initialize all the members of GnomeModuleInfo
(Christian Perch)
- Use GOption instead of popt as default (Christian Perch)
- Add handling of GNOME_VFS_ERROR_INVALID_URI
(Claudio Saavedra)
libgnome 2.13.7
---------------
What's new since 2.13.6
* Bug fixes
- Fix compilation issues due to the missing inclusion
of popt.h (Emmanuele Bassi)
libgnome 2.13.6
---------------
What's new since 2.13.5
* Bug fixes
- Make popt usage deprecated and move to a full GOption
support (Christian)
libgnome 2.13.5
---------------
What's new since 2.13.4
* Bug fixes
- Fix leaks in GOption code (Christian)
- Don't make toolbars detachable by default (Sebastien)
- Build related cleanups (Mark, Kjartan)
* Docs
- Improve docs for GOption handling in GnomeProgram
* Translations
-
libgnome 2.13.4
---------------
What's new since 2.13.3
* Bug fixes
- Fix the broken fix for GnomeProgram. (Gustavo)
(It broke gnome-python)
libgnome 2.13.3
---------------
What's new since 2.13.2
* Bug fixes
- Give feedback from gnome-url if the host can't be found
(Christian Neumair)
- Fix some warnings (Kjartan)
* Translations
- be, bg, cs, en_CA, es, gl, gu, ja, lt, nb, sk, th, zh_CN.
libgnome 2.13.2
---------------
What's new since 2.12.0
* Features
- New show_input_method_menu gconf key (Matthias Clasen)
- Update of the cursors descriptions for the new GTK (Sebastien Bacher)
- New remember_numlock_state gconf key (Jürg Billeter)
- Add GNOME_URL_ERROR_CANCELLED and return it
in gnome_url_show_with_env (Christian Neumair)
* Bug fixes
- Use G_SEARCHPATH_SEPARATOR_S instead of hardcoded ":"(Tor Lillqvist)
- Add support for GOption argument parsing (Pawel Sliwowski, chpe) [#307312]
- Use gnome-vfs on Win32, too (Tor Lillqvist)
* Translation updates:
* Mahay Alam Khan (bn)
* Miloslav Trmac (cs)
* Martin Willemoes Hansen (da)
* Adam Weinberger (en_CA)
* Francisco Javier F. Serrador (es)
* Ignacio Casal Quinteiro (gl)
* Erdal Ronahi (ku)
* Reinout van Schouwen (nl)
* Marcel Telka (sk)
* Christian Rose (sv)
* Paisa Seeluangsawat (th)
* Albert Fazlí (tt)
* Clytie Siddall (vi)
* Funda Wang (zh_CN)
|
|
* Translation updates:
* Priit Laes (et)
* Misu Moldovan (ro)
libbonobo 2.13.93
* Always pass program arguments to bonobo_activation_init (Michael)
* Fixed re-enterancy problems on slow machines (Michael)
* Translation updates:
* Rhys Jones (cy)
* Hendrik Brandt (de)
* Kostas Papadimas (el)
* Inaki Larranaga (eu)
* Gabor Kelemen (hu)
* Luca Ferretti (it)
* Changwoo Ryu (ko)
* Žygimantas Beručka (lt)
* Artur Flinta (pl)
* Duarte Loreto (pt)
* Raphael Higino (pt_BR)
* Leonid Kanter (ru)
* Slobodan D, Sredojevic (sr, sr@Latn)
* Maxim Dziumanenko (uk)
* Funda Wang (zh_CN)
libbonobo 2.13.1
* Fix corruption issue that was causing hangs on login (Michael)
* Fix GOption argument parsing typo (Christian Perch)
* Unregister run-time defined ServerInfos on program exit (Gustavo)
libbonobo 2.13.0
* Rework the end-user installation location independence code for Win32 (Tor Lillqvist)
* Don't use deprecated functions (Kjartan)
* Fix build on solaris 10 with sun studio 10 compiler [#315145]
* Add support for GOption argument parsing in libgnome (Pawel Sliwowski, chpe) [#307312]
* Merge cleanups from stable (Kjartan)
* Translation updates:
* Mahay Alam Khan (bn)
* Jordi Mallach (ca)
* Miloslav Trmac (cs)
* Martin Willemoes Hansen (da)
* Adam Weinberger (en_CA)
* Francisco Javier F. Serrador (es)
* Ivar Smolin (et)
* Iñaki Larrañaga Murgoitio (eu)
* Christophe Merlet (RedFox) (fr)
* Ignacio Casal Quinteiro (gl)
* Ankit Patel (gu)
* Gabor Kelemen (hu)
* Mohammad DAMT (id)
* Alessio Frusciante (it)
* Takeshi AIHANA (ja)
* Changwoo Ryu (ko)
* Erdal Ronahi (ku)
* Huib Kleinhout (nl)
* Leonid Kanter (ru)
* Marcel Telka (sk)
* Christian Rose (sv)
* Baris Cicek (tr)
* Clytie Siddall (vi)
|
|
|
|
libsexy is a collection of GTK+ widgets that extend the functionality of
standard widgets shc as GtkEntry and GtkLabel by subclassing them and
working around their limitations.
|
|
2.14.0
======
Misc
- Improved manual page (Christopher Hanna)
- Uses the new g_slice API (Benoît Dejean)
- Got rid of padding members in private structs (Benoît)
- Speed up the installation of multiple schema files (Josselin Mouette,
Mark LcLoughlin)
Fixes
- Only calls closelog() when it has HAVE_SYSLOG_H (Tor Lillqvist)
- Fixed a memory leak, bugs #332528 and #334047 (Kjartan Maraas,
Matthias Clasen)
Translators
- Petr Tomeš (cs)
- Rhys Jones (cy)
- Ole Laursen (da)
- Hendrik Richter (de)
- Kostas Papadimas (el)
- Ivar Smolin (et)
- Iñaki Larrañaga (eu)
- Rajesh Ranjan (hi)
- Gabor Kelemen (hu)
- Alessio Frusciante (it)
- Takeshi AIHANA (ja)
- Changwoo Ryu (ko)
- Gnome PL Team (pl)
- Evandro Fernandes Giovanini (pt_BR)
- Duarte Loreto (pt)
- Mişu Moldovan (ro)
- Leonid Kanter (ru)
- Laurent Dhima (sq)
- Слободан Д. Средојевић (sr)
- Christian Rose (sv)
- Maxim Dziumanenko (uk)
- Funda Wang (zh_CN)
2.13.5
======
Features
- Save translations in separate file with markup backend's "meged" mode (Mark McLoughlin)
- Switch on "merged" mode for the defaults database (Mark McLoughlin)
- Make gconf_value_compare() and gconf_entry_equal() public (Jorn Baayen)
- Lots of new docs (Dinoop Thomas)
Fixes
- Remove unused --enable-gconf-source configure option (Mark McLoughlin)
- Fix parallel build (Thomas Vander Stichele)
- Make gconf_client_remove_dir() clear the dir's cache (Vincent Untz)
- Win32 build fix - include DLLs in zipfile package (Tor Lillqvist)
- Make gconf_value_decode() work with schemas (Nicolas Peninguy)
- Fix segault unescaping strings (Dan Williams)
- Remove C99 usage (Jens Granseuer)
Translators
- Ales Nyakhaychyk (be)
- Alexander Shopov (bg)
- Jordi Mallach (ca)
- Adam Weinberger (en_CA)
- Francisco Javier F. Serrador (es)
- Ivar Smolin (et)
- Ilkka Tuohela (fi)
- Christophe Merlet (RedFox) (fr)
- Ignacio Casal Quinteiro (gl)
- Ankit Patel (gu)
- Takeshi AIHANA (ja)
- Žygimantas Beručka (lt)
- Kjartan Maraas (nb)
- Tino Meinen (nl)
- Åsmund Skjæveland (nn)
- Kjartan Maraas (no)
- Evandro Fernandes Giovanini (pt_BR)
- Marcel Telka (sk)
- Theppitak Karoonboonyanan (th)
- Clytie Siddall (vi)
- Abel Cheung (zh_HK)
- Chao-Hsiung Liao (zh_TW)
|
|
Changes in version 1.11.3:
=========================
* Fix for localization bug #317458 from Kazuzi IWAMOTO.
* Included docs in tarball as appropriate.
Changes in version 1.11.0:
=========================
Added new APIs - minor enhancements to AtkImage,
AtkDocument, AtkObject, AtkComponent, AtkState.
Significant API additions: Added locale attribute to
AtkImage instances, and Document instances.
Added the ability to assign weakly-typed attributes to
AtkObject as name-value pairs; also added similar
name-value pairs to AtkDocument for attributes which are
intended to be valid over the entire document.
Minor documentation fixes (thanks to Bill Abt).
Added 'tt' (Tatar) locale, Simos Xenitellis
|
|
|
|
|
|
exists on the disk -- we can just check whether a variable defined by
find-files.mk is "__nonexistent__" or not.
|
|
* List the info files directly in the PLIST.
|
|
location for both emacs and xemacs.
* List the info files directly in the PLIST.
* Use EMACS_MODULES to deal with a possible xemacs-packages dependency.
|
|
|
|
changes unknown
|
|
* KBabel
o Improve loading of Gettext PO files, especially in case of
recoverable or unrecoverable errors
o Settings of the SVN/CVS dialogs are now project-releated (and
not global anymore).
o Improve sending PO file(s) as email.
* Umbrello
o Use horizontal and vertical lines when drawing association
o Import Rose model files (no diagrams yet,
o Automatically fill useful info into the Perl writer heading
template
o Documentation for association roles not saved
o Default data types not added for old Java generator
o Problem reordering methods in classes/interfaces
o Problem with font size computation/word wrap in note widgets
o Custom operations in sequence diagrams become class operations
o Fork/join symbol appears as a black box
o Multiplicity labels positioned incorrectly when moving entities
o Types of entity's attributes are displayed instead of their
names
o Unable to delete entity from entity list in "UML Model" frame
o Interface names not italicized in diagram view
o Cannot Resize Sequence Diagram Synchronous Messages
o Sequence diagram: constructor message only works at 100
percent zoom
o Documentation for associations is not retained
o Crash when importing Python files
o "void" is imported as a class
o Crash when creating a datatype with the same name as a class
o Crash when a non existing data type is used for an argument of
a new method
o Drag'n'drop doesn't put class under mouse cursor when zoom is
not 1:1
o Crash when refusing to rename a class on importing typedef
o Java import fails at abstract methods or interfaces
|