The following modules have been added in this release: gnome-initial-setup The following modules have been removed in this release: totem The following modules have a new version: - accerciser (3.5.90 => 3.5.91) - anjuta (3.5.5 => 3.5.91) - cheese (3.5.5 => 3.5.91) - evolution (3.5.90 => 3.5.91) - file-roller (3.5.90 => 3.5.91) - gedit (3.5.1 => 3.5.2) - gnome-boxes (3.5.90 => 3.5.91) - gnome-documents (3.5.90 => 3.5.91) - orca (3.5.90 => 3.5.91) - rygel (0.15.2 => 0.15.3) - seahorse (3.5.90 => 3.5.91) The following modules weren't upgraded in this release: aisleriot, devhelp, glade, gnome-color-manager, gnome-devel-docs, gnome-games, gnome-nettool, nautilus-sendto, nemiver, vinagre ======================================== accerciser ======================================== ============== version 3.5.91 ============== What's New ========== - Use yelp-tools instead of gnome-doc-utils New And Updated Translations ============================ - Piotr Drag (pl) - Nilamdyuti Goswami (as) ======================================== anjuta ======================================== Anjuta 3.5.91 "Je voudrais etre un yeti" (September 3 2012) -- Johannes Schmid This is an unstable developer snapshot - if you need a stable version, use 3.4.x! Andika Triwidada (1): Updated Indonesian translation Chao-Hsiung Liao (1): Updated Traditional Chinese translation(Hong Kong and Taiwan) Dominique Leuenberger (1): gtksourceview plugin: include gtksource.h instead of gtksourceview.h Fran Diéguez (1): Updated Galician translations James Liggett (1): git: Fix bgo 680401: Git plugin (Status) doesn't work with git version 1.7.10.4 Johannes Schmid (1): Post-release version bump Piotr Drąg (2): Updated Polish translation Updated Polish translation Sébastien Granjoux (1): Fix #679767 - crash trying to stop the debugger Yuri Myasoedov (1): Updated Russian translation ======================================== cheese ======================================== version 3.5.91 - Post-release version bump to 3.5.91 - Fix another missing stdlib.h include For EXIT_FAILURE. - Bump libtool versioning after GStreamer 1.0 port - Move variable declarations before code in C source This allows compilation to succeed with ‘-Werror=declaration-after-statement’ passed to GCC. - Fix comment about preset locations Update for new location in GStreamer 1.0. https://bugzilla.gnome.org/show_bug.cgi?id=680422 - Update pkg-config dependencies for GStreamer 1.0 https://bugzilla.gnome.org/show_bug.cgi?id=680422 - Fix dependencies for Cheese introspection Update for GStreamer 1.0. https://bugzilla.gnome.org/show_bug.cgi?id=680422 - Add stdlib.h include for EXIT_SUCCESS - Depend on the new clutter-gst version - Update to the new pad template name - Rename ffmpegcolorspace to videoconvert The element was renamed in GStreamer 1.0. - Update raw caps to new format There is no video/x-raw-yuv or -rgb, they are both now video/x-raw with a format field. - Update to GStreamer 1.0 API - Rename camerabin2 to camerabin camerabin2 was renamed to camerabin in GStreamer 1.0. - Depend on gstreamer-1.0 - Do not set filter-caps property on camerabin2 The "filter-caps" property doesn't exist on camerabin2. - Re-add GstCaps variable in CheeseCamera caps variable was removed during rebase, but it is still used. - Fix CheeseCamera recording time reporting Camerabin2 maintains its pipeline clock continuously running, this makes the time reporting for video recording actually report the time since camerabin2 was initialized. This patch fixes it by querying the video filesink for the correct recording time. - Check for camerabin2 instead of camerabin - Encode WebM/VP8 instead of OGG/Theora Create WebM profile and use it with camereabin2. Also use presets for vp8enc. - Stop-capture is asynchronous in camerabin2 Wait for video-done message to signal that capture is over. - Image-done message is posted by camerabin2 Camerabin2 is the element to post the image-done message, not the camera source. - Remove unused variables warnings in CheeseCamera - Split setting of CheeseCamera caps from playing Add new cheese_camera_set_new_caps() method, split from cheese_camera_play(). - Set ClutterTextureVideoSink sync=false Without this the sink will issue a warning: ** (cheese:21655): WARNING **: Internal data flow problem.: gstbasesink.c(3626): gst_base_sink_chain_unlocked (): /GstCameraBin2:camerabin2/GstViewfinderBin:vf-bin/ClutterGstVideoSink:cluttergstvideosink0: Received buffer without a new-segment. Assuming timestamps start from 0. I'm not sure what the implications of this setting are. It might be caused by the clock/time rewriting magic from camerabin2. - Do not switch mode when stopping video recording - Set the video resolution Use the viewfinder-caps property of camerabin2, rather than the set-video-resolution-fps signal of camerabin. - Fix pixbuf-only capture camerabin2 sends the preview-image bus message through the gstwrappercamerabinsrc. In camerabin2 if the location is NULL, it is interpreted as a "don't write in a file just post the buffer as a bus message". - Enable post-preview property when needed When taking a photo to pixbuf, sets post-preview to enable camerabin2 to send the preview message. - Remove camerabin workaround No longer needed with camerabin2. - Convert image-done to a bus message, from a signal Quote from camerabin2's PORTING guide: In camerabin, image-done is a signal, in camerabin2, it is a bus message Signed-off-by: Raluca Elena Podiuc - Use definitions of MODE_IMAGE/VIDEO from camerabin #ifndef GST_USE_UNSTABLE_API #warning "camerabin enums are unstable API and may change in future." #warning "You can define GST_USE_UNSTABLE_API to avoid this warning." #endif - Handle photo/video moved to monitored directories Camerabin2 creates a temporary file, writes data to it and in the end it moves it to the destination path. Without G_FILE_MONITOR_SEND_MOVED to g_file_monitor_directory, moves would be sent as DELETE + CREATE. Unfortunately, we would also get CREATE events when the temporary file was created. We cannot listen for CREATE events as temporary files would be CREATEd and then CHANGEd and the thumb-view creation code would work with bad data. By using G_FILE_MONITOR_SEND_MOVED we get a single event when the file is moved. As the file monitor ignores files with unknown extensions (as is the case for the temporary files created by camerabin2) we could only just append the new file. But because the user might also move a picture/video manually from the Pictures/Webcam or Videos/Webcam directories, removing the old file from the thumb-view keeps it up-to-date with the state of the file system. If camerabin2 switches away from the create-temp+move approach, to the camerabin one (create the destination file directly), we're prepared to handle that code with G_FILE_MONITOR_EVENT_CHANGES_DONE_HINT. - Rename filename and capture-start/stop Quote from camerabin2's PORTING guide: [...] is now called 'location' instead of 'filename' The signals were renamed from capture-start/stop to start/stop-capture as this is the usual naming on actions. - Video filter on camera_source applies to all modes If the effect is applied on camera_source, the effect will be available in viewfinder and image/video capture modes. - Minimal functionality based on camerabin2 These are the minimal changes needed to integrate camerabin2. Support for: - viewfinder (Cheese's main window) - effect previews Porting details: - obviously, the name has changed to camerabin2 - Camerabin2 requires something special from it's "camera-source". We use the "wrappercamerabinsrc" module provided by camerabin2 which creates a "camera-source" suitable for camerabin2 based on a regular video source. - Depend on GTK+ 3.4.4 for GtkIconView changes - Request correct number of thumbview columns Rather then assuming 5000 will be enough, just set the number of columns to the number of thumbnails in the view. Fixes bug 634958 and bug 678446. Signed-off-by: Hans de Goede - Add missing stdlib.h includes For the EXIT_* macro definitions. https://bugzilla.gnome.org/show_bug.cgi?id=682491 - Remove unneeded XOverlay includes https://bugzilla.gnome.org/show_bug.cgi?id=682490 - Ensure width is a multiple of 8, and height of 2 We ask GStreamer to use an YUV format in the pipeline, by setting the camerabin's "filter-caps" to "video/x-raw-yuv", and GStreamer demands of YUV format frames that their width is a multiple of 8, and their height a multiple of 2. Previous to this patch my bttv tvcard lists the following resolutions in Cheese: 924x576 (*) 920x576 640x480 462x288 (*) 460x288 (*) 320x240 231x144 (*) 230x144 (*) 160x120 Where all the ones marked with an asterisk do not work. After this patch the list is: 920x576 640x480 456x288 320x240 224x144 160x120 And all work. Signed-off-by: Hans de Goede - Fix cheese_camera_device_update_format_table loop Some devices report a very small min_width / height down to reporting 0x0 as minimum resolution, which causes an infinite loop in cheese_camera_device_update_format_table(). This patch limits the minimum resultion to 160x120, both to fix the infinite loop issue, and to remove ridiculous resolutions such as 2x2, 5x3, 11x7, 22x15 etc. which are seen in the resolution drop down on some devices. For more details on the infinite loop issue, see: https://bugzilla.redhat.com/show_bug.cgi?id=850505 Signed-off-by: Hans de Goede - Post-release version bump to 3.5.90 - Added/Updated Translations - as, courtesy of Nilamdyuti Goswami - de, courtesy of Tobias Endrigkeit - gl, courtesy of Leandro Regueiro - gu, courtesy of "Last-Translator: \n" - he, courtesy of Yaron Shahrabani - id, courtesy of Dirgita - it, courtesy of Francesco Valente - kn, courtesy of Shankar Prasad - lt, courtesy of Aurimas Černius - mr, courtesy of Sandeep Shedmake - nb, courtesy of Kjartan Maraas - pl, courtesy of Piotr Drąg - pt, courtesy of Duarte Loreto - sr, courtesy of Мирослав Николић - sr@latin, courtesy of Miroslav Nikolić - ta, courtesy of Dr.T.Vasudevan - vi, courtesy of Nguyễn Thái Ngọc Duy - zh_HK, courtesy of Chao-Hsiung Liao - zh_TW, courtesy of Chao-Hsiung Liao - Added/Updated Documentation - de, courtesy of Mario Blättermann ======================================== evolution ======================================== Evolution 3.5.91 2012-09-03 --------------------------- Bug Fixes: Bug 586186 - Calendar print uses too small font (Conrad Steenberg) Bug 678476 - Critical warnings on calendar factory console (Milan Crha) Bug 679862 - Do not use ENameSelectorEntry in .ui files (Milan Crha) Bug 680786 - [text-highlight] Correctly display binary patches (Dan Vrátil) Bug 681431 - Expanded attachment bar hides headers (Dan Vrátil) Bug 681669 - 'Select today' in work week view goes to wrong week (Milan Crha) Bug 681877 - Postpone window changes saving for a second (Milan Crha) Bug 682494 - Add some defensive checks in gal-a11y-e-text.c (Mike Gorse) Bug 682519 - vcard-inline: Typo in translatable string (Matthew Barnes) Bug 682678 - Entering the end date for a recurring event is very difficult (Milan Crha) Bug 682811 - Can edit properties of local/vfolder stores (Matthew Barnes) Bug 682955 - Support GStreamer 1.0 (Dominique Leuenberger) Other Changes: * cal-config-webcal: Accept URIs with webcal:// scheme. (Matthew Barnes) * Adjust for webkit 1.9.90 API change. (Dominique Leuenberger) * Fix visibility of parts in prefer-plain (Dan Vrátil) * Add support for application/ics to ITIP formatter (Dan Vrátil) * Make sure evolution-alarm-notify is running on Evolution's start (Milan Crha) Translations: Daniel Mustieles (es) Fran Diéguez (gl) Andika Triwidada (id) Aurimas Černius (lt) Kjartan Maraas (nb) Piotr Drąg (pl) Yuri Myasoedov (ru) Nguyễn Thái Ngọc Duy (vi) Chao-Hsiung Liao (zh_HK) ======================================== file-roller ======================================== version 3.5.91 -------------- Bugs fixed: * Nautilus extension "Compress" doesn't offer .gz anymore (#682807) * Fixed build wihtout libarchive support (#682774) * libarchive: restore the file attributes when extracting (#682513) New or updated application translations: * American English (Dr.T.Vasudevan) * Assamese (Nilamdyuti Goswami) * Greek (Tom Tryfonidis) * Indonesian (Dirgita) * Kazakh (Baurzhan Muftakhidinov) * Lietuvių (Aurimas Černius) * Norwegian bokmål (Kjartan Maraas) * Polish (Piotr Drąg) * Portuguese (Duarte Loreto) * Russian (Yuri Myasoedov) * Vietnamese (Nguyễn Thái Ngọc Duy) New or updated manual translations: * German (Mario Blättermann) * Greek (Tom Tryfonidis) ======================================== gedit ======================================== =========== gedit 3.5.2 =========== New Features and Fixes ====================== - Improvements in snippets plugin (Jesse van den Kieboom) - Use autoreconf instead gnome-autogen (Javier Jardón) - Misc bugfixes New and updated translations ============================ - ar (Khaled Hosny) - as (Nilamdyuti Goswami) - de (Mario Blättermann) - el (Tom Tryfonidis) - es (Daniel Mustieles) - gl (Fran Dieguez) - gu ("Last-Translator: \n") - he (Yaron Shahrabani) - id (Andika Triwidada) - it (Milo Casagrande) - ja (OKANO Takayoshi) - lt (Aurimas Černius) - mr (Sandeep Shedmake) - nb (Kjartan Maraas) - nn (Moonchild) - pl (Piotr Drąg) - pt (Duarte Loreto) - ru (Stas Solovey) - ru (Yuri Myasoedov) - sl (Matej Urbančič) - sr@latin (Miroslav Nikolić) - sr (Мирослав Николић) - tr (Muhammet Kara) - vi (Nguyễn Thái Ngọc Duy) - zh_CN (Colin Zhao) - zh_HK (Chao-Hsiung Liao) - zh_TW (Chao-Hsiung Liao) ======================================== gnome-boxes ======================================== 3.5.91 - Sept 3rd, 2012 ======================= Changes since 3.5.90: - Download OS logos on demand instead of shipping them in gnome-boxes or in a non-free package. - Allow to customize box memory and maximum disk size before creating it. - More responsive box removals. - Make stopped/saved boxes easier to distinguish. Saved boxes show a grayed out thumbnail of their display and stopped boxes show a black screen. - Add the ability to use an additional ISO with extra Windows drivers for use during unattended installs. For now, Boxes can use it to install the Windows system to a virtio disk. It also needs to be made available manually (this will be improved at a later point), 'make win-tools.iso' can be used to download it, http://git.gnome.org/browse/gnome-boxes/commit/?id=af09bc77c5 explains what to do with it. - Tweak auto-hiding of fullscreen toolbar. - Improve box display scaling (when using a very recent spice-gtk). - Various UI fixes and improvements. - Added/updated translations: - Assamese - Galician - Greek - Hebrew - Lithuanian - Norwegian bokmål - Polish - Russian - Simplified Chinese (zh_CN) - Spanish - Traditional Chinese (Hong Kong and Taiwan) - Vietnamese All contributors to this release: Alexander Larsson Aurimas Černius Chao-Hsiung Liao Christophe Fergeau Daniel Mustieles Fran Diéguez Kjartan Maraas Marc-André Lureau Nguyễn Thái Ngọc Duy Nilamdyuti Goswami Piotr Drąg Tom Tryfonidis tuhaihe Yaron Shahrabani Yuri Myasoedov Zeeshan Ali (Khattak) ======================================== gnome-documents ======================================== 3.5.91 - "Whiteberry" ==================== - Add a Select All/Select None menu to the selection mode toolbar - Add a notification while Tracker is indexing the file system - Add a No Documents Found page when tracker returns empty results - Fix persistance of document name change from the properties dialog - Don't abort when failing to start miners (Anna Zacchi) ======================================== orca ======================================== 3.5.91 - 3 September 2012 General * Fix for bug 681892 - More UnicodeDecodeErrors New and updated translations (THANKS EVERYONE!!!): el Greek Tom Tryfonidis id Indonesian Andika Triwidada lt Lithuanian Aurimas Černius pl Polish Piotr Drąg ru Russian Yuri Myasoedov ========= ======================================== rygel ======================================== 0.15.3 ====== A new release in Rygel's unstable cycle! Changes compared to 0.15.2: - Fix typos in NEWS file. - Update/Add some copyright headers. - Fix the AVC_MP4_BL_CIF15_AAC_520 transcoder and enable it by default. - Disable broken transmuxing. Was only working by chance anyway. - Add start-up scripts for upstart, systemd and debian systemv. MediaExport: - Fix a regression in searching introduced in 0.15.2. - Fix uploading. This was a "regression" we introduced while fixing uploading for the N9. The new method works for Tracker and MediaExport. Bugs fixed in this release: - https://bugzilla.gnome.org/show_bug.cgi?id=683028 All contributors to this release: Jens Georg Piotr Drąg Mark Ryan Andika Triwidada Added/updated translations - id, courtesy of Andika Triwidada - pl, courtesy of Piotr Drąg ======================================== seahorse ======================================== seahorse 3.5.91 --------------- * Updated translations