The following modules have a new version: - anjuta (3.9.2 => 3.9.3) - bijiben (3.9.2 => 3.9.3) - cheese (3.9.2 => 3.9.3) - evolution (3.9.2 => 3.9.3) - file-roller (3.9.2 => 3.9.3) - gedit (3.8.2 => 3.9.2) - glade (3.15.1 => 3.15.2) - gnome-boxes (3.9.2 => 3.9.3) - gnome-clocks (3.8.2 => 3.9.2) (*) - gnome-documents (3.8.2.1 => 3.9.3) - gnome-getting-started-docs (3.8.2 => 3.8.3) - gnome-initial-setup (0.11 => 0.12) - gnome-weather (3.9.2 => 3.9.3) - orca (3.9.2 => 3.9.3) - rygel (0.19.2 => 0.19.3) (*) No summarized news available The following modules weren't upgraded in this release: accerciser, aisleriot, brasero, devhelp, five-or-more, four-in-a-row, gnome-chess, gnome-color-manager, gnome-devel-docs, gnome-klotski, gnome-mahjongg, gnome-mines, gnome-nettool, gnome-nibbles, gnome-robots, gnome-sudoku, gnome-tetravex, iagno, lightsoff, nautilus-sendto, nemiver, quadrapassel, seahorse, swell-foop, tali, vinagre ======================================== anjuta ======================================== Anjuta 3.9.3 (June 17, 2013) -- James Liggett Akom Chotiphantawanon (1): Updated Thai translation. Carl-Anton Ingmarsson (5): Add libgd submodule sourceview: use GdRevealer for sliding in the message area message-view: don't manually free private structure snippets-manager: fix compile warnings sourceview: fix compile warnings Cheng-Chia Tseng (1): Updated Traditional Chinese translation(Hong Kong and Taiwan) Christian Kirbach (1): Updated German help translation Daniel Mustieles (4): Updated Spanish translation Updated Spanish translation Updated Spanish translation Updated Spanish translation Fran Diéguez (4): Updated Galician translations Updated Galician translations Updated Galician translations Updated Galician translations James Liggett (11): Post-release version bump git: Add a context menu to the log pane git: Add a context menu to the Branches pane git: Add a popup menu to the Remotes pane git: Check box action fixes in Push and Pull panes git: Add a popup menu to the Stash pane git: Fix a warning Revert "Allow to build without libgd" Revert "sourceview: use GdRevealer for sliding in the message area" Revert "Add libgd submodule" Update MAINTAINERS Jiro Matsuzawa (1): l10n: Update Japanese translation Johannes Schmid (1): sourceview: Fix bgo#701443 - When trying to change font of GtkSourceView Anjuta crashes Marco Diego Aurélio Mesquita (6): glade: bgo #701207 - Glade signal drop no longer works glade: bgo #700383 - Anjuta should automatically associate .ui and source files libanjuta: Improve symbol-db behavior on cut, paste, undo, redo and when multiple files are modified. symbol-db: Update symbol database on editor changes without saving language-support-cpp-jave: Fix memory leak doc: Update documentation after the last improvements in glade support Marek Černocký (2): Updated Czech translation Updated Czech translation Piotr Drąg (1): Updated POTFILES.in Sébastien Granjoux (12): Fix a crash with some version of Gtk due to my last commit libanjuta: Move scoped and descoped signal on AnjutaProfile object libanjuta: Replace AnjutaPluginDescription by AnjutaPluginHandle in API libanjuta: Move anjuta_profile_manager_load_profile function in anjuta_profile libanjuta: Always keep plugins in the system profile Allow to select different profile on the command line libanjuta: Allow to enable only a set of plugins defined in the profile file Add a sample custom profile keeping only the editor document-manager: Automatically open an empty file if starter plugin is not used libanjuta: Keep dynamic allocation data in AnjutaPluginDescription libanjuta: Allow to change plugin description key from profile Allow to build without libgd ======================================== bijiben ======================================== Overview of changes in 3.9.3 ============================ * Initial ownCloud support and revisit architecture * Bug fixes 701054 : Wrong g_variant_builder_open (Aurimas Černius) * New translations German (Christian Kirbach) Lithuanian (Aurimas Černius) Norwegian bokmål (Kjartan Maraas) ======================================== cheese ======================================== version 3.9.3 - Add documentation for CheeseCamera signals - Remove unused Cheese.MainWindow.get_data_file_dir - Make the flash background white - Fix assertion failures when taking a photo Before this patch, Cheese would log the following each time the user takes a photo: (cheese:21719): GLib-GIO-CRITICAL **: g_file_info_get_size: assertion `G_IS_FILE_INFO (info)' failed (cheese:21719): GLib-GObject-CRITICAL **: g_object_unref: assertion `G_IS_OBJECT (object)' failed - Fix updating sensitivity of device selection combo If Cheese was started with 1 device, and then a second was added, the device selection stayed insensitive, making it impossible to select the second device. This fixes the problem, and also makes the combo insensitive again when going from >= 2 devices to <= 1 device. - Downscale image for effects-preview pipeline Having the whole effects-preview bin deal with ie 1280x800 images is not very useful, especially since even when fullscreen on a full-HD monitor, the preview images are smaller then 640xXXX. This useless high-res processing for 9 preview images in parallel brings my 2nd gen core i5 @ 3.1 GHz to its knees, resulting in a non fluid preview panel. Also after clicking through all effect preview pages, so that all effect preview textures are connected, cheese will use 1 GB of *resident* RAM with the example 1280x800 capture resolution. This patch improves this by downscaling the images from the video-source to 640xXXX where XXX is determined by the original resolution aspect-ratio. After this patch the effects preview framerate is much smoother, and the latency is noticably less. As a bonus the maximal resident size of Cheese in this example is reduced to 350 MB. - Do not block the main valve while recording Otherwise frames intended for the recording are dropped. - Only add videoconvert elements where necessary The "no effect" effect is our default value, and thus worth optimizing a bit. Clearly in the "no effect" effect case adding a videoconvert element both before and after the element is not needed. Note we also don't add the videoconvert elements when creating the initial pipeline, so this also keeps the way the pipeline looks initially and when "no-effect" is selected consistent. When starting Cheese with "no-effect" selected, this shaves off another 130 ms of the initial pipeline creation time. - Drop unused preview_caps variable - Simplify returned GstCaps In cheese_camera_device_get_caps_for_format, simplify the returned caps. This results in much simpler caps, which as main advantage that they are way easier to read when trawling to debug logs. - Fix cheese_camera_device_get_best_format memleak cheese_camera_device_get_best_format() calls cheese_camera_device_get_format_list(), which returns a sorted copy of the format lists, then takes the first element of that list, and returns a copy of that element. While never freeing the list copy. This patch fixes this leak by simply making the priv->formats list sorted so that cheese_camera_device_get_best_format can use it directly without the need to make (and then later free) a copy. - Fix cheese_camera_device_filter_caps warning - Remove unused GstCameraBinFlags enum - Fix video-source memleak when switching cameras - Improve error handling in CheeseCamera Simplify error cleanup in cheese_camera_set_camera_source(). Do not call g_error_free() on a possible NULL error in cheese_camera_element_from_effect(). - Fix no-video-after-switching-resolution problem There is a bug in wrappercamerabinsrc which causes it to lose its video-source setting after the pipeline has started, so on a stop/re-start, as when changing resolution, its video-source has become NULL, and there is no longer video. This patch works around this by moving the setting of the video-source property to cheese_camera_play(), so that it gets (re)set each time before starting the pipeline. I've also written a patch fixing the underlying cause, but since the workaround is simple, and has no adverse effects when the underlying issue is fixed, it seems a good idea to have this workaround in Cheese, see here for the gst-plugins-bad fix: https://bugzilla.gnome.org/show_bug.cgi?id=701915 - Remove extranous csp_post_balance element camerabin2 already has a videoconvert element both before and after its video-source-filter element, so ending the video-source-filter bin with a videoconvert element puts 2 videoconvert elements behind each other, which is not really useful. - Add a capsfilter to the video-source bin This serves 2 purposes. Firstly, it forces GStreamer to actually run the video source at the configured resolution, rather then say run it at 1600x1200 @ 5 fps and downscale that to 800x600 (still at 5 fps), as GStreamer opts to do with my Logitech Webcam Pro 9000, when left to its own auto negotiate code. Secondly, by greatly reducing the amount of advertised caps (this cam supports lots of different resolutions at many different framerates per resolution), it avoids a caps intersect "explosion", reducing the pipeline caps negotiation. - Remove nautilus-sendto sharing support As nautilus-sendto can now only share by email, the sharing can be handled by a photo management application, or directy by the email client. - Avoid assert when taking avatar photos too quickly If the take photo button was pressed while a photo was being taken, an assert would be triggered by the failed call to cheese_camera_take_photo_pixbuf(). Avoid this by setting the take photo button insensitive while a photo is being taken, and setting it sensitive after the photo has been taken. Fixes bug 699596. - Post-release bump to 3.9.3 - Added/Updated Translations - hu, courtesy of Balázs Úr - ja, courtesy of Noriko Mizumoto - th, courtesy of Akom Chotiphantawanon - zh_CN, courtesy of tuhaihe - Added/Updated Documentation - de, courtesy of Christian Kirbach ======================================== evolution ======================================== Evolution 3.9.3 2013-06-17 -------------------------- Bug Fixes: Bug 250046 - Empty group address as recipient prevents message send (Milan Crha) Bug 555130 - Redesign task editor (Milan Crha) Bug 684302 - Prompt to close message window on reply should be inline (Matthew Barnes) Bug 700277 - EClientCache allocates memory ad infinity (Matthew Barnes) Bug 700812 - Search in Calendar view is broken (Milan Crha) Bug 701669 - Bad assumption in prefer-plain module (Matthew Barnes) Other Changes: * Rename some base libraries to libevolution-$FOO. (Matthew Barnes) * Use F9 to toggle sidebar visibility. (Matthew Barnes) * Update Quick Reference Card to show F12 shortcut. (Matthew Barnes) * Remove Evolution icon from header section. (Matthew Barnes) * Make EAlertDialog non-resizable. (Matthew Barnes) * Ask for a Smart Card password with a token name too (Milan Crha) * GnomeCalendar: Get rid of the async message dispatcher. (Matthew Barnes) * Make the "Headers" print dialog tab actually work. (Matthew Barnes) * Reimplement the main toolbar's prefer-item feature. (Matthew Barnes) * Fix various causes for crashes after closing a 2nd Evolution window. (Matthew Barnes) * Heavily refactor MessageList and ETreeModel. (Matthew Barnes) * Remove lots of unused legacy APIs. (Matthew Barnes) Translations: Jorge Pérez Pérez (an) Dimitris Spingos (el) Daniel Mustieles (es) Fran Diéguez (gl) Jiro Matsuzawa (ja) Aurimas Černius (lt) Sandeep Sheshrao Shedmake (mr) Kjartan Maraas (nb) ManojKumar Giri (or) Matej Urbančič (sl) Shantha kumar (ta) ======================================== file-roller ======================================== version 3.9.3 ------------- New features and user visible changes: * 'Add files' dialog: use a GtkPlacesSidebar for the sidebar. Bugs fixed: * Do not allow to create a second 'New Archive' dialog. (#701992) * New dialog: use correct method to get the selected directory. (#701297) (Lionel Landwerlin) * libarchive: sanitize filenames before extracting. New or updated application translations: * Chinese (simplified) (tuhaihe) * Finnish (Jiri Grönroos) * Japanese (Akira Tanaka) ======================================== gedit ======================================== gedit 3.9.2 =========== New Features and Fixes ====================== - Many bugfixes and improvements to the filebrowser, quickopen and external tools plugins (Garrett Regier) - Misc bugfixes New and updated translations ============================ - cs (Marek Černocký) - de (Benjamin Steinwender) - el (Dimitris Spingos (Δημήτρης Σπίγγος)) - es (Daniel Mustieles) - ja (Jiro Matsuzawa) - mr (Sandeep Shedmake) - th (Akom Chotiphantawanon) =========== gedit 3.9.1 =========== New Features and Fixes ====================== - Add new Highlight Mode dialog (Ignacio Casal Quinteiro) - Allow shell quotes in commands from Run Command tool (Adam Dingle) - Use widget templates (Ignacio Casal Quinteiro, Paolo Borelli) - external tools: look in browser root for files in tool output (Adam Dingle) - external tools: extend link parser to handle grep output (Adam Dingle) - external tools: provide environment variable with file browser root (Ignacio Casal Quinteiro) - Improvements in filebrowser (Ignacio Casal Quinteiro, Sébastien Wilmet) - Improvements in quickopen (Ignacio Casal Quinteiro) - Improvements in docs - Misc bugfixes ======================================== glade ======================================== ============ Glade 3.15.2 ============ - Add GtkPlacesSidebar to GTK+ catalog (Federico Mena Quintero) - New icon for GtkMenuButton (Paolo Borelli) - GTK+ catalog version now bumped to 3.10, include new translatable enumeration values and updated new versions and deprecations - Added --enable-debug option and some debug flags to be set with GLADE_DEBUG environment variable - Enable word wrapping in combo boxes (used to edit enumeration properties) - Split up the GTK+ plugin into mini source files, each one implementing it's own widget adaptor code (instead of one huge glade-gtk.c file) - Fix GtkIconFactory sources editor (was very broken) - Allow setting the "id" attributes of items set in a GtkComboBoxText - Avoid calling gtk_stock_list_ids() when gdk_display_get_default() is NULL, allows GIRs to build on some build machines. - Avoid updating the inspector treeview if the same project is set twice (Marco Diego Aurélio Mesquita) - Escape key cancels a query dialog instead of approves creation of the new widget - Many minor bugs and random crasher bugs also fixed - Alsmost all widget types have their own custom editors now ======================================== gnome-boxes ======================================== 3.9.3 - Jun 17, 2013 =================== Changes since 3.9.2: - Add support for import of ready-made disk images. Supported formats are: - qcow2 - qcow - cow - raw (.img extension) - vdi - vmdk - vpc - cloop Also gzip compressed images are supported. - Show a spinner on top of under-construction boxes in collection view. - Fix cancellation of ovirt authentication. - Asynchronously initialize brokers so UI doesn't remain empty for slow brokers. - Handle SPICE connection errors and avoid user seeing a stuck UI indefinitely in case of such errors. - Fix selectionbar overlay not becoming visible on right-click. - Fix Boxes showing mostly invisible wizard when launched with a media argument. - Fix display ending-up at the top of item in collection view at the end of display->collection animation when linked against clutter 1.16. - Fix ellipsizing of wizard summary labels. - Use new libgovirt API to know the host subject to use to validate the SSL certificate of a given VM without user having to set environment variable. - If recommended/min memory for an OS or OS itself is unknown, we now allocate 1G rather than 500M. 500M is too little for most modern OSs. - Drop file extension when naming a VM by its source media filename. - Ensure that newly created boxes appear first in the collection view. - Remove now redundant style & associated data. - Added/updated/fixed translations: - Assamese - Brazilian Portuguese - Catalan - Czech - Galician - German - Kannada - Odia - Polish - Simplified Chinese - Slovak - Spanish - Telugu Dependencies changed: govirt >= 0.1.0 (optional) All contributors to this release: Christian Kirbach Christophe Fergeau Dušan Kazik Fran Diéguez Gil Forcada Krishnababu Krothapalli Luc Pionchon ManojKumar Giri Marek Černocký Nilamdyuti Goswami Piotr Drąg Rafael Ferreira Shankar Prasad YunQiang Su Zeeshan Ali (Khattak) ======================================== gnome-documents ======================================== 3.9.3 - "Man on a Mission" ========================== - Revamp Organize Collections view for new designs (Debarshi Ray) - Port to GtkListBox (Giovanni Campagna) - Add tooltips for preview navbar buttons (Alessandro Campagni) - Add page navigation with Left/Right buttons (Alessandro Campagni) - Port the search provider to use serialized GIcons - Port to GtkHeaderBar, GtkStack and GtkRevealer 3.8.3.1 - "Nostalgia" ===================== - Ignore Google documents without a thumbnail URI (Debarshi Ray) 3.8.3 - "The Bridge" ==================== - Show thumbnails for Google Documents (Debarshi Ray) - Add a manual page (Debarshi Ray) - Don't forward key events to search bar on error (Debarshi Ray) - Fix crash when trying to load links on a document that does not support them (Debarshi Ray) - Fix crash when trying to search into a document that does not support it (Debarshi Ray) - Fix hang when going back to overview after disabling a GOA account while previewing or editing (Debarshi Ray) - Fix stray unoconv process when loading is cancelled in-flight (Debarshi Ray) - Fix a not working in overview (Debarshi Ray) - Fix user input being incorrectly overwritten with the lowercase version used internally (Debarshi Ray) ======================================== gnome-getting-started-docs ======================================== ============= Version 3.8.3 ============= * Updates to Getting Started (Jakub Steiner, Petr Kovar) * Updated translations: ca (Manel Vidal) es (Daniel Mustieles) ======================================== gnome-initial-setup ======================================== 0.12: * Fix for gnome-initial-setup not showing up on secondary user accounts (i.e. after the first) and the welcome tour always running until the OS was rebooted. * Make language change work more than once * Cosmetic fixes to the GOA page * Set system locale and keyboard layouts when in new user mode * Misc fixes and code cleanups Code: Rui Matos, Michael Wood, Matthias Clasen, Colin Walters, Jasper St. Pierre Translations: A S Alam Aurimas Černius Cheng-Chia Tseng Christian Kirbach Daniel Mustieles Dimitris Spingos Dušan Kazik Fran Diéguez Gil Forcada Ivaylo Valkov Kjartan Maraas Krishnababu Krothapalli Nilamdyuti Goswami Piotr Drąg Rafael Ferreira Sandeep Sheshrao Shedmake Sweta Kothari tuhaihe Victor Ibragimov ======================================== gnome-weather ======================================== 3.9.3 ===== * Fixed icon handling in GWeatherLocationEntry due to the ABI change in libgweather * Replaced most of libgd with Gtk types (still using GdMainView only) * Now using the header bar as a titlebar (fixes the close button when maximized) * Includes a new application icon, designed specifically for gnome-weather * Once again fixed launching the application in certain "looks-like-source-tree" cases * Translation updates ======================================== orca ======================================== 3.9.3 - 18 June 2013 General * Fix for bug 701787 - Add structural navigation support for Evince documents * Fix for traceback when switching back to English profile * Fix the accessible apps commandline option * Fix for bug 701743 - Orca's word echo does not echo first word typed in an empty libreoffice writer document * Fix for bug 701549 - orca-autostart.desktop unconditionally enables speech and braille * Add mapping from gnome-terminal-server to gnome-terminal * Remove the braille-monitor checkbox from the GUI * Fix for bug 671755 - Orca doesn't announce the AltGr key * Fix for bug 701166 - "Screen reader preferences"; not "Orca preferences" * Fix for bug 701187 - "Screen reader settings"; not "Orca settings" * And a number of similar changes (e.g. the name of the Orca modifier, along with various other places where "Orca" was being used instead of "screen reader") * Misc refactoring and cleanup New and updated translations (THANKS EVERYONE!!!): cs Czech Marek Černocký es Spanish Daniel Mustieles gl Galician Fran Diéguez sk Slovak Peter Vágner sl Slovenian Matej Urbančič zh_HK Traditional Chinese (Hong Kong) Cheng-Chia Tseng zh_TW Traditional Chinese (Taiwan) Cheng-Chia Tseng ========= ======================================== rygel ======================================== 0.19.3 ====== A new unstable release of Rygel. Changes compared to 0.19.2: Server: - Add container serialisation to EXTM3U. - Fix DLNA transfer modes for generated playlists. Rygel: - Add -s,--shutdown options to shut down a running instance without using d-feet or dbus-send. GStreamer media engine: - Some string fixes. - Fix a typo in the avenc_aac preset. - Issue a proper warning when we fail to setup a data source. - Don't crash if there's no RTP depayloader available. MediaExport: - Make it possible to remove playlists. - Expose the playlists for XBox 360. Preferences UI: - Some glade file clean-ups. - Move toolbar style from code to glade file. - Support setting of multiple network interfaces as introduced in 0.19.2. All contributors to this release: Jens Georg Piotr Drąg Marek Černocký Fran Diéguez Daniel Mustieles Aurimas Černius Added/updated translations - cs, courtesy of Marek Černocký - es, courtesy of Daniel Mustieles - gl, courtesy of Fran Dieguez - lt, courtesy of Aurimas Černius