3.2.3
=====
Fixes:
* 662991 - fix assert caused by Ross' incompetence (thanks Vincent Untz)
3.2.2
=====
Fixes:
* 661372 - Avoid crash when there is no reply to messages in gconf_engine_notify_remove
* Clean-up ORBit vs DBus logic (Jasper St. Pierre)
3.2.1
=====
Fixes:
* 659835 - Configuration server couldn't be contacted: D-BUS error: Method
"Set" with signature "s(ii)" on interface "org.gnome.GConf.Database"
doesn't exist (Vincent Untz)
* Build fix for -Werror=format-securiyt (Rico Tzschichholz)
Translations:
* fi (Tommi Vainikainen), ja (OKANO Takayoshi),
vi (Nguyễn Thái Ngọc Duy)
3.2.0
=====
Translations:
* da (Flemming Christensen), hu (Gabor Kelemen),
eu (Inaki Larranaga Murgoitio), de (Mario Blättermann),
as (Nilamdyuti Goswami)
3.1.92
======
Fixes:
* 655954 - allow setting gconf values to the schema defaults (Joey Zheng)
Translations:
* pt_BR (Antonio Fernandes C. Neto), pa (A S Alam), en_GB (Bruce Cowan),
ko (Changwoo Ryu), pt (Duarte Loreto), ta (I Felix),
ja (Jiro Matsuzawa), it (Luca Ferretti), or (Manoj Kumar Giri),
pl (Piotr Drąg), gu (Sweta Kothari), ast (Xandru Armesto),
zh_CN (Yinghua Wang), sr sr@latin (Мирослав Николић)
3.1.90
======
Fixes:
* 656262 - Support for conversion files from user specified and XDG data
directories (Ryan Lortie)
Translations:
* ug (Abduxukur Abdurixit), ja (Takayoshi Okano),
zh_HK zh_TW (Chao-Hsiung Liao), te (Krishnababu K)
3.1.6
=====
Fixes:
* Fixes on the distcheck fixes
* 655656 - Use "o" for the D-BUS object path rather than "s" (this changes
the internal D-BUS API but for now we have a compatability bit that
should avoid too much pain.)
Misc:
* DOAP file!
3.1.5
=====
Fixes:
* gsettings-convert - conver to unsigned int correctly (Kalev Lember)
* Distcheck fixes
* 656248 - Handle messages that don't have interface set (Joey Zheng)
* 654801 - Export pkg-config file and C include details in GIR file
(Evan Nemerson)
Misc:
* Autogenerated ChangeLog
* Update .gitignore
Translations:
* ru (Yuri Kozlov), fr (Claude Paroz), bg (Alexander Shopov),
eo (Kristjan SCHMIDT), id (Andika Triwidada),
th (Theppitak Karoonboonyanan)
3.1.4
=====
* gsettings-data-convert: Call g_type_init()
* ensure_database: don't free the reply til we've finished with its args
* build: Filter out generated corba code when building .gir
And translation updates.
3.1.3
=====
Features
- Add optional and disabled by default port to DBus
Fixes
- Use the cache when looking for keys we can't have locally
Translation updates
2.32.5
======
[accidently released with incorrect version, renamed to 3.1.3]
to address issues with NetBSD-6(and earlier)'s fontconfig not being
new enough for pango.
While doing that, also bump freetype2 dependency to current pkgsrc
version.
Suggested by tron in PR 47882
This changes the buildlink3.mk files to use an include guard for the
recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS,
BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new
variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of
enter/exit marker, which can be used to reconstruct the tree and
to determine first level includes. Avoiding := for large variables
(BUILDLINK_ORDER) speeds up parse time as += has linear complexity.
The include guard reduces system time by avoiding reading files over and
over again. For complex packages this reduces both %user and %sys time to
half of the former time.