The following modules have been added in this release: caribou, folks, gnome-contacts, gnome-video-effects, mousetweaks, sushi The following modules have been removed in this release: totem The following modules have a new version: - atk (2.1.5 => 2.1.91) - clutter (1.7.12 => 1.7.14) - cogl (1.7.6 => 1.7.8) - empathy (3.1.90.1 => 3.1.91) - eog (3.1.90 => 3.1.91) - epiphany (3.1.90 => 3.1.91.1) - evolution-data-server (3.1.90 => 3.1.91) - gdm (3.1.90 => 3.1.91) - glib (2.29.18 => 2.29.90) - glibmm (2.29.12 => 2.29.13) - gnome-backgrounds (3.1.2 => 3.1.91) - gnome-control-center (3.1.90 => 3.1.91) - gnome-desktop (3.1.90.1 => 3.1.91) - gnome-keyring (3.1.90 => 3.1.91) - gnome-panel (3.1.5 => 3.1.91) - gnome-screensaver (3.1.90 => 3.1.91) - gnome-session (3.1.90 => 3.1.91) - gnome-settings-daemon (3.1.90 => 3.1.91) - gnome-shell (3.1.90.1 => 3.1.91) - gnome-themes-standard (3.1.90 => 3.1.91) - gnome-user-docs (3.0.4 => 3.1.1) - gsettings-desktop-schemas (3.1.3 => 3.1.91) - gtk+ (3.1.16 => 3.1.18) - gtkmm (3.1.16 => 3.1.18) - gvfs (1.9.4 => 1.9.5) - librsvg (2.34.0 => 2.34.1) - notification-daemon (0.7.1 => 0.7.2) - vino (3.1.90 => 3.1.91) - yelp (3.1.2 => 3.1.3) - yelp-tools (3.1.5 => 3.1.6) - yelp-xsl (3.1.4 => 3.1.5) The following modules weren't upgraded in this release: GConf, atkmm, brasero, cantarell-fonts, clutter-gtk, dconf, evince, gcalctool, gdk-pixbuf, gjs, glib-networking, gnome-bluetooth, gnome-disk-utility, gnome-doc-utils, gnome-icon-theme, gnome-icon-theme-extras, gnome-icon-theme-symbolic, gnome-menus, gnome-online-accounts, gnome-packagekit, gnome-power-manager, gnome-system-monitor, gnome-terminal, gnome-user-share, gnome-utils, gobject-introspection, gst-plugins-base, gst-plugins-good, gstreamer, gtk-doc, gucharmap, libgnome-keyring, libgnomekbd, libgtop, libgweather, libpeas, libsoup, libwnck, metacity, mm-common, mutter, nautilus, network-manager-applet, pango, pangomm, polkit-gnome, totem-pl-parser, vte, zenity ======================================== atk ======================================== Changes in version 2.1.91: ========================== * * Documentation updates * Updated Brazilian Portuguese, Korean, Telugu and Kannada * translations ======================================== clutter ======================================== Clutter 1.7.14 2011-09-05 =============================================================================== • List of changes since Clutter 1.7.12 - Use newer version of ATK Cally now depends on the latest version of ATK, to reduce the amount of ad hoc code needed and to use newer features that simplify the implementation of accessible objects in Clutter. - Allow using Layout Managers with generic containers Layout managers should not assume that they are allocating the whole area available from the Actor using them; this allows actors that support concepts like padding or margin to use a LayoutManager internally for its children. - Cookbook updates Add a recipe on how to bind a ClutterState to the signals of objects defined in ClutterScript. We also install the cookbook examples inside the $datadir/clutter-1.0/cookbook/examples directory. - Improve examples in the API reference Some of the interactive test suite units are actually good examples of how to use the Clutter API; we can use the XInclude tags to include the source code inside the API reference. - Ensure thread safety of the repaint functions add/removal Fix a long standing issue where adding or removing repaint functions was not acquiring a lock; now it's safe to manipulate the repaint functions list from different threads. - Make the ClutterText:line-wrap property work again In 1.2 the :line-wrap property was broken, and ClutterText would paint a PangoLayout wrapping until it fit the height of the allocation regardless of whether the :line-wrap property was set to FALSE or TRUE. Now we clip the PangoLayout before rendering it, if the :line-wrap property is set to FALSE and there is no ellipsization policy set. - Disable redirection to offscreen buffer by default Whenever a ClutterActor with children was not fully opaque, the actor was redirected to an FBO, to perform correct opacity computations. Sadly, this can lead to 3x slowdowns, given the amount of framebuffer objects created and the state changes that have to be performed. We decided to turn off this feature by default, to avoid the performance hit. It is still possible to enable this feature on a per-actor basis, though, and will work to reduce the hit in future versions of Cogl, Clutter and the drivers. • List of bugs fixed since Clutter 1.7.12 [bugzilla.gnome.org] #657681 - Crash when destroying an actor while dragging it [bugzilla.clutter-project.org] #2339 - ClutterText in 1.4 line-wraps even if line-wrap is disabled Many thanks to: Alejandro Piñeiro, Shankar Prasad, Chao-Hsiung Liao, Dan Winship, Daniel Mustieles, Daniel Nylander, Fran Dieguez, Marek Černocký, Robert Bragg ======================================== cogl ======================================== Cogl 1.7.8 2011-09-05 • List of changes since Cogl 1.7.6 » Getters for the display and renderer associated with context » Getter for the number of supported texture units during fragment processing. (ClutterGst needs to know this for example to know if GLSL based YUV->RGB color space conversion can be used.) » Optimizations for the GLSL codegen for fragment processing so we can ignore redundant layers - if for example the "REPLACE" function is used for layer N then computing anything for previous layers is redundant. Also if texture combining needs to sample the same texture multiple times we now re-use the same sample instead of repeating it. » Optimize texture uploads to a texture atlas on GLES by avoiding lots of redundant format conversions. » Relax the requirement to need braces around blend factors when using the CoglBlendString syntax. Braces are only needed for factors involving a subtraction like "(1 - SRC_COLOR[A])" » Adds API for querying the format of a CoglFramebuffer • List of bugs fixes since Cogl 1.7.6 https://bugzilla.gnome.org: #656426 - Improve the generated GLSL code #656441 - Build failure in examples #656587 - Outdated FSF Address in code files #657347 - Retrieve the number of texture image units #657840 - Atlas-ed bitmaps converted too many times #656809 - cogl 1.7.6 doesn't compile on Fedora 16/17 Many thanks to: Damien Lespiau Neil Roberts Emmanuele Bassi ======================================== empathy ======================================== NEW in 3.1.91 (06/09/2011) ============= This release introduces a new optional mission-control plugins providing integration with GNOME's online accounts service. With this plugin installed, mission-control will automatically create a Telepathy account if there is a Google GOA account configured with the 'Chat' feature enabled. Dependencies: • mission-control-plugins (optional) • goa (optional) Bugs fixed: - Fixed #652543, Add a MC GOA plugin (Danielle Madeley, Guillaume, Desmottes) - Fixed #656871, Shouldn't allow to start video call with audio only contact (Emilio Pozuelo Monfort) - Fixed #657087, build: fix typo in configure summary (Cosimo Cecchi) - Fixed #657266, empathy crashed with SIGSEGV in folks_persona_store_get_can_alias_personas() (Guillaume Desmottes) - Fixed #657842, Search field isn't at the right end of the History window toolbar (Guillaume Desmottes) - Fixed #657843, Chat and Call icons don't match in History window (Emilio Pozuelo Monfort) - Fixed #657914, EmpathyIndividualStore segfaults if contact cannot be obtained by individual (Cosimo Alfarano) - Fixed #657954, log-window: add the "raised" style class to the account chooser (Cosimo Cecchi) - Fixed #657956, primary-toolbar style class has been removed (Cosimo Cecchi) - Fixed #658254, empathy-accounts.desktop should not get installed if no control center embedding (Guillaume Desmottes) Translations: - Updated be Translation (Ihar Hrachyshka) - Updated fa Translation (Arash Mousavi) - Updated gl Translation (Fran Dieguez) - Updated lt Translation (Aurimas Černius) - Updated nb Translation (Kjartan Maraas) - Updated nl Translation (Hannie Dumoleyn) - Updated pt_BR Translation (Antonio Fernandes C. Neto) - Updated ru Translation (Yuri Myasoedov) - Updated sv Translation (Daniel Nylander) - Updated ta Translation (Dr.T.Vasudevan) Documentation translations: - Updated es Documentation translation (Jorge González) ======================================== eog ======================================== Version 3.1.91 -------------- * Use 'Image Viewer' in all UI visible strings instead of 'Eye of GNOME' (Tiffany Antopolski) * Internationalization fixes (Felix Riemann) * Major help update (Tiffany Antopolski, Ryan Lortie, Phil Bull) Bug fixes: #654548, Split sentences (Felix Riemann) #658152, eog should use generic name in titlebar (Tiffany Antopolski) New and updated translations: - Ihar Hrachyshka [be] - Marek Černocký [cz] - Jorge González [es] - Arash Mousavi [fa] - Jiri Grönroos, Ville-Pekka Vainio [fi] - Bruno Brouard [fr] - Fran Dieguez [gl] - Wouter Bolsterlee [nl] - Chao-Hsiung Liao [zh_HK] - Chao-Hsiung Liao [zh_TW] New and updated manual translations: - Jorge González, Daniel Mustieles [es] ======================================== epiphany ======================================== ================= Epiphany 3.1.91.1 ================= Changes: - Fix mistake in error pages. =============== Epiphany 3.1.91 =============== Changes: - Implement about:applications to manage Web Applications. This should go away in 3.4 in favor of a GNOME-wide solution. - Fix warnings when coming back from fullscreen (#657936) - Hide irrelevant context menu actions when in app mode (#657624) - Remove unneeded markup in glade files (#102382) - Recursively delete temporary profile dirs (#658201) - Improve messages in error pages (#637903) - Fix error pages for RTL locales (#314205) - Ask for confirmation before overwriting web applications (#658060) ======================================== evolution-data-server ======================================== Evolution-Data-Server 3.1.91 2011-09-05 --------------------------------------- Bug Fixes: Bug 566563 - Make ESource password prompts clearer (Milan Crha) Bug 655111 - Modify allday to date-time event keeps VALUE=DATE parameter (Milan Crha) Bug 655253 - Delete of one occurrence of a repeatable event don't work (Milan Crha) Bug 655433 - Drag and Drop of messages out of Junk folder broken (Milan Crha) Bug 657345 - Remember password by default for book/calendar (Milan Crha) Bug 657836 - Work around g_unix_signal API changes. (Denis Washington) Other Changes: * Do not expose password in imapx log (Milan Crha) * Add a vapi for ecalendar (Lucas Baudin) * Create tar.xz files for 'make dist' only (Milan Crha) Translations: Jorge González (es) Claude Paroz (fr) Fran Dieguez (gl) Shankar Prasad (kn) Kjartan Maraas (nb) Yuri Myasoedov (ru) Daniel Nylander (sv) krishnababu k (te) Chao-Hsiung Liao (zh_HK) ======================================== gdm ======================================== ============== Version 3.1.91 ============== - Enable new g-s-d plugins for tablets - Enable maintainer mode by default - Greeter session handling fixes - Update for gnome-power-manager move to g-s-d - Translation updates ======================================== glib ======================================== Overview of changes from GLib 2.29.18 to 2.29.90 ================================================ * API/ABI changes: - unix signal watches now match the API of all of the other sources - revert the addition of g_date_time_source_new () from last release * networking and other fixes for Solaris - we no longer support symbolic port names (ie: from /etc/services) - check if -lsocket is needed - fix g_socket_details_from_fd() - avoid getmntinfo - fix some harmless warnings * GDateTime improvements: - generally improved standards compliance (with C99) - support C99-specified format strings: %g, %G, %V, %c, %C, %w - consult the locale for the preferred 12-hour time format (%r) - drop support for non-standard %N and broken %W - better support for formatting non-POSIX (eg: Arabic) numerals - locale-related test case fixups, and fix some leaks * GTlsInteraction: add interaction method invocation guarantees * gdbus-codegen: post-process all interfaces when parsing >1 file * make GMainLoop, GMainContext and GSource boxed types * fix a race condition in the first use of g_get_monotonic_time() * lots gtk-doc cleanups * better intltool compatibility when generating pot file * avoid GCC-specific compiler options when not using GCC * Translation updates: Belarusian Brazilian Portuguese Canadian English Galician Indonesian Korean Lithuanian Norwegian bokmål Portuguese Spanish Swedish ======================================== glibmm ======================================== 2.29.13: giomm: * Variant< std::vector >: Ensure correct creation. (José Alburquerque) Bug #657030 (Aurimas Černius) gmmproc * Correct handling of constversion etc. in _WRAP_METHOD, avoiding side-effects on other _WRAP_METHOD() calls in the same .hg file. (Kjell Ahlstedt) Bug #657751, ======================================== gnome-backgrounds ======================================== ============== Version 3.1.91 ============== * Release for GNOME 3.1.91 * Add translator comments to names of background images. Fixes bug #646387 Updated translations: Yuri Matsuk (be) ======================================== gnome-control-center ======================================== =========================== Version 3.1.91 (2011-09-05) =========================== Color: - Ensure the calibrate program gets run correctly (Richard Hughes) - Use a mnemonic character on the Import button (Jiro Matsuzawa) (#658167) - If cancelling profile import don't show the empty assign dialog (Richard Hughes) (#658180) - Do not use a GtkSeparatorToolItem in the GtkToolbar (Richard Hughes) Display: - Clean up signal handling when finalized (Bastien Nocera) (#657919) Media: - Use new media-removable icon (Bastien Nocera) (#657801) Network: - Set the org.gnome.system.proxy.http 'enabled' key if the user sets a HTTP proxy (Richard Hughes) - Explicitly unset 'use-same-proxy' as there's no UI for that (Richard Hughes) (#657235) Power: - Don't print a message to .xsession-errors if it's not an error (Richard Hughes) - Use a proper icon for the panel (Jakub Steiner) (#645536) - Update the UI to reflect the new mockup (Richard Hughes) Screen: - Hide brightness heading when unused (Bastien Nocera) (#657606) Shell: - Use symbolic name for minimum height (Bastien Nocera) Sound: - Add some (element-type) annotations to appease g-i master (Dan Winship) Wacom: - Dim the labels (grey, not black) (Peter Hutterer) (#657812) Translations: - be (Yuri Matsuk, Ihar Hrachyshka) - es (Jorge González) - fi (Timo Jyrinki) - gl (Fran Dieguez) - ja (Jiro Matsuzawa) - nb (Kjartan Maraas) - pa (A S Alam) - ru (Yuri Myasoedov) - sv (Daniel Nylander) ======================================== gnome-desktop ======================================== ============== Version 3.1.91 ============== libgnome-desktop * Add GnomeWallClock (Colin Walters) Translators * Jorge González (es) * Kjartan Maraas (nb) * Piotr Drąg (pl) ======================================== gnome-keyring ======================================== Changes in version 3.1.91 are: * gcr-viewer will now display errors when failing to load a file. * gcr-viewer can now prompt for passwords to unlock files * Add support for getting the current data block being parsed in GcrParser. * Add debug output to various points in the GCR and GCK libraries. * When replacing another gnome-keyring-daemon, wait a moment before initializing. * Fix GCR library initialization bugs loading PKCS#11 modules. * Fine tuning of GcrParser when parsing PKCS#12 files. * Build and packaging fixes * Updated translations ======================================== gnome-panel ======================================== ============== Version 3.1.91 ============== Panel * Do not forcecully center non-expanded panels on login (Matt McCutchen) * Fix srcdir != builddir build (Colin Walters) Translators * Ihar Hrachyshka (be) * Marek Černocký (cs) * Mario Blättermann (de) * Claude Paroz (fr) * Fran Diéguez (gl) * Andika Triwidada (id) * A S Alam (pa) * Stas Solovey (ru) * Theppitak Karoonboonyanan (th) * Sahran (ug) ======================================== gnome-screensaver ======================================== =============== Version 3.1.91 =============== - Use GnomeWallClock to keep informed about time and timezone changes ======================================== gnome-session ======================================== ============== Version 3.1.91 ============== Session Manager * Fix usage of %lld for 64-bit formats (Owen Taylor) * Add a translator comment (Matthias Clasen) Translators * Ihar Hrachyshka (be) * Fran Dieguez (gl) * Kjartan Maraas (nb) * Daniel Nylander (sv) ======================================== gnome-settings-daemon ======================================== ============== Version 3.1.91 ============== Common: - Don't list XINPUT_LIBS twice, move X11_LIBS from LDFLAGS to LIBADD (Stefan Sauer) Color: - Ensure the 'Recalibration required' notification has a custom app name (Richard Hughes) - Fix a critical warning on startup (Richard Hughes) - Do not notify to recalibrate on every startup (Richard Hughes) Daemon: - Fix possible double-free outside gnome-session (Bastien Nocera) Gconf: - Double check stuff we add to the hash table (Rodrigo Moya) (#658055) Housekeeping: - NULL-terminate the ignore-paths array (Bastien Nocera) (#657849) Power: - Do not exit gnome-settings-daemon if upower fails to load (Richard Hughes) - Fix impossible to hit error paths (Bastien Nocera) (#657364) - Fix BRIGHTESS_STEP_AMOUNT calculation macro (Kamal Mostafa) - Do most of the work in _start () (Bastien Nocera) (#657924) - Never idle-dim the display to a higher brightness level (Richard Hughes) (#658144) Printers: - Remove redundant code (Marek Kasik) Xsettings: - Handle rgba-order key (Bastien Nocera) (#657525) - Don't poke at an empty hashtable (Bastien Nocera) (#657464) - Fix a stray brace (Owen Taylor) Translations: - be (Ihar Hrachyshka) - cz (Marek Černocký) - pt_BR (Og B. Maciel) - ta (Dr.T.Vasudevan) ======================================== gnome-shell ======================================== 3.1.91 ====== * Fix problem with applications vanishing from alt-Tab when desktop files change. [Colin; #657990] * Fix interaction of on-screen keyboard with run-dialog and Looking Glass console [Dan; #657986] * Add public API for adding and removing search providers [Philippe; #657548, #658113] * Allow changing IM status with scroll wheel [Florian; #657973] * Limit volume slider to 100% [Bastien; #657607] * Change "Do Not Disturb" to "Notifications" in user menu [Florian; #652718] * Switch browser in default favorites to Epiphany [Colin; #650616] * Misc bug fixes [Dan, Florian, Jasper, Marc-Antoine, Rui; #649631, #655069, #656142, #657703, #657759, #658007, #658065, #658176] Contributors: Rui Matos, Florian Müllner, Philippe Normand, Marc-Antoine Perennou, Jasper St. Pierre, Colin Walters, Dan Winship Translations: Ihar Hrachyshka [be], Mario Blättermann [de], Kris Thomsen [da], Jorge González [es], Arash Mousavi [fa], Fran Dieguez [gl], Takayuki Kusano [ja],Aurimas Černius [lt], Kjartan Maraas [nb], A S Alam [pa], Stas Solovey [ru], Daniel Nylander [se], Tirumurti Vasudevan [ta], Chao-Hsiung Liao [zh_HK, zh_TW] ======================================== gnome-themes-standard ======================================== 3.1.91 ====== Make the text color for insensitive menu entries a bit darker Use stock gtk_render_line() implementation from GtkThemingEngine Apply a linked style for filechooser pathbar buttons ======================================== gnome-user-docs ======================================== 3.1.1 ===== * Added help for Vino (Ekaterina Gerasimova) * Added color management help (Richard Hughes) * Updates to Nautilus and Sushi help (Shaun McCance) * Merged network and web guides (Jim Campbell) * Updates to network and user pages (Jeremy Bicha) * Misc fixes by Andre Klapper, Jiro Matsuzawa * Updated translations: de (Mario Blättermann) es (Jorge González, Daniel Mustieles) Version 3.0.5 ------------- * Updated email contact info and links (Tiffany Antopolski) * Clarified Ctrl+Alt+D in shortcuts (Tiffany Antopolski) * Fixed character encoding problem (Shaun McCance) * Wording change for select/deselect (Michael Hill) * Added information about disks and SMART (Julita Inca) * Added information about type-ahead file searching (Phil Bull) * Information about the message tray in shell-intro (Tiffany Antopolski) * Major updates to wireless troubleshooting (Phil Bull) * Information on calendar appointments (Julita Inca) * Style edits (Tiffany Antopolski, Jim Campbell, Michael Hill, Phil Bull, Kelly Sinnott) * Updated translations: de (Hendrik Knackstedt, Gabor Karsay) es (Jorge González, Francisco Molinero, Daniel Mustieles) nl (Hannie Dumoleyn) vi (Nguyễn Thái Ngọc Duy) ======================================== gsettings-desktop-schemas ======================================== Major changes in 3.1.91 ======================= * Add org.gnome.desktop.interface.{clock-show-seconds,clock-show-date} * Improve documentation for org.gnome.system.proxy * Updated translations ======================================== gtk+ ======================================== Overview of Changes in GTK+ 3.1.18 ================================== * GtkFileChooser: - It is no possible to go to the containing folder of a selected file in recent files or search results. * Bugs fixed 530253 typo ifaces under gtk_tree_view_set_reorderable 566202 GTK_SELECTION_MULTIPLE description unclear 581435 gtk_tree_view_set_drag_dest_row() needs more documentation 655631 Description of x and y parameters in gtk_render_arrow is in... 657793 Support NULL sibling in gtk_grid_attach_next_to 657882 gtk_css_provider_propagate_error's signature not updated... 657963 themingengine: remove xthickness FIXME from gtk_render_line() 657985 reeview: add GTK_STYLE_CLASS_SEPARATOR for tree view separators 658008 Centered text alignment in GtkAssistant is wrong 658077 Add theming support to GtkPathBar 658111 gtk_label_set_pattern() is reset by a call to gtk_box_pack_... 658168 Gtk-Message: Failed to load module "gail" 658200 gtk_toolbar_finalize() does stuff it shouldn't Fix colord support in the print dialog * Translation updates Belarusian Brazilian Portuguese Esperanto Galician Korean Lithuanian ======================================== gtkmm ======================================== 3.1.18 (unstable): Gtk: * Assistant: Added remove_page(). (Murray Cumming) * Dialog::get_content_area(): Avoid infinite loop. (Kjell Ahlstedt) * Added FontChooser and FontChooserDialog, deprecating old widgets. (Murray Cumming) * PrintUnixDialog::get_selected_printer(): ref-counting correction. (Kjell Ahlstedt) Bug #657751. * TreeView: Added unset_drag_dest_row(). (Murray Cumming) Bug #577986 (Hubert Figuiere, Johannes Schmid) Build: * Updated Visual C++ Projects (Chun-wei Fan) ======================================== gvfs ======================================== Major changes in 1.9.5 ====================== * gdu: Don't ignore fstab mounts belonging to crypto volumes * smb: Always check for existing file on rename * dav: Fix small memory leak (display_name) * Translation updates ======================================== librsvg ======================================== Version 2.34.1 This version contains fixes for CVE-2011-3146. - cairo: reduce cost of measuring bounding boxes - Use "const" instead G_CONST_RETURN (#652213) - Call xmlFreeParserCtxt after using the context (#655472) - Store node type separately in RsvgNode (#658014) ======================================== notification-daemon ======================================== NEW in 0.7.2: ============== - Remove vestigial dbus-glib requirement - Translation updates (Italian, Dutch, Gujarati, Ukrainian, Norwegian bokmål, Bulgarian, Spanish, Slovenian, Kannada, Hebrew, Swedish, Simplified Chinese, Greek, Korean, French, Latvian, Vietnamese, Catalan, Oriya, Galician, British English, Romanian, Polish, Estonian, Hungarian, Portuguese, Russian German, Serbian, Indonesian, Afrikaans, Punjabi, Uighur, Basque, Traditional Chinese, Tamil, Czech, Danish, Turkish, Bengali, Persian, Japanese, Aragonese, Catalan (Valencian), Finnish, Lithuanian, Belarusian, Zulu) ======================================== vino ======================================== Vino 3.1.91 =========== David King (4): Post-release version bump to 3.1.91 Use new location for Mallard help, bug 657927 Make all targets use compiler warning flags Update NEWS for 3.1.91 release Dr.T.Vasudevan (1): updated Tamil translation Og B. Maciel (1): Updated Brazilian Portuguese translation. Yuri Myasoedov (1): Updated Russian translation ======================================== yelp ======================================== 3.1.3 ===== * Fixed URI in location entry after link click in help URIs, #658023 * Fixed crashes on info documents (Edward Sheldrake) * Updated translations: be (Ihar Hrachyshka) ca (Gil Forcada) de (Mario Blättermann) fr (Alexandre Franke) gl (Fran Dieguez) id (Andika Triwidada) it (Milo Casagrande) pt_BR (Og B. Maciel) ru (Yuri Myasoedov) ug (Abduxukur Abdurixit) ======================================== yelp-tools ======================================== 3.1.6: ====== * Sped up cache generation in yelp-build (Shaun McCance) * Added HELP_POT variable to specify pot name (Michael Terry) * Fixed --pkgversion lookup in 'yelp-check status' (Shaun McCance) ======================================== yelp-xsl ======================================== 3.1.5 ===== * Experimental Mallard extension for API references * Updated translations: ca (Gil Forcada) de (Mario Blättermann) pt_BR (Og B. Maciel) ta (Dr.T.Vasudevan) ug (Abduxukur Abdurixit)