Luis Medinas | 1 Jul 03:12
Picon

Brasero 2.26.3 release

Brasero 2.26.3

Bugs fixed:
#582461 – Brasero hangs at normalizing tracks
#582261 – brasero shows 0% done, while continues burning disc
#582513 – Bogus VIDEO_TS directory error if AUDIO_TS directory present
#580617 – Brasero floods .xsession-errors log with "Unknown (or already deleted) monitored
directory" warnings
#563501 – Brasero burning window shouldn't try to show drive speed while is converting audio files
#581305 – track number not correct displayed
Translation Updates

Homepage: http://www.gnome.org/projects/brasero

Please report bugs to: http://bugzilla.gnome.org/browse.cgi?product=brasero

Mailing List for User and Developer discussion: brasero-list <at> gnome.org

GIT Repository: http://git.gnome.org/cgit/brasero

Thanks to all the people who contributed to this release through patches, translation, advices, artwork,
bug reports.

_______________________________________________
gnome-announce-list mailing list
gnome-announce-list <at> gnome.org
http://mail.gnome.org/mailman/listinfo/gnome-announce-list
Paul Cutler | 1 Jul 17:25
Picon
Gravatar

GNOME Journal Issue 15, July 2009

The GNOME Journal team is excited to announce the second release of 2009, Issue 15 of the GNOME Journal.  Featuring six new articles, including three from first time GNOME Journal contributors, in this edition you will find:  a review of Project Hamster by Les Harris, an interview on working with upstream with Laszlo Peter by Stormy Peters, using git for GNOME translators by Og Maciel, an introduction to GNOME Zeitgeist by Natan Yellin, a look at some of GNOME Do's advanced features by Jorge Castro, and lastly, the Behind the Scenes feature continues with Owen Taylor by Paul Cutler.

The GNOME Journal team will be at GUADEC next week.  Please feel free to share any feedback or comments about GNOME Journal with the team.  If you have an idea for an article, would like to be interviewed at GUADEC for an upcoming issue, or have an application you would like reviewed, please look for me next week or drop me an email to schedule some time.

All articles are licensed under a Creative Commons 2.0 Attribution-Sharealike license.

What are you waiting for?  Go read it now!   http://www.gnomejournal.org


_______________________________________________
gnome-announce-list mailing list
gnome-announce-list <at> gnome.org
http://mail.gnome.org/mailman/listinfo/gnome-announce-list
Emmanuele Bassi | 1 Jul 17:46
Picon
Gravatar

[ANNOUNCE] Clutter 0.9.6 (core) - 1.0.0rc2, developers snapshot

hi everyone;

Clutter 0.9.6 is now available for download at:

  http://www.clutter-project.org/sources/clutter/0.9/

MD5 Checksums:

  e8b92cfb5180935f1aba497948f37166  clutter-0.9.6.tar.gz
  30653168bca6d36a560562e14867b804  clutter-0.9.6.tar.bz2

Clutter is an open source software library for creating fast, visually
rich and animated graphical user interfaces. Clutter is licensed under
the terms of the GNU Lesser General Public License version 2.1.

Clutter currently requires:

  * GLib >= 2.16.0
  * Cairo >= 1.6
  * Pango >= 1.20
  * OpenGL >= 1.4, OpenGL ES 1.1 or OpenGL ES 2.0
  * GLX, SDL, WGL, Quartz or an EGL Implementation

The official website is: http://www.clutter-project.org
The Clutter blog is at:  http://www.clutter-project.org/blog
To subscribe to the Clutter mailing list, send mail to: clutter+subscribe <at> o-hand.com 
The official mailing list archive is: http://lists.o-hand.com/clutter/
API reference: http://www.clutter-project.org/docs/clutter/0.9/

Notes
-----

   o This is a development release of Clutter 0.9 leading towards the
     1.0 stable cycle. It is the second release candidate for the 1.0.0
     release: the Clutter high-level API is to be considered frozen, as
     well as the COGL low-level API.

   o This version is fully API and ABI incompatible with the previous
     0.8 releases.

   o This version is parallel installable with Clutter 0.8.

   o Installing this version will overwrite the files from the
     installation of a git clone of the current development
     branch (master).

   o Bugs should be reported to: http://bugzilla.o-hand.com

What's new in Clutter 0.9.6
---------------------------

    o Allow the manipulation of the actor's transformation matrix, so that is
      is possible to apply additional transformations in a way that is
      compatible with the transformations already applied by the scene graph.

    o Fix a race in the X11 backend that happened between resizing the stage
      drawable and the call to glViewport().

    o Merge the cogl-journal-batching branch; this branch implements batching
      the geometry of the elements of the scene graph before sending it to
      OpenGL, thus minimizing the number of state changes and improving the
      overall performance of Clutter-based applications.

    o Add more debugging states for Clutter and COGL, which allow the developer
      to track the state of the journal; to check the VBO fallback paths; to
      disable picking for reliable profiling; to disable software-side matrix
      transformations in favour of the driver/GPU ones.

    o Improve the ability to "break out" of COGL by using gl_begin/gl_end
      semantics; applications that drop into raw GL are, though, ignoring all
      the caching performed by COGL and might incur in performance issues.

    o Fixed the :load-async and :load-data-async properties of Texture by
      removing the unneeded G_PARAM_CONSTRUCT flag.

    o Added an initial migration guide that shows the porting process from
      older releases of Clutter to the 1.0 API; the first chapter deals with
      the migration from ClutterEffect to the new implicit animations API.

    o Fixed MT-safety for the master clock.

Many thanks to:

  Ole André Vadla Ravnås
  Tim Horton

Full list of changes since 0.9.4:
---------------------------------

Damien Lespiau (2):
      [misc] Update headers #endif comments
      [cogl] Add COGL_HAS_GL and COGL_HAS_GLES

Emmanuele Bassi (14):
      Post-release bump to 0.9.5
      [texture] Revert to integer parameters in ::size-change
      [docs] Fix the ActorBox annotations
      [docs] Add an initial porting guide
      [docs] Update after the Input API changes
      Add more debug notes inside the master clock
      [actor] Remove unused clutter_actor_pick()
      Add debug notes for calls to glViewport()
      [x11] Fix the race between resize and glViewport calls
      Split the typdef to avoid confusing scanners
      [actor] Allow changing the transformations matrix
      [actor] Remove the unused get_allocation_coords()
      [docs] Update the NEWS and README files
      [release] 0.9.6

Neil Roberts (1):
      [test-shader] Fix some of the shaders to use premultiplied colors

Ole André Vadla Ravnås (1):
      [master clock] Fix MT safety issues

Robert Bragg (40):
      [vertex-buffer] Remove the COGL_INDICES_TYPE_UNSIGNED_INT indicies type
      [vertex-buffer] Add cogl_vertex_buffer_indices_get_type API
      [test-cogl-tex-getset] Assume a premultiplied pixel format
      [cogl_polygon] fixes a buffer overrun and color format bug
      [debug] Adds a "nop-picking" clutter debug option to NOP _clutter_do_pick()
      [cogl matrix] Adds ability to dirty state cached by the client matrix apis
      [cogl] Adds cogl_read_pixels to replace direct use of glReadPixels
      [cogl-texture] use the right format when downloading sliced textures from GL
      [cogl] Give the default (fallback) texture a format of RGBA_8888_PRE
      [cogl] Remove unused ctx->polygon_vertices array
      [clip-stack] Use signed integers while combining window space clip rectangles
      [cogl] Improving Cogl journal to minimize driver overheads + GPU state changes
      [journal] Always pad our vertex data as if at least 2 layers are enabled
      [actor] Avoid modifying materials mid-scene to improve journal batching
      [rectangle] Avoid modifying materials mid scene
      [cogl material] optimize logging of material colors in the journal
      [cogl-color] Adds a cogl_color_equal() function
      [cogl-debug] Adds a "client-side-matrices" Cogl debug option
      [cogl] Force Cogl to always use the client side matrix stack
      [cogl] Adds a debug option for disabling use of VBOs --cogl-debug=disable-vbos
      [Cogl journal] Adds a --cogl-debug=journal option for tracing the journal
      [cogl journal] Adds a --cogl-debug=batching option to trace batching
      [Cogl journal] use G_UNLIKLEY around runtime debugging conditions
      [cogl journal] Perform software modelview transform on logged quads.
      [material] avoid flushing the journal when just changing the color
      [material] _cogl_material_equal: catch the simplest case of matching handles
      [pango-display-list] Use the Cogl journal for short runs of text
      [cogl] avoid using the journal in _cogl_add_path_to_stencil_buffer
      [journal] Don't resize a singlton VBO; create and destroy a VBO each flush
      [cogl] flush matrices in _cogl_add_path_to_stencil_buffer
      [cogl] disable all client tex coord arrays in _cogl_add_path_to_stencil_buffer
      [cogl-vertex-buffer] Disable unused client tex coord arrays
      Revert "[actor] Avoid modifying materials mid-scene to improve journal batching"
      Revert "[rectangle] Avoid modifying materials mid scene"
      [cogl-material] Be more carefull about flushing in cogl_material_remove_layer
      Adds a cogl_flush() to give developers breaking into raw GL a fighting chance
      [cogl] Improve ability to break out into raw OpenGL via begin/end mechanism
      Merge branch 'cogl-journal-batching'
      [cogl] Ensure well defined semantics for COGL_INVALID_HANDLE material layers
      [cogl] cache the viewport width and height

Tim Horton (1):
      Add element-type annotations for animate*v functions

Øyvind Kolås (1):
      [texture] fix load-async and load-data-async properties.

Have fun with Clutter!

ciao,
 Emmanuele.

--

-- 
Emmanuele Bassi, Intel Open Source Technology Center

_______________________________________________
gnome-announce-list mailing list
gnome-announce-list <at> gnome.org
http://mail.gnome.org/mailman/listinfo/gnome-announce-list
Matthias Clasen | 2 Jul 00:58
Picon
Favicon

GTK+ 2.16.4 released

GTK+ 2.16.4 is now available for download at:

 ftp://ftp.gtk.org/pub/gtk/2.16/
 http://download.gnome.org/sources/gtk+/2.16/

md5 sums:
d666f9f5a544e9d4d45804d88b1b5c4d  gtk+-2.16.4.tar.bz2
8b6010c62013808d549474e4e5fcc7be  gtk+-2.16.4.tar.gz

sha1 sums:
e162f21fc587d9856b1560c461953bb9bcec2242  gtk+-2.16.4.tar.bz2
ba92f581ee36737fb01b0be1a2cecce4285c96a8  gtk+-2.16.4.tar.gz

This is a quick followup release to fix an unfortunate bug that
was introduced in 2.16.3.

============

GTK+ is a multi-platform toolkit for creating graphical user
interfaces. Offering a complete set of widgets, GTK+ is suitable for
projects ranging from small one-off tools to complete application
suites.

GTK+ has been designed from the ground up to support a range of
languages, not only C/C++. Using GTK+ from languages such as Perl and
Python (especially in combination with the Glade GUI builder) provides
an effective method of rapid application development.

GTK+ is free software and part of the GNU Project. However, the
licensing terms for GTK+, the GNU LGPL, allow it to be used by all
developers, including those developing proprietary software, without
any license fees or royalties.

Where to get more information about GTK+
========================================

Information about GTK+ including links to documentation can be
found at:

http://www.gtk.org/

An installation guide for GTK+ 2.x is found at:

 http://developer.gnome.org/doc/API/2.0/gtk/gtk-building.html

Common questions:

http://developer.gnome.org/doc/API/2.0/gtk/gtk-question-index.html
http://www.gtk.org/faq/

Contributing
============

GTK+ is a large project and relies on voluntary contributions.
We are actively searching for new contributors in various areas
and invite everyone to help project development.
If you are willing to participate, please subscribe to the project
mailing lists to offer your help and read over our list of vacant
project tasks:
   http://live.gnome.org/GtkTasks

Overview of Changes from GTK+ 2.16.3 to 2.16.4
==============================================

* Fix a side-effect introduced by the fix for bug 586330 that
  caused all stock buttons to loose their mnemonics.

July 1, 2009
Matthias Clasen
Dodji Seketeli | 2 Jul 16:08

Nemiver release 0.7.0 now available


Hello,

There have been 2 months since the last release. Lots of things did happen
since then. The most notable is the switch to the GDB Variable Objects
mechanism (part of the GDB Machine Interface).

Aside the implied architecture change with respect to how we
deal with variables, that switch allowed us to fix quite some bugs and add
some new interesting features like editing variable values, easier pointer
de-referencing and a fancier variable "popup tip" that appears whenever the
user hovers over a variable.

We nonetheless hope that this 0.7.0 opus brings you an enjoyable and robust
user experience.

Now the formal part of the announcement.

What is Nemiver?
================
Nemiver is a standalone graphical debugger that integrates well in the
GNOME desktop environment.
It currently features a backend which uses the GNU debugger GDB for
debugging C/C++ programs.

Where to get it?
================
This release is available as a source package in tar.gz and tar.bz2 formats
and can be downloaded from: http://download.gnome.org/sources/nemiver

The home page of the Nemiver project is at http://projects.gnome.org/nemiver

What's Changed in this release?
====================
David Planella:
      Updated Catalan translation

Dodji Seketeli:
      Support GDB Variable Objects (Closes: #573678)
      Properly show reference variable (Closes: #585466)
      Make pointer dereferencing more intuitive (Closes: #530902)
      Support variable value editing in variable inspector (Closes: #581169)
      Add watchpoint support (Closes: #386450)
      Support copying variables to the clipboard (Closes: #547329)
      Hide var tooltip appropriatly (Closes: #545596)
      Don't overrun frames vector (Closes: #585516)
      Keep popup tip under control (Closes: #585657)
      Awesome up variable popup tip
      New nmv_abort_on_throw environment variable
      Allow the ',' separator in NMV_LOG_DOMAINS env var

Javier Jardon:
      Use AM_SILENT_RULES for nicer compilation output

Jonathon Jongsma:
      Fix unused variable warning

Takeshi AIHANA:
      Updated Japanese translation

Thanks.

--

-- 
Dodji Seketeli
En occident on a des montres, en Afrique on a le temps.
Picon

gedit 2.26.3 has been released

gedit 2.26.3 has been released

gedit is the official text editor of the GNOME desktop.

NEWS:

New Features and Fixes
======================
- Avoid sync stat for icon of remote bookmarks
- Hide fullscreen control when minimizing gedit
- Only apply modelines when strictly necessary

New and updated translations
============================
- cs (Marek Cernocky)

homepage: http://www.gedit.org
downloads: http://ftp.gnome.org/pub/GNOME/sources/gedit/2.26/

Jesse
Picon
Favicon
Gravatar

[ANNOUNCE] librep 0.90.0

Hi all,

the librep release the upcoming sawfish release (3rd/4th July) is based
on is now available.

0.90.0
======

   * Added UTF-8 Support! [Wang Diancheng]

   * Remove scheme and unscheme modules

   * Going on with code-cleanup

get it from the usual place:
https://sourceforge.net/project/showfiles.php?group_id=580

Have a lot of fun!
Chris
Picon
Favicon
Gravatar

[ANNOUNCE] sawfish-1.5.0

Hi all,

The long awaited 1.5.0 release of sawfish is finally available!

I've never thought of sawfish 1.5.0 beeing released before e17, two years ago. Thanks to John, Janek, the
Sawfish-Crew, all Contributors and Users, Mandriva/Gentoo/Debian/ALT/Arch which did not drop
sawfish and provide fresh packages.

It's brings one incompatibility compared to 1.3x: ~/.sawmillrc is no longer a valid configurationfile,
if you still use that file, simply rename it to either ~/.sawfishrc or ~/.sawfish/rc, and you're done.

Some additonal notes:

for compiling with XFree86 or X.Org 6.x instead of X.Org 7.x, add the following flag to configure:

--without-xorg-x11

for compiling with Imlib1 as image-loader instead of gdk-pixbuf-xlib (which works again), add:

--without-gdk-pixbuf

for not installing translations, add:

--without-nls

or (deprecated, since ="no" would install norwegian translation instead of nothing)

--enable-linguas=" "

to compile without pango, add:

--without-pango

(by default, X.Org 7, gdk-pixbuf-xlib, nls and pango are enabled)

The Overview of changes

1.5.0
=====

   * The 1.5.0 release has new features and bugfixes

   * New/Updated requirements:
        - librep 0.17 -> 0.90.0

        - rep-gtk 0.18.3 -> 0.18.4

   * User visible changes:
        - Fully renamed from "sawmill" to "sawfish"

          If your `.sawfishrc' has a line `(require 'sawmill-defaults)',
          then change it to `(require 'sawfish-defaults)'.

          If your configuration file is named `~/.sawmillrc', then
          rename it to `~/.sawfish/rc' or `~/.sawfishrc'.

        - Configurator GUI's default style is tree view of categories.

          Configurator GUI (sawfish-ui) used to display categories in
          flat row, but now arranges them in tree diagram.

          To use the old style, put `(define-special-variable
          customize-program "sawfish-ui --flatten")' in your
          configuration file.

   * Bugs fixed:
        - Fixed an compilation-error caused by glib [Michal Jaegermann]

        - Make building with imlib1 instead of gdk-pixbuf work again
          [Michal Jaegermann]

        - Create src/build.h, since it has been missing before
          [Christopher Bratusek]

        - Fixed an "unknown remote error" that might appear [Alexey I.
          Froloff]

        - Make "make uninstall" work again [Christopher Bratusek]

        - Fixed the issue that apps did not start iconified, even if
          requested [Ian Zimmerman, Teika Kazura]

        - First create $datadir/applications, then install the desktop
          file [Christopher Bratusek]

        - Fixed default animation outline coordinates [Christopher
          Bratusek]

        - Don't ignore datarootdir setting [Christopher Bratusek]

        - Make Sawfish more error-tolerant if an app has an icomplete
          WM_CLASS [Martin Mares]

        - Make sure we don't mix Super and Hyper [Denis Barbier]

        - Fixup the last incomplete AC_DEFINE [Christopher Bratusek]

        - Fixed a speed-issue with microGUI [Christopher Bratusek]

        - Make properly use of WM_NAME in Elberg-tabbed [Christopher
          Bratusek]

   * New features:
        - UTF-8 Support in Windowmenus [Wang Diancheng]

        - UTF-8 Support in GTK Widgets [Christopher Bratusek]

        - Tabbed Windowing Support [Yann Hodique, Scott Scriven, Nathan
          Froyd, Christopher Bratusek]

        - Improved KDE3 Integration [Timo Korvola]

        - Replaced hardcoded focus logic by focus-revert function [Timo
          Korvola]

        - Tabbed Windowing Support: Raise Tabs on hover [Christopher
          Bratusek]

        - Warp cursor to cycled windows, if warp-cursor is enabled
          [Christopher Bratusek]

        - Warp cursor to unmaximied windows, if warp-cursor is enabled
          [Fernando Carmona Varo]

        - 3 New Window-Animators: cross, elliptical and draft
          [Christopher Bratusek, Teika Kazura[draft fixups]]

        - Shrinking/Yanking Support [Timo Korvola]

        - Infinite Desktop Feature (make the virtual desktop bigger
          than the physical) [David T. McWherter]

        - Make Viewport commands appear in Sawfish-UI [Christopher
          Bratusek]

        - Make Window History appear in Sawfish-UI [Christopher
          Bratusek]

        - Added cycle-among-groups(,-backwards) commands (cycle between
          the most recently used window of groups) [Fernando Carmano
          Varo]

        - Interactive placement-mode now also for transients
          [Christopher Bratusek]

        - Improved prompt.jl (allows changing font, fg and bg color)
          [Sergey I. Sharybi]

        - Expose fixed-position, never-iconify, never-maximize in the
          Window-Matcher UI [Christopher Bratusek]

   * Other changes:
        - To build with XFree86/X.Org < 7.0 add -without-xorg-x11r7
          flag [Christopher Bratusek]

        - To build without Pango add -without-pango flag [Christopher
          Bratusek]

        - To prevent installing translations add -without-nls flag
          [Christopher Bratusek]

        - Set RestartStyleHint to 2 [Christian Marillat]

        - When matching window to alist try WM_NAME if WM_CLASS is
          unset [Christian Marillat]

        - Major Documentation update [Derek Upham, Teika Kazura]

        - New Sound Theme [glh Pimenta]

        - Added ebuild [Harald van Dijk]

        - Added session desktop file [Christopher Bratusek]

        - rep.m4 has been dropped use librep.pc/rep-gtk.pc instead
          [Christopher Bratusek]

        - Added sawfish.pc [Christopher Bratusek]

        - Improved Makefile's distclean rule [Christopher Bratusek]

        - Updated .desktop files for gnome-session >=2.23 [Christopher
          Bratusek]

        - Fixed autogen for libtool >2.2 [Christopher Bratusek]

        - Major configure script rework [Christopher Bratusek]

        - Don't ship config.sub config.guess and install-sh in
          $srcdir/etc [Christopher Bratusek]

        - Reworked Sawfish-UI [Christopher Bratusek]

        - Dropped libgnome|gnomeui|gnomecanvas widgets, use pure gtk
          instead [Christopher Bratusek]

        - Merged changes from sawfish-pager [Christopher Bratusek]

        - Major update of the spec file [Christopher Bratusek, Michal
          Jaegermann, Ritz]

        - Print usefull stuff at the end of configure [Christopher
          Bratusek]

        - Add distclean rule to all Makefiles [Christopher Bratusek]

        - Add KEYBINDINGS file, containing a list of all default
          keybindings [Christopher Bratusek]

        - Updated OPTIONS for all new options [Christopher Bratusek]

        - Cleaned Up Makedefs.in [Christopher Bratusek]

        - Move 'avoid' window-matcher from placement to state [Teika
          Kazura]

        - Updated compat.jl [Teika Kazura]

        - Removed all old ChangeLog files [Christohper Bratusek]

        - Make move-cursor.jl export all functions described in the doc
          [Christopher Bratusek]

Download:

Get it from the usual place: https://sourceforge.net/project/showfiles.php?group_id=32

Have a lot of fun and stay tuned!
Chris
Picon
Favicon
Gravatar

[ANNOUNCE] librep 0.90.0

Hi all,

the librep release the upcoming sawfish release (3rd/4th July) is based
on is now available.

0.90.0
======

   * Added UTF-8 Support! [Wang Diancheng]

   * Remove scheme and unscheme modules

   * Going on with code-cleanup

get it from the usual place:
https://sourceforge.net/project/showfiles.php?group_id=580

Have a lot of fun!
Chris
Lucas Rocha | 3 Jul 20:42
Picon
Gravatar

gjs 0.3 released

Version 0.3
-----------

Changes:
    - DBus support
      At a high level there are three pieces. First, the "gjs-dbus" library is
      a C support library for DBus.  Second, the modules/dbus*.[ch] implement
      parts of the JavaScript API in C.  Third, the modules/dbus.js file fills
      out the rest of the JavaScript API and implementation.
    - Support simple fields for boxed types
    - Support "copy construction" of boxed types
    - Support simple structures not registered as boxed
      - Allow access to nested structures
      - Allow direct assignment to nested structure fields
      - Allow enum and flag structure fields
      - Allow creating boxed wrapper without copy
    - Support for non-default constructor (i.e. constructors like
      GdkPixbuf.Pixbuf.new_from_file(file))
    - Add a Lang.bind function which binds the meaning of 'this'
    - Add an interactive console gjs-console
    - Allow code in directory modules (i.e. the code should reside in
      __init__.js files)
    - Fix handling of enum/flags return values
    - Handle non-gobject-registered flags
    - Add Tweener.registerSpecialProperty to tweener module
    - Add profiler for javascript code
    - Add gjs_context_get_all and gjs_dumpstack - useful to invoke from a
      debugger such as gdb
    - Support GHashTable
      - GHashTable return values/out parameters
      - Support GHashTable 'in' parameters
      - Convert JSON-style object to a GHashTable
    - Add support for UNIX shebang (i.e. #!/usr/bin/gjs-console)
    - Support new introspection short/ushort type tags
    - Support GI_TYPE_TAG_FILENAME
    - Improve support for machine-dependent integer types and arrays of
      integers
    - Fix several memory leaks

Contributors:
    Colin Walters, C. Scott Ananian, Dan Winship, David Zeuthen,
    Havoc Pennington, Johan Bilien, Johan Dahlin, Lucas Rocha,
    Marco Pesenti Gritti, Marina Zhurakhinskaya, Owen Taylor,
    Tommi Komulainen

Bugs fixed:
    Bug 560506 - linking problem
    Bug 560670 - Turn on compilation warnings
    Bug 560808 - Simple field supported for boxed types
    Bug 561514 - memory leak when skipping deprecated methods
    Bug 561516 - skipping deprecated methods shouldn't signal error case
    Bug 561849 - Alternate way of connecting signals.
    Bug 562892 - valgrind errors on get_obj_key
    Bug 564424 - Add an interactive console
    Bug 564664 - Expose JS_SetDebugErrorHook
    Bug 566185 - Allow code in directory modules
    Bug 567675 - Handle non-gobject-registered flags
    Bug 569178 - Add readline support to the console module
    Bug 570775 - array of parameters leaked on each new GObject
    Bug 570964 - Race when shutting down a context, r=hp
    Bug 580948 - Add DBus support
    Bug 584560 - Add support for UNIX shebang
    Bug 584850 - Clean up some __BIG definitions.
    Bug 584858 - Fix errors (and leftover debugging) from dbus merge.
    Bug 584858 - Move gjsdbus to gjs-dbus to match installed location.
    Bug 585386 - Add a flush() method to DBus bus object.
    Bug 585460 - Fix segfault when a non-existing node is introspected.
    Bug 586665 - Fix seg fault when attempting to free callback type.
    Bug 586760 - Support converting JavaScript doubles to DBus int64/uint64.
    Bug 561203 - Fix priv_from_js_with_typecheck() for dynamic types
    Bug 561573 - Add non-default constructors and upcoming static
methods to "class"
    Bug 561585 - allow using self-built spidermonkey
    Bug 561664 - Closure support is broken
    Bug 561686 - Don't free prov->gboxed for "has_parent" Boxed
    Bug 561812 - Support time_t
    Bug 562575 - Set correct GC parameters and max memory usage
    Bug 565029 - Style guide - change recommendation for inheritance
    Bug 567078 - Don't keep an extra reference to closures
    Bug 569374 - Logging exceptions from tweener callbacks could be better
    Bug 572113 - add profiler
    Bug 572121 - Invalid read of size 1
    Bug 572130 - memory leaks
    Bug 572258 - profiler hooks should be installed only when needed
    Bug 580865 - Call JS_SetLocaleCallbacks()
    Bug 580947 - Validate UTF-8 strings in gjs_string_to_utf8()
    Bug 580957 - Change the way we trigger a warning in testDebugger
    Bug 581277 - Call JS_SetScriptStackQuota on our contexts
    Bug 581384 - Propagate exceptions from load context
    Bug 581385 - Return false when gjs_g_arg_release_internal fails
    Bug 581389 - Fix arg.c to use 'interface' instead of 'symbol'
    Bug 582686 - Don't g_error() when failing to release an argument
    Bug 582704 - Don't depend on hash table order in test cases
    Bug 582707 - Fix problems with memory management for in parameters
    Bug 584849 - Kill warnings (uninitialized variables, strict aliasing)
    Bug 560808 - Structure support

Gmane