From cworth at cworth.org Wed Jun 14 12:01:56 2006 From: cworth at cworth.org (Carl Worth) Date: Wed, 14 Jun 2006 09:01:56 -0700 Subject: cairo snapshot 1.1.8 now available Message-ID: <87pshbd8uj.wl%cworth@cworth.org> A new cairo snapshot 1.1.8 is now available from: http://cairographics.org/snapshots/cairo-1.1.8.tar.gz which can be verified with: http://cairographics.org/snapshots/cairo-1.1.8.tar.gz.sha1 ad660fe7bfede1882f4b81798e3e0ef8fe7ecb9b cairo-1.1.8.tar.gz http://cairographics.org/snapshots/cairo-1.1.8.tar.gz.sha1.asc (signed by Carl Worth) Additionally, a git clone of the source tree: git clone git://git.cairographics.org/git/cairo will include a signed 1.1.8 tag which points to a commit named: dd859b8736bb4d1bcf3ed78d0bd1f72a7aad9ca9 which can be verified with: git verify-tag 1.1.8 and can be checked out with a command such as: git checkout -b build 1.1.8 This is the fourth in a series of snapshots working toward the 1.2 release of cairo. At this point, all major features of the 1.2 release are in place, leaving just a few bug fixes left. In particular, there will be no additional API changes between this 1.1.8 snapshot and the 1.2 release. The announcement for 1.1.6 mentioned several API changes being considered. Only one of these changes was actually implemented (set_dpi -> fallback_resolution). This change does introduce one source-level incompatibility with respect to previous 1.1.x snapshots, so see below for details. What is cairo ============= Cairo is a 2D graphics library with support for multiple output devices. Currently supported output targets include the X Window System, win32, and image buffers. Experimental backends include OpenGL (through glitz), Quartz, XCB, PostScript and PDF file output. Cairo is designed to produce consistent output on all output media while taking advantage of display hardware acceleration when available (for example, through the X Render Extension). The cairo API provides operations similar to the drawing operators of PostScript and PDF. Operations in cairo including stroking and filling cubic B?zier splines, transforming and compositing translucent images, and antialiased text rendering. All drawing operations can be transformed by any affine transformation (scale, rotation, shear, etc.). Cairo has been designed to let you draw anything you want in a modern 2D graphical user interface. At the same time, the cairo API has been designed to be as fun and easy to learn as possible. If you're not having fun while programming with cairo, then we have failed somewhere---let us know and we'll try to fix it next time around. Cairo is free software and is available to be redistributed and/or modified under the terms of either the GNU Lesser General Public License (LGPL) version 2.1 or the Mozilla Public License (MPL) version 1.1. Where to get more information about cairo ========================================= The primary source of information about cairo is: http://cairographics.org/ The latest releases of cairo can be found at: http://cairographics.org/releases Snapshots of in-development versions of cairo: http://cairographics.org/snapshots The programming manual for using cairo: http://cairographics.org/manual Mailing lists for contacting cairo users and developers: http://cairographics.org/lists Answers to some frequently asked questions about cairo: http://cairographics.org/FAQ What's new in 1.1.8 compared to 1.1.6 ===================================== ** API Change ** ---------------- According to the plan mentioned in the 1.1.6 notes, one source-level incompatible change has been implemented. The following three functions have been removed from cairo's API: cairo_pdf_surface_set_dpi cairo_ps_surface_set_dpi cairo_svg_surface_set_dpi and in their place the following function has been added: cairo_surface_set_fallback_resolution The signature and semantics of the function remains the same, so it is a simple matter of changing the name of the function when calling it. As a transition mechanism, this snapshot will (on many systems) build to include the old symbols so that code previously compiled will still run. However, all source code using the old names must be updated before it will compile. And the upcoming 1.2 release is not anticipated to include the old symbols. Finally, it should be pointed out that the old symbols never existed in the supported API of any stable release of cairo. (In the stable 1.0 releases the PDF, PS, and SVG backends were advertised as experimental and unstable.) And, as always, cairo continues to maintain source and binary compatibility between major releases. So applications compiled against supported backends in a stable release of cairo (1.0.4 say) will continue to compile and run without modification against new major releases (1.2.0 say) without modification. API additions ------------- The following new functions have been added to cairo's API: cairo_surface_get_content cairo_debug_reset_static_data cairo_image_surface_get_data cairo_image_surface_get_format cairo_image_surface_get_stride cairo_win32_font_face_create_for_hfont New, backend-specific pkg-config files -------------------------------------- In addition to the original cairo.pc file, cairo will also now install a pkg-config files for each configured backend, (for example cairo-pdf.pc, cairo-svg.pc, cairo-xlib.pc, cairo-win32.pc, etc.) this also includes optional font backends (such as cairo-ft.pc) and the optional png functionality (cairo-png.pc). These new pkg-config files should be very convenient for allowing cairo-using code to easily check for the existing of optional functionality in cairo without having to write complex rules to grub through cairo header files or the compiled library looking for symbols. Printing backend (PS, PDF, and SVG) ----------------------------------- Improving the quality of the "printing" backends has been a priority of the development between cairo 1.1.6 and cairo 1.1.8. The big improvement here is in the area of text output. Previously, at best, text was output as paths without taking advantage of any font support available in the output file format. Now, at the minimum text paths will be shared by using type3 fonts (for PS and PDF---and similarly, defs for SVG). Also, if possible, type3 and truetype fonts will be embedded in PostScript and PDF output. There are still some known bugs with this, (for example, selecting text in a cairo-generated PDF file with an embedded truetype font does not work). So there will be some more changes in this area before cairo 1.2, but do try test this feature out as it exists so far. Many thanks to Kristian H?gsberg for the truetype and type1 font embedding. win32 backend ------------- Performance improvements by preferring GDI over pixman rendering when possible. Fixes for text rendering. xlib backend ------------ Fix potentially big performance bug by making xlib's create_similar try harder to create a pixmap of a depth matching that of the screen. Bug fixes --------- Among various other fixes, the following bugs listed in bugzilla have been fixed: Bug 2488: Patch to fix pixman samping location bug (#2488). https://bugs.freedesktop.org/show_bug.cgi?id=2488 Bug 4196: undef MIN an MAX before defining to avoid duplicate definition https://bugs.freedesktop.org/show_bug.cgi?id=4196 Bug 4723: configure.in: Fix m4 quoting when examining pkg-config version https://bugs.freedesktop.org/show_bug.cgi?id=4723 Bug 4882: Flag Sun's X server has having buggy_repeat. https://bugs.freedesktop.org/show_bug.cgi?id=4882 Bug 5306: test/pdf2png: Add missing include of stdio.h https://bugs.freedesktop.org/show_bug.cgi?id=5306 Bug 7075: Fix make clean to remove cairo.def https://bugs.freedesktop.org/show_bug.cgi?id=7075 (Many thanks to Behdad Esfahbod for helping us track down and fix many of these.) Detailed list of changes since 1.1.6 ==================================== Tag '1.1.8' created by Carl Worth at 2006-06-14 16:17 -0700 cairo 1.1.8 snapshot -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEkCju6JDdNq8qSWgRAjdQAJ9jjY8MwIcyhpSxf8Yn50izT6wXRwCeJN3x XKToq1aoRwjXc1HujBI0wVo= =twxK -----END PGP SIGNATURE----- Changes since 1.1.6: Behdad Esfahbod: Bug 7075: Fix make clean to remove cairo.def Move cairo.pc into src/. Add backend-specific pkg-config files. Rename cairo-wideint.h to cairo-wideint-private.h. Bertram Felgenhauer: Patch to fix pixman samping location bug (#2488). Bug 4723: configure.in: Fix m4 quoting when examining pkg-config version Brian Cameron: Bug 4882: Flag Sun's X server has having buggy_repeat. Carl Worth: Increment CAIRO_VERSION to 1.1.7 after making the 1.1.6 snapshot Revert "pdf2png: Use new poppler_page_render to render directly through cairo." Don't build pdf2svg until we start depending on newer poppler ROADMAP: non-substantive changes Add select-font-face test for whosing multiple faces at once. Fix typo in select-font-face.c and update reference images PS: Remove stale comment (the stuff TODO is done already) PS: Move type 3 support out into cairo-ps-font.c PS: Put functions in more logical order. Rename cairo-ps-font to cairo-scaled-font-subsets (file names only) Generalize font subsetting code in cairo-scaled-font-subsets for use by more than just PS backend Fix cairo_output_stream_destroy to do nothing on nil stream objects. Tweak names to match those of cairo-scaled-font-subsets SVG: Discard custom font subsetting in favor of sharing cairo-scaled-font-subsets Add documentation for the _cairo_scaled_font_subsets interface. Fix memory leak in _cairo_scaled_font_subsets_foreach PDF: Use cairo_pdf_resource_t more consistently. PDF: Fold (unused) cairo_pdf_document_t into cairo_pdf_surface_t Change scaled_font_subsets_callback to have return type of void. PS: Fix arguments to setcachedevice PS: Remove the fallback case from _cairo_ps_surface_show_glyphs PDF: Use consistent style for typedef struct and macro naming. PDF: Move Resources dictionary up from Page objects to Pages object. PDF: Add Type3 font support to PDF output. pixman: Fix build to enable warnings again pixman: Add default case to quiet compiler warning pixman: Remove unused code to quiet compiler warnings ROADMAP: Note that PDF type 3 font support is done PDF: Fix broken per-page sizes in PDF output. xlib: Rename surface->format to surface->xrender_format to avoid confusion xlib: Style cleanups for _cairo_xlib_surface_create_similar PDF: Squelch a couple of bogus "may be used uninitialized" warnings. Move prototype of cairo_debug_reset_static_data from uninstalled cairo-debug.h to cairo.h Codify 1.0 behavior of cairo_set_line_width as a feature, not a bug. SVG: Fix for line-width-scale New test: dash-scale PDF: Rename pdf_stroke_t to pdf_path_into_t for future sharing with fill PDF: Share path callbacks for fill and stroke. Clarify the documentation for cairo_set_dash PDF: Move dash operator before path construction operators. ROADMAP: Note that the cairo_set_line_width issue is resolved Typo fixes cairo-xlib-test: Rename cairo_test_xlib function prefix to cairo_xlib_test PDF: Add new, private test function: cairo_pdf_test_force_fallbacks Add new fallback-resolution test for bug in cairo_pdf_surface_set_dpi New API: Add new function cairo_surface_get_content Note the changed semantics of cairo_surface_set_device_offset New API: Add cairo_image_surface_get_{data,format,stride} Move rectangle functions to new cairo-rectangle.c Remove extraneous whitespace from "blank" lines. Remove trailing whitespace from lines that look like comments. Remove trailing whitespace from lines with a single brace. Remove all remaining trailing whitespace. Remove initial, final, and duplicate blank lines. CODING_STYLE: Add notes on avoiding trailing whitespace. CODING_STYLE: Fix misspellings. Fix bogus cairo_rectangle_fixed_t to be cairo_rectangle_int16_t. Remove CAIRO_{MIN,MAX}SHORT which did not distinguish signed vs. unsigned. win32: Add conditional definitions for INT16_{MIN,MAX} and UINT16_MAX now that we use them. Fix MAX vs. MIN bug introduced with rename away from CAIRO_MINSHORT Change all instances of UINT16_MAX to INT16_MAX to avoid new bug. Remove debugging "prints" of images from test/device-offset.c Add new test get-group-target (currently failing with paginated). Fix bug in get-group-target (in the test itself) letting it now pass. Rename ft-text-vertical-layout reference image according to standard convention. Ignore ft-text-vertical-layout binary New API: Replace cairo_{ps,pdf,svg}_set_dpi with new cairo_surface_set_fallback_resolution. Add REPLACED_BY macros to help porting to new set_fallback_resolution Rename device_{x,y}_offset to {x,y}_device_offset for better consitency/grepability doc: SGML template churn Change {x,y}_device_offset values to a device_transform matrix. Hook up device scaling so fallback_resolution starts working. Add text and stroke to falback-resolution test (showing bugs in each). Fix line width for stroking with a device_scale. Fix font size when drawing text with a device_scale. Add cairo_{ps,svg}_test_force_fallbacks so tests can force fallbacks. Test PS and SVG backends in addition to PDF in test/fallback-resolution. Clarify that fallback_resolution acts on a per-page granularity. Don't create a new scaled_font if there's a device_offset but no device_scale. Change _cairo_meta_surface_get_extents to return a bounded size. ROADMAP: Note that cairo_surface_set_fallback_resolution is in place now. Add cairo-ps-test.h and cairo-svg-test.h to Makefile.am Add aliases for deprecated cairo_{pdf,ps,svg}_surface_set_dpi Change return type of _cairo_scaled_glyph_lookup to allow UNSUPPORTED. PS, PDF: Re-organize handling of bitmapped fonts to avoid invalid output. Merge branch 'truetype-subsetting' into cairo Merge branch 'type1-subsetting' into cairo Add new zero-alpha test to demonstrate (X server?) bug found by Paul Giblock test/zero-alpha: Drop REPS from 100 to 10 for a faster test. Bug 4196: undef MIN an MAX before defining to avoid duplicate definition ft: If glyph->format is not OUTLINE use _render_glyph_bitmap to coerce to a bitmap ROADMAP: Update with PDF bugs from minefield test. Slip non-1.0 regressions off of 1.2. Add zero-alpha reference image to Makefile.am for the sake of make dist PS PDF: Update reference images due to truetype subsetting Update refefence images due to pattern source shift. Update version to 1.1.8 and add notes to NEWS file. Christian Biesinger: Make BeOS compile again Add missing reference images to EXTRA_DIST Distribute make-html.pl Add "html" Makefile target to run make-html.pl Dom Lachowicz: Bug 5306: test/pdf2png: Add missing include of stdio.h Emmanuel Pacaud: SVG: Sets something sane in width and height if acquire source image fails. SVG: Remove special case for unclipped CLEAR and SOURCE in paint when SVG: Fix cairo_svg_surface_restrict_to_version. Use CLEAR operator for initialisation of similar surface with a transparent color. SVG: Add reference images for fill-and-stroke-alpha. SVG: Implementation of glyph cache SVG: Emit glyphs at the beginning of defs section. SVG: Sets fallback resolution when compositing a meta surface. Jeff Muizelaar: Only destroy scaled glyphs if they are not in the cache. Jinghua Luo: glitz: Don't hardcode content type when initializing cairo surface Merge branch 'master' of git+ssh://jinghua at git.cairographics.org/git/cairo Add ft-text-vertical-layout test case for vertical layout. freetype: Fix for test case ft-text-vertial-layout. Make image-*-ref.png image as reference image. freetype: Ignore global advance unconditionally. freetype: rework _transform_glyph_bitmap. ignore FC_MATRIX in font pattern. freetype: build fix for _transform_glyph_bitmap. xlib: bugfix for #7172. freetype: Return an error if the glyph format isn't outline or bitmap ROADMAP: Mark bugs FC_ADVANCE and _transform_glyph_bitmap as fixed. Kristian H??gsberg: Documentation fixes (cairo_font_create -> cairo_scaled_font_create). Merge branch 'master' of git://git.freedesktop.org/git/cairo Update pdf font emit code to try to emit a truetype subset before type3. Output pdf dicts for truetype subset fonts. Hook _cairo_truetype_subset_init() up to existing truetype subset code. Switch to using Tm for text positioning and scale type3 fonts to unit size. Add support for truetype subset to ps backend. Print out ps comment in the truetype emit code and update type3 ps comment. Remember to destroy cairo_pdf_ft_font_t once we've generated the subset. Set libcairo_font_subset_sources for ps, pdf, and svg backends. Remember to call _cairo_truetype_subset_fini() after outputting subset. Pull in type1 subset code from the cvs repo it was sitting in. Add code to emit type1 dicts to the pdf backend. Use RD and ND for delimiting glyph data instead of -| and |-. Only use the word wrap stream when emitting paths. Make ps surface use type1 subset code. Track glyph subset indices and use them in the output. Look for /-| or /RD tokens to determine the charstring delimiter tokens. Consolidate a few arrays into a array of structs. Remember to call cairo_type1_font_subset_destroy(). Handle seac charstring commands correctly. Clarify licensing of float formatting code. Remove cairo_public from _cairo_lzw_compress() definition. Robert O'Callahan: [xlib] Have create_similar try harder to create the right surface Stuart Parmenter: [win32] Allow for creating a font from a HFONT [win32] implement win32 show_glyphs [win32] fix win32_show_glyphs glyph offsets Tim Mooney: bug #6890: fix the signature for main() in pthread-show-text Vladimir Vukicevic: [xlib] implement _cairo_xlib_surface_show_glyphs [xlib] only do glyph extents computation if non-solid source. [win32] Add SHADEBLENDCAPS and SB_NONE definitions for older SDKs [win32] Add GdiFlush() calls after DIB creation, as per MSDN docs [win32] GDI is nearly always faster than pixman; use it whenever possible CAIRO_SCALED_FONT_TYPE_* -> CAIRO_FONT_TYPE_* Whitespace fix Define kCGBitmapByteOrder32Host for when the SDK doesn't define it Zakharov Mikhail: pixman: fix compilation on HP-UX 11.11 --- .gitignore | 1 CODING_STYLE | 22 Makefile.am | 8 NEWS | 132 + RELEASING | 2 ROADMAP | 72 configure.in | 68 doc/public/Makefile.am | 1 doc/public/tmpl/cairo-pdf.sgml | 7 doc/public/tmpl/cairo-ps.sgml | 7 doc/public/tmpl/cairo-status.sgml | 7 doc/public/tmpl/cairo-svg.sgml | 7 doc/tutorial/src/include/cairo-tutorial-gtk.h | 8 doc/tutorial/src/include/cairo-tutorial-pdf.h | 4 doc/tutorial/src/include/cairo-tutorial-png.h | 4 doc/tutorial/src/include/cairo-tutorial-xlib.h | 2 doc/tutorial/src/include/cairo-tutorial.h | 1 doc/tutorial/src/lca.c | 6 pixman/src/Makefile.am | 4 pixman/src/fbcompose.c | 44 pixman/src/fbedge.c | 5 pixman/src/fbedgeimp.h | 8 pixman/src/fbmmx.c | 559 +++--- pixman/src/fbmmx.h | 2 pixman/src/fbpict.c | 39 pixman/src/fbpict.h | 3 pixman/src/fbtrap.c | 24 pixman/src/icblt.c | 96 - pixman/src/icbltone.c | 57 pixman/src/iccolor.c | 2 pixman/src/icformat.c | 30 pixman/src/icimage.c | 99 - pixman/src/icimage.h | 9 pixman/src/icint.h | 55 pixman/src/icpixels.c | 1 pixman/src/icrect.c | 30 pixman/src/icrop.h | 6 pixman/src/icstipple.c | 6 pixman/src/ictransform.c | 5 pixman/src/ictrap.c | 12 pixman/src/ictri.c | 31 pixman/src/icutil.c | 3 pixman/src/pixman-xserver-compat.h | 3 pixman/src/pixman.h | 20 pixman/src/pixregion.c | 76 pixman/src/pixregionint.h | 9 pixman/src/renderedge.c | 13 pixman/src/slim_internal.h | 4 src/.gitignore | 1 src/Makefile.am | 60 src/cairo-analysis-surface.c | 11 src/cairo-arc.c | 6 src/cairo-array.c | 33 src/cairo-atsui-font.c | 59 src/cairo-backend.pc.in | 12 src/cairo-base85-stream.c | 5 src/cairo-beos-surface.cpp | 5 src/cairo-beos.h | 1 src/cairo-cache.c | 32 src/cairo-clip-private.h | 8 src/cairo-clip.c | 55 src/cairo-debug.c | 3 src/cairo-directfb-surface.c | 104 - src/cairo-directfb.h | 13 src/cairo-font-options.c | 60 src/cairo-font-subset-private.h | 1 src/cairo-font-subset.c | 182 +- src/cairo-font.c | 42 src/cairo-ft-font.c | 471 +++-- src/cairo-glitz-surface.c | 48 src/cairo-gstate-private.h | 2 src/cairo-gstate.c | 185 -- src/cairo-hash.c | 54 src/cairo-hull.c | 2 src/cairo-image-surface.c | 132 + src/cairo-lzw.c | 4 src/cairo-matrix.c | 147 - src/cairo-meta-surface.c | 53 src/cairo-operator.c | 8 src/cairo-output-stream.c | 28 src/cairo-paginated-surface.c | 28 src/cairo-path-bounds.c | 8 src/cairo-path-data.c | 14 src/cairo-path-fill.c | 3 src/cairo-path-stroke.c | 22 src/cairo-path.c | 32 src/cairo-pattern.c | 122 - src/cairo-pdf-surface.c | 2009 +++++++++++++----------- src/cairo-pdf-test.h | 20 src/cairo-pdf.h | 5 src/cairo-pen.c | 18 src/cairo-png.c | 35 src/cairo-polygon.c | 2 src/cairo-ps-surface.c | 982 +++++------ src/cairo-ps-test.h | 20 src/cairo-ps.h | 5 src/cairo-quartz-private.h | 2 src/cairo-quartz-surface.c | 37 src/cairo-quartz.h | 1 src/cairo-rectangle.c | 85 + src/cairo-region.c | 17 src/cairo-scaled-font-subsets-private.h | 267 +++ src/cairo-scaled-font-subsets.c | 384 ++++ src/cairo-scaled-font.c | 195 +- src/cairo-slope.c | 6 src/cairo-spline.c | 3 src/cairo-stroke-style.c | 1 src/cairo-surface-fallback-private.h | 2 src/cairo-surface-fallback.c | 145 - src/cairo-surface.c | 461 +++-- src/cairo-svg-surface.c | 770 +++++---- src/cairo-svg-test.h | 20 src/cairo-svg.h | 9 src/cairo-traps.c | 51 src/cairo-type1-subset.c | 1040 ++++++++++++ src/cairo-unicode.c | 39 src/cairo-wideint-private.h | 11 src/cairo-wideint.c | 18 src/cairo-win32-font.c | 196 +- src/cairo-win32-private.h | 11 src/cairo-win32-surface.c | 299 ++- src/cairo-win32.h | 3 src/cairo-xcb-surface.c | 108 - src/cairo-xlib-private.h | 4 src/cairo-xlib-screen.c | 32 src/cairo-xlib-surface.c | 698 ++++---- src/cairo-xlib-test.h | 3 src/cairo-xlib-xrender.h | 1 src/cairo-xlib.h | 1 src/cairo.c | 246 +- src/cairo.h | 61 src/cairoint.h | 182 +- src/test-fallback-surface.c | 17 src/test-meta-surface.c | 9 src/test-paginated-surface.c | 5 test/.gitignore | 10 test/Makefile.am | 31 test/buffer-diff.c | 3 test/buffer-diff.h | 4 test/cairo-test-directfb.c | 20 test/cairo-test.c | 80 test/cairo-test.h | 5 test/caps-joins.c | 2 test/clip-all.c | 2 test/clip-nesting.c | 4 test/clip-operator.c | 14 test/dash-offset-negative.c | 8 test/dash-scale-ps-argb32-ref.png |binary test/dash-scale-ref.png |binary test/dash-scale.c | 125 + test/device-offset-ref.png |binary test/device-offset-rgb24-ref.png |binary test/device-offset.c | 87 + test/fallback-resolution.c | 178 ++ test/fill-and-stroke-alpha-svg-argb32-ref.png |binary test/fill-and-stroke-alpha-svg-rgb24-ref.png |binary test/fill-and-stroke.c | 2 test/filter-nearest-offset.c | 2 test/font-face-get-type.c | 4 test/ft-text-vertical-layout-pdf-argb32-ref.png |binary test/ft-text-vertical-layout-pdf-rgb24-ref.png |binary test/ft-text-vertical-layout-ps-argb32-ref.png |binary test/ft-text-vertical-layout-ps-rgb24-ref.png |binary test/ft-text-vertical-layout-ref.png |binary test/ft-text-vertical-layout-rgb24-ref.png |binary test/ft-text-vertical-layout-svg-argb32-ref.png |binary test/ft-text-vertical-layout-svg-rgb24-ref.png |binary test/ft-text-vertical-layout.c | 131 + test/get-and-set.c | 2 test/get-group-target-ref.png |binary test/get-group-target.c | 90 + test/gradient-alpha-ref.png |binary test/gradient-alpha-rgb24-ref.png |binary test/gradient-alpha.c | 2 test/imagediff.c | 4 test/line-width-scale-ps-argb32-ref.png |binary test/line-width-scale-ref.png |binary test/line-width-scale.c | 30 test/linear-gradient-ref.png |binary test/linear-gradient.c | 8 test/mask-ref.png |binary test/mask-rgb24-ref.png |binary test/mask.c | 8 test/operator-clear.c | 16 test/operator-source-ref.png |binary test/operator-source-rgb24-ref.png |binary test/operator-source.c | 18 test/pdf-features.c | 4 test/pdf2png.c | 39 test/pixman-rotate-rgb24-ref.png |binary test/pixman-rotate-svg-argb32-ref.png |binary test/pixman-rotate-svg-rgb24-ref.png |binary test/ps-features.c | 2 test/pthread-show-text.c | 2 test/push-group-ref.png |binary test/push-group-rgb24-ref.png |binary test/push-group.c | 2 test/read-png.c | 1 test/rectangle-rounding-error.c | 10 test/rel-path.c | 4 test/select-font-face-pdf-argb32-ref.png |binary test/select-font-face-ps-argb32-ref.png |binary test/select-font-face-ref.png |binary test/select-font-face-svg-argb32-ref.png |binary test/select-font-face-svg-rgb24-ref.png |binary test/select-font-face.c | 83 test/self-copy.c | 6 test/show-text-current-point-pdf-argb32-ref.png |binary test/show-text-current-point-ps-argb32-ref.png |binary test/source-clip.c | 2 test/surface-finish-twice.c | 1 test/surface-pattern.c | 2 test/svg-clip.c | 2 test/text-antialias-gray-pdf-argb32-ref.png |binary test/text-antialias-gray-ps-argb32-ref.png |binary test/text-antialias-none-pdf-argb32-ref.png |binary test/text-antialias-none-ps-argb32-ref.png |binary test/text-antialias-subpixel-pdf-argb32-ref.png |binary test/text-antialias-subpixel-ps-argb32-ref.png |binary test/text-cache-crash.c | 1 test/text-pattern-ref.png |binary test/text-pattern-rgb24-ref.png |binary test/text-pattern.c | 10 test/text-rotate.c | 2 test/transforms.c | 2 test/trap-clip-ref.png |binary test/trap-clip-rgb24-ref.png |binary test/trap-clip.c | 4 test/unbounded-operator.c | 16 test/user-data.c | 2 test/write-png.c | 4 test/xlib-surface.c | 20 test/xmalloc.c | 1 test/zero-alpha-ref.png |binary test/zero-alpha.c | 97 + 235 files changed, 8579 insertions(+), 4836 deletions(-) -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://mail.gnome.org/pipermail/gnome-announce-list/attachments/20060614/85cc3160/attachment-0001.bin From janina at rednote.net Wed Jun 14 12:10:55 2006 From: janina at rednote.net (Janina Sajka) Date: Wed, 14 Jun 2006 12:10:55 -0400 Subject: lsr-0.2.1 In-Reply-To: <5308fd2c0606120606p43b30477o4e73cfad155dcaa7@mail.gmail.com> References: <5308fd2c0606120606p43b30477o4e73cfad155dcaa7@mail.gmail.com> Message-ID: <20060614161055.GV2259@rednote.net> Peter Parente writes: > ============== > * What is it ? > ============== > > Linux Screen Reader (LSR) is an extensible assistive technology for people > with > disabilities. The design philosophy behind LSR is to provide a core platform > that enables the development of LSR extensions for improving desktop > application accessibility and usability and shields extension developers > from > the intricacies of the desktop accessibility architecture. > snip snip Where can I get it ? rpm packages for Fedora Core 5 available from: ftp://SpeakupModified.Org/fedora/rednote/ The binary is under RPMS, and the source under SRPMS as usual with Fedora. Special Note: You may need to upgrade your Gnome Desktop to Fedora Development. If you find things not working with the current release and updated Gnome environment, try: yum --disablerepo='*' --enablerepo=development groupupdate 'GNOME Desktop Environment' Note the above command is issued on one line, though it's probably been broken into at least two lines in this email message. -- Janina Sajka Phone: +1.240.715.1272 Partner, Capital Accessibility LLC http://CapitalAccessibility.Com Marketing the Owasys 22C talking screenless cell phone in the U.S. and Canada--Go to http://ScreenlessPhone.Com to learn more. Chair, Accessibility Workgroup Free Standards Group (FSG) janina at freestandards.org http://a11y.org From janina at rednote.net Wed Jun 14 12:17:05 2006 From: janina at rednote.net (Janina Sajka) Date: Wed, 14 Jun 2006 12:17:05 -0400 Subject: Announcing Orca 0.2.5 rpms In-Reply-To: <1150069937.5071.4.camel@localhost> References: <1150069937.5071.4.camel@localhost> Message-ID: <20060614161705.GW2259@rednote.net> rpm packages of Orca-0.2.5 for Fedora Core 5 are now available from: ftp://SpeakupModified.Org/fedora/rednote/ The binary is under RPMS, and the source under SRPMS as usual with Fedora. Installation There is yet some unresolved dependency issue with these rpms, so they probably will need to be installed using the --nodeps option as follows: rpm -Uv --nodeps orca-0.2.5-1.i386.rpm However, I can attest the resulting installation works for me on two different systems. I have first run: orca -t from the console, as the same user I am in the gui desktop. Once on the desktop, I have issued Alt-F2 and typed: orca -t again to get things started. Seems wrong, but is working for me on two systems. Special Note: You may need to upgrade your Gnome Desktop to Fedora Development. If you find things not working with the current release and updated Gnome environment, try: yum --disablerepo='*' --enablerepo=development groupupdate 'GNOME Desktop Environment' Note the above command is issued on one line, though it's probably been broken into at least two lines in this email message. -- Janina Sajka Phone: +1.240.715.1272 Partner, Capital Accessibility LLC http://CapitalAccessibility.Com Marketing the Owasys 22C talking screenless cell phone in the U.S. and Canada--Go to http://ScreenlessPhone.Com to learn more. Chair, Accessibility Workgroup Free Standards Group (FSG) janina at freestandards.org http://a11y.org From ross at golder.org Thu Jun 15 07:47:06 2006 From: ross at golder.org (Ross Golder) Date: Thu, 15 Jun 2006 18:47:06 +0700 Subject: Subversion migration schedule (new cut-off is Fri 14 July) Message-ID: <1150372026.9754.1.camel@red> As per below, it was decided that 23rd June was too soon before GUADEC, so the new cut-off date has been put back to 14th July. Regards, -- Ross -------------- next part -------------- An embedded message was scrubbed... From: Ross Golder Subject: Re: Subversion migration schedule (new cut-off Fri 14 July?) Date: Fri, 02 Jun 2006 20:59:23 +0700 Size: 4730 Url: http://mail.gnome.org/archives/gnome-announce-list/attachments/20060615/c7c81fd0/attachment.eml From gjc at inescporto.pt Thu Jun 15 15:09:24 2006 From: gjc at inescporto.pt (Gustavo J. A. M. Carneiro) Date: Thu, 15 Jun 2006 20:09:24 +0100 Subject: ANNOUNCE: PyGTK 2.9.2 (unstable) Message-ID: <1150398564.5933.27.camel@localhost.localdomain> I am pleased to announce version 2.9.2 of the Python bindings for GTK. The new release is available from ftp.gnome.org and its mirrors as soon as its synced correctly: http://ftp.gnome.org/pub/GNOME/sources/pygtk/2.9/ This is an unstable release and should be used with caution. It requires either GTK+ 2.8.x or GTK+ >= 2.9.3. Blurb: GTK is a toolkit for developing graphical applications that run on systems such as Linux, Windows and MacOS X. It provides a comprehensive set of GUI widgets, can display Unicode bidi text. It links into the Gnome Accessibility Framework through the ATK library. PyGTK provides a convenient wrapper for the GTK+ library for use in Python programs, and takes care of many of the boring details such as managing memory and type casting. When combined with PyORBit and gnome-python, it can be used to write full featured Gnome applications. Like the GTK+ library itself PyGTK is licensed under the GNU LGPL, so is suitable for use in both free software and proprietary applications. It is already in use in many applications ranging from small single purpose scripts up to large full features applications. pygtk-2.9.2 15-june-2006 - Fix a codegen bug that prevent build of other extensions (344845, Gustavo) - Builds with pycairo 1.1.6 (344957, Gustavo) - gtk.TextBuffer rich text copy and serialization (Finlay) - Correct Print Editor example (Gustavo) PyGTK requires GTK+ >= 2.8.0 and Python >= 2.3.5 to build. Bug reports, as always, should go to Bugzilla; check out http://pygtk.org/developer.html and http://pygtk.org/feedback.html for links to posting and querying bug reports for PyGTK. -- Gustavo J. A. M. Carneiro The universe is always one step beyond logic -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 191 bytes Desc: Esta =?ISO-8859-1?Q?=E9?= uma parte de mensagem assinada digitalmente Url : http://mail.gnome.org/archives/gnome-announce-list/attachments/20060615/a2725e9f/attachment.bin From johnp at redhat.com Thu Jun 15 16:49:34 2006 From: johnp at redhat.com (John (J5) Palmieri) Date: Thu, 15 Jun 2006 16:49:34 -0400 Subject: GNOME 2.15.3 Development Release Message-ID: <1150404574.5271.18.camel@remedyz.boston.redhat.com> GNOME 2.15.3 Development Release ================================ It is that time again. Time to get it, time to build it and time to test it. The GNOME Release Team is proud to present the 2.15.3 development release. This is our third development release on our road towards GNOME 2.16.0, which will be released in September 2006. So go download it. Go compile it. Go test it. And go hack on it, document it, translate it, fix it. Note that gnome-applets, deskbar-applet and pygtk all need patches which can be found here gnome-applets: http://download.gnome.org/teams/releng/2.15.3/gswitchit.patch deskbar-applet: http://download.gnome.org/teams/releng/2.15.3/CuemiacPopupEntry.py.patch pygtk: http://download.gnome.org/teams/releng/2.15.3/defsparser.py.patch To compile GNOME 2.15.3, you can use GARNOME (will be released soon), or the jhbuild modulesets available at: http://download.gnome.org/teams/releng/2.15.3/ The release notes that describe the changes between 2.15.2 and 2.15.3 are available. Go read them to learn all the goodness of this release: platform - http://download.gnome.org/platform/2.15/2.15.3/NEWS desktop - http://download.gnome.org/desktop/2.15/2.15.3/NEWS admin - http://download.gnome.org/admin/2.15/2.15.3/NEWS bindings - http://download.gnome.org/bindings/2.15/2.15.3/NEWS Here are some figures about this release: admin 2.15.3 statistics: tar.gz: 792K total tar.bz2: 616K total bindings 2.15.3 statistics: tar.gz: 21M total tar.bz2: 15M total desktop 2.15.3 statistics: tar.gz: 156M total tar.bz2: 114M total platform 2.15.3 statistics: tar.gz: 53M total tar.bz2: 37M total The GNOME 2.15.3 release is available here: platform sources - http://download.gnome.org/platform/2.15/2.15.3/ desktop sources - http://download.gnome.org/desktop/2.15/2.15.3/ admin sources - http://download.gnome.org/admin/2.15/2.15.3/ bindings sources - http://download.gnome.org/bindings/2.15/2.15.3/ WARNING! WARNING! WARNING! -------------------------- This release is a snapshot of development code. Although it is buildable and usable, it is primarily intended for testing and hacking purposes. GNOME uses odd minor version numbers to indicate development status. For more informations about 2.15, the full schedule, the official module lists and the proposed modules list, please see our shiny 2.15 page: http://www.gnome.org/start/unstable/ We hope you'll love it, The GNOME Release Team -- John (J5) Palmieri From guenther at rudersport.de Thu Jun 15 17:05:43 2006 From: guenther at rudersport.de (guenther) Date: Thu, 15 Jun 2006 23:05:43 +0200 Subject: [ANNOUNCE] GARNOME 2.15.3 Message-ID: <1150405543.8323.15.camel@monkey.loc> GARNOME 2.15.3 ============== The "It's quiet out there... Yes... Too quiet..." release. What seemed to be no last minute releases turned out to be a broken list server, holding back the official GNOME release for a day. Also, there have been a bunch of build issues this time around, more than usual. Some good cooperation between the Release Team and the GARNOME Team (especially Joseph) hacked around the brokeness, thus... We are pleased to announce the release of GARNOME 2.15.3 Desktop and Developer Platform. This release includes all of GNOME 2.15.3 plus a whole bunch of updates that were released after the GNOME freeze date. This is the third release in the unstable cycle, with more features, more fixes and yet more madness added. It is for anyone who wants to get his hands dirty on the development branch, or who'd like to get a peek at future features. If you want to help spot issues in GARNOME, (or, better yet, fix 'em ;-) this release is for you as well. As usual, you can get the tarball directly from the gnome.org site: http://download.gnome.org/sources/garnome/2.15/ Note: GNOME 2.15.x is an unstable branch and is assumed to be a moving target. Therefore, things in this release may not work as advertised. If you find any issues with this release, feel free to contact the GARNOMEies in the #garnome channel on GIMPNet (irc://irc.gnome.org), where we hang out, or post to the mailing list. More information is available at our project website: http://www.gnome.org/projects/garnome/ Enjoy, The GARNOME Team -- char *t="\10pse\0r\0dtu\0. at ghno\x4e\xc8\x79\xf4\xab\x51\x8a\x10\xf4\xf4\xc4"; main(){ char h,m=h=*t++,*x=t+2*h,c,i,l=*x,s=0; for (i=0;i>=1)||!t[s+h]){ putchar(t[s]);h=m;s=0; }}} From behdad at cs.toronto.edu Thu Jun 15 17:38:06 2006 From: behdad at cs.toronto.edu (Behdad Esfahbod) Date: Thu, 15 Jun 2006 17:38:06 -0400 Subject: Women's Summer Outreach Program 2006 Message-ID: <1150407487.29623.12.camel@home> GNOME to Sponsor Female Developers in a Summer Outreach Program BOSTON, Mass - June 13, 2006 - The GNOME Foundation is offering USD$9000 to female students in order to promote the participation of women in GNOME-related development. The money originates from GNOME's participation in the Google "Summer of Code" program (code.google.com/soc/), for which GNOME developers will mentor 20 students working throughout the northern summer on GNOME-related projects. This year GNOME received 181 applications to Google's program, yet none were from women. The GNOME Foundation has therefore chosen to reinvest Google's contribution into a new program designed to increase the participation of women in GNOME. The program has no official relationship with Google. "Free software prides itself on being open to anyone with a good idea, yet less than 2% of free software developers are female. We, as a community, need to be actively working to change this statistic, and programs like this one are a much needed step in the right direction." said Hanna Wallach, a GNOME developer who is involved in several projects that encourage women to participate in free software development. The Women's Summer Outreach Program is currently accepting applications from female students. Accepted students will receive a stipend of USD $3000 over a two month period. A pool of project ideas is provided at www.gnome.org/projects/wsop/, though original proposals are also encouraged. Projects may either be related to GNOME directly, or indirectly via projects such as Gstreamer and Abiword. Each student will be assigned a mentor to provide guidance throughout the program. Vincent Untz, member of the GNOME Foundation board and coordinator of the GNOME team for Google's "Summer of Code" program, explained: "Many women have the skills required to contribute to Free Software projects like GNOME, but may not see an opportunity to start working with us. By initiating this program, not only do we want to highlight the issue, but we also hope that this opportunity will help more women to get involved in the long term." Applications should be submitted using the form at www.gnome.org/projects/wsop/. More information about the application process may be found at the same location. From cworth at cworth.org Fri Jun 16 13:08:58 2006 From: cworth at cworth.org (Carl Worth) Date: Fri, 16 Jun 2006 10:08:58 -0700 Subject: cairo snapshot 1.1.10 now available Message-ID: <878xnxc9jp.wl%cworth@cworth.org> A new cairo snapshot 1.1.10 is now available from: http://cairographics.org/snapshots/cairo-1.1.10.tar.gz which can be verified with: http://cairographics.org/snapshots/cairo-1.1.10.tar.gz.sha1 709d48dbcd0ac806e4f7bfd1f69314e4dfb57329 cairo-1.1.10.tar.gz http://cairographics.org/snapshots/cairo-1.1.10.tar.gz.sha1.asc (signed by Carl Worth) Additionally, a git clone of the source tree: git clone git://git.cairographics.org/git/cairo will include a signed 1.1.10 tag which points to a commit named: 65e73c81b83222de873935cf384e514ea20ac854 which can be verified with: git verify-tag 1.1.10 and can be checked out with a command such as: git checkout -b build 1.1.10 This is the fifth in a series of snapshots working toward the 1.2 release of cairo. The primary motivation for this snapshot is to fix a long-standing bug that had long been silent, but as of the 1.1.8 snapshot started causing crashes when run against 16-bit depth X servers, (often Xvnc or Xnest). The fix for this adds a new CAIRO_FORMAT_RGB16_565 to the API. This snapshot also includes a rewrite of cairo's SVG backend to eliminate the dependency on libxml2. With this in place, cairo 1.2 will not depend on any libraries that cairo 1.0 did not. As usual, there are also a few fixes for minor bugs. What is cairo ============= Cairo is a 2D graphics library with support for multiple output devices. Currently supported output targets include the X Window System, win32, and image buffers. Experimental backends include OpenGL (through glitz), Quartz, XCB, PostScript and PDF file output. Cairo is designed to produce consistent output on all output media while taking advantage of display hardware acceleration when available (for example, through the X Render Extension). The cairo API provides operations similar to the drawing operators of PostScript and PDF. Operations in cairo including stroking and filling cubic B?zier splines, transforming and compositing translucent images, and antialiased text rendering. All drawing operations can be transformed by any affine transformation (scale, rotation, shear, etc.). Cairo has been designed to let you draw anything you want in a modern 2D graphical user interface. At the same time, the cairo API has been designed to be as fun and easy to learn as possible. If you're not having fun while programming with cairo, then we have failed somewhere---let us know and we'll try to fix it next time around. Cairo is free software and is available to be redistributed and/or modified under the terms of either the GNU Lesser General Public License (LGPL) version 2.1 or the Mozilla Public License (MPL) version 1.1. Where to get more information about cairo ========================================= The primary source of information about cairo is: http://cairographics.org/ The latest releases of cairo can be found at: http://cairographics.org/releases Snapshots of in-development versions of cairo: http://cairographics.org/snapshots The programming manual for using cairo: http://cairographics.org/manual Mailing lists for contacting cairo users and developers: http://cairographics.org/lists Answers to some frequently asked questions about cairo: http://cairographics.org/FAQ Detailed list of changes since 1.1.8 ==================================== Tag '1.1.10' created by Carl Worth at 2006-06-16 17:53 -0700 cairo 1.1.10 snapshot -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEkuIi6JDdNq8qSWgRArhnAJ4hDlfpnWYY9bj0NVs7ZMl+XKsaXwCffRLz HMhowJx6or+LK99tRtZO5YM= =AsAw -----END PGP SIGNATURE----- Changes since 1.1.8: Behdad Esfahbod: Use enum time instead of int (shuts intel compiler up.) Merge branch 'cairo' into cairo-origin Carl Worth: Increment CAIRO_VERSION to 1.1.9 after making the 1.1.8 snapshot _cairo_format_from_pixman_format: Add useful error mesage and assertion when failing. Remove _cairo_image_surface_is_alpha_only in favor of just looking at content value. Drop _cairo_surface_is_opaque now that we have cairo_surface_get_content Add missing breaks in switch statement. New API: Add support for new CAIRO_FORMAT_RGB16_565 Update release rules in Makefile to add git signature information. Annoying doc template churn. Update version to 1.1.10 and add notes to NEWS file. Emmanuel Pacaud: SVG: Update of reference images. Jinghua Luo: xlib: free resources before return if looking up glyph surface fails. Kristian H?gsberg: Make cairo_output_stream_t an embeddable type. Convert the stdio output stream to use the new output stream interface. Convert the word wrap stream, the base85 stream and the ps string stream. Add an in-memory output-stream implementation. Only run fallback-resolution test case when all of PDF, PS and SVG are enabled. Rewrite SVG backend to just use cairo output stream instead of libxml2. Remove libxml2 checks from configure.in. Actually add src/cairo-output-stream-private.h. Merge branch 'svg-rewrite' Add test case for the PDF, PS and SVG stream constructors. Only call close function for output streams if it's non-NULL. Add cairo-output-stream-private.h to libcairo_la_SOURCES. Torsten Sch?nfeld: Add missing cairo_public tag for cairo_image_surface_get_stride --- Makefile.am | 25 NEWS | 17 RELEASING | 2 configure.in | 20 doc/public/tmpl/cairo-image.sgml | 1 pixman/src/icformat.c | 6 pixman/src/pixman.h | 3 pixman/src/pixregion.c | 2 src/Makefile.am | 1 src/cairo-base85-stream.c | 28 src/cairo-image-surface.c | 98 + src/cairo-output-stream-private.h | 156 ++ src/cairo-output-stream.c | 188 ++- src/cairo-pattern.c | 2 src/cairo-pdf-surface.c | 1 src/cairo-ps-surface.c | 45 src/cairo-surface.c | 37 src/cairo-svg-surface.c | 1170 ++++++++------------- src/cairo-type1-subset.c | 1 src/cairo-xlib-surface.c | 2 src/cairo.h | 8 src/cairoint.h | 85 - test/Makefile.am | 10 test/create-for-stream.c | 218 +++ test/linear-gradient-svg-argb32-ref.png |binary test/linear-gradient-svg-rgb24-ref.png |binary test/mask-svg-argb32-ref.png |binary test/mask-svg-rgb24-ref.png |binary test/paint-source-alpha-svg-argb32-ref.png |binary test/paint-source-alpha-svg-rgb24-ref.png |binary test/paint-with-alpha-svg-argb32-ref.png |binary test/paint-with-alpha-svg-rgb24-ref.png |binary test/push-group-svg-argb32-ref.png |binary test/push-group-svg-rgb24-ref.png |binary test/scale-source-surface-paint-svg-argb32-ref.png |binary test/scale-source-surface-paint-svg-rgb24-ref.png |binary test/text-pattern-svg-argb32-ref.png |binary test/text-pattern-svg-rgb24-ref.png |binary test/trap-clip-svg-argb32-ref.png |binary test/trap-clip-svg-rgb24-ref.png |binary 40 files changed, 1171 insertions(+), 955 deletions(-) -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : http://mail.gnome.org/archives/gnome-announce-list/attachments/20060616/41438dbb/attachment.bin From doclivingston at gmail.com Sun Jun 18 02:43:53 2006 From: doclivingston at gmail.com (James "Doc" Livingston) Date: Sun, 18 Jun 2006 16:43:53 +1000 Subject: Rhythmbox 0.9.5 Message-ID: <1150613033.6027.23.camel@localhost.localdomain> G'day Everyone, On behalf of the Rhythmbox developers, I'm proud to announce the sixth release of the Rhythmbox 0.9 series, which includes a large number of fixes, improvements and new features. Notable new features include: - Improved plugin support, and several features converted to plugins - An album art viewing and download plugin - A song lyric viewing and download plugin - Ogg Vorbis tag editing [0] - Partial iPod write support [1] - Improved audio player and DAAP support - CD ripping and track transfer enabled by default - Updated documentation and many, many more improvements, bug fixes and new minor features. See below for more details. [0] requires a GStreamer plugin not yet in cvs, see bug 335635 [1] off by default, pass --enable-ipod-writing to enable. * What is Rhythmbox ? ===================== Rhythmbox is an integrated music management application, originally inspired by Apple's iTunes. It is free software, designed to work well under the GNOME Desktop, and based on the powerful GStreamer media framework. * What's changed in 0.9.5 ? =========================== * fix icon themability (Steve Fr?cinaux) * handle iPods that have been repartitioned (Christophe Fergeau: 325034) * allow ipod renaming, ejection, deletion and transfer (Christophe Fergeau) * make iradio handling work much better (Jonathan Matthew: 320336, 324402) * improve out-of-process metadata loader (Jonathan Matthew: 338062) * update documentation (Baptiste Mille-Mathias, ) * pluginise iPod and Generic players (Christophe Fergeau, Jonathan Matthew) * support saving playlists as M3U (Gavin Stewart: 316295) * remember browser visibility when changing sources (Alex Lancaster: 118862) * handle media unmounts better (Jonathan Matthew: 339023) * make entry types be a structure, and add support for extended data, and various method implementations (Christophe Fergeau, James Livingston) * album art view&download plugin (Alex Lancaster, James Livingston, Gareth Murphy, William Jon McCann, Martin Szulecki) * update the FSF's address (Gunnar Steinn Magnusson) * much improved Python bindings (James Livingston, Jonathan Matthew) * fix some translation issues (Nguy?n Th?i Ng?c Duy, James Livingston: 339380, 343081) * improve startup time (James Livingston, Jonathan Matthew) * fix audioscrobbler submission, and allow viewing of info (Jonathan Matthew: 325848) * improve DBus interface (Jonathan Matthew, Tim Moloney) * allow transcoding during track transfer (Alessandro Decina: 322268) * cd burning fixes and improvements (William Jon McCann) * podcast feed parsing and download fixes (James Livingston: 339728) * turn the playback backend into a full GObject interface (James Livingston: 338667) * add more API documentation (Jonathan Mattjew) * add vorbis tag editing (James Livingston: 339878) * fix various threading insanities (Jonathan Matthew) * display "child libraries" with multiple library locations (James Livingston: 100552) * improve drag-and-drop from browsers (Jonathan Matthew: 327540) * support Motorola ROKR phones (Joe Barnett) * make query model limits saner (Janes Livingston) * source cleanup and API improvement (James Livingston, Jonathan Matthew) * improve status feedback for DAAP (Jonathan Matthew: 322020 and 338978) * memory improvement and leak fixed (James Livingston, Jonathan Matthew) * kill Bonobo support, require DBus, support DBus 0.3.0 (Jonathan Matthew: 339720) * add lyric download and view plugin (Jonathan Matthew: 319320) * add "add to playlist" menu (James Livingston: 323364) * allow changing of audio cd metadata (James Livingston) * improve DAAP handling (William Jon McCann: 342643) * update and write new unit tests (James Livingston) * group sources (Jonathan Matthew) * add new "rhythmbox-client" program (Jonathan Matthew: 340863, 155763) * assorted build fixes (Brian Cameron, Paul Drain, Elijah Newren, Hendrik Richter, Ryan P Skadberg, G?tz Waschk, Pawel Worach, FreeBSD GNOME project, others) * HIG and UI improvements (Dennis Cranston, Baptiste Mille-Mathias) * many other bug fixed (Christophe Fergeau, Jaap A. Haitsma, James Livingston, Jonathan Matthew, Mikael Olenfalk, Roozbeh Pournader) Updated Translations -------------------- ca Jordi Mallach cs Miloslav Trmac de Hendrik Richter es Francisco Javier F. Serrador fi Ilkka Tuohela gl Ignacio Casal Quinteiro lt ?ygimantas Beru?ka nb ?ivind Hoel, Kjartan Maraas nl Vincent van Adrighem, Wouter Bolsterlee sv Fredrik Tuomas vi Clytie Siddall zh_CN Funda Wang * Where can I get it ? ====================== Source code: http://ftp.gnome.org/pub/GNOME/sources/rhythmbox/0.9/rhythmbox-0.9.5.tar.gz [MD5 sum: 3cbce0fd5ed948e13dabe7be7b9353e9] http://ftp.gnome.org/pub/GNOME/sources/rhythmbox/0.9/rhythmbox-0.9.5.tar.bz2 [MD5 sum: ff55e1db114321b7bdd6e21df1879367] Home Page: http://www.rhythmbox.org/ James "Doc" Livingston From mclasen at redhat.com Tue Jun 20 11:21:20 2006 From: mclasen at redhat.com (Matthias Clasen) Date: Tue, 20 Jun 2006 11:21:20 -0400 Subject: GLib 2.11.4 released Message-ID: <1150816880.15532.58.camel@golem.boston.redhat.com> GLib 2.11.4 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.11/ http://ftp.gnome.org/pub/GNOME/sources/glib/2.11/ glib-2.11.4.tar.bz2 md5sum: 9d3a94baa4bfcd9a579b45eea6de3a8c glib-2.11.4.tar.gz md5sum: f7768bc7ed524c6b40cb87daccb6c2b2 This is a development release leading up to GLib 2.12. Notes: * This is unstable development release. While it has had a bit of testing, there are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GLib 2.10. If you have problems, you'll need to reinstall GLib 2.10. * GLib 2.12 will be source and binary compatible with the GLib 2.10.x series (for some caveats, see the README). At this point, the API additions in the 2.11.x series are finished. * Bugs should be reported to http://bugzilla.gnome.org. About GLib ========== GLib is the low-level core library that forms the basis for projects such as GTK+ and GNOME. It provides data structure handling for C, portability wrappers, and interfaces for such runtime functionality as an event loop, threads, dynamic loading, and an object system. More information about GLib is available at: http://www.gtk.org/ An installation guide for the GTK+ libraries, including GLib, can be found at: http://developer.gnome.org/doc/API/2.0/gtk/gtk-building.html Overview of Changes from GLib 2.11.3 to GLib 2.11.4 =================================================== * GBookmarkFile: - g_bookmark_file_remove_item returns a boolean * g_mkstemp accepts the XXXXXX in the middle of the template * Bugs fixed: 344868 g_key_file_to_data should separate groups * Updated translations (de,es,fr,gu,hi,ko,th) A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=344868 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Emmanuele Bassi, Christian Persch, Federico Mena Quintero Matthias Clasen June 20, 2006 From joeshaw at novell.com Mon Jun 19 16:08:58 2006 From: joeshaw at novell.com (Joe Shaw) Date: Mon, 19 Jun 2006 16:08:58 -0400 Subject: ANNOUNCE: Beagle 0.2.7 Message-ID: <1150747738.21037.1.camel@posthaste.boston.ximian.com> Hi, I'm happy to announce the release of Beagle 0.2.7. This version fixes the dreaded "Lock obtain timed out" bug, includes a new SVG and marks the return of the CHM filter. It introduces a compressed text cache, so that the disk space needed to generate snippets is greatly reduced, and many more bug fixes. OUR MANY URLS ------------- To download the 0.2.7 tarball or learn more, visit the Beagle wiki at: http://www.beagle-project.org The latest gossip is available at: http://www.planetbeagle.org Nat Friedman made some cool movies that demonstrate Beagle in action: http://nat.org/demos We still talk about Beagle on the dashboard-hackers mailing list: http://mail.gnome.org/mailman/listinfo/dashboard-hackers Info on Beagle's participation in Google's Summer of Code can be found here: http://beagle-project.org/Summer_Of_Code WHAT IS BEAGLE? --------------- Beagle is a tool for indexing and searching your data. Beagle is improving rapidly on many fronts, and should work well enough for everyday use. The Beagle daemon transparently monitors your data and updates the index to reflect any changes. On an inotify-enabled system, these updates happen more-or-less in real time. So for example, * Files are immediately indexed when they are created, are re-indexed when they are modified, and are dropped from the index upon deletion. * E-mails are indexed upon arrival. * IM conversations are indexed as you chat, a line at a time. Beagle supports many different file formats including OpenOffice documents, Microsoft Word documents, PDFs, HTML files, and many image, audio and video formats. Beagle can extract information from your file system, Evolution and KMail mailboxes, Evolution calendars and addressbooks, Gaim and Kopete instant messenger conversations, several RSS aggregators, Tomboy notes, Konqueror browsing history, system documentation, and many others. Beagle also indexes tags on your photos from F-Spot and Digikam. Beagle also provides Firefox and Epiphany extensions that index web pages in real-time as the user visits them. Beagle uses the Lucene indexing system from the prodigious Doug Cutting. Beagle includes a GTK-based graphical tool for searching the index that the daemon creates. This application doesn't query the index directly; it passes the search terms to the daemon and the daemon sends any matches back. The user interface then renders the results and allows you to perform useful actions on the matching objects. Indexing your data requires a fair amount of computing power, but the Beagle daemon tries to be as unobtrusive as possible. It contains a scheduler that works to prioritize tasks and control CPU usage, based on whether or not you are actively using your workstation. DEPENDENCY HECK --------------- Beagle requires: * Mono 1.1.13.5 or better, along with the full Mono stack * gtk-sharp 2.3.90 or better * GMime 2.1.19 * Libexif 0.5.7 or better * shared-mime-info For the best possible Beagle experience, you should also have: * GMime 2.2.1 * Evolution-sharp 0.10.2 or 0.11.1 * libgsf 1.12.1 and gsf-sharp 0.6 * Either wv 1.2.0, or a *patched* wv 1.0.3 --- the patch is available from http://users.avafan.com/~fredrik/beagle/wv-libole2-readonly.patch * An inotify-enabled kernel. Inotify is in the mainline Linux kernel as of 2.6.13. And other optional dependencies: http://beagle-project.org/Optional_Prerequisites CHANGES SINCE 0.2.6 ------------------- Daemon/Infrastructure: * Fix bugs in the query parser by using a regular expression-based system. (Max Wiehle, Keving Kubasik) * Compress items in the text cache, greatly reducing disk usage. (Kevin, Lukas Lipka) * Fix a bug in which the sqlite database could get cluttered with older files. (Debajyoti Bera, Joe Shaw) * Again write out the PID of the locking process, or else we cannot effectively detect dangling locks. (Joe) * If we see a lockfile with no PID, assume it's a dangling lock. (Joe) * No longer handle SIGQUIT to shut down the daemon; it's used very valuably by Mono for debugging purposes. (Joe) * Add a BEAGLE_DISABLE_XATTR environment variable to disable extended attribute support for testing purposes. (Joe) * Only print out the inotify "Maximum watch limit hit" warning once. (Joe) * Convert HTML entities when creating snippets. (Lukas, Kevin) * Patch our xdgmime installation to not crash if the data is reloaded while it is processing it. (Joe) * Fix an issue with newer Mono installations where the index helper process would become a zombie after it finished and was never cleaned up. (Joe) * Fix a bug in which properties weren't being sorted and couldn't be found. (Max, Kevin, Bera) * Work around a Mono bug so that dangling symlinks in ~/.beagle/Log are cleaned up at startup. (Joe) Backends: * Generate mail delete events using the indexable generator rather than creating many individual indexables by hand, which could flood the scheduler and slow the system down. (Joe) * Check for exceptions when calling GetChanges() on Evolution calendars and addressbooks. (Joe) Filters: * Added an SVG filter. (Alexander Macdonald) * Re-enable the CHM filter. (Miguel Cabrera) * Close the OpenOffice zip file when we're finished. (Joe) * Index additional info from ebuild files, including installation info and desktop file entries. (Pat Double) * Add duration and bitrate properties to the music filter. (Lukas) * Add a filter for Boo. (Paul Betts) * Don't throw EncodingFoundException in the HTML parser unless asked to. (Bera) * Add application/x-php as a valid mime type for the PHP filter. (Kevin) * Make sure the mime type is lower case before matching on it. (Kevin, Joe) UI: * Catch exceptions if we can't load an application's icons. (Joe, Pierre Poissinger) * Include the date in note tiles. (Lukas) * Only display the first line of a calendar item's description. (Dan Winship) * Use mailto URIs rather than invoking Evolution directly when possible. (Lukas) * Use desktop-launch to open file tiles when applicable. (Lukas) * Make the text in the details pane selectable. (Lukas) * If the calendar's description is empty, still display the item. (Lukas) * Simplify the code for the details pane significantly. (Lukas) * Scale down very large mime icons for display. (Lukas) * Enable the "Open With" menu if GTK+ 2.8 is available at build-time. (Kevin) * Force the window to get wider if the tiles get wider rather than creating a horizontal scrollbar. (Dan) Tools: * Add --enable-deletion to beagle-build-index, which removes deleted files from the index. (Bera) * Add $sharedir/gtk-doc/html and $sharedir/gnome/html to the documentation crawl rules. (Joe) * Fix a typo in the beagled manpage. (Kevin Lamontagne) * Fix bugs dealing with shell quoting in beagle-query. (Max) Translations: * Updated Brazilian Portuguese translation. (Raphael Higino) * Updated Czech translation. (Jakub Friedl) * Updated Dutch translation. (Vincent van Adrighem) * Updated Finnish translation. (Ilkka Tuohela) * Updated Galician translation. (Ignacio Casal Quinteiro) * Updated Greek translation. (Kostas Papadimas) * Updated Japanese translation. (Takeshi Aihana) * Updated Norwegian bokm?l translation. (?ivind Hoel) * Updated Simplified Chinese translation. (Funda Wang) * Updated Spanish translation. (Francisco Javier F. Serrador) * Updated Swedish translation. (Daniel Nylander) * Updated Vietnamese translation. (Clytie Siddall) Everything Else: * Make the Firefox extension work with Bon Echo (2.0 Alpha). (Joe) * Check for mmap() in configure.in, to optimize xdgmime. (Joe) * Add a pkg-config file for the UiUtil.dll assembly. (Luis Medinas) * Getting Dashboard building again. (Luis) KNOWN ISSUES ------------ We still use a bit too much memory. We are working on it. Certain extremely large documents can temporarily degrade your system's performance while they are being indexed. The file system is now much more robust than ever before. However, there are still race conditions that can occur with certain combinations of file system operations. In some cases it might be necessary to stop and restart the daemon. Certain files can crash the underlying libraries Beagle uses to extract metadata. This has been observed in MS Word and JPG files. If you encounter such a crash, please report it to the upstream developer of those libraries (wv1 and libexif for the above, respectively). At this point in development, we cannot commit to stable APIs or file formats. You will almost certainly need to delete your indexes and start again at some point in the future. From s.marechal at jejik.com Mon Jun 19 18:31:12 2006 From: s.marechal at jejik.com (Sander Marechal) Date: Tue, 20 Jun 2006 00:31:12 +0200 Subject: Gnome Hearts 0.1.1 Release Announcement Message-ID: <449725B0.9050004@jejik.com> Gnome Hearts 0.1.1 Release Announcement --------------------------------------- Our recently released Gnome Hearts 0.1 suffered from a build problem on distributions that shipped the Lua libraries as liblua instead of liblua50, most notably on the new Suse Linux. Gnome Hearts 0.1.1 fixes this issue, thanks to a patch sent in by a gnomefiles.org contributor. You can download the new tarball from our download section at: http://www.gnome-hearts.org/download/ About Gnome Hearts ------------------ Gnome Hearts is an implementation of the classic hearts card game for the GNOME desktop, featuring configurable rule sets and editable computer opponents to satisfy widely diverging playing styles. Gnome Hearts is Free Software, released under the GNU General Public License and should be able to run on any computer that can run the GNOME desktop. Enjoy, -- Sander Marechal http://www.gnome-hearts.org From peter at peterjohanson.com Tue Jun 20 01:47:22 2006 From: peter at peterjohanson.com (Peter Johanson) Date: Mon, 19 Jun 2006 22:47:22 -0700 Subject: [RELEASE] muine-0.8.5 Message-ID: <20060620054722.GS9163@butchest.cubesearch.com> Muine is a music player using new UI ideas. The goal is to create a player that eschews the iTunes model in favor of an easier and more comfortable interface. 0.8.5 ===== This release primarily updates Muine to use Gstreamer 0.10 (0.8 is also supported at configure time). Lots of bugfixes have also gone into this release. Details ======= - Gstreamer 0.10 support (configurable, 0.8 is still supported) [Iain, Peter Johanson] - Small shortcut/mnemonics tweaks [Sebastian Heinlein, Wouter Bolsterlee, Peter Johanson] - Fix bug with tray icon not re-appearing after a gnome-panel crash [Ed Catmur, Peter Johanson] - Handle large id3 tags properly [Jorn Baayen] - Properly raise the window when unhiding [Ryan Lortie] - Various build and bugfixes [Peter Johanson] New translations: - Punjabi [Amanpreet Singh Alam] - Thai [Isriya Paireepairit] Updated Translations: - Basque [Inaki Larranaga] - Czech [Miloslav Trmac] - Dutch [Wouter Bolsterlee] - Estonian [Priit Laes] - Finnish [Ilkka Tuohela] - German [Frank Arnold, Hendrik Richter] - Japanese [Takeshi AIHANA] - Spanish [Francisco Javier F. Serrador] - Swedish [Daniel Nylander] - Vietnamese [Clytie Siddall] Download ======== http://www.muine-player.org/wiki/Download Cheers, -pete From mclasen@redhat.com Mon Jun 5 14:15:03 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 744343B09D3; Mon, 5 Jun 2006 14:15:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20278-06; Mon, 5 Jun 2006 14:15:01 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id D637E3B0988; Mon, 5 Jun 2006 14:15:00 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k55IF08I024331; Mon, 5 Jun 2006 14:15:00 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [172.16.76.12]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k55IF0I9021827; Mon, 5 Jun 2006 14:15:00 -0400 Received: from golem.boston.redhat.com (golem.boston.redhat.com [172.16.80.24]) by mail.boston.redhat.com (8.12.8/8.12.8) with ESMTP id k55IExAV012588; Mon, 5 Jun 2006 14:14:59 -0400 From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain; charset=UTF-8 Date: Mon, 05 Jun 2006 14:14:59 -0400 Message-Id: <1149531299.4071.35.camel@golem.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.1 (2.7.1-1) Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.543 tagged_above=-999 required=2 tests=[AWL=0.058, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.543 X-Spam-Level: Cc: Subject: GLib 2.11.2 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jun 2006 18:15:03 -0000 GLib 2.11.2 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.11/ http://ftp.gnome.org/pub/GNOME/sources/glib/2.11/ glib-2.11.2.tar.bz2 md5sum: 18464b85bfd589f83897623c637a1553 glib-2.11.2.tar.gz md5sum: f728cd295ac98d4b95d850fe91c05fd5 This is a development release leading up to GLib 2.12. Notes: * This is unstable development release. While it has had a bit of testing, there are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GLib 2.10. If you have problems, you'll need to reinstall GLib 2.10. * GLib 2.12 will be source and binary compatible with the GLib 2.10.x series (for some caveats, see the README). At this point, the API additions in the 2.11.x series are almost finished. * Bugs should be reported to http://bugzilla.gnome.org. About GLib ========== GLib is the low-level core library that forms the basis for projects such as GTK+ and GNOME. It provides data structure handling for C, portability wrappers, and interfaces for such runtime functionality as an event loop, threads, dynamic loading, and an object system. More information about GLib is available at: http://www.gtk.org/ An installation guide for the GTK+ libraries, including GLib, can be found at: http://developer.gnome.org/doc/API/2.0/gtk/gtk-building.html Overview of Changes from GLib 2.11.1 to GLib 2.11.2 =================================================== * Add g_ascii_stroll to parse signed 64bit integers * GMarkup: add a flag to treat CDATA as text * GHashTable: add functions to remove all entries * GMainLoop: add functions to find the currently running source, and determine if it is destroyed * Bug fixes: 342563 g_atomic_thread_init() needs to be called before other _g_*_thread_init() functions 343548 Potential use after free in callers of g_string_free() 168538 Wish: Clearing contents of GHashTables 321886 GTK+ cannot be reliably used in multi-threaded applications 341826 goption.c: 'strtoll' is C99's function 343899 g_ascii_formatd dosn't work as expected for all format strings 317793 Make GEnumValue strings const 337129 Compile warnings in G_IMPLEMENT_INTERFACE 303622 What is G_TYPE_CHAR? * Updated translations (bg,dz,eu,gl,ja,nl,th,vi) A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=341826,342563,343548,168538,168538,321886,343899,321886,317793,337129,303622 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Peter Kjellerstedt, Kazuki Iwamoto Leonard den Ottolander, Chris Wilson, Behdad Esfahbod, Matt Barnes, ystein Johansen, Tim Janik Morten Welinder Matthias Clasen June 5, 2006 From mclasen@redhat.com Mon Jun 5 16:21:34 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 09B113B0543; Mon, 5 Jun 2006 16:21:34 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28553-01; Mon, 5 Jun 2006 16:21:32 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 0F8903B0012; Mon, 5 Jun 2006 16:21:31 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k55KLVn7006951; Mon, 5 Jun 2006 16:21:31 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [172.16.76.12]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k55KLUBq020469; Mon, 5 Jun 2006 16:21:31 -0400 Received: from golem.boston.redhat.com (golem.boston.redhat.com [172.16.80.24]) by mail.boston.redhat.com (8.12.8/8.12.8) with ESMTP id k55KLUAV025318; Mon, 5 Jun 2006 16:21:30 -0400 From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain Date: Mon, 05 Jun 2006 16:21:30 -0400 Message-Id: <1149538890.4071.40.camel@golem.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.1 (2.7.1-1) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.429 tagged_above=-999 required=2 tests=[AWL=-0.059, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_GD=0.077, TW_GT=0.077, TW_XI=0.077] X-Spam-Score: -2.429 X-Spam-Level: Cc: Subject: GTK+ 2.9.2 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jun 2006 20:21:34 -0000 GTK+ 2.9.2 is now available for download at: http://ftp.gnome.org/pub/gnome/sources/gtk+/2.9/ gtk+-2.9.2.tar.gz md5sum: c63e7d0cf7c4e983206c3088a0fb8862 gtk+-2.9.2.tar.bz2 md5sum: 17629437af44fce03485101371c8f041 This is a development release leading up to GTK+ 2.10. Notes: * This is unstable development release. There are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GTK+ 2.8. If you have problems, you'll need to reinstall GTK+ 2.8. * GTK+ 2.10 will be source compatible with the GTK+ 2.8 series; the new API additions in GTK+ 2.9.0 are not yet completely finalized, so there are likely incompatibilies between this release and the final 2.10 release. * The ABI version has been bumped from 2.4.0 to 2.10.0, since the filechooser backend interface has been changed. Third-party filechooser backends need to be ported to the new interface. Other third-party modules (input methods, image loaders, etc) just need to be reinstalled in the proper location for GTK+ to find them. * Remaining issues for GTK+ 2.10 can be found with following bugzilla query: http://bugzilla.gnome.org/buglist.cgi?product=gtk%2b&target_milestone=2.10+API+Freeze&target_milestone=2.10+Freeze&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED * Bugs should be reported to http://bugzilla.gnome.org. What is GTK+ ============ 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.4/gtk/gtk-building.html Common questions: http://developer.gnome.org/doc/API/2.4/gtk/gtk-question-index.html http://www.gtk.org/faq/ Overview of Changes from GTK+ 2.9.1 to 2.9.2 ============================================ * GtkPrintOperation - Support asynchronous pagination with the ::paginate signal - Add gtk_print_operation_cancel - Support application-specific widgets - Allow disabling features based on application capabilities - Optionally show progress - Change some function names in GtkPrintContext to be longer and better - Support preview, the default implementation spawns evince, but the api allows for an internal preview implementation * GtkCellView - Add a model property * GtkStatusIcon - Allow to obtain screen geometry * GtkTreeView - Many bug fixes, in particular for RTL handling - Separate sensitive and selectable properties of rows - Optionally allow rubberband selection * GtkButton - Add image-spacing style property - Add image-position property * GtkToolButton - Add icon-spacing style property * Make GTK+ work as an untrused X client * Bugs fixed: 343838 gtkprintoperationpreview.h guards 305530 Crashes while creating source code w/GtkFontSelection 341327 Memory corruption inside glib 341734 cursor blocked to dnd mode after using shift and dnd on a GtkCalendar 343453 G_DEFINE_TYPE messes up internal typenames of GdkWindow and GdkPixmap 136571 Problems running as untrusted client 168105 the right edge tab does not appear when switching tab 172535 Add support for UI builders in gtk+ 302556 GtkTreeView widget signals are badly documented 324480 Selecting first item with keyboard is difficult 340428 small cleanup 340444 don't run the custom page size dialogue 340839 Critical warnings in GtkTreeModelFilter 341898 gtk_tree_view_insert_column_with_attributes doesn't work with fixed_height_mode 342003 DnD: Conditional jump or move depends on uninitialised value 342072 Wrong drop location in GtkEntry 342096 GtkImage animation CRITICALS on switching themes 342513 widget class style property with type module 342529 gdk should set resolution on PangoCairoFontmap, not PangoCairoContext 342535 Add documentation for new GtkWidget style properties (including Since tags) 342543 can't compile gtk+ on opensolaris using sun cc 342569 Typo in decl of gdk_color_parse 342752 Need a way to specify custom tab label for custom page in Print dialog 342754 print-editor: font button dialog doesn't get focus if main window has a window group 342781 GtkPrintUnixDialog: Collate should be insensitive unless Copies is > 1 342783 GtkPrintUnixDialog: Range textinput area should be insensitive unless range radiobutton is selected 342894 Use after free inside gtk_text_view_set_buffer 342930 GtkButton should offer a way to position the image relative to the text 343088 Some typos in the PO file 343425 "grab-notify"-signal is not correctly propagated for internal children 343438 gtk_color_button_set_color() doesn't emit "color-set" signal 343475 page setup unix dialog confusion 343625 allow to get only some info from gtk_status_icon_get_geometry 343677 GtkWindow chains key-release to key-press 320431 Text too close when using East/West in a GtkToolButton 321523 GtkTreeView's test_expand_row signal emitting impractical on row expand all 342007 Warning in gtk_paned_compute_position 343233 gdk_rectangle_intersect doc 333284 expander animation not working in RTL mode 343444 change color of gtk-demo source-buffer comment color from red to DodgerBlue 343630 Small inconsistence in migration documentation 80127 Rubberbanding for GtkTreeView 341450 status icon + libnotify 341679 Allow absolute filenames in the options entries * Updated translations (bg,cy,de,el,es,et,eu,gl,gu,it,ja, nb,nl,pt_BR,th,vi) Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Alexander Larsson, Behdad Esfahbod, Benjamin Berg, Caolan McNamara, Carlos Garnacho Parro, Carol Spears, Christian Persch, Chris Wilson, Claudio Saavedra, Clytie Siddall, Damon Chaplin, Daniel Lindenaar, Dan Winship, Diana Fong, Ed Catmur, Emmanuele Bassi, Havoc Pennington, Henrique Romano, Hiroyuki Ikezoe, James Moger, Johan Dahlin, Kouhei Sutou, Kristian Rietveld, Markku Vire, Mart Raudsepp, Masatake Yamato, Michael Emmel, Michael Natterer, Murray Cumming, Olexiy Avramchenko, Paolo Borelli, Patrick Monnerat, Richard Hult, Sampo Savolainen, Sebastien Bacher, Srirama Sharma, Stefan Kost, Tim Janik, Tommi Komulainen, Tor Lillqvist, Yevgen Muntyan A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=342072,342096,342003,341734,305530,168105,342007,342529,342535,342543,342569,341679,342752,172535,342513,342781,342783,342754,136571,341450,333284,340428,340839,341898,321523,343088,343233,324480,342894,320431,342930,343453,343425,343438,343444,340444,343475,302556,343677,343625,80127,343838,341327,168105,343630 Matthias Clasen June 5, 2006 From thomas@apestaart.org Tue Jun 6 06:04:09 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id ABA3E3B0750; Tue, 6 Jun 2006 06:04:09 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04145-08; Tue, 6 Jun 2006 06:04:08 -0400 (EDT) Received: from mx1.es6.egwn.net (server02.es6.egwn.net [195.10.6.12]) by menubar.gnome.org (Postfix) with ESMTP id 6BEAF3B014E; Tue, 6 Jun 2006 06:04:08 -0400 (EDT) Received: from mx1.fr4.egwn.net (server07.fr4.egwn.net [62.39.85.77]) by mx1.es6.egwn.net (Postfix) with ESMTP id D5F0C4F82E2; Tue, 6 Jun 2006 12:04:05 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by mx1.fr4.egwn.net (spiffy mail daemon) with ESMTP id 0D94183BE7; Tue, 6 Jun 2006 12:04:00 +0200 (CEST) Received: from mx1.fr4.egwn.net ([127.0.0.1]) by localhost (server07.fr4.egwn.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16922-12; Tue, 6 Jun 2006 12:03:14 +0200 (CEST) Received: from thread.fluendo.lan (core.fluendo.com [195.10.6.237]) by mx1.fr4.egwn.net (spiffy mail daemon) with ESMTP id C559583BE4; Tue, 6 Jun 2006 12:03:14 +0200 (CEST) Received: from thomas.fluendo.lan (thomas.fluendo.lan [192.168.1.10]) by thread.fluendo.lan (Postfix) with ESMTP id 6EF06FFDB; Tue, 6 Jun 2006 12:03:18 +0200 (CEST) From: Thomas Vander Stichele To: gnome-hackers@gnome.org In-Reply-To: <1148971293.12902.2.camel@red> References: <1139648664.6627.40.camel@localhost> <1148971293.12902.2.camel@red> Content-Type: text/plain Date: Tue, 06 Jun 2006 12:03:19 +0200 Message-Id: <1149588200.24971.3.camel@otto.amantes> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 (2.6.1-1.fc5.2) Content-Transfer-Encoding: 7bit X-Scanned: By amavis at egwn.net X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.626 tagged_above=-999 required=2 tests=[AWL=-0.070, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, RCVD_IN_SBL=3.16] X-Spam-Score: 0.626 X-Spam-Level: Cc: gnome-announce-list@gnome.org, devel-announce-list@gnome.org Subject: Re: Subversion migration schedule (new cut-off Fri 16 June) X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 10:04:10 -0000 On Tue, 2006-05-30 at 13:41 +0700, Ross Golder wrote: > Hi, > > As the various show-stoppers that prevented our previously scheduled > migration from going ahead have now been resolved, I am proposing that > the new migration go ahead at 23:59UTC on Friday 16th June 2006. Please > let us know a.s.a.p if that will be inconvenient for anyone. It may be inconvenient for any hack sessions done at GUADEC if it leaves people with too little time to convert their laptop checkouts properly, or if anything goes wrong with the conversion. I don't know if that's important enough of a reason, but it'd be too bad if we'd be stifling the surge of activity at GUADEC. Thomas From carlosg@gnome.org Tue Jun 6 10:05:02 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1A0BD3B0132; Tue, 6 Jun 2006 10:05:02 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26815-01; Tue, 6 Jun 2006 10:05:01 -0400 (EDT) Received: from localhost.localdomain (133.Red-88-0-26.dynamicIP.rima-tde.net [88.0.26.133]) by menubar.gnome.org (Postfix) with ESMTP id CB9F23B0107; Tue, 6 Jun 2006 10:05:00 -0400 (EDT) Received: by localhost.localdomain (Postfix, from userid 1000) id 7F37E13F73; Tue, 6 Jun 2006 16:04:58 +0200 (CEST) From: Carlos Garnacho To: system-tools-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Tue, 06 Jun 2006 16:04:57 +0200 Message-Id: <1149602697.21203.7.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.528 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, RCVD_IN_NJABL_DUL=1.946, RCVD_IN_SORBS_DUL=2.046] X-Spam-Score: 1.528 X-Spam-Level: * X-Mailman-Approved-At: Tue, 06 Jun 2006 10:20:33 -0400 Cc: Subject: System Tools Backends 1.9.0 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 14:05:02 -0000 The System Tools Backends version 1.9.0 "Pluto tan" have been released. This is the first release towards 2.x series, which will feature DBus interfaces to access data, signals to notify asynchronously about modifications in the configuration and a cleaner codebase. If you're interested in the 1.4.x series, checkout the stb-1-4 CVS branch. The System Tools Backends are a set of cross-platform modules for Linux, FreeBSD and other Unix systems. The backends provide an common DBus interface to all distros for modifying or reading the system configuration. Right now the System Tools Backends fully support various distros/OS such as: Redhat, Mandrake, SuSE, Fedora, Debian (and derivations like Ubuntu, Linex, Guadalinex...), Gentoo, Slackware, FreeBSD, OpenNA, PLD, Vine and Specifix. Downloading =========== You can get it from : http://system-tools-backends.freedesktop.org/downloads/1.9/ From carlosg@gnome.org Tue Jun 6 10:05:22 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B7A6E3B014C; Tue, 6 Jun 2006 10:05:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26770-09; Tue, 6 Jun 2006 10:05:22 -0400 (EDT) Received: from localhost.localdomain (133.Red-88-0-26.dynamicIP.rima-tde.net [88.0.26.133]) by menubar.gnome.org (Postfix) with ESMTP id 7A00B3B012A; Tue, 6 Jun 2006 10:05:21 -0400 (EDT) Received: by localhost.localdomain (Postfix, from userid 1000) id 0618413F73; Tue, 6 Jun 2006 16:05:20 +0200 (CEST) From: Carlos Garnacho To: system-tools-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Tue, 06 Jun 2006 16:05:19 +0200 Message-Id: <1149602719.21203.9.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.528 tagged_above=-999 required=2 tests=[AWL=-0.000, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, RCVD_IN_NJABL_DUL=1.946, RCVD_IN_SORBS_DUL=2.046] X-Spam-Score: 1.528 X-Spam-Level: * X-Mailman-Approved-At: Tue, 06 Jun 2006 10:20:34 -0400 Cc: Subject: Liboobs 0.1.0 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 14:05:22 -0000 Liboobs 0.1.0, 2006-06-06 ----------------------------------------------- Liboobs version 0.1.0 "Shattered ataraxia" has been released. Liboobs is a lightweight library that provides a GObject based interface to system-tools-backends. It's completely abstracted of the communication and authentication details, making it easy for applications to integrate with the system details. Downloading =========== You can get it from : ftp://ftp.gnome.org/pub/GNOME/sources/liboobs/0.1/ From carlosg@gnome.org Tue Jun 6 10:05:35 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AB0C03B012A; Tue, 6 Jun 2006 10:05:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26769-07; Tue, 6 Jun 2006 10:05:34 -0400 (EDT) Received: from localhost.localdomain (133.Red-88-0-26.dynamicIP.rima-tde.net [88.0.26.133]) by menubar.gnome.org (Postfix) with ESMTP id D49943B0179; Tue, 6 Jun 2006 10:05:33 -0400 (EDT) Received: by localhost.localdomain (Postfix, from userid 1000) id E163B13F73; Tue, 6 Jun 2006 16:05:31 +0200 (CEST) From: Carlos Garnacho To: system-tools-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Date: Tue, 06 Jun 2006 16:05:31 +0200 Message-Id: <1149602731.21203.11.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.528 tagged_above=-999 required=2 tests=[AWL=-0.000, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, RCVD_IN_NJABL_DUL=1.946, RCVD_IN_SORBS_DUL=2.046] X-Spam-Score: 1.528 X-Spam-Level: * X-Mailman-Approved-At: Tue, 06 Jun 2006 10:20:34 -0400 Cc: Subject: GNOME System Tools 2.15.0 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 14:05:35 -0000 The GNOME System Tools version 2.15.0 "Uncanny routine" have been released. The GNOME System Tools are a set of cross-platform configuration utilities for Linux and other Unix systems. The frontends knows nothing about the underlying system and provide the same user interface across the different types of systems. Internally they use the Liboobs library. Changes since last release =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D Common =3D=3D=3D=3D=3D=3D - use intltool 0.35, move ALL_LINGUAS to po/LINGUAS (Przemys=C5=82aw Grzegorczyk) - Make g-s-t work fine with --as-needed (Mike Auty) All tools =3D=3D=3D=3D=3D=3D=3D=3D=3D - Use liboobs. The XML interface is deprecated (Garnacho) - Adopt a more instant apply policy (Garnacho) - UI Changes (Garnacho) - Use named icons in menus and window icon for themeability (Sebastien Bacher, Garnacho) - Set translation domain for popups (Sebastien Bacher) Users =3D=3D=3D=3D=3D - Use adduser/addgroup if it's present (Garnacho) Network =3D=3D=3D=3D=3D=3D=3D - Use DHCP as the default (Garnacho) Services =3D=3D=3D=3D=3D=3D=3D=3D - Add advanced runlevels/priorities editor (Garnacho) Shares =3D=3D=3D=3D=3D=3D - Rework defaults for new shared folders (Garnacho) Time =3D=3D=3D=3D - Update some NTP servers (Gary Coady, Jun Kobayashi) Translations =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D - dz (Pema Geyleg) - es (Francisco Javier F. Serrador) - et (Ivar Smolin) - fi (Ilkka Tuohela) - gl (Ignacio Casal Quinteiro) - gu (Ankit Patel) - it (Francesco Marletta) - ka (Vladimer Sichinava) - nb (Kjartan Maraas) - ru (Nickolay V. Shmyrev) - th (Theppitak Karoonboonyanan) - tr (Deniz Kocak) Downloading =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D You can get it from : ftp://ftp.gnome.org/pub/GNOME/sources/gnome-system-tools/2.15/ From kalle.vahlman@gmail.com Wed Jun 7 13:52:15 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6E4E43B01A4 for ; Wed, 7 Jun 2006 13:52:15 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02283-05 for ; Wed, 7 Jun 2006 13:52:14 -0400 (EDT) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.168]) by menubar.gnome.org (Postfix) with ESMTP id 965853B0115 for ; Wed, 7 Jun 2006 13:52:13 -0400 (EDT) Received: by ug-out-1314.google.com with SMTP id u2so434421uge for ; Wed, 07 Jun 2006 10:52:12 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=iebILRnovVdTxqGwouC/tR/+4MtaielhlX8Ua0W3DfGDpIfDH3f9KvKP70TzbcVubjtjL/zWOS7/A2VM/5vvfCOtbjHJsooRdCtWuC03vTCdPlQ6u7BZgs1lUvDhzlgKMUpdMeg2eI3oWqrM64fhyC+c+LkzIbKwCkxiTwVCgEI= Received: by 10.67.101.10 with SMTP id d10mr759171ugm; Wed, 07 Jun 2006 10:40:55 -0700 (PDT) Received: by 10.67.16.10 with HTTP; Wed, 7 Jun 2006 10:40:55 -0700 (PDT) Message-ID: <177e83dd0606071040h35f807a8o205c18c2a68ee184@mail.gmail.com> Date: Wed, 7 Jun 2006 20:40:55 +0300 From: "Kalle Vahlman" To: gnome-announce-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.432 tagged_above=-999 required=2 tests=[AWL=-0.390, BAYES_00=-2.599, RCVD_IN_BL_SPAMCOP_NET=1.558, SPF_PASS=-0.001] X-Spam-Score: -1.432 X-Spam-Level: X-Mailman-Approved-At: Wed, 07 Jun 2006 14:03:53 -0400 Subject: [Announce] The Scw library version 0.4.4 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: zuh@iki.fi List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 17:52:15 -0000 I'm happy to announce a new release of Scw, the chat-oriented widget set! (I have a broken memory chip, didn't remember to send announcements for the releases between 0.3.0 and 0.4.4...) What's new? ========= The release 0.4.4 includes the following changes (from 0.3.0): * Bugfixes: - Draw much less (but still enough ;) - Fix memory leaks * API changes: - scw_view_set_column_foldable(): Add a boolean argument to control the foldability (previously you couldn't undo setting foldability) - New signal: "buffer-request" - New method: scw_view_scroll_to_row(): Scrolls the view to given row (a GtkTreePath) * Gtk-docs, at last! (and possibly more, but haven't managed to keep track of all the individual fixes) What is it? ======= Scw is a library that includes widgets designed for chat programs. Currently this means (but will be extended with time): * ScwView, a view that has: - Activatable text (urls, user names, etc) - Embedded icons - Pango markup - Wrapping - GtkTreeModel implementations as data storage - Different interaction modes (select, pan, smart pan) * ScwEntry, an derivate of GtkEntry which adds: - Simple input history Python and Ruby bindings are available, Java-Gtk bindings are (still) planned (but not on the immediate todo list). Any bindings will be welcomed. As a bonus feature, the widgets are guaranteed to compile and work on the Maemo[1] platform (used in the Nokia 770[2] that everybody is so exited about). More detailed description, as well as API documentation is found on the home page of Scw. Applications that use Scw ================== * Rirc (an irssi2 client, not exactly sure about status) * Silky (is being ported to it in the REWRITE branch, http://silky.sourceforge.net/ * Telepathy people have been doing a proto client using Scw (http://telepathy.freedesktop.org) * Your app here possibly? Let me know! Where to get it? ============ Homepage: http://iki.fi/zuh/scw/ Version 0.4.4: http://iki.fi/zuh/scw/scw-0.4.4.tar.gz Python bindings http://iki.fi/zuh/scw/python-scw-0.4.0.tar.gz Ruby bindings http://iki.fi/zuh/scw/ruby-scw-0.4.0.tar.gz Communication options ================ As I haven't yet set up mailing lists or bugzilla or anything really, bug reports and other stuff should be sent straight to me at zuh@iki.fi. -- Kalle Vahlman, zuh@iki.fi Powered by http://movial.fi Interesting stuff at http://syslog.movial.fi From Brian.Cameron@Sun.COM Wed Jun 7 18:25:45 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D74D13B04F0; Wed, 7 Jun 2006 18:24:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19021-09; Wed, 7 Jun 2006 18:24:40 -0400 (EDT) Received: from brmea-mail-1.sun.com (brmea-mail-1.Sun.COM [192.18.98.31]) by menubar.gnome.org (Postfix) with ESMTP id 648333B0E7D; Wed, 7 Jun 2006 18:24:21 -0400 (EDT) Received: from fe-amer-04.sun.com ([192.18.108.178]) by brmea-mail-1.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k57MOKiX019647; Wed, 7 Jun 2006 16:24:20 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0I00A01GLFT100@mail-amer.sun.com> (original mail from Brian.Cameron@Sun.COM); Wed, 07 Jun 2006 16:24:20 -0600 (MDT) Received: from [192.9.61.158] by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0I00M6DGWJIGM4@mail-amer.sun.com>; Wed, 07 Jun 2006 16:24:20 -0600 (MDT) Date: Wed, 07 Jun 2006 17:24:20 -0500 From: Brian Cameron Sender: Brian.Cameron@Sun.COM To: gnome-announce-list@gnome.org, gdm-list@gnome.org Message-id: <44875214.1030303@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5.0.2 (X11/20060515) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.446 tagged_above=-999 required=2 tests=[AWL=-0.002, BAYES_00=-2.599, TW_GD=0.077, TW_PM=0.077, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.446 X-Spam-Level: Cc: Subject: GDM2 2.8.0.8 (stable), the "SecurityFix" Release] X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 22:25:46 -0000 AOOH-GAH -------- (If you have no clue what gdm is, skip a few paragraphs down first) The 2.8.0.8 release is a stable release of GDM (note GDM 2.8.0.8 corresponds with gnome-2-12 branch) with the following new features. Note this contains an important security fix, so users and distros should update immediately. - Correction for serious security issue where the user can enter the GDM configuration GUI with a user password when the Face Browser is enabled. Refer to bugzilla.gnome.org bug #343476 (Brian Cameron) This issue impacts all versions of GDM 2.8.0.0-2.8.0.7, 2.14.0-2.14.7, and 2.15.0-2.15.3. This issue was reported to vendor-sec one week ago and has ID #CVE-2006-2452. - Translation updates (Stanislav Brabec, Josep Puigdemont i Casamaj\303\263, Abel Cheung, Priit Laes, Christophe Merlet, Clytie Siddall, \303\205smund Skj\303\246veland, Tommi Vainikainen) Note: GDM2 was originally written by Martin K. Petersen . Much work has been done on GDM2 by George Lebl, and Brian Cameron currently shares maintainership duties with the Queen of England. Note2: If installing from the tarball do note that make install overwrites most of the setup files, all except gdm.conf. It will however save backups with the .orig extension first. #ifndef GDM_DISABLE_DEPRECATED Note3: Note3 has been depracated ... #endif /* GDM_DISABLE_DEPRECATED */ Downloading: ============ Online Documentation: http://www.gnome.org/projects/gdm/ http://ftp.gnome.org/pub/GNOME/sources/gdm/2.15/ No RPM this time around BTW. Have fun. A spec file is included though, so you can try: rpmbuild -ta gdm-whatever.tar.gz Have fun, Brian From Brian.Cameron@Sun.COM Wed Jun 7 18:27:17 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7C4C83B0C49; Wed, 7 Jun 2006 18:27:17 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19552-05; Wed, 7 Jun 2006 18:27:15 -0400 (EDT) Received: from brmea-mail-3.sun.com (brmea-mail-3.Sun.COM [192.18.98.34]) by menubar.gnome.org (Postfix) with ESMTP id CCF8D3B0E66; Wed, 7 Jun 2006 18:27:14 -0400 (EDT) Received: from fe-amer-02.sun.com ([192.18.108.176]) by brmea-mail-3.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k57MRDvQ016057; Wed, 7 Jun 2006 16:27:14 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0I00401GJDHP00@mail-amer.sun.com> (original mail from Brian.Cameron@Sun.COM); Wed, 07 Jun 2006 16:27:13 -0600 (MDT) Received: from [192.9.61.158] by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0I00I5KH1CUVP4@mail-amer.sun.com>; Wed, 07 Jun 2006 16:27:13 -0600 (MDT) Date: Wed, 07 Jun 2006 17:27:13 -0500 From: Brian Cameron Sender: Brian.Cameron@Sun.COM To: gnome-announce-list@gnome.org, gdm-list@gnome.org Message-id: <448752C1.30509@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5.0.2 (X11/20060515) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.408 tagged_above=-999 required=2 tests=[AWL=-0.041, BAYES_00=-2.599, TW_DM=0.077, TW_GD=0.077, TW_PM=0.077, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.408 X-Spam-Level: Cc: Subject: GDM2 2.14.8 (stable), the "SecurityFix" Release X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 22:27:17 -0000 AOOH-GAH -------- (If you have no clue what gdm is, skip a few paragraphs down first) The 2.14.8 release is a stable release of GDM with the following new features. Note this contains an important security fix, so users and distros should update immediately. - Correction for serious security issue where the user can enter the GDM configuration GUI with a user password when the Face Browser is enabled. Refer to bugzilla.gnome.org bug #343476 (Brian Cameron) This issue impacts all versions of GDM 2.8.0.0-2.8.0.7, 2.14.0-2.14.7, and 2.15.0-2.15.3. This issue was reported to vendor-sec one week ago and has ID #CVE-2006-2452. - Fixed bug where when the "Include All" button is modified in the Users tab, the Automatic/Timed login dropdown lists update properly. (Brian Cameron) - Now gdmflexiserver calls gdmcomm_check with FALSE so it will not pop up a dialog. gdmflexiserver can be run with the --command option which can be used when the user does not have permission to a DISPLAY, so trying to show a dialog was causing gdmflexiserver to core dump when the check failed. (Brian Cameron) - Added gestures to the AccessKeyMouseEvents configuration file so that users can access more accessibility features using dwell gestures. (Brian Cameron) - Translation updates (Laurent Dhima, Pema Geyleg, Theppitak Karoonboonyanan, Gabor Kelemen, Ahmad Riza H Nst, Vincent van Adrighem) Note: GDM2 was originally written by Martin K. Petersen . Much work has been done on GDM2 by George Lebl, and Brian Cameron currently shares maintainership duties with the Queen of England. Note2: If installing from the tarball do note that make install overwrites most of the setup files, all except gdm.conf. It will however save backups with the .orig extension first. #ifndef GDM_DISABLE_DEPRECATED Note3: Note3 has been depracated ... #endif /* GDM_DISABLE_DEPRECATED */ Downloading: ============ Online Documentation - http://www.gnome.org/projects/gdm/ Latest Stable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.14/ Latest Unstable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.15/ No RPM this time around BTW. Have fun. A spec file is included though, so you can try: rpmbuild -ta gdm-whatever.tar.gz Have fun, Brian From dsandras@seconix.com Wed Jun 7 15:09:24 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E46CC3B027D for ; Wed, 7 Jun 2006 15:09:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07646-04 for ; Wed, 7 Jun 2006 15:09:22 -0400 (EDT) Received: from ns20085.ovh.net (ekiga.net [213.186.62.145]) by menubar.gnome.org (Postfix) with ESMTP id A72183B0239 for ; Wed, 7 Jun 2006 15:09:21 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ns20085.ovh.net (Postfix) with ESMTP id BF54049704 for ; Wed, 7 Jun 2006 20:51:50 +0200 (CEST) Received: from ns20085.ovh.net ([127.0.0.1]) by localhost (ns20085.ovh.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09043-07 for ; Wed, 7 Jun 2006 20:51:49 +0200 (CEST) Received: from [192.168.0.161] (173.132-245-81.adsl-dyn.isp.belgacom.be [81.245.132.173]) (using SSLv3 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by ns20085.ovh.net (Postfix) with ESMTP id DF3C549702 for ; Wed, 7 Jun 2006 20:51:48 +0200 (CEST) From: Damien Sandras To: gnome-announce-list@gnome.org Content-Type: text/plain Date: Wed, 07 Jun 2006 21:10:04 +0200 Message-Id: <1149707404.2474.40.camel@golgoth01> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at gnomemeeting.net X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 03:15:35 -0400 Subject: Ekiga 2.0.2 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 19:09:24 -0000 This is release of Ekiga for GNOME 2.14 * What is it ? ============== Ekiga is a free Voice over IP phone allowing you to do free calls over the Internet. Ekiga is the first Open Source application to support both H.323 and SIP, as well as audio and video. Ekiga was formerly known as GnomeMeeting. More information can be found at http://www.ekiga.org * Where to get it ? =================== Ekiga is available at: ftp://ftp.gnome.org/pub/gnome/sources/ekiga/2.0 * What's changed ? ================== Ekiga: * Fixed problem with the activation of actions on contacts in the addressbook. (#334685, Julien Puydt) * Added a tooltip for the status label, to read the full text even when the message is cut off. (Jan Schampera) * Added missing notifiers for "new message" sound event. (Damien Sandras) * Prevent the UI from freezing a few micro seconds while registering accounts. (Damien Sandras) * Fixed OpenSolaris support. (#335196, Sun Microsystems/Boying Lu) * Fixed wrong key name in URL handlers section for GNOME. (Jan Schampera) * Fixed detection of ended calls in DBUS. (Julien Puydt) * Fixed playing/pausing of calls in DBUS. (#333465, Julien Puydt) * Fixed useless focus grabbing in druid which made some pages impossible to get the focus. (Jan Schampera) * Fixed crash when creating a contact while not having any local addressbook. (#334960, Julien Puydt) * Fixed leaking the system username on the network. (#335784, Julien Puydt) * Make sure the reason of the end of the call is always the last thing displayed in the status bar. (Damien Sandras) * Fixed browsing of ILS servers. (Damien Sandras) * Made sensitivity of the zoom related menuitems dependant on the actual zoom factor. (#336575, Jan Schampera) * Added "New contact" menu item to the contacts context menu. (#336588, Jan Schampera) * Fixed frame size calculation of video frame. (#336572, Jan Schampera) * Fixed sensitivity setting of "Fullscreen" menu item and sensitifity when leaving Fullscreen mode. (#336575, Jan Schampera) * Fixed non-selectable text problem in the chat window. (#336789, Jan Schampera) * Fixed LDAP search filter so that it works with LDAP servers that do not have a "location" attribute. (#336849, Damien Sandras) * Made most dialogs/popups closable by ESC (partially fixes #337494) (Jan Schampera) * Fixed problem with cursor turning into a hand at the wrong position in the chat window. (#336793, Julien Puydt) * Fixed text chat formatting corruption. (#335794, Simon Wood) * Monitor IP address changes to update the registrations. (#335398, Damien Sandras) * Color inactive tabs when receiving a chat message. (#335857, Simon Wood) * Open new tabs in the background. (#335857, Simon Wood) * Avoid losing error dialogs behind the druid (#338270, Julien Puydt) * Fixed wrong packets loss count. (#339866, Damien Sandras) * Fixed video flipping bug during calls with preview active. (#339867, Damien Sandras) * Fixes crash in address book when no address book is selected (#34210, Julien Puydt) * Fixed handling of call forwarding/transfer in case of incoming call (Damien Sandras) Ekiga WIN32: * Fixed remote contacts crashing on WIN32 or with the non GNOME version. (#335472, Jan Schampera) * Ekiga will now detect if it is already running on WIN32 and bail out. (#337794, Michael Rickmann) * Fixed command-line parsing on WIN32. (#337797, Michael Rickmann) * Fixed stuttering on WIN32. (#337799, Michael Rickmann) * Made the use of SDL more reliable on WIN32. (#337795, Michael Rickmann) * Made the help work on WIN32. (#337798, Michael Rickmann) * Made the 4s delay in the audio test work on WIN32. (#337799, Michael Rickmann) * Fixed fullscreen issues on WIN32 (#337792, Michael Rickmann). SIP support: * Fixed rport support when receving SIP request from another host than the one mentionned in the Via. (#335002, Damien Sandras) * Remove REGISTER and SUBSCRIBE from the Allow field. (#334979, Damien Sandras) * Fixed SRV lookup when creating connections. (#334994, Damien Sandras) * Improved CANCEL handling. (i#334985, Damien Sandras) * Fixed user in From field so that it always corresponds to a registered account. (#335006, Damien Sandras) * Unregister using the same remote address than the one used to register. (#334999, Damien Sandras) * Prevent loop of UNREGISTER requests when leaving. (#334997, Damien Sandras) * Allow duplicate INVITE PDUs to be treated concurrently. (#334847, Damien Sandras) * Set the From field to the address of record of the default SIP account. (#334457, Damien Sandras) * Fixed infinite loop when calling an host with more than 1 SRV record. (Damien Sandras) * Added support for SDP offers in the OK response, and SDP answer in the ACK request. (Damien Sandras) * Fixed wrong behavior with different priorities when building the priorities list. (#339314, Damien Sandras) * Do not lookup recipient's address when using an outbound proxy. (#334455, Damien Sandras) * Fixed problem with dynamic payload type codecs. (#337456, Damien Sandras) * Fixed routing with proxies who do not support the 'lr' parameter. (#340415, Damien Sandras) H.323 support: * Uses lower initial bandwidth by default when registering to gatekeepers. (#300366, Damien Sandras) Devices: * Fixed broken OSS plugin. (#338505, Damien Sandras) * Added resizing capability for VYUY YUYV formats. (#330946, Luc Saillard) * Improved UVC camera support. (Martin Rubli from Logitech) * Fixed parsing of JPEG streams with DHT markers. (Martin Rubli from Logitech) -- _ Damien Sandras (o- //\ Ekiga Softphone: http://www.ekiga.org/ v_/_ FOSDEM 2006 : http://www.fosdem.org/ SIP Phone : sip:dsandras@ekiga.net sip:600000@ekiga.net From murrayc@murrayc.com Wed Jun 7 15:39:02 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 71EF73B0DDF; Wed, 7 Jun 2006 15:38:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09273-01; Wed, 7 Jun 2006 15:38:57 -0400 (EDT) Received: from swarthymail-a3.dreamhost.com (mailbigip2.dreamhost.com [208.97.132.53]) by menubar.gnome.org (Postfix) with ESMTP id 3DC723B0E65; Wed, 7 Jun 2006 15:38:44 -0400 (EDT) Received: from noname (p5497CB1E.dip.t-dialin.net [84.151.203.30]) by swarthymail-a3.dreamhost.com (Postfix) with ESMTP id 1E03F7F05A; Wed, 7 Jun 2006 12:38:41 -0700 (PDT) From: Murray Cumming To: gnome-announce , gtkmm-list Content-Type: text/plain Date: Wed, 07 Jun 2006 21:38:36 +0200 Message-Id: <1149709116.5916.26.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.684 tagged_above=-999 required=2 tests=[AWL=-0.695, BAYES_00=-2.599, RCVD_IN_SORBS_WEB=1.456, TW_GT=0.077, TW_TK=0.077] X-Spam-Score: -1.684 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 03:15:35 -0400 Cc: Subject: ANNOUNCE: gtkmm 2.9.4 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 19:39:02 -0000 *** gtkmm 2.9/2.10: gtkmm 2.9 wraps new API in GTK+ 2.9, and is API/ABI-compatibile with gtkmm 2.8, 2.6 and 2.4. It is a version of the gtkmm-2.4 API. This will become the API-stable gtkmm 2.10, wrapping GTK+ 2.10. gtkmm stays in-sync with GTK+ by following the official GNOME release schedule: http://www.gnome.org/start/unstable/ Bindings for the rest of the GNOME Platform are also available, and are also API-stable. http://www.gtkmm.org *** Changes gtkmm 2.9.4: Gtk: * PrintContext: - Added set_track_print_status() and cancel(), paginate signal. (Marko Anastasov) - get_cairo() renamed to get_cairo_context(), - get_fontmap() renamed to get_pango_fontmap(), - create_context() renamed to create_pango_context(), - create_layout() renamed to create_pango_layout(). (Murray Cumming) * PrintJob: - Added set/get_track_print_status(). (Marko Anastasov) Pango: * Added CairoFontMap. (Might be removed later) * Context: Added update_from_cairo_context(), set_cairo_font_options(), set_cairo_font_options(), get_font_options(), set_resolution(), get_resolution(). * Layout: Added create(Cairo::Context), update_from_cairo_context(), add_to_cairo_context(). * LayoutLine: Added show_in_cairo_context(), add_to_cairo_context(). (Murray Cumming) *** Download http://www.gtkmm.org/download.shtml You will need libsigc++ 2.0, available here: https://sourceforge.net/project/showfiles.php?group_id=1970 *** Development There is active discussion on the mailing list: http://www.gtkmm.org/mailinglist.shtml and in the #c++ channel on irc.gnome.org -- Murray Cumming murray@usa.net www.murrayc.com From sandmann@daimi.au.dk Thu Jun 8 23:24:44 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id ACF2A3B0418 for ; Thu, 8 Jun 2006 23:24:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23677-04 for ; Thu, 8 Jun 2006 23:24:43 -0400 (EDT) Received: from daimi.au.dk (daimi.au.dk [130.225.16.1]) by menubar.gnome.org (Postfix) with ESMTP id A7F633B0408 for ; Thu, 8 Jun 2006 23:24:42 -0400 (EDT) Received: from camel18.daimi.au.dk (camel18 [130.225.16.137]) by daimi.au.dk (8.12.11.20060308/8.12.11) with ESMTP id k593OeQD008266; Fri, 9 Jun 2006 05:24:40 +0200 Received: from camel18.daimi.au.dk (IDENT:U2FsdGVkX1/iO3gyunaS0bFYmoVfNsPfhKVcvodnSF0@localhost [127.0.0.1]) by camel18.daimi.au.dk (8.13.1/8.13.1) with ESMTP id k593OeQV004787; Fri, 9 Jun 2006 05:24:40 +0200 Received: (from sandmann@localhost) by camel18.daimi.au.dk (8.13.1/8.13.1/Submit) id k593OedI004782; Fri, 9 Jun 2006 05:24:40 +0200 X-Authentication-Warning: camel18.daimi.au.dk: sandmann set sender to sandmann@daimi.au.dk using -f Sender: sandmann@daimi.au.dk To: gnome-announce-list@gnome.org From: Soeren Sandmann Date: 09 Jun 2006 05:24:40 +0200 Message-ID: Lines: 65 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Scanned-By: MIMEDefang 2.56 on 130.225.16.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.574 tagged_above=-999 required=2 tests=[AWL=0.025, BAYES_00=-2.599] X-Spam-Score: -2.574 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 03:15:35 -0400 Subject: Sysprof Linux Profiler v. 1.0.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jun 2006 03:24:44 -0000 * What is it? -------------------------- Sysprof is a sampling system-wide CPU profiler for Linux. Sysprof uses a Linux kernel module to profile the entire system, not just an individual application.=20 Of course, sysprof handles threads and shared libraries, and applications do not have to be recompiled or instrumented. In fact they don't even have to be restarted.=20 Just insert the kernel module and start sysprof. * Features: ---------------------- - Profiles all running processes, not just a single application - Call graph support showing time spent in each branch of the call tree - Has a simple graphical interface - Profiles can be loaded and saved - Easy to use: Just insert the kernel module and start sysprof - Supports Fedora debuginfo packages * Sysprof 1.0.3 -------------------------- - Compiles with the latest kernels Please report bugs as well as success or failure stories to=20 sandmann@daimi au dk * Where can I get it? -------------------------------------------- Home page: http://www.daimi.au.dk/~sandmann/sysprof/ Source code: http://www.daimi.au.dk/~sandmann/sysprof/sysprof-1.0.3.tar.gz Sysprof requires - Linux 2.6.11 or later, compiled with profiling support - GTK+ 2.6 - libglade 2.5 It is known to work out the box on Fedora Core 4 and 5. S=F8ren From pjc51@cam.ac.uk Fri Jun 9 05:57:47 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B73C93B01A8 for ; Fri, 9 Jun 2006 05:57:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12981-09 for ; Fri, 9 Jun 2006 05:57:45 -0400 (EDT) Received: from ppsw-9.csi.cam.ac.uk (unknown [131.111.8.139]) by menubar.gnome.org (Postfix) with ESMTP id B5D2C3B00B1 for ; Fri, 9 Jun 2006 05:57:45 -0400 (EDT) X-Cam-SpamDetails: Not scanned X-Cam-AntiVirus: No virus found X-Cam-ScannerInfo: http://www.cam.ac.uk/cs/email/scanner/ Received: from tiree.ra.phy.cam.ac.uk ([131.111.48.169]:49064) by ppsw-9.csi.cam.ac.uk (ppsw.cam.ac.uk [131.111.8.139]:25) with esmtp id 1FodkB-0007u9-Tm (Exim 4.54) (return-path ); Fri, 09 Jun 2006 10:57:31 +0100 From: Phil Cowans To: gnome-announce-list@gnome.org, dasherteam@yahoogroups.com Content-Type: text/plain Date: Fri, 09 Jun 2006 10:57:30 +0100 Message-Id: <1149847050.16654.9.camel@tiree.ra.phy.cam.ac.uk> Mime-Version: 1.0 X-Mailer: Evolution 2.0.4 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.599 tagged_above=-999 required=2 tests=[BAYES_00=-2.599] X-Spam-Score: -2.599 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 06:34:46 -0400 Cc: Subject: Dasher 4.1.4 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jun 2006 09:57:47 -0000 Dasher 4.1.4 is now available for download from: http://ftp.gnome.org/pub/GNOME/sources/dasher/4.1/ Windows and (unofficial) Debian binaries are available from: http://www.dasher.org.uk/Download.html The 4.1.x series of Dasher releases is a development series which will lead to version 4.2.0 in time for the GNOME 2.16 release. If you're after stability, install the latest 4.0.x version instead. The 4.1.x series aims to improve interaction with the desktop environment and window manager, for example to make it easier to enter text into other applications. 4.1.4 fixes a number of bugs which were present in 4.1.0. We're always greatful for any feedback from users - either via the GNOME Bugzilla: http://bugzilla.gnome.org/ Or by email to dasher@mrao.cam.ac.uk. Thanks to all who contributed to this release, Phil Cowans 9th June 2006 From Rich.Burridge@Sun.COM Fri Jun 9 09:59:59 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4262D3B010A for ; Fri, 9 Jun 2006 09:59:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 29076-03 for ; Fri, 9 Jun 2006 09:59:57 -0400 (EDT) Received: from brmea-mail-2.sun.com (brmea-mail-2.Sun.COM [192.18.98.43]) by menubar.gnome.org (Postfix) with ESMTP id 436C93B01BE for ; Fri, 9 Jun 2006 09:59:57 -0400 (EDT) Received: from fe-amer-03.sun.com ([192.18.108.177]) by brmea-mail-2.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k59DxtP3010388 for ; Fri, 9 Jun 2006 07:59:56 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0L00I01IP1J100@mail-amer.sun.com> (original mail from Rich.Burridge@Sun.COM) for gnome-announce-list@gnome.org; Fri, 09 Jun 2006 07:59:55 -0600 (MDT) Received: from [192.168.1.102] (c-71-202-99-109.hsd1.ca.comcast.net [71.202.99.109]) by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0L008L6IVU1C10@mail-amer.sun.com> for gnome-announce-list@gnome.org; Fri, 09 Jun 2006 07:59:55 -0600 (MDT) Date: Fri, 09 Jun 2006 06:59:21 -0700 From: Rich Burridge Sender: Rich.Burridge@Sun.COM To: gnome-announce-list@gnome.org Message-id: <44897EB9.6060700@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5 (X11/20060327) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.598 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.598 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 11:19:14 -0400 Subject: ANNOUNCE: gcalctool v5.8.13 [hopefully stable] X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jun 2006 13:59:59 -0000 Gcalctool is the default GNOME desktop calculator. It has Basic, Advanced, Financial and Scientific modes. Internally it uses multiple precision arithmetic to produce results to a high degree of accuracy. This (hopefully stable) release is for GNOME 2.15.3. Changes since the last gcalctool version (5.8.13). * From Sami Pietila - Fixed bug #343150. Gcalctool no longer crashes when switching to scientific mode. * Adjusted configure.in so that gcalctool now requires intltool v0.35.0. Updated Translations (thankyou!) Pema Geyleg - dz.po: Updated Dzongkha translation. Vincent van Adrighem - nl.po: Translation updated by Tino Meinen. Clytie Siddall - vi.po: Updated Vietnamese translation. Theppitak Karoonboonyanan - th.po: Updated Thai translation. Miloslav Trmac - cs.po: Updated Czech translation. Raphael Higino - pt_BR.po: Updated Brazilian Portuguese translation. Ignacio Casal Quinteiro - gl.po: Updated Galician Translation. You can download this new version from: http://ftp.gnome.org/pub/GNOME/sources/gcalctool/5.8/ From Rich.Burridge@Sun.COM Fri Jun 9 12:22:20 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1CB123B110C for ; Fri, 9 Jun 2006 12:22:20 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05769-10 for ; Fri, 9 Jun 2006 12:22:18 -0400 (EDT) Received: from brmea-mail-2.sun.com (brmea-mail-2.Sun.COM [192.18.98.43]) by menubar.gnome.org (Postfix) with ESMTP id 220193B0112 for ; Fri, 9 Jun 2006 12:22:17 -0400 (EDT) Received: from fe-amer-04.sun.com ([192.18.108.178]) by brmea-mail-2.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k59GMHje022696 for ; Fri, 9 Jun 2006 10:22:17 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0L00601PDSJP00@mail-amer.sun.com> (original mail from Rich.Burridge@Sun.COM) for gnome-announce-list@gnome.org; Fri, 09 Jun 2006 10:22:17 -0600 (MDT) Received: from [192.168.1.102] (c-71-202-99-109.hsd1.ca.comcast.net [71.202.99.109]) by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0L000IIPH4FY20@mail-amer.sun.com> for gnome-announce-list@gnome.org; Fri, 09 Jun 2006 10:22:17 -0600 (MDT) Date: Fri, 09 Jun 2006 09:21:43 -0700 From: Rich Burridge Sender: Rich.Burridge@Sun.COM To: gnome-announce-list@gnome.org Message-id: <4489A017.2030903@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5 (X11/20060327) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.598 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.598 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 16:30:37 -0400 Subject: [ANNOUNCE: gcalctool v5.8.16 [hopefully stable] X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jun 2006 16:22:20 -0000 Sorry, that should have been gcalctool 5.8.16 (not 5.8.13). -------- Original Message -------- Subject: ANNOUNCE: gcalctool v5.8.16 [hopefully stable] Date: Fri, 09 Jun 2006 06:59:21 -0700 From: Rich Burridge To: gnome-announce-list@gnome.org Gcalctool is the default GNOME desktop calculator. It has Basic, Advanced, Financial and Scientific modes. Internally it uses multiple precision arithmetic to produce results to a high degree of accuracy. This (hopefully stable) release is for GNOME 2.15.3. Changes since the last gcalctool version (5.8.13). * From Sami Pietila - Fixed bug #343150. Gcalctool no longer crashes when switching to scientific mode. * Adjusted configure.in so that gcalctool now requires intltool v0.35.0. Updated Translations (thankyou!) Pema Geyleg - dz.po: Updated Dzongkha translation. Vincent van Adrighem - nl.po: Translation updated by Tino Meinen. Clytie Siddall - vi.po: Updated Vietnamese translation. Theppitak Karoonboonyanan - th.po: Updated Thai translation. Miloslav Trmac - cs.po: Updated Czech translation. Raphael Higino - pt_BR.po: Updated Brazilian Portuguese translation. Ignacio Casal Quinteiro - gl.po: Updated Galician Translation. You can download this new version from: http://ftp.gnome.org/pub/GNOME/sources/gcalctool/5.8/ _______________________________________________ gnome-announce-list mailing list gnome-announce-list@gnome.org http://mail.gnome.org/mailman/listinfo/gnome-announce-list From lucasr.at.mundo@gmail.com Sat Jun 10 15:18:25 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BFE893B0355 for ; Sat, 10 Jun 2006 15:18:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22270-07 for ; Sat, 10 Jun 2006 15:18:19 -0400 (EDT) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.225]) by menubar.gnome.org (Postfix) with ESMTP id 497F63B00D0 for ; Sat, 10 Jun 2006 15:18:16 -0400 (EDT) Received: by wr-out-0506.google.com with SMTP id i12so1072899wra for ; Sat, 10 Jun 2006 12:18:15 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=Az6w6MZB4nAyrTPN/c1dBiy1QeZ3eP7h8u4jteTnJO41JONOrr+vLcaDgMaoq4CGUsTFL9SOAi4mYQa1U/quNPHKz5w9wCTni0PKnnsN+iZD4toNQ2U72zqyiU0cW7CuR3V4pUG+hJ2fX18MkuKthXuw+tWs50Y+gO+yiE+erPs= Received: by 10.54.128.19 with SMTP id a19mr2963077wrd; Sat, 10 Jun 2006 12:18:15 -0700 (PDT) Received: by 10.54.93.4 with HTTP; Sat, 10 Jun 2006 12:18:15 -0700 (PDT) Message-ID: <31a62e6f0606101218v6e0f8de0rec084fa7f081f2bc@mail.gmail.com> Date: Sat, 10 Jun 2006 16:18:15 -0300 From: "Lucas Rocha" To: gnome-announce-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.525 tagged_above=-999 required=2 tests=[AWL=0.075, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.525 X-Spam-Level: X-Mailman-Approved-At: Sat, 10 Jun 2006 15:24:41 -0400 Subject: Eye of GNOME 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Jun 2006 19:18:25 -0000 Hi all, * What is it ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Eye of GNOME (eog) is the image viewer for the GNOME desktop. * What's changed in 2.15.3 ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D - Properly sort image filenames containing numbers (Felix Riemann) [#340957= ] - Thumbnailing fixes (Felix Riemann) [#342817] - Fix printing for images with alpha channel (Jan K=FCmmel) [#322057] - Updated translations: Ignacio Casal Quinteiro (gl), Ankit Patel (gu), Theppitak Karoonboonyanan (th), Clytie Siddall (vi), Inaki Larra=F1aga (e= u), Pema Geyleg (dz), Francisco Javier F. Serrador (es) * Where can I get it ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Source code: http://ftp.gnome.org/pub/GNOME/sources/eog/2.15/eog-2.15.3.tar.gz md5sums: 1e39941d5327a28f0b3e88dfc6d5d2d0 http://ftp.gnome.org/pub/GNOME/sources/eog/2.15/eog-2.15.3.tar.bz2 md5sums: 29a9768a41dce2823e93c8de60b638e3 Enjoy! --lucasr From nudrema@gmail.com Sun Jun 11 07:21:01 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1905C3B057C; Sun, 11 Jun 2006 07:21:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06331-08; Sun, 11 Jun 2006 07:20:58 -0400 (EDT) Received: from swip.net (mailfe01.swip.net [212.247.154.1]) by menubar.gnome.org (Postfix) with ESMTP id EA99F3B0318; Sun, 11 Jun 2006 07:20:57 -0400 (EDT) X-T2-Posting-ID: Ee7YIbSG3O5rNcT4cGADretWTWrDEjpwS9FwzyhFhzk= X-Cloudmark-Score: 0.000000 [] Received: from [83.182.30.172] (HELO [10.0.0.13]) by mailfe01.swip.net (CommuniGate Pro SMTP 5.0.8) with ESMTP id 192388062; Sun, 11 Jun 2006 13:20:20 +0200 Message-ID: <448BFC72.5000804@gmail.com> Date: Sun, 11 Jun 2006 13:20:18 +0200 From: =?ISO-8859-1?Q?Steve_Fr=E9cinaux?= User-Agent: Thunderbird 1.5.0.2 (X11/20060522) MIME-Version: 1.0 To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.966 tagged_above=-999 required=2 tests=[AWL=-0.436, BAYES_00=-2.599, SPF_NEUTRAL=1.069] X-Spam-Score: -1.966 X-Spam-Level: X-Mailman-Approved-At: Sun, 11 Jun 2006 07:32:46 -0400 Cc: gedit-list Subject: ANNOUNCE: gedit-plugins 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 11:21:01 -0000 Hi all, gedit-plugins 2.15.3 is available. gedit-plugins is a set of (hopefuly useful) plugins for the GNOME text editor, gedit. homepage: http://live.gnome.org/GeditPlugins * Changes in 2.15.3 ==================== New features and fixes: - Autotools fixes (Jesse van den Kieboom, Steve Frcinaux) - Terminal now uses gnome-terminal default profile (Steve Frcinaux) - New Smart Spaces unindent plugin (Steve Frcinaux) - various fixes New and updated translations: - cs (Jakub Friedl) - pt_BR (Raphael Higino) * Download =========== http://ftp.gnome.org/pub/GNOME/sources/gedit-plugins/2.15/gedit-plugins-2.15.3.tar.gz md5sums: 1d7c70969fbd60b466e00f3295bced59 http://ftp.gnome.org/pub/GNOME/sources/gedit-plugins/2.15/gedit-plugins-2.15.3.tar.bz2 md5sums: 4182e0b3b522cb35e5348ce00c8aaa1d * Development ============== Don't hesitate to have a talk with the gedit team on #gedit on irc.gnome.org if you want to give gedit-plugins some of the love it needs :-) -- Steve http://tw.apinc.org From martyn@imendio.com Sun Jun 11 17:10:48 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1F0903B013F for ; Sun, 11 Jun 2006 17:10:48 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02407-03 for ; Sun, 11 Jun 2006 17:10:46 -0400 (EDT) Received: from holken.mikan.net (holken.mikan.net [83.145.56.183]) by menubar.gnome.org (Postfix) with ESMTP id A284B3B066D for ; Sun, 11 Jun 2006 17:10:45 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by holken.mikan.net (Postfix) with ESMTP id 30EA033525E; Sun, 11 Jun 2006 22:49:14 +0200 (CEST) Received: from holken.mikan.net ([127.0.0.1]) by localhost (holken.mikan.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03671-03; Sun, 11 Jun 2006 22:49:09 +0200 (CEST) Received: from [192.168.0.2] (host86-135-75-230.range86-135.btcentralplus.com [86.135.75.230]) by holken.mikan.net (Postfix) with ESMTP id 716673352A4; Sun, 11 Jun 2006 22:49:09 +0200 (CEST) From: Martyn Russell To: gnome-announce-list@gnome.org Content-Type: text/plain Organization: Imendio Date: Sun, 11 Jun 2006 21:49:40 +0100 Message-Id: <1150058980.30411.5.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at holken.mikan.net X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.586 tagged_above=-999 required=2 tests=[AWL=0.013, BAYES_00=-2.599] X-Spam-Score: -2.586 X-Spam-Level: X-Mailman-Approved-At: Sun, 11 Jun 2006 17:36:08 -0400 Cc: gossip-dev@lists.imendio.com Subject: ANNOUNCE: Gossip 0.11.2 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 21:10:48 -0000 Gossip 0.11.1 is now available for download from: http://download.gnome.org/sources/gossip/0.11/ What is Gossip ============== Gossip is an instant messaging client for GNOME with an easy-to-use interface, providing users of the GNOME Desktop with a friendly way to keep in touch with their friends. What's new in Gossip 0.11.2 =========================== - Added avatars to the chat window (Martyn). - Cleaned up the preferences and some of the gconf keys have changed, this means some of your preferences might need resetting (Martyn). - Added a preference for showing avatars (Martyn). - Added a preference to disable the contact online notifications (Martyn). - Stop flashing the task list a while after new messages arrive (Richard). Bugs Fixed ========== - Fixed #342928, Show subscription requests in the roster instead of JUST the notification tray which isn't ideal for people without one (Martyn). - Fixed #343375, Make sure we follow the XMPP spec for RFC 3921 with regards to adding and removing contacts. Subscription was broken somehow since 0.10 (Jonatan Magnusson). - Fixed #339285, Move to new LINGUAS method (patch by Przemyslaw Grzegorczyk). - Fixed #339679, Use case insensitive search in the logs (Richard). - Fixed #343511, Support scroll events in the presence chooser (Richard). - Fixed #331773, Ask for confirmation before clearing the list (Richard). - Fixed #344438, Set mnemonic target for the theme combo (Richard). Updated Translations ==================== Jordi Mallach (ca) Richard Hult (sv) Wouter Bolsterlee (nl) More information: ================= The Gossip project page: http://developer.imendio.com/wiki/Gossip If you want to subscribe to just announcements of Gossip you can join the announcement list here: http://lists.imendio.com/mailman/listinfo/announce 11 June 2006 Gossip Team From hughsient@gmail.com Sun Jun 11 16:10:31 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 029C73B0422 for ; Sun, 11 Jun 2006 16:10:31 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31984-01 for ; Sun, 11 Jun 2006 16:10:28 -0400 (EDT) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.168]) by menubar.gnome.org (Postfix) with ESMTP id 034F83B02CC for ; Sun, 11 Jun 2006 16:10:27 -0400 (EDT) Received: by ug-out-1314.google.com with SMTP id k3so2123698ugf for ; Sun, 11 Jun 2006 13:10:03 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:subject:from:reply-to:to:cc:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; b=HRcsTP79snnDu6H8ZeGN3Q6/nt35smFKdHMw9SBcLONZCQ2eVs5l1vjT5nHY94RPJ1RJsNuEcmy+rT+Dk1FOFWvHutu5HWk50bzy6X376OZom5F33NDNaFDr5szRY8Y870/jaEpj2C+0bC4v382GnYa1nd0EcgVRgkGSV9++cCA= Received: by 10.66.216.20 with SMTP id o20mr4467611ugg; Sun, 11 Jun 2006 13:02:54 -0700 (PDT) Received: from ?10.0.0.14? ( [86.132.112.248]) by mx.gmail.com with ESMTP id e1sm5926698ugf.2006.06.11.13.02.53; Sun, 11 Jun 2006 13:02:53 -0700 (PDT) From: Richard Hughes To: GnomePowerManager List Content-Type: text/plain; charset=UTF-8 Date: Sun, 11 Jun 2006 21:02:29 +0100 Message-Id: <1150056149.3896.9.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 (2.6.2-1.fc5.5) Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.705 tagged_above=-999 required=2 tests=[AWL=-0.663, BAYES_00=-2.599, RCVD_IN_BL_SPAMCOP_NET=1.558, SPF_PASS=-0.001] X-Spam-Score: -1.705 X-Spam-Level: X-Mailman-Approved-At: Sun, 11 Jun 2006 17:36:20 -0400 Cc: GNOME-Announce List , GNOME TranslationProject Subject: GNOME Power Manager 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: richard@hughsie.com List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 20:10:31 -0000 GNOME Power Manager is a session daemon for the GNOME desktop environment that makes it easy to manage the power on your laptop or desktop system. Download at the usual place : http://ftp.gnome.org/pub/GNOME/sources/gnome-power-manager/2.15/ ============== Version 2.15.3 ============== Released June 11, 2006 General - Depend on intltool 0.35.0 to build - Grammar fixes in the schema and glade file (Clytie Siddall) - Add in XFCE option so we display in the XFCE menu. lp:43077 - Use GtkStatusIcon when GTK version >= 2.9.0 (Jaap Haitsma) - Add in new docbook documentation about the dbus interface. - Rename and add a few DBUS methods from feedback on XDG list. Power Manager - Actually show the correct levels in the pixmaps for the mouse and keyboard. - Add a gconf key so we can disable the action for when the lid is previously shut and the AC power removed at a later time as this was causing confusion. - Limit the capacity to 100% - Undim the screen when we have to unlock returning from resume. #333290 - Rework the brightness handling so that we only have one way of doing the transitions. This simplifies things greatly. #341616 - Update for gnome-screensaver API changes. #344103 Power Preferences - Add the configurable action for power button press in the UI. #344325. Power Info - Set the correct colours of the line depending on discharging/charging status. #338175. Translators - Theppitak Karoonboonyanan & Roys Hengwatanakul (Thai) - Wouter Bolsterlee (Netherlands) - Clytie Siddall (Vietnamese) - Funda Wang (Simplified Chinese) - ivind Hoel (Norwegian bokml) - Francisco Javier F. Serrador (Spanish) - Raphael Higino (Brazilian Portuguese) From gjc@inescporto.pt Sun Jun 11 18:14:06 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F035C3B0137 for ; Sun, 11 Jun 2006 18:14:05 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05363-03 for ; Sun, 11 Jun 2006 18:14:04 -0400 (EDT) Received: from animal.inescn.pt (correio.inescn.pt [194.117.24.9]) by menubar.gnome.org (Postfix) with ESMTP id 82AD43B02F9 for ; Sun, 11 Jun 2006 18:14:03 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by animal.inescn.pt (8.13.6/8.13.6/7) with ESMTP id k5BMCqqs022474; Sun, 11 Jun 2006 23:12:52 +0100 (WEST) Received: from pong.inescporto.pt (pong.inescn.pt [194.117.26.74]) by animal.inescn.pt (8.13.6/8.13.6/5) with ESMTP id k5BMCZ29022454; Sun, 11 Jun 2006 23:12:35 +0100 (WEST) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by pong.inescporto.pt (Postfix) with ESMTP id DB83A119191; Sun, 11 Jun 2006 23:09:37 +0100 (WEST) From: "Gustavo J. A. M. Carneiro" To: gnome-announce-list@gnome.org Content-Type: text/plain Date: Sun, 11 Jun 2006 23:12:34 +0100 Message-Id: <1150063954.5758.0.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at inescporto.pt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.394 tagged_above=-999 required=2 tests=[AWL=-0.006, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001, TW_EV=0.077] X-Spam-Score: -2.394 X-Spam-Level: X-Mailman-Approved-At: Sun, 11 Jun 2006 18:37:01 -0400 Cc: PyGTK List Subject: ANNOUNCE: GnomePython 2.15.2 (unstable) X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 22:14:06 -0000 GnomePython 2.15.2 has been just released. This is a unstable release for testing purposes. GnomePython provides python interfacing modules for most of the GNOME Developer Platform libraries (except those already wrapped somewhere else.) Currently the list of provided python modules includes: - gnome, gnome.ui - gnomecanvas - gnomevfs - gconf - bonobo, bonobo.activation, bonobo.ui Overview of Changes from gnome-python 2.15.1 to gnome-python 2.15.2 =================================================================== * gnomevfs - Fix FileInfo.valid_fields computation (Sidnei da Silva) - Add some missing permission constants (Sidnei) - Add new FileInfo.access field (Gustavo) - Add sync variant of "file control" method (Gustavo) * gnome - gnome.program_init changes process name on Linux with prctl (Gustavo) The source tarball can be found here: http://ftp.gnome.org/pub/GNOME/sources/gnome-python/2.15/ Please file bug reports (bugs, missing APIs) here: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-python -- Gustavo J. A. M. Carneiro The universe is always one step beyond logic From William.Walker@Sun.COM Sun Jun 11 19:53:33 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C98A93B00BC; Sun, 11 Jun 2006 19:53:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09467-02; Sun, 11 Jun 2006 19:53:31 -0400 (EDT) Received: from brmea-mail-4.sun.com (brmea-mail-4.Sun.COM [192.18.98.36]) by menubar.gnome.org (Postfix) with ESMTP id 656553B00B7; Sun, 11 Jun 2006 19:53:31 -0400 (EDT) Received: from fe-amer-06.sun.com ([192.18.108.180]) by brmea-mail-4.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k5BNqQ6B020577; Sun, 11 Jun 2006 17:52:26 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0P00M01Y1KY900@mail-amer.sun.com> (original mail from William.Walker@Sun.COM); Sun, 11 Jun 2006 17:52:26 -0600 (MDT) Received: from [192.168.1.105] ([68.116.197.173]) by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0P0097BZN5LTZ1@mail-amer.sun.com>; Sun, 11 Jun 2006 17:52:26 -0600 (MDT) Date: Sun, 11 Jun 2006 19:52:16 -0400 From: Willie Walker Sender: William.Walker@Sun.COM To: orca-list@gnome.org, gnome-announce-list@gnome.org, gnome-accessibility-list@gnome.org Message-id: <1150069937.5071.4.camel@localhost> MIME-version: 1.0 X-Mailer: Evolution 2.6.1 Content-type: text/plain; charset=UTF-8 Content-transfer-encoding: 8BIT X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.587 tagged_above=-999 required=2 tests=[AWL=0.011, BAYES_00=-2.599, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.587 X-Spam-Level: X-Mailman-Approved-At: Mon, 12 Jun 2006 03:22:46 -0400 Cc: Subject: Announcing Orca 0.2.5 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 23:53:34 -0000 ================ * What is Orca ? ================ Orca is a scriptable screen reader for the GNOME desktop for people with visual impairments. ================== * What's changed ? ================== We've done a lot of work on Orca since the last release in both the new functionality and quality/stability departments. We thank all of our users that are providing feedback on gnome-list@gnome.org (see http://mail.gnome.org/mailman/listinfo/orca-list) as well as http://bugzilla.gnome.org. We value all of your feedback and help. We also appreciate contributions from community members, including Al Puzzuoli who is doing a great job helping with the Orca Wiki at http://live.gnome.org/Orca and Francisco Javier Dorado Martnez who has been testing and providing patches. Thank you all! ================== Orca 0.2.5 Changes ================== * Re-map keyboard bindings and add additional keyboard bindings. See http://live.gnome.org/Orca/KeyboardCommands for the list. * Improvements to StarOffice support to provide better access to text documents and spreadsheets. Also get rid of spurious "0.00" text that was showing up in braille for StarOffice buttons. * Addition of announcing text selection as it is selected and unselected. * Generalize the "read table cell row" functionality. If you press Insert+F11, it will toggle the feature to read the entire row of a table or just the selected table cell when you move from row to row. * Improved support for SayAll of text objects (SayAll for flat review is still on the to do list). * Addition of self-voicing module to tell Orca to be quiet when a self-voicing application is present. * Addition of ability to turn Orca into a speech server that can accessed via simple HTTP commands (default port is 20433, but this is customizable via orca.settings.speechServerPort). This will allow self-voicing applications to use Orca for their speech, thus letting them get the user's speech settings preferences. * Addition of orca.settings.enableBrailleGrouping (default=False). NOTE: this represents a change in the UI for Orca - the behavior to date has been to always group menu items on the braille display. The system responsiveness was bad for large menus, however, so we decided to make this an optional feature turned off by default. * Addition of utility to report information on the currently active script. This is primarily for helping script writers do debugging and is accessed by pressing Insert+F3. * Addition of orca.settings.cacheAccessibles (default=True) as a means to turn the local caching of accessible objects on or off. This is primarily an Orca developer debugging feature. * Fix for bug 344218 - gnome-terminal would not be presented properly if it was started after Orca. * Fix for bug 343666: pressing buttons on braille displays could cause a hang. * Partial fix for bug 342022 - provide some defensive mechanisms to help prevent some hangs. * Fix for bug 343133 - do not hang when doing a flat-review of a man page in gnome-terminal. * Fix for bug #343013 - the command line option strings should not be translatable. * Partial fix for bug 319652 - become a better Python thread citizen to help reduce hangs. * Fix for bug 342303 - stop speech when the user presses the mouse button. * Fix for bug 342122 - use all labels for an objecty when presenting an object. * Fix for bug 342133 - do not read all labels in gnome-window-properties application when it appears. * Fix for bug 341415 - when moving between workspaces with metacity, eliminate redundant output and alsomake sure workspace names are announced. * Refactor of various modules to move script writing utilities into util.py. * More fleshing out of the test plan. ====================== * Where can I get it ? ====================== Source code: http://ftp.gnome.org/pub/GNOME/sources/orca/0.2/orca-0.2.5.tar.gz Enjoy. Will, Mike, Rich, Lynn, and the Orca community From callum@spooky-possum.org Mon Jun 12 02:05:21 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 06D8C3B000D; Mon, 12 Jun 2006 02:05:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21232-04; Mon, 12 Jun 2006 02:05:19 -0400 (EDT) Received: from genamics.blastula.net (dns1.blastula.net [64.92.214.155]) by menubar.gnome.org (Postfix) with ESMTP id 4C4D83B00D4; Mon, 12 Jun 2006 02:05:19 -0400 (EDT) Received: from [60.234.103.60] (helo=[60.234.103.60]) by genamics.blastula.net with esmtpa (Exim 4.52) id 1FpfWT-0001Yo-NG; Mon, 12 Jun 2006 18:03:39 +1200 From: Callum McKenzie To: games-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Date: Mon, 12 Jun 2006 18:03:05 +1200 Message-Id: <1150092185.10939.21.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Antivirus-Scanner: Clean mail though you should still use an Antivirus X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - genamics.blastula.net X-AntiAbuse: Original Domain - gnome.org X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [47 12] X-AntiAbuse: Sender Address Domain - spooky-possum.org X-Source: X-Source-Args: X-Source-Dir: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.538 tagged_above=-999 required=2 tests=[AWL=0.061, BAYES_00=-2.599] X-Spam-Score: -2.538 X-Spam-Level: X-Mailman-Approved-At: Mon, 12 Jun 2006 03:23:07 -0400 Cc: Subject: gnome-games 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: callum@spooky-possum.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 06:05:21 -0000 gnome-games 2.15.3 ================== This development release of gnome-games is a little short on new content since we are in the process of changing maintainers and not everything is organised yet. Things that have changed: General: - High scores: the file is truncated properly if you use a short name. This stops you getting a top-ten score with 11th-place. - Require the latest intltool. Aisleriot - Radio-buttons for Klondike options work now. There are new choices for how you want your cards dealt in Klondike. - Explicitly protect the cards from garbage collection. This is should fix bug #342038, but doesn't actually seem to work. Robots: - Really, really, fix the desktop icon name this time (I hope). As usual, get it from: http://download.gnome.org/sources/gnome-games/2.15/ - Callum From gjc@inescporto.pt Sun Jun 11 18:38:11 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E31903B0350 for ; Sun, 11 Jun 2006 18:38:10 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06171-08 for ; Sun, 11 Jun 2006 18:38:08 -0400 (EDT) Received: from animal.inescn.pt (correio.inescn.pt [194.117.24.9]) by menubar.gnome.org (Postfix) with ESMTP id D88DC3B025D for ; Sun, 11 Jun 2006 18:38:07 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by animal.inescn.pt (8.13.6/8.13.6/7) with ESMTP id k5BMau8H023824; Sun, 11 Jun 2006 23:36:56 +0100 (WEST) Received: from pong.inescporto.pt (pong.inescn.pt [194.117.26.74]) by animal.inescn.pt (8.13.6/8.13.6/5) with ESMTP id k5BMaf3c023811; Sun, 11 Jun 2006 23:36:41 +0100 (WEST) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by pong.inescporto.pt (Postfix) with ESMTP id CC3E1119191; Sun, 11 Jun 2006 23:33:43 +0100 (WEST) From: "Gustavo J. A. M. Carneiro" To: PyGTK Content-Type: text/plain Date: Sun, 11 Jun 2006 23:36:40 +0100 Message-Id: <1150065400.5758.3.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at inescporto.pt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.39 tagged_above=-999 required=2 tests=[AWL=-0.002, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: -2.39 X-Spam-Level: X-Mailman-Approved-At: Mon, 12 Jun 2006 03:23:25 -0400 Cc: gnome-announce-list@gnome.org Subject: ANNOUNCE: GnomePythonDesktop 2.15.3 (unstable) X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 22:38:11 -0000 GnomePythonDesktop 2.15.3 has been just released. This is a unstable release for testing purposes. GnomePythonDesktop provides python interfacing modules for some GNOME libraries part of the GNOME Desktop. The following Python modules are included: - gnomeapplet - gnomeprint, gnomeprint.ui - gtksourceview - wnck - totem.plparser - gtop - nautilusburn - mediaprofiles - metacity - rsvg - gnomekeyring - gnomedesktop Overview of Changes from 2.15.2 to 2.15.3 ============================================================================== * gnomekeyring - Improve API (throw exceptions instead of returning error codes) (Gustavo) - Add an example (Gustavo) * metacity - Update to new C API (Frederic Peters) - Wrap wnck_window_get_geometry() (Magnus Therning) * nautilusburn - Update to new improved C API (Python API is not preserved) (Gustavo) The source tarball can be found here: http://ftp.gnome.org/pub/GNOME/sources/gnome-python-desktop/2.15/ Please file bug reports (bugs, missing APIs) here: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-python-desktop Happy testing! -- Gustavo J. A. M. Carneiro The universe is always one step beyond logic. From gjc@inescporto.pt Sun Jun 11 19:00:35 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 48BC73B0253; Sun, 11 Jun 2006 19:00:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07173-08; Sun, 11 Jun 2006 19:00:34 -0400 (EDT) Received: from animal.inescn.pt (correio.inescn.pt [194.117.24.9]) by menubar.gnome.org (Postfix) with ESMTP id 6D4C93B014F; Sun, 11 Jun 2006 19:00:33 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by animal.inescn.pt (8.13.6/8.13.6/7) with ESMTP id k5BMxkXt025129; Sun, 11 Jun 2006 23:59:46 +0100 (WEST) Received: from pong.inescporto.pt (pong.inescn.pt [194.117.26.74]) by animal.inescn.pt (8.13.6/8.13.6/5) with ESMTP id k5BMxSnQ025107; Sun, 11 Jun 2006 23:59:28 +0100 (WEST) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by pong.inescporto.pt (Postfix) with ESMTP id 08E1F119191; Sun, 11 Jun 2006 23:56:31 +0100 (WEST) From: "Gustavo J. A. M. Carneiro" To: gnome-announce-list@gnome.org Content-Type: text/plain Date: Sun, 11 Jun 2006 23:59:27 +0100 Message-Id: <1150066767.5758.5.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at inescporto.pt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.427 tagged_above=-999 required=2 tests=[AWL=0.038, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.427 X-Spam-Level: X-Mailman-Approved-At: Mon, 12 Jun 2006 03:23:49 -0400 Cc: orbit-list@gnome.org, PyGTK List Subject: ANNOUNCE: PyORBit 2.14.1 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 23:00:36 -0000 "PyORBit is a Python binding for the ORBit2 CORBA ORB. It was developped to suit the needs of the bonobo bindings in GNOME-Python, but is usable for other purposes as well. It aims to follow the standard Python language mapping for CORBA. It can generate stubs at runtime from typelibs, IDL files, or by introspecting remote objects using ORBit2's IModule typelib capabilities." The source tarball can be found here: http://ftp.gnome.org/pub/GNOME/sources/pyorbit/2.13/ Please file bug reports (bugs, missing APIs) here: http://bugzilla.gnome.org/enter_bug.cgi?product=pyorbit Changes from 2.14.0 to 2.14.1: - Fix build problem on cygwin - Fix segmentation fault on orb.shutdown() - Make it work on Python 2.5 and 64-bit platforms -- Gustavo J. A. M. Carneiro The universe is always one step beyond logic From mclasen@redhat.com Mon Jun 12 12:04:32 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 41C3B3B000C; Mon, 12 Jun 2006 12:04:32 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09149-04; Mon, 12 Jun 2006 12:04:29 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 7270D3B009D; Mon, 12 Jun 2006 12:04:29 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5CG3bc9030255; Mon, 12 Jun 2006 12:03:37 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [172.16.76.12]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5CG3bc3007778; Mon, 12 Jun 2006 12:03:37 -0400 Received: from golem.boston.redhat.com (golem.boston.redhat.com [172.16.80.24]) by mail.boston.redhat.com (8.12.8/8.12.8) with ESMTP id k5CG3blQ018463; Mon, 12 Jun 2006 12:03:37 -0400 From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain Date: Mon, 12 Jun 2006 12:03:36 -0400 Message-Id: <1150128216.15532.14.camel@golem.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.1 (2.7.1-1) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.426 tagged_above=-999 required=2 tests=[AWL=-0.056, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_LQ=0.077, TW_RX=0.077, TW_TR=0.077] X-Spam-Score: -2.426 X-Spam-Level: Cc: Subject: GLib 2.11.3 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 16:04:32 -0000 GLib 2.11.3 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.11/ http://ftp.gnome.org/pub/GNOME/sources/glib/2.11/ glib-2.11.3.tar.bz2 md5sum: 41931c4965f7e1848f81b800914905cd glib-2.11.3.tar.gz md5sum: cd78ebc535e29cdef0fed9487aa21dac This is a development release leading up to GLib 2.12. Notes: * This is unstable development release. While it has had a bit of testing, there are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GLib 2.10. If you have problems, you'll need to reinstall GLib 2.10. * GLib 2.12 will be source and binary compatible with the GLib 2.10.x series (for some caveats, see the README). At this point, the API additions in the 2.11.x series are almost finished. * Bugs should be reported to http://bugzilla.gnome.org. About GLib ========== GLib is the low-level core library that forms the basis for projects such as GTK+ and GNOME. It provides data structure handling for C, portability wrappers, and interfaces for such runtime functionality as an event loop, threads, dynamic loading, and an object system. More information about GLib is available at: http://www.gtk.org/ An installation guide for the GTK+ libraries, including GLib, can be found at: http://developer.gnome.org/doc/API/2.0/gtk/gtk-building.html Overview of Changes from GLib 2.11.2 to GLib 2.11.3 =================================================== * GBookmarkFile: - g_bookmark_file_move_item: Return TRUE in case of an empty target * Bugs fixed: 343919 gunicollate.c: strxfrm bug on VC8 * Updated translations (fi) A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=343919 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Emmanuele Bassi, Kazuki Iwamoto, Tor Lillqvist Matthias Clasen June 12, 2006 From Brian.Cameron@Sun.COM Mon Jun 12 14:30:32 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4CFFC3B0010; Mon, 12 Jun 2006 14:30:32 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24480-06; Mon, 12 Jun 2006 14:30:31 -0400 (EDT) Received: from brmea-mail-3.sun.com (brmea-mail-3.Sun.COM [192.18.98.34]) by menubar.gnome.org (Postfix) with ESMTP id F1D1A3B0078; Mon, 12 Jun 2006 14:30:30 -0400 (EDT) Received: from fe-amer-01.sun.com ([192.18.108.175]) by brmea-mail-3.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k5CITqhn016383; Mon, 12 Jun 2006 12:29:52 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0R00001F5FBN00@mail-amer.sun.com> (original mail from Brian.Cameron@Sun.COM); Mon, 12 Jun 2006 12:29:52 -0600 (MDT) Received: from [192.168.0.20] ([206.135.142.194]) by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0R002PJFDNG7X0@mail-amer.sun.com>; Mon, 12 Jun 2006 12:29:52 -0600 (MDT) Date: Mon, 12 Jun 2006 13:29:49 -0500 From: Brian Cameron Sender: Brian.Cameron@Sun.COM To: gnome-announce-list@gnome.org, gdm-list@gnome.org Message-id: <448DB29D.9020208@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5.0.2 (X11/20060515) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.444 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, TW_GD=0.077, TW_PM=0.077, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.444 X-Spam-Level: Cc: Subject: GDM2 2.15.5 (unstable), the "Caraboy" Release X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 18:30:32 -0000 AOOH-GAH -------- (If you have no clue what gdm is, skip a few paragraphs down first) The 2.15.5 release is an unstable release of GDM with the following new features. - Correction to autologin PAM service name so automatic login works. (Brian Cameron) - Fix compiler warnings that were causing core dumping issues on some platforms (Brian Cameron) - Translation updates (Josep Puigdemont Casamaj\303\263, Changwoo Ryu) Note that this also contains an important security fix that was originally released in 2.15.4, so please make sure to update if using an older version than 2.15.4. - Correction for serious security issue where the user can enter the GDM configuration GUI with a user password when the Face Browser is enabled. Refer to bugzilla.gnome.org bug #343476 (Brian Cameron) This issue impacts all versions of GDM 2.8.0.0-2.8.0.7, 2.14.0-2.14.7, and 2.15.0-2.15.3. This issue was reported to vendor-sec one week ago and has ID #CVE-2006-2452. Note: GDM2 was originally written by Martin K. Petersen . Much work has been done on GDM2 by George Lebl, and Brian Cameron currently shares maintainership duties with the Queen of England. Note2: If installing from the tarball do note that make install overwrites most of the setup files, all except gdm.conf. It will however save backups with the .orig extension first. #ifndef GDM_DISABLE_DEPRECATED Note3: Note3 has been depracated ... #endif /* GDM_DISABLE_DEPRECATED */ Downloading: ============ Online Documentation - http://www.gnome.org/projects/gdm/ Latest Stable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.14/ Latest Unstable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.15/ No RPM this time around BTW. Have fun. A spec file is included though, so you can try: rpmbuild -ta gdm-whatever.tar.gz Have fun, Brian From Brian.Cameron@Sun.COM Mon Jun 12 15:08:35 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 715123B034C; Mon, 12 Jun 2006 15:08:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26412-02; Mon, 12 Jun 2006 15:08:32 -0400 (EDT) Received: from brmea-mail-1.sun.com (brmea-mail-1.Sun.COM [192.18.98.31]) by menubar.gnome.org (Postfix) with ESMTP id 99D443B025E; Mon, 12 Jun 2006 15:08:32 -0400 (EDT) Received: from fe-amer-05.sun.com ([192.18.108.179]) by brmea-mail-1.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k5CJ7bEh002523; Mon, 12 Jun 2006 13:07:37 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0R00501GXLIW00@mail-amer.sun.com> (original mail from Brian.Cameron@Sun.COM); Mon, 12 Jun 2006 13:07:37 -0600 (MDT) Received: from [192.168.0.20] ([206.135.142.194]) by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0R00A6NH4LVTH0@mail-amer.sun.com>; Mon, 12 Jun 2006 13:07:37 -0600 (MDT) Date: Mon, 12 Jun 2006 14:07:35 -0500 From: Brian Cameron Sender: Brian.Cameron@Sun.COM To: gnome-announce-list@gnome.org, gdm-list@gnome.org Message-id: <448DBB77.9000608@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5.0.2 (X11/20060515) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.444 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, TW_GD=0.077, TW_PM=0.077, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.444 X-Spam-Level: Cc: Subject: GDM2 2.14.9 (stable), the "Lincoln Park" Release X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 19:08:35 -0000 AOOH-GAH -------- (If you have no clue what gdm is, skip a few paragraphs down first) The 2.14.9 release is a stable release of GDM with the following new features. - Correction to autologin PAM service name so automatic login works. (Brian Cameron) - Fix compiler warnings that were causing core dumping issues on some platforms (Brian Cameron) - Translation updates (Josep Puigdemont Casamaj\303\263) Note: GDM2 was originally written by Martin K. Petersen . Much work has been done on GDM2 by George Lebl, and Brian Cameron currently shares maintainership duties with the Queen of England. Note2: If installing from the tarball do note that make install overwrites most of the setup files, all except gdm.conf. It will however save backups with the .orig extension first. #ifndef GDM_DISABLE_DEPRECATED Note3: Note3 has been depracated ... #endif /* GDM_DISABLE_DEPRECATED */ Downloading: ============ Online Documentation - http://www.gnome.org/projects/gdm/ Latest Stable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.14/ Latest Unstable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.15/ No RPM this time around BTW. Have fun. A spec file is included though, so you can try: rpmbuild -ta gdm-whatever.tar.gz Have fun, Brian From mclasen@redhat.com Mon Jun 12 15:43:04 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 851123B00E5; Mon, 12 Jun 2006 15:43:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27729-06; Mon, 12 Jun 2006 15:43:02 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 5B16F3B0010; Mon, 12 Jun 2006 15:43:02 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5CJZWav007572; Mon, 12 Jun 2006 15:35:32 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [172.16.76.12]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5CJZWUd001833; Mon, 12 Jun 2006 15:35:32 -0400 Received: from golem.boston.redhat.com (golem.boston.redhat.com [172.16.80.24]) by mail.boston.redhat.com (8.12.8/8.12.8) with ESMTP id k5CJZWlQ009694; Mon, 12 Jun 2006 15:35:32 -0400 From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain Date: Mon, 12 Jun 2006 15:35:31 -0400 Message-Id: <1150140931.15532.18.camel@golem.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.1 (2.7.1-1) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.541 tagged_above=-999 required=2 tests=[AWL=0.060, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.541 X-Spam-Level: Cc: Subject: GTK+ 2.8.19 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 19:43:04 -0000 GTK+ 2.8.19 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.8/ http://ftp.gnome.org/pub/GNOME/sources/gtk+/2.8/ gtk+-2.8.19.tar.bz2 md5sum: 1a03dbed4b794194a610e9d7eb175b06 gtk+-2.8.19.tar.gz md5sum: 604d3263498994c58af378f0ec076e6f This is a bugfix release in the 2.8.x series. It fixes a rare memory corruption issue when using the deprecated GdkFont API. What is GTK+ ============ 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.8 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/ Overview of Changes from GTK+ 2.8.18 to GTK+ 2.8.19 =================================================== Bugs fixed: 341327 Memory corruption inside glib 337491 _gdk_win32_drawable_release_dc: DeleteDC() called on a GetDC() handle 343425 "grab-notify"-signal is not correctly propagated for internal children 344244 Window resizing not working when keeping the aspect fixed 344496 CRLF converting via Clipboard Updated translations (ne) A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=343425,341327,344244,337491,344496 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Markku Vire, Sampo Savolainen, Tim Janik, Tor Lillqvist, Chris Wilson June 12, 2006 Matthias Clasen From newren@gmail.com Mon Jun 12 20:01:08 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C06453B018B for ; Mon, 12 Jun 2006 20:01:08 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03747-10 for ; Mon, 12 Jun 2006 20:01:06 -0400 (EDT) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.203]) by menubar.gnome.org (Postfix) with ESMTP id DCC213B0078 for ; Mon, 12 Jun 2006 20:01:05 -0400 (EDT) Received: by wx-out-0102.google.com with SMTP id h26so971531wxd for ; Mon, 12 Jun 2006 17:00:16 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=tzATDJMp0XzBzC3f1Js6q5t6DW1AJ/Xb3xHu6cJ5HbRxmg4U9Mi4mRfXd+tBd4gF2Jrx0LCPgFnY6WCcrrfEvTgkrAqgyR9TK2LZ0Rxry84BtUi6UXb3giOhJe8CORooz/5D9FkMGku6+JWNaBWjfK/H1pg3dz8Xy5khyLDZnps= Received: by 10.70.29.3 with SMTP id c3mr7026730wxc; Mon, 12 Jun 2006 17:00:16 -0700 (PDT) Received: by 10.70.89.16 with HTTP; Mon, 12 Jun 2006 17:00:16 -0700 (PDT) Message-ID: <51419b2c0606121700j69ef2e93x2dedecfb4c173083@mail.gmail.com> Date: Mon, 12 Jun 2006 18:00:16 -0600 From: "Elijah Newren" To: gnome-announce-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.537 tagged_above=-999 required=2 tests=[AWL=-0.014, BAYES_00=-2.599, SPF_PASS=-0.001, TW_BW=0.077] X-Spam-Score: -2.537 X-Spam-Level: Subject: libwnck 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 00:01:09 -0000 * What is it ? ============== Library for writing different kinds of workspace switchers, window lists, task bars, task menus, etc. Window Navigation Construction Kit. Pronounced "lib-wink" * What's changed ? ================== Fixes - restart activation timeout when the mouse moves to a different workspace (Benjamin) - new methods to test if the names returned by wnck_window_get_name and wnck_window_get_icon_name are real or just FALLBACK_NAME (Dan) [#342577] Misc - don't translate %s (Vincent) [#339069] Translations - Guillaume Savaton (eo) * Where can I get it ? ====================== Source code http://ftp.gnome.org/pub/GNOME/sources/libwnck/2.15/ MD5SUMs 6e9ef41d1aa9e81d6bc33047cccbe07f libwnck-2.15.3.tar.bz2 08a86da5a0225ef1ac5f340b95e74a4c libwnck-2.15.3.tar.gz From newren@gmail.com Mon Jun 12 20:28:13 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2AE023B00A5 for ; Mon, 12 Jun 2006 20:28:13 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04431-07 for ; Mon, 12 Jun 2006 20:28:11 -0400 (EDT) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.193]) by menubar.gnome.org (Postfix) with ESMTP id 6F8173B0078 for ; Mon, 12 Jun 2006 20:28:11 -0400 (EDT) Received: by wx-out-0102.google.com with SMTP id h26so974384wxd for ; Mon, 12 Jun 2006 17:27:35 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=kP6G2sZ3DMwVOY8jQamPOJMaaFSRSXp2y9wwFGXNkpY9JgQhdby0hd2FfdVpmpuaiefE4ZzuZpRcGMYYYQn6Uy0lA4+nsPGxOr+uQMfqytegFiAFLpHQ1Ly8bKHW0FG3kwRN1lWVPIylZ8GP7vkdnEXeWht1ipWqQw7nj0OchIk= Received: by 10.70.132.12 with SMTP id f12mr6858664wxd; Mon, 12 Jun 2006 17:01:49 -0700 (PDT) Received: by 10.70.89.16 with HTTP; Mon, 12 Jun 2006 17:01:49 -0700 (PDT) Message-ID: <51419b2c0606121701y5d42a121o5ab05ac32f69b96@mail.gmail.com> Date: Mon, 12 Jun 2006 18:01:49 -0600 From: "Elijah Newren" To: gnome-announce-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.576 tagged_above=-999 required=2 tests=[AWL=0.024, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.576 X-Spam-Level: Subject: metacity 2.15.5 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 00:28:13 -0000 * What is it ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Metacity is a simple window manager that integrates nicely with GNOME 2. * What's changed ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Thanks to Bj=F6rn Lindqvist, S=F8ren Sandmann, Adam Jackson, Elijah Newren, and Aidan Delaney for improvements in this release. - code cleanup in resizepopup.c (Bj=F6rn) [#341648] - fix a logic bug so that the whole titlebar becomes sensitive to mouse clicks (Bj=F6rn) [#336320] - make mouse cursor when moving windows become a hand (Bj=F6rn) [#337376] - lots and lots of compositor improvements -- beginning of a new layer to abstract transition effects, shrinking and minimizing and exploding effects, fading in and out, unminimize animation that reverses minimize one, translucent menus, bounce on window focus, and all kinds of stuff I don't understand and can't summarize well (S=F8ren, Adam) - Fix a crash on exit/logout from assuming a compositor would always exist (Elijah) [#342166] - code cleanup in tabpopup.c (Aidan Delaney) [#166890] Translations Pema Geyleg (dz), I=F1aki Larra=F1aga Murgoitio (eu), Theppitak Karoonboonyanan (th), Clytie Siddall (vi) * Where can I get it ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Source code http://download.gnome.org/sources/metacity/2.15/ MD5SUMs 057a284898385218b8711229d659c2ed metacity-2.15.5.tar.bz2 983eb3ee58263214e3e57c2f962fbd6a metacity-2.15.5.tar.gz From mclasen@redhat.com Tue Jun 13 02:09:16 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 72FE93B00AF; Tue, 13 Jun 2006 02:09:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12183-04; Tue, 13 Jun 2006 02:09:13 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id B2F773B000C; Tue, 13 Jun 2006 02:09:13 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5D681s3022181; Tue, 13 Jun 2006 02:08:01 -0400 Received: from lacrosse.corp.redhat.com (lacrosse.corp.redhat.com [172.16.52.154]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5D67uRP017686; Tue, 13 Jun 2006 02:07:56 -0400 Received: from [172.16.83.145] (vpn83-145.boston.redhat.com [172.16.83.145]) by lacrosse.corp.redhat.com (8.12.11.20060308/8.11.6) with ESMTP id k5D67tQC015619; Tue, 13 Jun 2006 02:07:56 -0400 From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain; charset=UTF-8 Organization: Red Hat Date: Tue, 13 Jun 2006 02:09:42 -0400 Message-Id: <1150178982.4081.13.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.426 tagged_above=-999 required=2 tests=[AWL=-0.056, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_GD=0.077, TW_GT=0.077, TW_KB=0.077] X-Spam-Score: -2.426 X-Spam-Level: Cc: Subject: GTK+ 2.9.3 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 06:09:16 -0000 GTK+ 2.9.3 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.9/ http://ftp.gnome.org/pub/gnome/sources/gtk+/2.9/ gtk+-2.9.3.tar.bz2 md5sum: d73039a3b5847c352f5740ac908be7d2 gtk+-2.9.3.tar.gz md5sum: 0156eef91d2bbb23f1b6ccb49335fae5 This is a development release leading up to GTK+ 2.10. Notes: * This is unstable development release. There are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GTK+ 2.8. If you have problems, you'll need to reinstall GTK+ 2.8. * GTK+ 2.10 will be source compatible with the GTK+ 2.8 series; the new API additions in GTK+ 2.9.0 are not yet completely finalized, so there are likely incompatibilies between this release and the final 2.10 release. * The ABI version has been bumped from 2.4.0 to 2.10.0, since the filechooser backend interface has been changed. Third-party filechooser backends need to be ported to the new interface. Other third-party modules (input methods, image loaders, etc) just need to be reinstalled in the proper location for GTK+ to find them. * Remaining issues for GTK+ 2.10 can be found with following bugzilla query: http://bugzilla.gnome.org/buglist.cgi?product=gtk%2b&target_milestone=2.10+API+Freeze&target_milestone=2.10+Freeze&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED * Bugs should be reported to http://bugzilla.gnome.org. What is GTK+ ============ 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.4/gtk/gtk-building.html Common questions: http://developer.gnome.org/doc/API/2.4/gtk/gtk-question-index.html http://www.gtk.org/faq/ Overview of Changes from GTK+ 2.9.2 to 2.9.3 ============================================ * GtkPrintOperation: - Introduce an allow-async property - Introduce a GtkPrintOperationAction enumeration - Rename pdf_target to export_filename - Allow to hide "Print to PDF" in the low-level API * GtkNotebook: - Add a destroy notify to gtk_notebook_set_window_creation_hook. * GtkTreeView: - Support grid lines * GtkRange: - Add a number of new stle properties which allow more fexible stepper theming * Bugs fixed: 153212 Have the Paste kbd shortcut jump to the location in the buffer 337491 _gdk_win32_drawable_release_dc: DeleteDC() called on a GetDC() handle 339739 gtk/gtkprintoperation-win32.c: 3 compile error 342339 GtkRange::stepper-spacing style property not implemented correctly 343945 Buttons of a GtkAssistant are not accessible 344148 Wrong reqs for ATK 344209 gtk_notebook_set_window_creation_hook() has no destroy func. 344232 GtkEntry's "Delete" context menu item is sensitive on a non-editable GtkEntry 344244 Window resizing not working when keeping the aspect fixed 344288 gtk_print_operation_preview_is_selected must return a value 344386 gdk-2.0-uninstalled.pc.in and gdkconfig.h 344496 CRLF converting via Clipboard 344504 GtkPrintCapabilities not in gtktypebuiltins.h 344505 Wrong signal registration for create_custom_widget 344512 cvs build issue 344513 pdf print module's print_stream not calling destroy notify 344518 NULL unref in page setup dialogue 344543 gtk_progress_bar_pulse calls gtk_progress_bar_paint directly 344560 gtk_print_settings_[sg]et_scale shouldn't be in percent 344607 memory leaks in gtkrecentchooserdefault.c and gtkrecentchoosermenu.c 344624 Memory leak in gtk_tree_model_filter_finalize: User data not freed 337603 Possible off-by-one in gdk_pango_layout_line_get_clip_region 344239 Wrong filename for gtk-find stock item. 344528 comma at end of GtkPrintOperationAction enum causes mozilla compilation error 344290 horizontal-padding not take into account when placing submenus 344558 document print dialogue response codes 339592 Add print-to-postscript 342249 Allow to draw upper and lower sides of GtkRange's trough differently 344530 gtk_recent_chooser_widget_new_for_manager and gtk_recent_chooser_menu_new_for_manager should allow NULL manager arg * Updated translations (es,fi,gu,ko,th,wa) A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=153212,337491,339739,342339,343945,344148,344209,344232,344244,344288,344386,344496,344504,344505,344512,344513,344518,344543,344560,344607,344624,337603,344239,344528,344290,344558,339592,342249,344530 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Behdad Esfahbod, Bastian Nocera, Alexander Larsson, Jrg Billeter, Murray Cumming, Milosz Derezynski, Tor Lillqvist, Kazuki Iwamoto, Chris Wilson, Michael Natterer, Benjamin Berg, Marko Anastasov, Christian Persch, Masatake Yamamoto, Elijah Newren, John Finlay, Emmanuele Bassi, David Malcolm, John Darrington, Christian Weiske, Yvgen Muntyan, Martyn Russell, Kristian Rietveld June 13, 2006 Matthias Clasen From parente@gmail.com Mon Jun 12 09:07:24 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8979A3B009D for ; Mon, 12 Jun 2006 09:07:24 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03281-09 for ; Mon, 12 Jun 2006 09:07:22 -0400 (EDT) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.231]) by menubar.gnome.org (Postfix) with ESMTP id 9BD863B0083 for ; Mon, 12 Jun 2006 09:07:22 -0400 (EDT) Received: by wr-out-0506.google.com with SMTP id 50so59130wri for ; Mon, 12 Jun 2006 06:06:53 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=Hk2y2xQcbYJKNPf1LW7Y+V28/uYf1U244+IHjlJ7rvPAXFm2IeIHW6o/slpX1K2RUSQzIkrF+sc7i4dF5E8CMLURiFTCBFzpZu9qbgaiDE/D6+W4KrPGXwQqArUp5siLDWhmzDklvsX4fL+9EE4/UFa+de3k689sT00z2J2T/y4= Received: by 10.64.150.20 with SMTP id x20mr4562225qbd; Mon, 12 Jun 2006 06:06:53 -0700 (PDT) Received: by 10.65.154.18 with HTTP; Mon, 12 Jun 2006 06:06:53 -0700 (PDT) Message-ID: <5308fd2c0606120606p43b30477o4e73cfad155dcaa7@mail.gmail.com> Date: Mon, 12 Jun 2006 09:06:53 -0400 From: "Peter Parente" To: gnome-announce-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.589 tagged_above=-999 required=2 tests=[AWL=0.011, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.589 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Subject: lsr-0.2.1 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: parente@cs.unc.edu List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 13:07:24 -0000 ============== * What is it ? ============== Linux Screen Reader (LSR) is an extensible assistive technology for people with disabilities. The design philosophy behind LSR is to provide a core platform that enables the development of LSR extensions for improving desktop application accessibility and usability and shields extension developers from the intricacies of the desktop accessibility architecture. The primary use of the LSR platform is to give people with visual impairments access to the GNOME desktop and its business applications (e.g. Firefox, OpenOffice, Eclipse) using speech, Braille, and screen magnification. The extensions packaged with the LSR core are intended to meet this end. However, LSR's rich support for extensions can be used for a variety of other purposes such as supporting novel input and output devices, improving accessibility for users with other disabilities, enabling multi-modal access to the GNOME desktop, and so forth. ================== * What's changed ? ================== 0.2.1 ===== User interface * Better reporting of accessible components * Combobox current text reported on focus * Tree level reported on level change and first focus (bug #343388) * Menu role and name announced before menu items when switching between menus * Review of visible items works on text, trees, lists, and tables now * Added mute indefinitely key command Scripting * Added DeveloperPerk with the following commands * Refresh all loaded scripts without restarting LSR * Report names of all loaded scripts * Show or hide all development monitor windows * Added -g command line parameter to generate a new extension template * Update of TaskTools to support new output semantics * Added support for text selection events * Added support for storing script and application state separately Devices * Updated Keyboard device to support stateful keys as modifiers (e.g. CapsLock) Architecture * Complete refactor of output interface to support device Style objects * Mapping from semantics (role, title, level, etc.) to styles * Plumbing to support persistence and configuration of extension settings * Plumbing to support auto-generation of settings dialogs for extensions Documentation * Posted Gaim Perk tutorial as hands-on example of writing a script extension * Updated user guide to mention new key bindings * Regenerated epydoc to match latest API Translations * sv(Christian Rose) ====================== * Where can I get it ? ====================== Source code release: http://live.gnome.org/LSR#downloads For more information, visit the LSR home page: http://live.gnome.org/LSR From rodrigo@novell.com Mon Jun 12 17:44:58 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F06E53B016D for ; Mon, 12 Jun 2006 17:44:57 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32717-04 for ; Mon, 12 Jun 2006 17:44:57 -0400 (EDT) Received: from peabody.ximian.com (peabody.ximian.com [130.57.169.10]) by menubar.gnome.org (Postfix) with ESMTP id DCE623B00E5 for ; Mon, 12 Jun 2006 17:44:56 -0400 (EDT) Received: (qmail 22167 invoked from network); 12 Jun 2006 21:43:46 -0000 Received: from localhost (HELO ?164.99.120.183?) (127.0.0.1) by localhost with SMTP; 12 Jun 2006 21:43:46 -0000 From: Rodrigo Moya To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-15 Date: Mon, 12 Jun 2006 23:36:21 +0200 Message-Id: <1150148182.16907.0.camel@formigal.home> Mime-Version: 1.0 X-Mailer: Evolution 2.6.0 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.336 tagged_above=-999 required=2 tests=[AWL=-0.091, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, TW_BX=0.077, TW_IB=0.077] X-Spam-Score: -2.336 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: Control Center List Subject: control-center 2.15.3 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 21:44:58 -0000 Changes since 2.14.2 -------------------- about me: - Fixed typo (Rodrigo Moya) (324971) - Fixed compilation issues (Rodrigo Moya) (344468) default applications: - Added support for Sylpheed (Luca Cavalli) (332659) - Removed unnecessary gnome-terminal argument (Luca Cavalli) (336700) keybindings: - Removed brightness keybindings, now in gnome-power-manager (Bastien Nocera) (339857) keyboard: - Save/restore layout preview window geometry (Sergey Udaltsov) mouse: - Fixed selection when no cursor font is set in GConf (Darren Kenny) (340003) sound: - Added sound device selection (Jrg Billeter) (329112) - Fixed button strings (Rodrigo Moya) (324971) theme-switcher: - Removed drag & drop information text (Thomas Wood) (99535) - Added Install buttons to each tab in the details window (Thomas Wood) - Remember last browsed or installed from location (Thomas Wood) (138795) - Don't allow invalid characters in theme names (Thomas Wood) (139692) - Don't ask user whether to overwrite or not internal files (Thomas Wood) (317375) - Allow saving background image for custom themes (Thomas Wood) (330302) - Fixed UI issues in the save dialog (Thomas Wood) (100622) settings daemon: - Fixed libxklavier engine initialization logic (Sergey Udaltsov) (333091) - Removed references to brightness controls (Bastien Nocera) (339857) - Fixed leaks (Paolo Borelli) (342568, 342570) general: - Updated to new libxklavier API (Sergey Udaltsov) updated translations: - bg (Alexander Shopov) - cs (Miloslav Trmac, Lukas Novotny, Jakub Friedl) - dz (Pema Geyleg) - es (Francisco Javier F. Serrador) - fi (Ilkka Tuohela) - gl (Ignacio Casal Quinteiro) - gu (Ankit Patel) - mg (Simos Xenitellis) - nb (Kjartan Maraas) - sq (Laurent Dhima) - sv (Daniel Nylander) - th (Theppitak Karoonboonyanan) - vi (Clytie Siddall) - zh_CN (Funda Wang) - zh_HK (Chao-Hsiung Liao) - zh_TW (Chao-Hsiung Liao) Availability ------------ http://ftp.gnome.org/pub/GNOME/sources/control-center/2.15/ Contact ------- * Bugs in http://bugzilla.gnome.org * Mailing list http://mail.gnome.org/mailman/listinfo/gnomecc-list -- Rodrigo Moya From behdad.esfahbod@gmail.com Mon Jun 12 17:47:52 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7B80A3B014D for ; Mon, 12 Jun 2006 17:47:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32679-08 for ; Mon, 12 Jun 2006 17:47:50 -0400 (EDT) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.206]) by menubar.gnome.org (Postfix) with ESMTP id 93D3F3B02C1 for ; Mon, 12 Jun 2006 17:47:50 -0400 (EDT) Received: by wx-out-0102.google.com with SMTP id h26so956318wxd for ; Mon, 12 Jun 2006 14:47:02 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:subject:from:to:content-type:date:message-id:mime-version:x-mailer:sender; b=YVJmmmTJDYAPVWyBcXj8x877np/3myVRslCESpGT8RXV9fhXWO7m4zcVtD0bbIyxzLCNy9G4MxoeR4wKgZZNAmVLfJY4S5Cm99AU8jHeau3kamsPLiBWdw/7luc5fNsqJp4eQk4EpFqLzmMhtWaKSOxclPSl65MK68ngzTNkqNo= Received: by 10.70.103.17 with SMTP id a17mr6909562wxc; Mon, 12 Jun 2006 14:47:02 -0700 (PDT) Received: from to-dhcp26.toronto.redhat.com ( [63.250.163.171]) by mx.gmail.com with ESMTP id h34sm6169771wxd.2006.06.12.14.47.01; Mon, 12 Jun 2006 14:47:01 -0700 (PDT) From: Behdad Esfahbod To: gnome-announce-list@gnome.org Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-Vxzn0OEXLlv9C28CHSps" Date: Mon, 12 Jun 2006 17:46:59 -0400 Message-Id: <1150148819.10765.11.camel@home> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 (2.6.1-1.fc5.2) Sender: Behdad Esfahbod X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.6 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.6 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Subject: vte-0.13.2 released [unstable] X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 21:47:52 -0000 --=-Vxzn0OEXLlv9C28CHSps Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Vte-0.13.2 is available for download at: http://download.gnome.org/sources/vte/0.13/ Vte is GNOME 2's virtual-terminal emulation widget. This is an unstable release. 0.13.2 Bug 344666 =E2=80=93 Problems with *_CFLAGS and *_LDFLAGS in makefiles Patch from Stepan Kasal . Bug 339529 =E2=80=93 gnome-terminal (vte) crashes when detatched window is closed Bug 342549 =E2=80=93 uninitialized var (coverity) Patch from Paolo Borelli. Bug 342082 =E2=80=93 vte_invalidate_region() may check whether terminal is realiazed or not Patch from Kouhei Sutou. Bug 340363 =E2=80=93 vte Cygwin build fixes Patch from Cygwin Ports maintainer Bug 341793 =E2=80=93 vte.h doesn't need to include X11/Xlib.h Patch from Kouhei Sutou Require intltool 0.35.0 to have translations in the dist tarballs. Fix typo which may have been causing things like crashes. Behdad Esfahbod 12 June 2006 --=-Vxzn0OEXLlv9C28CHSps Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEjeDTn+4E5dNTERURAjCvAJ9H07aDShKW/mLQfhNyOaMG1RtYsACgixvW gbPOhTT6IK5+BSx0dCk7844= =JsUT -----END PGP SIGNATURE----- --=-Vxzn0OEXLlv9C28CHSps-- From behdad.esfahbod@gmail.com Mon Jun 12 17:52:44 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id EFA613B02CD for ; Mon, 12 Jun 2006 17:52:43 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00550-05 for ; Mon, 12 Jun 2006 17:52:42 -0400 (EDT) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.196]) by menubar.gnome.org (Postfix) with ESMTP id A2EDA3B016D for ; Mon, 12 Jun 2006 17:52:41 -0400 (EDT) Received: by wx-out-0102.google.com with SMTP id h26so957012wxd for ; Mon, 12 Jun 2006 14:51:44 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:subject:from:to:content-type:date:message-id:mime-version:x-mailer:sender; b=HkVpdki0/g3XkGcHUm613LiH99RNWp83QpOiB04twtI9/oyY5QJs7xgUW9ugXUYWTW0FQESua3SiFes9GpwcHFnulMB+jmu6Frg1gjSTz94Z0WNKazKYJCx/0yCrKVvi+sIhO9793kd+R7hBbKFWLBqlIyo5yetvED1gx6HIjnc= Received: by 10.70.36.1 with SMTP id j1mr6891335wxj; Mon, 12 Jun 2006 14:44:52 -0700 (PDT) Received: from to-dhcp26.toronto.redhat.com ( [63.250.163.171]) by mx.gmail.com with ESMTP id h18sm3879342wxd.2006.06.12.14.44.50; Mon, 12 Jun 2006 14:44:51 -0700 (PDT) From: Behdad Esfahbod To: Pango Release Lists , gtk-app-devel-list@gnome.org, gtk-devel-list@gnome.org, gtk-i18n-list@gnome.org, gtk-list@gnome.org Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-HZBsNn3KdPR3jVVwB9gO" Date: Mon, 12 Jun 2006 17:44:37 -0400 Message-Id: <1150148678.10765.8.camel@home> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 (2.6.1-1.fc5.2) Sender: Behdad Esfahbod X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.6 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.6 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: Subject: Pango-1.13.2 released [unstable] X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 21:52:44 -0000 --=-HZBsNn3KdPR3jVVwB9gO Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Pango-1.13.2 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.11/ or http://download.gnome.org/sources/pango/1.13/ 28a6ea9d43c4cd398e7352032f775401 pango-1.13.2.tar.bz2 17d78473c05fece044c6a3b44519b61f pango-1.13.2.tar.gz This is a development release leading up to Pango-1.14.0, which will be released just in time for GNOME-2.16. Notes: * This is unstable development release. While it has had fairly extensive testing, there are likely bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of Pango-1.12. If you have problems, you'll need to reinstall Pango-1.12.x * Bugs should be reported to http://bugzilla.gnome.org. About Pango =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Pango is a library for layout and rendering of text, with an emphasis on internationalization. Pango can be used anywhere that text layout is needed, though most of the work on Pango so far has been done in the context of the GTK+ widget toolkit. Pango forms the core of text and font handling for GTK+-2.x. Pango is designed to be modular; the core Pango layout engine can be used with different font backends. There are three basic backends, with multiple options for rendering with each. - Client side fonts using the FreeType and fontconfig libraries. Rendering can be with with Cairo or Xft libraries, or directly to an in-memory buffer with no additional libraries. - Native fonts on Microsoft Windows. (Optionally using Uniscribe for complex-text handling). Rendering can be done via Cairo or directly using the native Win32 API. - Native fonts on MacOS X, rendering via Cairo. The integration of Pango with Cairo (http://cairographics.org) provides a complete solution with high quality text handling and graphics rendering. Dynamically loaded modules then handle text layout for particular combinations of script and font backend. Pango ships with a wide selection of modules, including modules for Hebrew, Arabic, Hangul, Thai, and a number of Indic scripts. Virtually all of the world's major scripts are supported. As well as the low level layout rendering routines, Pango includes PangoLayout, a high level driver for laying out entire blocks of text, and routines to assist in editing internationalized text. More information about Pango is available from http://www.pango.org/. Pango 1.13.2 depends on version 2.10.0 or newer of the GLib library and version 1.1.2 or newer of the cairo library (if the cairo backend is desired); more information about GLib and cairo can be found at http://www.gtk.org/ and http://cairographics.org/ respectively. Overview of changes between 1.13.1 and 1.13.2 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D * Improved hexbox drawing, and font metrics calculations. * Synthesize italic variants on win32 [Hans Breuer] * New public API: - pango_cairo_show_error_underline - pango_cairo_error_underline_path - pango_font_describe_with_absolute_size * Misc fixes. * Bugs fixed in this release: Bug 326960 =E2=80=93 hex box drawing for win32 and atsui backends of cairo Bug 343717 =E2=80=93 License information in unclear. Bug 343355 =E2=80=93 Add pango_cairo_show_error_underline & pango_cairo_error_underline_path Bug 343966 =E2=80=93 pango Cygwin build fixes Patch from Cygwin Ports maintainer. Bug 343796 =E2=80=93 Italic Chinese character can't be show correctly in Win32. Bug 314114 =E2=80=93 max_x_advance not appropriate for approximate_(char|digit)_width Bug 341138 =E2=80=93 Using TTC font, Gtk2 programs begin to eating big mem= ory and have many cpu usage. Patch from Yong Li. Bug 336153 =E2=80=93 Mark to mark positioning (Lookup Type 6) isn't correc= t when using MarkAttchmentType Patch from Tin Myo Htet. Bug 333984 =E2=80=93 pango_language_from_string improvements Bug 125378 =E2=80=93 Better underline thickness handling Bug 339730 =E2=80=93 Pango needlessly falls back away from a Type 1 font i= nto a TTF font Bug 342562 =E2=80=93 Support absolute sizes in pango_font_description_to/from_string Bug 341922 =E2=80=93 pango should handle more characters as zero width Patch from Roozbeh Pournader Bug 342525 =E2=80=93 With PangoFc and PangoWin32, approximate digit width = is not what it says Bug 342079 =E2=80=93 pangoatsui-private.h missing from release Behdad Esfahbod 12 June 2006 --=-HZBsNn3KdPR3jVVwB9gO Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEjeBFn+4E5dNTERURApTwAJ9OvqbaG1xnQYzGPC9u0WPi30b6ggCfXNvZ oFfMwctzkAaKRETc/0aDRj0= =Wl7j -----END PGP SIGNATURE----- --=-HZBsNn3KdPR3jVVwB9gO-- From ebassi@gmail.com Mon Jun 12 18:16:04 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 959AC3B00A5 for ; Mon, 12 Jun 2006 18:16:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01337-06 for ; Mon, 12 Jun 2006 18:16:03 -0400 (EDT) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.186]) by menubar.gnome.org (Postfix) with ESMTP id E69443B015D for ; Mon, 12 Jun 2006 18:16:02 -0400 (EDT) Received: by nf-out-0910.google.com with SMTP id x37so950087nfc for ; Mon, 12 Jun 2006 15:14:56 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:subject:from:to:cc:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; b=eGvIpFNEWtb7L9J87AK/A8+ENa91duWZBEqSL8uzr9KmNI5+11lkZvmnBmdUhuBBlxyNjlYBw3sh/Am36NkcDakYEh5OSYiVckbEq9XEKnN5svoJJwcDLufW7SXw+2xzT5RpJ43xYvJHTzDB08ykyYlcsfJVZtZALOWrI8eQ7mU= Received: by 10.48.241.20 with SMTP id o20mr5263837nfh; Mon, 12 Jun 2006 15:08:01 -0700 (PDT) Received: from rogue.local ( [86.136.65.180]) by mx.gmail.com with ESMTP id k23sm6896442nfc.2006.06.12.15.08.01; Mon, 12 Jun 2006 15:08:01 -0700 (PDT) From: Emmanuele Bassi To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=UTF-8 Date: Mon, 12 Jun 2006 23:07:59 +0100 Message-Id: <1150150079.5273.10.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.336 tagged_above=-999 required=2 tests=[AWL=0.264, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.336 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: GNOME Utils Subject: [ANNOUNCE] Gnome-utils 2.15.3 - "No, this is not Metacity" X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 22:16:04 -0000 Yeap, you read right: this is release 2.15.3 and this is *not* Metacity - even if we did skip a bit of numbers - but yet another great release of the GNOME Utilities package! Unfortunately, due to time constraints, this release rocks less than what we maintainers expected; nevertheless, it rocks louder and harder than any release done before. So download, sit back with a nice glass of red wine while your compiler of choice churns the sources, and prepare to test new features and to file new bugs. This is an unstable release of gnome-utils, so please be warned that it may cause loss of patience, body hair, teeth and overall sanity; it could also make your life easier. It's up to you to test it and report back any misfeature, bug or feature request. You can download the 2.15.3 release of gnome-utils from the usual place, at: http://download.gnome.org/sources/gnome-utils/2.15/ =================================================================== GNOME Utilities 2.15.3 (June 12th 2006) - "No, it's not Metacity" Baobab * Add a new item in the list window context menu to start scanning a folder. Dictionary * Re-implement the speller widget, to show similar words in case no definition was found. * Use a themable icon Floppy * Nothing Screenshot * Drop deprecated include files (Kristof Vansant, #167098) * Fix compilator warnings * Update launcher description Search Tool * Update launcher description System Log Viewer * Miscellaneous fixes on 64bit platforms (Joe Marcus Clarke, Lin Ma) * Change the default log files list on Solaris (Lin Ma) * Remove empty character from status bar (Lin Ma) * Sort files by ascending order (Lin Ma) * Use `File' instead of `Log' as the first menu (Lin Ma) * Fix the selection offset when copying from a log (Sebastien Bacher) Translations updates: Petr Tomeš (cs), Mindu Dorji (dz), Francisco Javier F. Serrador (es), Iñaki Larrañaga Murgoitio (eu), Ignacio Casal Quinteiro (gl), Ankit Patel (gu), Fabio Marzocca (it), Changwoo Ryu (ko), Fano Rajaonarisoa (mg), Øivind Hoel (nb), Vincent van Adrighem (nl), Theppitak Karoonboonyanan (th), Clytie Siddall (vi), Funda Wang (zh_CN), Lin-Chieh Shangkuan (zh_HK), Lin-Chieh Shangkuan (zh_TW) Ciao, Emmanuele. -- Emmanuele Bassi - Log: http://log.emmanuelebassi.net From kurt@maute.us Mon Jun 12 19:34:25 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 07B863B0150 for ; Mon, 12 Jun 2006 19:34:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03322-07 for ; Mon, 12 Jun 2006 19:34:23 -0400 (EDT) Received: from mta6.srv.hcvlny.cv.net (mta6.srv.hcvlny.cv.net [167.206.4.201]) by menubar.gnome.org (Postfix) with ESMTP id 5040C3B000C for ; Mon, 12 Jun 2006 19:34:23 -0400 (EDT) Received: from [192.168.0.56] (ool-435223b5.dyn.optonline.net [67.82.35.181]) by mta6.srv.hcvlny.cv.net (Sun Java System Messaging Server 6.2-6.01 (built Apr 3 2006)) with ESMTP id <0J0R00G8NSFQ4H00@mta6.srv.hcvlny.cv.net> for gnome-announce-list@gnome.org; Mon, 12 Jun 2006 19:11:51 -0400 (EDT) Date: Mon, 12 Jun 2006 19:11:49 -0400 From: Kurt Maute To: Planner-Dev , Planner , gnome-announce-list@gnome.org Message-id: <1150153909.4619.131.camel@dori> MIME-version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-type: text/plain; charset=UTF-8 Content-transfer-encoding: 8BIT X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.599 tagged_above=-999 required=2 tests=[AWL=0.000, BAYES_00=-2.599] X-Spam-Score: -2.599 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: Subject: Planner v0.14 Released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 23:34:25 -0000 Hi All, Planner v0.14 is now available for download: http://ftp.gnome.org/pub/GNOME/sources/planner/0.14/ What is Planner =============== Planner is the GNOME project management tool. Homepage: http://live.gnome.org/Planner What's New in Planner v0.14 =========================== * FF and SF Predecessors 140561 (Kurt Maute) * Simple priority scheduling (Matteo Nastasi): Use the --enable-simple-priority-scheduling option when building. This feature will allow a high priority task to steal resources from a lower priority task. * View Non-standard working/nonworking days (Matteo Nastasi): In the Gantt view, this feature shows where resources have differences in working and nonworking days when compared to the default calendar. * Resource Usage view canvas interactivity (Alvaro del Castillo): Right clicking on a usage bar or resource pops up an option menu. * Gantt chart misalignment with tree view 128983 (Francisco Moraes) * Summary tasks: work now equals sum of child tasks 305801 (Kurt Maute) * Eliminate effects of resource assignments on summary tasks 151604 (Kurt Maute): Assigning a resource to a summary task now has no effect. * Updated user guide: (Kurt Maute) * View Grid Lines in Gantt view 303374 (Nguyễn Thái Ngọc Duy): Shows horizontal lines in Gantt to help visually line up tasks with Gantt bars. Translators: Vladimir "Kaladan" Petkov (bg) Miloslav Trmac (cs) Hendrik Richter (de) Kostas Papadimas (el) Adam Weinberger (en_CA) David Lodge (en_GB) Francisco Javier F. Serrador (es) Ivar Smolin (et) Larra Murgoitio (eu) Meelad Zakaria (fa) Ilkka Tuohela (fi) Gabor Kelemen (hu) Takeshi AIHANA (ja) Kjartan Maraas (nb) "Last-Translator: \n" (ne) Jan-Willem Harmanny (nl) Afonso Celso Medina (pt_BR) Steve Murphy (rw) Marcel Telka (sk) Данило Шеган (sr) Daniel Nylander (sv) Maxim V. Dziumanenko (uk) Clytie Siddall (vi) Woodman Tuen (zh_TW) -- Kurt Maute From nudrema@gmail.com Mon Jun 12 20:13:02 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 32C693B0009; Mon, 12 Jun 2006 20:13:02 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04226-02; Mon, 12 Jun 2006 20:13:01 -0400 (EDT) Received: from swip.net (mailfe04.swip.net [212.247.154.97]) by menubar.gnome.org (Postfix) with ESMTP id 447933B000C; Mon, 12 Jun 2006 20:13:00 -0400 (EDT) X-T2-Posting-ID: Ee7YIbSG3O5rNcT4cGADretWTWrDEjpwS9FwzyhFhzk= X-Cloudmark-Score: 0.000000 [] Received: from [83.182.30.225] (HELO [10.0.0.13]) by mailfe04.swip.net (CommuniGate Pro SMTP 5.0.8) with ESMTP id 211925446; Tue, 13 Jun 2006 02:11:51 +0200 Message-ID: <448E02C4.2050805@gmail.com> Date: Tue, 13 Jun 2006 02:11:48 +0200 From: =?ISO-8859-1?Q?Steve_Fr=E9cinaux?= User-Agent: Thunderbird 1.5.0.2 (X11/20060522) MIME-Version: 1.0 To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.931 tagged_above=-999 required=2 tests=[AWL=-0.478, BAYES_00=-2.599, SPF_NEUTRAL=1.069, TW_GT=0.077] X-Spam-Score: -1.931 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: gedit-list Subject: ANNOUNCE: gedit 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 00:13:02 -0000 Hi all, gedit 2.15.3 is now available. gedit the official GNOME text editor. homepage: http://live.gnome.org/GeditPlugins * Changes in 2.15.3 ==================== New features and fixes: - New gedit_commands_* API for plugins (Paolo Maggi) - Snippets support for space indentation (Jesse van den Kieboom) - gtk-doc enabled C plugin API documentation (Steve Frcinaux) - Next/Previous menu items (Paolo Maggi) - C/Python plugin skeleton generator (Steve Frcinaux) - Snippets plugin enhancements and fixes (Jesse van den Kieboom) - Misc improvements and bugfixes New and updated translations: - Alexander Shopov (bg) - Ankit Patel (gu) - Clytie Siddall (vi) - Francisco Javier F. Serrador (es) - Kjartan Maraas (nb) - Ignacio Casal Quinteiro (gl) - Jakub Friedl (cs) - Pema Geyleg (dz) - Priit Laes (et) - Theppitak Karoonboonyanan (th) * Download =========== http://ftp.gnome.org/pub/GNOME/sources/gedit/2.15/gedit-2.15.3.tar.gz md5sum: 07a99a6c45fa859a770a86bfa6289acd http://ftp.gnome.org/pub/GNOME/sources/gedit/2.15/gedit-2.15.3.tar.bz2 md5sum: e43046da726b9df3119ff8db00c7f4ad -- Steve http://tw.apinc.org From gnome@nextreality.net Mon Jun 12 23:42:44 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 13DDB3B00E5 for ; Mon, 12 Jun 2006 23:42:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08544-08 for ; Mon, 12 Jun 2006 23:42:42 -0400 (EDT) Received: from brentsmith.name (unknown [64.62.195.122]) by menubar.gnome.org (Postfix) with ESMTP id 7C54A3B0010 for ; Mon, 12 Jun 2006 23:42:42 -0400 (EDT) Received: by brentsmith.name (Postfix, from userid 5001) id 8C64635904; Tue, 13 Jun 2006 03:41:31 +0000 (UTC) Received: from [192.168.1.101] (c-67-176-37-213.hsd1.co.comcast.net [67.176.37.213]) by brentsmith.name (Postfix) with ESMTP id DA11C35901 for ; Tue, 13 Jun 2006 03:41:30 +0000 (UTC) Message-ID: <448E33F5.5080804@nextreality.net> Date: Mon, 12 Jun 2006 21:41:41 -0600 From: Brent Smith User-Agent: Thunderbird 1.5.0.2 (X11/20060522) MIME-Version: 1.0 To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Bogosity: Unsure, tests=bogofilter, spamicity=0.500000, version=0.94.4 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.577 tagged_above=-999 required=2 tests=[AWL=0.022, BAYES_00=-2.599] X-Spam-Score: -2.577 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:35 -0400 Subject: Yelp 2.15.3 Released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 03:42:44 -0000 Yelp 2.15.3 is now available from an FTP mirror near you (actually, you might have to wait a little bit for it to appear). Yelp is the program that appears from the mist when you click the Help button in your favorite GNOME application. This release contains many improvements over the last development release. Read on for details... Changes in 2.15.3: ------------------ * New debugging infrastructure (Brent Smith) * Add support for translated man pages, fixes #343275 (Brent Smith) * Support private instances with -p (Bug #337540) (Don Scorgie) * Switch from Bonobo to DBUS Activation (Don Scorgie) * Change 'Multimedia' category to 'Sound & Vision' for (Don Scorgie) consistency (bug #332182) * Don't auto-expand sections in left pane (bug #167070) (Don Scorgie) * Don't use mozilla's internal string API, and drop (Christian Persch) support for gecko 1.7 and non-toolkit geckos. Bug #343950. * Add a deep history framework (bug #67966) (Don Scorgie) * Make *Notes into hyperlinks (bug #343524) (Don Scorgie) * Make monospace fonts change size when asked (Don Scorgie) (bug #344003) * Escape & characters when encountered in info (Don Scorgie) processing (fixes #343372) * more helpful message when there are no search results(Frederic Peters) (fixes #341798) * search results message can be translated (Frederic Peters) (fixes #341689) * limit search results to 20 items (fixes #341434) (Frederic Peters) * cleanup the man_secthash hash table when finished (Brent Smith) * don't increment ptr, fixes #341827 (Don Scorgie) * Fix a bunch of memory leaks (Don Scorgie) * Fix an invalid write, #342151 (Don Scorgie) * NULL checking. Suppresses critical warnings on some (Don Scorgie) info pages * If an info file doesn't exist, default to showing (Don Scorgie) the man page, fixes #341627 * Fix loading of info pages from subdirectories (emacs) (Don Scorgie) * Update intltool requirement to 0.35.0 (Brent Smith) * Reduce strictness of searching for menus in info pages (Don Scorgie) * Updated translations: Jakub Friedl (cs) Mindu Dorji (dz) Francisco Javier F. Serrador (es) Priit Laes (et) Iaki Larraaga Murgoitio (eu) Ankit Patel (gu) Raivis Dejus (lv) Kjartan Maraas (nb) Theppitak Karoonboonyanan (th) Pablo Saratxaga (wa) http://ftp.gnome.org/pub/GNOME/sources/yelp/2.14/ Share and enjoy. Regards, -- Brent Smith IRC: smitten From nudrema@gmail.com Tue Jun 13 04:23:41 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F14743B000C; Tue, 13 Jun 2006 04:23:40 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16049-10; Tue, 13 Jun 2006 04:23:40 -0400 (EDT) Received: from swip.net (mailfe11.swipnet.se [212.247.155.65]) by menubar.gnome.org (Postfix) with ESMTP id 2C63B3B000A; Tue, 13 Jun 2006 04:23:39 -0400 (EDT) X-T2-Posting-ID: Ee7YIbSG3O5rNcT4cGADretWTWrDEjpwS9FwzyhFhzk= X-Cloudmark-Score: 0.000000 [] Received: from [83.182.30.69] (HELO [10.0.0.13]) by mailfe11.swip.net (CommuniGate Pro SMTP 5.0.8) with ESMTP id 44536455; Tue, 13 Jun 2006 10:22:28 +0200 Message-ID: <448E75C1.6030808@gmail.com> Date: Tue, 13 Jun 2006 10:22:25 +0200 From: =?ISO-8859-1?Q?Steve_Fr=E9cinaux?= User-Agent: Thunderbird 1.5.0.2 (X11/20060522) MIME-Version: 1.0 To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.861 tagged_above=-999 required=2 tests=[AWL=-0.543, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_NEUTRAL=1.069, TW_GT=0.077] X-Spam-Score: -1.861 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:35 -0400 Cc: gedit-list Subject: ANNOUNCE: gedit 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 08:23:41 -0000 Hi all, gedit 2.15.3 is now available. gedit the official GNOME text editor. homepage: http://www.gnome.org/projects/gedit * Changes in 2.15.3 ==================== New features and fixes: - New gedit_commands_* API for plugins (Paolo Maggi) - Snippets support for space indentation (Jesse van den Kieboom) - gtk-doc enabled C plugin API documentation (Steve Frcinaux) - Next/Previous menu items (Paolo Maggi) - C/Python plugin skeleton generator (Steve Frcinaux) - Snippets plugin enhancements and fixes (Jesse van den Kieboom) - Misc improvements and bugfixes New and updated translations: - Alexander Shopov (bg) - Ankit Patel (gu) - Clytie Siddall (vi) - Francisco Javier F. Serrador (es) - Kjartan Maraas (nb) - Ignacio Casal Quinteiro (gl) - Jakub Friedl (cs) - Pema Geyleg (dz) - Priit Laes (et) - Theppitak Karoonboonyanan (th) * Download =========== http://ftp.gnome.org/pub/GNOME/sources/gedit/2.15/gedit-2.15.3.tar.gz md5sum: 07a99a6c45fa859a770a86bfa6289acd http://ftp.gnome.org/pub/GNOME/sources/gedit/2.15/gedit-2.15.3.tar.bz2 md5sum: e43046da726b9df3119ff8db00c7f4ad -- Steve http://tw.apinc.org From s.marechal@jejik.com Tue Jun 13 19:55:27 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 44B8A3B00C7 for ; Tue, 13 Jun 2006 19:55:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10258-05 for ; Tue, 13 Jun 2006 19:55:25 -0400 (EDT) Received: from smtp-vbr15.xs4all.nl (smtp-vbr15.xs4all.nl [194.109.24.35]) by menubar.gnome.org (Postfix) with ESMTP id 1E2F43B00D4 for ; Tue, 13 Jun 2006 19:55:24 -0400 (EDT) Received: from [192.168.1.2] (a82-92-145-91.adsl.xs4all.nl [82.92.145.91]) (authenticated bits=0) by smtp-vbr15.xs4all.nl (8.13.6/8.13.6) with ESMTP id k5DNsOqr025232 for ; Wed, 14 Jun 2006 01:54:25 +0200 (CEST) (envelope-from s.marechal@jejik.com) Message-ID: <448F504E.1060904@jejik.com> Date: Wed, 14 Jun 2006 01:54:54 +0200 From: Sander Marechal User-Agent: Thunderbird 1.5.0.2 (X11/20060522) MIME-Version: 1.0 To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by XS4ALL Virus Scanner X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.557 tagged_above=-999 required=2 tests=[AWL=0.042, BAYES_00=-2.599] X-Spam-Score: -2.557 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Subject: Gnome Hearts 0.1 Release Announcement X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: user and developer discussion for the gnome hearts game List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 23:55:27 -0000 Gnome Hearts 0.1 Release Announcement ------------------------------------- Lone Wolves [1] is happy to announce the release of Gnome Hearts version 0.1, an implementation of the classic hearts card game for the Gnome desktop. Gnome Hearts 0.1 is the first release since the project's inception on April 30, earlier this year. Gnome Hearts features configurable rule-sets such as Omnibus and Spot Hearts besides the standard rules. The game also has multiple computer players that are implemented in the Lua [2] scripting language. This allows for easy modification of the players. Also, the game can use any deck of cards installed for the Gnome Games package. [1] http://www.jejik.com [2] http://www.lua.org Downloading and installing Gnome Hearts --------------------------------------- Gnome Hearts can be downloaded from the project website at http://www.gnome-hearts.org/download or directly using this link [3]. At the moment only a .tar.gz source package is available. Binaries for various distributions will appear at a later date. Keep an eye out on the download page and the mailing list [4] for the announcements. In order to build the .tar.gz you need to have libgnomeui2.0, liblua50, liblualib50 and libglade2 plus their respective headers installed. See the README file in the package for more details. [3] http://www.jejik.com/files/gnome-hearts/gnome-hearts-0.1.tar.gz [4] http://lists.jejik.com/cgi-bin/mailman/listinfo/hearts Acknowledgments --------------- Many thanks to the people that contributed to this first release and those who cast a critical glance over the package so we could fix many issues before our first release. -- Sander Marechal http://www.gnome-hearts.org From gjc@inescporto.pt Tue Jun 13 20:28:23 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BD25B3B000E for ; Tue, 13 Jun 2006 20:28:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11220-02 for ; Tue, 13 Jun 2006 20:28:21 -0400 (EDT) Received: from animal.inescn.pt (correio.inescn.pt [194.117.24.9]) by menubar.gnome.org (Postfix) with ESMTP id A61433B00C8 for ; Tue, 13 Jun 2006 20:28:20 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by animal.inescn.pt (8.13.6/8.13.6/7) with ESMTP id k5E0RKZp008488; Wed, 14 Jun 2006 01:27:20 +0100 (WEST) Received: from pong.inescporto.pt (pong.inescn.pt [194.117.26.74]) by animal.inescn.pt (8.13.6/8.13.6/5) with ESMTP id k5E0Qv9X008443; Wed, 14 Jun 2006 01:26:57 +0100 (WEST) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by pong.inescporto.pt (Postfix) with ESMTP id A69A5119284; Wed, 14 Jun 2006 01:23:55 +0100 (WEST) From: "Gustavo J. A. M. Carneiro" To: PyGTK Content-Type: text/plain Date: Wed, 14 Jun 2006 01:26:56 +0100 Message-Id: <1150244816.5417.6.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at inescporto.pt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.351 tagged_above=-999 required=2 tests=[AWL=-0.040, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001, TW_GD=0.077, TW_GT=0.077] X-Spam-Score: -2.351 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: gnome-announce-list@gnome.org Subject: ANNOUNCE: PyGTK 2.9.1 (unstable) X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 00:28:23 -0000 I am pleased to announce version 2.9.1 of the Python bindings for GTK. The new release is available from ftp.gnome.org and its mirrors as soon as its synced correctly: http://ftp.gnome.org/pub/GNOME/sources/pygtk/2.9/pygtk-2.9.1.tar.gz This is an unstable release and should be used with caution. It requires either GTK+ 2.8.x or GTK+ >= 2.9.3. [ Note: this release also fixes a build problem for the recently released GnomePythonDesktop 2.15.3. ] Blurb: GTK is a toolkit for developing graphical applications that run on systems such as Linux, Windows and MacOS X. It provides a comprehensive set of GUI widgets, can display Unicode bidi text. It links into the Gnome Accessibility Framework through the ATK library. PyGTK provides a convenient wrapper for the GTK+ library for use in Python programs, and takes care of many of the boring details such as managing memory and type casting. When combined with PyORBit and gnome-python, it can be used to write full featured Gnome applications. Like the GTK+ library itself PyGTK is licensed under the GNU LGPL, so is suitable for use in both free software and proprietary applications. It is already in use in many applications ranging from small single purpose scripts up to large full features applications. pygtk-2.9.0 13-june-2006 - Allow gtk.TreeSortable.set_default_sort_func callback to be None (Johan, Patrick O'Brien) - Add API to unset the g_log handlers (#323786, Johan) - Allow the gtk module to be imported without DISPLAY (#316877, Johan) - Code cleanup and fixes considering Coverity reports (Johan) - Add codegen support for const-Object return type (#169204, Gustavo) - Add codgen support for unblocking threads around method calls (Gustavo) - Wrap gdk_event_handler_set (Johan) - Codegen reverse wrapper bug fix (#340162, Yevgen Muntyan) - Wrap GdkRegion (John Ehresman) - Add codegen support for ignore-type statement in override (Johan) - Add conditional support for gtk+ 2.10 API, especially printing (Johan, Finlay, Gustavo) - Complete the support for gtk.Container virtual methods (#341641, Gustavo) - Fix misc. reference leaks (Finlay, Gustavo) - Allow None parameter in pangocairo.CairoContext.set_font_options (Finlay) - Complete the support for gtk.CellRenderer virtual methods (#339431, Gustavo) - IconView.set_cursor method params 'cell' and 'start_editing' made optional (#343039, Ross Burton, Finlay) - Wrap a few more gdk_cairo_* methods (Finlay) - Add a 'selection' field to gdk.OWNER_CHANGE events (Finlay) - Allow None in gtk.Entry.set_inner_border() (Finlay) - gtk.Clipboard rich text methods (Finlay) - Add gtk.MessageDialog.set_image() (Finlay) - Wrap gtk_link_button_set_uri_hook() (Finlay) - Allow None in gtk.Widget.input_shape_combine_mask() (Finlay) - Allow gtk.LinkButton() constructor to optionally receive a label (Finlay) - Allow None in gtk.Label.set_mnemonic_widget() (Johan) - Wrap a bunch of X11 specific gdk methods (Gustavo) - Add gtk.SizeGroup.get_widgets() (Finlay) - Wrap gtk_style_lookup_color() (Finlay) - Wrap a bunch of gtk treeview grid lines methods (Finlay) - Better Drag and drop API support (Finlay) - Add -I option to codegen (defs search path) (Gustavo) PyGTK requires GTK+ >= 2.8.0 and Python >= 2.3.5 to build. Bug reports, as always, should go to Bugzilla; check out http://pygtk.org/developer.html and http://pygtk.org/feedback.html for links to posting and querying bug reports for PyGTK. -- Gustavo J. A. M. Carneiro The universe is always one step beyond logic From ebassi@gmail.com Tue Jun 13 20:32:58 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A8A4B3B00C8 for ; Tue, 13 Jun 2006 20:32:58 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11365-03 for ; Tue, 13 Jun 2006 20:32:57 -0400 (EDT) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.184]) by menubar.gnome.org (Postfix) with ESMTP id D60A23B000E for ; Tue, 13 Jun 2006 20:32:56 -0400 (EDT) Received: by nf-out-0910.google.com with SMTP id y38so3928nfb for ; Tue, 13 Jun 2006 17:31:56 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:subject:from:to:cc:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; b=oUq+Y9uyXse5jWbXHN+a1hlPNgEB4SSPDgg8dWXx+1GsvRNsktrt4C4g3H5vMlt23VjpIETSUuVlhG6R9+5WQPa1f/yUs5fj1vO2K5m9rUq0MSBz2x1DxlwhH3zgxxsgbcw07IUW4AZgu+4ffuEd58TvM5NOX7EJyv1wtcIGIDA= Received: by 10.48.225.16 with SMTP id x16mr53191nfg; Tue, 13 Jun 2006 17:31:56 -0700 (PDT) Received: from ?192.168.1.70? ( [86.136.65.180]) by mx.gmail.com with ESMTP id l32sm22126nfa.2006.06.13.17.31.56; Tue, 13 Jun 2006 17:31:56 -0700 (PDT) From: Emmanuele Bassi To: gnome-announce-list@gnome.org Content-Type: text/plain Date: Wed, 14 Jun 2006 01:31:50 +0100 Message-Id: <1150245110.28862.8.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.337 tagged_above=-999 required=2 tests=[AWL=0.263, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.337 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: gnome-utils-list@gnome.org Subject: [ANNOUNCE] Gnome-utils 2.15.4 - "Ain't that another brown paper bag?" X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 00:32:58 -0000 Good news everyone! As last gnome-utils release contained a glitch that broke the build, here's a Brown Paper Bag Release ready: gnome-utils 2.15.4. Many thanks to Matthias Clasen and Fryderyk Dziarmagowski for finding the glitch. As usual, you can download the sources from here: http://download.gnome.org/sources/gnome-utils/2.15/ Enjoy, and remember to file any bug you might find! =================================================================== GNOME Utilities 2.15.4 (June 14th 2006) - "Ain't that another brown paper bag?" * "Brown paper bag" release Baobab * Nothing Dictionary * Remove wrong headers from the build (Matthias Clasen, #344773) Floppy * Nothing Screenshot * Fix included files Search Tool * Nothing System Log Viewer * Nothing Translations updates: Francisco Javier F. Serrador (es), Ankit Patel (gu) Ciao, Emmanuele. From cworth@cworth.org Wed Jun 14 12:07:42 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 50C153B03B2 for ; Wed, 14 Jun 2006 12:07:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05531-07 for ; Wed, 14 Jun 2006 12:07:31 -0400 (EDT) Received: from theworths.org (cworth.org [217.160.249.188]) by menubar.gnome.org (Postfix) with ESMTP id D79923B045D for ; Wed, 14 Jun 2006 12:07:30 -0400 (EDT) Received: (qmail 20098 invoked from network); 14 Jun 2006 12:06:35 -0400 Received: from localhost (HELO raht.cworth.org) (127.0.0.1) by localhost with SMTP; 14 Jun 2006 12:06:35 -0400 Date: Wed, 14 Jun 2006 09:01:56 -0700 Message-ID: <87pshbd8uj.wl%cworth@cworth.org> From: Carl Worth To: cairo-announce@cairographics.org Subject: cairo snapshot 1.1.8 now available User-Agent: Wanderlust/2.14.0 (Africa) Emacs/21.4 Mule/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: multipart/signed; boundary="pgp-sign-Multipart_Wed_Jun_14_09:01:49_2006-1"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.441 tagged_above=-999 required=2 tests=[AWL=-0.054, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, TW_XC=0.077] X-Spam-Score: -2.441 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 12:46:39 -0400 Cc: gnome-announce-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 16:07:42 -0000 --pgp-sign-Multipart_Wed_Jun_14_09:01:49_2006-1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable A new cairo snapshot 1.1.8 is now available from: http://cairographics.org/snapshots/cairo-1.1.8.tar.gz which can be verified with: http://cairographics.org/snapshots/cairo-1.1.8.tar.gz.sha1 ad660fe7bfede1882f4b81798e3e0ef8fe7ecb9b cairo-1.1.8.tar.gz http://cairographics.org/snapshots/cairo-1.1.8.tar.gz.sha1.asc (signed by Carl Worth) Additionally, a git clone of the source tree: git clone git://git.cairographics.org/git/cairo will include a signed 1.1.8 tag which points to a commit named: dd859b8736bb4d1bcf3ed78d0bd1f72a7aad9ca9 which can be verified with: git verify-tag 1.1.8 and can be checked out with a command such as: git checkout -b build 1.1.8 This is the fourth in a series of snapshots working toward the 1.2 release of cairo. At this point, all major features of the 1.2 release are in place, leaving just a few bug fixes left. In particular, there will be no additional API changes between this 1.1.8 snapshot and the 1.2 release. The announcement for 1.1.6 mentioned several API changes being considered. Only one of these changes was actually implemented (set_dpi -> fallback_resolution). This change does introduce one source-level incompatibility with respect to previous 1.1.x snapshots, so see below for details. What is cairo =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Cairo is a 2D graphics library with support for multiple output devices. Currently supported output targets include the X Window System, win32, and image buffers. Experimental backends include OpenGL (through glitz), Quartz, XCB, PostScript and PDF file output. Cairo is designed to produce consistent output on all output media while taking advantage of display hardware acceleration when available (for example, through the X Render Extension). The cairo API provides operations similar to the drawing operators of PostScript and PDF. Operations in cairo including stroking and filling cubic B=E9zier splines, transforming and compositing translucent images, and antialiased text rendering. All drawing operations can be transformed by any affine transformation (scale, rotation, shear, etc.). Cairo has been designed to let you draw anything you want in a modern 2D graphical user interface. At the same time, the cairo API has been designed to be as fun and easy to learn as possible. If you're not having fun while programming with cairo, then we have failed somewhere---let us know and we'll try to fix it next time around. Cairo is free software and is available to be redistributed and/or modified under the terms of either the GNU Lesser General Public License (LGPL) version 2.1 or the Mozilla Public License (MPL) version 1.1. Where to get more information about cairo =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D The primary source of information about cairo is: http://cairographics.org/ The latest releases of cairo can be found at: http://cairographics.org/releases Snapshots of in-development versions of cairo: http://cairographics.org/snapshots The programming manual for using cairo: http://cairographics.org/manual Mailing lists for contacting cairo users and developers: http://cairographics.org/lists Answers to some frequently asked questions about cairo: http://cairographics.org/FAQ What's new in 1.1.8 compared to 1.1.6 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ** API Change ** ---------------- According to the plan mentioned in the 1.1.6 notes, one source-level incompatible change has been implemented. The following three functions have been removed from cairo's API: cairo_pdf_surface_set_dpi cairo_ps_surface_set_dpi cairo_svg_surface_set_dpi and in their place the following function has been added: cairo_surface_set_fallback_resolution The signature and semantics of the function remains the same, so it is a simple matter of changing the name of the function when calling it. As a transition mechanism, this snapshot will (on many systems) build to include the old symbols so that code previously compiled will still run. However, all source code using the old names must be updated before it will compile. And the upcoming 1.2 release is not anticipated to include the old symbols. Finally, it should be pointed out that the old symbols never existed in the supported API of any stable release of cairo. (In the stable 1.0 releases the PDF, PS, and SVG backends were advertised as experimental and unstable.) And, as always, cairo continues to maintain source and binary compatibility between major releases. So applications compiled against supported backends in a stable release of cairo (1.0.4 say) will continue to compile and run without modification against new major releases (1.2.0 say) without modification. API additions ------------- The following new functions have been added to cairo's API: cairo_surface_get_content cairo_debug_reset_static_data cairo_image_surface_get_data cairo_image_surface_get_format cairo_image_surface_get_stride cairo_win32_font_face_create_for_hfont New, backend-specific pkg-config files -------------------------------------- In addition to the original cairo.pc file, cairo will also now install a pkg-config files for each configured backend, (for example cairo-pdf.pc, cairo-svg.pc, cairo-xlib.pc, cairo-win32.pc, etc.) this also includes optional font backends (such as cairo-ft.pc) and the optional png functionality (cairo-png.pc). These new pkg-config files should be very convenient for allowing cairo-using code to easily check for the existing of optional functionality in cairo without having to write complex rules to grub through cairo header files or the compiled library looking for symbols. Printing backend (PS, PDF, and SVG) ----------------------------------- Improving the quality of the "printing" backends has been a priority of the development between cairo 1.1.6 and cairo 1.1.8. The big improvement here is in the area of text output. Previously, at best, text was output as paths without taking advantage of any font support available in the output file format. Now, at the minimum text paths will be shared by using type3 fonts (for PS and PDF---and similarly, defs for SVG). Also, if possible, type3 and truetype fonts will be embedded in PostScript and PDF output. There are still some known bugs with this, (for example, selecting text in a cairo-generated PDF file with an embedded truetype font does not work). So there will be some more changes in this area before cairo 1.2, but do try test this feature out as it exists so far. Many thanks to Kristian H=F8gsberg for the truetype and type1 font embedding. win32 backend ------------- Performance improvements by preferring GDI over pixman rendering when possi= ble. Fixes for text rendering. xlib backend ------------ Fix potentially big performance bug by making xlib's create_similar try harder to create a pixmap of a depth matching that of the screen. Bug fixes --------- Among various other fixes, the following bugs listed in bugzilla have been fixed: Bug 2488: Patch to fix pixman samping location bug (#2488). https://bugs.freedesktop.org/show_bug.cgi?id=3D2488 Bug 4196: undef MIN an MAX before defining to avoid duplicate definition https://bugs.freedesktop.org/show_bug.cgi?id=3D4196 Bug 4723: configure.in: Fix m4 quoting when examining pkg-config version https://bugs.freedesktop.org/show_bug.cgi?id=3D4723 Bug 4882: Flag Sun's X server has having buggy_repeat. https://bugs.freedesktop.org/show_bug.cgi?id=3D4882 Bug 5306: test/pdf2png: Add missing include of stdio.h https://bugs.freedesktop.org/show_bug.cgi?id=3D5306 Bug 7075: Fix make clean to remove cairo.def https://bugs.freedesktop.org/show_bug.cgi?id=3D7075 (Many thanks to Behdad Esfahbod for helping us track down and fix many of these.) Detailed list of changes since 1.1.6 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Tag '1.1.8' created by Carl Worth at 2006-06-14 16:17 -= 0700 cairo 1.1.8 snapshot -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEkCju6JDdNq8qSWgRAjdQAJ9jjY8MwIcyhpSxf8Yn50izT6wXRwCeJN3x XKToq1aoRwjXc1HujBI0wVo=3D =3DtwxK -----END PGP SIGNATURE----- Changes since 1.1.6: Behdad Esfahbod: Bug 7075: Fix make clean to remove cairo.def Move cairo.pc into src/. Add backend-specific pkg-config files. Rename cairo-wideint.h to cairo-wideint-private.h. Bertram Felgenhauer: Patch to fix pixman samping location bug (#2488). Bug 4723: configure.in: Fix m4 quoting when examining pkg-config vers= ion Brian Cameron: Bug 4882: Flag Sun's X server has having buggy_repeat. Carl Worth: Increment CAIRO_VERSION to 1.1.7 after making the 1.1.6 snapshot Revert "pdf2png: Use new poppler_page_render to render directly throu= gh cairo." Don't build pdf2svg until we start depending on newer poppler ROADMAP: non-substantive changes Add select-font-face test for whosing multiple faces at once. Fix typo in select-font-face.c and update reference images PS: Remove stale comment (the stuff TODO is done already) PS: Move type 3 support out into cairo-ps-font.c PS: Put functions in more logical order. Rename cairo-ps-font to cairo-scaled-font-subsets (file names only) Generalize font subsetting code in cairo-scaled-font-subsets for use = by more than just PS backend Fix cairo_output_stream_destroy to do nothing on nil stream objects. Tweak names to match those of cairo-scaled-font-subsets SVG: Discard custom font subsetting in favor of sharing cairo-scaled-= font-subsets Add documentation for the _cairo_scaled_font_subsets interface. Fix memory leak in _cairo_scaled_font_subsets_foreach PDF: Use cairo_pdf_resource_t more consistently. PDF: Fold (unused) cairo_pdf_document_t into cairo_pdf_surface_t Change scaled_font_subsets_callback to have return type of void. PS: Fix arguments to setcachedevice PS: Remove the fallback case from _cairo_ps_surface_show_glyphs PDF: Use consistent style for typedef struct and macro naming. PDF: Move Resources dictionary up from Page objects to Pages object. PDF: Add Type3 font support to PDF output. pixman: Fix build to enable warnings again pixman: Add default case to quiet compiler warning pixman: Remove unused code to quiet compiler warnings ROADMAP: Note that PDF type 3 font support is done PDF: Fix broken per-page sizes in PDF output. xlib: Rename surface->format to surface->xrender_format to avoid conf= usion xlib: Style cleanups for _cairo_xlib_surface_create_similar PDF: Squelch a couple of bogus "may be used uninitialized" warnings. Move prototype of cairo_debug_reset_static_data from uninstalled cair= o-debug.h to cairo.h Codify 1.0 behavior of cairo_set_line_width as a feature, not a bug. SVG: Fix for line-width-scale New test: dash-scale PDF: Rename pdf_stroke_t to pdf_path_into_t for future sharing with f= ill PDF: Share path callbacks for fill and stroke. Clarify the documentation for cairo_set_dash PDF: Move dash operator before path construction operators. ROADMAP: Note that the cairo_set_line_width issue is resolved Typo fixes cairo-xlib-test: Rename cairo_test_xlib function prefix to cairo_xlib= _test PDF: Add new, private test function: cairo_pdf_test_force_fallbacks Add new fallback-resolution test for bug in cairo_pdf_surface_set_dpi New API: Add new function cairo_surface_get_content Note the changed semantics of cairo_surface_set_device_offset New API: Add cairo_image_surface_get_{data,format,stride} Move rectangle functions to new cairo-rectangle.c Remove extraneous whitespace from "blank" lines. Remove trailing whitespace from lines that look like comments. Remove trailing whitespace from lines with a single brace. Remove all remaining trailing whitespace. Remove initial, final, and duplicate blank lines. CODING_STYLE: Add notes on avoiding trailing whitespace. CODING_STYLE: Fix misspellings. Fix bogus cairo_rectangle_fixed_t to be cairo_rectangle_int16_t. Remove CAIRO_{MIN,MAX}SHORT which did not distinguish signed vs. unsi= gned. win32: Add conditional definitions for INT16_{MIN,MAX} and UINT16_MAX= now that we use them. Fix MAX vs. MIN bug introduced with rename away from CAIRO_MINSHORT Change all instances of UINT16_MAX to INT16_MAX to avoid new bug. Remove debugging "prints" of images from test/device-offset.c Add new test get-group-target (currently failing with paginated). Fix bug in get-group-target (in the test itself) letting it now pass. Rename ft-text-vertical-layout reference image according to standard = convention. Ignore ft-text-vertical-layout binary New API: Replace cairo_{ps,pdf,svg}_set_dpi with new cairo_surface_se= t_fallback_resolution. Add REPLACED_BY macros to help porting to new set_fallback_resolution Rename device_{x,y}_offset to {x,y}_device_offset for better consiten= cy/grepability doc: SGML template churn Change {x,y}_device_offset values to a device_transform matrix. Hook up device scaling so fallback_resolution starts working. Add text and stroke to falback-resolution test (showing bugs in each). Fix line width for stroking with a device_scale. Fix font size when drawing text with a device_scale. Add cairo_{ps,svg}_test_force_fallbacks so tests can force fallbacks. Test PS and SVG backends in addition to PDF in test/fallback-resoluti= on. Clarify that fallback_resolution acts on a per-page granularity. Don't create a new scaled_font if there's a device_offset but no devi= ce_scale. Change _cairo_meta_surface_get_extents to return a bounded size. ROADMAP: Note that cairo_surface_set_fallback_resolution is in place = now. Add cairo-ps-test.h and cairo-svg-test.h to Makefile.am Add aliases for deprecated cairo_{pdf,ps,svg}_surface_set_dpi Change return type of _cairo_scaled_glyph_lookup to allow UNSUPPORTED. PS, PDF: Re-organize handling of bitmapped fonts to avoid invalid out= put. Merge branch 'truetype-subsetting' into cairo Merge branch 'type1-subsetting' into cairo Add new zero-alpha test to demonstrate (X server?) bug found by Paul = Giblock test/zero-alpha: Drop REPS from 100 to 10 for a faster test. Bug 4196: undef MIN an MAX before defining to avoid duplicate definit= ion ft: If glyph->format is not OUTLINE use _render_glyph_bitmap to coerc= e to a bitmap ROADMAP: Update with PDF bugs from minefield test. Slip non-1.0 regre= ssions off of 1.2. Add zero-alpha reference image to Makefile.am for the sake of make di= st PS PDF: Update reference images due to truetype subsetting Update refefence images due to pattern source shift. Update version to 1.1.8 and add notes to NEWS file. Christian Biesinger: Make BeOS compile again Add missing reference images to EXTRA_DIST Distribute make-html.pl Add "html" Makefile target to run make-html.pl Dom Lachowicz: Bug 5306: test/pdf2png: Add missing include of stdio.h Emmanuel Pacaud: SVG: Sets something sane in width and height if acquire source image = fails. SVG: Remove special case for unclipped CLEAR and SOURCE in paint when SVG: Fix cairo_svg_surface_restrict_to_version. Use CLEAR operator for initialisation of similar surface with a trans= parent color. SVG: Add reference images for fill-and-stroke-alpha. SVG: Implementation of glyph cache SVG: Emit glyphs at the beginning of defs section. SVG: Sets fallback resolution when compositing a meta surface. Jeff Muizelaar: Only destroy scaled glyphs if they are not in the cache. Jinghua Luo: glitz: Don't hardcode content type when initializing cairo surface Merge branch 'master' of git+ssh://jinghua@git.cairographics.org/git/= cairo Add ft-text-vertical-layout test case for vertical layout. freetype: Fix for test case ft-text-vertial-layout. Make image-*-ref.png image as reference image. freetype: Ignore global advance unconditionally. freetype: rework _transform_glyph_bitmap. ignore FC_MATRIX in font pattern. freetype: build fix for _transform_glyph_bitmap. xlib: bugfix for #7172. freetype: Return an error if the glyph format isn't outline or bitmap ROADMAP: Mark bugs FC_ADVANCE and _transform_glyph_bitmap as fixed. Kristian H=C3=B8gsberg: Documentation fixes (cairo_font_create -> cairo_scaled_font_create). Merge branch 'master' of git://git.freedesktop.org/git/cairo Update pdf font emit code to try to emit a truetype subset before typ= e3. Output pdf dicts for truetype subset fonts. Hook _cairo_truetype_subset_init() up to existing truetype subset cod= e. Switch to using Tm for text positioning and scale type3 fonts to unit= size. Add support for truetype subset to ps backend. Print out ps comment in the truetype emit code and update type3 ps co= mment. Remember to destroy cairo_pdf_ft_font_t once we've generated the subs= et. Set libcairo_font_subset_sources for ps, pdf, and svg backends. Remember to call _cairo_truetype_subset_fini() after outputting subse= t. Pull in type1 subset code from the cvs repo it was sitting in. Add code to emit type1 dicts to the pdf backend. Use RD and ND for delimiting glyph data instead of -| and |-. Only use the word wrap stream when emitting paths. Make ps surface use type1 subset code. Track glyph subset indices and use them in the output. Look for /-| or /RD tokens to determine the charstring delimiter toke= ns. Consolidate a few arrays into a array of structs. Remember to call cairo_type1_font_subset_destroy(). Handle seac charstring commands correctly. Clarify licensing of float formatting code. Remove cairo_public from _cairo_lzw_compress() definition. Robert O'Callahan: [xlib] Have create_similar try harder to create the right surface Stuart Parmenter: [win32] Allow for creating a font from a HFONT [win32] implement win32 show_glyphs [win32] fix win32_show_glyphs glyph offsets Tim Mooney: bug #6890: fix the signature for main() in pthread-show-text Vladimir Vukicevic: [xlib] implement _cairo_xlib_surface_show_glyphs [xlib] only do glyph extents computation if non-solid source. [win32] Add SHADEBLENDCAPS and SB_NONE definitions for older SDKs [win32] Add GdiFlush() calls after DIB creation, as per MSDN docs [win32] GDI is nearly always faster than pixman; use it whenever poss= ible CAIRO_SCALED_FONT_TYPE_* -> CAIRO_FONT_TYPE_* Whitespace fix Define kCGBitmapByteOrder32Host for when the SDK doesn't define it Zakharov Mikhail: pixman: fix compilation on HP-UX 11.11 --- .gitignore | 1=20 CODING_STYLE | 22=20 Makefile.am | 8=20 NEWS | 132 + RELEASING | 2=20 ROADMAP | 72=20 configure.in | 68=20 doc/public/Makefile.am | 1=20 doc/public/tmpl/cairo-pdf.sgml | 7=20 doc/public/tmpl/cairo-ps.sgml | 7=20 doc/public/tmpl/cairo-status.sgml | 7=20 doc/public/tmpl/cairo-svg.sgml | 7=20 doc/tutorial/src/include/cairo-tutorial-gtk.h | 8=20 doc/tutorial/src/include/cairo-tutorial-pdf.h | 4=20 doc/tutorial/src/include/cairo-tutorial-png.h | 4=20 doc/tutorial/src/include/cairo-tutorial-xlib.h | 2=20 doc/tutorial/src/include/cairo-tutorial.h | 1=20 doc/tutorial/src/lca.c | 6=20 pixman/src/Makefile.am | 4=20 pixman/src/fbcompose.c | 44=20 pixman/src/fbedge.c | 5=20 pixman/src/fbedgeimp.h | 8=20 pixman/src/fbmmx.c | 559 +++--- pixman/src/fbmmx.h | 2=20 pixman/src/fbpict.c | 39=20 pixman/src/fbpict.h | 3=20 pixman/src/fbtrap.c | 24=20 pixman/src/icblt.c | 96 - pixman/src/icbltone.c | 57=20 pixman/src/iccolor.c | 2=20 pixman/src/icformat.c | 30=20 pixman/src/icimage.c | 99 - pixman/src/icimage.h | 9=20 pixman/src/icint.h | 55=20 pixman/src/icpixels.c | 1=20 pixman/src/icrect.c | 30=20 pixman/src/icrop.h | 6=20 pixman/src/icstipple.c | 6=20 pixman/src/ictransform.c | 5=20 pixman/src/ictrap.c | 12=20 pixman/src/ictri.c | 31=20 pixman/src/icutil.c | 3=20 pixman/src/pixman-xserver-compat.h | 3=20 pixman/src/pixman.h | 20=20 pixman/src/pixregion.c | 76=20 pixman/src/pixregionint.h | 9=20 pixman/src/renderedge.c | 13=20 pixman/src/slim_internal.h | 4=20 src/.gitignore | 1=20 src/Makefile.am | 60=20 src/cairo-analysis-surface.c | 11=20 src/cairo-arc.c | 6=20 src/cairo-array.c | 33=20 src/cairo-atsui-font.c | 59=20 src/cairo-backend.pc.in | 12=20 src/cairo-base85-stream.c | 5=20 src/cairo-beos-surface.cpp | 5=20 src/cairo-beos.h | 1=20 src/cairo-cache.c | 32=20 src/cairo-clip-private.h | 8=20 src/cairo-clip.c | 55=20 src/cairo-debug.c | 3=20 src/cairo-directfb-surface.c | 104 - src/cairo-directfb.h | 13=20 src/cairo-font-options.c | 60=20 src/cairo-font-subset-private.h | 1=20 src/cairo-font-subset.c | 182 +- src/cairo-font.c | 42=20 src/cairo-ft-font.c | 471 +++-- src/cairo-glitz-surface.c | 48=20 src/cairo-gstate-private.h | 2=20 src/cairo-gstate.c | 185 -- src/cairo-hash.c | 54=20 src/cairo-hull.c | 2=20 src/cairo-image-surface.c | 132 + src/cairo-lzw.c | 4=20 src/cairo-matrix.c | 147 - src/cairo-meta-surface.c | 53=20 src/cairo-operator.c | 8=20 src/cairo-output-stream.c | 28=20 src/cairo-paginated-surface.c | 28=20 src/cairo-path-bounds.c | 8=20 src/cairo-path-data.c | 14=20 src/cairo-path-fill.c | 3=20 src/cairo-path-stroke.c | 22=20 src/cairo-path.c | 32=20 src/cairo-pattern.c | 122 - src/cairo-pdf-surface.c | 2009 +++++++++++++------= ----- src/cairo-pdf-test.h | 20=20 src/cairo-pdf.h | 5=20 src/cairo-pen.c | 18=20 src/cairo-png.c | 35=20 src/cairo-polygon.c | 2=20 src/cairo-ps-surface.c | 982 +++++------ src/cairo-ps-test.h | 20=20 src/cairo-ps.h | 5=20 src/cairo-quartz-private.h | 2=20 src/cairo-quartz-surface.c | 37=20 src/cairo-quartz.h | 1=20 src/cairo-rectangle.c | 85 + src/cairo-region.c | 17=20 src/cairo-scaled-font-subsets-private.h | 267 +++ src/cairo-scaled-font-subsets.c | 384 ++++ src/cairo-scaled-font.c | 195 +- src/cairo-slope.c | 6=20 src/cairo-spline.c | 3=20 src/cairo-stroke-style.c | 1=20 src/cairo-surface-fallback-private.h | 2=20 src/cairo-surface-fallback.c | 145 - src/cairo-surface.c | 461 +++-- src/cairo-svg-surface.c | 770 +++++---- src/cairo-svg-test.h | 20=20 src/cairo-svg.h | 9=20 src/cairo-traps.c | 51=20 src/cairo-type1-subset.c | 1040 ++++++++++++ src/cairo-unicode.c | 39=20 src/cairo-wideint-private.h | 11=20 src/cairo-wideint.c | 18=20 src/cairo-win32-font.c | 196 +- src/cairo-win32-private.h | 11=20 src/cairo-win32-surface.c | 299 ++- src/cairo-win32.h | 3=20 src/cairo-xcb-surface.c | 108 - src/cairo-xlib-private.h | 4=20 src/cairo-xlib-screen.c | 32=20 src/cairo-xlib-surface.c | 698 ++++---- src/cairo-xlib-test.h | 3=20 src/cairo-xlib-xrender.h | 1=20 src/cairo-xlib.h | 1=20 src/cairo.c | 246 +- src/cairo.h | 61=20 src/cairoint.h | 182 +- src/test-fallback-surface.c | 17=20 src/test-meta-surface.c | 9=20 src/test-paginated-surface.c | 5=20 test/.gitignore | 10=20 test/Makefile.am | 31=20 test/buffer-diff.c | 3=20 test/buffer-diff.h | 4=20 test/cairo-test-directfb.c | 20=20 test/cairo-test.c | 80=20 test/cairo-test.h | 5=20 test/caps-joins.c | 2=20 test/clip-all.c | 2=20 test/clip-nesting.c | 4=20 test/clip-operator.c | 14=20 test/dash-offset-negative.c | 8=20 test/dash-scale-ps-argb32-ref.png |binary test/dash-scale-ref.png |binary test/dash-scale.c | 125 + test/device-offset-ref.png |binary test/device-offset-rgb24-ref.png |binary test/device-offset.c | 87 + test/fallback-resolution.c | 178 ++ test/fill-and-stroke-alpha-svg-argb32-ref.png |binary test/fill-and-stroke-alpha-svg-rgb24-ref.png |binary test/fill-and-stroke.c | 2=20 test/filter-nearest-offset.c | 2=20 test/font-face-get-type.c | 4=20 test/ft-text-vertical-layout-pdf-argb32-ref.png |binary test/ft-text-vertical-layout-pdf-rgb24-ref.png |binary test/ft-text-vertical-layout-ps-argb32-ref.png |binary test/ft-text-vertical-layout-ps-rgb24-ref.png |binary test/ft-text-vertical-layout-ref.png |binary test/ft-text-vertical-layout-rgb24-ref.png |binary test/ft-text-vertical-layout-svg-argb32-ref.png |binary test/ft-text-vertical-layout-svg-rgb24-ref.png |binary test/ft-text-vertical-layout.c | 131 + test/get-and-set.c | 2=20 test/get-group-target-ref.png |binary test/get-group-target.c | 90 + test/gradient-alpha-ref.png |binary test/gradient-alpha-rgb24-ref.png |binary test/gradient-alpha.c | 2=20 test/imagediff.c | 4=20 test/line-width-scale-ps-argb32-ref.png |binary test/line-width-scale-ref.png |binary test/line-width-scale.c | 30=20 test/linear-gradient-ref.png |binary test/linear-gradient.c | 8=20 test/mask-ref.png |binary test/mask-rgb24-ref.png |binary test/mask.c | 8=20 test/operator-clear.c | 16=20 test/operator-source-ref.png |binary test/operator-source-rgb24-ref.png |binary test/operator-source.c | 18=20 test/pdf-features.c | 4=20 test/pdf2png.c | 39=20 test/pixman-rotate-rgb24-ref.png |binary test/pixman-rotate-svg-argb32-ref.png |binary test/pixman-rotate-svg-rgb24-ref.png |binary test/ps-features.c | 2=20 test/pthread-show-text.c | 2=20 test/push-group-ref.png |binary test/push-group-rgb24-ref.png |binary test/push-group.c | 2=20 test/read-png.c | 1=20 test/rectangle-rounding-error.c | 10=20 test/rel-path.c | 4=20 test/select-font-face-pdf-argb32-ref.png |binary test/select-font-face-ps-argb32-ref.png |binary test/select-font-face-ref.png |binary test/select-font-face-svg-argb32-ref.png |binary test/select-font-face-svg-rgb24-ref.png |binary test/select-font-face.c | 83=20 test/self-copy.c | 6=20 test/show-text-current-point-pdf-argb32-ref.png |binary test/show-text-current-point-ps-argb32-ref.png |binary test/source-clip.c | 2=20 test/surface-finish-twice.c | 1=20 test/surface-pattern.c | 2=20 test/svg-clip.c | 2=20 test/text-antialias-gray-pdf-argb32-ref.png |binary test/text-antialias-gray-ps-argb32-ref.png |binary test/text-antialias-none-pdf-argb32-ref.png |binary test/text-antialias-none-ps-argb32-ref.png |binary test/text-antialias-subpixel-pdf-argb32-ref.png |binary test/text-antialias-subpixel-ps-argb32-ref.png |binary test/text-cache-crash.c | 1=20 test/text-pattern-ref.png |binary test/text-pattern-rgb24-ref.png |binary test/text-pattern.c | 10=20 test/text-rotate.c | 2=20 test/transforms.c | 2=20 test/trap-clip-ref.png |binary test/trap-clip-rgb24-ref.png |binary test/trap-clip.c | 4=20 test/unbounded-operator.c | 16=20 test/user-data.c | 2=20 test/write-png.c | 4=20 test/xlib-surface.c | 20=20 test/xmalloc.c | 1=20 test/zero-alpha-ref.png |binary test/zero-alpha.c | 97 + 235 files changed, 8579 insertions(+), 4836 deletions(-) --pgp-sign-Multipart_Wed_Jun_14_09:01:49_2006-1 Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEkDL06JDdNq8qSWgRAlbkAJ92YIDTUafsLa/U2ZTiKZ9zO0WmFgCfc252 2Y2uyD4rr4R2jx+43617QZk= =vX2e -----END PGP SIGNATURE----- --pgp-sign-Multipart_Wed_Jun_14_09:01:49_2006-1-- From janina@opera.rednote.net Wed Jun 14 12:12:42 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 912A73B029F for ; Wed, 14 Jun 2006 12:12:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19357-07 for ; Wed, 14 Jun 2006 12:12:39 -0400 (EDT) Received: from opera.rednote.net (opera.rednote.net [70.84.142.212]) by menubar.gnome.org (Postfix) with ESMTP id ED02F3B0281 for ; Wed, 14 Jun 2006 12:12:38 -0400 (EDT) Received: from opera.rednote.net (localhost.localdomain [127.0.0.1]) by opera.rednote.net (8.13.6/8.13.5) with ESMTP id k5EGAtdS007700; Wed, 14 Jun 2006 16:10:55 GMT Received: (from janina@localhost) by opera.rednote.net (8.13.6/8.13.6/Submit) id k5EGAtD9007699; Wed, 14 Jun 2006 12:10:55 -0400 Date: Wed, 14 Jun 2006 12:10:55 -0400 From: Janina Sajka To: parente@cs.unc.edu Subject: Re: lsr-0.2.1 Message-ID: <20060614161055.GV2259@rednote.net> References: <5308fd2c0606120606p43b30477o4e73cfad155dcaa7@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5308fd2c0606120606p43b30477o4e73cfad155dcaa7@mail.gmail.com> User-Agent: Mutt/1.4.2.1i X-Operating-System: Linux opera.rednote.net 2.6.16-1.2122_FC5spksmp Organization: Capital Accessibility LLC (http://www.CapitalAccessibility.com) X-PGP-Key: http://www.CapitalAccessibility.com/JaninaSajka_gpg_key.html X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.568 tagged_above=-999 required=2 tests=[AWL=0.031, BAYES_00=-2.599] X-Spam-Score: -2.568 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 12:46:56 -0400 Cc: gnome-announce-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 16:12:42 -0000 Peter Parente writes: > ============== > * What is it ? > ============== > > Linux Screen Reader (LSR) is an extensible assistive technology for people > with > disabilities. The design philosophy behind LSR is to provide a core platform > that enables the development of LSR extensions for improving desktop > application accessibility and usability and shields extension developers > from > the intricacies of the desktop accessibility architecture. > snip snip Where can I get it ? rpm packages for Fedora Core 5 available from: ftp://SpeakupModified.Org/fedora/rednote/ The binary is under RPMS, and the source under SRPMS as usual with Fedora. Special Note: You may need to upgrade your Gnome Desktop to Fedora Development. If you find things not working with the current release and updated Gnome environment, try: yum --disablerepo='*' --enablerepo=development groupupdate 'GNOME Desktop Environment' Note the above command is issued on one line, though it's probably been broken into at least two lines in this email message. -- Janina Sajka Phone: +1.240.715.1272 Partner, Capital Accessibility LLC http://CapitalAccessibility.Com Marketing the Owasys 22C talking screenless cell phone in the U.S. and Canada--Go to http://ScreenlessPhone.Com to learn more. Chair, Accessibility Workgroup Free Standards Group (FSG) janina@freestandards.org http://a11y.org From janina@opera.rednote.net Wed Jun 14 12:17:56 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 08CF33B0156; Wed, 14 Jun 2006 12:17:56 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28336-10; Wed, 14 Jun 2006 12:17:54 -0400 (EDT) Received: from opera.rednote.net (opera.rednote.net [70.84.142.212]) by menubar.gnome.org (Postfix) with ESMTP id 2375F3B03DA; Wed, 14 Jun 2006 12:17:54 -0400 (EDT) Received: from opera.rednote.net (localhost.localdomain [127.0.0.1]) by opera.rednote.net (8.13.6/8.13.5) with ESMTP id k5EGH5iU007764; Wed, 14 Jun 2006 16:17:05 GMT Received: (from janina@localhost) by opera.rednote.net (8.13.6/8.13.6/Submit) id k5EGH5N6007763; Wed, 14 Jun 2006 12:17:05 -0400 Date: Wed, 14 Jun 2006 12:17:05 -0400 From: Janina Sajka To: Willie Walker Subject: Re: Announcing Orca 0.2.5 rpms Message-ID: <20060614161705.GW2259@rednote.net> References: <1150069937.5071.4.camel@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1150069937.5071.4.camel@localhost> User-Agent: Mutt/1.4.2.1i X-Operating-System: Linux opera.rednote.net 2.6.16-1.2122_FC5spksmp Organization: Capital Accessibility LLC (http://www.CapitalAccessibility.com) X-PGP-Key: http://www.CapitalAccessibility.com/JaninaSajka_gpg_key.html X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.569 tagged_above=-999 required=2 tests=[AWL=0.030, BAYES_00=-2.599] X-Spam-Score: -2.569 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 12:47:08 -0400 Cc: gnome-announce-list@gnome.org, gnome-accessibility-list@gnome.org, orca-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 16:17:56 -0000 rpm packages of Orca-0.2.5 for Fedora Core 5 are now available from: ftp://SpeakupModified.Org/fedora/rednote/ The binary is under RPMS, and the source under SRPMS as usual with Fedora. Installation There is yet some unresolved dependency issue with these rpms, so they probably will need to be installed using the --nodeps option as follows: rpm -Uv --nodeps orca-0.2.5-1.i386.rpm However, I can attest the resulting installation works for me on two different systems. I have first run: orca -t from the console, as the same user I am in the gui desktop. Once on the desktop, I have issued Alt-F2 and typed: orca -t again to get things started. Seems wrong, but is working for me on two systems. Special Note: You may need to upgrade your Gnome Desktop to Fedora Development. If you find things not working with the current release and updated Gnome environment, try: yum --disablerepo='*' --enablerepo=development groupupdate 'GNOME Desktop Environment' Note the above command is issued on one line, though it's probably been broken into at least two lines in this email message. -- Janina Sajka Phone: +1.240.715.1272 Partner, Capital Accessibility LLC http://CapitalAccessibility.Com Marketing the Owasys 22C talking screenless cell phone in the U.S. and Canada--Go to http://ScreenlessPhone.Com to learn more. Chair, Accessibility Workgroup Free Standards Group (FSG) janina@freestandards.org http://a11y.org From ross@golder.org Thu Jun 15 07:48:01 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D826D3B007D for ; Thu, 15 Jun 2006 07:48:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03520-09 for ; Thu, 15 Jun 2006 07:47:53 -0400 (EDT) Received: from black.golder.org (black.golder.org [81.6.249.35]) by menubar.gnome.org (Postfix) with ESMTP id BFA543B009A for ; Thu, 15 Jun 2006 07:47:49 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by black.golder.org (Postfix) with ESMTP id 6BF4B40AB; Thu, 15 Jun 2006 12:47:48 +0100 (BST) X-Virus-Scanned: amavisd-new at golder.org Received: from black.golder.org ([127.0.0.1]) by localhost (black.golder.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id H-Yje6ok1oMb; Thu, 15 Jun 2006 12:47:45 +0100 (BST) Received: from red (unknown [125.24.64.59]) by black.golder.org (Postfix) with ESMTP id B12633FE2; Thu, 15 Jun 2006 12:47:41 +0100 (BST) Subject: Subversion migration schedule (new cut-off is Fri 14 July) From: Ross Golder To: gnome-announce-list@gnome.org Content-Type: multipart/mixed; boundary="=-41kIj1JG8/E+h5tM2RXc" Date: Thu, 15 Jun 2006 18:47:06 +0700 Message-Id: <1150372026.9754.1.camel@red> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.519 tagged_above=-999 required=2 tests=[AWL=0.080, BAYES_00=-2.599] X-Spam-Score: -2.519 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 07:51:43 -0400 Cc: devel-announce@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 11:48:02 -0000 --=-41kIj1JG8/E+h5tM2RXc Content-Type: text/plain Content-Transfer-Encoding: 7bit As per below, it was decided that 23rd June was too soon before GUADEC, so the new cut-off date has been put back to 14th July. Regards, -- Ross --=-41kIj1JG8/E+h5tM2RXc Content-Disposition: inline Content-Description: Forwarded message - Re: Subversion migration schedule (new cut-off Fri 14 July?) Content-Type: message/rfc822 Return-Path: Received: from black.golder.org ([unix socket]) by black.golder.org (Cyrus v2.3.1-Invoca-RPM-2.3.1-2.6.fc5) with LMTPA; Fri, 02 Jun 2006 14:59:52 +0100 X-Sieve: CMU Sieve 2.3 Received: from localhost (localhost.localdomain [127.0.0.1]) by black.golder.org (Postfix) with ESMTP id 621804A93 for ; Fri, 2 Jun 2006 14:59:52 +0100 (BST) X-Virus-Scanned: amavisd-new at golder.org X-Spam-Score: 0.466 X-Spam-Level: X-Spam-Status: No, score=0.466 tagged_above=-99 required=2.5 tests=[AWL=0.466] Received: from black.golder.org ([127.0.0.1]) by localhost (black.golder.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 9MLIDaDvOs4S for ; Fri, 2 Jun 2006 14:59:49 +0100 (BST) Received: from menubar.gnome.org (menubar.gnome.org [209.132.176.177]) by black.golder.org (Postfix) with ESMTP id 570164A91 for ; Fri, 2 Jun 2006 14:59:48 +0100 (BST) Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 58DFF3B04AD; Fri, 2 Jun 2006 09:59:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30643-08; Fri, 2 Jun 2006 09:59:44 -0400 (EDT) Received: from menubar.gnome.org (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0CDFA3B0480; Fri, 2 Jun 2006 09:59:44 -0400 (EDT) X-Original-To: gnome-hackers@gnome.org Delivered-To: gnome-hackers@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 44C613B0480 for ; Fri, 2 Jun 2006 09:59:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30672-06 for ; Fri, 2 Jun 2006 09:59:41 -0400 (EDT) Received: from localhost.localdomain (unknown [125.25.17.26]) by menubar.gnome.org (Postfix) with ESMTP id 7067E3B0468 for ; Fri, 2 Jun 2006 09:59:39 -0400 (EDT) Received: by localhost.localdomain (Postfix, from userid 500) id 80BC09FC5E; Fri, 2 Jun 2006 20:59:23 +0700 (ICT) From: Ross Golder To: Jeff Waugh In-Reply-To: <20060601132052.GF5203@waugh.id.au> References: <1139648664.6627.40.camel@localhost> <1148971293.12902.2.camel@red> <20060601132052.GF5203@waugh.id.au> Content-Type: text/plain Date: Fri, 02 Jun 2006 20:59:23 +0700 Message-Id: <1149256763.6298.18.camel@red> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org Cc: gnome-hackers@gnome.org Subject: Re: Subversion migration schedule (new cut-off Fri 14 July?) X-BeenThere: gnome-hackers@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Hacking GNOME discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: gnome-hackers-bounces@gnome.org Errors-To: gnome-hackers-bounces@gnome.org X-Virus-Scanned: by amavisd-new at gnome.org Content-Transfer-Encoding: 7bit On Thu, 2006-06-01 at 23:20 +1000, Jeff Waugh wrote: > > > > As the various show-stoppers that prevented our previously scheduled > > migration from going ahead have now been resolved, I am proposing that the > > new migration go ahead at 23:59UTC on Friday 16th June 2006. Please let us > > know a.s.a.p if that will be inconvenient for anyone. > > Ross, > > Can I suggest that we do the migration after GUADEC? I think it would be > more useful for us to have reliable and known access to CVS through the week > than be dealing with post-migration woes (as clean as it will be, there will > be some hassles for everyone). > > Thanks, > > - Jeff > How about this - I'll run another test migration on the 23rd, but won't actually make the switch. At least then, if anyone at GUADEC wants to play with or demonstrate anything related to subversion, at least they will get fairly up-to-date code. So, looking at the release schedule, it looks like the next best date would be July 14th. How would that be? -- Ross _______________________________________________ gnome-hackers mailing list gnome-hackers@gnome.org http://mail.gnome.org/mailman/listinfo/gnome-hackers --=-41kIj1JG8/E+h5tM2RXc-- From gjc@inescporto.pt Thu Jun 15 15:10:39 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7C99F3B02BF for ; Thu, 15 Jun 2006 15:10:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 29070-01 for ; Thu, 15 Jun 2006 15:10:36 -0400 (EDT) Received: from animal.inescn.pt (correio.inescn.pt [194.117.24.9]) by menubar.gnome.org (Postfix) with ESMTP id 5CEBB3B016C for ; Thu, 15 Jun 2006 15:10:35 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by animal.inescn.pt (8.13.6/8.13.6/7) with ESMTP id k5FJ9a1H007835; Thu, 15 Jun 2006 20:09:36 +0100 (WEST) Received: from pong.inescporto.pt (pong.inescn.pt [194.117.26.74]) by animal.inescn.pt (8.13.6/8.13.6/5) with ESMTP id k5FJ9PGj007812; Thu, 15 Jun 2006 20:09:25 +0100 (WEST) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by pong.inescporto.pt (Postfix) with ESMTP id 63C2A1303A8; Thu, 15 Jun 2006 20:06:19 +0100 (WEST) Subject: ANNOUNCE: PyGTK 2.9.2 (unstable) From: "Gustavo J. A. M. Carneiro" To: PyGTK Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-RzvsD9ggP/SFbL+MHSSy" Date: Thu, 15 Jun 2006 20:09:24 +0100 Message-Id: <1150398564.5933.27.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at inescporto.pt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.428 tagged_above=-999 required=2 tests=[AWL=0.037, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.428 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 23:27:04 -0400 Cc: gnome-announce-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 19:10:39 -0000 --=-RzvsD9ggP/SFbL+MHSSy Content-Type: text/plain Content-Transfer-Encoding: quoted-printable I am pleased to announce version 2.9.2 of the Python bindings for GTK. The new release is available from ftp.gnome.org and its mirrors as soon as its synced correctly: http://ftp.gnome.org/pub/GNOME/sources/pygtk/2.9/ This is an unstable release and should be used with caution. It requires either GTK+ 2.8.x or GTK+ >=3D 2.9.3. Blurb: GTK is a toolkit for developing graphical applications that run on systems such as Linux, Windows and MacOS X. It provides a comprehensive set of GUI widgets, can display Unicode bidi text. It links into the Gnome Accessibility Framework through the ATK library. PyGTK provides a convenient wrapper for the GTK+ library for use in Python programs, and takes care of many of the boring details such as managing memory and type casting. When combined with PyORBit and gnome-python, it can be used to write full featured Gnome applications. Like the GTK+ library itself PyGTK is licensed under the GNU LGPL, so is suitable for use in both free software and proprietary applications. It is already in use in many applications ranging from small single purpose scripts up to large full features applications. pygtk-2.9.2 15-june-2006 - Fix a codegen bug that prevent build of other extensions (344845, Gus= tavo) - Builds with pycairo 1.1.6 (344957, Gustavo) - gtk.TextBuffer rich text copy and serialization (Finlay) - Correct Print Editor example (Gustavo) PyGTK requires GTK+ >=3D 2.8.0 and Python >=3D 2.3.5 to build. Bug reports, as always, should go to Bugzilla; check out http://pygtk.org/developer.html and http://pygtk.org/feedback.html for links to posting and querying bug reports for PyGTK. --=20 Gustavo J. A. M. Carneiro The universe is always one step beyond logic=09 --=-RzvsD9ggP/SFbL+MHSSy Content-Type: application/pgp-signature; name=signature.asc Content-Description: Esta =?ISO-8859-1?Q?=E9?= uma parte de mensagem assinada digitalmente -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (GNU/Linux) iD8DBQBEkbBk2XoHyMdS6TARAjgIAJ4upHdWvOey6x3eV21Ji6P58K+OhgCdGstN wEORPp04QwWKfmDGW0Dum/g= =Suqv -----END PGP SIGNATURE----- --=-RzvsD9ggP/SFbL+MHSSy-- From johnp@redhat.com Thu Jun 15 16:50:59 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8557E3B01FF; Thu, 15 Jun 2006 16:50:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00479-04; Thu, 15 Jun 2006 16:50:58 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 798313B00D0; Thu, 15 Jun 2006 16:50:58 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5FKndP2000921; Thu, 15 Jun 2006 16:49:39 -0400 Received: from lacrosse.corp.redhat.com (lacrosse.corp.redhat.com [172.16.52.154]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5FKnYTU014072; Thu, 15 Jun 2006 16:49:34 -0400 Received: from [172.16.80.35] (remedyz.boston.redhat.com [172.16.80.35]) by lacrosse.corp.redhat.com (8.12.11.20060308/8.11.6) with ESMTP id k5FKnYad010638; Thu, 15 Jun 2006 16:49:34 -0400 Subject: GNOME 2.15.3 Development Release From: "John (J5) Palmieri" To: devel-announce-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Date: Thu, 15 Jun 2006 16:49:34 -0400 Message-Id: <1150404574.5271.18.camel@remedyz.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.3 (2.7.3-2) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.449 tagged_above=-999 required=2 tests=[AWL=-0.079, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_GT=0.077, TW_JH=0.077, TW_YG=0.077] X-Spam-Score: -2.449 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 23:27:04 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 20:50:59 -0000 GNOME 2.15.3 Development Release ================================ It is that time again. Time to get it, time to build it and time to test it. The GNOME Release Team is proud to present the 2.15.3 development release. This is our third development release on our road towards GNOME 2.16.0, which will be released in September 2006. So go download it. Go compile it. Go test it. And go hack on it, document it, translate it, fix it. Note that gnome-applets, deskbar-applet and pygtk all need patches which can be found here gnome-applets: http://download.gnome.org/teams/releng/2.15.3/gswitchit.patch deskbar-applet: http://download.gnome.org/teams/releng/2.15.3/CuemiacPopupEntry.py.patch pygtk: http://download.gnome.org/teams/releng/2.15.3/defsparser.py.patch To compile GNOME 2.15.3, you can use GARNOME (will be released soon), or the jhbuild modulesets available at: http://download.gnome.org/teams/releng/2.15.3/ The release notes that describe the changes between 2.15.2 and 2.15.3 are available. Go read them to learn all the goodness of this release: platform - http://download.gnome.org/platform/2.15/2.15.3/NEWS desktop - http://download.gnome.org/desktop/2.15/2.15.3/NEWS admin - http://download.gnome.org/admin/2.15/2.15.3/NEWS bindings - http://download.gnome.org/bindings/2.15/2.15.3/NEWS Here are some figures about this release: admin 2.15.3 statistics: tar.gz: 792K total tar.bz2: 616K total bindings 2.15.3 statistics: tar.gz: 21M total tar.bz2: 15M total desktop 2.15.3 statistics: tar.gz: 156M total tar.bz2: 114M total platform 2.15.3 statistics: tar.gz: 53M total tar.bz2: 37M total The GNOME 2.15.3 release is available here: platform sources - http://download.gnome.org/platform/2.15/2.15.3/ desktop sources - http://download.gnome.org/desktop/2.15/2.15.3/ admin sources - http://download.gnome.org/admin/2.15/2.15.3/ bindings sources - http://download.gnome.org/bindings/2.15/2.15.3/ WARNING! WARNING! WARNING! -------------------------- This release is a snapshot of development code. Although it is buildable and usable, it is primarily intended for testing and hacking purposes. GNOME uses odd minor version numbers to indicate development status. For more informations about 2.15, the full schedule, the official module lists and the proposed modules list, please see our shiny 2.15 page: http://www.gnome.org/start/unstable/ We hope you'll love it, The GNOME Release Team -- John (J5) Palmieri From guenther@rudersport.de Thu Jun 15 17:06:31 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1F0DB3B0237; Thu, 15 Jun 2006 17:06:31 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00750-05; Thu, 15 Jun 2006 17:06:30 -0400 (EDT) Received: from rudersport.de (rudersport.de [192.220.91.203]) by menubar.gnome.org (Postfix) with ESMTP id 427033B00D0; Thu, 15 Jun 2006 17:06:30 -0400 (EDT) Received: from [10.0.0.2] (IP-213157009217.dialin.heagmedianet.de [213.157.9.217]) by rudersport.de (8.12.11.20060308) id k5FL5jDY040713; Thu, 15 Jun 2006 15:05:46 -0600 (MDT) Subject: [ANNOUNCE] GARNOME 2.15.3 From: guenther To: garnome-list@gnome.org Content-Type: text/plain Date: Thu, 15 Jun 2006 23:05:43 +0200 Message-Id: <1150405543.8323.15.camel@monkey.loc> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.053 tagged_above=-999 required=2 tests=[AWL=-0.451, BAYES_00=-2.599, SUBJ_ALL_CAPS=0.997] X-Spam-Score: -2.053 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 23:27:04 -0400 Cc: gnome-announce-list@gnome.org, gnome-love@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 21:06:31 -0000 GARNOME 2.15.3 ============== The "It's quiet out there... Yes... Too quiet..." release. What seemed to be no last minute releases turned out to be a broken list server, holding back the official GNOME release for a day. Also, there have been a bunch of build issues this time around, more than usual. Some good cooperation between the Release Team and the GARNOME Team (especially Joseph) hacked around the brokeness, thus... We are pleased to announce the release of GARNOME 2.15.3 Desktop and Developer Platform. This release includes all of GNOME 2.15.3 plus a whole bunch of updates that were released after the GNOME freeze date. This is the third release in the unstable cycle, with more features, more fixes and yet more madness added. It is for anyone who wants to get his hands dirty on the development branch, or who'd like to get a peek at future features. If you want to help spot issues in GARNOME, (or, better yet, fix 'em ;-) this release is for you as well. As usual, you can get the tarball directly from the gnome.org site: http://download.gnome.org/sources/garnome/2.15/ Note: GNOME 2.15.x is an unstable branch and is assumed to be a moving target. Therefore, things in this release may not work as advertised. If you find any issues with this release, feel free to contact the GARNOMEies in the #garnome channel on GIMPNet (irc://irc.gnome.org), where we hang out, or post to the mailing list. More information is available at our project website: http://www.gnome.org/projects/garnome/ Enjoy, The GARNOME Team -- char *t="\10pse\0r\0dtu\0.@ghno\x4e\xc8\x79\xf4\xab\x51\x8a\x10\xf4\xf4\xc4"; main(){ char h,m=h=*t++,*x=t+2*h,c,i,l=*x,s=0; for (i=0;i>=1)||!t[s+h]){ putchar(t[s]);h=m;s=0; }}} From behdad.esfahbod@gmail.com Thu Jun 15 17:39:14 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 21DF83B0232 for ; Thu, 15 Jun 2006 17:39:14 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02006-04 for ; Thu, 15 Jun 2006 17:39:13 -0400 (EDT) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.237]) by menubar.gnome.org (Postfix) with ESMTP id 17AEE3B0007 for ; Thu, 15 Jun 2006 17:39:13 -0400 (EDT) Received: by wr-out-0506.google.com with SMTP id 37so427823wra for ; Thu, 15 Jun 2006 14:38:12 -0700 (PDT) Received: by 10.54.108.13 with SMTP id g13mr2187733wrc; Thu, 15 Jun 2006 14:38:11 -0700 (PDT) Received: from ?192.168.190.5? ( [72.136.156.47]) by mx.gmail.com with ESMTP id 6sm1544376wrl.2006.06.15.14.38.10; Thu, 15 Jun 2006 14:38:11 -0700 (PDT) Subject: Women's Summer Outreach Program 2006 From: Behdad Esfahbod To: gnome-hackers@gnome.org, foundation-list@gnome.org, foundation-announce@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Date: Thu, 15 Jun 2006 17:38:06 -0400 Message-Id: <1150407487.29623.12.camel@home> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 (2.6.1-1.fc5.2) Content-Transfer-Encoding: 7bit Sender: Behdad Esfahbod X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.6 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.6 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 23:27:04 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 21:39:14 -0000 GNOME to Sponsor Female Developers in a Summer Outreach Program BOSTON, Mass - June 13, 2006 - The GNOME Foundation is offering USD$9000 to female students in order to promote the participation of women in GNOME-related development. The money originates from GNOME's participation in the Google "Summer of Code" program (code.google.com/soc/), for which GNOME developers will mentor 20 students working throughout the northern summer on GNOME-related projects. This year GNOME received 181 applications to Google's program, yet none were from women. The GNOME Foundation has therefore chosen to reinvest Google's contribution into a new program designed to increase the participation of women in GNOME. The program has no official relationship with Google. "Free software prides itself on being open to anyone with a good idea, yet less than 2% of free software developers are female. We, as a community, need to be actively working to change this statistic, and programs like this one are a much needed step in the right direction." said Hanna Wallach, a GNOME developer who is involved in several projects that encourage women to participate in free software development. The Women's Summer Outreach Program is currently accepting applications from female students. Accepted students will receive a stipend of USD $3000 over a two month period. A pool of project ideas is provided at www.gnome.org/projects/wsop/, though original proposals are also encouraged. Projects may either be related to GNOME directly, or indirectly via projects such as Gstreamer and Abiword. Each student will be assigned a mentor to provide guidance throughout the program. Vincent Untz, member of the GNOME Foundation board and coordinator of the GNOME team for Google's "Summer of Code" program, explained: "Many women have the skills required to contribute to Free Software projects like GNOME, but may not see an opportunity to start working with us. By initiating this program, not only do we want to highlight the issue, but we also hope that this opportunity will help more women to get involved in the long term." Applications should be submitted using the form at www.gnome.org/projects/wsop/. More information about the application process may be found at the same location. From cworth@cworth.org Fri Jun 16 13:14:11 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7C02B3B0125 for ; Fri, 16 Jun 2006 13:14:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07413-02 for ; Fri, 16 Jun 2006 13:14:09 -0400 (EDT) Received: from theworths.org (cworth.org [217.160.249.188]) by menubar.gnome.org (Postfix) with ESMTP id B2BA33B0128 for ; Fri, 16 Jun 2006 13:14:08 -0400 (EDT) Received: (qmail 6134 invoked from network); 16 Jun 2006 13:13:38 -0400 Received: from localhost (HELO raht.cworth.org) (127.0.0.1) by localhost with SMTP; 16 Jun 2006 13:13:38 -0400 Date: Fri, 16 Jun 2006 10:08:58 -0700 Message-ID: <878xnxc9jp.wl%cworth@cworth.org> From: Carl Worth To: cairo-announce@cairographics.org Subject: cairo snapshot 1.1.10 now available User-Agent: Wanderlust/2.14.0 (Africa) Emacs/21.4 Mule/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: multipart/signed; boundary="pgp-sign-Multipart_Fri_Jun_16_10:08:52_2006-1"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.4 tagged_above=-999 required=2 tests=[AWL=-0.090, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, TW_BX=0.077, TW_IB=0.077] X-Spam-Score: -2.4 X-Spam-Level: X-Mailman-Approved-At: Sat, 17 Jun 2006 00:52:39 -0400 Cc: gnome-announce-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2006 17:14:11 -0000 --pgp-sign-Multipart_Fri_Jun_16_10:08:52_2006-1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable A new cairo snapshot 1.1.10 is now available from: http://cairographics.org/snapshots/cairo-1.1.10.tar.gz which can be verified with: http://cairographics.org/snapshots/cairo-1.1.10.tar.gz.sha1 709d48dbcd0ac806e4f7bfd1f69314e4dfb57329 cairo-1.1.10.tar.gz http://cairographics.org/snapshots/cairo-1.1.10.tar.gz.sha1.asc (signed by Carl Worth) Additionally, a git clone of the source tree: git clone git://git.cairographics.org/git/cairo will include a signed 1.1.10 tag which points to a commit named: 65e73c81b83222de873935cf384e514ea20ac854 which can be verified with: git verify-tag 1.1.10 and can be checked out with a command such as: git checkout -b build 1.1.10 This is the fifth in a series of snapshots working toward the 1.2 release of cairo. The primary motivation for this snapshot is to fix a long-standing bug that had long been silent, but as of the 1.1.8 snapshot started causing crashes when run against 16-bit depth X servers, (often Xvnc or Xnest). The fix for this adds a new CAIRO_FORMAT_RGB16_565 to the API. This snapshot also includes a rewrite of cairo's SVG backend to eliminate the dependency on libxml2. With this in place, cairo 1.2 will not depend on any libraries that cairo 1.0 did not. As usual, there are also a few fixes for minor bugs. What is cairo =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Cairo is a 2D graphics library with support for multiple output devices. Currently supported output targets include the X Window System, win32, and image buffers. Experimental backends include OpenGL (through glitz), Quartz, XCB, PostScript and PDF file output. Cairo is designed to produce consistent output on all output media while taking advantage of display hardware acceleration when available (for example, through the X Render Extension). The cairo API provides operations similar to the drawing operators of PostScript and PDF. Operations in cairo including stroking and filling cubic B=E9zier splines, transforming and compositing translucent images, and antialiased text rendering. All drawing operations can be transformed by any affine transformation (scale, rotation, shear, etc.). Cairo has been designed to let you draw anything you want in a modern 2D graphical user interface. At the same time, the cairo API has been designed to be as fun and easy to learn as possible. If you're not having fun while programming with cairo, then we have failed somewhere---let us know and we'll try to fix it next time around. Cairo is free software and is available to be redistributed and/or modified under the terms of either the GNU Lesser General Public License (LGPL) version 2.1 or the Mozilla Public License (MPL) version 1.1. Where to get more information about cairo =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D The primary source of information about cairo is: http://cairographics.org/ The latest releases of cairo can be found at: http://cairographics.org/releases Snapshots of in-development versions of cairo: http://cairographics.org/snapshots The programming manual for using cairo: http://cairographics.org/manual Mailing lists for contacting cairo users and developers: http://cairographics.org/lists Answers to some frequently asked questions about cairo: http://cairographics.org/FAQ Detailed list of changes since 1.1.8 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Tag '1.1.10' created by Carl Worth at 2006-06-16 17:53 = -0700 cairo 1.1.10 snapshot -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEkuIi6JDdNq8qSWgRArhnAJ4hDlfpnWYY9bj0NVs7ZMl+XKsaXwCffRLz HMhowJx6or+LK99tRtZO5YM=3D =3DAsAw -----END PGP SIGNATURE----- Changes since 1.1.8: Behdad Esfahbod: Use enum time instead of int (shuts intel compiler up.) Merge branch 'cairo' into cairo-origin Carl Worth: Increment CAIRO_VERSION to 1.1.9 after making the 1.1.8 snapshot _cairo_format_from_pixman_format: Add useful error mesage and asserti= on when failing. Remove _cairo_image_surface_is_alpha_only in favor of just looking at= content value. Drop _cairo_surface_is_opaque now that we have cairo_surface_get_cont= ent Add missing breaks in switch statement. New API: Add support for new CAIRO_FORMAT_RGB16_565 Update release rules in Makefile to add git signature information. Annoying doc template churn. Update version to 1.1.10 and add notes to NEWS file. Emmanuel Pacaud: SVG: Update of reference images. Jinghua Luo: xlib: free resources before return if looking up glyph surface fails. Kristian H=F8gsberg: Make cairo_output_stream_t an embeddable type. Convert the stdio output stream to use the new output stream interfac= e. Convert the word wrap stream, the base85 stream and the ps string str= eam. Add an in-memory output-stream implementation. Only run fallback-resolution test case when all of PDF, PS and SVG ar= e enabled. Rewrite SVG backend to just use cairo output stream instead of libxml= 2. Remove libxml2 checks from configure.in. Actually add src/cairo-output-stream-private.h. Merge branch 'svg-rewrite' Add test case for the PDF, PS and SVG stream constructors. Only call close function for output streams if it's non-NULL. Add cairo-output-stream-private.h to libcairo_la_SOURCES. Torsten Sch=F6nfeld: Add missing cairo_public tag for cairo_image_surface_get_stride --- Makefile.am | 25=20 NEWS | 17=20 RELEASING | 2=20 configure.in | 20=20 doc/public/tmpl/cairo-image.sgml | 1=20 pixman/src/icformat.c | 6=20 pixman/src/pixman.h | 3=20 pixman/src/pixregion.c | 2=20 src/Makefile.am | 1=20 src/cairo-base85-stream.c | 28=20 src/cairo-image-surface.c | 98 + src/cairo-output-stream-private.h | 156 ++ src/cairo-output-stream.c | 188 ++- src/cairo-pattern.c | 2=20 src/cairo-pdf-surface.c | 1=20 src/cairo-ps-surface.c | 45=20 src/cairo-surface.c | 37=20 src/cairo-svg-surface.c | 1170 ++++++++--------= ----- src/cairo-type1-subset.c | 1=20 src/cairo-xlib-surface.c | 2=20 src/cairo.h | 8=20 src/cairoint.h | 85 - test/Makefile.am | 10=20 test/create-for-stream.c | 218 +++ test/linear-gradient-svg-argb32-ref.png |binary test/linear-gradient-svg-rgb24-ref.png |binary test/mask-svg-argb32-ref.png |binary test/mask-svg-rgb24-ref.png |binary test/paint-source-alpha-svg-argb32-ref.png |binary test/paint-source-alpha-svg-rgb24-ref.png |binary test/paint-with-alpha-svg-argb32-ref.png |binary test/paint-with-alpha-svg-rgb24-ref.png |binary test/push-group-svg-argb32-ref.png |binary test/push-group-svg-rgb24-ref.png |binary test/scale-source-surface-paint-svg-argb32-ref.png |binary test/scale-source-surface-paint-svg-rgb24-ref.png |binary test/text-pattern-svg-argb32-ref.png |binary test/text-pattern-svg-rgb24-ref.png |binary test/trap-clip-svg-argb32-ref.png |binary test/trap-clip-svg-rgb24-ref.png |binary 40 files changed, 1171 insertions(+), 955 deletions(-) --pgp-sign-Multipart_Fri_Jun_16_10:08:52_2006-1 Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEkuWq6JDdNq8qSWgRAqI6AJ42+4WuUfwFtayn9C8dh+r/xTk4OACeMMgt Cdpk2ar//g0UaT0w77grJjc= =kUjC -----END PGP SIGNATURE----- --pgp-sign-Multipart_Fri_Jun_16_10:08:52_2006-1-- From doclivingston@gmail.com Sun Jun 18 02:45:17 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 001613B014D for ; Sun, 18 Jun 2006 02:45:17 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27928-05 for ; Sun, 18 Jun 2006 02:45:15 -0400 (EDT) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.179]) by menubar.gnome.org (Postfix) with ESMTP id C709D3B0158 for ; Sun, 18 Jun 2006 02:45:14 -0400 (EDT) Received: by py-out-1112.google.com with SMTP id c39so971442pyd for ; Sat, 17 Jun 2006 23:43:58 -0700 (PDT) Received: by 10.35.89.10 with SMTP id r10mr6756008pyl; Sat, 17 Jun 2006 23:43:58 -0700 (PDT) Received: from alyrion.local ( [144.134.102.218]) by mx.gmail.com with ESMTP id k13sm2076296pyf.2006.06.17.23.43.55; Sat, 17 Jun 2006 23:43:57 -0700 (PDT) Subject: Rhythmbox 0.9.5 From: "James \"Doc\" Livingston" To: Rhythmbox-devel list , gnome-announce-list@gnome.org Content-Type: text/plain; charset=UTF-8 Date: Sun, 18 Jun 2006 16:43:53 +1000 Message-Id: <1150613033.6027.23.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.53 tagged_above=-999 required=2 tests=[AWL=0.070, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.53 X-Spam-Level: X-Mailman-Approved-At: Sun, 18 Jun 2006 10:56:33 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: rhythmbox-devel@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 06:45:17 -0000 G'day Everyone, On behalf of the Rhythmbox developers, I'm proud to announce the sixth release of the Rhythmbox 0.9 series, which includes a large number of fixes, improvements and new features. Notable new features include: - Improved plugin support, and several features converted to plugins - An album art viewing and download plugin - A song lyric viewing and download plugin - Ogg Vorbis tag editing [0] - Partial iPod write support [1] - Improved audio player and DAAP support - CD ripping and track transfer enabled by default - Updated documentation and many, many more improvements, bug fixes and new minor features. See below for more details. [0] requires a GStreamer plugin not yet in cvs, see bug 335635 [1] off by default, pass --enable-ipod-writing to enable. * What is Rhythmbox ? ===================== Rhythmbox is an integrated music management application, originally inspired by Apple's iTunes. It is free software, designed to work well under the GNOME Desktop, and based on the powerful GStreamer media framework. * What's changed in 0.9.5 ? =========================== * fix icon themability (Steve Frécinaux) * handle iPods that have been repartitioned (Christophe Fergeau: 325034) * allow ipod renaming, ejection, deletion and transfer (Christophe Fergeau) * make iradio handling work much better (Jonathan Matthew: 320336, 324402) * improve out-of-process metadata loader (Jonathan Matthew: 338062) * update documentation (Baptiste Mille-Mathias, ) * pluginise iPod and Generic players (Christophe Fergeau, Jonathan Matthew) * support saving playlists as M3U (Gavin Stewart: 316295) * remember browser visibility when changing sources (Alex Lancaster: 118862) * handle media unmounts better (Jonathan Matthew: 339023) * make entry types be a structure, and add support for extended data, and various method implementations (Christophe Fergeau, James Livingston) * album art view&download plugin (Alex Lancaster, James Livingston, Gareth Murphy, William Jon McCann, Martin Szulecki) * update the FSF's address (Gunnar Steinn Magnusson) * much improved Python bindings (James Livingston, Jonathan Matthew) * fix some translation issues (Nguyễn Thái Ngọc Duy, James Livingston: 339380, 343081) * improve startup time (James Livingston, Jonathan Matthew) * fix audioscrobbler submission, and allow viewing of info (Jonathan Matthew: 325848) * improve DBus interface (Jonathan Matthew, Tim Moloney) * allow transcoding during track transfer (Alessandro Decina: 322268) * cd burning fixes and improvements (William Jon McCann) * podcast feed parsing and download fixes (James Livingston: 339728) * turn the playback backend into a full GObject interface (James Livingston: 338667) * add more API documentation (Jonathan Mattjew) * add vorbis tag editing (James Livingston: 339878) * fix various threading insanities (Jonathan Matthew) * display "child libraries" with multiple library locations (James Livingston: 100552) * improve drag-and-drop from browsers (Jonathan Matthew: 327540) * support Motorola ROKR phones (Joe Barnett) * make query model limits saner (Janes Livingston) * source cleanup and API improvement (James Livingston, Jonathan Matthew) * improve status feedback for DAAP (Jonathan Matthew: 322020 and 338978) * memory improvement and leak fixed (James Livingston, Jonathan Matthew) * kill Bonobo support, require DBus, support DBus 0.3.0 (Jonathan Matthew: 339720) * add lyric download and view plugin (Jonathan Matthew: 319320) * add "add to playlist" menu (James Livingston: 323364) * allow changing of audio cd metadata (James Livingston) * improve DAAP handling (William Jon McCann: 342643) * update and write new unit tests (James Livingston) * group sources (Jonathan Matthew) * add new "rhythmbox-client" program (Jonathan Matthew: 340863, 155763) * assorted build fixes (Brian Cameron, Paul Drain, Elijah Newren, Hendrik Richter, Ryan P Skadberg, Götz Waschk, Pawel Worach, FreeBSD GNOME project, others) * HIG and UI improvements (Dennis Cranston, Baptiste Mille-Mathias) * many other bug fixed (Christophe Fergeau, Jaap A. Haitsma, James Livingston, Jonathan Matthew, Mikael Olenfalk, Roozbeh Pournader) Updated Translations -------------------- ca Jordi Mallach cs Miloslav Trmac de Hendrik Richter es Francisco Javier F. Serrador fi Ilkka Tuohela gl Ignacio Casal Quinteiro lt Žygimantas Beručka nb Øivind Hoel, Kjartan Maraas nl Vincent van Adrighem, Wouter Bolsterlee sv Fredrik Tuomas vi Clytie Siddall zh_CN Funda Wang * Where can I get it ? ====================== Source code: http://ftp.gnome.org/pub/GNOME/sources/rhythmbox/0.9/rhythmbox-0.9.5.tar.gz [MD5 sum: 3cbce0fd5ed948e13dabe7be7b9353e9] http://ftp.gnome.org/pub/GNOME/sources/rhythmbox/0.9/rhythmbox-0.9.5.tar.bz2 [MD5 sum: ff55e1db114321b7bdd6e21df1879367] Home Page: http://www.rhythmbox.org/ James "Doc" Livingston From mclasen@redhat.com Tue Jun 20 11:22:11 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3B32C3B043F; Tue, 20 Jun 2006 11:22:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22457-09; Tue, 20 Jun 2006 11:22:09 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 71CF13B00E7; Tue, 20 Jun 2006 11:22:09 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5KFLLnL004523; Tue, 20 Jun 2006 11:21:21 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [172.16.76.12]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5KFLLNA016479; Tue, 20 Jun 2006 11:21:21 -0400 Received: from golem.boston.redhat.com (golem.boston.redhat.com [172.16.80.24]) by mail.boston.redhat.com (8.12.8/8.12.8) with ESMTP id k5KFLKdH032719; Tue, 20 Jun 2006 11:21:20 -0400 Subject: GLib 2.11.4 released From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-list@gnome.org, gtk-app-devel-list@gnome.org Content-Type: text/plain Date: Tue, 20 Jun 2006 11:21:20 -0400 Message-Id: <1150816880.15532.58.camel@golem.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.1 (2.7.1-1) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.543 tagged_above=-999 required=2 tests=[AWL=0.058, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.543 X-Spam-Level: X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2006 15:22:11 -0000 GLib 2.11.4 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.11/ http://ftp.gnome.org/pub/GNOME/sources/glib/2.11/ glib-2.11.4.tar.bz2 md5sum: 9d3a94baa4bfcd9a579b45eea6de3a8c glib-2.11.4.tar.gz md5sum: f7768bc7ed524c6b40cb87daccb6c2b2 This is a development release leading up to GLib 2.12. Notes: * This is unstable development release. While it has had a bit of testing, there are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GLib 2.10. If you have problems, you'll need to reinstall GLib 2.10. * GLib 2.12 will be source and binary compatible with the GLib 2.10.x series (for some caveats, see the README). At this point, the API additions in the 2.11.x series are finished. * Bugs should be reported to http://bugzilla.gnome.org. About GLib ========== GLib is the low-level core library that forms the basis for projects such as GTK+ and GNOME. It provides data structure handling for C, portability wrappers, and interfaces for such runtime functionality as an event loop, threads, dynamic loading, and an object system. More information about GLib is available at: http://www.gtk.org/ An installation guide for the GTK+ libraries, including GLib, can be found at: http://developer.gnome.org/doc/API/2.0/gtk/gtk-building.html Overview of Changes from GLib 2.11.3 to GLib 2.11.4 =================================================== * GBookmarkFile: - g_bookmark_file_remove_item returns a boolean * g_mkstemp accepts the XXXXXX in the middle of the template * Bugs fixed: 344868 g_key_file_to_data should separate groups * Updated translations (de,es,fr,gu,hi,ko,th) A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=344868 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Emmanuele Bassi, Christian Persch, Federico Mena Quintero Matthias Clasen June 20, 2006 From joeshaw@novell.com Mon Jun 19 16:10:21 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id ABD293B0D15 for ; Mon, 19 Jun 2006 16:10:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30318-02 for ; Mon, 19 Jun 2006 16:10:20 -0400 (EDT) Received: from peabody.ximian.com (peabody.ximian.com [130.57.169.10]) by menubar.gnome.org (Postfix) with ESMTP id C79993B084E for ; Mon, 19 Jun 2006 16:10:19 -0400 (EDT) Received: (qmail 29764 invoked from network); 19 Jun 2006 20:09:04 -0000 Received: from localhost (HELO posthaste.boston.ximian.com) (joe@127.0.0.1) by localhost with SMTP; 19 Jun 2006 20:09:04 -0000 Subject: ANNOUNCE: Beagle 0.2.7 From: Joe Shaw To: dashboard-hackers@gnome.org Content-Type: text/plain; charset=UTF-8 Date: Mon, 19 Jun 2006 16:08:58 -0400 Message-Id: <1150747738.21037.1.camel@posthaste.boston.ximian.com> Mime-Version: 1.0 X-Mailer: Evolution 2.6.0 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.362 tagged_above=-999 required=2 tests=[AWL=-0.194, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, TW_BG=0.077, TW_GT=0.077, TW_XD=0.077] X-Spam-Score: -2.362 X-Spam-Level: X-Mailman-Approved-At: Tue, 20 Jun 2006 11:54:51 -0400 Cc: gnome-announce-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jun 2006 20:10:21 -0000 Hi, I'm happy to announce the release of Beagle 0.2.7. This version fixes the dreaded "Lock obtain timed out" bug, includes a new SVG and marks the return of the CHM filter. It introduces a compressed text cache, so that the disk space needed to generate snippets is greatly reduced, and many more bug fixes. OUR MANY URLS ------------- To download the 0.2.7 tarball or learn more, visit the Beagle wiki at: http://www.beagle-project.org The latest gossip is available at: http://www.planetbeagle.org Nat Friedman made some cool movies that demonstrate Beagle in action: http://nat.org/demos We still talk about Beagle on the dashboard-hackers mailing list: http://mail.gnome.org/mailman/listinfo/dashboard-hackers Info on Beagle's participation in Google's Summer of Code can be found here: http://beagle-project.org/Summer_Of_Code WHAT IS BEAGLE? --------------- Beagle is a tool for indexing and searching your data. Beagle is improving rapidly on many fronts, and should work well enough for everyday use. The Beagle daemon transparently monitors your data and updates the index to reflect any changes. On an inotify-enabled system, these updates happen more-or-less in real time. So for example, * Files are immediately indexed when they are created, are re-indexed when they are modified, and are dropped from the index upon deletion. * E-mails are indexed upon arrival. * IM conversations are indexed as you chat, a line at a time. Beagle supports many different file formats including OpenOffice documents, Microsoft Word documents, PDFs, HTML files, and many image, audio and video formats. Beagle can extract information from your file system, Evolution and KMail mailboxes, Evolution calendars and addressbooks, Gaim and Kopete instant messenger conversations, several RSS aggregators, Tomboy notes, Konqueror browsing history, system documentation, and many others. Beagle also indexes tags on your photos from F-Spot and Digikam. Beagle also provides Firefox and Epiphany extensions that index web pages in real-time as the user visits them. Beagle uses the Lucene indexing system from the prodigious Doug Cutting. Beagle includes a GTK-based graphical tool for searching the index that the daemon creates. This application doesn't query the index directly; it passes the search terms to the daemon and the daemon sends any matches back. The user interface then renders the results and allows you to perform useful actions on the matching objects. Indexing your data requires a fair amount of computing power, but the Beagle daemon tries to be as unobtrusive as possible. It contains a scheduler that works to prioritize tasks and control CPU usage, based on whether or not you are actively using your workstation. DEPENDENCY HECK --------------- Beagle requires: * Mono 1.1.13.5 or better, along with the full Mono stack * gtk-sharp 2.3.90 or better * GMime 2.1.19 * Libexif 0.5.7 or better * shared-mime-info For the best possible Beagle experience, you should also have: * GMime 2.2.1 * Evolution-sharp 0.10.2 or 0.11.1 * libgsf 1.12.1 and gsf-sharp 0.6 * Either wv 1.2.0, or a *patched* wv 1.0.3 --- the patch is available from http://users.avafan.com/~fredrik/beagle/wv-libole2-readonly.patch * An inotify-enabled kernel. Inotify is in the mainline Linux kernel as of 2.6.13. And other optional dependencies: http://beagle-project.org/Optional_Prerequisites CHANGES SINCE 0.2.6 ------------------- Daemon/Infrastructure: * Fix bugs in the query parser by using a regular expression-based system. (Max Wiehle, Keving Kubasik) * Compress items in the text cache, greatly reducing disk usage. (Kevin, Lukas Lipka) * Fix a bug in which the sqlite database could get cluttered with older files. (Debajyoti Bera, Joe Shaw) * Again write out the PID of the locking process, or else we cannot effectively detect dangling locks. (Joe) * If we see a lockfile with no PID, assume it's a dangling lock. (Joe) * No longer handle SIGQUIT to shut down the daemon; it's used very valuably by Mono for debugging purposes. (Joe) * Add a BEAGLE_DISABLE_XATTR environment variable to disable extended attribute support for testing purposes. (Joe) * Only print out the inotify "Maximum watch limit hit" warning once. (Joe) * Convert HTML entities when creating snippets. (Lukas, Kevin) * Patch our xdgmime installation to not crash if the data is reloaded while it is processing it. (Joe) * Fix an issue with newer Mono installations where the index helper process would become a zombie after it finished and was never cleaned up. (Joe) * Fix a bug in which properties weren't being sorted and couldn't be found. (Max, Kevin, Bera) * Work around a Mono bug so that dangling symlinks in ~/.beagle/Log are cleaned up at startup. (Joe) Backends: * Generate mail delete events using the indexable generator rather than creating many individual indexables by hand, which could flood the scheduler and slow the system down. (Joe) * Check for exceptions when calling GetChanges() on Evolution calendars and addressbooks. (Joe) Filters: * Added an SVG filter. (Alexander Macdonald) * Re-enable the CHM filter. (Miguel Cabrera) * Close the OpenOffice zip file when we're finished. (Joe) * Index additional info from ebuild files, including installation info and desktop file entries. (Pat Double) * Add duration and bitrate properties to the music filter. (Lukas) * Add a filter for Boo. (Paul Betts) * Don't throw EncodingFoundException in the HTML parser unless asked to. (Bera) * Add application/x-php as a valid mime type for the PHP filter. (Kevin) * Make sure the mime type is lower case before matching on it. (Kevin, Joe) UI: * Catch exceptions if we can't load an application's icons. (Joe, Pierre Poissinger) * Include the date in note tiles. (Lukas) * Only display the first line of a calendar item's description. (Dan Winship) * Use mailto URIs rather than invoking Evolution directly when possible. (Lukas) * Use desktop-launch to open file tiles when applicable. (Lukas) * Make the text in the details pane selectable. (Lukas) * If the calendar's description is empty, still display the item. (Lukas) * Simplify the code for the details pane significantly. (Lukas) * Scale down very large mime icons for display. (Lukas) * Enable the "Open With" menu if GTK+ 2.8 is available at build-time. (Kevin) * Force the window to get wider if the tiles get wider rather than creating a horizontal scrollbar. (Dan) Tools: * Add --enable-deletion to beagle-build-index, which removes deleted files from the index. (Bera) * Add $sharedir/gtk-doc/html and $sharedir/gnome/html to the documentation crawl rules. (Joe) * Fix a typo in the beagled manpage. (Kevin Lamontagne) * Fix bugs dealing with shell quoting in beagle-query. (Max) Translations: * Updated Brazilian Portuguese translation. (Raphael Higino) * Updated Czech translation. (Jakub Friedl) * Updated Dutch translation. (Vincent van Adrighem) * Updated Finnish translation. (Ilkka Tuohela) * Updated Galician translation. (Ignacio Casal Quinteiro) * Updated Greek translation. (Kostas Papadimas) * Updated Japanese translation. (Takeshi Aihana) * Updated Norwegian bokml translation. (ivind Hoel) * Updated Simplified Chinese translation. (Funda Wang) * Updated Spanish translation. (Francisco Javier F. Serrador) * Updated Swedish translation. (Daniel Nylander) * Updated Vietnamese translation. (Clytie Siddall) Everything Else: * Make the Firefox extension work with Bon Echo (2.0 Alpha). (Joe) * Check for mmap() in configure.in, to optimize xdgmime. (Joe) * Add a pkg-config file for the UiUtil.dll assembly. (Luis Medinas) * Getting Dashboard building again. (Luis) KNOWN ISSUES ------------ We still use a bit too much memory. We are working on it. Certain extremely large documents can temporarily degrade your system's performance while they are being indexed. The file system is now much more robust than ever before. However, there are still race conditions that can occur with certain combinations of file system operations. In some cases it might be necessary to stop and restart the daemon. Certain files can crash the underlying libraries Beagle uses to extract metadata. This has been observed in MS Word and JPG files. If you encounter such a crash, please report it to the upstream developer of those libraries (wv1 and libexif for the above, respectively). At this point in development, we cannot commit to stable APIs or file formats. You will almost certainly need to delete your indexes and start again at some point in the future. From s.marechal@jejik.com Mon Jun 19 18:32:09 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 62F693B080B for ; Mon, 19 Jun 2006 18:32:09 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04849-10 for ; Mon, 19 Jun 2006 18:32:04 -0400 (EDT) Received: from smtp-vbr7.xs4all.nl (smtp-vbr7.xs4all.nl [194.109.24.27]) by menubar.gnome.org (Postfix) with ESMTP id 2E4AA3B035F for ; Mon, 19 Jun 2006 18:32:04 -0400 (EDT) Received: from [192.168.1.2] (a82-92-145-91.adsl.xs4all.nl [82.92.145.91]) (authenticated bits=0) by smtp-vbr7.xs4all.nl (8.13.6/8.13.6) with ESMTP id k5JMUN7U092865; Tue, 20 Jun 2006 00:30:24 +0200 (CEST) (envelope-from s.marechal@jejik.com) Message-ID: <449725B0.9050004@jejik.com> Date: Tue, 20 Jun 2006 00:31:12 +0200 From: Sander Marechal User-Agent: Thunderbird 1.5.0.4 (X11/20060615) MIME-Version: 1.0 To: hearts@lists.jejik.com, gnome-announce-list@gnome.org, news@linuxgames.com, webmaster@linuxlinks.com Subject: Gnome Hearts 0.1.1 Release Announcement Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by XS4ALL Virus Scanner X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.557 tagged_above=-999 required=2 tests=[AWL=0.042, BAYES_00=-2.599] X-Spam-Score: -2.557 X-Spam-Level: X-Mailman-Approved-At: Tue, 20 Jun 2006 11:54:51 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: hearts@lists.jejik.com List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jun 2006 22:32:09 -0000 Gnome Hearts 0.1.1 Release Announcement --------------------------------------- Our recently released Gnome Hearts 0.1 suffered from a build problem on distributions that shipped the Lua libraries as liblua instead of liblua50, most notably on the new Suse Linux. Gnome Hearts 0.1.1 fixes this issue, thanks to a patch sent in by a gnomefiles.org contributor. You can download the new tarball from our download section at: http://www.gnome-hearts.org/download/ About Gnome Hearts ------------------ Gnome Hearts is an implementation of the classic hearts card game for the GNOME desktop, featuring configurable rule sets and editable computer opponents to satisfy widely diverging playing styles. Gnome Hearts is Free Software, released under the GNU General Public License and should be able to run on any computer that can run the GNOME desktop. Enjoy, -- Sander Marechal http://www.gnome-hearts.org From peter@peterjohanson.com Tue Jun 20 01:48:23 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3398E3B0E71 for ; Tue, 20 Jun 2006 01:48:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26948-04 for ; Tue, 20 Jun 2006 01:48:21 -0400 (EDT) Received: from cubesearch.com (unknown [207.115.69.50]) by menubar.gnome.org (Postfix) with ESMTP id 7B83E3B05AF for ; Tue, 20 Jun 2006 01:48:21 -0400 (EDT) Received: by cubesearch.com (Postfix, from userid 522) id 8BF0D10E089; Mon, 19 Jun 2006 22:47:22 -0700 (PDT) Date: Mon, 19 Jun 2006 22:47:22 -0700 From: Peter Johanson To: gnome-announce-list@gnome.org Subject: [RELEASE] muine-0.8.5 Message-ID: <20060620054722.GS9163@butchest.cubesearch.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.11 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.55 tagged_above=-999 required=2 tests=[AWL=0.050, BAYES_00=-2.599, SPF_HELO_PASS=-0.001] X-Spam-Score: -2.55 X-Spam-Level: X-Mailman-Approved-At: Tue, 20 Jun 2006 11:54:51 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2006 05:48:23 -0000 Muine is a music player using new UI ideas. The goal is to create a player that eschews the iTunes model in favor of an easier and more comfortable interface. 0.8.5 ===== This release primarily updates Muine to use Gstreamer 0.10 (0.8 is also supported at configure time). Lots of bugfixes have also gone into this release. Details ======= - Gstreamer 0.10 support (configurable, 0.8 is still supported) [Iain, Peter Johanson] - Small shortcut/mnemonics tweaks [Sebastian Heinlein, Wouter Bolsterlee, Peter Johanson] - Fix bug with tray icon not re-appearing after a gnome-panel crash [Ed Catmur, Peter Johanson] - Handle large id3 tags properly [Jorn Baayen] - Properly raise the window when unhiding [Ryan Lortie] - Various build and bugfixes [Peter Johanson] New translations: - Punjabi [Amanpreet Singh Alam] - Thai [Isriya Paireepairit] Updated Translations: - Basque [Inaki Larranaga] - Czech [Miloslav Trmac] - Dutch [Wouter Bolsterlee] - Estonian [Priit Laes] - Finnish [Ilkka Tuohela] - German [Frank Arnold, Hendrik Richter] - Japanese [Takeshi AIHANA] - Spanish [Francisco Javier F. Serrador] - Swedish [Daniel Nylander] - Vietnamese [Clytie Siddall] Download ======== http://www.muine-player.org/wiki/Download Cheers, -pete From olav@bkor.dhs.org Wed Jun 21 16:12:51 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 436D73B0191; Wed, 21 Jun 2006 16:12:51 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02952-03; Wed, 21 Jun 2006 16:12:50 -0400 (EDT) Received: from amsfep20-int.chello.nl (amsfep17-int.chello.nl [213.46.243.15]) by menubar.gnome.org (Postfix) with ESMTP id 551023B0235; Wed, 21 Jun 2006 16:12:49 -0400 (EDT) Received: from bkor.dhs.org ([24.132.164.94]) by amsfep20-int.chello.nl (InterMail vM.6.01.04.04 201-2131-118-104-20050224) with ESMTP id <20060621201243.WMNK3918.amsfep20-int.chello.nl@bkor.dhs.org>; Wed, 21 Jun 2006 22:12:43 +0200 Received: by bkor.dhs.org (Postfix, from userid 501) id A0A54626877; Wed, 21 Jun 2006 22:12:42 +0200 (CEST) Date: Wed, 21 Jun 2006 22:12:42 +0200 From: Olav Vitters To: gnome-announce-list@gnome.org Subject: ANNOUNCE: gnome-blog 0.9.1 released Message-ID: <20060621201242.GI1266@bkor.dhs.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.5.11 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.26 tagged_above=-999 required=2 tests=[AWL=-0.150, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, FORGED_RCVD_HELO=0.135, TW_GT=0.077, TW_SX=0.077] X-Spam-Score: -2.26 X-Spam-Level: Cc: seth@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 20:12:51 -0000 gnome-blog 0.9.1 ================ Been a long time since the last version was released. With the approval of Seth Nickell, I am releasing a newer version. homepage: http://www.gnome.org/~seth/gnome-blog/ (I will probably soon move this to http://www.gnome.org/projects/gnome-blog/) download: http://download.gnome.org/sources/gnome-blog/0.9/ Features ======== * Clean interface doesn't get in the way of what you're writing * WYSIWYG styled text support * Entries can be written gradually over the course of a day, popping gnome blog open and closed as you have thoughts to jot down and then posting at the end of the day * Operates as a panel object/applet or a standalone application * Supports many different kinds of blogs * Spell checking * Drag and drop images into your blog entry (if your blog supports it) Supported Blogs =============== * Blogger.com / Blogspot.com * Advogato.org * Movable Type * WordPress * LiveJournal.com * Pyblosxom * Any other blog using bloggerAPI or MetaWeblog Fixes ===== * Make add link dialog stay near and above the blog window (Tommi Komulainen) * Do not crash when gtkspell is installed but lack a dictionary (Jan Alonzo) * Ensure window looks sane when resized (Olav Vitters) * Ensure blog applet window receives focus with newer metacity versions and make it stay on top (Olav Vitters) * Correctly position blog window beside the applet when using a vertical panel (Olav Vitters) * Make sure CTRL-B (bold), CTRL-I (italic) work when using the applet (Olav Vitters) * Fix blogs.gnome.org XML-RPC URL (Olav Vitters) Translations ============ * Mətin Əmirov (az) * Vladimir Petkov (bg) * Aleix Badia i Bosch (ca) * Miloslav Trmac (cs) * Hendrik Richter (de) * Adam Weinberger (en_CA) * David Lodge (en_GB) * Francisco Javier F. Serrador (es) * Priit Laes (et) * Ilkka Tuohela (fi) * Christophe Merlet (RedFox) (fr) * Pedro Silva (gl) * Robert Sedak (hr) * Gabor Kelemen (hu) * Francesco Gigli (it) * Takeshi AIHANA (ja) * Hasbullah Bin Pit (ms) * Kjartan Maraas (nb) * Jyotshna Shrestha (ne) * Taco Witte (nl) * Arkadiusz Lipiec (pl) * Afonso Celso Medina (pt_BR) * Duarte Loreto (pt) * Steve Murphy (rw) * Laurent Dhima (sq) * Danilo Šegan (sr@Latn) * Данило Шеган (sr) * Daniel Nylander (sv) * Maxim Dziumanenko (uk) * Clytie Siddall (vi) * storm (zh_CN) * Abel Cheung (zh_TW) -- Regards, Olav From mclasen@redhat.com Wed Jun 21 23:10:41 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AA4213B0172; Wed, 21 Jun 2006 23:10:41 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23030-07; Wed, 21 Jun 2006 23:10:39 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 63BA23B0008; Wed, 21 Jun 2006 23:10:39 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5M3AclX021506; Wed, 21 Jun 2006 23:10:38 -0400 Received: from lacrosse.corp.redhat.com (lacrosse.corp.redhat.com [172.16.52.154]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5M3AcnM019751; Wed, 21 Jun 2006 23:10:38 -0400 Received: from [172.16.83.158] (vpn83-158.boston.redhat.com [172.16.83.158]) by lacrosse.corp.redhat.com (8.12.11.20060308/8.11.6) with ESMTP id k5M3AciB004961; Wed, 21 Jun 2006 23:10:38 -0400 Subject: GTK+ 2.9.4 released From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain Organization: Red Hat Date: Wed, 21 Jun 2006 23:12:41 -0400 Message-Id: <1150945961.4457.2.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.7.3 (2.7.3-2) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.507 tagged_above=-999 required=2 tests=[AWL=0.017, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: -2.507 X-Spam-Level: X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 03:10:41 -0000 GTK+ 2.9.4 is now available for download at: http://ftp.gnome.org/pub/gnome/sources/gtk+/2.9/ gtk+-2.9.4.tar.bz2 md5sum: c06cf2cfa66485600d90789c9e58f27c gtk+-2.9.4.tar.gz md5sum: e3fefedc7f1a89b66c71c9967168a857 This is a development release leading up to GTK+ 2.10. Notes: * This is unstable development release. There are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GTK+ 2.8. If you have problems, you'll need to reinstall GTK+ 2.8. * GTK+ 2.10 will be source compatible with the GTK+ 2.8 series; the new API additions in GTK+ 2.9.0 are finalized by now. * The ABI version has been bumped from 2.4.0 to 2.10.0, since the filechooser backend interface has been changed. Third-party filechooser backends need to be ported to the new interface. Other third-party modules (input methods, image loaders, etc) just need to be reinstalled in the proper location for GTK+ to find them. * Remaining issues for GTK+ 2.10 can be found with following bugzilla query: http://bugzilla.gnome.org/buglist.cgi?product=gtk%2b&target_milestone=2.10+API+Freeze&target_milestone=2.10+Freeze&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED * Bugs should be reported to http://bugzilla.gnome.org. What is GTK+ ============ 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.4/gtk/gtk-building.html Common questions: http://developer.gnome.org/doc/API/2.4/gtk/gtk-question-index.html http://www.gtk.org/faq/ Overview of Changes from GTK+ 2.9.3 to 2.9.4 ============================================ * GtkPrintOperation: - UI improvements in the print dialog - Make printing work without a display connection - Replace "Print to PDF" by "Print to file" that can generate PDF or PostScript - Add a function to the low-level API to enumerate all printers * GtkNotebook tab DND has been improved * GtkProgressbar supports text in activity mode * GtkLabel allows to set the wrap mode * GtkStatusIcon supports transparency * Bugs fixed: 344850 Dragging a GtkTreeViewColumn segfaults when using certain GtkTreeViewColumnDropFunc 342458 Stock menu items without icons are broken in recent GTK+ releases. 335873 notebook DND + popup windows 337882 gtk_progress_bar_set_text() does nothing in activity mode 339456 unix print dialogue help button bug 339702 Make sure printing works without a display 341571 tabs too easily reordered 344074 New Feature: get printer list, and get default print 344743 gtk_targets_include_text() should initialize atoms 344838 Allow func to be NULL in gtk_tree_view_set_search_position_func 344891 GtkPrintOperationPreview signal defs correction 345008 Need updated cairo req 345093 print preview temp file issues 345107 Memory leak in gtk_entry_completion_finalize: User data not freed 345194 gdk_window_set_functions() docs need to be updated 345456 grid-lines property is wrongly registered and get/set. 314278 strings in gtk-update-icon-cache are not marked for translation 344707 size group with widgets in hidden container 344897 Entry completion model NULL handling should be documented 345038 gtk_print_job_set_status' status 345106 dialog button box spacings 345176 GtkIconView doc about drag and drop 345275 doc imporovements for gtk_window_move 345320 Two very similiar strings should be made equal 345321 Add meaning of "shortcut" as translator comment 320034 transparency gtkstatusicon 339592 Add print-to-postscript 344867 custom paper file could use keyfile * Updated translations (cs,de,es,fr,gl,gu,hi,ko,ta,th) A list of all bugs fixed in this release can be found at http://bugzilla.gnome.org/buglist.cgi?bug_id=344838,344743,344867,344891,345008,341571,345038,337882,345093,344707,339456,345107,345275,339702,344074,345320,345321,344897,314278,320034,344850,345194,345176,345106,335873,342458,339592,345456 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Christian Persch, John Finlay, Federico Mena Quintero, Michael Emmel, Marko Anastasov, Bastien Nocera, Carlos Garnacho, Yevgen Muntyan, Tommi Komulainen, Tim Janik, Christian Weiske, Behdad Esfahbod, Alexander Larsson, Felipe Heidrich, Hendrik Richter, Claudio Saavedra, Dan Winship, Callum McKenzie, John Palmieri, Murray Cumming, Kristian Rietveld June 21, 2006 Matthias Clasen From cass@skynet.be Wed Jun 21 10:17:16 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9D8BD3B0FB7 for ; Wed, 21 Jun 2006 10:17:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11755-08 for ; Wed, 21 Jun 2006 10:17:15 -0400 (EDT) Received: from dorado.vub.ac.be (mailhost.vub.ac.be [134.184.129.10]) by menubar.gnome.org (Postfix) with ESMTP id D3CD03B0F77 for ; Wed, 21 Jun 2006 10:17:14 -0400 (EDT) Received: from mach.vub.ac.be (maxi.vub.ac.be [134.184.129.8]) by dorado.vub.ac.be (Postfix) with ESMTP id 4B484D7 for ; Wed, 21 Jun 2006 16:17:02 +0200 (CEST) Received: by mach.vub.ac.be (Postfix, from userid 21099) id 274998D01; Wed, 21 Jun 2006 16:17:02 +0200 (CEST) Received: from cass-lpt.ulb.ac.be (f1-pc174.ulb.ac.be [164.15.24.174]) by mach.vub.ac.be (Postfix) with ESMTP id 6C1178D24 for ; Wed, 21 Jun 2006 16:17:01 +0200 (CEST) Subject: XChat-GNOME 0.12 From: Guillaume Desmottes To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=UTF-8 Date: Wed, 21 Jun 2006 16:16:46 +0200 Message-Id: <1150899407.18129.0.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.496 tagged_above=-999 required=2 tests=[AWL=0.026, BAYES_00=-2.599, TW_JH=0.077] X-Spam-Score: -2.496 X-Spam-Level: X-Mailman-Approved-At: Thu, 22 Jun 2006 09:00:41 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 14:17:16 -0000 XChat-GNOME 0.12 “All roads lead to Sean Connery” is now available. * What is it ? ============== XChat-GNOME is a new frontend to the popular X-Chat IRC client which is designed with the user interface foremost in mind. More informations can be found at: http://xchat-gnome.navi.cx/ * What's changed ? ================== - A new sheme for theme-based foreground and backgrond colors, with automatic palette optimization for mIRC color codes. - Remove redundant nicknames (with a gconf key to re-enable them) - Show a whois tooltip on users in the conversation panel - Display a tooltip with the description of plugins - You can now build XChat-GNOME HEAD using jhbuild (using gnome-2.16 modulesets) - A large number of bug fixes and smaller improvements - Updated translations * Contributors to this release ============================== David Trowbridge, Guillaume Desmottes, Christian Persch, Przemyslaw Grzegorczyk, Gathy Grégory, Isak Savo, Steve Frécinaux, Jeremy Nickurak, Dan Kuester, Brian Pepple * Where can I get it ? ====================== http://releases.navi.cx/xchat-gnome/xchat-gnome-0.12.tar.gz http://releases.navi.cx/xchat-gnome/xchat-gnome-0.12.tar.bz2 -- Guillaume Desmottes Jabber GPG 1024D/711E31B1 | 1B5A 1BA8 11AA F0F1 2169 E28A AC55 8671 711E 31B1 From murrayc@murrayc.com Tue Jun 20 13:04:27 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BEAFD3B05E3; Tue, 20 Jun 2006 13:04:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30785-01; Tue, 20 Jun 2006 13:04:23 -0400 (EDT) Received: from swarthymail-a4.dreamhost.com (sd-green-bigip-60.dreamhost.com [208.97.132.60]) by menubar.gnome.org (Postfix) with ESMTP id 7AB3D3B04F0; Tue, 20 Jun 2006 13:04:23 -0400 (EDT) Received: from noname (p5497DB9C.dip.t-dialin.net [84.151.219.156]) by swarthymail-a4.dreamhost.com (Postfix) with ESMTP id AF950129A91; Tue, 20 Jun 2006 10:03:26 -0700 (PDT) Subject: ANNOUNCE: gtkmm 2.9.5 From: Murray Cumming To: gnome-announce , gtkmm-list Content-Type: text/plain Date: Tue, 20 Jun 2006 19:03:22 +0200 Message-Id: <1150823002.6261.21.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.404 tagged_above=-999 required=2 tests=[AWL=0.041, BAYES_00=-2.599, TW_GT=0.077, TW_TK=0.077] X-Spam-Score: -2.404 X-Spam-Level: X-Mailman-Approved-At: Thu, 22 Jun 2006 09:02:35 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2006 17:04:28 -0000 *** gtkmm 2.9/2.10: gtkmm 2.9 wraps new API in GTK+ 2.9, and is API/ABI-compatibile with gtkmm 2.8, 2.6 and 2.4. It is a version of the gtkmm-2.4 API. This will become the API-stable gtkmm 2.10, wrapping GTK+ 2.10. gtkmm stays in-sync with GTK+ by following the official GNOME release schedule: http://www.gnome.org/start/unstable/ Bindings for the rest of the GNOME Platform are also available, and are also API-stable. http://www.gtkmm.org *** Changes gtkmm 2.9.5: Gtk: * Assistant: Added update_buttons_state(). * Button: Added get/set_image_position(). * Clipboard: Added request_rich_text(), wait_for_rich_text(), and wait_rich_text_is_available(). * Entry: Added get/set_inner_border(). * Notebook: Added set_group_id(), get_group_id(), get_tab_reorderable(), set_tab_reorderable(), get_tab_detachable(), set_tab_detachable(). * PrintContext: Added set_cairo_context(). * Printoperation: - run(): Added PrintOperationAction parameter. - Removed set_show_dialog(), set_pdf_target(), set_track_print_status(), run_async(). - Added set_export_filename(), set_track_print_status(), set_show_progress(), set_allow_async(), set_custom_tab_label(). * Fixed warnings (Elijah Newren, Jonathon Jongsma) Pango: * Context: Added get_matrix(). * Font: Added describe_with_absolute_size(), get_font_map(). * FontDescription: Added set_absolute_size(), get_size_is_absolute(). * Layout: Added get_font_description(), index_to_line_x(). * Renderer: Added get_matrix(). *** Download http://www.gtkmm.org/download.shtml You will need libsigc++ 2.0, available here: https://sourceforge.net/project/showfiles.php?group_id=1970 *** Development There is active discussion on the mailing list: http://www.gtkmm.org/mailinglist.shtml and in the #c++ channel on irc.gnome.org -- Murray Cumming murray@usa.net www.murrayc.com From murrayc@murrayc.com Thu Jun 22 17:21:32 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 53AA83B083F; Thu, 22 Jun 2006 17:21:32 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27489-07; Thu, 22 Jun 2006 17:21:31 -0400 (EDT) Received: from swarthymail-a3.dreamhost.com (sd-green-bigip-62.dreamhost.com [208.97.132.62]) by menubar.gnome.org (Postfix) with ESMTP id 713DB3B0823; Thu, 22 Jun 2006 17:21:26 -0400 (EDT) Received: from noname (p5497EA12.dip.t-dialin.net [84.151.234.18]) by swarthymail-a3.dreamhost.com (Postfix) with ESMTP id 13D217F03D; Thu, 22 Jun 2006 14:21:24 -0700 (PDT) Subject: ANNOUNCE: gtkmm 2.9.6 From: Murray Cumming To: gnome-announce , gtkmm-list Content-Type: text/plain Date: Thu, 22 Jun 2006 23:21:22 +0200 Message-Id: <1151011282.5804.37.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.4 tagged_above=-999 required=2 tests=[AWL=0.045, BAYES_00=-2.599, TW_GT=0.077, TW_TK=0.077] X-Spam-Score: -2.4 X-Spam-Level: X-Mailman-Approved-At: Thu, 22 Jun 2006 19:51:58 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 21:21:32 -0000 *** gtkmm 2.9/2.10: gtkmm 2.9 wraps new API in GTK+ 2.9, and is API/ABI-compatibile with gtkmm 2.8, 2.6 and 2.4. It is a version of the gtkmm-2.4 API. This will become the API-stable gtkmm 2.10, wrapping GTK+ 2.10. gtkmm stays in-sync with GTK+ by following the official GNOME release schedule: http://www.gnome.org/start/unstable/ Bindings for the rest of the GNOME Platform are also available, and are also API-stable. http://www.gtkmm.org *** Changes gtkmm 2.9.6: Gtk: * Label: Added get/set_line_wrap_mode() and property. * MenuShell: Added get/set_take_focus() and property. * MessageDialog: Added set_image() and property. * StatusIcon: Added get_geometry(). * TreeView: Added get/set_rubber_banding(), get/set_grid_lines(), get/set_enable_tree_lines(). Added properties for show-expanders, level-indentation, rubber-banding, enable-grid-lines, and enable-tree-lines. (Murray Cumming) * PrintJob: send_job(): No longer throws an exception. * PrintUnixDialog: Added add_custom_tab() overload that takes a ustring. * Printer: Added get_job_count(), and enumerate_printers(), and others. * Printsettings: - Put the standard settings in a member class so they can be used as Gtk::PrintSettings::Keys::SOMETHING. - Remove get/set_print_to_file(). * PrintOperation: Added a version of run() without the Window parameter. * PrintOperationPreview: New class. (Most printing stuff: Marko Anastasov) *** Download http://www.gtkmm.org/download.shtml You will need libsigc++ 2.0, available here: https://sourceforge.net/project/showfiles.php?group_id=1970 *** Development There is active discussion on the mailing list: http://www.gtkmm.org/mailinglist.shtml and in the #c++ channel on irc.gnome.org -- Murray Cumming murray@usa.net www.murrayc.com From bryce@bryceharrington.org Sat Jun 24 01:30:28 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 157CC3B0150 for ; Sat, 24 Jun 2006 01:30:28 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25007-03 for ; Sat, 24 Jun 2006 01:30:24 -0400 (EDT) Received: from dc2-web15.assortedinternet.com (dc2-web15.assortedinternet.com [66.36.233.162]) by menubar.gnome.org (Postfix) with ESMTP id 701A03B0132 for ; Sat, 24 Jun 2006 01:30:24 -0400 (EDT) Received: from c-24-20-224-228.hsd1.or.comcast.net ([24.20.224.228] helo=localhost) by dc2-web15.assortedinternet.com with esmtpa (Exim 4.52) id 1Fu0in-0003sK-Oi for gnome-announce-list@gnome.org; Sat, 24 Jun 2006 01:30:18 -0400 Date: Fri, 23 Jun 2006 22:28:53 -0700 From: Bryce Harrington To: gnome-announce-list@gnome.org Subject: Inkscape Announces 0.44 Release :: http://www.inkscape.org Message-ID: <20060624052853.GE23238@bryceharrington.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.11 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - dc2-web15.assortedinternet.com X-AntiAbuse: Original Domain - gnome.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - bryceharrington.org X-Source: X-Source-Args: X-Source-Dir: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.597 tagged_above=-999 required=2 tests=[AWL=0.002, BAYES_00=-2.599] X-Spam-Score: -2.597 X-Spam-Level: X-Mailman-Approved-At: Sat, 24 Jun 2006 06:24:44 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jun 2006 05:30:28 -0000 The Inkscape community today officially released the latest version of its vector graphic drawing software. Inkscape 0.44 adds many new features, is faster and more usable, better supports SVG, is translated into more languages (17 on last count), and adds a lot of polish and refinement. Major new features include Layers dialog, support for clipping and masking, improved PDF export with transparency, configurable keyboard shortcuts, innovative "node sculpting" capability in Node tool, and the Outline mode. Significant gains are achieved in performance, especially in screen rendering and Node tool. Noticeable user interface changes include docked color swatches, interactive style indicator in the statusbar, a redesigned preferences dialog, a text toolbar, and new icons. Our SVG compliance has also taken a step forward, with the added support for the tag and ICC color profiles for images. This release also includes hundreds of smaller features, usability enhancements and bug fixes. For several releases, a collection of extension effects was shipped with Inkscape, but the Effects menu to access them was turned off by default. With this release, it has become mature enough, with effects working out of the box on all platforms, so this menu is enabled. We'd like to thank Google for their sponsorship of five students to work, during the summer of 2006, on several Inkscape development efforts: SVG Filters, Inkboard protocol, PDF export with Cairo, and memory optimization. Download Linux, Windows, and Mac OS X packages: http://sourceforge.net/project/showfiles.php?group_id=93438 For many more details, see the complete Release Notes for 0.44: http://wiki.inkscape.org/wiki/index.php/Release_Notes Community submitted screenshots: http://www.inkscape.org/screenshots/ ===About Inkscape=== Inkscape is an open source drawing tool that uses the World Wide Web Consortium's ([[W3C]]) scalable vector graphics format (SVG). Some supported SVG features include basic shapes, paths, text, markers, clones, alpha blending, transforms, gradients, and grouping. In addition, Inkscape supports Creative Commons' metadata, node-editing, layers, complex path operations, text-on-path, text-in-shape, and SVG XML editing. It can also import EPS, PostScript, and most bitmap formats, and exports PNG, PS, PDF and various vector formats. Inkscape's main motivation is to provide the Open Source community with a fully [[W3C]] compliant XML, SVG, and CSS2 drawing tool. Additional work includes conversion of the codebase from C/Gtk to C++/Gtkmm, emphasizing a lightweight core with powerful features added through an extension mechanism, and maintaining a friendly, open, community-oriented development process. From mclasen@redhat.com Mon Jun 5 14:15:03 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 744343B09D3; Mon, 5 Jun 2006 14:15:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20278-06; Mon, 5 Jun 2006 14:15:01 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id D637E3B0988; Mon, 5 Jun 2006 14:15:00 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k55IF08I024331; Mon, 5 Jun 2006 14:15:00 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [172.16.76.12]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k55IF0I9021827; Mon, 5 Jun 2006 14:15:00 -0400 Received: from golem.boston.redhat.com (golem.boston.redhat.com [172.16.80.24]) by mail.boston.redhat.com (8.12.8/8.12.8) with ESMTP id k55IExAV012588; Mon, 5 Jun 2006 14:14:59 -0400 From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain; charset=UTF-8 Date: Mon, 05 Jun 2006 14:14:59 -0400 Message-Id: <1149531299.4071.35.camel@golem.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.1 (2.7.1-1) Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.543 tagged_above=-999 required=2 tests=[AWL=0.058, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.543 X-Spam-Level: Cc: Subject: GLib 2.11.2 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jun 2006 18:15:03 -0000 GLib 2.11.2 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.11/ http://ftp.gnome.org/pub/GNOME/sources/glib/2.11/ glib-2.11.2.tar.bz2 md5sum: 18464b85bfd589f83897623c637a1553 glib-2.11.2.tar.gz md5sum: f728cd295ac98d4b95d850fe91c05fd5 This is a development release leading up to GLib 2.12. Notes: * This is unstable development release. While it has had a bit of testing, there are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GLib 2.10. If you have problems, you'll need to reinstall GLib 2.10. * GLib 2.12 will be source and binary compatible with the GLib 2.10.x series (for some caveats, see the README). At this point, the API additions in the 2.11.x series are almost finished. * Bugs should be reported to http://bugzilla.gnome.org. About GLib ========== GLib is the low-level core library that forms the basis for projects such as GTK+ and GNOME. It provides data structure handling for C, portability wrappers, and interfaces for such runtime functionality as an event loop, threads, dynamic loading, and an object system. More information about GLib is available at: http://www.gtk.org/ An installation guide for the GTK+ libraries, including GLib, can be found at: http://developer.gnome.org/doc/API/2.0/gtk/gtk-building.html Overview of Changes from GLib 2.11.1 to GLib 2.11.2 =================================================== * Add g_ascii_stroll to parse signed 64bit integers * GMarkup: add a flag to treat CDATA as text * GHashTable: add functions to remove all entries * GMainLoop: add functions to find the currently running source, and determine if it is destroyed * Bug fixes: 342563 g_atomic_thread_init() needs to be called before other _g_*_thread_init() functions 343548 Potential use after free in callers of g_string_free() 168538 Wish: Clearing contents of GHashTables 321886 GTK+ cannot be reliably used in multi-threaded applications 341826 goption.c: 'strtoll' is C99's function 343899 g_ascii_formatd dosn't work as expected for all format strings 317793 Make GEnumValue strings const 337129 Compile warnings in G_IMPLEMENT_INTERFACE 303622 What is G_TYPE_CHAR? * Updated translations (bg,dz,eu,gl,ja,nl,th,vi) A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=341826,342563,343548,168538,168538,321886,343899,321886,317793,337129,303622 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Peter Kjellerstedt, Kazuki Iwamoto Leonard den Ottolander, Chris Wilson, Behdad Esfahbod, Matt Barnes, ystein Johansen, Tim Janik Morten Welinder Matthias Clasen June 5, 2006 From mclasen@redhat.com Mon Jun 5 16:21:34 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 09B113B0543; Mon, 5 Jun 2006 16:21:34 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28553-01; Mon, 5 Jun 2006 16:21:32 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 0F8903B0012; Mon, 5 Jun 2006 16:21:31 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k55KLVn7006951; Mon, 5 Jun 2006 16:21:31 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [172.16.76.12]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k55KLUBq020469; Mon, 5 Jun 2006 16:21:31 -0400 Received: from golem.boston.redhat.com (golem.boston.redhat.com [172.16.80.24]) by mail.boston.redhat.com (8.12.8/8.12.8) with ESMTP id k55KLUAV025318; Mon, 5 Jun 2006 16:21:30 -0400 From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain Date: Mon, 05 Jun 2006 16:21:30 -0400 Message-Id: <1149538890.4071.40.camel@golem.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.1 (2.7.1-1) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.429 tagged_above=-999 required=2 tests=[AWL=-0.059, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_GD=0.077, TW_GT=0.077, TW_XI=0.077] X-Spam-Score: -2.429 X-Spam-Level: Cc: Subject: GTK+ 2.9.2 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jun 2006 20:21:34 -0000 GTK+ 2.9.2 is now available for download at: http://ftp.gnome.org/pub/gnome/sources/gtk+/2.9/ gtk+-2.9.2.tar.gz md5sum: c63e7d0cf7c4e983206c3088a0fb8862 gtk+-2.9.2.tar.bz2 md5sum: 17629437af44fce03485101371c8f041 This is a development release leading up to GTK+ 2.10. Notes: * This is unstable development release. There are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GTK+ 2.8. If you have problems, you'll need to reinstall GTK+ 2.8. * GTK+ 2.10 will be source compatible with the GTK+ 2.8 series; the new API additions in GTK+ 2.9.0 are not yet completely finalized, so there are likely incompatibilies between this release and the final 2.10 release. * The ABI version has been bumped from 2.4.0 to 2.10.0, since the filechooser backend interface has been changed. Third-party filechooser backends need to be ported to the new interface. Other third-party modules (input methods, image loaders, etc) just need to be reinstalled in the proper location for GTK+ to find them. * Remaining issues for GTK+ 2.10 can be found with following bugzilla query: http://bugzilla.gnome.org/buglist.cgi?product=gtk%2b&target_milestone=2.10+API+Freeze&target_milestone=2.10+Freeze&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED * Bugs should be reported to http://bugzilla.gnome.org. What is GTK+ ============ 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.4/gtk/gtk-building.html Common questions: http://developer.gnome.org/doc/API/2.4/gtk/gtk-question-index.html http://www.gtk.org/faq/ Overview of Changes from GTK+ 2.9.1 to 2.9.2 ============================================ * GtkPrintOperation - Support asynchronous pagination with the ::paginate signal - Add gtk_print_operation_cancel - Support application-specific widgets - Allow disabling features based on application capabilities - Optionally show progress - Change some function names in GtkPrintContext to be longer and better - Support preview, the default implementation spawns evince, but the api allows for an internal preview implementation * GtkCellView - Add a model property * GtkStatusIcon - Allow to obtain screen geometry * GtkTreeView - Many bug fixes, in particular for RTL handling - Separate sensitive and selectable properties of rows - Optionally allow rubberband selection * GtkButton - Add image-spacing style property - Add image-position property * GtkToolButton - Add icon-spacing style property * Make GTK+ work as an untrused X client * Bugs fixed: 343838 gtkprintoperationpreview.h guards 305530 Crashes while creating source code w/GtkFontSelection 341327 Memory corruption inside glib 341734 cursor blocked to dnd mode after using shift and dnd on a GtkCalendar 343453 G_DEFINE_TYPE messes up internal typenames of GdkWindow and GdkPixmap 136571 Problems running as untrusted client 168105 the right edge tab does not appear when switching tab 172535 Add support for UI builders in gtk+ 302556 GtkTreeView widget signals are badly documented 324480 Selecting first item with keyboard is difficult 340428 small cleanup 340444 don't run the custom page size dialogue 340839 Critical warnings in GtkTreeModelFilter 341898 gtk_tree_view_insert_column_with_attributes doesn't work with fixed_height_mode 342003 DnD: Conditional jump or move depends on uninitialised value 342072 Wrong drop location in GtkEntry 342096 GtkImage animation CRITICALS on switching themes 342513 widget class style property with type module 342529 gdk should set resolution on PangoCairoFontmap, not PangoCairoContext 342535 Add documentation for new GtkWidget style properties (including Since tags) 342543 can't compile gtk+ on opensolaris using sun cc 342569 Typo in decl of gdk_color_parse 342752 Need a way to specify custom tab label for custom page in Print dialog 342754 print-editor: font button dialog doesn't get focus if main window has a window group 342781 GtkPrintUnixDialog: Collate should be insensitive unless Copies is > 1 342783 GtkPrintUnixDialog: Range textinput area should be insensitive unless range radiobutton is selected 342894 Use after free inside gtk_text_view_set_buffer 342930 GtkButton should offer a way to position the image relative to the text 343088 Some typos in the PO file 343425 "grab-notify"-signal is not correctly propagated for internal children 343438 gtk_color_button_set_color() doesn't emit "color-set" signal 343475 page setup unix dialog confusion 343625 allow to get only some info from gtk_status_icon_get_geometry 343677 GtkWindow chains key-release to key-press 320431 Text too close when using East/West in a GtkToolButton 321523 GtkTreeView's test_expand_row signal emitting impractical on row expand all 342007 Warning in gtk_paned_compute_position 343233 gdk_rectangle_intersect doc 333284 expander animation not working in RTL mode 343444 change color of gtk-demo source-buffer comment color from red to DodgerBlue 343630 Small inconsistence in migration documentation 80127 Rubberbanding for GtkTreeView 341450 status icon + libnotify 341679 Allow absolute filenames in the options entries * Updated translations (bg,cy,de,el,es,et,eu,gl,gu,it,ja, nb,nl,pt_BR,th,vi) Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Alexander Larsson, Behdad Esfahbod, Benjamin Berg, Caolan McNamara, Carlos Garnacho Parro, Carol Spears, Christian Persch, Chris Wilson, Claudio Saavedra, Clytie Siddall, Damon Chaplin, Daniel Lindenaar, Dan Winship, Diana Fong, Ed Catmur, Emmanuele Bassi, Havoc Pennington, Henrique Romano, Hiroyuki Ikezoe, James Moger, Johan Dahlin, Kouhei Sutou, Kristian Rietveld, Markku Vire, Mart Raudsepp, Masatake Yamato, Michael Emmel, Michael Natterer, Murray Cumming, Olexiy Avramchenko, Paolo Borelli, Patrick Monnerat, Richard Hult, Sampo Savolainen, Sebastien Bacher, Srirama Sharma, Stefan Kost, Tim Janik, Tommi Komulainen, Tor Lillqvist, Yevgen Muntyan A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=342072,342096,342003,341734,305530,168105,342007,342529,342535,342543,342569,341679,342752,172535,342513,342781,342783,342754,136571,341450,333284,340428,340839,341898,321523,343088,343233,324480,342894,320431,342930,343453,343425,343438,343444,340444,343475,302556,343677,343625,80127,343838,341327,168105,343630 Matthias Clasen June 5, 2006 From thomas@apestaart.org Tue Jun 6 06:04:09 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id ABA3E3B0750; Tue, 6 Jun 2006 06:04:09 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04145-08; Tue, 6 Jun 2006 06:04:08 -0400 (EDT) Received: from mx1.es6.egwn.net (server02.es6.egwn.net [195.10.6.12]) by menubar.gnome.org (Postfix) with ESMTP id 6BEAF3B014E; Tue, 6 Jun 2006 06:04:08 -0400 (EDT) Received: from mx1.fr4.egwn.net (server07.fr4.egwn.net [62.39.85.77]) by mx1.es6.egwn.net (Postfix) with ESMTP id D5F0C4F82E2; Tue, 6 Jun 2006 12:04:05 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by mx1.fr4.egwn.net (spiffy mail daemon) with ESMTP id 0D94183BE7; Tue, 6 Jun 2006 12:04:00 +0200 (CEST) Received: from mx1.fr4.egwn.net ([127.0.0.1]) by localhost (server07.fr4.egwn.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16922-12; Tue, 6 Jun 2006 12:03:14 +0200 (CEST) Received: from thread.fluendo.lan (core.fluendo.com [195.10.6.237]) by mx1.fr4.egwn.net (spiffy mail daemon) with ESMTP id C559583BE4; Tue, 6 Jun 2006 12:03:14 +0200 (CEST) Received: from thomas.fluendo.lan (thomas.fluendo.lan [192.168.1.10]) by thread.fluendo.lan (Postfix) with ESMTP id 6EF06FFDB; Tue, 6 Jun 2006 12:03:18 +0200 (CEST) From: Thomas Vander Stichele To: gnome-hackers@gnome.org In-Reply-To: <1148971293.12902.2.camel@red> References: <1139648664.6627.40.camel@localhost> <1148971293.12902.2.camel@red> Content-Type: text/plain Date: Tue, 06 Jun 2006 12:03:19 +0200 Message-Id: <1149588200.24971.3.camel@otto.amantes> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 (2.6.1-1.fc5.2) Content-Transfer-Encoding: 7bit X-Scanned: By amavis at egwn.net X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.626 tagged_above=-999 required=2 tests=[AWL=-0.070, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, RCVD_IN_SBL=3.16] X-Spam-Score: 0.626 X-Spam-Level: Cc: gnome-announce-list@gnome.org, devel-announce-list@gnome.org Subject: Re: Subversion migration schedule (new cut-off Fri 16 June) X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 10:04:10 -0000 On Tue, 2006-05-30 at 13:41 +0700, Ross Golder wrote: > Hi, > > As the various show-stoppers that prevented our previously scheduled > migration from going ahead have now been resolved, I am proposing that > the new migration go ahead at 23:59UTC on Friday 16th June 2006. Please > let us know a.s.a.p if that will be inconvenient for anyone. It may be inconvenient for any hack sessions done at GUADEC if it leaves people with too little time to convert their laptop checkouts properly, or if anything goes wrong with the conversion. I don't know if that's important enough of a reason, but it'd be too bad if we'd be stifling the surge of activity at GUADEC. Thomas From carlosg@gnome.org Tue Jun 6 10:05:02 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1A0BD3B0132; Tue, 6 Jun 2006 10:05:02 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26815-01; Tue, 6 Jun 2006 10:05:01 -0400 (EDT) Received: from localhost.localdomain (133.Red-88-0-26.dynamicIP.rima-tde.net [88.0.26.133]) by menubar.gnome.org (Postfix) with ESMTP id CB9F23B0107; Tue, 6 Jun 2006 10:05:00 -0400 (EDT) Received: by localhost.localdomain (Postfix, from userid 1000) id 7F37E13F73; Tue, 6 Jun 2006 16:04:58 +0200 (CEST) From: Carlos Garnacho To: system-tools-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Tue, 06 Jun 2006 16:04:57 +0200 Message-Id: <1149602697.21203.7.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.528 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, RCVD_IN_NJABL_DUL=1.946, RCVD_IN_SORBS_DUL=2.046] X-Spam-Score: 1.528 X-Spam-Level: * X-Mailman-Approved-At: Tue, 06 Jun 2006 10:20:33 -0400 Cc: Subject: System Tools Backends 1.9.0 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 14:05:02 -0000 The System Tools Backends version 1.9.0 "Pluto tan" have been released. This is the first release towards 2.x series, which will feature DBus interfaces to access data, signals to notify asynchronously about modifications in the configuration and a cleaner codebase. If you're interested in the 1.4.x series, checkout the stb-1-4 CVS branch. The System Tools Backends are a set of cross-platform modules for Linux, FreeBSD and other Unix systems. The backends provide an common DBus interface to all distros for modifying or reading the system configuration. Right now the System Tools Backends fully support various distros/OS such as: Redhat, Mandrake, SuSE, Fedora, Debian (and derivations like Ubuntu, Linex, Guadalinex...), Gentoo, Slackware, FreeBSD, OpenNA, PLD, Vine and Specifix. Downloading =========== You can get it from : http://system-tools-backends.freedesktop.org/downloads/1.9/ From carlosg@gnome.org Tue Jun 6 10:05:22 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B7A6E3B014C; Tue, 6 Jun 2006 10:05:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26770-09; Tue, 6 Jun 2006 10:05:22 -0400 (EDT) Received: from localhost.localdomain (133.Red-88-0-26.dynamicIP.rima-tde.net [88.0.26.133]) by menubar.gnome.org (Postfix) with ESMTP id 7A00B3B012A; Tue, 6 Jun 2006 10:05:21 -0400 (EDT) Received: by localhost.localdomain (Postfix, from userid 1000) id 0618413F73; Tue, 6 Jun 2006 16:05:20 +0200 (CEST) From: Carlos Garnacho To: system-tools-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Tue, 06 Jun 2006 16:05:19 +0200 Message-Id: <1149602719.21203.9.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.528 tagged_above=-999 required=2 tests=[AWL=-0.000, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, RCVD_IN_NJABL_DUL=1.946, RCVD_IN_SORBS_DUL=2.046] X-Spam-Score: 1.528 X-Spam-Level: * X-Mailman-Approved-At: Tue, 06 Jun 2006 10:20:34 -0400 Cc: Subject: Liboobs 0.1.0 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 14:05:22 -0000 Liboobs 0.1.0, 2006-06-06 ----------------------------------------------- Liboobs version 0.1.0 "Shattered ataraxia" has been released. Liboobs is a lightweight library that provides a GObject based interface to system-tools-backends. It's completely abstracted of the communication and authentication details, making it easy for applications to integrate with the system details. Downloading =========== You can get it from : ftp://ftp.gnome.org/pub/GNOME/sources/liboobs/0.1/ From carlosg@gnome.org Tue Jun 6 10:05:35 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AB0C03B012A; Tue, 6 Jun 2006 10:05:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26769-07; Tue, 6 Jun 2006 10:05:34 -0400 (EDT) Received: from localhost.localdomain (133.Red-88-0-26.dynamicIP.rima-tde.net [88.0.26.133]) by menubar.gnome.org (Postfix) with ESMTP id D49943B0179; Tue, 6 Jun 2006 10:05:33 -0400 (EDT) Received: by localhost.localdomain (Postfix, from userid 1000) id E163B13F73; Tue, 6 Jun 2006 16:05:31 +0200 (CEST) From: Carlos Garnacho To: system-tools-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Date: Tue, 06 Jun 2006 16:05:31 +0200 Message-Id: <1149602731.21203.11.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.528 tagged_above=-999 required=2 tests=[AWL=-0.000, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, RCVD_IN_NJABL_DUL=1.946, RCVD_IN_SORBS_DUL=2.046] X-Spam-Score: 1.528 X-Spam-Level: * X-Mailman-Approved-At: Tue, 06 Jun 2006 10:20:34 -0400 Cc: Subject: GNOME System Tools 2.15.0 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 14:05:35 -0000 The GNOME System Tools version 2.15.0 "Uncanny routine" have been released. The GNOME System Tools are a set of cross-platform configuration utilities for Linux and other Unix systems. The frontends knows nothing about the underlying system and provide the same user interface across the different types of systems. Internally they use the Liboobs library. Changes since last release =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D Common =3D=3D=3D=3D=3D=3D - use intltool 0.35, move ALL_LINGUAS to po/LINGUAS (Przemys=C5=82aw Grzegorczyk) - Make g-s-t work fine with --as-needed (Mike Auty) All tools =3D=3D=3D=3D=3D=3D=3D=3D=3D - Use liboobs. The XML interface is deprecated (Garnacho) - Adopt a more instant apply policy (Garnacho) - UI Changes (Garnacho) - Use named icons in menus and window icon for themeability (Sebastien Bacher, Garnacho) - Set translation domain for popups (Sebastien Bacher) Users =3D=3D=3D=3D=3D - Use adduser/addgroup if it's present (Garnacho) Network =3D=3D=3D=3D=3D=3D=3D - Use DHCP as the default (Garnacho) Services =3D=3D=3D=3D=3D=3D=3D=3D - Add advanced runlevels/priorities editor (Garnacho) Shares =3D=3D=3D=3D=3D=3D - Rework defaults for new shared folders (Garnacho) Time =3D=3D=3D=3D - Update some NTP servers (Gary Coady, Jun Kobayashi) Translations =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D - dz (Pema Geyleg) - es (Francisco Javier F. Serrador) - et (Ivar Smolin) - fi (Ilkka Tuohela) - gl (Ignacio Casal Quinteiro) - gu (Ankit Patel) - it (Francesco Marletta) - ka (Vladimer Sichinava) - nb (Kjartan Maraas) - ru (Nickolay V. Shmyrev) - th (Theppitak Karoonboonyanan) - tr (Deniz Kocak) Downloading =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D You can get it from : ftp://ftp.gnome.org/pub/GNOME/sources/gnome-system-tools/2.15/ From kalle.vahlman@gmail.com Wed Jun 7 13:52:15 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6E4E43B01A4 for ; Wed, 7 Jun 2006 13:52:15 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02283-05 for ; Wed, 7 Jun 2006 13:52:14 -0400 (EDT) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.168]) by menubar.gnome.org (Postfix) with ESMTP id 965853B0115 for ; Wed, 7 Jun 2006 13:52:13 -0400 (EDT) Received: by ug-out-1314.google.com with SMTP id u2so434421uge for ; Wed, 07 Jun 2006 10:52:12 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=iebILRnovVdTxqGwouC/tR/+4MtaielhlX8Ua0W3DfGDpIfDH3f9KvKP70TzbcVubjtjL/zWOS7/A2VM/5vvfCOtbjHJsooRdCtWuC03vTCdPlQ6u7BZgs1lUvDhzlgKMUpdMeg2eI3oWqrM64fhyC+c+LkzIbKwCkxiTwVCgEI= Received: by 10.67.101.10 with SMTP id d10mr759171ugm; Wed, 07 Jun 2006 10:40:55 -0700 (PDT) Received: by 10.67.16.10 with HTTP; Wed, 7 Jun 2006 10:40:55 -0700 (PDT) Message-ID: <177e83dd0606071040h35f807a8o205c18c2a68ee184@mail.gmail.com> Date: Wed, 7 Jun 2006 20:40:55 +0300 From: "Kalle Vahlman" To: gnome-announce-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.432 tagged_above=-999 required=2 tests=[AWL=-0.390, BAYES_00=-2.599, RCVD_IN_BL_SPAMCOP_NET=1.558, SPF_PASS=-0.001] X-Spam-Score: -1.432 X-Spam-Level: X-Mailman-Approved-At: Wed, 07 Jun 2006 14:03:53 -0400 Subject: [Announce] The Scw library version 0.4.4 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: zuh@iki.fi List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 17:52:15 -0000 I'm happy to announce a new release of Scw, the chat-oriented widget set! (I have a broken memory chip, didn't remember to send announcements for the releases between 0.3.0 and 0.4.4...) What's new? ========= The release 0.4.4 includes the following changes (from 0.3.0): * Bugfixes: - Draw much less (but still enough ;) - Fix memory leaks * API changes: - scw_view_set_column_foldable(): Add a boolean argument to control the foldability (previously you couldn't undo setting foldability) - New signal: "buffer-request" - New method: scw_view_scroll_to_row(): Scrolls the view to given row (a GtkTreePath) * Gtk-docs, at last! (and possibly more, but haven't managed to keep track of all the individual fixes) What is it? ======= Scw is a library that includes widgets designed for chat programs. Currently this means (but will be extended with time): * ScwView, a view that has: - Activatable text (urls, user names, etc) - Embedded icons - Pango markup - Wrapping - GtkTreeModel implementations as data storage - Different interaction modes (select, pan, smart pan) * ScwEntry, an derivate of GtkEntry which adds: - Simple input history Python and Ruby bindings are available, Java-Gtk bindings are (still) planned (but not on the immediate todo list). Any bindings will be welcomed. As a bonus feature, the widgets are guaranteed to compile and work on the Maemo[1] platform (used in the Nokia 770[2] that everybody is so exited about). More detailed description, as well as API documentation is found on the home page of Scw. Applications that use Scw ================== * Rirc (an irssi2 client, not exactly sure about status) * Silky (is being ported to it in the REWRITE branch, http://silky.sourceforge.net/ * Telepathy people have been doing a proto client using Scw (http://telepathy.freedesktop.org) * Your app here possibly? Let me know! Where to get it? ============ Homepage: http://iki.fi/zuh/scw/ Version 0.4.4: http://iki.fi/zuh/scw/scw-0.4.4.tar.gz Python bindings http://iki.fi/zuh/scw/python-scw-0.4.0.tar.gz Ruby bindings http://iki.fi/zuh/scw/ruby-scw-0.4.0.tar.gz Communication options ================ As I haven't yet set up mailing lists or bugzilla or anything really, bug reports and other stuff should be sent straight to me at zuh@iki.fi. -- Kalle Vahlman, zuh@iki.fi Powered by http://movial.fi Interesting stuff at http://syslog.movial.fi From Brian.Cameron@Sun.COM Wed Jun 7 18:25:45 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D74D13B04F0; Wed, 7 Jun 2006 18:24:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19021-09; Wed, 7 Jun 2006 18:24:40 -0400 (EDT) Received: from brmea-mail-1.sun.com (brmea-mail-1.Sun.COM [192.18.98.31]) by menubar.gnome.org (Postfix) with ESMTP id 648333B0E7D; Wed, 7 Jun 2006 18:24:21 -0400 (EDT) Received: from fe-amer-04.sun.com ([192.18.108.178]) by brmea-mail-1.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k57MOKiX019647; Wed, 7 Jun 2006 16:24:20 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0I00A01GLFT100@mail-amer.sun.com> (original mail from Brian.Cameron@Sun.COM); Wed, 07 Jun 2006 16:24:20 -0600 (MDT) Received: from [192.9.61.158] by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0I00M6DGWJIGM4@mail-amer.sun.com>; Wed, 07 Jun 2006 16:24:20 -0600 (MDT) Date: Wed, 07 Jun 2006 17:24:20 -0500 From: Brian Cameron Sender: Brian.Cameron@Sun.COM To: gnome-announce-list@gnome.org, gdm-list@gnome.org Message-id: <44875214.1030303@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5.0.2 (X11/20060515) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.446 tagged_above=-999 required=2 tests=[AWL=-0.002, BAYES_00=-2.599, TW_GD=0.077, TW_PM=0.077, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.446 X-Spam-Level: Cc: Subject: GDM2 2.8.0.8 (stable), the "SecurityFix" Release] X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 22:25:46 -0000 AOOH-GAH -------- (If you have no clue what gdm is, skip a few paragraphs down first) The 2.8.0.8 release is a stable release of GDM (note GDM 2.8.0.8 corresponds with gnome-2-12 branch) with the following new features. Note this contains an important security fix, so users and distros should update immediately. - Correction for serious security issue where the user can enter the GDM configuration GUI with a user password when the Face Browser is enabled. Refer to bugzilla.gnome.org bug #343476 (Brian Cameron) This issue impacts all versions of GDM 2.8.0.0-2.8.0.7, 2.14.0-2.14.7, and 2.15.0-2.15.3. This issue was reported to vendor-sec one week ago and has ID #CVE-2006-2452. - Translation updates (Stanislav Brabec, Josep Puigdemont i Casamaj\303\263, Abel Cheung, Priit Laes, Christophe Merlet, Clytie Siddall, \303\205smund Skj\303\246veland, Tommi Vainikainen) Note: GDM2 was originally written by Martin K. Petersen . Much work has been done on GDM2 by George Lebl, and Brian Cameron currently shares maintainership duties with the Queen of England. Note2: If installing from the tarball do note that make install overwrites most of the setup files, all except gdm.conf. It will however save backups with the .orig extension first. #ifndef GDM_DISABLE_DEPRECATED Note3: Note3 has been depracated ... #endif /* GDM_DISABLE_DEPRECATED */ Downloading: ============ Online Documentation: http://www.gnome.org/projects/gdm/ http://ftp.gnome.org/pub/GNOME/sources/gdm/2.15/ No RPM this time around BTW. Have fun. A spec file is included though, so you can try: rpmbuild -ta gdm-whatever.tar.gz Have fun, Brian From Brian.Cameron@Sun.COM Wed Jun 7 18:27:17 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7C4C83B0C49; Wed, 7 Jun 2006 18:27:17 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19552-05; Wed, 7 Jun 2006 18:27:15 -0400 (EDT) Received: from brmea-mail-3.sun.com (brmea-mail-3.Sun.COM [192.18.98.34]) by menubar.gnome.org (Postfix) with ESMTP id CCF8D3B0E66; Wed, 7 Jun 2006 18:27:14 -0400 (EDT) Received: from fe-amer-02.sun.com ([192.18.108.176]) by brmea-mail-3.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k57MRDvQ016057; Wed, 7 Jun 2006 16:27:14 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0I00401GJDHP00@mail-amer.sun.com> (original mail from Brian.Cameron@Sun.COM); Wed, 07 Jun 2006 16:27:13 -0600 (MDT) Received: from [192.9.61.158] by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0I00I5KH1CUVP4@mail-amer.sun.com>; Wed, 07 Jun 2006 16:27:13 -0600 (MDT) Date: Wed, 07 Jun 2006 17:27:13 -0500 From: Brian Cameron Sender: Brian.Cameron@Sun.COM To: gnome-announce-list@gnome.org, gdm-list@gnome.org Message-id: <448752C1.30509@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5.0.2 (X11/20060515) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.408 tagged_above=-999 required=2 tests=[AWL=-0.041, BAYES_00=-2.599, TW_DM=0.077, TW_GD=0.077, TW_PM=0.077, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.408 X-Spam-Level: Cc: Subject: GDM2 2.14.8 (stable), the "SecurityFix" Release X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 22:27:17 -0000 AOOH-GAH -------- (If you have no clue what gdm is, skip a few paragraphs down first) The 2.14.8 release is a stable release of GDM with the following new features. Note this contains an important security fix, so users and distros should update immediately. - Correction for serious security issue where the user can enter the GDM configuration GUI with a user password when the Face Browser is enabled. Refer to bugzilla.gnome.org bug #343476 (Brian Cameron) This issue impacts all versions of GDM 2.8.0.0-2.8.0.7, 2.14.0-2.14.7, and 2.15.0-2.15.3. This issue was reported to vendor-sec one week ago and has ID #CVE-2006-2452. - Fixed bug where when the "Include All" button is modified in the Users tab, the Automatic/Timed login dropdown lists update properly. (Brian Cameron) - Now gdmflexiserver calls gdmcomm_check with FALSE so it will not pop up a dialog. gdmflexiserver can be run with the --command option which can be used when the user does not have permission to a DISPLAY, so trying to show a dialog was causing gdmflexiserver to core dump when the check failed. (Brian Cameron) - Added gestures to the AccessKeyMouseEvents configuration file so that users can access more accessibility features using dwell gestures. (Brian Cameron) - Translation updates (Laurent Dhima, Pema Geyleg, Theppitak Karoonboonyanan, Gabor Kelemen, Ahmad Riza H Nst, Vincent van Adrighem) Note: GDM2 was originally written by Martin K. Petersen . Much work has been done on GDM2 by George Lebl, and Brian Cameron currently shares maintainership duties with the Queen of England. Note2: If installing from the tarball do note that make install overwrites most of the setup files, all except gdm.conf. It will however save backups with the .orig extension first. #ifndef GDM_DISABLE_DEPRECATED Note3: Note3 has been depracated ... #endif /* GDM_DISABLE_DEPRECATED */ Downloading: ============ Online Documentation - http://www.gnome.org/projects/gdm/ Latest Stable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.14/ Latest Unstable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.15/ No RPM this time around BTW. Have fun. A spec file is included though, so you can try: rpmbuild -ta gdm-whatever.tar.gz Have fun, Brian From dsandras@seconix.com Wed Jun 7 15:09:24 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E46CC3B027D for ; Wed, 7 Jun 2006 15:09:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07646-04 for ; Wed, 7 Jun 2006 15:09:22 -0400 (EDT) Received: from ns20085.ovh.net (ekiga.net [213.186.62.145]) by menubar.gnome.org (Postfix) with ESMTP id A72183B0239 for ; Wed, 7 Jun 2006 15:09:21 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ns20085.ovh.net (Postfix) with ESMTP id BF54049704 for ; Wed, 7 Jun 2006 20:51:50 +0200 (CEST) Received: from ns20085.ovh.net ([127.0.0.1]) by localhost (ns20085.ovh.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09043-07 for ; Wed, 7 Jun 2006 20:51:49 +0200 (CEST) Received: from [192.168.0.161] (173.132-245-81.adsl-dyn.isp.belgacom.be [81.245.132.173]) (using SSLv3 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by ns20085.ovh.net (Postfix) with ESMTP id DF3C549702 for ; Wed, 7 Jun 2006 20:51:48 +0200 (CEST) From: Damien Sandras To: gnome-announce-list@gnome.org Content-Type: text/plain Date: Wed, 07 Jun 2006 21:10:04 +0200 Message-Id: <1149707404.2474.40.camel@golgoth01> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at gnomemeeting.net X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 03:15:35 -0400 Subject: Ekiga 2.0.2 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 19:09:24 -0000 This is release of Ekiga for GNOME 2.14 * What is it ? ============== Ekiga is a free Voice over IP phone allowing you to do free calls over the Internet. Ekiga is the first Open Source application to support both H.323 and SIP, as well as audio and video. Ekiga was formerly known as GnomeMeeting. More information can be found at http://www.ekiga.org * Where to get it ? =================== Ekiga is available at: ftp://ftp.gnome.org/pub/gnome/sources/ekiga/2.0 * What's changed ? ================== Ekiga: * Fixed problem with the activation of actions on contacts in the addressbook. (#334685, Julien Puydt) * Added a tooltip for the status label, to read the full text even when the message is cut off. (Jan Schampera) * Added missing notifiers for "new message" sound event. (Damien Sandras) * Prevent the UI from freezing a few micro seconds while registering accounts. (Damien Sandras) * Fixed OpenSolaris support. (#335196, Sun Microsystems/Boying Lu) * Fixed wrong key name in URL handlers section for GNOME. (Jan Schampera) * Fixed detection of ended calls in DBUS. (Julien Puydt) * Fixed playing/pausing of calls in DBUS. (#333465, Julien Puydt) * Fixed useless focus grabbing in druid which made some pages impossible to get the focus. (Jan Schampera) * Fixed crash when creating a contact while not having any local addressbook. (#334960, Julien Puydt) * Fixed leaking the system username on the network. (#335784, Julien Puydt) * Make sure the reason of the end of the call is always the last thing displayed in the status bar. (Damien Sandras) * Fixed browsing of ILS servers. (Damien Sandras) * Made sensitivity of the zoom related menuitems dependant on the actual zoom factor. (#336575, Jan Schampera) * Added "New contact" menu item to the contacts context menu. (#336588, Jan Schampera) * Fixed frame size calculation of video frame. (#336572, Jan Schampera) * Fixed sensitivity setting of "Fullscreen" menu item and sensitifity when leaving Fullscreen mode. (#336575, Jan Schampera) * Fixed non-selectable text problem in the chat window. (#336789, Jan Schampera) * Fixed LDAP search filter so that it works with LDAP servers that do not have a "location" attribute. (#336849, Damien Sandras) * Made most dialogs/popups closable by ESC (partially fixes #337494) (Jan Schampera) * Fixed problem with cursor turning into a hand at the wrong position in the chat window. (#336793, Julien Puydt) * Fixed text chat formatting corruption. (#335794, Simon Wood) * Monitor IP address changes to update the registrations. (#335398, Damien Sandras) * Color inactive tabs when receiving a chat message. (#335857, Simon Wood) * Open new tabs in the background. (#335857, Simon Wood) * Avoid losing error dialogs behind the druid (#338270, Julien Puydt) * Fixed wrong packets loss count. (#339866, Damien Sandras) * Fixed video flipping bug during calls with preview active. (#339867, Damien Sandras) * Fixes crash in address book when no address book is selected (#34210, Julien Puydt) * Fixed handling of call forwarding/transfer in case of incoming call (Damien Sandras) Ekiga WIN32: * Fixed remote contacts crashing on WIN32 or with the non GNOME version. (#335472, Jan Schampera) * Ekiga will now detect if it is already running on WIN32 and bail out. (#337794, Michael Rickmann) * Fixed command-line parsing on WIN32. (#337797, Michael Rickmann) * Fixed stuttering on WIN32. (#337799, Michael Rickmann) * Made the use of SDL more reliable on WIN32. (#337795, Michael Rickmann) * Made the help work on WIN32. (#337798, Michael Rickmann) * Made the 4s delay in the audio test work on WIN32. (#337799, Michael Rickmann) * Fixed fullscreen issues on WIN32 (#337792, Michael Rickmann). SIP support: * Fixed rport support when receving SIP request from another host than the one mentionned in the Via. (#335002, Damien Sandras) * Remove REGISTER and SUBSCRIBE from the Allow field. (#334979, Damien Sandras) * Fixed SRV lookup when creating connections. (#334994, Damien Sandras) * Improved CANCEL handling. (i#334985, Damien Sandras) * Fixed user in From field so that it always corresponds to a registered account. (#335006, Damien Sandras) * Unregister using the same remote address than the one used to register. (#334999, Damien Sandras) * Prevent loop of UNREGISTER requests when leaving. (#334997, Damien Sandras) * Allow duplicate INVITE PDUs to be treated concurrently. (#334847, Damien Sandras) * Set the From field to the address of record of the default SIP account. (#334457, Damien Sandras) * Fixed infinite loop when calling an host with more than 1 SRV record. (Damien Sandras) * Added support for SDP offers in the OK response, and SDP answer in the ACK request. (Damien Sandras) * Fixed wrong behavior with different priorities when building the priorities list. (#339314, Damien Sandras) * Do not lookup recipient's address when using an outbound proxy. (#334455, Damien Sandras) * Fixed problem with dynamic payload type codecs. (#337456, Damien Sandras) * Fixed routing with proxies who do not support the 'lr' parameter. (#340415, Damien Sandras) H.323 support: * Uses lower initial bandwidth by default when registering to gatekeepers. (#300366, Damien Sandras) Devices: * Fixed broken OSS plugin. (#338505, Damien Sandras) * Added resizing capability for VYUY YUYV formats. (#330946, Luc Saillard) * Improved UVC camera support. (Martin Rubli from Logitech) * Fixed parsing of JPEG streams with DHT markers. (Martin Rubli from Logitech) -- _ Damien Sandras (o- //\ Ekiga Softphone: http://www.ekiga.org/ v_/_ FOSDEM 2006 : http://www.fosdem.org/ SIP Phone : sip:dsandras@ekiga.net sip:600000@ekiga.net From murrayc@murrayc.com Wed Jun 7 15:39:02 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 71EF73B0DDF; Wed, 7 Jun 2006 15:38:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09273-01; Wed, 7 Jun 2006 15:38:57 -0400 (EDT) Received: from swarthymail-a3.dreamhost.com (mailbigip2.dreamhost.com [208.97.132.53]) by menubar.gnome.org (Postfix) with ESMTP id 3DC723B0E65; Wed, 7 Jun 2006 15:38:44 -0400 (EDT) Received: from noname (p5497CB1E.dip.t-dialin.net [84.151.203.30]) by swarthymail-a3.dreamhost.com (Postfix) with ESMTP id 1E03F7F05A; Wed, 7 Jun 2006 12:38:41 -0700 (PDT) From: Murray Cumming To: gnome-announce , gtkmm-list Content-Type: text/plain Date: Wed, 07 Jun 2006 21:38:36 +0200 Message-Id: <1149709116.5916.26.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.684 tagged_above=-999 required=2 tests=[AWL=-0.695, BAYES_00=-2.599, RCVD_IN_SORBS_WEB=1.456, TW_GT=0.077, TW_TK=0.077] X-Spam-Score: -1.684 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 03:15:35 -0400 Cc: Subject: ANNOUNCE: gtkmm 2.9.4 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 19:39:02 -0000 *** gtkmm 2.9/2.10: gtkmm 2.9 wraps new API in GTK+ 2.9, and is API/ABI-compatibile with gtkmm 2.8, 2.6 and 2.4. It is a version of the gtkmm-2.4 API. This will become the API-stable gtkmm 2.10, wrapping GTK+ 2.10. gtkmm stays in-sync with GTK+ by following the official GNOME release schedule: http://www.gnome.org/start/unstable/ Bindings for the rest of the GNOME Platform are also available, and are also API-stable. http://www.gtkmm.org *** Changes gtkmm 2.9.4: Gtk: * PrintContext: - Added set_track_print_status() and cancel(), paginate signal. (Marko Anastasov) - get_cairo() renamed to get_cairo_context(), - get_fontmap() renamed to get_pango_fontmap(), - create_context() renamed to create_pango_context(), - create_layout() renamed to create_pango_layout(). (Murray Cumming) * PrintJob: - Added set/get_track_print_status(). (Marko Anastasov) Pango: * Added CairoFontMap. (Might be removed later) * Context: Added update_from_cairo_context(), set_cairo_font_options(), set_cairo_font_options(), get_font_options(), set_resolution(), get_resolution(). * Layout: Added create(Cairo::Context), update_from_cairo_context(), add_to_cairo_context(). * LayoutLine: Added show_in_cairo_context(), add_to_cairo_context(). (Murray Cumming) *** Download http://www.gtkmm.org/download.shtml You will need libsigc++ 2.0, available here: https://sourceforge.net/project/showfiles.php?group_id=1970 *** Development There is active discussion on the mailing list: http://www.gtkmm.org/mailinglist.shtml and in the #c++ channel on irc.gnome.org -- Murray Cumming murray@usa.net www.murrayc.com From sandmann@daimi.au.dk Thu Jun 8 23:24:44 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id ACF2A3B0418 for ; Thu, 8 Jun 2006 23:24:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23677-04 for ; Thu, 8 Jun 2006 23:24:43 -0400 (EDT) Received: from daimi.au.dk (daimi.au.dk [130.225.16.1]) by menubar.gnome.org (Postfix) with ESMTP id A7F633B0408 for ; Thu, 8 Jun 2006 23:24:42 -0400 (EDT) Received: from camel18.daimi.au.dk (camel18 [130.225.16.137]) by daimi.au.dk (8.12.11.20060308/8.12.11) with ESMTP id k593OeQD008266; Fri, 9 Jun 2006 05:24:40 +0200 Received: from camel18.daimi.au.dk (IDENT:U2FsdGVkX1/iO3gyunaS0bFYmoVfNsPfhKVcvodnSF0@localhost [127.0.0.1]) by camel18.daimi.au.dk (8.13.1/8.13.1) with ESMTP id k593OeQV004787; Fri, 9 Jun 2006 05:24:40 +0200 Received: (from sandmann@localhost) by camel18.daimi.au.dk (8.13.1/8.13.1/Submit) id k593OedI004782; Fri, 9 Jun 2006 05:24:40 +0200 X-Authentication-Warning: camel18.daimi.au.dk: sandmann set sender to sandmann@daimi.au.dk using -f Sender: sandmann@daimi.au.dk To: gnome-announce-list@gnome.org From: Soeren Sandmann Date: 09 Jun 2006 05:24:40 +0200 Message-ID: Lines: 65 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Scanned-By: MIMEDefang 2.56 on 130.225.16.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.574 tagged_above=-999 required=2 tests=[AWL=0.025, BAYES_00=-2.599] X-Spam-Score: -2.574 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 03:15:35 -0400 Subject: Sysprof Linux Profiler v. 1.0.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jun 2006 03:24:44 -0000 * What is it? -------------------------- Sysprof is a sampling system-wide CPU profiler for Linux. Sysprof uses a Linux kernel module to profile the entire system, not just an individual application.=20 Of course, sysprof handles threads and shared libraries, and applications do not have to be recompiled or instrumented. In fact they don't even have to be restarted.=20 Just insert the kernel module and start sysprof. * Features: ---------------------- - Profiles all running processes, not just a single application - Call graph support showing time spent in each branch of the call tree - Has a simple graphical interface - Profiles can be loaded and saved - Easy to use: Just insert the kernel module and start sysprof - Supports Fedora debuginfo packages * Sysprof 1.0.3 -------------------------- - Compiles with the latest kernels Please report bugs as well as success or failure stories to=20 sandmann@daimi au dk * Where can I get it? -------------------------------------------- Home page: http://www.daimi.au.dk/~sandmann/sysprof/ Source code: http://www.daimi.au.dk/~sandmann/sysprof/sysprof-1.0.3.tar.gz Sysprof requires - Linux 2.6.11 or later, compiled with profiling support - GTK+ 2.6 - libglade 2.5 It is known to work out the box on Fedora Core 4 and 5. S=F8ren From pjc51@cam.ac.uk Fri Jun 9 05:57:47 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B73C93B01A8 for ; Fri, 9 Jun 2006 05:57:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12981-09 for ; Fri, 9 Jun 2006 05:57:45 -0400 (EDT) Received: from ppsw-9.csi.cam.ac.uk (unknown [131.111.8.139]) by menubar.gnome.org (Postfix) with ESMTP id B5D2C3B00B1 for ; Fri, 9 Jun 2006 05:57:45 -0400 (EDT) X-Cam-SpamDetails: Not scanned X-Cam-AntiVirus: No virus found X-Cam-ScannerInfo: http://www.cam.ac.uk/cs/email/scanner/ Received: from tiree.ra.phy.cam.ac.uk ([131.111.48.169]:49064) by ppsw-9.csi.cam.ac.uk (ppsw.cam.ac.uk [131.111.8.139]:25) with esmtp id 1FodkB-0007u9-Tm (Exim 4.54) (return-path ); Fri, 09 Jun 2006 10:57:31 +0100 From: Phil Cowans To: gnome-announce-list@gnome.org, dasherteam@yahoogroups.com Content-Type: text/plain Date: Fri, 09 Jun 2006 10:57:30 +0100 Message-Id: <1149847050.16654.9.camel@tiree.ra.phy.cam.ac.uk> Mime-Version: 1.0 X-Mailer: Evolution 2.0.4 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.599 tagged_above=-999 required=2 tests=[BAYES_00=-2.599] X-Spam-Score: -2.599 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 06:34:46 -0400 Cc: Subject: Dasher 4.1.4 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jun 2006 09:57:47 -0000 Dasher 4.1.4 is now available for download from: http://ftp.gnome.org/pub/GNOME/sources/dasher/4.1/ Windows and (unofficial) Debian binaries are available from: http://www.dasher.org.uk/Download.html The 4.1.x series of Dasher releases is a development series which will lead to version 4.2.0 in time for the GNOME 2.16 release. If you're after stability, install the latest 4.0.x version instead. The 4.1.x series aims to improve interaction with the desktop environment and window manager, for example to make it easier to enter text into other applications. 4.1.4 fixes a number of bugs which were present in 4.1.0. We're always greatful for any feedback from users - either via the GNOME Bugzilla: http://bugzilla.gnome.org/ Or by email to dasher@mrao.cam.ac.uk. Thanks to all who contributed to this release, Phil Cowans 9th June 2006 From Rich.Burridge@Sun.COM Fri Jun 9 09:59:59 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4262D3B010A for ; Fri, 9 Jun 2006 09:59:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 29076-03 for ; Fri, 9 Jun 2006 09:59:57 -0400 (EDT) Received: from brmea-mail-2.sun.com (brmea-mail-2.Sun.COM [192.18.98.43]) by menubar.gnome.org (Postfix) with ESMTP id 436C93B01BE for ; Fri, 9 Jun 2006 09:59:57 -0400 (EDT) Received: from fe-amer-03.sun.com ([192.18.108.177]) by brmea-mail-2.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k59DxtP3010388 for ; Fri, 9 Jun 2006 07:59:56 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0L00I01IP1J100@mail-amer.sun.com> (original mail from Rich.Burridge@Sun.COM) for gnome-announce-list@gnome.org; Fri, 09 Jun 2006 07:59:55 -0600 (MDT) Received: from [192.168.1.102] (c-71-202-99-109.hsd1.ca.comcast.net [71.202.99.109]) by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0L008L6IVU1C10@mail-amer.sun.com> for gnome-announce-list@gnome.org; Fri, 09 Jun 2006 07:59:55 -0600 (MDT) Date: Fri, 09 Jun 2006 06:59:21 -0700 From: Rich Burridge Sender: Rich.Burridge@Sun.COM To: gnome-announce-list@gnome.org Message-id: <44897EB9.6060700@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5 (X11/20060327) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.598 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.598 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 11:19:14 -0400 Subject: ANNOUNCE: gcalctool v5.8.13 [hopefully stable] X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jun 2006 13:59:59 -0000 Gcalctool is the default GNOME desktop calculator. It has Basic, Advanced, Financial and Scientific modes. Internally it uses multiple precision arithmetic to produce results to a high degree of accuracy. This (hopefully stable) release is for GNOME 2.15.3. Changes since the last gcalctool version (5.8.13). * From Sami Pietila - Fixed bug #343150. Gcalctool no longer crashes when switching to scientific mode. * Adjusted configure.in so that gcalctool now requires intltool v0.35.0. Updated Translations (thankyou!) Pema Geyleg - dz.po: Updated Dzongkha translation. Vincent van Adrighem - nl.po: Translation updated by Tino Meinen. Clytie Siddall - vi.po: Updated Vietnamese translation. Theppitak Karoonboonyanan - th.po: Updated Thai translation. Miloslav Trmac - cs.po: Updated Czech translation. Raphael Higino - pt_BR.po: Updated Brazilian Portuguese translation. Ignacio Casal Quinteiro - gl.po: Updated Galician Translation. You can download this new version from: http://ftp.gnome.org/pub/GNOME/sources/gcalctool/5.8/ From Rich.Burridge@Sun.COM Fri Jun 9 12:22:20 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1CB123B110C for ; Fri, 9 Jun 2006 12:22:20 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05769-10 for ; Fri, 9 Jun 2006 12:22:18 -0400 (EDT) Received: from brmea-mail-2.sun.com (brmea-mail-2.Sun.COM [192.18.98.43]) by menubar.gnome.org (Postfix) with ESMTP id 220193B0112 for ; Fri, 9 Jun 2006 12:22:17 -0400 (EDT) Received: from fe-amer-04.sun.com ([192.18.108.178]) by brmea-mail-2.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k59GMHje022696 for ; Fri, 9 Jun 2006 10:22:17 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0L00601PDSJP00@mail-amer.sun.com> (original mail from Rich.Burridge@Sun.COM) for gnome-announce-list@gnome.org; Fri, 09 Jun 2006 10:22:17 -0600 (MDT) Received: from [192.168.1.102] (c-71-202-99-109.hsd1.ca.comcast.net [71.202.99.109]) by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0L000IIPH4FY20@mail-amer.sun.com> for gnome-announce-list@gnome.org; Fri, 09 Jun 2006 10:22:17 -0600 (MDT) Date: Fri, 09 Jun 2006 09:21:43 -0700 From: Rich Burridge Sender: Rich.Burridge@Sun.COM To: gnome-announce-list@gnome.org Message-id: <4489A017.2030903@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5 (X11/20060327) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.598 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.598 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 16:30:37 -0400 Subject: [ANNOUNCE: gcalctool v5.8.16 [hopefully stable] X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jun 2006 16:22:20 -0000 Sorry, that should have been gcalctool 5.8.16 (not 5.8.13). -------- Original Message -------- Subject: ANNOUNCE: gcalctool v5.8.16 [hopefully stable] Date: Fri, 09 Jun 2006 06:59:21 -0700 From: Rich Burridge To: gnome-announce-list@gnome.org Gcalctool is the default GNOME desktop calculator. It has Basic, Advanced, Financial and Scientific modes. Internally it uses multiple precision arithmetic to produce results to a high degree of accuracy. This (hopefully stable) release is for GNOME 2.15.3. Changes since the last gcalctool version (5.8.13). * From Sami Pietila - Fixed bug #343150. Gcalctool no longer crashes when switching to scientific mode. * Adjusted configure.in so that gcalctool now requires intltool v0.35.0. Updated Translations (thankyou!) Pema Geyleg - dz.po: Updated Dzongkha translation. Vincent van Adrighem - nl.po: Translation updated by Tino Meinen. Clytie Siddall - vi.po: Updated Vietnamese translation. Theppitak Karoonboonyanan - th.po: Updated Thai translation. Miloslav Trmac - cs.po: Updated Czech translation. Raphael Higino - pt_BR.po: Updated Brazilian Portuguese translation. Ignacio Casal Quinteiro - gl.po: Updated Galician Translation. You can download this new version from: http://ftp.gnome.org/pub/GNOME/sources/gcalctool/5.8/ _______________________________________________ gnome-announce-list mailing list gnome-announce-list@gnome.org http://mail.gnome.org/mailman/listinfo/gnome-announce-list From lucasr.at.mundo@gmail.com Sat Jun 10 15:18:25 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BFE893B0355 for ; Sat, 10 Jun 2006 15:18:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22270-07 for ; Sat, 10 Jun 2006 15:18:19 -0400 (EDT) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.225]) by menubar.gnome.org (Postfix) with ESMTP id 497F63B00D0 for ; Sat, 10 Jun 2006 15:18:16 -0400 (EDT) Received: by wr-out-0506.google.com with SMTP id i12so1072899wra for ; Sat, 10 Jun 2006 12:18:15 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=Az6w6MZB4nAyrTPN/c1dBiy1QeZ3eP7h8u4jteTnJO41JONOrr+vLcaDgMaoq4CGUsTFL9SOAi4mYQa1U/quNPHKz5w9wCTni0PKnnsN+iZD4toNQ2U72zqyiU0cW7CuR3V4pUG+hJ2fX18MkuKthXuw+tWs50Y+gO+yiE+erPs= Received: by 10.54.128.19 with SMTP id a19mr2963077wrd; Sat, 10 Jun 2006 12:18:15 -0700 (PDT) Received: by 10.54.93.4 with HTTP; Sat, 10 Jun 2006 12:18:15 -0700 (PDT) Message-ID: <31a62e6f0606101218v6e0f8de0rec084fa7f081f2bc@mail.gmail.com> Date: Sat, 10 Jun 2006 16:18:15 -0300 From: "Lucas Rocha" To: gnome-announce-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.525 tagged_above=-999 required=2 tests=[AWL=0.075, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.525 X-Spam-Level: X-Mailman-Approved-At: Sat, 10 Jun 2006 15:24:41 -0400 Subject: Eye of GNOME 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Jun 2006 19:18:25 -0000 Hi all, * What is it ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Eye of GNOME (eog) is the image viewer for the GNOME desktop. * What's changed in 2.15.3 ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D - Properly sort image filenames containing numbers (Felix Riemann) [#340957= ] - Thumbnailing fixes (Felix Riemann) [#342817] - Fix printing for images with alpha channel (Jan K=FCmmel) [#322057] - Updated translations: Ignacio Casal Quinteiro (gl), Ankit Patel (gu), Theppitak Karoonboonyanan (th), Clytie Siddall (vi), Inaki Larra=F1aga (e= u), Pema Geyleg (dz), Francisco Javier F. Serrador (es) * Where can I get it ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Source code: http://ftp.gnome.org/pub/GNOME/sources/eog/2.15/eog-2.15.3.tar.gz md5sums: 1e39941d5327a28f0b3e88dfc6d5d2d0 http://ftp.gnome.org/pub/GNOME/sources/eog/2.15/eog-2.15.3.tar.bz2 md5sums: 29a9768a41dce2823e93c8de60b638e3 Enjoy! --lucasr From nudrema@gmail.com Sun Jun 11 07:21:01 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1905C3B057C; Sun, 11 Jun 2006 07:21:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06331-08; Sun, 11 Jun 2006 07:20:58 -0400 (EDT) Received: from swip.net (mailfe01.swip.net [212.247.154.1]) by menubar.gnome.org (Postfix) with ESMTP id EA99F3B0318; Sun, 11 Jun 2006 07:20:57 -0400 (EDT) X-T2-Posting-ID: Ee7YIbSG3O5rNcT4cGADretWTWrDEjpwS9FwzyhFhzk= X-Cloudmark-Score: 0.000000 [] Received: from [83.182.30.172] (HELO [10.0.0.13]) by mailfe01.swip.net (CommuniGate Pro SMTP 5.0.8) with ESMTP id 192388062; Sun, 11 Jun 2006 13:20:20 +0200 Message-ID: <448BFC72.5000804@gmail.com> Date: Sun, 11 Jun 2006 13:20:18 +0200 From: =?ISO-8859-1?Q?Steve_Fr=E9cinaux?= User-Agent: Thunderbird 1.5.0.2 (X11/20060522) MIME-Version: 1.0 To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.966 tagged_above=-999 required=2 tests=[AWL=-0.436, BAYES_00=-2.599, SPF_NEUTRAL=1.069] X-Spam-Score: -1.966 X-Spam-Level: X-Mailman-Approved-At: Sun, 11 Jun 2006 07:32:46 -0400 Cc: gedit-list Subject: ANNOUNCE: gedit-plugins 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 11:21:01 -0000 Hi all, gedit-plugins 2.15.3 is available. gedit-plugins is a set of (hopefuly useful) plugins for the GNOME text editor, gedit. homepage: http://live.gnome.org/GeditPlugins * Changes in 2.15.3 ==================== New features and fixes: - Autotools fixes (Jesse van den Kieboom, Steve Frcinaux) - Terminal now uses gnome-terminal default profile (Steve Frcinaux) - New Smart Spaces unindent plugin (Steve Frcinaux) - various fixes New and updated translations: - cs (Jakub Friedl) - pt_BR (Raphael Higino) * Download =========== http://ftp.gnome.org/pub/GNOME/sources/gedit-plugins/2.15/gedit-plugins-2.15.3.tar.gz md5sums: 1d7c70969fbd60b466e00f3295bced59 http://ftp.gnome.org/pub/GNOME/sources/gedit-plugins/2.15/gedit-plugins-2.15.3.tar.bz2 md5sums: 4182e0b3b522cb35e5348ce00c8aaa1d * Development ============== Don't hesitate to have a talk with the gedit team on #gedit on irc.gnome.org if you want to give gedit-plugins some of the love it needs :-) -- Steve http://tw.apinc.org From martyn@imendio.com Sun Jun 11 17:10:48 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1F0903B013F for ; Sun, 11 Jun 2006 17:10:48 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02407-03 for ; Sun, 11 Jun 2006 17:10:46 -0400 (EDT) Received: from holken.mikan.net (holken.mikan.net [83.145.56.183]) by menubar.gnome.org (Postfix) with ESMTP id A284B3B066D for ; Sun, 11 Jun 2006 17:10:45 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by holken.mikan.net (Postfix) with ESMTP id 30EA033525E; Sun, 11 Jun 2006 22:49:14 +0200 (CEST) Received: from holken.mikan.net ([127.0.0.1]) by localhost (holken.mikan.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03671-03; Sun, 11 Jun 2006 22:49:09 +0200 (CEST) Received: from [192.168.0.2] (host86-135-75-230.range86-135.btcentralplus.com [86.135.75.230]) by holken.mikan.net (Postfix) with ESMTP id 716673352A4; Sun, 11 Jun 2006 22:49:09 +0200 (CEST) From: Martyn Russell To: gnome-announce-list@gnome.org Content-Type: text/plain Organization: Imendio Date: Sun, 11 Jun 2006 21:49:40 +0100 Message-Id: <1150058980.30411.5.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at holken.mikan.net X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.586 tagged_above=-999 required=2 tests=[AWL=0.013, BAYES_00=-2.599] X-Spam-Score: -2.586 X-Spam-Level: X-Mailman-Approved-At: Sun, 11 Jun 2006 17:36:08 -0400 Cc: gossip-dev@lists.imendio.com Subject: ANNOUNCE: Gossip 0.11.2 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 21:10:48 -0000 Gossip 0.11.1 is now available for download from: http://download.gnome.org/sources/gossip/0.11/ What is Gossip ============== Gossip is an instant messaging client for GNOME with an easy-to-use interface, providing users of the GNOME Desktop with a friendly way to keep in touch with their friends. What's new in Gossip 0.11.2 =========================== - Added avatars to the chat window (Martyn). - Cleaned up the preferences and some of the gconf keys have changed, this means some of your preferences might need resetting (Martyn). - Added a preference for showing avatars (Martyn). - Added a preference to disable the contact online notifications (Martyn). - Stop flashing the task list a while after new messages arrive (Richard). Bugs Fixed ========== - Fixed #342928, Show subscription requests in the roster instead of JUST the notification tray which isn't ideal for people without one (Martyn). - Fixed #343375, Make sure we follow the XMPP spec for RFC 3921 with regards to adding and removing contacts. Subscription was broken somehow since 0.10 (Jonatan Magnusson). - Fixed #339285, Move to new LINGUAS method (patch by Przemyslaw Grzegorczyk). - Fixed #339679, Use case insensitive search in the logs (Richard). - Fixed #343511, Support scroll events in the presence chooser (Richard). - Fixed #331773, Ask for confirmation before clearing the list (Richard). - Fixed #344438, Set mnemonic target for the theme combo (Richard). Updated Translations ==================== Jordi Mallach (ca) Richard Hult (sv) Wouter Bolsterlee (nl) More information: ================= The Gossip project page: http://developer.imendio.com/wiki/Gossip If you want to subscribe to just announcements of Gossip you can join the announcement list here: http://lists.imendio.com/mailman/listinfo/announce 11 June 2006 Gossip Team From hughsient@gmail.com Sun Jun 11 16:10:31 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 029C73B0422 for ; Sun, 11 Jun 2006 16:10:31 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31984-01 for ; Sun, 11 Jun 2006 16:10:28 -0400 (EDT) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.168]) by menubar.gnome.org (Postfix) with ESMTP id 034F83B02CC for ; Sun, 11 Jun 2006 16:10:27 -0400 (EDT) Received: by ug-out-1314.google.com with SMTP id k3so2123698ugf for ; Sun, 11 Jun 2006 13:10:03 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:subject:from:reply-to:to:cc:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; b=HRcsTP79snnDu6H8ZeGN3Q6/nt35smFKdHMw9SBcLONZCQ2eVs5l1vjT5nHY94RPJ1RJsNuEcmy+rT+Dk1FOFWvHutu5HWk50bzy6X376OZom5F33NDNaFDr5szRY8Y870/jaEpj2C+0bC4v382GnYa1nd0EcgVRgkGSV9++cCA= Received: by 10.66.216.20 with SMTP id o20mr4467611ugg; Sun, 11 Jun 2006 13:02:54 -0700 (PDT) Received: from ?10.0.0.14? ( [86.132.112.248]) by mx.gmail.com with ESMTP id e1sm5926698ugf.2006.06.11.13.02.53; Sun, 11 Jun 2006 13:02:53 -0700 (PDT) From: Richard Hughes To: GnomePowerManager List Content-Type: text/plain; charset=UTF-8 Date: Sun, 11 Jun 2006 21:02:29 +0100 Message-Id: <1150056149.3896.9.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 (2.6.2-1.fc5.5) Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.705 tagged_above=-999 required=2 tests=[AWL=-0.663, BAYES_00=-2.599, RCVD_IN_BL_SPAMCOP_NET=1.558, SPF_PASS=-0.001] X-Spam-Score: -1.705 X-Spam-Level: X-Mailman-Approved-At: Sun, 11 Jun 2006 17:36:20 -0400 Cc: GNOME-Announce List , GNOME TranslationProject Subject: GNOME Power Manager 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: richard@hughsie.com List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 20:10:31 -0000 GNOME Power Manager is a session daemon for the GNOME desktop environment that makes it easy to manage the power on your laptop or desktop system. Download at the usual place : http://ftp.gnome.org/pub/GNOME/sources/gnome-power-manager/2.15/ ============== Version 2.15.3 ============== Released June 11, 2006 General - Depend on intltool 0.35.0 to build - Grammar fixes in the schema and glade file (Clytie Siddall) - Add in XFCE option so we display in the XFCE menu. lp:43077 - Use GtkStatusIcon when GTK version >= 2.9.0 (Jaap Haitsma) - Add in new docbook documentation about the dbus interface. - Rename and add a few DBUS methods from feedback on XDG list. Power Manager - Actually show the correct levels in the pixmaps for the mouse and keyboard. - Add a gconf key so we can disable the action for when the lid is previously shut and the AC power removed at a later time as this was causing confusion. - Limit the capacity to 100% - Undim the screen when we have to unlock returning from resume. #333290 - Rework the brightness handling so that we only have one way of doing the transitions. This simplifies things greatly. #341616 - Update for gnome-screensaver API changes. #344103 Power Preferences - Add the configurable action for power button press in the UI. #344325. Power Info - Set the correct colours of the line depending on discharging/charging status. #338175. Translators - Theppitak Karoonboonyanan & Roys Hengwatanakul (Thai) - Wouter Bolsterlee (Netherlands) - Clytie Siddall (Vietnamese) - Funda Wang (Simplified Chinese) - ivind Hoel (Norwegian bokml) - Francisco Javier F. Serrador (Spanish) - Raphael Higino (Brazilian Portuguese) From gjc@inescporto.pt Sun Jun 11 18:14:06 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F035C3B0137 for ; Sun, 11 Jun 2006 18:14:05 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05363-03 for ; Sun, 11 Jun 2006 18:14:04 -0400 (EDT) Received: from animal.inescn.pt (correio.inescn.pt [194.117.24.9]) by menubar.gnome.org (Postfix) with ESMTP id 82AD43B02F9 for ; Sun, 11 Jun 2006 18:14:03 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by animal.inescn.pt (8.13.6/8.13.6/7) with ESMTP id k5BMCqqs022474; Sun, 11 Jun 2006 23:12:52 +0100 (WEST) Received: from pong.inescporto.pt (pong.inescn.pt [194.117.26.74]) by animal.inescn.pt (8.13.6/8.13.6/5) with ESMTP id k5BMCZ29022454; Sun, 11 Jun 2006 23:12:35 +0100 (WEST) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by pong.inescporto.pt (Postfix) with ESMTP id DB83A119191; Sun, 11 Jun 2006 23:09:37 +0100 (WEST) From: "Gustavo J. A. M. Carneiro" To: gnome-announce-list@gnome.org Content-Type: text/plain Date: Sun, 11 Jun 2006 23:12:34 +0100 Message-Id: <1150063954.5758.0.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at inescporto.pt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.394 tagged_above=-999 required=2 tests=[AWL=-0.006, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001, TW_EV=0.077] X-Spam-Score: -2.394 X-Spam-Level: X-Mailman-Approved-At: Sun, 11 Jun 2006 18:37:01 -0400 Cc: PyGTK List Subject: ANNOUNCE: GnomePython 2.15.2 (unstable) X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 22:14:06 -0000 GnomePython 2.15.2 has been just released. This is a unstable release for testing purposes. GnomePython provides python interfacing modules for most of the GNOME Developer Platform libraries (except those already wrapped somewhere else.) Currently the list of provided python modules includes: - gnome, gnome.ui - gnomecanvas - gnomevfs - gconf - bonobo, bonobo.activation, bonobo.ui Overview of Changes from gnome-python 2.15.1 to gnome-python 2.15.2 =================================================================== * gnomevfs - Fix FileInfo.valid_fields computation (Sidnei da Silva) - Add some missing permission constants (Sidnei) - Add new FileInfo.access field (Gustavo) - Add sync variant of "file control" method (Gustavo) * gnome - gnome.program_init changes process name on Linux with prctl (Gustavo) The source tarball can be found here: http://ftp.gnome.org/pub/GNOME/sources/gnome-python/2.15/ Please file bug reports (bugs, missing APIs) here: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-python -- Gustavo J. A. M. Carneiro The universe is always one step beyond logic From William.Walker@Sun.COM Sun Jun 11 19:53:33 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C98A93B00BC; Sun, 11 Jun 2006 19:53:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09467-02; Sun, 11 Jun 2006 19:53:31 -0400 (EDT) Received: from brmea-mail-4.sun.com (brmea-mail-4.Sun.COM [192.18.98.36]) by menubar.gnome.org (Postfix) with ESMTP id 656553B00B7; Sun, 11 Jun 2006 19:53:31 -0400 (EDT) Received: from fe-amer-06.sun.com ([192.18.108.180]) by brmea-mail-4.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k5BNqQ6B020577; Sun, 11 Jun 2006 17:52:26 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0P00M01Y1KY900@mail-amer.sun.com> (original mail from William.Walker@Sun.COM); Sun, 11 Jun 2006 17:52:26 -0600 (MDT) Received: from [192.168.1.105] ([68.116.197.173]) by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0P0097BZN5LTZ1@mail-amer.sun.com>; Sun, 11 Jun 2006 17:52:26 -0600 (MDT) Date: Sun, 11 Jun 2006 19:52:16 -0400 From: Willie Walker Sender: William.Walker@Sun.COM To: orca-list@gnome.org, gnome-announce-list@gnome.org, gnome-accessibility-list@gnome.org Message-id: <1150069937.5071.4.camel@localhost> MIME-version: 1.0 X-Mailer: Evolution 2.6.1 Content-type: text/plain; charset=UTF-8 Content-transfer-encoding: 8BIT X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.587 tagged_above=-999 required=2 tests=[AWL=0.011, BAYES_00=-2.599, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.587 X-Spam-Level: X-Mailman-Approved-At: Mon, 12 Jun 2006 03:22:46 -0400 Cc: Subject: Announcing Orca 0.2.5 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 23:53:34 -0000 ================ * What is Orca ? ================ Orca is a scriptable screen reader for the GNOME desktop for people with visual impairments. ================== * What's changed ? ================== We've done a lot of work on Orca since the last release in both the new functionality and quality/stability departments. We thank all of our users that are providing feedback on gnome-list@gnome.org (see http://mail.gnome.org/mailman/listinfo/orca-list) as well as http://bugzilla.gnome.org. We value all of your feedback and help. We also appreciate contributions from community members, including Al Puzzuoli who is doing a great job helping with the Orca Wiki at http://live.gnome.org/Orca and Francisco Javier Dorado Martnez who has been testing and providing patches. Thank you all! ================== Orca 0.2.5 Changes ================== * Re-map keyboard bindings and add additional keyboard bindings. See http://live.gnome.org/Orca/KeyboardCommands for the list. * Improvements to StarOffice support to provide better access to text documents and spreadsheets. Also get rid of spurious "0.00" text that was showing up in braille for StarOffice buttons. * Addition of announcing text selection as it is selected and unselected. * Generalize the "read table cell row" functionality. If you press Insert+F11, it will toggle the feature to read the entire row of a table or just the selected table cell when you move from row to row. * Improved support for SayAll of text objects (SayAll for flat review is still on the to do list). * Addition of self-voicing module to tell Orca to be quiet when a self-voicing application is present. * Addition of ability to turn Orca into a speech server that can accessed via simple HTTP commands (default port is 20433, but this is customizable via orca.settings.speechServerPort). This will allow self-voicing applications to use Orca for their speech, thus letting them get the user's speech settings preferences. * Addition of orca.settings.enableBrailleGrouping (default=False). NOTE: this represents a change in the UI for Orca - the behavior to date has been to always group menu items on the braille display. The system responsiveness was bad for large menus, however, so we decided to make this an optional feature turned off by default. * Addition of utility to report information on the currently active script. This is primarily for helping script writers do debugging and is accessed by pressing Insert+F3. * Addition of orca.settings.cacheAccessibles (default=True) as a means to turn the local caching of accessible objects on or off. This is primarily an Orca developer debugging feature. * Fix for bug 344218 - gnome-terminal would not be presented properly if it was started after Orca. * Fix for bug 343666: pressing buttons on braille displays could cause a hang. * Partial fix for bug 342022 - provide some defensive mechanisms to help prevent some hangs. * Fix for bug 343133 - do not hang when doing a flat-review of a man page in gnome-terminal. * Fix for bug #343013 - the command line option strings should not be translatable. * Partial fix for bug 319652 - become a better Python thread citizen to help reduce hangs. * Fix for bug 342303 - stop speech when the user presses the mouse button. * Fix for bug 342122 - use all labels for an objecty when presenting an object. * Fix for bug 342133 - do not read all labels in gnome-window-properties application when it appears. * Fix for bug 341415 - when moving between workspaces with metacity, eliminate redundant output and alsomake sure workspace names are announced. * Refactor of various modules to move script writing utilities into util.py. * More fleshing out of the test plan. ====================== * Where can I get it ? ====================== Source code: http://ftp.gnome.org/pub/GNOME/sources/orca/0.2/orca-0.2.5.tar.gz Enjoy. Will, Mike, Rich, Lynn, and the Orca community From callum@spooky-possum.org Mon Jun 12 02:05:21 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 06D8C3B000D; Mon, 12 Jun 2006 02:05:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21232-04; Mon, 12 Jun 2006 02:05:19 -0400 (EDT) Received: from genamics.blastula.net (dns1.blastula.net [64.92.214.155]) by menubar.gnome.org (Postfix) with ESMTP id 4C4D83B00D4; Mon, 12 Jun 2006 02:05:19 -0400 (EDT) Received: from [60.234.103.60] (helo=[60.234.103.60]) by genamics.blastula.net with esmtpa (Exim 4.52) id 1FpfWT-0001Yo-NG; Mon, 12 Jun 2006 18:03:39 +1200 From: Callum McKenzie To: games-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Date: Mon, 12 Jun 2006 18:03:05 +1200 Message-Id: <1150092185.10939.21.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Antivirus-Scanner: Clean mail though you should still use an Antivirus X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - genamics.blastula.net X-AntiAbuse: Original Domain - gnome.org X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [47 12] X-AntiAbuse: Sender Address Domain - spooky-possum.org X-Source: X-Source-Args: X-Source-Dir: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.538 tagged_above=-999 required=2 tests=[AWL=0.061, BAYES_00=-2.599] X-Spam-Score: -2.538 X-Spam-Level: X-Mailman-Approved-At: Mon, 12 Jun 2006 03:23:07 -0400 Cc: Subject: gnome-games 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: callum@spooky-possum.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 06:05:21 -0000 gnome-games 2.15.3 ================== This development release of gnome-games is a little short on new content since we are in the process of changing maintainers and not everything is organised yet. Things that have changed: General: - High scores: the file is truncated properly if you use a short name. This stops you getting a top-ten score with 11th-place. - Require the latest intltool. Aisleriot - Radio-buttons for Klondike options work now. There are new choices for how you want your cards dealt in Klondike. - Explicitly protect the cards from garbage collection. This is should fix bug #342038, but doesn't actually seem to work. Robots: - Really, really, fix the desktop icon name this time (I hope). As usual, get it from: http://download.gnome.org/sources/gnome-games/2.15/ - Callum From gjc@inescporto.pt Sun Jun 11 18:38:11 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E31903B0350 for ; Sun, 11 Jun 2006 18:38:10 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06171-08 for ; Sun, 11 Jun 2006 18:38:08 -0400 (EDT) Received: from animal.inescn.pt (correio.inescn.pt [194.117.24.9]) by menubar.gnome.org (Postfix) with ESMTP id D88DC3B025D for ; Sun, 11 Jun 2006 18:38:07 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by animal.inescn.pt (8.13.6/8.13.6/7) with ESMTP id k5BMau8H023824; Sun, 11 Jun 2006 23:36:56 +0100 (WEST) Received: from pong.inescporto.pt (pong.inescn.pt [194.117.26.74]) by animal.inescn.pt (8.13.6/8.13.6/5) with ESMTP id k5BMaf3c023811; Sun, 11 Jun 2006 23:36:41 +0100 (WEST) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by pong.inescporto.pt (Postfix) with ESMTP id CC3E1119191; Sun, 11 Jun 2006 23:33:43 +0100 (WEST) From: "Gustavo J. A. M. Carneiro" To: PyGTK Content-Type: text/plain Date: Sun, 11 Jun 2006 23:36:40 +0100 Message-Id: <1150065400.5758.3.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at inescporto.pt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.39 tagged_above=-999 required=2 tests=[AWL=-0.002, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: -2.39 X-Spam-Level: X-Mailman-Approved-At: Mon, 12 Jun 2006 03:23:25 -0400 Cc: gnome-announce-list@gnome.org Subject: ANNOUNCE: GnomePythonDesktop 2.15.3 (unstable) X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 22:38:11 -0000 GnomePythonDesktop 2.15.3 has been just released. This is a unstable release for testing purposes. GnomePythonDesktop provides python interfacing modules for some GNOME libraries part of the GNOME Desktop. The following Python modules are included: - gnomeapplet - gnomeprint, gnomeprint.ui - gtksourceview - wnck - totem.plparser - gtop - nautilusburn - mediaprofiles - metacity - rsvg - gnomekeyring - gnomedesktop Overview of Changes from 2.15.2 to 2.15.3 ============================================================================== * gnomekeyring - Improve API (throw exceptions instead of returning error codes) (Gustavo) - Add an example (Gustavo) * metacity - Update to new C API (Frederic Peters) - Wrap wnck_window_get_geometry() (Magnus Therning) * nautilusburn - Update to new improved C API (Python API is not preserved) (Gustavo) The source tarball can be found here: http://ftp.gnome.org/pub/GNOME/sources/gnome-python-desktop/2.15/ Please file bug reports (bugs, missing APIs) here: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-python-desktop Happy testing! -- Gustavo J. A. M. Carneiro The universe is always one step beyond logic. From gjc@inescporto.pt Sun Jun 11 19:00:35 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 48BC73B0253; Sun, 11 Jun 2006 19:00:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07173-08; Sun, 11 Jun 2006 19:00:34 -0400 (EDT) Received: from animal.inescn.pt (correio.inescn.pt [194.117.24.9]) by menubar.gnome.org (Postfix) with ESMTP id 6D4C93B014F; Sun, 11 Jun 2006 19:00:33 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by animal.inescn.pt (8.13.6/8.13.6/7) with ESMTP id k5BMxkXt025129; Sun, 11 Jun 2006 23:59:46 +0100 (WEST) Received: from pong.inescporto.pt (pong.inescn.pt [194.117.26.74]) by animal.inescn.pt (8.13.6/8.13.6/5) with ESMTP id k5BMxSnQ025107; Sun, 11 Jun 2006 23:59:28 +0100 (WEST) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by pong.inescporto.pt (Postfix) with ESMTP id 08E1F119191; Sun, 11 Jun 2006 23:56:31 +0100 (WEST) From: "Gustavo J. A. M. Carneiro" To: gnome-announce-list@gnome.org Content-Type: text/plain Date: Sun, 11 Jun 2006 23:59:27 +0100 Message-Id: <1150066767.5758.5.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at inescporto.pt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.427 tagged_above=-999 required=2 tests=[AWL=0.038, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.427 X-Spam-Level: X-Mailman-Approved-At: Mon, 12 Jun 2006 03:23:49 -0400 Cc: orbit-list@gnome.org, PyGTK List Subject: ANNOUNCE: PyORBit 2.14.1 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 23:00:36 -0000 "PyORBit is a Python binding for the ORBit2 CORBA ORB. It was developped to suit the needs of the bonobo bindings in GNOME-Python, but is usable for other purposes as well. It aims to follow the standard Python language mapping for CORBA. It can generate stubs at runtime from typelibs, IDL files, or by introspecting remote objects using ORBit2's IModule typelib capabilities." The source tarball can be found here: http://ftp.gnome.org/pub/GNOME/sources/pyorbit/2.13/ Please file bug reports (bugs, missing APIs) here: http://bugzilla.gnome.org/enter_bug.cgi?product=pyorbit Changes from 2.14.0 to 2.14.1: - Fix build problem on cygwin - Fix segmentation fault on orb.shutdown() - Make it work on Python 2.5 and 64-bit platforms -- Gustavo J. A. M. Carneiro The universe is always one step beyond logic From mclasen@redhat.com Mon Jun 12 12:04:32 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 41C3B3B000C; Mon, 12 Jun 2006 12:04:32 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09149-04; Mon, 12 Jun 2006 12:04:29 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 7270D3B009D; Mon, 12 Jun 2006 12:04:29 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5CG3bc9030255; Mon, 12 Jun 2006 12:03:37 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [172.16.76.12]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5CG3bc3007778; Mon, 12 Jun 2006 12:03:37 -0400 Received: from golem.boston.redhat.com (golem.boston.redhat.com [172.16.80.24]) by mail.boston.redhat.com (8.12.8/8.12.8) with ESMTP id k5CG3blQ018463; Mon, 12 Jun 2006 12:03:37 -0400 From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain Date: Mon, 12 Jun 2006 12:03:36 -0400 Message-Id: <1150128216.15532.14.camel@golem.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.1 (2.7.1-1) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.426 tagged_above=-999 required=2 tests=[AWL=-0.056, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_LQ=0.077, TW_RX=0.077, TW_TR=0.077] X-Spam-Score: -2.426 X-Spam-Level: Cc: Subject: GLib 2.11.3 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 16:04:32 -0000 GLib 2.11.3 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.11/ http://ftp.gnome.org/pub/GNOME/sources/glib/2.11/ glib-2.11.3.tar.bz2 md5sum: 41931c4965f7e1848f81b800914905cd glib-2.11.3.tar.gz md5sum: cd78ebc535e29cdef0fed9487aa21dac This is a development release leading up to GLib 2.12. Notes: * This is unstable development release. While it has had a bit of testing, there are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GLib 2.10. If you have problems, you'll need to reinstall GLib 2.10. * GLib 2.12 will be source and binary compatible with the GLib 2.10.x series (for some caveats, see the README). At this point, the API additions in the 2.11.x series are almost finished. * Bugs should be reported to http://bugzilla.gnome.org. About GLib ========== GLib is the low-level core library that forms the basis for projects such as GTK+ and GNOME. It provides data structure handling for C, portability wrappers, and interfaces for such runtime functionality as an event loop, threads, dynamic loading, and an object system. More information about GLib is available at: http://www.gtk.org/ An installation guide for the GTK+ libraries, including GLib, can be found at: http://developer.gnome.org/doc/API/2.0/gtk/gtk-building.html Overview of Changes from GLib 2.11.2 to GLib 2.11.3 =================================================== * GBookmarkFile: - g_bookmark_file_move_item: Return TRUE in case of an empty target * Bugs fixed: 343919 gunicollate.c: strxfrm bug on VC8 * Updated translations (fi) A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=343919 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Emmanuele Bassi, Kazuki Iwamoto, Tor Lillqvist Matthias Clasen June 12, 2006 From Brian.Cameron@Sun.COM Mon Jun 12 14:30:32 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4CFFC3B0010; Mon, 12 Jun 2006 14:30:32 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24480-06; Mon, 12 Jun 2006 14:30:31 -0400 (EDT) Received: from brmea-mail-3.sun.com (brmea-mail-3.Sun.COM [192.18.98.34]) by menubar.gnome.org (Postfix) with ESMTP id F1D1A3B0078; Mon, 12 Jun 2006 14:30:30 -0400 (EDT) Received: from fe-amer-01.sun.com ([192.18.108.175]) by brmea-mail-3.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k5CITqhn016383; Mon, 12 Jun 2006 12:29:52 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0R00001F5FBN00@mail-amer.sun.com> (original mail from Brian.Cameron@Sun.COM); Mon, 12 Jun 2006 12:29:52 -0600 (MDT) Received: from [192.168.0.20] ([206.135.142.194]) by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0R002PJFDNG7X0@mail-amer.sun.com>; Mon, 12 Jun 2006 12:29:52 -0600 (MDT) Date: Mon, 12 Jun 2006 13:29:49 -0500 From: Brian Cameron Sender: Brian.Cameron@Sun.COM To: gnome-announce-list@gnome.org, gdm-list@gnome.org Message-id: <448DB29D.9020208@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5.0.2 (X11/20060515) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.444 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, TW_GD=0.077, TW_PM=0.077, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.444 X-Spam-Level: Cc: Subject: GDM2 2.15.5 (unstable), the "Caraboy" Release X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 18:30:32 -0000 AOOH-GAH -------- (If you have no clue what gdm is, skip a few paragraphs down first) The 2.15.5 release is an unstable release of GDM with the following new features. - Correction to autologin PAM service name so automatic login works. (Brian Cameron) - Fix compiler warnings that were causing core dumping issues on some platforms (Brian Cameron) - Translation updates (Josep Puigdemont Casamaj\303\263, Changwoo Ryu) Note that this also contains an important security fix that was originally released in 2.15.4, so please make sure to update if using an older version than 2.15.4. - Correction for serious security issue where the user can enter the GDM configuration GUI with a user password when the Face Browser is enabled. Refer to bugzilla.gnome.org bug #343476 (Brian Cameron) This issue impacts all versions of GDM 2.8.0.0-2.8.0.7, 2.14.0-2.14.7, and 2.15.0-2.15.3. This issue was reported to vendor-sec one week ago and has ID #CVE-2006-2452. Note: GDM2 was originally written by Martin K. Petersen . Much work has been done on GDM2 by George Lebl, and Brian Cameron currently shares maintainership duties with the Queen of England. Note2: If installing from the tarball do note that make install overwrites most of the setup files, all except gdm.conf. It will however save backups with the .orig extension first. #ifndef GDM_DISABLE_DEPRECATED Note3: Note3 has been depracated ... #endif /* GDM_DISABLE_DEPRECATED */ Downloading: ============ Online Documentation - http://www.gnome.org/projects/gdm/ Latest Stable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.14/ Latest Unstable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.15/ No RPM this time around BTW. Have fun. A spec file is included though, so you can try: rpmbuild -ta gdm-whatever.tar.gz Have fun, Brian From Brian.Cameron@Sun.COM Mon Jun 12 15:08:35 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 715123B034C; Mon, 12 Jun 2006 15:08:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26412-02; Mon, 12 Jun 2006 15:08:32 -0400 (EDT) Received: from brmea-mail-1.sun.com (brmea-mail-1.Sun.COM [192.18.98.31]) by menubar.gnome.org (Postfix) with ESMTP id 99D443B025E; Mon, 12 Jun 2006 15:08:32 -0400 (EDT) Received: from fe-amer-05.sun.com ([192.18.108.179]) by brmea-mail-1.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k5CJ7bEh002523; Mon, 12 Jun 2006 13:07:37 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0R00501GXLIW00@mail-amer.sun.com> (original mail from Brian.Cameron@Sun.COM); Mon, 12 Jun 2006 13:07:37 -0600 (MDT) Received: from [192.168.0.20] ([206.135.142.194]) by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0R00A6NH4LVTH0@mail-amer.sun.com>; Mon, 12 Jun 2006 13:07:37 -0600 (MDT) Date: Mon, 12 Jun 2006 14:07:35 -0500 From: Brian Cameron Sender: Brian.Cameron@Sun.COM To: gnome-announce-list@gnome.org, gdm-list@gnome.org Message-id: <448DBB77.9000608@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5.0.2 (X11/20060515) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.444 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, TW_GD=0.077, TW_PM=0.077, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.444 X-Spam-Level: Cc: Subject: GDM2 2.14.9 (stable), the "Lincoln Park" Release X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 19:08:35 -0000 AOOH-GAH -------- (If you have no clue what gdm is, skip a few paragraphs down first) The 2.14.9 release is a stable release of GDM with the following new features. - Correction to autologin PAM service name so automatic login works. (Brian Cameron) - Fix compiler warnings that were causing core dumping issues on some platforms (Brian Cameron) - Translation updates (Josep Puigdemont Casamaj\303\263) Note: GDM2 was originally written by Martin K. Petersen . Much work has been done on GDM2 by George Lebl, and Brian Cameron currently shares maintainership duties with the Queen of England. Note2: If installing from the tarball do note that make install overwrites most of the setup files, all except gdm.conf. It will however save backups with the .orig extension first. #ifndef GDM_DISABLE_DEPRECATED Note3: Note3 has been depracated ... #endif /* GDM_DISABLE_DEPRECATED */ Downloading: ============ Online Documentation - http://www.gnome.org/projects/gdm/ Latest Stable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.14/ Latest Unstable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.15/ No RPM this time around BTW. Have fun. A spec file is included though, so you can try: rpmbuild -ta gdm-whatever.tar.gz Have fun, Brian From mclasen@redhat.com Mon Jun 12 15:43:04 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 851123B00E5; Mon, 12 Jun 2006 15:43:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27729-06; Mon, 12 Jun 2006 15:43:02 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 5B16F3B0010; Mon, 12 Jun 2006 15:43:02 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5CJZWav007572; Mon, 12 Jun 2006 15:35:32 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [172.16.76.12]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5CJZWUd001833; Mon, 12 Jun 2006 15:35:32 -0400 Received: from golem.boston.redhat.com (golem.boston.redhat.com [172.16.80.24]) by mail.boston.redhat.com (8.12.8/8.12.8) with ESMTP id k5CJZWlQ009694; Mon, 12 Jun 2006 15:35:32 -0400 From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain Date: Mon, 12 Jun 2006 15:35:31 -0400 Message-Id: <1150140931.15532.18.camel@golem.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.1 (2.7.1-1) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.541 tagged_above=-999 required=2 tests=[AWL=0.060, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.541 X-Spam-Level: Cc: Subject: GTK+ 2.8.19 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 19:43:04 -0000 GTK+ 2.8.19 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.8/ http://ftp.gnome.org/pub/GNOME/sources/gtk+/2.8/ gtk+-2.8.19.tar.bz2 md5sum: 1a03dbed4b794194a610e9d7eb175b06 gtk+-2.8.19.tar.gz md5sum: 604d3263498994c58af378f0ec076e6f This is a bugfix release in the 2.8.x series. It fixes a rare memory corruption issue when using the deprecated GdkFont API. What is GTK+ ============ 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.8 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/ Overview of Changes from GTK+ 2.8.18 to GTK+ 2.8.19 =================================================== Bugs fixed: 341327 Memory corruption inside glib 337491 _gdk_win32_drawable_release_dc: DeleteDC() called on a GetDC() handle 343425 "grab-notify"-signal is not correctly propagated for internal children 344244 Window resizing not working when keeping the aspect fixed 344496 CRLF converting via Clipboard Updated translations (ne) A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=343425,341327,344244,337491,344496 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Markku Vire, Sampo Savolainen, Tim Janik, Tor Lillqvist, Chris Wilson June 12, 2006 Matthias Clasen From newren@gmail.com Mon Jun 12 20:01:08 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C06453B018B for ; Mon, 12 Jun 2006 20:01:08 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03747-10 for ; Mon, 12 Jun 2006 20:01:06 -0400 (EDT) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.203]) by menubar.gnome.org (Postfix) with ESMTP id DCC213B0078 for ; Mon, 12 Jun 2006 20:01:05 -0400 (EDT) Received: by wx-out-0102.google.com with SMTP id h26so971531wxd for ; Mon, 12 Jun 2006 17:00:16 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=tzATDJMp0XzBzC3f1Js6q5t6DW1AJ/Xb3xHu6cJ5HbRxmg4U9Mi4mRfXd+tBd4gF2Jrx0LCPgFnY6WCcrrfEvTgkrAqgyR9TK2LZ0Rxry84BtUi6UXb3giOhJe8CORooz/5D9FkMGku6+JWNaBWjfK/H1pg3dz8Xy5khyLDZnps= Received: by 10.70.29.3 with SMTP id c3mr7026730wxc; Mon, 12 Jun 2006 17:00:16 -0700 (PDT) Received: by 10.70.89.16 with HTTP; Mon, 12 Jun 2006 17:00:16 -0700 (PDT) Message-ID: <51419b2c0606121700j69ef2e93x2dedecfb4c173083@mail.gmail.com> Date: Mon, 12 Jun 2006 18:00:16 -0600 From: "Elijah Newren" To: gnome-announce-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.537 tagged_above=-999 required=2 tests=[AWL=-0.014, BAYES_00=-2.599, SPF_PASS=-0.001, TW_BW=0.077] X-Spam-Score: -2.537 X-Spam-Level: Subject: libwnck 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 00:01:09 -0000 * What is it ? ============== Library for writing different kinds of workspace switchers, window lists, task bars, task menus, etc. Window Navigation Construction Kit. Pronounced "lib-wink" * What's changed ? ================== Fixes - restart activation timeout when the mouse moves to a different workspace (Benjamin) - new methods to test if the names returned by wnck_window_get_name and wnck_window_get_icon_name are real or just FALLBACK_NAME (Dan) [#342577] Misc - don't translate %s (Vincent) [#339069] Translations - Guillaume Savaton (eo) * Where can I get it ? ====================== Source code http://ftp.gnome.org/pub/GNOME/sources/libwnck/2.15/ MD5SUMs 6e9ef41d1aa9e81d6bc33047cccbe07f libwnck-2.15.3.tar.bz2 08a86da5a0225ef1ac5f340b95e74a4c libwnck-2.15.3.tar.gz From newren@gmail.com Mon Jun 12 20:28:13 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2AE023B00A5 for ; Mon, 12 Jun 2006 20:28:13 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04431-07 for ; Mon, 12 Jun 2006 20:28:11 -0400 (EDT) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.193]) by menubar.gnome.org (Postfix) with ESMTP id 6F8173B0078 for ; Mon, 12 Jun 2006 20:28:11 -0400 (EDT) Received: by wx-out-0102.google.com with SMTP id h26so974384wxd for ; Mon, 12 Jun 2006 17:27:35 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=kP6G2sZ3DMwVOY8jQamPOJMaaFSRSXp2y9wwFGXNkpY9JgQhdby0hd2FfdVpmpuaiefE4ZzuZpRcGMYYYQn6Uy0lA4+nsPGxOr+uQMfqytegFiAFLpHQ1Ly8bKHW0FG3kwRN1lWVPIylZ8GP7vkdnEXeWht1ipWqQw7nj0OchIk= Received: by 10.70.132.12 with SMTP id f12mr6858664wxd; Mon, 12 Jun 2006 17:01:49 -0700 (PDT) Received: by 10.70.89.16 with HTTP; Mon, 12 Jun 2006 17:01:49 -0700 (PDT) Message-ID: <51419b2c0606121701y5d42a121o5ab05ac32f69b96@mail.gmail.com> Date: Mon, 12 Jun 2006 18:01:49 -0600 From: "Elijah Newren" To: gnome-announce-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.576 tagged_above=-999 required=2 tests=[AWL=0.024, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.576 X-Spam-Level: Subject: metacity 2.15.5 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 00:28:13 -0000 * What is it ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Metacity is a simple window manager that integrates nicely with GNOME 2. * What's changed ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Thanks to Bj=F6rn Lindqvist, S=F8ren Sandmann, Adam Jackson, Elijah Newren, and Aidan Delaney for improvements in this release. - code cleanup in resizepopup.c (Bj=F6rn) [#341648] - fix a logic bug so that the whole titlebar becomes sensitive to mouse clicks (Bj=F6rn) [#336320] - make mouse cursor when moving windows become a hand (Bj=F6rn) [#337376] - lots and lots of compositor improvements -- beginning of a new layer to abstract transition effects, shrinking and minimizing and exploding effects, fading in and out, unminimize animation that reverses minimize one, translucent menus, bounce on window focus, and all kinds of stuff I don't understand and can't summarize well (S=F8ren, Adam) - Fix a crash on exit/logout from assuming a compositor would always exist (Elijah) [#342166] - code cleanup in tabpopup.c (Aidan Delaney) [#166890] Translations Pema Geyleg (dz), I=F1aki Larra=F1aga Murgoitio (eu), Theppitak Karoonboonyanan (th), Clytie Siddall (vi) * Where can I get it ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Source code http://download.gnome.org/sources/metacity/2.15/ MD5SUMs 057a284898385218b8711229d659c2ed metacity-2.15.5.tar.bz2 983eb3ee58263214e3e57c2f962fbd6a metacity-2.15.5.tar.gz From mclasen@redhat.com Tue Jun 13 02:09:16 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 72FE93B00AF; Tue, 13 Jun 2006 02:09:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12183-04; Tue, 13 Jun 2006 02:09:13 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id B2F773B000C; Tue, 13 Jun 2006 02:09:13 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5D681s3022181; Tue, 13 Jun 2006 02:08:01 -0400 Received: from lacrosse.corp.redhat.com (lacrosse.corp.redhat.com [172.16.52.154]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5D67uRP017686; Tue, 13 Jun 2006 02:07:56 -0400 Received: from [172.16.83.145] (vpn83-145.boston.redhat.com [172.16.83.145]) by lacrosse.corp.redhat.com (8.12.11.20060308/8.11.6) with ESMTP id k5D67tQC015619; Tue, 13 Jun 2006 02:07:56 -0400 From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain; charset=UTF-8 Organization: Red Hat Date: Tue, 13 Jun 2006 02:09:42 -0400 Message-Id: <1150178982.4081.13.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.426 tagged_above=-999 required=2 tests=[AWL=-0.056, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_GD=0.077, TW_GT=0.077, TW_KB=0.077] X-Spam-Score: -2.426 X-Spam-Level: Cc: Subject: GTK+ 2.9.3 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 06:09:16 -0000 GTK+ 2.9.3 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.9/ http://ftp.gnome.org/pub/gnome/sources/gtk+/2.9/ gtk+-2.9.3.tar.bz2 md5sum: d73039a3b5847c352f5740ac908be7d2 gtk+-2.9.3.tar.gz md5sum: 0156eef91d2bbb23f1b6ccb49335fae5 This is a development release leading up to GTK+ 2.10. Notes: * This is unstable development release. There are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GTK+ 2.8. If you have problems, you'll need to reinstall GTK+ 2.8. * GTK+ 2.10 will be source compatible with the GTK+ 2.8 series; the new API additions in GTK+ 2.9.0 are not yet completely finalized, so there are likely incompatibilies between this release and the final 2.10 release. * The ABI version has been bumped from 2.4.0 to 2.10.0, since the filechooser backend interface has been changed. Third-party filechooser backends need to be ported to the new interface. Other third-party modules (input methods, image loaders, etc) just need to be reinstalled in the proper location for GTK+ to find them. * Remaining issues for GTK+ 2.10 can be found with following bugzilla query: http://bugzilla.gnome.org/buglist.cgi?product=gtk%2b&target_milestone=2.10+API+Freeze&target_milestone=2.10+Freeze&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED * Bugs should be reported to http://bugzilla.gnome.org. What is GTK+ ============ 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.4/gtk/gtk-building.html Common questions: http://developer.gnome.org/doc/API/2.4/gtk/gtk-question-index.html http://www.gtk.org/faq/ Overview of Changes from GTK+ 2.9.2 to 2.9.3 ============================================ * GtkPrintOperation: - Introduce an allow-async property - Introduce a GtkPrintOperationAction enumeration - Rename pdf_target to export_filename - Allow to hide "Print to PDF" in the low-level API * GtkNotebook: - Add a destroy notify to gtk_notebook_set_window_creation_hook. * GtkTreeView: - Support grid lines * GtkRange: - Add a number of new stle properties which allow more fexible stepper theming * Bugs fixed: 153212 Have the Paste kbd shortcut jump to the location in the buffer 337491 _gdk_win32_drawable_release_dc: DeleteDC() called on a GetDC() handle 339739 gtk/gtkprintoperation-win32.c: 3 compile error 342339 GtkRange::stepper-spacing style property not implemented correctly 343945 Buttons of a GtkAssistant are not accessible 344148 Wrong reqs for ATK 344209 gtk_notebook_set_window_creation_hook() has no destroy func. 344232 GtkEntry's "Delete" context menu item is sensitive on a non-editable GtkEntry 344244 Window resizing not working when keeping the aspect fixed 344288 gtk_print_operation_preview_is_selected must return a value 344386 gdk-2.0-uninstalled.pc.in and gdkconfig.h 344496 CRLF converting via Clipboard 344504 GtkPrintCapabilities not in gtktypebuiltins.h 344505 Wrong signal registration for create_custom_widget 344512 cvs build issue 344513 pdf print module's print_stream not calling destroy notify 344518 NULL unref in page setup dialogue 344543 gtk_progress_bar_pulse calls gtk_progress_bar_paint directly 344560 gtk_print_settings_[sg]et_scale shouldn't be in percent 344607 memory leaks in gtkrecentchooserdefault.c and gtkrecentchoosermenu.c 344624 Memory leak in gtk_tree_model_filter_finalize: User data not freed 337603 Possible off-by-one in gdk_pango_layout_line_get_clip_region 344239 Wrong filename for gtk-find stock item. 344528 comma at end of GtkPrintOperationAction enum causes mozilla compilation error 344290 horizontal-padding not take into account when placing submenus 344558 document print dialogue response codes 339592 Add print-to-postscript 342249 Allow to draw upper and lower sides of GtkRange's trough differently 344530 gtk_recent_chooser_widget_new_for_manager and gtk_recent_chooser_menu_new_for_manager should allow NULL manager arg * Updated translations (es,fi,gu,ko,th,wa) A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=153212,337491,339739,342339,343945,344148,344209,344232,344244,344288,344386,344496,344504,344505,344512,344513,344518,344543,344560,344607,344624,337603,344239,344528,344290,344558,339592,342249,344530 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Behdad Esfahbod, Bastian Nocera, Alexander Larsson, Jrg Billeter, Murray Cumming, Milosz Derezynski, Tor Lillqvist, Kazuki Iwamoto, Chris Wilson, Michael Natterer, Benjamin Berg, Marko Anastasov, Christian Persch, Masatake Yamamoto, Elijah Newren, John Finlay, Emmanuele Bassi, David Malcolm, John Darrington, Christian Weiske, Yvgen Muntyan, Martyn Russell, Kristian Rietveld June 13, 2006 Matthias Clasen From parente@gmail.com Mon Jun 12 09:07:24 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8979A3B009D for ; Mon, 12 Jun 2006 09:07:24 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03281-09 for ; Mon, 12 Jun 2006 09:07:22 -0400 (EDT) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.231]) by menubar.gnome.org (Postfix) with ESMTP id 9BD863B0083 for ; Mon, 12 Jun 2006 09:07:22 -0400 (EDT) Received: by wr-out-0506.google.com with SMTP id 50so59130wri for ; Mon, 12 Jun 2006 06:06:53 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=Hk2y2xQcbYJKNPf1LW7Y+V28/uYf1U244+IHjlJ7rvPAXFm2IeIHW6o/slpX1K2RUSQzIkrF+sc7i4dF5E8CMLURiFTCBFzpZu9qbgaiDE/D6+W4KrPGXwQqArUp5siLDWhmzDklvsX4fL+9EE4/UFa+de3k689sT00z2J2T/y4= Received: by 10.64.150.20 with SMTP id x20mr4562225qbd; Mon, 12 Jun 2006 06:06:53 -0700 (PDT) Received: by 10.65.154.18 with HTTP; Mon, 12 Jun 2006 06:06:53 -0700 (PDT) Message-ID: <5308fd2c0606120606p43b30477o4e73cfad155dcaa7@mail.gmail.com> Date: Mon, 12 Jun 2006 09:06:53 -0400 From: "Peter Parente" To: gnome-announce-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.589 tagged_above=-999 required=2 tests=[AWL=0.011, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.589 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Subject: lsr-0.2.1 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: parente@cs.unc.edu List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 13:07:24 -0000 ============== * What is it ? ============== Linux Screen Reader (LSR) is an extensible assistive technology for people with disabilities. The design philosophy behind LSR is to provide a core platform that enables the development of LSR extensions for improving desktop application accessibility and usability and shields extension developers from the intricacies of the desktop accessibility architecture. The primary use of the LSR platform is to give people with visual impairments access to the GNOME desktop and its business applications (e.g. Firefox, OpenOffice, Eclipse) using speech, Braille, and screen magnification. The extensions packaged with the LSR core are intended to meet this end. However, LSR's rich support for extensions can be used for a variety of other purposes such as supporting novel input and output devices, improving accessibility for users with other disabilities, enabling multi-modal access to the GNOME desktop, and so forth. ================== * What's changed ? ================== 0.2.1 ===== User interface * Better reporting of accessible components * Combobox current text reported on focus * Tree level reported on level change and first focus (bug #343388) * Menu role and name announced before menu items when switching between menus * Review of visible items works on text, trees, lists, and tables now * Added mute indefinitely key command Scripting * Added DeveloperPerk with the following commands * Refresh all loaded scripts without restarting LSR * Report names of all loaded scripts * Show or hide all development monitor windows * Added -g command line parameter to generate a new extension template * Update of TaskTools to support new output semantics * Added support for text selection events * Added support for storing script and application state separately Devices * Updated Keyboard device to support stateful keys as modifiers (e.g. CapsLock) Architecture * Complete refactor of output interface to support device Style objects * Mapping from semantics (role, title, level, etc.) to styles * Plumbing to support persistence and configuration of extension settings * Plumbing to support auto-generation of settings dialogs for extensions Documentation * Posted Gaim Perk tutorial as hands-on example of writing a script extension * Updated user guide to mention new key bindings * Regenerated epydoc to match latest API Translations * sv(Christian Rose) ====================== * Where can I get it ? ====================== Source code release: http://live.gnome.org/LSR#downloads For more information, visit the LSR home page: http://live.gnome.org/LSR From rodrigo@novell.com Mon Jun 12 17:44:58 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F06E53B016D for ; Mon, 12 Jun 2006 17:44:57 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32717-04 for ; Mon, 12 Jun 2006 17:44:57 -0400 (EDT) Received: from peabody.ximian.com (peabody.ximian.com [130.57.169.10]) by menubar.gnome.org (Postfix) with ESMTP id DCE623B00E5 for ; Mon, 12 Jun 2006 17:44:56 -0400 (EDT) Received: (qmail 22167 invoked from network); 12 Jun 2006 21:43:46 -0000 Received: from localhost (HELO ?164.99.120.183?) (127.0.0.1) by localhost with SMTP; 12 Jun 2006 21:43:46 -0000 From: Rodrigo Moya To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-15 Date: Mon, 12 Jun 2006 23:36:21 +0200 Message-Id: <1150148182.16907.0.camel@formigal.home> Mime-Version: 1.0 X-Mailer: Evolution 2.6.0 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.336 tagged_above=-999 required=2 tests=[AWL=-0.091, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, TW_BX=0.077, TW_IB=0.077] X-Spam-Score: -2.336 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: Control Center List Subject: control-center 2.15.3 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 21:44:58 -0000 Changes since 2.14.2 -------------------- about me: - Fixed typo (Rodrigo Moya) (324971) - Fixed compilation issues (Rodrigo Moya) (344468) default applications: - Added support for Sylpheed (Luca Cavalli) (332659) - Removed unnecessary gnome-terminal argument (Luca Cavalli) (336700) keybindings: - Removed brightness keybindings, now in gnome-power-manager (Bastien Nocera) (339857) keyboard: - Save/restore layout preview window geometry (Sergey Udaltsov) mouse: - Fixed selection when no cursor font is set in GConf (Darren Kenny) (340003) sound: - Added sound device selection (Jrg Billeter) (329112) - Fixed button strings (Rodrigo Moya) (324971) theme-switcher: - Removed drag & drop information text (Thomas Wood) (99535) - Added Install buttons to each tab in the details window (Thomas Wood) - Remember last browsed or installed from location (Thomas Wood) (138795) - Don't allow invalid characters in theme names (Thomas Wood) (139692) - Don't ask user whether to overwrite or not internal files (Thomas Wood) (317375) - Allow saving background image for custom themes (Thomas Wood) (330302) - Fixed UI issues in the save dialog (Thomas Wood) (100622) settings daemon: - Fixed libxklavier engine initialization logic (Sergey Udaltsov) (333091) - Removed references to brightness controls (Bastien Nocera) (339857) - Fixed leaks (Paolo Borelli) (342568, 342570) general: - Updated to new libxklavier API (Sergey Udaltsov) updated translations: - bg (Alexander Shopov) - cs (Miloslav Trmac, Lukas Novotny, Jakub Friedl) - dz (Pema Geyleg) - es (Francisco Javier F. Serrador) - fi (Ilkka Tuohela) - gl (Ignacio Casal Quinteiro) - gu (Ankit Patel) - mg (Simos Xenitellis) - nb (Kjartan Maraas) - sq (Laurent Dhima) - sv (Daniel Nylander) - th (Theppitak Karoonboonyanan) - vi (Clytie Siddall) - zh_CN (Funda Wang) - zh_HK (Chao-Hsiung Liao) - zh_TW (Chao-Hsiung Liao) Availability ------------ http://ftp.gnome.org/pub/GNOME/sources/control-center/2.15/ Contact ------- * Bugs in http://bugzilla.gnome.org * Mailing list http://mail.gnome.org/mailman/listinfo/gnomecc-list -- Rodrigo Moya From behdad.esfahbod@gmail.com Mon Jun 12 17:47:52 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7B80A3B014D for ; Mon, 12 Jun 2006 17:47:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32679-08 for ; Mon, 12 Jun 2006 17:47:50 -0400 (EDT) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.206]) by menubar.gnome.org (Postfix) with ESMTP id 93D3F3B02C1 for ; Mon, 12 Jun 2006 17:47:50 -0400 (EDT) Received: by wx-out-0102.google.com with SMTP id h26so956318wxd for ; Mon, 12 Jun 2006 14:47:02 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:subject:from:to:content-type:date:message-id:mime-version:x-mailer:sender; b=YVJmmmTJDYAPVWyBcXj8x877np/3myVRslCESpGT8RXV9fhXWO7m4zcVtD0bbIyxzLCNy9G4MxoeR4wKgZZNAmVLfJY4S5Cm99AU8jHeau3kamsPLiBWdw/7luc5fNsqJp4eQk4EpFqLzmMhtWaKSOxclPSl65MK68ngzTNkqNo= Received: by 10.70.103.17 with SMTP id a17mr6909562wxc; Mon, 12 Jun 2006 14:47:02 -0700 (PDT) Received: from to-dhcp26.toronto.redhat.com ( [63.250.163.171]) by mx.gmail.com with ESMTP id h34sm6169771wxd.2006.06.12.14.47.01; Mon, 12 Jun 2006 14:47:01 -0700 (PDT) From: Behdad Esfahbod To: gnome-announce-list@gnome.org Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-Vxzn0OEXLlv9C28CHSps" Date: Mon, 12 Jun 2006 17:46:59 -0400 Message-Id: <1150148819.10765.11.camel@home> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 (2.6.1-1.fc5.2) Sender: Behdad Esfahbod X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.6 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.6 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Subject: vte-0.13.2 released [unstable] X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 21:47:52 -0000 --=-Vxzn0OEXLlv9C28CHSps Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Vte-0.13.2 is available for download at: http://download.gnome.org/sources/vte/0.13/ Vte is GNOME 2's virtual-terminal emulation widget. This is an unstable release. 0.13.2 Bug 344666 =E2=80=93 Problems with *_CFLAGS and *_LDFLAGS in makefiles Patch from Stepan Kasal . Bug 339529 =E2=80=93 gnome-terminal (vte) crashes when detatched window is closed Bug 342549 =E2=80=93 uninitialized var (coverity) Patch from Paolo Borelli. Bug 342082 =E2=80=93 vte_invalidate_region() may check whether terminal is realiazed or not Patch from Kouhei Sutou. Bug 340363 =E2=80=93 vte Cygwin build fixes Patch from Cygwin Ports maintainer Bug 341793 =E2=80=93 vte.h doesn't need to include X11/Xlib.h Patch from Kouhei Sutou Require intltool 0.35.0 to have translations in the dist tarballs. Fix typo which may have been causing things like crashes. Behdad Esfahbod 12 June 2006 --=-Vxzn0OEXLlv9C28CHSps Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEjeDTn+4E5dNTERURAjCvAJ9H07aDShKW/mLQfhNyOaMG1RtYsACgixvW gbPOhTT6IK5+BSx0dCk7844= =JsUT -----END PGP SIGNATURE----- --=-Vxzn0OEXLlv9C28CHSps-- From behdad.esfahbod@gmail.com Mon Jun 12 17:52:44 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id EFA613B02CD for ; Mon, 12 Jun 2006 17:52:43 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00550-05 for ; Mon, 12 Jun 2006 17:52:42 -0400 (EDT) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.196]) by menubar.gnome.org (Postfix) with ESMTP id A2EDA3B016D for ; Mon, 12 Jun 2006 17:52:41 -0400 (EDT) Received: by wx-out-0102.google.com with SMTP id h26so957012wxd for ; Mon, 12 Jun 2006 14:51:44 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:subject:from:to:content-type:date:message-id:mime-version:x-mailer:sender; b=HkVpdki0/g3XkGcHUm613LiH99RNWp83QpOiB04twtI9/oyY5QJs7xgUW9ugXUYWTW0FQESua3SiFes9GpwcHFnulMB+jmu6Frg1gjSTz94Z0WNKazKYJCx/0yCrKVvi+sIhO9793kd+R7hBbKFWLBqlIyo5yetvED1gx6HIjnc= Received: by 10.70.36.1 with SMTP id j1mr6891335wxj; Mon, 12 Jun 2006 14:44:52 -0700 (PDT) Received: from to-dhcp26.toronto.redhat.com ( [63.250.163.171]) by mx.gmail.com with ESMTP id h18sm3879342wxd.2006.06.12.14.44.50; Mon, 12 Jun 2006 14:44:51 -0700 (PDT) From: Behdad Esfahbod To: Pango Release Lists , gtk-app-devel-list@gnome.org, gtk-devel-list@gnome.org, gtk-i18n-list@gnome.org, gtk-list@gnome.org Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-HZBsNn3KdPR3jVVwB9gO" Date: Mon, 12 Jun 2006 17:44:37 -0400 Message-Id: <1150148678.10765.8.camel@home> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 (2.6.1-1.fc5.2) Sender: Behdad Esfahbod X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.6 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.6 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: Subject: Pango-1.13.2 released [unstable] X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 21:52:44 -0000 --=-HZBsNn3KdPR3jVVwB9gO Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Pango-1.13.2 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.11/ or http://download.gnome.org/sources/pango/1.13/ 28a6ea9d43c4cd398e7352032f775401 pango-1.13.2.tar.bz2 17d78473c05fece044c6a3b44519b61f pango-1.13.2.tar.gz This is a development release leading up to Pango-1.14.0, which will be released just in time for GNOME-2.16. Notes: * This is unstable development release. While it has had fairly extensive testing, there are likely bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of Pango-1.12. If you have problems, you'll need to reinstall Pango-1.12.x * Bugs should be reported to http://bugzilla.gnome.org. About Pango =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Pango is a library for layout and rendering of text, with an emphasis on internationalization. Pango can be used anywhere that text layout is needed, though most of the work on Pango so far has been done in the context of the GTK+ widget toolkit. Pango forms the core of text and font handling for GTK+-2.x. Pango is designed to be modular; the core Pango layout engine can be used with different font backends. There are three basic backends, with multiple options for rendering with each. - Client side fonts using the FreeType and fontconfig libraries. Rendering can be with with Cairo or Xft libraries, or directly to an in-memory buffer with no additional libraries. - Native fonts on Microsoft Windows. (Optionally using Uniscribe for complex-text handling). Rendering can be done via Cairo or directly using the native Win32 API. - Native fonts on MacOS X, rendering via Cairo. The integration of Pango with Cairo (http://cairographics.org) provides a complete solution with high quality text handling and graphics rendering. Dynamically loaded modules then handle text layout for particular combinations of script and font backend. Pango ships with a wide selection of modules, including modules for Hebrew, Arabic, Hangul, Thai, and a number of Indic scripts. Virtually all of the world's major scripts are supported. As well as the low level layout rendering routines, Pango includes PangoLayout, a high level driver for laying out entire blocks of text, and routines to assist in editing internationalized text. More information about Pango is available from http://www.pango.org/. Pango 1.13.2 depends on version 2.10.0 or newer of the GLib library and version 1.1.2 or newer of the cairo library (if the cairo backend is desired); more information about GLib and cairo can be found at http://www.gtk.org/ and http://cairographics.org/ respectively. Overview of changes between 1.13.1 and 1.13.2 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D * Improved hexbox drawing, and font metrics calculations. * Synthesize italic variants on win32 [Hans Breuer] * New public API: - pango_cairo_show_error_underline - pango_cairo_error_underline_path - pango_font_describe_with_absolute_size * Misc fixes. * Bugs fixed in this release: Bug 326960 =E2=80=93 hex box drawing for win32 and atsui backends of cairo Bug 343717 =E2=80=93 License information in unclear. Bug 343355 =E2=80=93 Add pango_cairo_show_error_underline & pango_cairo_error_underline_path Bug 343966 =E2=80=93 pango Cygwin build fixes Patch from Cygwin Ports maintainer. Bug 343796 =E2=80=93 Italic Chinese character can't be show correctly in Win32. Bug 314114 =E2=80=93 max_x_advance not appropriate for approximate_(char|digit)_width Bug 341138 =E2=80=93 Using TTC font, Gtk2 programs begin to eating big mem= ory and have many cpu usage. Patch from Yong Li. Bug 336153 =E2=80=93 Mark to mark positioning (Lookup Type 6) isn't correc= t when using MarkAttchmentType Patch from Tin Myo Htet. Bug 333984 =E2=80=93 pango_language_from_string improvements Bug 125378 =E2=80=93 Better underline thickness handling Bug 339730 =E2=80=93 Pango needlessly falls back away from a Type 1 font i= nto a TTF font Bug 342562 =E2=80=93 Support absolute sizes in pango_font_description_to/from_string Bug 341922 =E2=80=93 pango should handle more characters as zero width Patch from Roozbeh Pournader Bug 342525 =E2=80=93 With PangoFc and PangoWin32, approximate digit width = is not what it says Bug 342079 =E2=80=93 pangoatsui-private.h missing from release Behdad Esfahbod 12 June 2006 --=-HZBsNn3KdPR3jVVwB9gO Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEjeBFn+4E5dNTERURApTwAJ9OvqbaG1xnQYzGPC9u0WPi30b6ggCfXNvZ oFfMwctzkAaKRETc/0aDRj0= =Wl7j -----END PGP SIGNATURE----- --=-HZBsNn3KdPR3jVVwB9gO-- From ebassi@gmail.com Mon Jun 12 18:16:04 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 959AC3B00A5 for ; Mon, 12 Jun 2006 18:16:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01337-06 for ; Mon, 12 Jun 2006 18:16:03 -0400 (EDT) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.186]) by menubar.gnome.org (Postfix) with ESMTP id E69443B015D for ; Mon, 12 Jun 2006 18:16:02 -0400 (EDT) Received: by nf-out-0910.google.com with SMTP id x37so950087nfc for ; Mon, 12 Jun 2006 15:14:56 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:subject:from:to:cc:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; b=eGvIpFNEWtb7L9J87AK/A8+ENa91duWZBEqSL8uzr9KmNI5+11lkZvmnBmdUhuBBlxyNjlYBw3sh/Am36NkcDakYEh5OSYiVckbEq9XEKnN5svoJJwcDLufW7SXw+2xzT5RpJ43xYvJHTzDB08ykyYlcsfJVZtZALOWrI8eQ7mU= Received: by 10.48.241.20 with SMTP id o20mr5263837nfh; Mon, 12 Jun 2006 15:08:01 -0700 (PDT) Received: from rogue.local ( [86.136.65.180]) by mx.gmail.com with ESMTP id k23sm6896442nfc.2006.06.12.15.08.01; Mon, 12 Jun 2006 15:08:01 -0700 (PDT) From: Emmanuele Bassi To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=UTF-8 Date: Mon, 12 Jun 2006 23:07:59 +0100 Message-Id: <1150150079.5273.10.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.336 tagged_above=-999 required=2 tests=[AWL=0.264, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.336 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: GNOME Utils Subject: [ANNOUNCE] Gnome-utils 2.15.3 - "No, this is not Metacity" X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 22:16:04 -0000 Yeap, you read right: this is release 2.15.3 and this is *not* Metacity - even if we did skip a bit of numbers - but yet another great release of the GNOME Utilities package! Unfortunately, due to time constraints, this release rocks less than what we maintainers expected; nevertheless, it rocks louder and harder than any release done before. So download, sit back with a nice glass of red wine while your compiler of choice churns the sources, and prepare to test new features and to file new bugs. This is an unstable release of gnome-utils, so please be warned that it may cause loss of patience, body hair, teeth and overall sanity; it could also make your life easier. It's up to you to test it and report back any misfeature, bug or feature request. You can download the 2.15.3 release of gnome-utils from the usual place, at: http://download.gnome.org/sources/gnome-utils/2.15/ =================================================================== GNOME Utilities 2.15.3 (June 12th 2006) - "No, it's not Metacity" Baobab * Add a new item in the list window context menu to start scanning a folder. Dictionary * Re-implement the speller widget, to show similar words in case no definition was found. * Use a themable icon Floppy * Nothing Screenshot * Drop deprecated include files (Kristof Vansant, #167098) * Fix compilator warnings * Update launcher description Search Tool * Update launcher description System Log Viewer * Miscellaneous fixes on 64bit platforms (Joe Marcus Clarke, Lin Ma) * Change the default log files list on Solaris (Lin Ma) * Remove empty character from status bar (Lin Ma) * Sort files by ascending order (Lin Ma) * Use `File' instead of `Log' as the first menu (Lin Ma) * Fix the selection offset when copying from a log (Sebastien Bacher) Translations updates: Petr Tomeš (cs), Mindu Dorji (dz), Francisco Javier F. Serrador (es), Iñaki Larrañaga Murgoitio (eu), Ignacio Casal Quinteiro (gl), Ankit Patel (gu), Fabio Marzocca (it), Changwoo Ryu (ko), Fano Rajaonarisoa (mg), Øivind Hoel (nb), Vincent van Adrighem (nl), Theppitak Karoonboonyanan (th), Clytie Siddall (vi), Funda Wang (zh_CN), Lin-Chieh Shangkuan (zh_HK), Lin-Chieh Shangkuan (zh_TW) Ciao, Emmanuele. -- Emmanuele Bassi - Log: http://log.emmanuelebassi.net From kurt@maute.us Mon Jun 12 19:34:25 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 07B863B0150 for ; Mon, 12 Jun 2006 19:34:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03322-07 for ; Mon, 12 Jun 2006 19:34:23 -0400 (EDT) Received: from mta6.srv.hcvlny.cv.net (mta6.srv.hcvlny.cv.net [167.206.4.201]) by menubar.gnome.org (Postfix) with ESMTP id 5040C3B000C for ; Mon, 12 Jun 2006 19:34:23 -0400 (EDT) Received: from [192.168.0.56] (ool-435223b5.dyn.optonline.net [67.82.35.181]) by mta6.srv.hcvlny.cv.net (Sun Java System Messaging Server 6.2-6.01 (built Apr 3 2006)) with ESMTP id <0J0R00G8NSFQ4H00@mta6.srv.hcvlny.cv.net> for gnome-announce-list@gnome.org; Mon, 12 Jun 2006 19:11:51 -0400 (EDT) Date: Mon, 12 Jun 2006 19:11:49 -0400 From: Kurt Maute To: Planner-Dev , Planner , gnome-announce-list@gnome.org Message-id: <1150153909.4619.131.camel@dori> MIME-version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-type: text/plain; charset=UTF-8 Content-transfer-encoding: 8BIT X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.599 tagged_above=-999 required=2 tests=[AWL=0.000, BAYES_00=-2.599] X-Spam-Score: -2.599 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: Subject: Planner v0.14 Released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 23:34:25 -0000 Hi All, Planner v0.14 is now available for download: http://ftp.gnome.org/pub/GNOME/sources/planner/0.14/ What is Planner =============== Planner is the GNOME project management tool. Homepage: http://live.gnome.org/Planner What's New in Planner v0.14 =========================== * FF and SF Predecessors 140561 (Kurt Maute) * Simple priority scheduling (Matteo Nastasi): Use the --enable-simple-priority-scheduling option when building. This feature will allow a high priority task to steal resources from a lower priority task. * View Non-standard working/nonworking days (Matteo Nastasi): In the Gantt view, this feature shows where resources have differences in working and nonworking days when compared to the default calendar. * Resource Usage view canvas interactivity (Alvaro del Castillo): Right clicking on a usage bar or resource pops up an option menu. * Gantt chart misalignment with tree view 128983 (Francisco Moraes) * Summary tasks: work now equals sum of child tasks 305801 (Kurt Maute) * Eliminate effects of resource assignments on summary tasks 151604 (Kurt Maute): Assigning a resource to a summary task now has no effect. * Updated user guide: (Kurt Maute) * View Grid Lines in Gantt view 303374 (Nguyễn Thái Ngọc Duy): Shows horizontal lines in Gantt to help visually line up tasks with Gantt bars. Translators: Vladimir "Kaladan" Petkov (bg) Miloslav Trmac (cs) Hendrik Richter (de) Kostas Papadimas (el) Adam Weinberger (en_CA) David Lodge (en_GB) Francisco Javier F. Serrador (es) Ivar Smolin (et) Larra Murgoitio (eu) Meelad Zakaria (fa) Ilkka Tuohela (fi) Gabor Kelemen (hu) Takeshi AIHANA (ja) Kjartan Maraas (nb) "Last-Translator: \n" (ne) Jan-Willem Harmanny (nl) Afonso Celso Medina (pt_BR) Steve Murphy (rw) Marcel Telka (sk) Данило Шеган (sr) Daniel Nylander (sv) Maxim V. Dziumanenko (uk) Clytie Siddall (vi) Woodman Tuen (zh_TW) -- Kurt Maute From nudrema@gmail.com Mon Jun 12 20:13:02 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 32C693B0009; Mon, 12 Jun 2006 20:13:02 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04226-02; Mon, 12 Jun 2006 20:13:01 -0400 (EDT) Received: from swip.net (mailfe04.swip.net [212.247.154.97]) by menubar.gnome.org (Postfix) with ESMTP id 447933B000C; Mon, 12 Jun 2006 20:13:00 -0400 (EDT) X-T2-Posting-ID: Ee7YIbSG3O5rNcT4cGADretWTWrDEjpwS9FwzyhFhzk= X-Cloudmark-Score: 0.000000 [] Received: from [83.182.30.225] (HELO [10.0.0.13]) by mailfe04.swip.net (CommuniGate Pro SMTP 5.0.8) with ESMTP id 211925446; Tue, 13 Jun 2006 02:11:51 +0200 Message-ID: <448E02C4.2050805@gmail.com> Date: Tue, 13 Jun 2006 02:11:48 +0200 From: =?ISO-8859-1?Q?Steve_Fr=E9cinaux?= User-Agent: Thunderbird 1.5.0.2 (X11/20060522) MIME-Version: 1.0 To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.931 tagged_above=-999 required=2 tests=[AWL=-0.478, BAYES_00=-2.599, SPF_NEUTRAL=1.069, TW_GT=0.077] X-Spam-Score: -1.931 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: gedit-list Subject: ANNOUNCE: gedit 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 00:13:02 -0000 Hi all, gedit 2.15.3 is now available. gedit the official GNOME text editor. homepage: http://live.gnome.org/GeditPlugins * Changes in 2.15.3 ==================== New features and fixes: - New gedit_commands_* API for plugins (Paolo Maggi) - Snippets support for space indentation (Jesse van den Kieboom) - gtk-doc enabled C plugin API documentation (Steve Frcinaux) - Next/Previous menu items (Paolo Maggi) - C/Python plugin skeleton generator (Steve Frcinaux) - Snippets plugin enhancements and fixes (Jesse van den Kieboom) - Misc improvements and bugfixes New and updated translations: - Alexander Shopov (bg) - Ankit Patel (gu) - Clytie Siddall (vi) - Francisco Javier F. Serrador (es) - Kjartan Maraas (nb) - Ignacio Casal Quinteiro (gl) - Jakub Friedl (cs) - Pema Geyleg (dz) - Priit Laes (et) - Theppitak Karoonboonyanan (th) * Download =========== http://ftp.gnome.org/pub/GNOME/sources/gedit/2.15/gedit-2.15.3.tar.gz md5sum: 07a99a6c45fa859a770a86bfa6289acd http://ftp.gnome.org/pub/GNOME/sources/gedit/2.15/gedit-2.15.3.tar.bz2 md5sum: e43046da726b9df3119ff8db00c7f4ad -- Steve http://tw.apinc.org From gnome@nextreality.net Mon Jun 12 23:42:44 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 13DDB3B00E5 for ; Mon, 12 Jun 2006 23:42:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08544-08 for ; Mon, 12 Jun 2006 23:42:42 -0400 (EDT) Received: from brentsmith.name (unknown [64.62.195.122]) by menubar.gnome.org (Postfix) with ESMTP id 7C54A3B0010 for ; Mon, 12 Jun 2006 23:42:42 -0400 (EDT) Received: by brentsmith.name (Postfix, from userid 5001) id 8C64635904; Tue, 13 Jun 2006 03:41:31 +0000 (UTC) Received: from [192.168.1.101] (c-67-176-37-213.hsd1.co.comcast.net [67.176.37.213]) by brentsmith.name (Postfix) with ESMTP id DA11C35901 for ; Tue, 13 Jun 2006 03:41:30 +0000 (UTC) Message-ID: <448E33F5.5080804@nextreality.net> Date: Mon, 12 Jun 2006 21:41:41 -0600 From: Brent Smith User-Agent: Thunderbird 1.5.0.2 (X11/20060522) MIME-Version: 1.0 To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Bogosity: Unsure, tests=bogofilter, spamicity=0.500000, version=0.94.4 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.577 tagged_above=-999 required=2 tests=[AWL=0.022, BAYES_00=-2.599] X-Spam-Score: -2.577 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:35 -0400 Subject: Yelp 2.15.3 Released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 03:42:44 -0000 Yelp 2.15.3 is now available from an FTP mirror near you (actually, you might have to wait a little bit for it to appear). Yelp is the program that appears from the mist when you click the Help button in your favorite GNOME application. This release contains many improvements over the last development release. Read on for details... Changes in 2.15.3: ------------------ * New debugging infrastructure (Brent Smith) * Add support for translated man pages, fixes #343275 (Brent Smith) * Support private instances with -p (Bug #337540) (Don Scorgie) * Switch from Bonobo to DBUS Activation (Don Scorgie) * Change 'Multimedia' category to 'Sound & Vision' for (Don Scorgie) consistency (bug #332182) * Don't auto-expand sections in left pane (bug #167070) (Don Scorgie) * Don't use mozilla's internal string API, and drop (Christian Persch) support for gecko 1.7 and non-toolkit geckos. Bug #343950. * Add a deep history framework (bug #67966) (Don Scorgie) * Make *Notes into hyperlinks (bug #343524) (Don Scorgie) * Make monospace fonts change size when asked (Don Scorgie) (bug #344003) * Escape & characters when encountered in info (Don Scorgie) processing (fixes #343372) * more helpful message when there are no search results(Frederic Peters) (fixes #341798) * search results message can be translated (Frederic Peters) (fixes #341689) * limit search results to 20 items (fixes #341434) (Frederic Peters) * cleanup the man_secthash hash table when finished (Brent Smith) * don't increment ptr, fixes #341827 (Don Scorgie) * Fix a bunch of memory leaks (Don Scorgie) * Fix an invalid write, #342151 (Don Scorgie) * NULL checking. Suppresses critical warnings on some (Don Scorgie) info pages * If an info file doesn't exist, default to showing (Don Scorgie) the man page, fixes #341627 * Fix loading of info pages from subdirectories (emacs) (Don Scorgie) * Update intltool requirement to 0.35.0 (Brent Smith) * Reduce strictness of searching for menus in info pages (Don Scorgie) * Updated translations: Jakub Friedl (cs) Mindu Dorji (dz) Francisco Javier F. Serrador (es) Priit Laes (et) Iaki Larraaga Murgoitio (eu) Ankit Patel (gu) Raivis Dejus (lv) Kjartan Maraas (nb) Theppitak Karoonboonyanan (th) Pablo Saratxaga (wa) http://ftp.gnome.org/pub/GNOME/sources/yelp/2.14/ Share and enjoy. Regards, -- Brent Smith IRC: smitten From nudrema@gmail.com Tue Jun 13 04:23:41 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F14743B000C; Tue, 13 Jun 2006 04:23:40 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16049-10; Tue, 13 Jun 2006 04:23:40 -0400 (EDT) Received: from swip.net (mailfe11.swipnet.se [212.247.155.65]) by menubar.gnome.org (Postfix) with ESMTP id 2C63B3B000A; Tue, 13 Jun 2006 04:23:39 -0400 (EDT) X-T2-Posting-ID: Ee7YIbSG3O5rNcT4cGADretWTWrDEjpwS9FwzyhFhzk= X-Cloudmark-Score: 0.000000 [] Received: from [83.182.30.69] (HELO [10.0.0.13]) by mailfe11.swip.net (CommuniGate Pro SMTP 5.0.8) with ESMTP id 44536455; Tue, 13 Jun 2006 10:22:28 +0200 Message-ID: <448E75C1.6030808@gmail.com> Date: Tue, 13 Jun 2006 10:22:25 +0200 From: =?ISO-8859-1?Q?Steve_Fr=E9cinaux?= User-Agent: Thunderbird 1.5.0.2 (X11/20060522) MIME-Version: 1.0 To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.861 tagged_above=-999 required=2 tests=[AWL=-0.543, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_NEUTRAL=1.069, TW_GT=0.077] X-Spam-Score: -1.861 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:35 -0400 Cc: gedit-list Subject: ANNOUNCE: gedit 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 08:23:41 -0000 Hi all, gedit 2.15.3 is now available. gedit the official GNOME text editor. homepage: http://www.gnome.org/projects/gedit * Changes in 2.15.3 ==================== New features and fixes: - New gedit_commands_* API for plugins (Paolo Maggi) - Snippets support for space indentation (Jesse van den Kieboom) - gtk-doc enabled C plugin API documentation (Steve Frcinaux) - Next/Previous menu items (Paolo Maggi) - C/Python plugin skeleton generator (Steve Frcinaux) - Snippets plugin enhancements and fixes (Jesse van den Kieboom) - Misc improvements and bugfixes New and updated translations: - Alexander Shopov (bg) - Ankit Patel (gu) - Clytie Siddall (vi) - Francisco Javier F. Serrador (es) - Kjartan Maraas (nb) - Ignacio Casal Quinteiro (gl) - Jakub Friedl (cs) - Pema Geyleg (dz) - Priit Laes (et) - Theppitak Karoonboonyanan (th) * Download =========== http://ftp.gnome.org/pub/GNOME/sources/gedit/2.15/gedit-2.15.3.tar.gz md5sum: 07a99a6c45fa859a770a86bfa6289acd http://ftp.gnome.org/pub/GNOME/sources/gedit/2.15/gedit-2.15.3.tar.bz2 md5sum: e43046da726b9df3119ff8db00c7f4ad -- Steve http://tw.apinc.org From s.marechal@jejik.com Tue Jun 13 19:55:27 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 44B8A3B00C7 for ; Tue, 13 Jun 2006 19:55:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10258-05 for ; Tue, 13 Jun 2006 19:55:25 -0400 (EDT) Received: from smtp-vbr15.xs4all.nl (smtp-vbr15.xs4all.nl [194.109.24.35]) by menubar.gnome.org (Postfix) with ESMTP id 1E2F43B00D4 for ; Tue, 13 Jun 2006 19:55:24 -0400 (EDT) Received: from [192.168.1.2] (a82-92-145-91.adsl.xs4all.nl [82.92.145.91]) (authenticated bits=0) by smtp-vbr15.xs4all.nl (8.13.6/8.13.6) with ESMTP id k5DNsOqr025232 for ; Wed, 14 Jun 2006 01:54:25 +0200 (CEST) (envelope-from s.marechal@jejik.com) Message-ID: <448F504E.1060904@jejik.com> Date: Wed, 14 Jun 2006 01:54:54 +0200 From: Sander Marechal User-Agent: Thunderbird 1.5.0.2 (X11/20060522) MIME-Version: 1.0 To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by XS4ALL Virus Scanner X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.557 tagged_above=-999 required=2 tests=[AWL=0.042, BAYES_00=-2.599] X-Spam-Score: -2.557 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Subject: Gnome Hearts 0.1 Release Announcement X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: user and developer discussion for the gnome hearts game List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 23:55:27 -0000 Gnome Hearts 0.1 Release Announcement ------------------------------------- Lone Wolves [1] is happy to announce the release of Gnome Hearts version 0.1, an implementation of the classic hearts card game for the Gnome desktop. Gnome Hearts 0.1 is the first release since the project's inception on April 30, earlier this year. Gnome Hearts features configurable rule-sets such as Omnibus and Spot Hearts besides the standard rules. The game also has multiple computer players that are implemented in the Lua [2] scripting language. This allows for easy modification of the players. Also, the game can use any deck of cards installed for the Gnome Games package. [1] http://www.jejik.com [2] http://www.lua.org Downloading and installing Gnome Hearts --------------------------------------- Gnome Hearts can be downloaded from the project website at http://www.gnome-hearts.org/download or directly using this link [3]. At the moment only a .tar.gz source package is available. Binaries for various distributions will appear at a later date. Keep an eye out on the download page and the mailing list [4] for the announcements. In order to build the .tar.gz you need to have libgnomeui2.0, liblua50, liblualib50 and libglade2 plus their respective headers installed. See the README file in the package for more details. [3] http://www.jejik.com/files/gnome-hearts/gnome-hearts-0.1.tar.gz [4] http://lists.jejik.com/cgi-bin/mailman/listinfo/hearts Acknowledgments --------------- Many thanks to the people that contributed to this first release and those who cast a critical glance over the package so we could fix many issues before our first release. -- Sander Marechal http://www.gnome-hearts.org From gjc@inescporto.pt Tue Jun 13 20:28:23 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BD25B3B000E for ; Tue, 13 Jun 2006 20:28:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11220-02 for ; Tue, 13 Jun 2006 20:28:21 -0400 (EDT) Received: from animal.inescn.pt (correio.inescn.pt [194.117.24.9]) by menubar.gnome.org (Postfix) with ESMTP id A61433B00C8 for ; Tue, 13 Jun 2006 20:28:20 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by animal.inescn.pt (8.13.6/8.13.6/7) with ESMTP id k5E0RKZp008488; Wed, 14 Jun 2006 01:27:20 +0100 (WEST) Received: from pong.inescporto.pt (pong.inescn.pt [194.117.26.74]) by animal.inescn.pt (8.13.6/8.13.6/5) with ESMTP id k5E0Qv9X008443; Wed, 14 Jun 2006 01:26:57 +0100 (WEST) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by pong.inescporto.pt (Postfix) with ESMTP id A69A5119284; Wed, 14 Jun 2006 01:23:55 +0100 (WEST) From: "Gustavo J. A. M. Carneiro" To: PyGTK Content-Type: text/plain Date: Wed, 14 Jun 2006 01:26:56 +0100 Message-Id: <1150244816.5417.6.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at inescporto.pt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.351 tagged_above=-999 required=2 tests=[AWL=-0.040, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001, TW_GD=0.077, TW_GT=0.077] X-Spam-Score: -2.351 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: gnome-announce-list@gnome.org Subject: ANNOUNCE: PyGTK 2.9.1 (unstable) X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 00:28:23 -0000 I am pleased to announce version 2.9.1 of the Python bindings for GTK. The new release is available from ftp.gnome.org and its mirrors as soon as its synced correctly: http://ftp.gnome.org/pub/GNOME/sources/pygtk/2.9/pygtk-2.9.1.tar.gz This is an unstable release and should be used with caution. It requires either GTK+ 2.8.x or GTK+ >= 2.9.3. [ Note: this release also fixes a build problem for the recently released GnomePythonDesktop 2.15.3. ] Blurb: GTK is a toolkit for developing graphical applications that run on systems such as Linux, Windows and MacOS X. It provides a comprehensive set of GUI widgets, can display Unicode bidi text. It links into the Gnome Accessibility Framework through the ATK library. PyGTK provides a convenient wrapper for the GTK+ library for use in Python programs, and takes care of many of the boring details such as managing memory and type casting. When combined with PyORBit and gnome-python, it can be used to write full featured Gnome applications. Like the GTK+ library itself PyGTK is licensed under the GNU LGPL, so is suitable for use in both free software and proprietary applications. It is already in use in many applications ranging from small single purpose scripts up to large full features applications. pygtk-2.9.0 13-june-2006 - Allow gtk.TreeSortable.set_default_sort_func callback to be None (Johan, Patrick O'Brien) - Add API to unset the g_log handlers (#323786, Johan) - Allow the gtk module to be imported without DISPLAY (#316877, Johan) - Code cleanup and fixes considering Coverity reports (Johan) - Add codegen support for const-Object return type (#169204, Gustavo) - Add codgen support for unblocking threads around method calls (Gustavo) - Wrap gdk_event_handler_set (Johan) - Codegen reverse wrapper bug fix (#340162, Yevgen Muntyan) - Wrap GdkRegion (John Ehresman) - Add codegen support for ignore-type statement in override (Johan) - Add conditional support for gtk+ 2.10 API, especially printing (Johan, Finlay, Gustavo) - Complete the support for gtk.Container virtual methods (#341641, Gustavo) - Fix misc. reference leaks (Finlay, Gustavo) - Allow None parameter in pangocairo.CairoContext.set_font_options (Finlay) - Complete the support for gtk.CellRenderer virtual methods (#339431, Gustavo) - IconView.set_cursor method params 'cell' and 'start_editing' made optional (#343039, Ross Burton, Finlay) - Wrap a few more gdk_cairo_* methods (Finlay) - Add a 'selection' field to gdk.OWNER_CHANGE events (Finlay) - Allow None in gtk.Entry.set_inner_border() (Finlay) - gtk.Clipboard rich text methods (Finlay) - Add gtk.MessageDialog.set_image() (Finlay) - Wrap gtk_link_button_set_uri_hook() (Finlay) - Allow None in gtk.Widget.input_shape_combine_mask() (Finlay) - Allow gtk.LinkButton() constructor to optionally receive a label (Finlay) - Allow None in gtk.Label.set_mnemonic_widget() (Johan) - Wrap a bunch of X11 specific gdk methods (Gustavo) - Add gtk.SizeGroup.get_widgets() (Finlay) - Wrap gtk_style_lookup_color() (Finlay) - Wrap a bunch of gtk treeview grid lines methods (Finlay) - Better Drag and drop API support (Finlay) - Add -I option to codegen (defs search path) (Gustavo) PyGTK requires GTK+ >= 2.8.0 and Python >= 2.3.5 to build. Bug reports, as always, should go to Bugzilla; check out http://pygtk.org/developer.html and http://pygtk.org/feedback.html for links to posting and querying bug reports for PyGTK. -- Gustavo J. A. M. Carneiro The universe is always one step beyond logic From ebassi@gmail.com Tue Jun 13 20:32:58 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A8A4B3B00C8 for ; Tue, 13 Jun 2006 20:32:58 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11365-03 for ; Tue, 13 Jun 2006 20:32:57 -0400 (EDT) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.184]) by menubar.gnome.org (Postfix) with ESMTP id D60A23B000E for ; Tue, 13 Jun 2006 20:32:56 -0400 (EDT) Received: by nf-out-0910.google.com with SMTP id y38so3928nfb for ; Tue, 13 Jun 2006 17:31:56 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:subject:from:to:cc:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; b=oUq+Y9uyXse5jWbXHN+a1hlPNgEB4SSPDgg8dWXx+1GsvRNsktrt4C4g3H5vMlt23VjpIETSUuVlhG6R9+5WQPa1f/yUs5fj1vO2K5m9rUq0MSBz2x1DxlwhH3zgxxsgbcw07IUW4AZgu+4ffuEd58TvM5NOX7EJyv1wtcIGIDA= Received: by 10.48.225.16 with SMTP id x16mr53191nfg; Tue, 13 Jun 2006 17:31:56 -0700 (PDT) Received: from ?192.168.1.70? ( [86.136.65.180]) by mx.gmail.com with ESMTP id l32sm22126nfa.2006.06.13.17.31.56; Tue, 13 Jun 2006 17:31:56 -0700 (PDT) From: Emmanuele Bassi To: gnome-announce-list@gnome.org Content-Type: text/plain Date: Wed, 14 Jun 2006 01:31:50 +0100 Message-Id: <1150245110.28862.8.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.337 tagged_above=-999 required=2 tests=[AWL=0.263, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.337 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: gnome-utils-list@gnome.org Subject: [ANNOUNCE] Gnome-utils 2.15.4 - "Ain't that another brown paper bag?" X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 00:32:58 -0000 Good news everyone! As last gnome-utils release contained a glitch that broke the build, here's a Brown Paper Bag Release ready: gnome-utils 2.15.4. Many thanks to Matthias Clasen and Fryderyk Dziarmagowski for finding the glitch. As usual, you can download the sources from here: http://download.gnome.org/sources/gnome-utils/2.15/ Enjoy, and remember to file any bug you might find! =================================================================== GNOME Utilities 2.15.4 (June 14th 2006) - "Ain't that another brown paper bag?" * "Brown paper bag" release Baobab * Nothing Dictionary * Remove wrong headers from the build (Matthias Clasen, #344773) Floppy * Nothing Screenshot * Fix included files Search Tool * Nothing System Log Viewer * Nothing Translations updates: Francisco Javier F. Serrador (es), Ankit Patel (gu) Ciao, Emmanuele. From cworth@cworth.org Wed Jun 14 12:07:42 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 50C153B03B2 for ; Wed, 14 Jun 2006 12:07:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05531-07 for ; Wed, 14 Jun 2006 12:07:31 -0400 (EDT) Received: from theworths.org (cworth.org [217.160.249.188]) by menubar.gnome.org (Postfix) with ESMTP id D79923B045D for ; Wed, 14 Jun 2006 12:07:30 -0400 (EDT) Received: (qmail 20098 invoked from network); 14 Jun 2006 12:06:35 -0400 Received: from localhost (HELO raht.cworth.org) (127.0.0.1) by localhost with SMTP; 14 Jun 2006 12:06:35 -0400 Date: Wed, 14 Jun 2006 09:01:56 -0700 Message-ID: <87pshbd8uj.wl%cworth@cworth.org> From: Carl Worth To: cairo-announce@cairographics.org Subject: cairo snapshot 1.1.8 now available User-Agent: Wanderlust/2.14.0 (Africa) Emacs/21.4 Mule/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: multipart/signed; boundary="pgp-sign-Multipart_Wed_Jun_14_09:01:49_2006-1"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.441 tagged_above=-999 required=2 tests=[AWL=-0.054, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, TW_XC=0.077] X-Spam-Score: -2.441 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 12:46:39 -0400 Cc: gnome-announce-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 16:07:42 -0000 --pgp-sign-Multipart_Wed_Jun_14_09:01:49_2006-1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable A new cairo snapshot 1.1.8 is now available from: http://cairographics.org/snapshots/cairo-1.1.8.tar.gz which can be verified with: http://cairographics.org/snapshots/cairo-1.1.8.tar.gz.sha1 ad660fe7bfede1882f4b81798e3e0ef8fe7ecb9b cairo-1.1.8.tar.gz http://cairographics.org/snapshots/cairo-1.1.8.tar.gz.sha1.asc (signed by Carl Worth) Additionally, a git clone of the source tree: git clone git://git.cairographics.org/git/cairo will include a signed 1.1.8 tag which points to a commit named: dd859b8736bb4d1bcf3ed78d0bd1f72a7aad9ca9 which can be verified with: git verify-tag 1.1.8 and can be checked out with a command such as: git checkout -b build 1.1.8 This is the fourth in a series of snapshots working toward the 1.2 release of cairo. At this point, all major features of the 1.2 release are in place, leaving just a few bug fixes left. In particular, there will be no additional API changes between this 1.1.8 snapshot and the 1.2 release. The announcement for 1.1.6 mentioned several API changes being considered. Only one of these changes was actually implemented (set_dpi -> fallback_resolution). This change does introduce one source-level incompatibility with respect to previous 1.1.x snapshots, so see below for details. What is cairo =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Cairo is a 2D graphics library with support for multiple output devices. Currently supported output targets include the X Window System, win32, and image buffers. Experimental backends include OpenGL (through glitz), Quartz, XCB, PostScript and PDF file output. Cairo is designed to produce consistent output on all output media while taking advantage of display hardware acceleration when available (for example, through the X Render Extension). The cairo API provides operations similar to the drawing operators of PostScript and PDF. Operations in cairo including stroking and filling cubic B=E9zier splines, transforming and compositing translucent images, and antialiased text rendering. All drawing operations can be transformed by any affine transformation (scale, rotation, shear, etc.). Cairo has been designed to let you draw anything you want in a modern 2D graphical user interface. At the same time, the cairo API has been designed to be as fun and easy to learn as possible. If you're not having fun while programming with cairo, then we have failed somewhere---let us know and we'll try to fix it next time around. Cairo is free software and is available to be redistributed and/or modified under the terms of either the GNU Lesser General Public License (LGPL) version 2.1 or the Mozilla Public License (MPL) version 1.1. Where to get more information about cairo =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D The primary source of information about cairo is: http://cairographics.org/ The latest releases of cairo can be found at: http://cairographics.org/releases Snapshots of in-development versions of cairo: http://cairographics.org/snapshots The programming manual for using cairo: http://cairographics.org/manual Mailing lists for contacting cairo users and developers: http://cairographics.org/lists Answers to some frequently asked questions about cairo: http://cairographics.org/FAQ What's new in 1.1.8 compared to 1.1.6 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ** API Change ** ---------------- According to the plan mentioned in the 1.1.6 notes, one source-level incompatible change has been implemented. The following three functions have been removed from cairo's API: cairo_pdf_surface_set_dpi cairo_ps_surface_set_dpi cairo_svg_surface_set_dpi and in their place the following function has been added: cairo_surface_set_fallback_resolution The signature and semantics of the function remains the same, so it is a simple matter of changing the name of the function when calling it. As a transition mechanism, this snapshot will (on many systems) build to include the old symbols so that code previously compiled will still run. However, all source code using the old names must be updated before it will compile. And the upcoming 1.2 release is not anticipated to include the old symbols. Finally, it should be pointed out that the old symbols never existed in the supported API of any stable release of cairo. (In the stable 1.0 releases the PDF, PS, and SVG backends were advertised as experimental and unstable.) And, as always, cairo continues to maintain source and binary compatibility between major releases. So applications compiled against supported backends in a stable release of cairo (1.0.4 say) will continue to compile and run without modification against new major releases (1.2.0 say) without modification. API additions ------------- The following new functions have been added to cairo's API: cairo_surface_get_content cairo_debug_reset_static_data cairo_image_surface_get_data cairo_image_surface_get_format cairo_image_surface_get_stride cairo_win32_font_face_create_for_hfont New, backend-specific pkg-config files -------------------------------------- In addition to the original cairo.pc file, cairo will also now install a pkg-config files for each configured backend, (for example cairo-pdf.pc, cairo-svg.pc, cairo-xlib.pc, cairo-win32.pc, etc.) this also includes optional font backends (such as cairo-ft.pc) and the optional png functionality (cairo-png.pc). These new pkg-config files should be very convenient for allowing cairo-using code to easily check for the existing of optional functionality in cairo without having to write complex rules to grub through cairo header files or the compiled library looking for symbols. Printing backend (PS, PDF, and SVG) ----------------------------------- Improving the quality of the "printing" backends has been a priority of the development between cairo 1.1.6 and cairo 1.1.8. The big improvement here is in the area of text output. Previously, at best, text was output as paths without taking advantage of any font support available in the output file format. Now, at the minimum text paths will be shared by using type3 fonts (for PS and PDF---and similarly, defs for SVG). Also, if possible, type3 and truetype fonts will be embedded in PostScript and PDF output. There are still some known bugs with this, (for example, selecting text in a cairo-generated PDF file with an embedded truetype font does not work). So there will be some more changes in this area before cairo 1.2, but do try test this feature out as it exists so far. Many thanks to Kristian H=F8gsberg for the truetype and type1 font embedding. win32 backend ------------- Performance improvements by preferring GDI over pixman rendering when possi= ble. Fixes for text rendering. xlib backend ------------ Fix potentially big performance bug by making xlib's create_similar try harder to create a pixmap of a depth matching that of the screen. Bug fixes --------- Among various other fixes, the following bugs listed in bugzilla have been fixed: Bug 2488: Patch to fix pixman samping location bug (#2488). https://bugs.freedesktop.org/show_bug.cgi?id=3D2488 Bug 4196: undef MIN an MAX before defining to avoid duplicate definition https://bugs.freedesktop.org/show_bug.cgi?id=3D4196 Bug 4723: configure.in: Fix m4 quoting when examining pkg-config version https://bugs.freedesktop.org/show_bug.cgi?id=3D4723 Bug 4882: Flag Sun's X server has having buggy_repeat. https://bugs.freedesktop.org/show_bug.cgi?id=3D4882 Bug 5306: test/pdf2png: Add missing include of stdio.h https://bugs.freedesktop.org/show_bug.cgi?id=3D5306 Bug 7075: Fix make clean to remove cairo.def https://bugs.freedesktop.org/show_bug.cgi?id=3D7075 (Many thanks to Behdad Esfahbod for helping us track down and fix many of these.) Detailed list of changes since 1.1.6 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Tag '1.1.8' created by Carl Worth at 2006-06-14 16:17 -= 0700 cairo 1.1.8 snapshot -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEkCju6JDdNq8qSWgRAjdQAJ9jjY8MwIcyhpSxf8Yn50izT6wXRwCeJN3x XKToq1aoRwjXc1HujBI0wVo=3D =3DtwxK -----END PGP SIGNATURE----- Changes since 1.1.6: Behdad Esfahbod: Bug 7075: Fix make clean to remove cairo.def Move cairo.pc into src/. Add backend-specific pkg-config files. Rename cairo-wideint.h to cairo-wideint-private.h. Bertram Felgenhauer: Patch to fix pixman samping location bug (#2488). Bug 4723: configure.in: Fix m4 quoting when examining pkg-config vers= ion Brian Cameron: Bug 4882: Flag Sun's X server has having buggy_repeat. Carl Worth: Increment CAIRO_VERSION to 1.1.7 after making the 1.1.6 snapshot Revert "pdf2png: Use new poppler_page_render to render directly throu= gh cairo." Don't build pdf2svg until we start depending on newer poppler ROADMAP: non-substantive changes Add select-font-face test for whosing multiple faces at once. Fix typo in select-font-face.c and update reference images PS: Remove stale comment (the stuff TODO is done already) PS: Move type 3 support out into cairo-ps-font.c PS: Put functions in more logical order. Rename cairo-ps-font to cairo-scaled-font-subsets (file names only) Generalize font subsetting code in cairo-scaled-font-subsets for use = by more than just PS backend Fix cairo_output_stream_destroy to do nothing on nil stream objects. Tweak names to match those of cairo-scaled-font-subsets SVG: Discard custom font subsetting in favor of sharing cairo-scaled-= font-subsets Add documentation for the _cairo_scaled_font_subsets interface. Fix memory leak in _cairo_scaled_font_subsets_foreach PDF: Use cairo_pdf_resource_t more consistently. PDF: Fold (unused) cairo_pdf_document_t into cairo_pdf_surface_t Change scaled_font_subsets_callback to have return type of void. PS: Fix arguments to setcachedevice PS: Remove the fallback case from _cairo_ps_surface_show_glyphs PDF: Use consistent style for typedef struct and macro naming. PDF: Move Resources dictionary up from Page objects to Pages object. PDF: Add Type3 font support to PDF output. pixman: Fix build to enable warnings again pixman: Add default case to quiet compiler warning pixman: Remove unused code to quiet compiler warnings ROADMAP: Note that PDF type 3 font support is done PDF: Fix broken per-page sizes in PDF output. xlib: Rename surface->format to surface->xrender_format to avoid conf= usion xlib: Style cleanups for _cairo_xlib_surface_create_similar PDF: Squelch a couple of bogus "may be used uninitialized" warnings. Move prototype of cairo_debug_reset_static_data from uninstalled cair= o-debug.h to cairo.h Codify 1.0 behavior of cairo_set_line_width as a feature, not a bug. SVG: Fix for line-width-scale New test: dash-scale PDF: Rename pdf_stroke_t to pdf_path_into_t for future sharing with f= ill PDF: Share path callbacks for fill and stroke. Clarify the documentation for cairo_set_dash PDF: Move dash operator before path construction operators. ROADMAP: Note that the cairo_set_line_width issue is resolved Typo fixes cairo-xlib-test: Rename cairo_test_xlib function prefix to cairo_xlib= _test PDF: Add new, private test function: cairo_pdf_test_force_fallbacks Add new fallback-resolution test for bug in cairo_pdf_surface_set_dpi New API: Add new function cairo_surface_get_content Note the changed semantics of cairo_surface_set_device_offset New API: Add cairo_image_surface_get_{data,format,stride} Move rectangle functions to new cairo-rectangle.c Remove extraneous whitespace from "blank" lines. Remove trailing whitespace from lines that look like comments. Remove trailing whitespace from lines with a single brace. Remove all remaining trailing whitespace. Remove initial, final, and duplicate blank lines. CODING_STYLE: Add notes on avoiding trailing whitespace. CODING_STYLE: Fix misspellings. Fix bogus cairo_rectangle_fixed_t to be cairo_rectangle_int16_t. Remove CAIRO_{MIN,MAX}SHORT which did not distinguish signed vs. unsi= gned. win32: Add conditional definitions for INT16_{MIN,MAX} and UINT16_MAX= now that we use them. Fix MAX vs. MIN bug introduced with rename away from CAIRO_MINSHORT Change all instances of UINT16_MAX to INT16_MAX to avoid new bug. Remove debugging "prints" of images from test/device-offset.c Add new test get-group-target (currently failing with paginated). Fix bug in get-group-target (in the test itself) letting it now pass. Rename ft-text-vertical-layout reference image according to standard = convention. Ignore ft-text-vertical-layout binary New API: Replace cairo_{ps,pdf,svg}_set_dpi with new cairo_surface_se= t_fallback_resolution. Add REPLACED_BY macros to help porting to new set_fallback_resolution Rename device_{x,y}_offset to {x,y}_device_offset for better consiten= cy/grepability doc: SGML template churn Change {x,y}_device_offset values to a device_transform matrix. Hook up device scaling so fallback_resolution starts working. Add text and stroke to falback-resolution test (showing bugs in each). Fix line width for stroking with a device_scale. Fix font size when drawing text with a device_scale. Add cairo_{ps,svg}_test_force_fallbacks so tests can force fallbacks. Test PS and SVG backends in addition to PDF in test/fallback-resoluti= on. Clarify that fallback_resolution acts on a per-page granularity. Don't create a new scaled_font if there's a device_offset but no devi= ce_scale. Change _cairo_meta_surface_get_extents to return a bounded size. ROADMAP: Note that cairo_surface_set_fallback_resolution is in place = now. Add cairo-ps-test.h and cairo-svg-test.h to Makefile.am Add aliases for deprecated cairo_{pdf,ps,svg}_surface_set_dpi Change return type of _cairo_scaled_glyph_lookup to allow UNSUPPORTED. PS, PDF: Re-organize handling of bitmapped fonts to avoid invalid out= put. Merge branch 'truetype-subsetting' into cairo Merge branch 'type1-subsetting' into cairo Add new zero-alpha test to demonstrate (X server?) bug found by Paul = Giblock test/zero-alpha: Drop REPS from 100 to 10 for a faster test. Bug 4196: undef MIN an MAX before defining to avoid duplicate definit= ion ft: If glyph->format is not OUTLINE use _render_glyph_bitmap to coerc= e to a bitmap ROADMAP: Update with PDF bugs from minefield test. Slip non-1.0 regre= ssions off of 1.2. Add zero-alpha reference image to Makefile.am for the sake of make di= st PS PDF: Update reference images due to truetype subsetting Update refefence images due to pattern source shift. Update version to 1.1.8 and add notes to NEWS file. Christian Biesinger: Make BeOS compile again Add missing reference images to EXTRA_DIST Distribute make-html.pl Add "html" Makefile target to run make-html.pl Dom Lachowicz: Bug 5306: test/pdf2png: Add missing include of stdio.h Emmanuel Pacaud: SVG: Sets something sane in width and height if acquire source image = fails. SVG: Remove special case for unclipped CLEAR and SOURCE in paint when SVG: Fix cairo_svg_surface_restrict_to_version. Use CLEAR operator for initialisation of similar surface with a trans= parent color. SVG: Add reference images for fill-and-stroke-alpha. SVG: Implementation of glyph cache SVG: Emit glyphs at the beginning of defs section. SVG: Sets fallback resolution when compositing a meta surface. Jeff Muizelaar: Only destroy scaled glyphs if they are not in the cache. Jinghua Luo: glitz: Don't hardcode content type when initializing cairo surface Merge branch 'master' of git+ssh://jinghua@git.cairographics.org/git/= cairo Add ft-text-vertical-layout test case for vertical layout. freetype: Fix for test case ft-text-vertial-layout. Make image-*-ref.png image as reference image. freetype: Ignore global advance unconditionally. freetype: rework _transform_glyph_bitmap. ignore FC_MATRIX in font pattern. freetype: build fix for _transform_glyph_bitmap. xlib: bugfix for #7172. freetype: Return an error if the glyph format isn't outline or bitmap ROADMAP: Mark bugs FC_ADVANCE and _transform_glyph_bitmap as fixed. Kristian H=C3=B8gsberg: Documentation fixes (cairo_font_create -> cairo_scaled_font_create). Merge branch 'master' of git://git.freedesktop.org/git/cairo Update pdf font emit code to try to emit a truetype subset before typ= e3. Output pdf dicts for truetype subset fonts. Hook _cairo_truetype_subset_init() up to existing truetype subset cod= e. Switch to using Tm for text positioning and scale type3 fonts to unit= size. Add support for truetype subset to ps backend. Print out ps comment in the truetype emit code and update type3 ps co= mment. Remember to destroy cairo_pdf_ft_font_t once we've generated the subs= et. Set libcairo_font_subset_sources for ps, pdf, and svg backends. Remember to call _cairo_truetype_subset_fini() after outputting subse= t. Pull in type1 subset code from the cvs repo it was sitting in. Add code to emit type1 dicts to the pdf backend. Use RD and ND for delimiting glyph data instead of -| and |-. Only use the word wrap stream when emitting paths. Make ps surface use type1 subset code. Track glyph subset indices and use them in the output. Look for /-| or /RD tokens to determine the charstring delimiter toke= ns. Consolidate a few arrays into a array of structs. Remember to call cairo_type1_font_subset_destroy(). Handle seac charstring commands correctly. Clarify licensing of float formatting code. Remove cairo_public from _cairo_lzw_compress() definition. Robert O'Callahan: [xlib] Have create_similar try harder to create the right surface Stuart Parmenter: [win32] Allow for creating a font from a HFONT [win32] implement win32 show_glyphs [win32] fix win32_show_glyphs glyph offsets Tim Mooney: bug #6890: fix the signature for main() in pthread-show-text Vladimir Vukicevic: [xlib] implement _cairo_xlib_surface_show_glyphs [xlib] only do glyph extents computation if non-solid source. [win32] Add SHADEBLENDCAPS and SB_NONE definitions for older SDKs [win32] Add GdiFlush() calls after DIB creation, as per MSDN docs [win32] GDI is nearly always faster than pixman; use it whenever poss= ible CAIRO_SCALED_FONT_TYPE_* -> CAIRO_FONT_TYPE_* Whitespace fix Define kCGBitmapByteOrder32Host for when the SDK doesn't define it Zakharov Mikhail: pixman: fix compilation on HP-UX 11.11 --- .gitignore | 1=20 CODING_STYLE | 22=20 Makefile.am | 8=20 NEWS | 132 + RELEASING | 2=20 ROADMAP | 72=20 configure.in | 68=20 doc/public/Makefile.am | 1=20 doc/public/tmpl/cairo-pdf.sgml | 7=20 doc/public/tmpl/cairo-ps.sgml | 7=20 doc/public/tmpl/cairo-status.sgml | 7=20 doc/public/tmpl/cairo-svg.sgml | 7=20 doc/tutorial/src/include/cairo-tutorial-gtk.h | 8=20 doc/tutorial/src/include/cairo-tutorial-pdf.h | 4=20 doc/tutorial/src/include/cairo-tutorial-png.h | 4=20 doc/tutorial/src/include/cairo-tutorial-xlib.h | 2=20 doc/tutorial/src/include/cairo-tutorial.h | 1=20 doc/tutorial/src/lca.c | 6=20 pixman/src/Makefile.am | 4=20 pixman/src/fbcompose.c | 44=20 pixman/src/fbedge.c | 5=20 pixman/src/fbedgeimp.h | 8=20 pixman/src/fbmmx.c | 559 +++--- pixman/src/fbmmx.h | 2=20 pixman/src/fbpict.c | 39=20 pixman/src/fbpict.h | 3=20 pixman/src/fbtrap.c | 24=20 pixman/src/icblt.c | 96 - pixman/src/icbltone.c | 57=20 pixman/src/iccolor.c | 2=20 pixman/src/icformat.c | 30=20 pixman/src/icimage.c | 99 - pixman/src/icimage.h | 9=20 pixman/src/icint.h | 55=20 pixman/src/icpixels.c | 1=20 pixman/src/icrect.c | 30=20 pixman/src/icrop.h | 6=20 pixman/src/icstipple.c | 6=20 pixman/src/ictransform.c | 5=20 pixman/src/ictrap.c | 12=20 pixman/src/ictri.c | 31=20 pixman/src/icutil.c | 3=20 pixman/src/pixman-xserver-compat.h | 3=20 pixman/src/pixman.h | 20=20 pixman/src/pixregion.c | 76=20 pixman/src/pixregionint.h | 9=20 pixman/src/renderedge.c | 13=20 pixman/src/slim_internal.h | 4=20 src/.gitignore | 1=20 src/Makefile.am | 60=20 src/cairo-analysis-surface.c | 11=20 src/cairo-arc.c | 6=20 src/cairo-array.c | 33=20 src/cairo-atsui-font.c | 59=20 src/cairo-backend.pc.in | 12=20 src/cairo-base85-stream.c | 5=20 src/cairo-beos-surface.cpp | 5=20 src/cairo-beos.h | 1=20 src/cairo-cache.c | 32=20 src/cairo-clip-private.h | 8=20 src/cairo-clip.c | 55=20 src/cairo-debug.c | 3=20 src/cairo-directfb-surface.c | 104 - src/cairo-directfb.h | 13=20 src/cairo-font-options.c | 60=20 src/cairo-font-subset-private.h | 1=20 src/cairo-font-subset.c | 182 +- src/cairo-font.c | 42=20 src/cairo-ft-font.c | 471 +++-- src/cairo-glitz-surface.c | 48=20 src/cairo-gstate-private.h | 2=20 src/cairo-gstate.c | 185 -- src/cairo-hash.c | 54=20 src/cairo-hull.c | 2=20 src/cairo-image-surface.c | 132 + src/cairo-lzw.c | 4=20 src/cairo-matrix.c | 147 - src/cairo-meta-surface.c | 53=20 src/cairo-operator.c | 8=20 src/cairo-output-stream.c | 28=20 src/cairo-paginated-surface.c | 28=20 src/cairo-path-bounds.c | 8=20 src/cairo-path-data.c | 14=20 src/cairo-path-fill.c | 3=20 src/cairo-path-stroke.c | 22=20 src/cairo-path.c | 32=20 src/cairo-pattern.c | 122 - src/cairo-pdf-surface.c | 2009 +++++++++++++------= ----- src/cairo-pdf-test.h | 20=20 src/cairo-pdf.h | 5=20 src/cairo-pen.c | 18=20 src/cairo-png.c | 35=20 src/cairo-polygon.c | 2=20 src/cairo-ps-surface.c | 982 +++++------ src/cairo-ps-test.h | 20=20 src/cairo-ps.h | 5=20 src/cairo-quartz-private.h | 2=20 src/cairo-quartz-surface.c | 37=20 src/cairo-quartz.h | 1=20 src/cairo-rectangle.c | 85 + src/cairo-region.c | 17=20 src/cairo-scaled-font-subsets-private.h | 267 +++ src/cairo-scaled-font-subsets.c | 384 ++++ src/cairo-scaled-font.c | 195 +- src/cairo-slope.c | 6=20 src/cairo-spline.c | 3=20 src/cairo-stroke-style.c | 1=20 src/cairo-surface-fallback-private.h | 2=20 src/cairo-surface-fallback.c | 145 - src/cairo-surface.c | 461 +++-- src/cairo-svg-surface.c | 770 +++++---- src/cairo-svg-test.h | 20=20 src/cairo-svg.h | 9=20 src/cairo-traps.c | 51=20 src/cairo-type1-subset.c | 1040 ++++++++++++ src/cairo-unicode.c | 39=20 src/cairo-wideint-private.h | 11=20 src/cairo-wideint.c | 18=20 src/cairo-win32-font.c | 196 +- src/cairo-win32-private.h | 11=20 src/cairo-win32-surface.c | 299 ++- src/cairo-win32.h | 3=20 src/cairo-xcb-surface.c | 108 - src/cairo-xlib-private.h | 4=20 src/cairo-xlib-screen.c | 32=20 src/cairo-xlib-surface.c | 698 ++++---- src/cairo-xlib-test.h | 3=20 src/cairo-xlib-xrender.h | 1=20 src/cairo-xlib.h | 1=20 src/cairo.c | 246 +- src/cairo.h | 61=20 src/cairoint.h | 182 +- src/test-fallback-surface.c | 17=20 src/test-meta-surface.c | 9=20 src/test-paginated-surface.c | 5=20 test/.gitignore | 10=20 test/Makefile.am | 31=20 test/buffer-diff.c | 3=20 test/buffer-diff.h | 4=20 test/cairo-test-directfb.c | 20=20 test/cairo-test.c | 80=20 test/cairo-test.h | 5=20 test/caps-joins.c | 2=20 test/clip-all.c | 2=20 test/clip-nesting.c | 4=20 test/clip-operator.c | 14=20 test/dash-offset-negative.c | 8=20 test/dash-scale-ps-argb32-ref.png |binary test/dash-scale-ref.png |binary test/dash-scale.c | 125 + test/device-offset-ref.png |binary test/device-offset-rgb24-ref.png |binary test/device-offset.c | 87 + test/fallback-resolution.c | 178 ++ test/fill-and-stroke-alpha-svg-argb32-ref.png |binary test/fill-and-stroke-alpha-svg-rgb24-ref.png |binary test/fill-and-stroke.c | 2=20 test/filter-nearest-offset.c | 2=20 test/font-face-get-type.c | 4=20 test/ft-text-vertical-layout-pdf-argb32-ref.png |binary test/ft-text-vertical-layout-pdf-rgb24-ref.png |binary test/ft-text-vertical-layout-ps-argb32-ref.png |binary test/ft-text-vertical-layout-ps-rgb24-ref.png |binary test/ft-text-vertical-layout-ref.png |binary test/ft-text-vertical-layout-rgb24-ref.png |binary test/ft-text-vertical-layout-svg-argb32-ref.png |binary test/ft-text-vertical-layout-svg-rgb24-ref.png |binary test/ft-text-vertical-layout.c | 131 + test/get-and-set.c | 2=20 test/get-group-target-ref.png |binary test/get-group-target.c | 90 + test/gradient-alpha-ref.png |binary test/gradient-alpha-rgb24-ref.png |binary test/gradient-alpha.c | 2=20 test/imagediff.c | 4=20 test/line-width-scale-ps-argb32-ref.png |binary test/line-width-scale-ref.png |binary test/line-width-scale.c | 30=20 test/linear-gradient-ref.png |binary test/linear-gradient.c | 8=20 test/mask-ref.png |binary test/mask-rgb24-ref.png |binary test/mask.c | 8=20 test/operator-clear.c | 16=20 test/operator-source-ref.png |binary test/operator-source-rgb24-ref.png |binary test/operator-source.c | 18=20 test/pdf-features.c | 4=20 test/pdf2png.c | 39=20 test/pixman-rotate-rgb24-ref.png |binary test/pixman-rotate-svg-argb32-ref.png |binary test/pixman-rotate-svg-rgb24-ref.png |binary test/ps-features.c | 2=20 test/pthread-show-text.c | 2=20 test/push-group-ref.png |binary test/push-group-rgb24-ref.png |binary test/push-group.c | 2=20 test/read-png.c | 1=20 test/rectangle-rounding-error.c | 10=20 test/rel-path.c | 4=20 test/select-font-face-pdf-argb32-ref.png |binary test/select-font-face-ps-argb32-ref.png |binary test/select-font-face-ref.png |binary test/select-font-face-svg-argb32-ref.png |binary test/select-font-face-svg-rgb24-ref.png |binary test/select-font-face.c | 83=20 test/self-copy.c | 6=20 test/show-text-current-point-pdf-argb32-ref.png |binary test/show-text-current-point-ps-argb32-ref.png |binary test/source-clip.c | 2=20 test/surface-finish-twice.c | 1=20 test/surface-pattern.c | 2=20 test/svg-clip.c | 2=20 test/text-antialias-gray-pdf-argb32-ref.png |binary test/text-antialias-gray-ps-argb32-ref.png |binary test/text-antialias-none-pdf-argb32-ref.png |binary test/text-antialias-none-ps-argb32-ref.png |binary test/text-antialias-subpixel-pdf-argb32-ref.png |binary test/text-antialias-subpixel-ps-argb32-ref.png |binary test/text-cache-crash.c | 1=20 test/text-pattern-ref.png |binary test/text-pattern-rgb24-ref.png |binary test/text-pattern.c | 10=20 test/text-rotate.c | 2=20 test/transforms.c | 2=20 test/trap-clip-ref.png |binary test/trap-clip-rgb24-ref.png |binary test/trap-clip.c | 4=20 test/unbounded-operator.c | 16=20 test/user-data.c | 2=20 test/write-png.c | 4=20 test/xlib-surface.c | 20=20 test/xmalloc.c | 1=20 test/zero-alpha-ref.png |binary test/zero-alpha.c | 97 + 235 files changed, 8579 insertions(+), 4836 deletions(-) --pgp-sign-Multipart_Wed_Jun_14_09:01:49_2006-1 Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEkDL06JDdNq8qSWgRAlbkAJ92YIDTUafsLa/U2ZTiKZ9zO0WmFgCfc252 2Y2uyD4rr4R2jx+43617QZk= =vX2e -----END PGP SIGNATURE----- --pgp-sign-Multipart_Wed_Jun_14_09:01:49_2006-1-- From janina@opera.rednote.net Wed Jun 14 12:12:42 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 912A73B029F for ; Wed, 14 Jun 2006 12:12:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19357-07 for ; Wed, 14 Jun 2006 12:12:39 -0400 (EDT) Received: from opera.rednote.net (opera.rednote.net [70.84.142.212]) by menubar.gnome.org (Postfix) with ESMTP id ED02F3B0281 for ; Wed, 14 Jun 2006 12:12:38 -0400 (EDT) Received: from opera.rednote.net (localhost.localdomain [127.0.0.1]) by opera.rednote.net (8.13.6/8.13.5) with ESMTP id k5EGAtdS007700; Wed, 14 Jun 2006 16:10:55 GMT Received: (from janina@localhost) by opera.rednote.net (8.13.6/8.13.6/Submit) id k5EGAtD9007699; Wed, 14 Jun 2006 12:10:55 -0400 Date: Wed, 14 Jun 2006 12:10:55 -0400 From: Janina Sajka To: parente@cs.unc.edu Subject: Re: lsr-0.2.1 Message-ID: <20060614161055.GV2259@rednote.net> References: <5308fd2c0606120606p43b30477o4e73cfad155dcaa7@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5308fd2c0606120606p43b30477o4e73cfad155dcaa7@mail.gmail.com> User-Agent: Mutt/1.4.2.1i X-Operating-System: Linux opera.rednote.net 2.6.16-1.2122_FC5spksmp Organization: Capital Accessibility LLC (http://www.CapitalAccessibility.com) X-PGP-Key: http://www.CapitalAccessibility.com/JaninaSajka_gpg_key.html X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.568 tagged_above=-999 required=2 tests=[AWL=0.031, BAYES_00=-2.599] X-Spam-Score: -2.568 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 12:46:56 -0400 Cc: gnome-announce-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 16:12:42 -0000 Peter Parente writes: > ============== > * What is it ? > ============== > > Linux Screen Reader (LSR) is an extensible assistive technology for people > with > disabilities. The design philosophy behind LSR is to provide a core platform > that enables the development of LSR extensions for improving desktop > application accessibility and usability and shields extension developers > from > the intricacies of the desktop accessibility architecture. > snip snip Where can I get it ? rpm packages for Fedora Core 5 available from: ftp://SpeakupModified.Org/fedora/rednote/ The binary is under RPMS, and the source under SRPMS as usual with Fedora. Special Note: You may need to upgrade your Gnome Desktop to Fedora Development. If you find things not working with the current release and updated Gnome environment, try: yum --disablerepo='*' --enablerepo=development groupupdate 'GNOME Desktop Environment' Note the above command is issued on one line, though it's probably been broken into at least two lines in this email message. -- Janina Sajka Phone: +1.240.715.1272 Partner, Capital Accessibility LLC http://CapitalAccessibility.Com Marketing the Owasys 22C talking screenless cell phone in the U.S. and Canada--Go to http://ScreenlessPhone.Com to learn more. Chair, Accessibility Workgroup Free Standards Group (FSG) janina@freestandards.org http://a11y.org From janina@opera.rednote.net Wed Jun 14 12:17:56 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 08CF33B0156; Wed, 14 Jun 2006 12:17:56 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28336-10; Wed, 14 Jun 2006 12:17:54 -0400 (EDT) Received: from opera.rednote.net (opera.rednote.net [70.84.142.212]) by menubar.gnome.org (Postfix) with ESMTP id 2375F3B03DA; Wed, 14 Jun 2006 12:17:54 -0400 (EDT) Received: from opera.rednote.net (localhost.localdomain [127.0.0.1]) by opera.rednote.net (8.13.6/8.13.5) with ESMTP id k5EGH5iU007764; Wed, 14 Jun 2006 16:17:05 GMT Received: (from janina@localhost) by opera.rednote.net (8.13.6/8.13.6/Submit) id k5EGH5N6007763; Wed, 14 Jun 2006 12:17:05 -0400 Date: Wed, 14 Jun 2006 12:17:05 -0400 From: Janina Sajka To: Willie Walker Subject: Re: Announcing Orca 0.2.5 rpms Message-ID: <20060614161705.GW2259@rednote.net> References: <1150069937.5071.4.camel@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1150069937.5071.4.camel@localhost> User-Agent: Mutt/1.4.2.1i X-Operating-System: Linux opera.rednote.net 2.6.16-1.2122_FC5spksmp Organization: Capital Accessibility LLC (http://www.CapitalAccessibility.com) X-PGP-Key: http://www.CapitalAccessibility.com/JaninaSajka_gpg_key.html X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.569 tagged_above=-999 required=2 tests=[AWL=0.030, BAYES_00=-2.599] X-Spam-Score: -2.569 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 12:47:08 -0400 Cc: gnome-announce-list@gnome.org, gnome-accessibility-list@gnome.org, orca-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 16:17:56 -0000 rpm packages of Orca-0.2.5 for Fedora Core 5 are now available from: ftp://SpeakupModified.Org/fedora/rednote/ The binary is under RPMS, and the source under SRPMS as usual with Fedora. Installation There is yet some unresolved dependency issue with these rpms, so they probably will need to be installed using the --nodeps option as follows: rpm -Uv --nodeps orca-0.2.5-1.i386.rpm However, I can attest the resulting installation works for me on two different systems. I have first run: orca -t from the console, as the same user I am in the gui desktop. Once on the desktop, I have issued Alt-F2 and typed: orca -t again to get things started. Seems wrong, but is working for me on two systems. Special Note: You may need to upgrade your Gnome Desktop to Fedora Development. If you find things not working with the current release and updated Gnome environment, try: yum --disablerepo='*' --enablerepo=development groupupdate 'GNOME Desktop Environment' Note the above command is issued on one line, though it's probably been broken into at least two lines in this email message. -- Janina Sajka Phone: +1.240.715.1272 Partner, Capital Accessibility LLC http://CapitalAccessibility.Com Marketing the Owasys 22C talking screenless cell phone in the U.S. and Canada--Go to http://ScreenlessPhone.Com to learn more. Chair, Accessibility Workgroup Free Standards Group (FSG) janina@freestandards.org http://a11y.org From ross@golder.org Thu Jun 15 07:48:01 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D826D3B007D for ; Thu, 15 Jun 2006 07:48:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03520-09 for ; Thu, 15 Jun 2006 07:47:53 -0400 (EDT) Received: from black.golder.org (black.golder.org [81.6.249.35]) by menubar.gnome.org (Postfix) with ESMTP id BFA543B009A for ; Thu, 15 Jun 2006 07:47:49 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by black.golder.org (Postfix) with ESMTP id 6BF4B40AB; Thu, 15 Jun 2006 12:47:48 +0100 (BST) X-Virus-Scanned: amavisd-new at golder.org Received: from black.golder.org ([127.0.0.1]) by localhost (black.golder.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id H-Yje6ok1oMb; Thu, 15 Jun 2006 12:47:45 +0100 (BST) Received: from red (unknown [125.24.64.59]) by black.golder.org (Postfix) with ESMTP id B12633FE2; Thu, 15 Jun 2006 12:47:41 +0100 (BST) Subject: Subversion migration schedule (new cut-off is Fri 14 July) From: Ross Golder To: gnome-announce-list@gnome.org Content-Type: multipart/mixed; boundary="=-41kIj1JG8/E+h5tM2RXc" Date: Thu, 15 Jun 2006 18:47:06 +0700 Message-Id: <1150372026.9754.1.camel@red> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.519 tagged_above=-999 required=2 tests=[AWL=0.080, BAYES_00=-2.599] X-Spam-Score: -2.519 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 07:51:43 -0400 Cc: devel-announce@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 11:48:02 -0000 --=-41kIj1JG8/E+h5tM2RXc Content-Type: text/plain Content-Transfer-Encoding: 7bit As per below, it was decided that 23rd June was too soon before GUADEC, so the new cut-off date has been put back to 14th July. Regards, -- Ross --=-41kIj1JG8/E+h5tM2RXc Content-Disposition: inline Content-Description: Forwarded message - Re: Subversion migration schedule (new cut-off Fri 14 July?) Content-Type: message/rfc822 Return-Path: Received: from black.golder.org ([unix socket]) by black.golder.org (Cyrus v2.3.1-Invoca-RPM-2.3.1-2.6.fc5) with LMTPA; Fri, 02 Jun 2006 14:59:52 +0100 X-Sieve: CMU Sieve 2.3 Received: from localhost (localhost.localdomain [127.0.0.1]) by black.golder.org (Postfix) with ESMTP id 621804A93 for ; Fri, 2 Jun 2006 14:59:52 +0100 (BST) X-Virus-Scanned: amavisd-new at golder.org X-Spam-Score: 0.466 X-Spam-Level: X-Spam-Status: No, score=0.466 tagged_above=-99 required=2.5 tests=[AWL=0.466] Received: from black.golder.org ([127.0.0.1]) by localhost (black.golder.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 9MLIDaDvOs4S for ; Fri, 2 Jun 2006 14:59:49 +0100 (BST) Received: from menubar.gnome.org (menubar.gnome.org [209.132.176.177]) by black.golder.org (Postfix) with ESMTP id 570164A91 for ; Fri, 2 Jun 2006 14:59:48 +0100 (BST) Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 58DFF3B04AD; Fri, 2 Jun 2006 09:59:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30643-08; Fri, 2 Jun 2006 09:59:44 -0400 (EDT) Received: from menubar.gnome.org (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0CDFA3B0480; Fri, 2 Jun 2006 09:59:44 -0400 (EDT) X-Original-To: gnome-hackers@gnome.org Delivered-To: gnome-hackers@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 44C613B0480 for ; Fri, 2 Jun 2006 09:59:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30672-06 for ; Fri, 2 Jun 2006 09:59:41 -0400 (EDT) Received: from localhost.localdomain (unknown [125.25.17.26]) by menubar.gnome.org (Postfix) with ESMTP id 7067E3B0468 for ; Fri, 2 Jun 2006 09:59:39 -0400 (EDT) Received: by localhost.localdomain (Postfix, from userid 500) id 80BC09FC5E; Fri, 2 Jun 2006 20:59:23 +0700 (ICT) From: Ross Golder To: Jeff Waugh In-Reply-To: <20060601132052.GF5203@waugh.id.au> References: <1139648664.6627.40.camel@localhost> <1148971293.12902.2.camel@red> <20060601132052.GF5203@waugh.id.au> Content-Type: text/plain Date: Fri, 02 Jun 2006 20:59:23 +0700 Message-Id: <1149256763.6298.18.camel@red> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org Cc: gnome-hackers@gnome.org Subject: Re: Subversion migration schedule (new cut-off Fri 14 July?) X-BeenThere: gnome-hackers@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Hacking GNOME discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: gnome-hackers-bounces@gnome.org Errors-To: gnome-hackers-bounces@gnome.org X-Virus-Scanned: by amavisd-new at gnome.org Content-Transfer-Encoding: 7bit On Thu, 2006-06-01 at 23:20 +1000, Jeff Waugh wrote: > > > > As the various show-stoppers that prevented our previously scheduled > > migration from going ahead have now been resolved, I am proposing that the > > new migration go ahead at 23:59UTC on Friday 16th June 2006. Please let us > > know a.s.a.p if that will be inconvenient for anyone. > > Ross, > > Can I suggest that we do the migration after GUADEC? I think it would be > more useful for us to have reliable and known access to CVS through the week > than be dealing with post-migration woes (as clean as it will be, there will > be some hassles for everyone). > > Thanks, > > - Jeff > How about this - I'll run another test migration on the 23rd, but won't actually make the switch. At least then, if anyone at GUADEC wants to play with or demonstrate anything related to subversion, at least they will get fairly up-to-date code. So, looking at the release schedule, it looks like the next best date would be July 14th. How would that be? -- Ross _______________________________________________ gnome-hackers mailing list gnome-hackers@gnome.org http://mail.gnome.org/mailman/listinfo/gnome-hackers --=-41kIj1JG8/E+h5tM2RXc-- From gjc@inescporto.pt Thu Jun 15 15:10:39 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7C99F3B02BF for ; Thu, 15 Jun 2006 15:10:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 29070-01 for ; Thu, 15 Jun 2006 15:10:36 -0400 (EDT) Received: from animal.inescn.pt (correio.inescn.pt [194.117.24.9]) by menubar.gnome.org (Postfix) with ESMTP id 5CEBB3B016C for ; Thu, 15 Jun 2006 15:10:35 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by animal.inescn.pt (8.13.6/8.13.6/7) with ESMTP id k5FJ9a1H007835; Thu, 15 Jun 2006 20:09:36 +0100 (WEST) Received: from pong.inescporto.pt (pong.inescn.pt [194.117.26.74]) by animal.inescn.pt (8.13.6/8.13.6/5) with ESMTP id k5FJ9PGj007812; Thu, 15 Jun 2006 20:09:25 +0100 (WEST) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by pong.inescporto.pt (Postfix) with ESMTP id 63C2A1303A8; Thu, 15 Jun 2006 20:06:19 +0100 (WEST) Subject: ANNOUNCE: PyGTK 2.9.2 (unstable) From: "Gustavo J. A. M. Carneiro" To: PyGTK Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-RzvsD9ggP/SFbL+MHSSy" Date: Thu, 15 Jun 2006 20:09:24 +0100 Message-Id: <1150398564.5933.27.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at inescporto.pt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.428 tagged_above=-999 required=2 tests=[AWL=0.037, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.428 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 23:27:04 -0400 Cc: gnome-announce-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 19:10:39 -0000 --=-RzvsD9ggP/SFbL+MHSSy Content-Type: text/plain Content-Transfer-Encoding: quoted-printable I am pleased to announce version 2.9.2 of the Python bindings for GTK. The new release is available from ftp.gnome.org and its mirrors as soon as its synced correctly: http://ftp.gnome.org/pub/GNOME/sources/pygtk/2.9/ This is an unstable release and should be used with caution. It requires either GTK+ 2.8.x or GTK+ >=3D 2.9.3. Blurb: GTK is a toolkit for developing graphical applications that run on systems such as Linux, Windows and MacOS X. It provides a comprehensive set of GUI widgets, can display Unicode bidi text. It links into the Gnome Accessibility Framework through the ATK library. PyGTK provides a convenient wrapper for the GTK+ library for use in Python programs, and takes care of many of the boring details such as managing memory and type casting. When combined with PyORBit and gnome-python, it can be used to write full featured Gnome applications. Like the GTK+ library itself PyGTK is licensed under the GNU LGPL, so is suitable for use in both free software and proprietary applications. It is already in use in many applications ranging from small single purpose scripts up to large full features applications. pygtk-2.9.2 15-june-2006 - Fix a codegen bug that prevent build of other extensions (344845, Gus= tavo) - Builds with pycairo 1.1.6 (344957, Gustavo) - gtk.TextBuffer rich text copy and serialization (Finlay) - Correct Print Editor example (Gustavo) PyGTK requires GTK+ >=3D 2.8.0 and Python >=3D 2.3.5 to build. Bug reports, as always, should go to Bugzilla; check out http://pygtk.org/developer.html and http://pygtk.org/feedback.html for links to posting and querying bug reports for PyGTK. --=20 Gustavo J. A. M. Carneiro The universe is always one step beyond logic=09 --=-RzvsD9ggP/SFbL+MHSSy Content-Type: application/pgp-signature; name=signature.asc Content-Description: Esta =?ISO-8859-1?Q?=E9?= uma parte de mensagem assinada digitalmente -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (GNU/Linux) iD8DBQBEkbBk2XoHyMdS6TARAjgIAJ4upHdWvOey6x3eV21Ji6P58K+OhgCdGstN wEORPp04QwWKfmDGW0Dum/g= =Suqv -----END PGP SIGNATURE----- --=-RzvsD9ggP/SFbL+MHSSy-- From johnp@redhat.com Thu Jun 15 16:50:59 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8557E3B01FF; Thu, 15 Jun 2006 16:50:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00479-04; Thu, 15 Jun 2006 16:50:58 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 798313B00D0; Thu, 15 Jun 2006 16:50:58 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5FKndP2000921; Thu, 15 Jun 2006 16:49:39 -0400 Received: from lacrosse.corp.redhat.com (lacrosse.corp.redhat.com [172.16.52.154]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5FKnYTU014072; Thu, 15 Jun 2006 16:49:34 -0400 Received: from [172.16.80.35] (remedyz.boston.redhat.com [172.16.80.35]) by lacrosse.corp.redhat.com (8.12.11.20060308/8.11.6) with ESMTP id k5FKnYad010638; Thu, 15 Jun 2006 16:49:34 -0400 Subject: GNOME 2.15.3 Development Release From: "John (J5) Palmieri" To: devel-announce-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Date: Thu, 15 Jun 2006 16:49:34 -0400 Message-Id: <1150404574.5271.18.camel@remedyz.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.3 (2.7.3-2) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.449 tagged_above=-999 required=2 tests=[AWL=-0.079, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_GT=0.077, TW_JH=0.077, TW_YG=0.077] X-Spam-Score: -2.449 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 23:27:04 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 20:50:59 -0000 GNOME 2.15.3 Development Release ================================ It is that time again. Time to get it, time to build it and time to test it. The GNOME Release Team is proud to present the 2.15.3 development release. This is our third development release on our road towards GNOME 2.16.0, which will be released in September 2006. So go download it. Go compile it. Go test it. And go hack on it, document it, translate it, fix it. Note that gnome-applets, deskbar-applet and pygtk all need patches which can be found here gnome-applets: http://download.gnome.org/teams/releng/2.15.3/gswitchit.patch deskbar-applet: http://download.gnome.org/teams/releng/2.15.3/CuemiacPopupEntry.py.patch pygtk: http://download.gnome.org/teams/releng/2.15.3/defsparser.py.patch To compile GNOME 2.15.3, you can use GARNOME (will be released soon), or the jhbuild modulesets available at: http://download.gnome.org/teams/releng/2.15.3/ The release notes that describe the changes between 2.15.2 and 2.15.3 are available. Go read them to learn all the goodness of this release: platform - http://download.gnome.org/platform/2.15/2.15.3/NEWS desktop - http://download.gnome.org/desktop/2.15/2.15.3/NEWS admin - http://download.gnome.org/admin/2.15/2.15.3/NEWS bindings - http://download.gnome.org/bindings/2.15/2.15.3/NEWS Here are some figures about this release: admin 2.15.3 statistics: tar.gz: 792K total tar.bz2: 616K total bindings 2.15.3 statistics: tar.gz: 21M total tar.bz2: 15M total desktop 2.15.3 statistics: tar.gz: 156M total tar.bz2: 114M total platform 2.15.3 statistics: tar.gz: 53M total tar.bz2: 37M total The GNOME 2.15.3 release is available here: platform sources - http://download.gnome.org/platform/2.15/2.15.3/ desktop sources - http://download.gnome.org/desktop/2.15/2.15.3/ admin sources - http://download.gnome.org/admin/2.15/2.15.3/ bindings sources - http://download.gnome.org/bindings/2.15/2.15.3/ WARNING! WARNING! WARNING! -------------------------- This release is a snapshot of development code. Although it is buildable and usable, it is primarily intended for testing and hacking purposes. GNOME uses odd minor version numbers to indicate development status. For more informations about 2.15, the full schedule, the official module lists and the proposed modules list, please see our shiny 2.15 page: http://www.gnome.org/start/unstable/ We hope you'll love it, The GNOME Release Team -- John (J5) Palmieri From guenther@rudersport.de Thu Jun 15 17:06:31 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1F0DB3B0237; Thu, 15 Jun 2006 17:06:31 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00750-05; Thu, 15 Jun 2006 17:06:30 -0400 (EDT) Received: from rudersport.de (rudersport.de [192.220.91.203]) by menubar.gnome.org (Postfix) with ESMTP id 427033B00D0; Thu, 15 Jun 2006 17:06:30 -0400 (EDT) Received: from [10.0.0.2] (IP-213157009217.dialin.heagmedianet.de [213.157.9.217]) by rudersport.de (8.12.11.20060308) id k5FL5jDY040713; Thu, 15 Jun 2006 15:05:46 -0600 (MDT) Subject: [ANNOUNCE] GARNOME 2.15.3 From: guenther To: garnome-list@gnome.org Content-Type: text/plain Date: Thu, 15 Jun 2006 23:05:43 +0200 Message-Id: <1150405543.8323.15.camel@monkey.loc> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.053 tagged_above=-999 required=2 tests=[AWL=-0.451, BAYES_00=-2.599, SUBJ_ALL_CAPS=0.997] X-Spam-Score: -2.053 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 23:27:04 -0400 Cc: gnome-announce-list@gnome.org, gnome-love@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 21:06:31 -0000 GARNOME 2.15.3 ============== The "It's quiet out there... Yes... Too quiet..." release. What seemed to be no last minute releases turned out to be a broken list server, holding back the official GNOME release for a day. Also, there have been a bunch of build issues this time around, more than usual. Some good cooperation between the Release Team and the GARNOME Team (especially Joseph) hacked around the brokeness, thus... We are pleased to announce the release of GARNOME 2.15.3 Desktop and Developer Platform. This release includes all of GNOME 2.15.3 plus a whole bunch of updates that were released after the GNOME freeze date. This is the third release in the unstable cycle, with more features, more fixes and yet more madness added. It is for anyone who wants to get his hands dirty on the development branch, or who'd like to get a peek at future features. If you want to help spot issues in GARNOME, (or, better yet, fix 'em ;-) this release is for you as well. As usual, you can get the tarball directly from the gnome.org site: http://download.gnome.org/sources/garnome/2.15/ Note: GNOME 2.15.x is an unstable branch and is assumed to be a moving target. Therefore, things in this release may not work as advertised. If you find any issues with this release, feel free to contact the GARNOMEies in the #garnome channel on GIMPNet (irc://irc.gnome.org), where we hang out, or post to the mailing list. More information is available at our project website: http://www.gnome.org/projects/garnome/ Enjoy, The GARNOME Team -- char *t="\10pse\0r\0dtu\0.@ghno\x4e\xc8\x79\xf4\xab\x51\x8a\x10\xf4\xf4\xc4"; main(){ char h,m=h=*t++,*x=t+2*h,c,i,l=*x,s=0; for (i=0;i>=1)||!t[s+h]){ putchar(t[s]);h=m;s=0; }}} From behdad.esfahbod@gmail.com Thu Jun 15 17:39:14 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 21DF83B0232 for ; Thu, 15 Jun 2006 17:39:14 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02006-04 for ; Thu, 15 Jun 2006 17:39:13 -0400 (EDT) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.237]) by menubar.gnome.org (Postfix) with ESMTP id 17AEE3B0007 for ; Thu, 15 Jun 2006 17:39:13 -0400 (EDT) Received: by wr-out-0506.google.com with SMTP id 37so427823wra for ; Thu, 15 Jun 2006 14:38:12 -0700 (PDT) Received: by 10.54.108.13 with SMTP id g13mr2187733wrc; Thu, 15 Jun 2006 14:38:11 -0700 (PDT) Received: from ?192.168.190.5? ( [72.136.156.47]) by mx.gmail.com with ESMTP id 6sm1544376wrl.2006.06.15.14.38.10; Thu, 15 Jun 2006 14:38:11 -0700 (PDT) Subject: Women's Summer Outreach Program 2006 From: Behdad Esfahbod To: gnome-hackers@gnome.org, foundation-list@gnome.org, foundation-announce@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Date: Thu, 15 Jun 2006 17:38:06 -0400 Message-Id: <1150407487.29623.12.camel@home> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 (2.6.1-1.fc5.2) Content-Transfer-Encoding: 7bit Sender: Behdad Esfahbod X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.6 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.6 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 23:27:04 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 21:39:14 -0000 GNOME to Sponsor Female Developers in a Summer Outreach Program BOSTON, Mass - June 13, 2006 - The GNOME Foundation is offering USD$9000 to female students in order to promote the participation of women in GNOME-related development. The money originates from GNOME's participation in the Google "Summer of Code" program (code.google.com/soc/), for which GNOME developers will mentor 20 students working throughout the northern summer on GNOME-related projects. This year GNOME received 181 applications to Google's program, yet none were from women. The GNOME Foundation has therefore chosen to reinvest Google's contribution into a new program designed to increase the participation of women in GNOME. The program has no official relationship with Google. "Free software prides itself on being open to anyone with a good idea, yet less than 2% of free software developers are female. We, as a community, need to be actively working to change this statistic, and programs like this one are a much needed step in the right direction." said Hanna Wallach, a GNOME developer who is involved in several projects that encourage women to participate in free software development. The Women's Summer Outreach Program is currently accepting applications from female students. Accepted students will receive a stipend of USD $3000 over a two month period. A pool of project ideas is provided at www.gnome.org/projects/wsop/, though original proposals are also encouraged. Projects may either be related to GNOME directly, or indirectly via projects such as Gstreamer and Abiword. Each student will be assigned a mentor to provide guidance throughout the program. Vincent Untz, member of the GNOME Foundation board and coordinator of the GNOME team for Google's "Summer of Code" program, explained: "Many women have the skills required to contribute to Free Software projects like GNOME, but may not see an opportunity to start working with us. By initiating this program, not only do we want to highlight the issue, but we also hope that this opportunity will help more women to get involved in the long term." Applications should be submitted using the form at www.gnome.org/projects/wsop/. More information about the application process may be found at the same location. From cworth@cworth.org Fri Jun 16 13:14:11 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7C02B3B0125 for ; Fri, 16 Jun 2006 13:14:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07413-02 for ; Fri, 16 Jun 2006 13:14:09 -0400 (EDT) Received: from theworths.org (cworth.org [217.160.249.188]) by menubar.gnome.org (Postfix) with ESMTP id B2BA33B0128 for ; Fri, 16 Jun 2006 13:14:08 -0400 (EDT) Received: (qmail 6134 invoked from network); 16 Jun 2006 13:13:38 -0400 Received: from localhost (HELO raht.cworth.org) (127.0.0.1) by localhost with SMTP; 16 Jun 2006 13:13:38 -0400 Date: Fri, 16 Jun 2006 10:08:58 -0700 Message-ID: <878xnxc9jp.wl%cworth@cworth.org> From: Carl Worth To: cairo-announce@cairographics.org Subject: cairo snapshot 1.1.10 now available User-Agent: Wanderlust/2.14.0 (Africa) Emacs/21.4 Mule/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: multipart/signed; boundary="pgp-sign-Multipart_Fri_Jun_16_10:08:52_2006-1"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.4 tagged_above=-999 required=2 tests=[AWL=-0.090, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, TW_BX=0.077, TW_IB=0.077] X-Spam-Score: -2.4 X-Spam-Level: X-Mailman-Approved-At: Sat, 17 Jun 2006 00:52:39 -0400 Cc: gnome-announce-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2006 17:14:11 -0000 --pgp-sign-Multipart_Fri_Jun_16_10:08:52_2006-1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable A new cairo snapshot 1.1.10 is now available from: http://cairographics.org/snapshots/cairo-1.1.10.tar.gz which can be verified with: http://cairographics.org/snapshots/cairo-1.1.10.tar.gz.sha1 709d48dbcd0ac806e4f7bfd1f69314e4dfb57329 cairo-1.1.10.tar.gz http://cairographics.org/snapshots/cairo-1.1.10.tar.gz.sha1.asc (signed by Carl Worth) Additionally, a git clone of the source tree: git clone git://git.cairographics.org/git/cairo will include a signed 1.1.10 tag which points to a commit named: 65e73c81b83222de873935cf384e514ea20ac854 which can be verified with: git verify-tag 1.1.10 and can be checked out with a command such as: git checkout -b build 1.1.10 This is the fifth in a series of snapshots working toward the 1.2 release of cairo. The primary motivation for this snapshot is to fix a long-standing bug that had long been silent, but as of the 1.1.8 snapshot started causing crashes when run against 16-bit depth X servers, (often Xvnc or Xnest). The fix for this adds a new CAIRO_FORMAT_RGB16_565 to the API. This snapshot also includes a rewrite of cairo's SVG backend to eliminate the dependency on libxml2. With this in place, cairo 1.2 will not depend on any libraries that cairo 1.0 did not. As usual, there are also a few fixes for minor bugs. What is cairo =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Cairo is a 2D graphics library with support for multiple output devices. Currently supported output targets include the X Window System, win32, and image buffers. Experimental backends include OpenGL (through glitz), Quartz, XCB, PostScript and PDF file output. Cairo is designed to produce consistent output on all output media while taking advantage of display hardware acceleration when available (for example, through the X Render Extension). The cairo API provides operations similar to the drawing operators of PostScript and PDF. Operations in cairo including stroking and filling cubic B=E9zier splines, transforming and compositing translucent images, and antialiased text rendering. All drawing operations can be transformed by any affine transformation (scale, rotation, shear, etc.). Cairo has been designed to let you draw anything you want in a modern 2D graphical user interface. At the same time, the cairo API has been designed to be as fun and easy to learn as possible. If you're not having fun while programming with cairo, then we have failed somewhere---let us know and we'll try to fix it next time around. Cairo is free software and is available to be redistributed and/or modified under the terms of either the GNU Lesser General Public License (LGPL) version 2.1 or the Mozilla Public License (MPL) version 1.1. Where to get more information about cairo =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D The primary source of information about cairo is: http://cairographics.org/ The latest releases of cairo can be found at: http://cairographics.org/releases Snapshots of in-development versions of cairo: http://cairographics.org/snapshots The programming manual for using cairo: http://cairographics.org/manual Mailing lists for contacting cairo users and developers: http://cairographics.org/lists Answers to some frequently asked questions about cairo: http://cairographics.org/FAQ Detailed list of changes since 1.1.8 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Tag '1.1.10' created by Carl Worth at 2006-06-16 17:53 = -0700 cairo 1.1.10 snapshot -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEkuIi6JDdNq8qSWgRArhnAJ4hDlfpnWYY9bj0NVs7ZMl+XKsaXwCffRLz HMhowJx6or+LK99tRtZO5YM=3D =3DAsAw -----END PGP SIGNATURE----- Changes since 1.1.8: Behdad Esfahbod: Use enum time instead of int (shuts intel compiler up.) Merge branch 'cairo' into cairo-origin Carl Worth: Increment CAIRO_VERSION to 1.1.9 after making the 1.1.8 snapshot _cairo_format_from_pixman_format: Add useful error mesage and asserti= on when failing. Remove _cairo_image_surface_is_alpha_only in favor of just looking at= content value. Drop _cairo_surface_is_opaque now that we have cairo_surface_get_cont= ent Add missing breaks in switch statement. New API: Add support for new CAIRO_FORMAT_RGB16_565 Update release rules in Makefile to add git signature information. Annoying doc template churn. Update version to 1.1.10 and add notes to NEWS file. Emmanuel Pacaud: SVG: Update of reference images. Jinghua Luo: xlib: free resources before return if looking up glyph surface fails. Kristian H=F8gsberg: Make cairo_output_stream_t an embeddable type. Convert the stdio output stream to use the new output stream interfac= e. Convert the word wrap stream, the base85 stream and the ps string str= eam. Add an in-memory output-stream implementation. Only run fallback-resolution test case when all of PDF, PS and SVG ar= e enabled. Rewrite SVG backend to just use cairo output stream instead of libxml= 2. Remove libxml2 checks from configure.in. Actually add src/cairo-output-stream-private.h. Merge branch 'svg-rewrite' Add test case for the PDF, PS and SVG stream constructors. Only call close function for output streams if it's non-NULL. Add cairo-output-stream-private.h to libcairo_la_SOURCES. Torsten Sch=F6nfeld: Add missing cairo_public tag for cairo_image_surface_get_stride --- Makefile.am | 25=20 NEWS | 17=20 RELEASING | 2=20 configure.in | 20=20 doc/public/tmpl/cairo-image.sgml | 1=20 pixman/src/icformat.c | 6=20 pixman/src/pixman.h | 3=20 pixman/src/pixregion.c | 2=20 src/Makefile.am | 1=20 src/cairo-base85-stream.c | 28=20 src/cairo-image-surface.c | 98 + src/cairo-output-stream-private.h | 156 ++ src/cairo-output-stream.c | 188 ++- src/cairo-pattern.c | 2=20 src/cairo-pdf-surface.c | 1=20 src/cairo-ps-surface.c | 45=20 src/cairo-surface.c | 37=20 src/cairo-svg-surface.c | 1170 ++++++++--------= ----- src/cairo-type1-subset.c | 1=20 src/cairo-xlib-surface.c | 2=20 src/cairo.h | 8=20 src/cairoint.h | 85 - test/Makefile.am | 10=20 test/create-for-stream.c | 218 +++ test/linear-gradient-svg-argb32-ref.png |binary test/linear-gradient-svg-rgb24-ref.png |binary test/mask-svg-argb32-ref.png |binary test/mask-svg-rgb24-ref.png |binary test/paint-source-alpha-svg-argb32-ref.png |binary test/paint-source-alpha-svg-rgb24-ref.png |binary test/paint-with-alpha-svg-argb32-ref.png |binary test/paint-with-alpha-svg-rgb24-ref.png |binary test/push-group-svg-argb32-ref.png |binary test/push-group-svg-rgb24-ref.png |binary test/scale-source-surface-paint-svg-argb32-ref.png |binary test/scale-source-surface-paint-svg-rgb24-ref.png |binary test/text-pattern-svg-argb32-ref.png |binary test/text-pattern-svg-rgb24-ref.png |binary test/trap-clip-svg-argb32-ref.png |binary test/trap-clip-svg-rgb24-ref.png |binary 40 files changed, 1171 insertions(+), 955 deletions(-) --pgp-sign-Multipart_Fri_Jun_16_10:08:52_2006-1 Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEkuWq6JDdNq8qSWgRAqI6AJ42+4WuUfwFtayn9C8dh+r/xTk4OACeMMgt Cdpk2ar//g0UaT0w77grJjc= =kUjC -----END PGP SIGNATURE----- --pgp-sign-Multipart_Fri_Jun_16_10:08:52_2006-1-- From doclivingston@gmail.com Sun Jun 18 02:45:17 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 001613B014D for ; Sun, 18 Jun 2006 02:45:17 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27928-05 for ; Sun, 18 Jun 2006 02:45:15 -0400 (EDT) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.179]) by menubar.gnome.org (Postfix) with ESMTP id C709D3B0158 for ; Sun, 18 Jun 2006 02:45:14 -0400 (EDT) Received: by py-out-1112.google.com with SMTP id c39so971442pyd for ; Sat, 17 Jun 2006 23:43:58 -0700 (PDT) Received: by 10.35.89.10 with SMTP id r10mr6756008pyl; Sat, 17 Jun 2006 23:43:58 -0700 (PDT) Received: from alyrion.local ( [144.134.102.218]) by mx.gmail.com with ESMTP id k13sm2076296pyf.2006.06.17.23.43.55; Sat, 17 Jun 2006 23:43:57 -0700 (PDT) Subject: Rhythmbox 0.9.5 From: "James \"Doc\" Livingston" To: Rhythmbox-devel list , gnome-announce-list@gnome.org Content-Type: text/plain; charset=UTF-8 Date: Sun, 18 Jun 2006 16:43:53 +1000 Message-Id: <1150613033.6027.23.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.53 tagged_above=-999 required=2 tests=[AWL=0.070, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.53 X-Spam-Level: X-Mailman-Approved-At: Sun, 18 Jun 2006 10:56:33 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: rhythmbox-devel@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 06:45:17 -0000 G'day Everyone, On behalf of the Rhythmbox developers, I'm proud to announce the sixth release of the Rhythmbox 0.9 series, which includes a large number of fixes, improvements and new features. Notable new features include: - Improved plugin support, and several features converted to plugins - An album art viewing and download plugin - A song lyric viewing and download plugin - Ogg Vorbis tag editing [0] - Partial iPod write support [1] - Improved audio player and DAAP support - CD ripping and track transfer enabled by default - Updated documentation and many, many more improvements, bug fixes and new minor features. See below for more details. [0] requires a GStreamer plugin not yet in cvs, see bug 335635 [1] off by default, pass --enable-ipod-writing to enable. * What is Rhythmbox ? ===================== Rhythmbox is an integrated music management application, originally inspired by Apple's iTunes. It is free software, designed to work well under the GNOME Desktop, and based on the powerful GStreamer media framework. * What's changed in 0.9.5 ? =========================== * fix icon themability (Steve Frécinaux) * handle iPods that have been repartitioned (Christophe Fergeau: 325034) * allow ipod renaming, ejection, deletion and transfer (Christophe Fergeau) * make iradio handling work much better (Jonathan Matthew: 320336, 324402) * improve out-of-process metadata loader (Jonathan Matthew: 338062) * update documentation (Baptiste Mille-Mathias, ) * pluginise iPod and Generic players (Christophe Fergeau, Jonathan Matthew) * support saving playlists as M3U (Gavin Stewart: 316295) * remember browser visibility when changing sources (Alex Lancaster: 118862) * handle media unmounts better (Jonathan Matthew: 339023) * make entry types be a structure, and add support for extended data, and various method implementations (Christophe Fergeau, James Livingston) * album art view&download plugin (Alex Lancaster, James Livingston, Gareth Murphy, William Jon McCann, Martin Szulecki) * update the FSF's address (Gunnar Steinn Magnusson) * much improved Python bindings (James Livingston, Jonathan Matthew) * fix some translation issues (Nguyễn Thái Ngọc Duy, James Livingston: 339380, 343081) * improve startup time (James Livingston, Jonathan Matthew) * fix audioscrobbler submission, and allow viewing of info (Jonathan Matthew: 325848) * improve DBus interface (Jonathan Matthew, Tim Moloney) * allow transcoding during track transfer (Alessandro Decina: 322268) * cd burning fixes and improvements (William Jon McCann) * podcast feed parsing and download fixes (James Livingston: 339728) * turn the playback backend into a full GObject interface (James Livingston: 338667) * add more API documentation (Jonathan Mattjew) * add vorbis tag editing (James Livingston: 339878) * fix various threading insanities (Jonathan Matthew) * display "child libraries" with multiple library locations (James Livingston: 100552) * improve drag-and-drop from browsers (Jonathan Matthew: 327540) * support Motorola ROKR phones (Joe Barnett) * make query model limits saner (Janes Livingston) * source cleanup and API improvement (James Livingston, Jonathan Matthew) * improve status feedback for DAAP (Jonathan Matthew: 322020 and 338978) * memory improvement and leak fixed (James Livingston, Jonathan Matthew) * kill Bonobo support, require DBus, support DBus 0.3.0 (Jonathan Matthew: 339720) * add lyric download and view plugin (Jonathan Matthew: 319320) * add "add to playlist" menu (James Livingston: 323364) * allow changing of audio cd metadata (James Livingston) * improve DAAP handling (William Jon McCann: 342643) * update and write new unit tests (James Livingston) * group sources (Jonathan Matthew) * add new "rhythmbox-client" program (Jonathan Matthew: 340863, 155763) * assorted build fixes (Brian Cameron, Paul Drain, Elijah Newren, Hendrik Richter, Ryan P Skadberg, Götz Waschk, Pawel Worach, FreeBSD GNOME project, others) * HIG and UI improvements (Dennis Cranston, Baptiste Mille-Mathias) * many other bug fixed (Christophe Fergeau, Jaap A. Haitsma, James Livingston, Jonathan Matthew, Mikael Olenfalk, Roozbeh Pournader) Updated Translations -------------------- ca Jordi Mallach cs Miloslav Trmac de Hendrik Richter es Francisco Javier F. Serrador fi Ilkka Tuohela gl Ignacio Casal Quinteiro lt Žygimantas Beručka nb Øivind Hoel, Kjartan Maraas nl Vincent van Adrighem, Wouter Bolsterlee sv Fredrik Tuomas vi Clytie Siddall zh_CN Funda Wang * Where can I get it ? ====================== Source code: http://ftp.gnome.org/pub/GNOME/sources/rhythmbox/0.9/rhythmbox-0.9.5.tar.gz [MD5 sum: 3cbce0fd5ed948e13dabe7be7b9353e9] http://ftp.gnome.org/pub/GNOME/sources/rhythmbox/0.9/rhythmbox-0.9.5.tar.bz2 [MD5 sum: ff55e1db114321b7bdd6e21df1879367] Home Page: http://www.rhythmbox.org/ James "Doc" Livingston From mclasen@redhat.com Tue Jun 20 11:22:11 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3B32C3B043F; Tue, 20 Jun 2006 11:22:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22457-09; Tue, 20 Jun 2006 11:22:09 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 71CF13B00E7; Tue, 20 Jun 2006 11:22:09 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5KFLLnL004523; Tue, 20 Jun 2006 11:21:21 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [172.16.76.12]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5KFLLNA016479; Tue, 20 Jun 2006 11:21:21 -0400 Received: from golem.boston.redhat.com (golem.boston.redhat.com [172.16.80.24]) by mail.boston.redhat.com (8.12.8/8.12.8) with ESMTP id k5KFLKdH032719; Tue, 20 Jun 2006 11:21:20 -0400 Subject: GLib 2.11.4 released From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-list@gnome.org, gtk-app-devel-list@gnome.org Content-Type: text/plain Date: Tue, 20 Jun 2006 11:21:20 -0400 Message-Id: <1150816880.15532.58.camel@golem.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.1 (2.7.1-1) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.543 tagged_above=-999 required=2 tests=[AWL=0.058, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.543 X-Spam-Level: X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2006 15:22:11 -0000 GLib 2.11.4 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.11/ http://ftp.gnome.org/pub/GNOME/sources/glib/2.11/ glib-2.11.4.tar.bz2 md5sum: 9d3a94baa4bfcd9a579b45eea6de3a8c glib-2.11.4.tar.gz md5sum: f7768bc7ed524c6b40cb87daccb6c2b2 This is a development release leading up to GLib 2.12. Notes: * This is unstable development release. While it has had a bit of testing, there are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GLib 2.10. If you have problems, you'll need to reinstall GLib 2.10. * GLib 2.12 will be source and binary compatible with the GLib 2.10.x series (for some caveats, see the README). At this point, the API additions in the 2.11.x series are finished. * Bugs should be reported to http://bugzilla.gnome.org. About GLib ========== GLib is the low-level core library that forms the basis for projects such as GTK+ and GNOME. It provides data structure handling for C, portability wrappers, and interfaces for such runtime functionality as an event loop, threads, dynamic loading, and an object system. More information about GLib is available at: http://www.gtk.org/ An installation guide for the GTK+ libraries, including GLib, can be found at: http://developer.gnome.org/doc/API/2.0/gtk/gtk-building.html Overview of Changes from GLib 2.11.3 to GLib 2.11.4 =================================================== * GBookmarkFile: - g_bookmark_file_remove_item returns a boolean * g_mkstemp accepts the XXXXXX in the middle of the template * Bugs fixed: 344868 g_key_file_to_data should separate groups * Updated translations (de,es,fr,gu,hi,ko,th) A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=344868 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Emmanuele Bassi, Christian Persch, Federico Mena Quintero Matthias Clasen June 20, 2006 From joeshaw@novell.com Mon Jun 19 16:10:21 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id ABD293B0D15 for ; Mon, 19 Jun 2006 16:10:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30318-02 for ; Mon, 19 Jun 2006 16:10:20 -0400 (EDT) Received: from peabody.ximian.com (peabody.ximian.com [130.57.169.10]) by menubar.gnome.org (Postfix) with ESMTP id C79993B084E for ; Mon, 19 Jun 2006 16:10:19 -0400 (EDT) Received: (qmail 29764 invoked from network); 19 Jun 2006 20:09:04 -0000 Received: from localhost (HELO posthaste.boston.ximian.com) (joe@127.0.0.1) by localhost with SMTP; 19 Jun 2006 20:09:04 -0000 Subject: ANNOUNCE: Beagle 0.2.7 From: Joe Shaw To: dashboard-hackers@gnome.org Content-Type: text/plain; charset=UTF-8 Date: Mon, 19 Jun 2006 16:08:58 -0400 Message-Id: <1150747738.21037.1.camel@posthaste.boston.ximian.com> Mime-Version: 1.0 X-Mailer: Evolution 2.6.0 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.362 tagged_above=-999 required=2 tests=[AWL=-0.194, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, TW_BG=0.077, TW_GT=0.077, TW_XD=0.077] X-Spam-Score: -2.362 X-Spam-Level: X-Mailman-Approved-At: Tue, 20 Jun 2006 11:54:51 -0400 Cc: gnome-announce-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jun 2006 20:10:21 -0000 Hi, I'm happy to announce the release of Beagle 0.2.7. This version fixes the dreaded "Lock obtain timed out" bug, includes a new SVG and marks the return of the CHM filter. It introduces a compressed text cache, so that the disk space needed to generate snippets is greatly reduced, and many more bug fixes. OUR MANY URLS ------------- To download the 0.2.7 tarball or learn more, visit the Beagle wiki at: http://www.beagle-project.org The latest gossip is available at: http://www.planetbeagle.org Nat Friedman made some cool movies that demonstrate Beagle in action: http://nat.org/demos We still talk about Beagle on the dashboard-hackers mailing list: http://mail.gnome.org/mailman/listinfo/dashboard-hackers Info on Beagle's participation in Google's Summer of Code can be found here: http://beagle-project.org/Summer_Of_Code WHAT IS BEAGLE? --------------- Beagle is a tool for indexing and searching your data. Beagle is improving rapidly on many fronts, and should work well enough for everyday use. The Beagle daemon transparently monitors your data and updates the index to reflect any changes. On an inotify-enabled system, these updates happen more-or-less in real time. So for example, * Files are immediately indexed when they are created, are re-indexed when they are modified, and are dropped from the index upon deletion. * E-mails are indexed upon arrival. * IM conversations are indexed as you chat, a line at a time. Beagle supports many different file formats including OpenOffice documents, Microsoft Word documents, PDFs, HTML files, and many image, audio and video formats. Beagle can extract information from your file system, Evolution and KMail mailboxes, Evolution calendars and addressbooks, Gaim and Kopete instant messenger conversations, several RSS aggregators, Tomboy notes, Konqueror browsing history, system documentation, and many others. Beagle also indexes tags on your photos from F-Spot and Digikam. Beagle also provides Firefox and Epiphany extensions that index web pages in real-time as the user visits them. Beagle uses the Lucene indexing system from the prodigious Doug Cutting. Beagle includes a GTK-based graphical tool for searching the index that the daemon creates. This application doesn't query the index directly; it passes the search terms to the daemon and the daemon sends any matches back. The user interface then renders the results and allows you to perform useful actions on the matching objects. Indexing your data requires a fair amount of computing power, but the Beagle daemon tries to be as unobtrusive as possible. It contains a scheduler that works to prioritize tasks and control CPU usage, based on whether or not you are actively using your workstation. DEPENDENCY HECK --------------- Beagle requires: * Mono 1.1.13.5 or better, along with the full Mono stack * gtk-sharp 2.3.90 or better * GMime 2.1.19 * Libexif 0.5.7 or better * shared-mime-info For the best possible Beagle experience, you should also have: * GMime 2.2.1 * Evolution-sharp 0.10.2 or 0.11.1 * libgsf 1.12.1 and gsf-sharp 0.6 * Either wv 1.2.0, or a *patched* wv 1.0.3 --- the patch is available from http://users.avafan.com/~fredrik/beagle/wv-libole2-readonly.patch * An inotify-enabled kernel. Inotify is in the mainline Linux kernel as of 2.6.13. And other optional dependencies: http://beagle-project.org/Optional_Prerequisites CHANGES SINCE 0.2.6 ------------------- Daemon/Infrastructure: * Fix bugs in the query parser by using a regular expression-based system. (Max Wiehle, Keving Kubasik) * Compress items in the text cache, greatly reducing disk usage. (Kevin, Lukas Lipka) * Fix a bug in which the sqlite database could get cluttered with older files. (Debajyoti Bera, Joe Shaw) * Again write out the PID of the locking process, or else we cannot effectively detect dangling locks. (Joe) * If we see a lockfile with no PID, assume it's a dangling lock. (Joe) * No longer handle SIGQUIT to shut down the daemon; it's used very valuably by Mono for debugging purposes. (Joe) * Add a BEAGLE_DISABLE_XATTR environment variable to disable extended attribute support for testing purposes. (Joe) * Only print out the inotify "Maximum watch limit hit" warning once. (Joe) * Convert HTML entities when creating snippets. (Lukas, Kevin) * Patch our xdgmime installation to not crash if the data is reloaded while it is processing it. (Joe) * Fix an issue with newer Mono installations where the index helper process would become a zombie after it finished and was never cleaned up. (Joe) * Fix a bug in which properties weren't being sorted and couldn't be found. (Max, Kevin, Bera) * Work around a Mono bug so that dangling symlinks in ~/.beagle/Log are cleaned up at startup. (Joe) Backends: * Generate mail delete events using the indexable generator rather than creating many individual indexables by hand, which could flood the scheduler and slow the system down. (Joe) * Check for exceptions when calling GetChanges() on Evolution calendars and addressbooks. (Joe) Filters: * Added an SVG filter. (Alexander Macdonald) * Re-enable the CHM filter. (Miguel Cabrera) * Close the OpenOffice zip file when we're finished. (Joe) * Index additional info from ebuild files, including installation info and desktop file entries. (Pat Double) * Add duration and bitrate properties to the music filter. (Lukas) * Add a filter for Boo. (Paul Betts) * Don't throw EncodingFoundException in the HTML parser unless asked to. (Bera) * Add application/x-php as a valid mime type for the PHP filter. (Kevin) * Make sure the mime type is lower case before matching on it. (Kevin, Joe) UI: * Catch exceptions if we can't load an application's icons. (Joe, Pierre Poissinger) * Include the date in note tiles. (Lukas) * Only display the first line of a calendar item's description. (Dan Winship) * Use mailto URIs rather than invoking Evolution directly when possible. (Lukas) * Use desktop-launch to open file tiles when applicable. (Lukas) * Make the text in the details pane selectable. (Lukas) * If the calendar's description is empty, still display the item. (Lukas) * Simplify the code for the details pane significantly. (Lukas) * Scale down very large mime icons for display. (Lukas) * Enable the "Open With" menu if GTK+ 2.8 is available at build-time. (Kevin) * Force the window to get wider if the tiles get wider rather than creating a horizontal scrollbar. (Dan) Tools: * Add --enable-deletion to beagle-build-index, which removes deleted files from the index. (Bera) * Add $sharedir/gtk-doc/html and $sharedir/gnome/html to the documentation crawl rules. (Joe) * Fix a typo in the beagled manpage. (Kevin Lamontagne) * Fix bugs dealing with shell quoting in beagle-query. (Max) Translations: * Updated Brazilian Portuguese translation. (Raphael Higino) * Updated Czech translation. (Jakub Friedl) * Updated Dutch translation. (Vincent van Adrighem) * Updated Finnish translation. (Ilkka Tuohela) * Updated Galician translation. (Ignacio Casal Quinteiro) * Updated Greek translation. (Kostas Papadimas) * Updated Japanese translation. (Takeshi Aihana) * Updated Norwegian bokml translation. (ivind Hoel) * Updated Simplified Chinese translation. (Funda Wang) * Updated Spanish translation. (Francisco Javier F. Serrador) * Updated Swedish translation. (Daniel Nylander) * Updated Vietnamese translation. (Clytie Siddall) Everything Else: * Make the Firefox extension work with Bon Echo (2.0 Alpha). (Joe) * Check for mmap() in configure.in, to optimize xdgmime. (Joe) * Add a pkg-config file for the UiUtil.dll assembly. (Luis Medinas) * Getting Dashboard building again. (Luis) KNOWN ISSUES ------------ We still use a bit too much memory. We are working on it. Certain extremely large documents can temporarily degrade your system's performance while they are being indexed. The file system is now much more robust than ever before. However, there are still race conditions that can occur with certain combinations of file system operations. In some cases it might be necessary to stop and restart the daemon. Certain files can crash the underlying libraries Beagle uses to extract metadata. This has been observed in MS Word and JPG files. If you encounter such a crash, please report it to the upstream developer of those libraries (wv1 and libexif for the above, respectively). At this point in development, we cannot commit to stable APIs or file formats. You will almost certainly need to delete your indexes and start again at some point in the future. From s.marechal@jejik.com Mon Jun 19 18:32:09 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 62F693B080B for ; Mon, 19 Jun 2006 18:32:09 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04849-10 for ; Mon, 19 Jun 2006 18:32:04 -0400 (EDT) Received: from smtp-vbr7.xs4all.nl (smtp-vbr7.xs4all.nl [194.109.24.27]) by menubar.gnome.org (Postfix) with ESMTP id 2E4AA3B035F for ; Mon, 19 Jun 2006 18:32:04 -0400 (EDT) Received: from [192.168.1.2] (a82-92-145-91.adsl.xs4all.nl [82.92.145.91]) (authenticated bits=0) by smtp-vbr7.xs4all.nl (8.13.6/8.13.6) with ESMTP id k5JMUN7U092865; Tue, 20 Jun 2006 00:30:24 +0200 (CEST) (envelope-from s.marechal@jejik.com) Message-ID: <449725B0.9050004@jejik.com> Date: Tue, 20 Jun 2006 00:31:12 +0200 From: Sander Marechal User-Agent: Thunderbird 1.5.0.4 (X11/20060615) MIME-Version: 1.0 To: hearts@lists.jejik.com, gnome-announce-list@gnome.org, news@linuxgames.com, webmaster@linuxlinks.com Subject: Gnome Hearts 0.1.1 Release Announcement Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by XS4ALL Virus Scanner X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.557 tagged_above=-999 required=2 tests=[AWL=0.042, BAYES_00=-2.599] X-Spam-Score: -2.557 X-Spam-Level: X-Mailman-Approved-At: Tue, 20 Jun 2006 11:54:51 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: hearts@lists.jejik.com List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jun 2006 22:32:09 -0000 Gnome Hearts 0.1.1 Release Announcement --------------------------------------- Our recently released Gnome Hearts 0.1 suffered from a build problem on distributions that shipped the Lua libraries as liblua instead of liblua50, most notably on the new Suse Linux. Gnome Hearts 0.1.1 fixes this issue, thanks to a patch sent in by a gnomefiles.org contributor. You can download the new tarball from our download section at: http://www.gnome-hearts.org/download/ About Gnome Hearts ------------------ Gnome Hearts is an implementation of the classic hearts card game for the GNOME desktop, featuring configurable rule sets and editable computer opponents to satisfy widely diverging playing styles. Gnome Hearts is Free Software, released under the GNU General Public License and should be able to run on any computer that can run the GNOME desktop. Enjoy, -- Sander Marechal http://www.gnome-hearts.org From peter@peterjohanson.com Tue Jun 20 01:48:23 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3398E3B0E71 for ; Tue, 20 Jun 2006 01:48:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26948-04 for ; Tue, 20 Jun 2006 01:48:21 -0400 (EDT) Received: from cubesearch.com (unknown [207.115.69.50]) by menubar.gnome.org (Postfix) with ESMTP id 7B83E3B05AF for ; Tue, 20 Jun 2006 01:48:21 -0400 (EDT) Received: by cubesearch.com (Postfix, from userid 522) id 8BF0D10E089; Mon, 19 Jun 2006 22:47:22 -0700 (PDT) Date: Mon, 19 Jun 2006 22:47:22 -0700 From: Peter Johanson To: gnome-announce-list@gnome.org Subject: [RELEASE] muine-0.8.5 Message-ID: <20060620054722.GS9163@butchest.cubesearch.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.11 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.55 tagged_above=-999 required=2 tests=[AWL=0.050, BAYES_00=-2.599, SPF_HELO_PASS=-0.001] X-Spam-Score: -2.55 X-Spam-Level: X-Mailman-Approved-At: Tue, 20 Jun 2006 11:54:51 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2006 05:48:23 -0000 Muine is a music player using new UI ideas. The goal is to create a player that eschews the iTunes model in favor of an easier and more comfortable interface. 0.8.5 ===== This release primarily updates Muine to use Gstreamer 0.10 (0.8 is also supported at configure time). Lots of bugfixes have also gone into this release. Details ======= - Gstreamer 0.10 support (configurable, 0.8 is still supported) [Iain, Peter Johanson] - Small shortcut/mnemonics tweaks [Sebastian Heinlein, Wouter Bolsterlee, Peter Johanson] - Fix bug with tray icon not re-appearing after a gnome-panel crash [Ed Catmur, Peter Johanson] - Handle large id3 tags properly [Jorn Baayen] - Properly raise the window when unhiding [Ryan Lortie] - Various build and bugfixes [Peter Johanson] New translations: - Punjabi [Amanpreet Singh Alam] - Thai [Isriya Paireepairit] Updated Translations: - Basque [Inaki Larranaga] - Czech [Miloslav Trmac] - Dutch [Wouter Bolsterlee] - Estonian [Priit Laes] - Finnish [Ilkka Tuohela] - German [Frank Arnold, Hendrik Richter] - Japanese [Takeshi AIHANA] - Spanish [Francisco Javier F. Serrador] - Swedish [Daniel Nylander] - Vietnamese [Clytie Siddall] Download ======== http://www.muine-player.org/wiki/Download Cheers, -pete From olav@bkor.dhs.org Wed Jun 21 16:12:51 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 436D73B0191; Wed, 21 Jun 2006 16:12:51 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02952-03; Wed, 21 Jun 2006 16:12:50 -0400 (EDT) Received: from amsfep20-int.chello.nl (amsfep17-int.chello.nl [213.46.243.15]) by menubar.gnome.org (Postfix) with ESMTP id 551023B0235; Wed, 21 Jun 2006 16:12:49 -0400 (EDT) Received: from bkor.dhs.org ([24.132.164.94]) by amsfep20-int.chello.nl (InterMail vM.6.01.04.04 201-2131-118-104-20050224) with ESMTP id <20060621201243.WMNK3918.amsfep20-int.chello.nl@bkor.dhs.org>; Wed, 21 Jun 2006 22:12:43 +0200 Received: by bkor.dhs.org (Postfix, from userid 501) id A0A54626877; Wed, 21 Jun 2006 22:12:42 +0200 (CEST) Date: Wed, 21 Jun 2006 22:12:42 +0200 From: Olav Vitters To: gnome-announce-list@gnome.org Subject: ANNOUNCE: gnome-blog 0.9.1 released Message-ID: <20060621201242.GI1266@bkor.dhs.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.5.11 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.26 tagged_above=-999 required=2 tests=[AWL=-0.150, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, FORGED_RCVD_HELO=0.135, TW_GT=0.077, TW_SX=0.077] X-Spam-Score: -2.26 X-Spam-Level: Cc: seth@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 20:12:51 -0000 gnome-blog 0.9.1 ================ Been a long time since the last version was released. With the approval of Seth Nickell, I am releasing a newer version. homepage: http://www.gnome.org/~seth/gnome-blog/ (I will probably soon move this to http://www.gnome.org/projects/gnome-blog/) download: http://download.gnome.org/sources/gnome-blog/0.9/ Features ======== * Clean interface doesn't get in the way of what you're writing * WYSIWYG styled text support * Entries can be written gradually over the course of a day, popping gnome blog open and closed as you have thoughts to jot down and then posting at the end of the day * Operates as a panel object/applet or a standalone application * Supports many different kinds of blogs * Spell checking * Drag and drop images into your blog entry (if your blog supports it) Supported Blogs =============== * Blogger.com / Blogspot.com * Advogato.org * Movable Type * WordPress * LiveJournal.com * Pyblosxom * Any other blog using bloggerAPI or MetaWeblog Fixes ===== * Make add link dialog stay near and above the blog window (Tommi Komulainen) * Do not crash when gtkspell is installed but lack a dictionary (Jan Alonzo) * Ensure window looks sane when resized (Olav Vitters) * Ensure blog applet window receives focus with newer metacity versions and make it stay on top (Olav Vitters) * Correctly position blog window beside the applet when using a vertical panel (Olav Vitters) * Make sure CTRL-B (bold), CTRL-I (italic) work when using the applet (Olav Vitters) * Fix blogs.gnome.org XML-RPC URL (Olav Vitters) Translations ============ * Mətin Əmirov (az) * Vladimir Petkov (bg) * Aleix Badia i Bosch (ca) * Miloslav Trmac (cs) * Hendrik Richter (de) * Adam Weinberger (en_CA) * David Lodge (en_GB) * Francisco Javier F. Serrador (es) * Priit Laes (et) * Ilkka Tuohela (fi) * Christophe Merlet (RedFox) (fr) * Pedro Silva (gl) * Robert Sedak (hr) * Gabor Kelemen (hu) * Francesco Gigli (it) * Takeshi AIHANA (ja) * Hasbullah Bin Pit (ms) * Kjartan Maraas (nb) * Jyotshna Shrestha (ne) * Taco Witte (nl) * Arkadiusz Lipiec (pl) * Afonso Celso Medina (pt_BR) * Duarte Loreto (pt) * Steve Murphy (rw) * Laurent Dhima (sq) * Danilo Šegan (sr@Latn) * Данило Шеган (sr) * Daniel Nylander (sv) * Maxim Dziumanenko (uk) * Clytie Siddall (vi) * storm (zh_CN) * Abel Cheung (zh_TW) -- Regards, Olav From mclasen@redhat.com Wed Jun 21 23:10:41 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AA4213B0172; Wed, 21 Jun 2006 23:10:41 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23030-07; Wed, 21 Jun 2006 23:10:39 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 63BA23B0008; Wed, 21 Jun 2006 23:10:39 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5M3AclX021506; Wed, 21 Jun 2006 23:10:38 -0400 Received: from lacrosse.corp.redhat.com (lacrosse.corp.redhat.com [172.16.52.154]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5M3AcnM019751; Wed, 21 Jun 2006 23:10:38 -0400 Received: from [172.16.83.158] (vpn83-158.boston.redhat.com [172.16.83.158]) by lacrosse.corp.redhat.com (8.12.11.20060308/8.11.6) with ESMTP id k5M3AciB004961; Wed, 21 Jun 2006 23:10:38 -0400 Subject: GTK+ 2.9.4 released From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain Organization: Red Hat Date: Wed, 21 Jun 2006 23:12:41 -0400 Message-Id: <1150945961.4457.2.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.7.3 (2.7.3-2) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.507 tagged_above=-999 required=2 tests=[AWL=0.017, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: -2.507 X-Spam-Level: X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 03:10:41 -0000 GTK+ 2.9.4 is now available for download at: http://ftp.gnome.org/pub/gnome/sources/gtk+/2.9/ gtk+-2.9.4.tar.bz2 md5sum: c06cf2cfa66485600d90789c9e58f27c gtk+-2.9.4.tar.gz md5sum: e3fefedc7f1a89b66c71c9967168a857 This is a development release leading up to GTK+ 2.10. Notes: * This is unstable development release. There are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GTK+ 2.8. If you have problems, you'll need to reinstall GTK+ 2.8. * GTK+ 2.10 will be source compatible with the GTK+ 2.8 series; the new API additions in GTK+ 2.9.0 are finalized by now. * The ABI version has been bumped from 2.4.0 to 2.10.0, since the filechooser backend interface has been changed. Third-party filechooser backends need to be ported to the new interface. Other third-party modules (input methods, image loaders, etc) just need to be reinstalled in the proper location for GTK+ to find them. * Remaining issues for GTK+ 2.10 can be found with following bugzilla query: http://bugzilla.gnome.org/buglist.cgi?product=gtk%2b&target_milestone=2.10+API+Freeze&target_milestone=2.10+Freeze&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED * Bugs should be reported to http://bugzilla.gnome.org. What is GTK+ ============ 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.4/gtk/gtk-building.html Common questions: http://developer.gnome.org/doc/API/2.4/gtk/gtk-question-index.html http://www.gtk.org/faq/ Overview of Changes from GTK+ 2.9.3 to 2.9.4 ============================================ * GtkPrintOperation: - UI improvements in the print dialog - Make printing work without a display connection - Replace "Print to PDF" by "Print to file" that can generate PDF or PostScript - Add a function to the low-level API to enumerate all printers * GtkNotebook tab DND has been improved * GtkProgressbar supports text in activity mode * GtkLabel allows to set the wrap mode * GtkStatusIcon supports transparency * Bugs fixed: 344850 Dragging a GtkTreeViewColumn segfaults when using certain GtkTreeViewColumnDropFunc 342458 Stock menu items without icons are broken in recent GTK+ releases. 335873 notebook DND + popup windows 337882 gtk_progress_bar_set_text() does nothing in activity mode 339456 unix print dialogue help button bug 339702 Make sure printing works without a display 341571 tabs too easily reordered 344074 New Feature: get printer list, and get default print 344743 gtk_targets_include_text() should initialize atoms 344838 Allow func to be NULL in gtk_tree_view_set_search_position_func 344891 GtkPrintOperationPreview signal defs correction 345008 Need updated cairo req 345093 print preview temp file issues 345107 Memory leak in gtk_entry_completion_finalize: User data not freed 345194 gdk_window_set_functions() docs need to be updated 345456 grid-lines property is wrongly registered and get/set. 314278 strings in gtk-update-icon-cache are not marked for translation 344707 size group with widgets in hidden container 344897 Entry completion model NULL handling should be documented 345038 gtk_print_job_set_status' status 345106 dialog button box spacings 345176 GtkIconView doc about drag and drop 345275 doc imporovements for gtk_window_move 345320 Two very similiar strings should be made equal 345321 Add meaning of "shortcut" as translator comment 320034 transparency gtkstatusicon 339592 Add print-to-postscript 344867 custom paper file could use keyfile * Updated translations (cs,de,es,fr,gl,gu,hi,ko,ta,th) A list of all bugs fixed in this release can be found at http://bugzilla.gnome.org/buglist.cgi?bug_id=344838,344743,344867,344891,345008,341571,345038,337882,345093,344707,339456,345107,345275,339702,344074,345320,345321,344897,314278,320034,344850,345194,345176,345106,335873,342458,339592,345456 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Christian Persch, John Finlay, Federico Mena Quintero, Michael Emmel, Marko Anastasov, Bastien Nocera, Carlos Garnacho, Yevgen Muntyan, Tommi Komulainen, Tim Janik, Christian Weiske, Behdad Esfahbod, Alexander Larsson, Felipe Heidrich, Hendrik Richter, Claudio Saavedra, Dan Winship, Callum McKenzie, John Palmieri, Murray Cumming, Kristian Rietveld June 21, 2006 Matthias Clasen From cass@skynet.be Wed Jun 21 10:17:16 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9D8BD3B0FB7 for ; Wed, 21 Jun 2006 10:17:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11755-08 for ; Wed, 21 Jun 2006 10:17:15 -0400 (EDT) Received: from dorado.vub.ac.be (mailhost.vub.ac.be [134.184.129.10]) by menubar.gnome.org (Postfix) with ESMTP id D3CD03B0F77 for ; Wed, 21 Jun 2006 10:17:14 -0400 (EDT) Received: from mach.vub.ac.be (maxi.vub.ac.be [134.184.129.8]) by dorado.vub.ac.be (Postfix) with ESMTP id 4B484D7 for ; Wed, 21 Jun 2006 16:17:02 +0200 (CEST) Received: by mach.vub.ac.be (Postfix, from userid 21099) id 274998D01; Wed, 21 Jun 2006 16:17:02 +0200 (CEST) Received: from cass-lpt.ulb.ac.be (f1-pc174.ulb.ac.be [164.15.24.174]) by mach.vub.ac.be (Postfix) with ESMTP id 6C1178D24 for ; Wed, 21 Jun 2006 16:17:01 +0200 (CEST) Subject: XChat-GNOME 0.12 From: Guillaume Desmottes To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=UTF-8 Date: Wed, 21 Jun 2006 16:16:46 +0200 Message-Id: <1150899407.18129.0.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.496 tagged_above=-999 required=2 tests=[AWL=0.026, BAYES_00=-2.599, TW_JH=0.077] X-Spam-Score: -2.496 X-Spam-Level: X-Mailman-Approved-At: Thu, 22 Jun 2006 09:00:41 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 14:17:16 -0000 XChat-GNOME 0.12 “All roads lead to Sean Connery” is now available. * What is it ? ============== XChat-GNOME is a new frontend to the popular X-Chat IRC client which is designed with the user interface foremost in mind. More informations can be found at: http://xchat-gnome.navi.cx/ * What's changed ? ================== - A new sheme for theme-based foreground and backgrond colors, with automatic palette optimization for mIRC color codes. - Remove redundant nicknames (with a gconf key to re-enable them) - Show a whois tooltip on users in the conversation panel - Display a tooltip with the description of plugins - You can now build XChat-GNOME HEAD using jhbuild (using gnome-2.16 modulesets) - A large number of bug fixes and smaller improvements - Updated translations * Contributors to this release ============================== David Trowbridge, Guillaume Desmottes, Christian Persch, Przemyslaw Grzegorczyk, Gathy Grégory, Isak Savo, Steve Frécinaux, Jeremy Nickurak, Dan Kuester, Brian Pepple * Where can I get it ? ====================== http://releases.navi.cx/xchat-gnome/xchat-gnome-0.12.tar.gz http://releases.navi.cx/xchat-gnome/xchat-gnome-0.12.tar.bz2 -- Guillaume Desmottes Jabber GPG 1024D/711E31B1 | 1B5A 1BA8 11AA F0F1 2169 E28A AC55 8671 711E 31B1 From murrayc@murrayc.com Tue Jun 20 13:04:27 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BEAFD3B05E3; Tue, 20 Jun 2006 13:04:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30785-01; Tue, 20 Jun 2006 13:04:23 -0400 (EDT) Received: from swarthymail-a4.dreamhost.com (sd-green-bigip-60.dreamhost.com [208.97.132.60]) by menubar.gnome.org (Postfix) with ESMTP id 7AB3D3B04F0; Tue, 20 Jun 2006 13:04:23 -0400 (EDT) Received: from noname (p5497DB9C.dip.t-dialin.net [84.151.219.156]) by swarthymail-a4.dreamhost.com (Postfix) with ESMTP id AF950129A91; Tue, 20 Jun 2006 10:03:26 -0700 (PDT) Subject: ANNOUNCE: gtkmm 2.9.5 From: Murray Cumming To: gnome-announce , gtkmm-list Content-Type: text/plain Date: Tue, 20 Jun 2006 19:03:22 +0200 Message-Id: <1150823002.6261.21.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.404 tagged_above=-999 required=2 tests=[AWL=0.041, BAYES_00=-2.599, TW_GT=0.077, TW_TK=0.077] X-Spam-Score: -2.404 X-Spam-Level: X-Mailman-Approved-At: Thu, 22 Jun 2006 09:02:35 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2006 17:04:28 -0000 *** gtkmm 2.9/2.10: gtkmm 2.9 wraps new API in GTK+ 2.9, and is API/ABI-compatibile with gtkmm 2.8, 2.6 and 2.4. It is a version of the gtkmm-2.4 API. This will become the API-stable gtkmm 2.10, wrapping GTK+ 2.10. gtkmm stays in-sync with GTK+ by following the official GNOME release schedule: http://www.gnome.org/start/unstable/ Bindings for the rest of the GNOME Platform are also available, and are also API-stable. http://www.gtkmm.org *** Changes gtkmm 2.9.5: Gtk: * Assistant: Added update_buttons_state(). * Button: Added get/set_image_position(). * Clipboard: Added request_rich_text(), wait_for_rich_text(), and wait_rich_text_is_available(). * Entry: Added get/set_inner_border(). * Notebook: Added set_group_id(), get_group_id(), get_tab_reorderable(), set_tab_reorderable(), get_tab_detachable(), set_tab_detachable(). * PrintContext: Added set_cairo_context(). * Printoperation: - run(): Added PrintOperationAction parameter. - Removed set_show_dialog(), set_pdf_target(), set_track_print_status(), run_async(). - Added set_export_filename(), set_track_print_status(), set_show_progress(), set_allow_async(), set_custom_tab_label(). * Fixed warnings (Elijah Newren, Jonathon Jongsma) Pango: * Context: Added get_matrix(). * Font: Added describe_with_absolute_size(), get_font_map(). * FontDescription: Added set_absolute_size(), get_size_is_absolute(). * Layout: Added get_font_description(), index_to_line_x(). * Renderer: Added get_matrix(). *** Download http://www.gtkmm.org/download.shtml You will need libsigc++ 2.0, available here: https://sourceforge.net/project/showfiles.php?group_id=1970 *** Development There is active discussion on the mailing list: http://www.gtkmm.org/mailinglist.shtml and in the #c++ channel on irc.gnome.org -- Murray Cumming murray@usa.net www.murrayc.com From murrayc@murrayc.com Thu Jun 22 17:21:32 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 53AA83B083F; Thu, 22 Jun 2006 17:21:32 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27489-07; Thu, 22 Jun 2006 17:21:31 -0400 (EDT) Received: from swarthymail-a3.dreamhost.com (sd-green-bigip-62.dreamhost.com [208.97.132.62]) by menubar.gnome.org (Postfix) with ESMTP id 713DB3B0823; Thu, 22 Jun 2006 17:21:26 -0400 (EDT) Received: from noname (p5497EA12.dip.t-dialin.net [84.151.234.18]) by swarthymail-a3.dreamhost.com (Postfix) with ESMTP id 13D217F03D; Thu, 22 Jun 2006 14:21:24 -0700 (PDT) Subject: ANNOUNCE: gtkmm 2.9.6 From: Murray Cumming To: gnome-announce , gtkmm-list Content-Type: text/plain Date: Thu, 22 Jun 2006 23:21:22 +0200 Message-Id: <1151011282.5804.37.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.4 tagged_above=-999 required=2 tests=[AWL=0.045, BAYES_00=-2.599, TW_GT=0.077, TW_TK=0.077] X-Spam-Score: -2.4 X-Spam-Level: X-Mailman-Approved-At: Thu, 22 Jun 2006 19:51:58 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 21:21:32 -0000 *** gtkmm 2.9/2.10: gtkmm 2.9 wraps new API in GTK+ 2.9, and is API/ABI-compatibile with gtkmm 2.8, 2.6 and 2.4. It is a version of the gtkmm-2.4 API. This will become the API-stable gtkmm 2.10, wrapping GTK+ 2.10. gtkmm stays in-sync with GTK+ by following the official GNOME release schedule: http://www.gnome.org/start/unstable/ Bindings for the rest of the GNOME Platform are also available, and are also API-stable. http://www.gtkmm.org *** Changes gtkmm 2.9.6: Gtk: * Label: Added get/set_line_wrap_mode() and property. * MenuShell: Added get/set_take_focus() and property. * MessageDialog: Added set_image() and property. * StatusIcon: Added get_geometry(). * TreeView: Added get/set_rubber_banding(), get/set_grid_lines(), get/set_enable_tree_lines(). Added properties for show-expanders, level-indentation, rubber-banding, enable-grid-lines, and enable-tree-lines. (Murray Cumming) * PrintJob: send_job(): No longer throws an exception. * PrintUnixDialog: Added add_custom_tab() overload that takes a ustring. * Printer: Added get_job_count(), and enumerate_printers(), and others. * Printsettings: - Put the standard settings in a member class so they can be used as Gtk::PrintSettings::Keys::SOMETHING. - Remove get/set_print_to_file(). * PrintOperation: Added a version of run() without the Window parameter. * PrintOperationPreview: New class. (Most printing stuff: Marko Anastasov) *** Download http://www.gtkmm.org/download.shtml You will need libsigc++ 2.0, available here: https://sourceforge.net/project/showfiles.php?group_id=1970 *** Development There is active discussion on the mailing list: http://www.gtkmm.org/mailinglist.shtml and in the #c++ channel on irc.gnome.org -- Murray Cumming murray@usa.net www.murrayc.com From bryce@bryceharrington.org Sat Jun 24 01:30:28 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 157CC3B0150 for ; Sat, 24 Jun 2006 01:30:28 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25007-03 for ; Sat, 24 Jun 2006 01:30:24 -0400 (EDT) Received: from dc2-web15.assortedinternet.com (dc2-web15.assortedinternet.com [66.36.233.162]) by menubar.gnome.org (Postfix) with ESMTP id 701A03B0132 for ; Sat, 24 Jun 2006 01:30:24 -0400 (EDT) Received: from c-24-20-224-228.hsd1.or.comcast.net ([24.20.224.228] helo=localhost) by dc2-web15.assortedinternet.com with esmtpa (Exim 4.52) id 1Fu0in-0003sK-Oi for gnome-announce-list@gnome.org; Sat, 24 Jun 2006 01:30:18 -0400 Date: Fri, 23 Jun 2006 22:28:53 -0700 From: Bryce Harrington To: gnome-announce-list@gnome.org Subject: Inkscape Announces 0.44 Release :: http://www.inkscape.org Message-ID: <20060624052853.GE23238@bryceharrington.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.11 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - dc2-web15.assortedinternet.com X-AntiAbuse: Original Domain - gnome.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - bryceharrington.org X-Source: X-Source-Args: X-Source-Dir: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.597 tagged_above=-999 required=2 tests=[AWL=0.002, BAYES_00=-2.599] X-Spam-Score: -2.597 X-Spam-Level: X-Mailman-Approved-At: Sat, 24 Jun 2006 06:24:44 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jun 2006 05:30:28 -0000 The Inkscape community today officially released the latest version of its vector graphic drawing software. Inkscape 0.44 adds many new features, is faster and more usable, better supports SVG, is translated into more languages (17 on last count), and adds a lot of polish and refinement. Major new features include Layers dialog, support for clipping and masking, improved PDF export with transparency, configurable keyboard shortcuts, innovative "node sculpting" capability in Node tool, and the Outline mode. Significant gains are achieved in performance, especially in screen rendering and Node tool. Noticeable user interface changes include docked color swatches, interactive style indicator in the statusbar, a redesigned preferences dialog, a text toolbar, and new icons. Our SVG compliance has also taken a step forward, with the added support for the tag and ICC color profiles for images. This release also includes hundreds of smaller features, usability enhancements and bug fixes. For several releases, a collection of extension effects was shipped with Inkscape, but the Effects menu to access them was turned off by default. With this release, it has become mature enough, with effects working out of the box on all platforms, so this menu is enabled. We'd like to thank Google for their sponsorship of five students to work, during the summer of 2006, on several Inkscape development efforts: SVG Filters, Inkboard protocol, PDF export with Cairo, and memory optimization. Download Linux, Windows, and Mac OS X packages: http://sourceforge.net/project/showfiles.php?group_id=93438 For many more details, see the complete Release Notes for 0.44: http://wiki.inkscape.org/wiki/index.php/Release_Notes Community submitted screenshots: http://www.inkscape.org/screenshots/ ===About Inkscape=== Inkscape is an open source drawing tool that uses the World Wide Web Consortium's ([[W3C]]) scalable vector graphics format (SVG). Some supported SVG features include basic shapes, paths, text, markers, clones, alpha blending, transforms, gradients, and grouping. In addition, Inkscape supports Creative Commons' metadata, node-editing, layers, complex path operations, text-on-path, text-in-shape, and SVG XML editing. It can also import EPS, PostScript, and most bitmap formats, and exports PNG, PS, PDF and various vector formats. Inkscape's main motivation is to provide the Open Source community with a fully [[W3C]] compliant XML, SVG, and CSS2 drawing tool. Additional work includes conversion of the codebase from C/Gtk to C++/Gtkmm, emphasizing a lightweight core with powerful features added through an extension mechanism, and maintaining a friendly, open, community-oriented development process. From mclasen@redhat.com Mon Jun 5 14:15:03 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 744343B09D3; Mon, 5 Jun 2006 14:15:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20278-06; Mon, 5 Jun 2006 14:15:01 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id D637E3B0988; Mon, 5 Jun 2006 14:15:00 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k55IF08I024331; Mon, 5 Jun 2006 14:15:00 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [172.16.76.12]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k55IF0I9021827; Mon, 5 Jun 2006 14:15:00 -0400 Received: from golem.boston.redhat.com (golem.boston.redhat.com [172.16.80.24]) by mail.boston.redhat.com (8.12.8/8.12.8) with ESMTP id k55IExAV012588; Mon, 5 Jun 2006 14:14:59 -0400 From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain; charset=UTF-8 Date: Mon, 05 Jun 2006 14:14:59 -0400 Message-Id: <1149531299.4071.35.camel@golem.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.1 (2.7.1-1) Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.543 tagged_above=-999 required=2 tests=[AWL=0.058, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.543 X-Spam-Level: Cc: Subject: GLib 2.11.2 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jun 2006 18:15:03 -0000 GLib 2.11.2 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.11/ http://ftp.gnome.org/pub/GNOME/sources/glib/2.11/ glib-2.11.2.tar.bz2 md5sum: 18464b85bfd589f83897623c637a1553 glib-2.11.2.tar.gz md5sum: f728cd295ac98d4b95d850fe91c05fd5 This is a development release leading up to GLib 2.12. Notes: * This is unstable development release. While it has had a bit of testing, there are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GLib 2.10. If you have problems, you'll need to reinstall GLib 2.10. * GLib 2.12 will be source and binary compatible with the GLib 2.10.x series (for some caveats, see the README). At this point, the API additions in the 2.11.x series are almost finished. * Bugs should be reported to http://bugzilla.gnome.org. About GLib ========== GLib is the low-level core library that forms the basis for projects such as GTK+ and GNOME. It provides data structure handling for C, portability wrappers, and interfaces for such runtime functionality as an event loop, threads, dynamic loading, and an object system. More information about GLib is available at: http://www.gtk.org/ An installation guide for the GTK+ libraries, including GLib, can be found at: http://developer.gnome.org/doc/API/2.0/gtk/gtk-building.html Overview of Changes from GLib 2.11.1 to GLib 2.11.2 =================================================== * Add g_ascii_stroll to parse signed 64bit integers * GMarkup: add a flag to treat CDATA as text * GHashTable: add functions to remove all entries * GMainLoop: add functions to find the currently running source, and determine if it is destroyed * Bug fixes: 342563 g_atomic_thread_init() needs to be called before other _g_*_thread_init() functions 343548 Potential use after free in callers of g_string_free() 168538 Wish: Clearing contents of GHashTables 321886 GTK+ cannot be reliably used in multi-threaded applications 341826 goption.c: 'strtoll' is C99's function 343899 g_ascii_formatd dosn't work as expected for all format strings 317793 Make GEnumValue strings const 337129 Compile warnings in G_IMPLEMENT_INTERFACE 303622 What is G_TYPE_CHAR? * Updated translations (bg,dz,eu,gl,ja,nl,th,vi) A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=341826,342563,343548,168538,168538,321886,343899,321886,317793,337129,303622 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Peter Kjellerstedt, Kazuki Iwamoto Leonard den Ottolander, Chris Wilson, Behdad Esfahbod, Matt Barnes, ystein Johansen, Tim Janik Morten Welinder Matthias Clasen June 5, 2006 From mclasen@redhat.com Mon Jun 5 16:21:34 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 09B113B0543; Mon, 5 Jun 2006 16:21:34 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28553-01; Mon, 5 Jun 2006 16:21:32 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 0F8903B0012; Mon, 5 Jun 2006 16:21:31 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k55KLVn7006951; Mon, 5 Jun 2006 16:21:31 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [172.16.76.12]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k55KLUBq020469; Mon, 5 Jun 2006 16:21:31 -0400 Received: from golem.boston.redhat.com (golem.boston.redhat.com [172.16.80.24]) by mail.boston.redhat.com (8.12.8/8.12.8) with ESMTP id k55KLUAV025318; Mon, 5 Jun 2006 16:21:30 -0400 From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain Date: Mon, 05 Jun 2006 16:21:30 -0400 Message-Id: <1149538890.4071.40.camel@golem.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.1 (2.7.1-1) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.429 tagged_above=-999 required=2 tests=[AWL=-0.059, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_GD=0.077, TW_GT=0.077, TW_XI=0.077] X-Spam-Score: -2.429 X-Spam-Level: Cc: Subject: GTK+ 2.9.2 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jun 2006 20:21:34 -0000 GTK+ 2.9.2 is now available for download at: http://ftp.gnome.org/pub/gnome/sources/gtk+/2.9/ gtk+-2.9.2.tar.gz md5sum: c63e7d0cf7c4e983206c3088a0fb8862 gtk+-2.9.2.tar.bz2 md5sum: 17629437af44fce03485101371c8f041 This is a development release leading up to GTK+ 2.10. Notes: * This is unstable development release. There are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GTK+ 2.8. If you have problems, you'll need to reinstall GTK+ 2.8. * GTK+ 2.10 will be source compatible with the GTK+ 2.8 series; the new API additions in GTK+ 2.9.0 are not yet completely finalized, so there are likely incompatibilies between this release and the final 2.10 release. * The ABI version has been bumped from 2.4.0 to 2.10.0, since the filechooser backend interface has been changed. Third-party filechooser backends need to be ported to the new interface. Other third-party modules (input methods, image loaders, etc) just need to be reinstalled in the proper location for GTK+ to find them. * Remaining issues for GTK+ 2.10 can be found with following bugzilla query: http://bugzilla.gnome.org/buglist.cgi?product=gtk%2b&target_milestone=2.10+API+Freeze&target_milestone=2.10+Freeze&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED * Bugs should be reported to http://bugzilla.gnome.org. What is GTK+ ============ 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.4/gtk/gtk-building.html Common questions: http://developer.gnome.org/doc/API/2.4/gtk/gtk-question-index.html http://www.gtk.org/faq/ Overview of Changes from GTK+ 2.9.1 to 2.9.2 ============================================ * GtkPrintOperation - Support asynchronous pagination with the ::paginate signal - Add gtk_print_operation_cancel - Support application-specific widgets - Allow disabling features based on application capabilities - Optionally show progress - Change some function names in GtkPrintContext to be longer and better - Support preview, the default implementation spawns evince, but the api allows for an internal preview implementation * GtkCellView - Add a model property * GtkStatusIcon - Allow to obtain screen geometry * GtkTreeView - Many bug fixes, in particular for RTL handling - Separate sensitive and selectable properties of rows - Optionally allow rubberband selection * GtkButton - Add image-spacing style property - Add image-position property * GtkToolButton - Add icon-spacing style property * Make GTK+ work as an untrused X client * Bugs fixed: 343838 gtkprintoperationpreview.h guards 305530 Crashes while creating source code w/GtkFontSelection 341327 Memory corruption inside glib 341734 cursor blocked to dnd mode after using shift and dnd on a GtkCalendar 343453 G_DEFINE_TYPE messes up internal typenames of GdkWindow and GdkPixmap 136571 Problems running as untrusted client 168105 the right edge tab does not appear when switching tab 172535 Add support for UI builders in gtk+ 302556 GtkTreeView widget signals are badly documented 324480 Selecting first item with keyboard is difficult 340428 small cleanup 340444 don't run the custom page size dialogue 340839 Critical warnings in GtkTreeModelFilter 341898 gtk_tree_view_insert_column_with_attributes doesn't work with fixed_height_mode 342003 DnD: Conditional jump or move depends on uninitialised value 342072 Wrong drop location in GtkEntry 342096 GtkImage animation CRITICALS on switching themes 342513 widget class style property with type module 342529 gdk should set resolution on PangoCairoFontmap, not PangoCairoContext 342535 Add documentation for new GtkWidget style properties (including Since tags) 342543 can't compile gtk+ on opensolaris using sun cc 342569 Typo in decl of gdk_color_parse 342752 Need a way to specify custom tab label for custom page in Print dialog 342754 print-editor: font button dialog doesn't get focus if main window has a window group 342781 GtkPrintUnixDialog: Collate should be insensitive unless Copies is > 1 342783 GtkPrintUnixDialog: Range textinput area should be insensitive unless range radiobutton is selected 342894 Use after free inside gtk_text_view_set_buffer 342930 GtkButton should offer a way to position the image relative to the text 343088 Some typos in the PO file 343425 "grab-notify"-signal is not correctly propagated for internal children 343438 gtk_color_button_set_color() doesn't emit "color-set" signal 343475 page setup unix dialog confusion 343625 allow to get only some info from gtk_status_icon_get_geometry 343677 GtkWindow chains key-release to key-press 320431 Text too close when using East/West in a GtkToolButton 321523 GtkTreeView's test_expand_row signal emitting impractical on row expand all 342007 Warning in gtk_paned_compute_position 343233 gdk_rectangle_intersect doc 333284 expander animation not working in RTL mode 343444 change color of gtk-demo source-buffer comment color from red to DodgerBlue 343630 Small inconsistence in migration documentation 80127 Rubberbanding for GtkTreeView 341450 status icon + libnotify 341679 Allow absolute filenames in the options entries * Updated translations (bg,cy,de,el,es,et,eu,gl,gu,it,ja, nb,nl,pt_BR,th,vi) Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Alexander Larsson, Behdad Esfahbod, Benjamin Berg, Caolan McNamara, Carlos Garnacho Parro, Carol Spears, Christian Persch, Chris Wilson, Claudio Saavedra, Clytie Siddall, Damon Chaplin, Daniel Lindenaar, Dan Winship, Diana Fong, Ed Catmur, Emmanuele Bassi, Havoc Pennington, Henrique Romano, Hiroyuki Ikezoe, James Moger, Johan Dahlin, Kouhei Sutou, Kristian Rietveld, Markku Vire, Mart Raudsepp, Masatake Yamato, Michael Emmel, Michael Natterer, Murray Cumming, Olexiy Avramchenko, Paolo Borelli, Patrick Monnerat, Richard Hult, Sampo Savolainen, Sebastien Bacher, Srirama Sharma, Stefan Kost, Tim Janik, Tommi Komulainen, Tor Lillqvist, Yevgen Muntyan A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=342072,342096,342003,341734,305530,168105,342007,342529,342535,342543,342569,341679,342752,172535,342513,342781,342783,342754,136571,341450,333284,340428,340839,341898,321523,343088,343233,324480,342894,320431,342930,343453,343425,343438,343444,340444,343475,302556,343677,343625,80127,343838,341327,168105,343630 Matthias Clasen June 5, 2006 From thomas@apestaart.org Tue Jun 6 06:04:09 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id ABA3E3B0750; Tue, 6 Jun 2006 06:04:09 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04145-08; Tue, 6 Jun 2006 06:04:08 -0400 (EDT) Received: from mx1.es6.egwn.net (server02.es6.egwn.net [195.10.6.12]) by menubar.gnome.org (Postfix) with ESMTP id 6BEAF3B014E; Tue, 6 Jun 2006 06:04:08 -0400 (EDT) Received: from mx1.fr4.egwn.net (server07.fr4.egwn.net [62.39.85.77]) by mx1.es6.egwn.net (Postfix) with ESMTP id D5F0C4F82E2; Tue, 6 Jun 2006 12:04:05 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by mx1.fr4.egwn.net (spiffy mail daemon) with ESMTP id 0D94183BE7; Tue, 6 Jun 2006 12:04:00 +0200 (CEST) Received: from mx1.fr4.egwn.net ([127.0.0.1]) by localhost (server07.fr4.egwn.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16922-12; Tue, 6 Jun 2006 12:03:14 +0200 (CEST) Received: from thread.fluendo.lan (core.fluendo.com [195.10.6.237]) by mx1.fr4.egwn.net (spiffy mail daemon) with ESMTP id C559583BE4; Tue, 6 Jun 2006 12:03:14 +0200 (CEST) Received: from thomas.fluendo.lan (thomas.fluendo.lan [192.168.1.10]) by thread.fluendo.lan (Postfix) with ESMTP id 6EF06FFDB; Tue, 6 Jun 2006 12:03:18 +0200 (CEST) From: Thomas Vander Stichele To: gnome-hackers@gnome.org In-Reply-To: <1148971293.12902.2.camel@red> References: <1139648664.6627.40.camel@localhost> <1148971293.12902.2.camel@red> Content-Type: text/plain Date: Tue, 06 Jun 2006 12:03:19 +0200 Message-Id: <1149588200.24971.3.camel@otto.amantes> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 (2.6.1-1.fc5.2) Content-Transfer-Encoding: 7bit X-Scanned: By amavis at egwn.net X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.626 tagged_above=-999 required=2 tests=[AWL=-0.070, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, RCVD_IN_SBL=3.16] X-Spam-Score: 0.626 X-Spam-Level: Cc: gnome-announce-list@gnome.org, devel-announce-list@gnome.org Subject: Re: Subversion migration schedule (new cut-off Fri 16 June) X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 10:04:10 -0000 On Tue, 2006-05-30 at 13:41 +0700, Ross Golder wrote: > Hi, > > As the various show-stoppers that prevented our previously scheduled > migration from going ahead have now been resolved, I am proposing that > the new migration go ahead at 23:59UTC on Friday 16th June 2006. Please > let us know a.s.a.p if that will be inconvenient for anyone. It may be inconvenient for any hack sessions done at GUADEC if it leaves people with too little time to convert their laptop checkouts properly, or if anything goes wrong with the conversion. I don't know if that's important enough of a reason, but it'd be too bad if we'd be stifling the surge of activity at GUADEC. Thomas From carlosg@gnome.org Tue Jun 6 10:05:02 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1A0BD3B0132; Tue, 6 Jun 2006 10:05:02 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26815-01; Tue, 6 Jun 2006 10:05:01 -0400 (EDT) Received: from localhost.localdomain (133.Red-88-0-26.dynamicIP.rima-tde.net [88.0.26.133]) by menubar.gnome.org (Postfix) with ESMTP id CB9F23B0107; Tue, 6 Jun 2006 10:05:00 -0400 (EDT) Received: by localhost.localdomain (Postfix, from userid 1000) id 7F37E13F73; Tue, 6 Jun 2006 16:04:58 +0200 (CEST) From: Carlos Garnacho To: system-tools-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Tue, 06 Jun 2006 16:04:57 +0200 Message-Id: <1149602697.21203.7.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.528 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, RCVD_IN_NJABL_DUL=1.946, RCVD_IN_SORBS_DUL=2.046] X-Spam-Score: 1.528 X-Spam-Level: * X-Mailman-Approved-At: Tue, 06 Jun 2006 10:20:33 -0400 Cc: Subject: System Tools Backends 1.9.0 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 14:05:02 -0000 The System Tools Backends version 1.9.0 "Pluto tan" have been released. This is the first release towards 2.x series, which will feature DBus interfaces to access data, signals to notify asynchronously about modifications in the configuration and a cleaner codebase. If you're interested in the 1.4.x series, checkout the stb-1-4 CVS branch. The System Tools Backends are a set of cross-platform modules for Linux, FreeBSD and other Unix systems. The backends provide an common DBus interface to all distros for modifying or reading the system configuration. Right now the System Tools Backends fully support various distros/OS such as: Redhat, Mandrake, SuSE, Fedora, Debian (and derivations like Ubuntu, Linex, Guadalinex...), Gentoo, Slackware, FreeBSD, OpenNA, PLD, Vine and Specifix. Downloading =========== You can get it from : http://system-tools-backends.freedesktop.org/downloads/1.9/ From carlosg@gnome.org Tue Jun 6 10:05:22 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B7A6E3B014C; Tue, 6 Jun 2006 10:05:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26770-09; Tue, 6 Jun 2006 10:05:22 -0400 (EDT) Received: from localhost.localdomain (133.Red-88-0-26.dynamicIP.rima-tde.net [88.0.26.133]) by menubar.gnome.org (Postfix) with ESMTP id 7A00B3B012A; Tue, 6 Jun 2006 10:05:21 -0400 (EDT) Received: by localhost.localdomain (Postfix, from userid 1000) id 0618413F73; Tue, 6 Jun 2006 16:05:20 +0200 (CEST) From: Carlos Garnacho To: system-tools-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Tue, 06 Jun 2006 16:05:19 +0200 Message-Id: <1149602719.21203.9.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.528 tagged_above=-999 required=2 tests=[AWL=-0.000, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, RCVD_IN_NJABL_DUL=1.946, RCVD_IN_SORBS_DUL=2.046] X-Spam-Score: 1.528 X-Spam-Level: * X-Mailman-Approved-At: Tue, 06 Jun 2006 10:20:34 -0400 Cc: Subject: Liboobs 0.1.0 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 14:05:22 -0000 Liboobs 0.1.0, 2006-06-06 ----------------------------------------------- Liboobs version 0.1.0 "Shattered ataraxia" has been released. Liboobs is a lightweight library that provides a GObject based interface to system-tools-backends. It's completely abstracted of the communication and authentication details, making it easy for applications to integrate with the system details. Downloading =========== You can get it from : ftp://ftp.gnome.org/pub/GNOME/sources/liboobs/0.1/ From carlosg@gnome.org Tue Jun 6 10:05:35 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AB0C03B012A; Tue, 6 Jun 2006 10:05:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26769-07; Tue, 6 Jun 2006 10:05:34 -0400 (EDT) Received: from localhost.localdomain (133.Red-88-0-26.dynamicIP.rima-tde.net [88.0.26.133]) by menubar.gnome.org (Postfix) with ESMTP id D49943B0179; Tue, 6 Jun 2006 10:05:33 -0400 (EDT) Received: by localhost.localdomain (Postfix, from userid 1000) id E163B13F73; Tue, 6 Jun 2006 16:05:31 +0200 (CEST) From: Carlos Garnacho To: system-tools-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Date: Tue, 06 Jun 2006 16:05:31 +0200 Message-Id: <1149602731.21203.11.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.528 tagged_above=-999 required=2 tests=[AWL=-0.000, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, RCVD_IN_NJABL_DUL=1.946, RCVD_IN_SORBS_DUL=2.046] X-Spam-Score: 1.528 X-Spam-Level: * X-Mailman-Approved-At: Tue, 06 Jun 2006 10:20:34 -0400 Cc: Subject: GNOME System Tools 2.15.0 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 14:05:35 -0000 The GNOME System Tools version 2.15.0 "Uncanny routine" have been released. The GNOME System Tools are a set of cross-platform configuration utilities for Linux and other Unix systems. The frontends knows nothing about the underlying system and provide the same user interface across the different types of systems. Internally they use the Liboobs library. Changes since last release =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D Common =3D=3D=3D=3D=3D=3D - use intltool 0.35, move ALL_LINGUAS to po/LINGUAS (Przemys=C5=82aw Grzegorczyk) - Make g-s-t work fine with --as-needed (Mike Auty) All tools =3D=3D=3D=3D=3D=3D=3D=3D=3D - Use liboobs. The XML interface is deprecated (Garnacho) - Adopt a more instant apply policy (Garnacho) - UI Changes (Garnacho) - Use named icons in menus and window icon for themeability (Sebastien Bacher, Garnacho) - Set translation domain for popups (Sebastien Bacher) Users =3D=3D=3D=3D=3D - Use adduser/addgroup if it's present (Garnacho) Network =3D=3D=3D=3D=3D=3D=3D - Use DHCP as the default (Garnacho) Services =3D=3D=3D=3D=3D=3D=3D=3D - Add advanced runlevels/priorities editor (Garnacho) Shares =3D=3D=3D=3D=3D=3D - Rework defaults for new shared folders (Garnacho) Time =3D=3D=3D=3D - Update some NTP servers (Gary Coady, Jun Kobayashi) Translations =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D - dz (Pema Geyleg) - es (Francisco Javier F. Serrador) - et (Ivar Smolin) - fi (Ilkka Tuohela) - gl (Ignacio Casal Quinteiro) - gu (Ankit Patel) - it (Francesco Marletta) - ka (Vladimer Sichinava) - nb (Kjartan Maraas) - ru (Nickolay V. Shmyrev) - th (Theppitak Karoonboonyanan) - tr (Deniz Kocak) Downloading =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D You can get it from : ftp://ftp.gnome.org/pub/GNOME/sources/gnome-system-tools/2.15/ From kalle.vahlman@gmail.com Wed Jun 7 13:52:15 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6E4E43B01A4 for ; Wed, 7 Jun 2006 13:52:15 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02283-05 for ; Wed, 7 Jun 2006 13:52:14 -0400 (EDT) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.168]) by menubar.gnome.org (Postfix) with ESMTP id 965853B0115 for ; Wed, 7 Jun 2006 13:52:13 -0400 (EDT) Received: by ug-out-1314.google.com with SMTP id u2so434421uge for ; Wed, 07 Jun 2006 10:52:12 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=iebILRnovVdTxqGwouC/tR/+4MtaielhlX8Ua0W3DfGDpIfDH3f9KvKP70TzbcVubjtjL/zWOS7/A2VM/5vvfCOtbjHJsooRdCtWuC03vTCdPlQ6u7BZgs1lUvDhzlgKMUpdMeg2eI3oWqrM64fhyC+c+LkzIbKwCkxiTwVCgEI= Received: by 10.67.101.10 with SMTP id d10mr759171ugm; Wed, 07 Jun 2006 10:40:55 -0700 (PDT) Received: by 10.67.16.10 with HTTP; Wed, 7 Jun 2006 10:40:55 -0700 (PDT) Message-ID: <177e83dd0606071040h35f807a8o205c18c2a68ee184@mail.gmail.com> Date: Wed, 7 Jun 2006 20:40:55 +0300 From: "Kalle Vahlman" To: gnome-announce-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.432 tagged_above=-999 required=2 tests=[AWL=-0.390, BAYES_00=-2.599, RCVD_IN_BL_SPAMCOP_NET=1.558, SPF_PASS=-0.001] X-Spam-Score: -1.432 X-Spam-Level: X-Mailman-Approved-At: Wed, 07 Jun 2006 14:03:53 -0400 Subject: [Announce] The Scw library version 0.4.4 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: zuh@iki.fi List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 17:52:15 -0000 I'm happy to announce a new release of Scw, the chat-oriented widget set! (I have a broken memory chip, didn't remember to send announcements for the releases between 0.3.0 and 0.4.4...) What's new? ========= The release 0.4.4 includes the following changes (from 0.3.0): * Bugfixes: - Draw much less (but still enough ;) - Fix memory leaks * API changes: - scw_view_set_column_foldable(): Add a boolean argument to control the foldability (previously you couldn't undo setting foldability) - New signal: "buffer-request" - New method: scw_view_scroll_to_row(): Scrolls the view to given row (a GtkTreePath) * Gtk-docs, at last! (and possibly more, but haven't managed to keep track of all the individual fixes) What is it? ======= Scw is a library that includes widgets designed for chat programs. Currently this means (but will be extended with time): * ScwView, a view that has: - Activatable text (urls, user names, etc) - Embedded icons - Pango markup - Wrapping - GtkTreeModel implementations as data storage - Different interaction modes (select, pan, smart pan) * ScwEntry, an derivate of GtkEntry which adds: - Simple input history Python and Ruby bindings are available, Java-Gtk bindings are (still) planned (but not on the immediate todo list). Any bindings will be welcomed. As a bonus feature, the widgets are guaranteed to compile and work on the Maemo[1] platform (used in the Nokia 770[2] that everybody is so exited about). More detailed description, as well as API documentation is found on the home page of Scw. Applications that use Scw ================== * Rirc (an irssi2 client, not exactly sure about status) * Silky (is being ported to it in the REWRITE branch, http://silky.sourceforge.net/ * Telepathy people have been doing a proto client using Scw (http://telepathy.freedesktop.org) * Your app here possibly? Let me know! Where to get it? ============ Homepage: http://iki.fi/zuh/scw/ Version 0.4.4: http://iki.fi/zuh/scw/scw-0.4.4.tar.gz Python bindings http://iki.fi/zuh/scw/python-scw-0.4.0.tar.gz Ruby bindings http://iki.fi/zuh/scw/ruby-scw-0.4.0.tar.gz Communication options ================ As I haven't yet set up mailing lists or bugzilla or anything really, bug reports and other stuff should be sent straight to me at zuh@iki.fi. -- Kalle Vahlman, zuh@iki.fi Powered by http://movial.fi Interesting stuff at http://syslog.movial.fi From Brian.Cameron@Sun.COM Wed Jun 7 18:25:45 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D74D13B04F0; Wed, 7 Jun 2006 18:24:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19021-09; Wed, 7 Jun 2006 18:24:40 -0400 (EDT) Received: from brmea-mail-1.sun.com (brmea-mail-1.Sun.COM [192.18.98.31]) by menubar.gnome.org (Postfix) with ESMTP id 648333B0E7D; Wed, 7 Jun 2006 18:24:21 -0400 (EDT) Received: from fe-amer-04.sun.com ([192.18.108.178]) by brmea-mail-1.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k57MOKiX019647; Wed, 7 Jun 2006 16:24:20 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0I00A01GLFT100@mail-amer.sun.com> (original mail from Brian.Cameron@Sun.COM); Wed, 07 Jun 2006 16:24:20 -0600 (MDT) Received: from [192.9.61.158] by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0I00M6DGWJIGM4@mail-amer.sun.com>; Wed, 07 Jun 2006 16:24:20 -0600 (MDT) Date: Wed, 07 Jun 2006 17:24:20 -0500 From: Brian Cameron Sender: Brian.Cameron@Sun.COM To: gnome-announce-list@gnome.org, gdm-list@gnome.org Message-id: <44875214.1030303@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5.0.2 (X11/20060515) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.446 tagged_above=-999 required=2 tests=[AWL=-0.002, BAYES_00=-2.599, TW_GD=0.077, TW_PM=0.077, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.446 X-Spam-Level: Cc: Subject: GDM2 2.8.0.8 (stable), the "SecurityFix" Release] X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 22:25:46 -0000 AOOH-GAH -------- (If you have no clue what gdm is, skip a few paragraphs down first) The 2.8.0.8 release is a stable release of GDM (note GDM 2.8.0.8 corresponds with gnome-2-12 branch) with the following new features. Note this contains an important security fix, so users and distros should update immediately. - Correction for serious security issue where the user can enter the GDM configuration GUI with a user password when the Face Browser is enabled. Refer to bugzilla.gnome.org bug #343476 (Brian Cameron) This issue impacts all versions of GDM 2.8.0.0-2.8.0.7, 2.14.0-2.14.7, and 2.15.0-2.15.3. This issue was reported to vendor-sec one week ago and has ID #CVE-2006-2452. - Translation updates (Stanislav Brabec, Josep Puigdemont i Casamaj\303\263, Abel Cheung, Priit Laes, Christophe Merlet, Clytie Siddall, \303\205smund Skj\303\246veland, Tommi Vainikainen) Note: GDM2 was originally written by Martin K. Petersen . Much work has been done on GDM2 by George Lebl, and Brian Cameron currently shares maintainership duties with the Queen of England. Note2: If installing from the tarball do note that make install overwrites most of the setup files, all except gdm.conf. It will however save backups with the .orig extension first. #ifndef GDM_DISABLE_DEPRECATED Note3: Note3 has been depracated ... #endif /* GDM_DISABLE_DEPRECATED */ Downloading: ============ Online Documentation: http://www.gnome.org/projects/gdm/ http://ftp.gnome.org/pub/GNOME/sources/gdm/2.15/ No RPM this time around BTW. Have fun. A spec file is included though, so you can try: rpmbuild -ta gdm-whatever.tar.gz Have fun, Brian From Brian.Cameron@Sun.COM Wed Jun 7 18:27:17 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7C4C83B0C49; Wed, 7 Jun 2006 18:27:17 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19552-05; Wed, 7 Jun 2006 18:27:15 -0400 (EDT) Received: from brmea-mail-3.sun.com (brmea-mail-3.Sun.COM [192.18.98.34]) by menubar.gnome.org (Postfix) with ESMTP id CCF8D3B0E66; Wed, 7 Jun 2006 18:27:14 -0400 (EDT) Received: from fe-amer-02.sun.com ([192.18.108.176]) by brmea-mail-3.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k57MRDvQ016057; Wed, 7 Jun 2006 16:27:14 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0I00401GJDHP00@mail-amer.sun.com> (original mail from Brian.Cameron@Sun.COM); Wed, 07 Jun 2006 16:27:13 -0600 (MDT) Received: from [192.9.61.158] by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0I00I5KH1CUVP4@mail-amer.sun.com>; Wed, 07 Jun 2006 16:27:13 -0600 (MDT) Date: Wed, 07 Jun 2006 17:27:13 -0500 From: Brian Cameron Sender: Brian.Cameron@Sun.COM To: gnome-announce-list@gnome.org, gdm-list@gnome.org Message-id: <448752C1.30509@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5.0.2 (X11/20060515) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.408 tagged_above=-999 required=2 tests=[AWL=-0.041, BAYES_00=-2.599, TW_DM=0.077, TW_GD=0.077, TW_PM=0.077, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.408 X-Spam-Level: Cc: Subject: GDM2 2.14.8 (stable), the "SecurityFix" Release X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 22:27:17 -0000 AOOH-GAH -------- (If you have no clue what gdm is, skip a few paragraphs down first) The 2.14.8 release is a stable release of GDM with the following new features. Note this contains an important security fix, so users and distros should update immediately. - Correction for serious security issue where the user can enter the GDM configuration GUI with a user password when the Face Browser is enabled. Refer to bugzilla.gnome.org bug #343476 (Brian Cameron) This issue impacts all versions of GDM 2.8.0.0-2.8.0.7, 2.14.0-2.14.7, and 2.15.0-2.15.3. This issue was reported to vendor-sec one week ago and has ID #CVE-2006-2452. - Fixed bug where when the "Include All" button is modified in the Users tab, the Automatic/Timed login dropdown lists update properly. (Brian Cameron) - Now gdmflexiserver calls gdmcomm_check with FALSE so it will not pop up a dialog. gdmflexiserver can be run with the --command option which can be used when the user does not have permission to a DISPLAY, so trying to show a dialog was causing gdmflexiserver to core dump when the check failed. (Brian Cameron) - Added gestures to the AccessKeyMouseEvents configuration file so that users can access more accessibility features using dwell gestures. (Brian Cameron) - Translation updates (Laurent Dhima, Pema Geyleg, Theppitak Karoonboonyanan, Gabor Kelemen, Ahmad Riza H Nst, Vincent van Adrighem) Note: GDM2 was originally written by Martin K. Petersen . Much work has been done on GDM2 by George Lebl, and Brian Cameron currently shares maintainership duties with the Queen of England. Note2: If installing from the tarball do note that make install overwrites most of the setup files, all except gdm.conf. It will however save backups with the .orig extension first. #ifndef GDM_DISABLE_DEPRECATED Note3: Note3 has been depracated ... #endif /* GDM_DISABLE_DEPRECATED */ Downloading: ============ Online Documentation - http://www.gnome.org/projects/gdm/ Latest Stable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.14/ Latest Unstable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.15/ No RPM this time around BTW. Have fun. A spec file is included though, so you can try: rpmbuild -ta gdm-whatever.tar.gz Have fun, Brian From dsandras@seconix.com Wed Jun 7 15:09:24 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E46CC3B027D for ; Wed, 7 Jun 2006 15:09:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07646-04 for ; Wed, 7 Jun 2006 15:09:22 -0400 (EDT) Received: from ns20085.ovh.net (ekiga.net [213.186.62.145]) by menubar.gnome.org (Postfix) with ESMTP id A72183B0239 for ; Wed, 7 Jun 2006 15:09:21 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ns20085.ovh.net (Postfix) with ESMTP id BF54049704 for ; Wed, 7 Jun 2006 20:51:50 +0200 (CEST) Received: from ns20085.ovh.net ([127.0.0.1]) by localhost (ns20085.ovh.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09043-07 for ; Wed, 7 Jun 2006 20:51:49 +0200 (CEST) Received: from [192.168.0.161] (173.132-245-81.adsl-dyn.isp.belgacom.be [81.245.132.173]) (using SSLv3 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by ns20085.ovh.net (Postfix) with ESMTP id DF3C549702 for ; Wed, 7 Jun 2006 20:51:48 +0200 (CEST) From: Damien Sandras To: gnome-announce-list@gnome.org Content-Type: text/plain Date: Wed, 07 Jun 2006 21:10:04 +0200 Message-Id: <1149707404.2474.40.camel@golgoth01> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at gnomemeeting.net X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 03:15:35 -0400 Subject: Ekiga 2.0.2 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 19:09:24 -0000 This is release of Ekiga for GNOME 2.14 * What is it ? ============== Ekiga is a free Voice over IP phone allowing you to do free calls over the Internet. Ekiga is the first Open Source application to support both H.323 and SIP, as well as audio and video. Ekiga was formerly known as GnomeMeeting. More information can be found at http://www.ekiga.org * Where to get it ? =================== Ekiga is available at: ftp://ftp.gnome.org/pub/gnome/sources/ekiga/2.0 * What's changed ? ================== Ekiga: * Fixed problem with the activation of actions on contacts in the addressbook. (#334685, Julien Puydt) * Added a tooltip for the status label, to read the full text even when the message is cut off. (Jan Schampera) * Added missing notifiers for "new message" sound event. (Damien Sandras) * Prevent the UI from freezing a few micro seconds while registering accounts. (Damien Sandras) * Fixed OpenSolaris support. (#335196, Sun Microsystems/Boying Lu) * Fixed wrong key name in URL handlers section for GNOME. (Jan Schampera) * Fixed detection of ended calls in DBUS. (Julien Puydt) * Fixed playing/pausing of calls in DBUS. (#333465, Julien Puydt) * Fixed useless focus grabbing in druid which made some pages impossible to get the focus. (Jan Schampera) * Fixed crash when creating a contact while not having any local addressbook. (#334960, Julien Puydt) * Fixed leaking the system username on the network. (#335784, Julien Puydt) * Make sure the reason of the end of the call is always the last thing displayed in the status bar. (Damien Sandras) * Fixed browsing of ILS servers. (Damien Sandras) * Made sensitivity of the zoom related menuitems dependant on the actual zoom factor. (#336575, Jan Schampera) * Added "New contact" menu item to the contacts context menu. (#336588, Jan Schampera) * Fixed frame size calculation of video frame. (#336572, Jan Schampera) * Fixed sensitivity setting of "Fullscreen" menu item and sensitifity when leaving Fullscreen mode. (#336575, Jan Schampera) * Fixed non-selectable text problem in the chat window. (#336789, Jan Schampera) * Fixed LDAP search filter so that it works with LDAP servers that do not have a "location" attribute. (#336849, Damien Sandras) * Made most dialogs/popups closable by ESC (partially fixes #337494) (Jan Schampera) * Fixed problem with cursor turning into a hand at the wrong position in the chat window. (#336793, Julien Puydt) * Fixed text chat formatting corruption. (#335794, Simon Wood) * Monitor IP address changes to update the registrations. (#335398, Damien Sandras) * Color inactive tabs when receiving a chat message. (#335857, Simon Wood) * Open new tabs in the background. (#335857, Simon Wood) * Avoid losing error dialogs behind the druid (#338270, Julien Puydt) * Fixed wrong packets loss count. (#339866, Damien Sandras) * Fixed video flipping bug during calls with preview active. (#339867, Damien Sandras) * Fixes crash in address book when no address book is selected (#34210, Julien Puydt) * Fixed handling of call forwarding/transfer in case of incoming call (Damien Sandras) Ekiga WIN32: * Fixed remote contacts crashing on WIN32 or with the non GNOME version. (#335472, Jan Schampera) * Ekiga will now detect if it is already running on WIN32 and bail out. (#337794, Michael Rickmann) * Fixed command-line parsing on WIN32. (#337797, Michael Rickmann) * Fixed stuttering on WIN32. (#337799, Michael Rickmann) * Made the use of SDL more reliable on WIN32. (#337795, Michael Rickmann) * Made the help work on WIN32. (#337798, Michael Rickmann) * Made the 4s delay in the audio test work on WIN32. (#337799, Michael Rickmann) * Fixed fullscreen issues on WIN32 (#337792, Michael Rickmann). SIP support: * Fixed rport support when receving SIP request from another host than the one mentionned in the Via. (#335002, Damien Sandras) * Remove REGISTER and SUBSCRIBE from the Allow field. (#334979, Damien Sandras) * Fixed SRV lookup when creating connections. (#334994, Damien Sandras) * Improved CANCEL handling. (i#334985, Damien Sandras) * Fixed user in From field so that it always corresponds to a registered account. (#335006, Damien Sandras) * Unregister using the same remote address than the one used to register. (#334999, Damien Sandras) * Prevent loop of UNREGISTER requests when leaving. (#334997, Damien Sandras) * Allow duplicate INVITE PDUs to be treated concurrently. (#334847, Damien Sandras) * Set the From field to the address of record of the default SIP account. (#334457, Damien Sandras) * Fixed infinite loop when calling an host with more than 1 SRV record. (Damien Sandras) * Added support for SDP offers in the OK response, and SDP answer in the ACK request. (Damien Sandras) * Fixed wrong behavior with different priorities when building the priorities list. (#339314, Damien Sandras) * Do not lookup recipient's address when using an outbound proxy. (#334455, Damien Sandras) * Fixed problem with dynamic payload type codecs. (#337456, Damien Sandras) * Fixed routing with proxies who do not support the 'lr' parameter. (#340415, Damien Sandras) H.323 support: * Uses lower initial bandwidth by default when registering to gatekeepers. (#300366, Damien Sandras) Devices: * Fixed broken OSS plugin. (#338505, Damien Sandras) * Added resizing capability for VYUY YUYV formats. (#330946, Luc Saillard) * Improved UVC camera support. (Martin Rubli from Logitech) * Fixed parsing of JPEG streams with DHT markers. (Martin Rubli from Logitech) -- _ Damien Sandras (o- //\ Ekiga Softphone: http://www.ekiga.org/ v_/_ FOSDEM 2006 : http://www.fosdem.org/ SIP Phone : sip:dsandras@ekiga.net sip:600000@ekiga.net From murrayc@murrayc.com Wed Jun 7 15:39:02 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 71EF73B0DDF; Wed, 7 Jun 2006 15:38:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09273-01; Wed, 7 Jun 2006 15:38:57 -0400 (EDT) Received: from swarthymail-a3.dreamhost.com (mailbigip2.dreamhost.com [208.97.132.53]) by menubar.gnome.org (Postfix) with ESMTP id 3DC723B0E65; Wed, 7 Jun 2006 15:38:44 -0400 (EDT) Received: from noname (p5497CB1E.dip.t-dialin.net [84.151.203.30]) by swarthymail-a3.dreamhost.com (Postfix) with ESMTP id 1E03F7F05A; Wed, 7 Jun 2006 12:38:41 -0700 (PDT) From: Murray Cumming To: gnome-announce , gtkmm-list Content-Type: text/plain Date: Wed, 07 Jun 2006 21:38:36 +0200 Message-Id: <1149709116.5916.26.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.684 tagged_above=-999 required=2 tests=[AWL=-0.695, BAYES_00=-2.599, RCVD_IN_SORBS_WEB=1.456, TW_GT=0.077, TW_TK=0.077] X-Spam-Score: -1.684 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 03:15:35 -0400 Cc: Subject: ANNOUNCE: gtkmm 2.9.4 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 19:39:02 -0000 *** gtkmm 2.9/2.10: gtkmm 2.9 wraps new API in GTK+ 2.9, and is API/ABI-compatibile with gtkmm 2.8, 2.6 and 2.4. It is a version of the gtkmm-2.4 API. This will become the API-stable gtkmm 2.10, wrapping GTK+ 2.10. gtkmm stays in-sync with GTK+ by following the official GNOME release schedule: http://www.gnome.org/start/unstable/ Bindings for the rest of the GNOME Platform are also available, and are also API-stable. http://www.gtkmm.org *** Changes gtkmm 2.9.4: Gtk: * PrintContext: - Added set_track_print_status() and cancel(), paginate signal. (Marko Anastasov) - get_cairo() renamed to get_cairo_context(), - get_fontmap() renamed to get_pango_fontmap(), - create_context() renamed to create_pango_context(), - create_layout() renamed to create_pango_layout(). (Murray Cumming) * PrintJob: - Added set/get_track_print_status(). (Marko Anastasov) Pango: * Added CairoFontMap. (Might be removed later) * Context: Added update_from_cairo_context(), set_cairo_font_options(), set_cairo_font_options(), get_font_options(), set_resolution(), get_resolution(). * Layout: Added create(Cairo::Context), update_from_cairo_context(), add_to_cairo_context(). * LayoutLine: Added show_in_cairo_context(), add_to_cairo_context(). (Murray Cumming) *** Download http://www.gtkmm.org/download.shtml You will need libsigc++ 2.0, available here: https://sourceforge.net/project/showfiles.php?group_id=1970 *** Development There is active discussion on the mailing list: http://www.gtkmm.org/mailinglist.shtml and in the #c++ channel on irc.gnome.org -- Murray Cumming murray@usa.net www.murrayc.com From sandmann@daimi.au.dk Thu Jun 8 23:24:44 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id ACF2A3B0418 for ; Thu, 8 Jun 2006 23:24:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23677-04 for ; Thu, 8 Jun 2006 23:24:43 -0400 (EDT) Received: from daimi.au.dk (daimi.au.dk [130.225.16.1]) by menubar.gnome.org (Postfix) with ESMTP id A7F633B0408 for ; Thu, 8 Jun 2006 23:24:42 -0400 (EDT) Received: from camel18.daimi.au.dk (camel18 [130.225.16.137]) by daimi.au.dk (8.12.11.20060308/8.12.11) with ESMTP id k593OeQD008266; Fri, 9 Jun 2006 05:24:40 +0200 Received: from camel18.daimi.au.dk (IDENT:U2FsdGVkX1/iO3gyunaS0bFYmoVfNsPfhKVcvodnSF0@localhost [127.0.0.1]) by camel18.daimi.au.dk (8.13.1/8.13.1) with ESMTP id k593OeQV004787; Fri, 9 Jun 2006 05:24:40 +0200 Received: (from sandmann@localhost) by camel18.daimi.au.dk (8.13.1/8.13.1/Submit) id k593OedI004782; Fri, 9 Jun 2006 05:24:40 +0200 X-Authentication-Warning: camel18.daimi.au.dk: sandmann set sender to sandmann@daimi.au.dk using -f Sender: sandmann@daimi.au.dk To: gnome-announce-list@gnome.org From: Soeren Sandmann Date: 09 Jun 2006 05:24:40 +0200 Message-ID: Lines: 65 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Scanned-By: MIMEDefang 2.56 on 130.225.16.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.574 tagged_above=-999 required=2 tests=[AWL=0.025, BAYES_00=-2.599] X-Spam-Score: -2.574 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 03:15:35 -0400 Subject: Sysprof Linux Profiler v. 1.0.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jun 2006 03:24:44 -0000 * What is it? -------------------------- Sysprof is a sampling system-wide CPU profiler for Linux. Sysprof uses a Linux kernel module to profile the entire system, not just an individual application.=20 Of course, sysprof handles threads and shared libraries, and applications do not have to be recompiled or instrumented. In fact they don't even have to be restarted.=20 Just insert the kernel module and start sysprof. * Features: ---------------------- - Profiles all running processes, not just a single application - Call graph support showing time spent in each branch of the call tree - Has a simple graphical interface - Profiles can be loaded and saved - Easy to use: Just insert the kernel module and start sysprof - Supports Fedora debuginfo packages * Sysprof 1.0.3 -------------------------- - Compiles with the latest kernels Please report bugs as well as success or failure stories to=20 sandmann@daimi au dk * Where can I get it? -------------------------------------------- Home page: http://www.daimi.au.dk/~sandmann/sysprof/ Source code: http://www.daimi.au.dk/~sandmann/sysprof/sysprof-1.0.3.tar.gz Sysprof requires - Linux 2.6.11 or later, compiled with profiling support - GTK+ 2.6 - libglade 2.5 It is known to work out the box on Fedora Core 4 and 5. S=F8ren From pjc51@cam.ac.uk Fri Jun 9 05:57:47 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B73C93B01A8 for ; Fri, 9 Jun 2006 05:57:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12981-09 for ; Fri, 9 Jun 2006 05:57:45 -0400 (EDT) Received: from ppsw-9.csi.cam.ac.uk (unknown [131.111.8.139]) by menubar.gnome.org (Postfix) with ESMTP id B5D2C3B00B1 for ; Fri, 9 Jun 2006 05:57:45 -0400 (EDT) X-Cam-SpamDetails: Not scanned X-Cam-AntiVirus: No virus found X-Cam-ScannerInfo: http://www.cam.ac.uk/cs/email/scanner/ Received: from tiree.ra.phy.cam.ac.uk ([131.111.48.169]:49064) by ppsw-9.csi.cam.ac.uk (ppsw.cam.ac.uk [131.111.8.139]:25) with esmtp id 1FodkB-0007u9-Tm (Exim 4.54) (return-path ); Fri, 09 Jun 2006 10:57:31 +0100 From: Phil Cowans To: gnome-announce-list@gnome.org, dasherteam@yahoogroups.com Content-Type: text/plain Date: Fri, 09 Jun 2006 10:57:30 +0100 Message-Id: <1149847050.16654.9.camel@tiree.ra.phy.cam.ac.uk> Mime-Version: 1.0 X-Mailer: Evolution 2.0.4 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.599 tagged_above=-999 required=2 tests=[BAYES_00=-2.599] X-Spam-Score: -2.599 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 06:34:46 -0400 Cc: Subject: Dasher 4.1.4 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jun 2006 09:57:47 -0000 Dasher 4.1.4 is now available for download from: http://ftp.gnome.org/pub/GNOME/sources/dasher/4.1/ Windows and (unofficial) Debian binaries are available from: http://www.dasher.org.uk/Download.html The 4.1.x series of Dasher releases is a development series which will lead to version 4.2.0 in time for the GNOME 2.16 release. If you're after stability, install the latest 4.0.x version instead. The 4.1.x series aims to improve interaction with the desktop environment and window manager, for example to make it easier to enter text into other applications. 4.1.4 fixes a number of bugs which were present in 4.1.0. We're always greatful for any feedback from users - either via the GNOME Bugzilla: http://bugzilla.gnome.org/ Or by email to dasher@mrao.cam.ac.uk. Thanks to all who contributed to this release, Phil Cowans 9th June 2006 From Rich.Burridge@Sun.COM Fri Jun 9 09:59:59 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4262D3B010A for ; Fri, 9 Jun 2006 09:59:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 29076-03 for ; Fri, 9 Jun 2006 09:59:57 -0400 (EDT) Received: from brmea-mail-2.sun.com (brmea-mail-2.Sun.COM [192.18.98.43]) by menubar.gnome.org (Postfix) with ESMTP id 436C93B01BE for ; Fri, 9 Jun 2006 09:59:57 -0400 (EDT) Received: from fe-amer-03.sun.com ([192.18.108.177]) by brmea-mail-2.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k59DxtP3010388 for ; Fri, 9 Jun 2006 07:59:56 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0L00I01IP1J100@mail-amer.sun.com> (original mail from Rich.Burridge@Sun.COM) for gnome-announce-list@gnome.org; Fri, 09 Jun 2006 07:59:55 -0600 (MDT) Received: from [192.168.1.102] (c-71-202-99-109.hsd1.ca.comcast.net [71.202.99.109]) by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0L008L6IVU1C10@mail-amer.sun.com> for gnome-announce-list@gnome.org; Fri, 09 Jun 2006 07:59:55 -0600 (MDT) Date: Fri, 09 Jun 2006 06:59:21 -0700 From: Rich Burridge Sender: Rich.Burridge@Sun.COM To: gnome-announce-list@gnome.org Message-id: <44897EB9.6060700@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5 (X11/20060327) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.598 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.598 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 11:19:14 -0400 Subject: ANNOUNCE: gcalctool v5.8.13 [hopefully stable] X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jun 2006 13:59:59 -0000 Gcalctool is the default GNOME desktop calculator. It has Basic, Advanced, Financial and Scientific modes. Internally it uses multiple precision arithmetic to produce results to a high degree of accuracy. This (hopefully stable) release is for GNOME 2.15.3. Changes since the last gcalctool version (5.8.13). * From Sami Pietila - Fixed bug #343150. Gcalctool no longer crashes when switching to scientific mode. * Adjusted configure.in so that gcalctool now requires intltool v0.35.0. Updated Translations (thankyou!) Pema Geyleg - dz.po: Updated Dzongkha translation. Vincent van Adrighem - nl.po: Translation updated by Tino Meinen. Clytie Siddall - vi.po: Updated Vietnamese translation. Theppitak Karoonboonyanan - th.po: Updated Thai translation. Miloslav Trmac - cs.po: Updated Czech translation. Raphael Higino - pt_BR.po: Updated Brazilian Portuguese translation. Ignacio Casal Quinteiro - gl.po: Updated Galician Translation. You can download this new version from: http://ftp.gnome.org/pub/GNOME/sources/gcalctool/5.8/ From Rich.Burridge@Sun.COM Fri Jun 9 12:22:20 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1CB123B110C for ; Fri, 9 Jun 2006 12:22:20 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05769-10 for ; Fri, 9 Jun 2006 12:22:18 -0400 (EDT) Received: from brmea-mail-2.sun.com (brmea-mail-2.Sun.COM [192.18.98.43]) by menubar.gnome.org (Postfix) with ESMTP id 220193B0112 for ; Fri, 9 Jun 2006 12:22:17 -0400 (EDT) Received: from fe-amer-04.sun.com ([192.18.108.178]) by brmea-mail-2.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k59GMHje022696 for ; Fri, 9 Jun 2006 10:22:17 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0L00601PDSJP00@mail-amer.sun.com> (original mail from Rich.Burridge@Sun.COM) for gnome-announce-list@gnome.org; Fri, 09 Jun 2006 10:22:17 -0600 (MDT) Received: from [192.168.1.102] (c-71-202-99-109.hsd1.ca.comcast.net [71.202.99.109]) by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0L000IIPH4FY20@mail-amer.sun.com> for gnome-announce-list@gnome.org; Fri, 09 Jun 2006 10:22:17 -0600 (MDT) Date: Fri, 09 Jun 2006 09:21:43 -0700 From: Rich Burridge Sender: Rich.Burridge@Sun.COM To: gnome-announce-list@gnome.org Message-id: <4489A017.2030903@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5 (X11/20060327) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.598 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.598 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 16:30:37 -0400 Subject: [ANNOUNCE: gcalctool v5.8.16 [hopefully stable] X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jun 2006 16:22:20 -0000 Sorry, that should have been gcalctool 5.8.16 (not 5.8.13). -------- Original Message -------- Subject: ANNOUNCE: gcalctool v5.8.16 [hopefully stable] Date: Fri, 09 Jun 2006 06:59:21 -0700 From: Rich Burridge To: gnome-announce-list@gnome.org Gcalctool is the default GNOME desktop calculator. It has Basic, Advanced, Financial and Scientific modes. Internally it uses multiple precision arithmetic to produce results to a high degree of accuracy. This (hopefully stable) release is for GNOME 2.15.3. Changes since the last gcalctool version (5.8.13). * From Sami Pietila - Fixed bug #343150. Gcalctool no longer crashes when switching to scientific mode. * Adjusted configure.in so that gcalctool now requires intltool v0.35.0. Updated Translations (thankyou!) Pema Geyleg - dz.po: Updated Dzongkha translation. Vincent van Adrighem - nl.po: Translation updated by Tino Meinen. Clytie Siddall - vi.po: Updated Vietnamese translation. Theppitak Karoonboonyanan - th.po: Updated Thai translation. Miloslav Trmac - cs.po: Updated Czech translation. Raphael Higino - pt_BR.po: Updated Brazilian Portuguese translation. Ignacio Casal Quinteiro - gl.po: Updated Galician Translation. You can download this new version from: http://ftp.gnome.org/pub/GNOME/sources/gcalctool/5.8/ _______________________________________________ gnome-announce-list mailing list gnome-announce-list@gnome.org http://mail.gnome.org/mailman/listinfo/gnome-announce-list From lucasr.at.mundo@gmail.com Sat Jun 10 15:18:25 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BFE893B0355 for ; Sat, 10 Jun 2006 15:18:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22270-07 for ; Sat, 10 Jun 2006 15:18:19 -0400 (EDT) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.225]) by menubar.gnome.org (Postfix) with ESMTP id 497F63B00D0 for ; Sat, 10 Jun 2006 15:18:16 -0400 (EDT) Received: by wr-out-0506.google.com with SMTP id i12so1072899wra for ; Sat, 10 Jun 2006 12:18:15 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=Az6w6MZB4nAyrTPN/c1dBiy1QeZ3eP7h8u4jteTnJO41JONOrr+vLcaDgMaoq4CGUsTFL9SOAi4mYQa1U/quNPHKz5w9wCTni0PKnnsN+iZD4toNQ2U72zqyiU0cW7CuR3V4pUG+hJ2fX18MkuKthXuw+tWs50Y+gO+yiE+erPs= Received: by 10.54.128.19 with SMTP id a19mr2963077wrd; Sat, 10 Jun 2006 12:18:15 -0700 (PDT) Received: by 10.54.93.4 with HTTP; Sat, 10 Jun 2006 12:18:15 -0700 (PDT) Message-ID: <31a62e6f0606101218v6e0f8de0rec084fa7f081f2bc@mail.gmail.com> Date: Sat, 10 Jun 2006 16:18:15 -0300 From: "Lucas Rocha" To: gnome-announce-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.525 tagged_above=-999 required=2 tests=[AWL=0.075, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.525 X-Spam-Level: X-Mailman-Approved-At: Sat, 10 Jun 2006 15:24:41 -0400 Subject: Eye of GNOME 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Jun 2006 19:18:25 -0000 Hi all, * What is it ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Eye of GNOME (eog) is the image viewer for the GNOME desktop. * What's changed in 2.15.3 ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D - Properly sort image filenames containing numbers (Felix Riemann) [#340957= ] - Thumbnailing fixes (Felix Riemann) [#342817] - Fix printing for images with alpha channel (Jan K=FCmmel) [#322057] - Updated translations: Ignacio Casal Quinteiro (gl), Ankit Patel (gu), Theppitak Karoonboonyanan (th), Clytie Siddall (vi), Inaki Larra=F1aga (e= u), Pema Geyleg (dz), Francisco Javier F. Serrador (es) * Where can I get it ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Source code: http://ftp.gnome.org/pub/GNOME/sources/eog/2.15/eog-2.15.3.tar.gz md5sums: 1e39941d5327a28f0b3e88dfc6d5d2d0 http://ftp.gnome.org/pub/GNOME/sources/eog/2.15/eog-2.15.3.tar.bz2 md5sums: 29a9768a41dce2823e93c8de60b638e3 Enjoy! --lucasr From nudrema@gmail.com Sun Jun 11 07:21:01 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1905C3B057C; Sun, 11 Jun 2006 07:21:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06331-08; Sun, 11 Jun 2006 07:20:58 -0400 (EDT) Received: from swip.net (mailfe01.swip.net [212.247.154.1]) by menubar.gnome.org (Postfix) with ESMTP id EA99F3B0318; Sun, 11 Jun 2006 07:20:57 -0400 (EDT) X-T2-Posting-ID: Ee7YIbSG3O5rNcT4cGADretWTWrDEjpwS9FwzyhFhzk= X-Cloudmark-Score: 0.000000 [] Received: from [83.182.30.172] (HELO [10.0.0.13]) by mailfe01.swip.net (CommuniGate Pro SMTP 5.0.8) with ESMTP id 192388062; Sun, 11 Jun 2006 13:20:20 +0200 Message-ID: <448BFC72.5000804@gmail.com> Date: Sun, 11 Jun 2006 13:20:18 +0200 From: =?ISO-8859-1?Q?Steve_Fr=E9cinaux?= User-Agent: Thunderbird 1.5.0.2 (X11/20060522) MIME-Version: 1.0 To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.966 tagged_above=-999 required=2 tests=[AWL=-0.436, BAYES_00=-2.599, SPF_NEUTRAL=1.069] X-Spam-Score: -1.966 X-Spam-Level: X-Mailman-Approved-At: Sun, 11 Jun 2006 07:32:46 -0400 Cc: gedit-list Subject: ANNOUNCE: gedit-plugins 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 11:21:01 -0000 Hi all, gedit-plugins 2.15.3 is available. gedit-plugins is a set of (hopefuly useful) plugins for the GNOME text editor, gedit. homepage: http://live.gnome.org/GeditPlugins * Changes in 2.15.3 ==================== New features and fixes: - Autotools fixes (Jesse van den Kieboom, Steve Frcinaux) - Terminal now uses gnome-terminal default profile (Steve Frcinaux) - New Smart Spaces unindent plugin (Steve Frcinaux) - various fixes New and updated translations: - cs (Jakub Friedl) - pt_BR (Raphael Higino) * Download =========== http://ftp.gnome.org/pub/GNOME/sources/gedit-plugins/2.15/gedit-plugins-2.15.3.tar.gz md5sums: 1d7c70969fbd60b466e00f3295bced59 http://ftp.gnome.org/pub/GNOME/sources/gedit-plugins/2.15/gedit-plugins-2.15.3.tar.bz2 md5sums: 4182e0b3b522cb35e5348ce00c8aaa1d * Development ============== Don't hesitate to have a talk with the gedit team on #gedit on irc.gnome.org if you want to give gedit-plugins some of the love it needs :-) -- Steve http://tw.apinc.org From martyn@imendio.com Sun Jun 11 17:10:48 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1F0903B013F for ; Sun, 11 Jun 2006 17:10:48 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02407-03 for ; Sun, 11 Jun 2006 17:10:46 -0400 (EDT) Received: from holken.mikan.net (holken.mikan.net [83.145.56.183]) by menubar.gnome.org (Postfix) with ESMTP id A284B3B066D for ; Sun, 11 Jun 2006 17:10:45 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by holken.mikan.net (Postfix) with ESMTP id 30EA033525E; Sun, 11 Jun 2006 22:49:14 +0200 (CEST) Received: from holken.mikan.net ([127.0.0.1]) by localhost (holken.mikan.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03671-03; Sun, 11 Jun 2006 22:49:09 +0200 (CEST) Received: from [192.168.0.2] (host86-135-75-230.range86-135.btcentralplus.com [86.135.75.230]) by holken.mikan.net (Postfix) with ESMTP id 716673352A4; Sun, 11 Jun 2006 22:49:09 +0200 (CEST) From: Martyn Russell To: gnome-announce-list@gnome.org Content-Type: text/plain Organization: Imendio Date: Sun, 11 Jun 2006 21:49:40 +0100 Message-Id: <1150058980.30411.5.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at holken.mikan.net X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.586 tagged_above=-999 required=2 tests=[AWL=0.013, BAYES_00=-2.599] X-Spam-Score: -2.586 X-Spam-Level: X-Mailman-Approved-At: Sun, 11 Jun 2006 17:36:08 -0400 Cc: gossip-dev@lists.imendio.com Subject: ANNOUNCE: Gossip 0.11.2 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 21:10:48 -0000 Gossip 0.11.1 is now available for download from: http://download.gnome.org/sources/gossip/0.11/ What is Gossip ============== Gossip is an instant messaging client for GNOME with an easy-to-use interface, providing users of the GNOME Desktop with a friendly way to keep in touch with their friends. What's new in Gossip 0.11.2 =========================== - Added avatars to the chat window (Martyn). - Cleaned up the preferences and some of the gconf keys have changed, this means some of your preferences might need resetting (Martyn). - Added a preference for showing avatars (Martyn). - Added a preference to disable the contact online notifications (Martyn). - Stop flashing the task list a while after new messages arrive (Richard). Bugs Fixed ========== - Fixed #342928, Show subscription requests in the roster instead of JUST the notification tray which isn't ideal for people without one (Martyn). - Fixed #343375, Make sure we follow the XMPP spec for RFC 3921 with regards to adding and removing contacts. Subscription was broken somehow since 0.10 (Jonatan Magnusson). - Fixed #339285, Move to new LINGUAS method (patch by Przemyslaw Grzegorczyk). - Fixed #339679, Use case insensitive search in the logs (Richard). - Fixed #343511, Support scroll events in the presence chooser (Richard). - Fixed #331773, Ask for confirmation before clearing the list (Richard). - Fixed #344438, Set mnemonic target for the theme combo (Richard). Updated Translations ==================== Jordi Mallach (ca) Richard Hult (sv) Wouter Bolsterlee (nl) More information: ================= The Gossip project page: http://developer.imendio.com/wiki/Gossip If you want to subscribe to just announcements of Gossip you can join the announcement list here: http://lists.imendio.com/mailman/listinfo/announce 11 June 2006 Gossip Team From hughsient@gmail.com Sun Jun 11 16:10:31 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 029C73B0422 for ; Sun, 11 Jun 2006 16:10:31 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31984-01 for ; Sun, 11 Jun 2006 16:10:28 -0400 (EDT) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.168]) by menubar.gnome.org (Postfix) with ESMTP id 034F83B02CC for ; Sun, 11 Jun 2006 16:10:27 -0400 (EDT) Received: by ug-out-1314.google.com with SMTP id k3so2123698ugf for ; Sun, 11 Jun 2006 13:10:03 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:subject:from:reply-to:to:cc:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; b=HRcsTP79snnDu6H8ZeGN3Q6/nt35smFKdHMw9SBcLONZCQ2eVs5l1vjT5nHY94RPJ1RJsNuEcmy+rT+Dk1FOFWvHutu5HWk50bzy6X376OZom5F33NDNaFDr5szRY8Y870/jaEpj2C+0bC4v382GnYa1nd0EcgVRgkGSV9++cCA= Received: by 10.66.216.20 with SMTP id o20mr4467611ugg; Sun, 11 Jun 2006 13:02:54 -0700 (PDT) Received: from ?10.0.0.14? ( [86.132.112.248]) by mx.gmail.com with ESMTP id e1sm5926698ugf.2006.06.11.13.02.53; Sun, 11 Jun 2006 13:02:53 -0700 (PDT) From: Richard Hughes To: GnomePowerManager List Content-Type: text/plain; charset=UTF-8 Date: Sun, 11 Jun 2006 21:02:29 +0100 Message-Id: <1150056149.3896.9.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 (2.6.2-1.fc5.5) Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.705 tagged_above=-999 required=2 tests=[AWL=-0.663, BAYES_00=-2.599, RCVD_IN_BL_SPAMCOP_NET=1.558, SPF_PASS=-0.001] X-Spam-Score: -1.705 X-Spam-Level: X-Mailman-Approved-At: Sun, 11 Jun 2006 17:36:20 -0400 Cc: GNOME-Announce List , GNOME TranslationProject Subject: GNOME Power Manager 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: richard@hughsie.com List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 20:10:31 -0000 GNOME Power Manager is a session daemon for the GNOME desktop environment that makes it easy to manage the power on your laptop or desktop system. Download at the usual place : http://ftp.gnome.org/pub/GNOME/sources/gnome-power-manager/2.15/ ============== Version 2.15.3 ============== Released June 11, 2006 General - Depend on intltool 0.35.0 to build - Grammar fixes in the schema and glade file (Clytie Siddall) - Add in XFCE option so we display in the XFCE menu. lp:43077 - Use GtkStatusIcon when GTK version >= 2.9.0 (Jaap Haitsma) - Add in new docbook documentation about the dbus interface. - Rename and add a few DBUS methods from feedback on XDG list. Power Manager - Actually show the correct levels in the pixmaps for the mouse and keyboard. - Add a gconf key so we can disable the action for when the lid is previously shut and the AC power removed at a later time as this was causing confusion. - Limit the capacity to 100% - Undim the screen when we have to unlock returning from resume. #333290 - Rework the brightness handling so that we only have one way of doing the transitions. This simplifies things greatly. #341616 - Update for gnome-screensaver API changes. #344103 Power Preferences - Add the configurable action for power button press in the UI. #344325. Power Info - Set the correct colours of the line depending on discharging/charging status. #338175. Translators - Theppitak Karoonboonyanan & Roys Hengwatanakul (Thai) - Wouter Bolsterlee (Netherlands) - Clytie Siddall (Vietnamese) - Funda Wang (Simplified Chinese) - ivind Hoel (Norwegian bokml) - Francisco Javier F. Serrador (Spanish) - Raphael Higino (Brazilian Portuguese) From gjc@inescporto.pt Sun Jun 11 18:14:06 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F035C3B0137 for ; Sun, 11 Jun 2006 18:14:05 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05363-03 for ; Sun, 11 Jun 2006 18:14:04 -0400 (EDT) Received: from animal.inescn.pt (correio.inescn.pt [194.117.24.9]) by menubar.gnome.org (Postfix) with ESMTP id 82AD43B02F9 for ; Sun, 11 Jun 2006 18:14:03 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by animal.inescn.pt (8.13.6/8.13.6/7) with ESMTP id k5BMCqqs022474; Sun, 11 Jun 2006 23:12:52 +0100 (WEST) Received: from pong.inescporto.pt (pong.inescn.pt [194.117.26.74]) by animal.inescn.pt (8.13.6/8.13.6/5) with ESMTP id k5BMCZ29022454; Sun, 11 Jun 2006 23:12:35 +0100 (WEST) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by pong.inescporto.pt (Postfix) with ESMTP id DB83A119191; Sun, 11 Jun 2006 23:09:37 +0100 (WEST) From: "Gustavo J. A. M. Carneiro" To: gnome-announce-list@gnome.org Content-Type: text/plain Date: Sun, 11 Jun 2006 23:12:34 +0100 Message-Id: <1150063954.5758.0.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at inescporto.pt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.394 tagged_above=-999 required=2 tests=[AWL=-0.006, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001, TW_EV=0.077] X-Spam-Score: -2.394 X-Spam-Level: X-Mailman-Approved-At: Sun, 11 Jun 2006 18:37:01 -0400 Cc: PyGTK List Subject: ANNOUNCE: GnomePython 2.15.2 (unstable) X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 22:14:06 -0000 GnomePython 2.15.2 has been just released. This is a unstable release for testing purposes. GnomePython provides python interfacing modules for most of the GNOME Developer Platform libraries (except those already wrapped somewhere else.) Currently the list of provided python modules includes: - gnome, gnome.ui - gnomecanvas - gnomevfs - gconf - bonobo, bonobo.activation, bonobo.ui Overview of Changes from gnome-python 2.15.1 to gnome-python 2.15.2 =================================================================== * gnomevfs - Fix FileInfo.valid_fields computation (Sidnei da Silva) - Add some missing permission constants (Sidnei) - Add new FileInfo.access field (Gustavo) - Add sync variant of "file control" method (Gustavo) * gnome - gnome.program_init changes process name on Linux with prctl (Gustavo) The source tarball can be found here: http://ftp.gnome.org/pub/GNOME/sources/gnome-python/2.15/ Please file bug reports (bugs, missing APIs) here: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-python -- Gustavo J. A. M. Carneiro The universe is always one step beyond logic From William.Walker@Sun.COM Sun Jun 11 19:53:33 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C98A93B00BC; Sun, 11 Jun 2006 19:53:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09467-02; Sun, 11 Jun 2006 19:53:31 -0400 (EDT) Received: from brmea-mail-4.sun.com (brmea-mail-4.Sun.COM [192.18.98.36]) by menubar.gnome.org (Postfix) with ESMTP id 656553B00B7; Sun, 11 Jun 2006 19:53:31 -0400 (EDT) Received: from fe-amer-06.sun.com ([192.18.108.180]) by brmea-mail-4.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k5BNqQ6B020577; Sun, 11 Jun 2006 17:52:26 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0P00M01Y1KY900@mail-amer.sun.com> (original mail from William.Walker@Sun.COM); Sun, 11 Jun 2006 17:52:26 -0600 (MDT) Received: from [192.168.1.105] ([68.116.197.173]) by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0P0097BZN5LTZ1@mail-amer.sun.com>; Sun, 11 Jun 2006 17:52:26 -0600 (MDT) Date: Sun, 11 Jun 2006 19:52:16 -0400 From: Willie Walker Sender: William.Walker@Sun.COM To: orca-list@gnome.org, gnome-announce-list@gnome.org, gnome-accessibility-list@gnome.org Message-id: <1150069937.5071.4.camel@localhost> MIME-version: 1.0 X-Mailer: Evolution 2.6.1 Content-type: text/plain; charset=UTF-8 Content-transfer-encoding: 8BIT X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.587 tagged_above=-999 required=2 tests=[AWL=0.011, BAYES_00=-2.599, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.587 X-Spam-Level: X-Mailman-Approved-At: Mon, 12 Jun 2006 03:22:46 -0400 Cc: Subject: Announcing Orca 0.2.5 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 23:53:34 -0000 ================ * What is Orca ? ================ Orca is a scriptable screen reader for the GNOME desktop for people with visual impairments. ================== * What's changed ? ================== We've done a lot of work on Orca since the last release in both the new functionality and quality/stability departments. We thank all of our users that are providing feedback on gnome-list@gnome.org (see http://mail.gnome.org/mailman/listinfo/orca-list) as well as http://bugzilla.gnome.org. We value all of your feedback and help. We also appreciate contributions from community members, including Al Puzzuoli who is doing a great job helping with the Orca Wiki at http://live.gnome.org/Orca and Francisco Javier Dorado Martnez who has been testing and providing patches. Thank you all! ================== Orca 0.2.5 Changes ================== * Re-map keyboard bindings and add additional keyboard bindings. See http://live.gnome.org/Orca/KeyboardCommands for the list. * Improvements to StarOffice support to provide better access to text documents and spreadsheets. Also get rid of spurious "0.00" text that was showing up in braille for StarOffice buttons. * Addition of announcing text selection as it is selected and unselected. * Generalize the "read table cell row" functionality. If you press Insert+F11, it will toggle the feature to read the entire row of a table or just the selected table cell when you move from row to row. * Improved support for SayAll of text objects (SayAll for flat review is still on the to do list). * Addition of self-voicing module to tell Orca to be quiet when a self-voicing application is present. * Addition of ability to turn Orca into a speech server that can accessed via simple HTTP commands (default port is 20433, but this is customizable via orca.settings.speechServerPort). This will allow self-voicing applications to use Orca for their speech, thus letting them get the user's speech settings preferences. * Addition of orca.settings.enableBrailleGrouping (default=False). NOTE: this represents a change in the UI for Orca - the behavior to date has been to always group menu items on the braille display. The system responsiveness was bad for large menus, however, so we decided to make this an optional feature turned off by default. * Addition of utility to report information on the currently active script. This is primarily for helping script writers do debugging and is accessed by pressing Insert+F3. * Addition of orca.settings.cacheAccessibles (default=True) as a means to turn the local caching of accessible objects on or off. This is primarily an Orca developer debugging feature. * Fix for bug 344218 - gnome-terminal would not be presented properly if it was started after Orca. * Fix for bug 343666: pressing buttons on braille displays could cause a hang. * Partial fix for bug 342022 - provide some defensive mechanisms to help prevent some hangs. * Fix for bug 343133 - do not hang when doing a flat-review of a man page in gnome-terminal. * Fix for bug #343013 - the command line option strings should not be translatable. * Partial fix for bug 319652 - become a better Python thread citizen to help reduce hangs. * Fix for bug 342303 - stop speech when the user presses the mouse button. * Fix for bug 342122 - use all labels for an objecty when presenting an object. * Fix for bug 342133 - do not read all labels in gnome-window-properties application when it appears. * Fix for bug 341415 - when moving between workspaces with metacity, eliminate redundant output and alsomake sure workspace names are announced. * Refactor of various modules to move script writing utilities into util.py. * More fleshing out of the test plan. ====================== * Where can I get it ? ====================== Source code: http://ftp.gnome.org/pub/GNOME/sources/orca/0.2/orca-0.2.5.tar.gz Enjoy. Will, Mike, Rich, Lynn, and the Orca community From callum@spooky-possum.org Mon Jun 12 02:05:21 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 06D8C3B000D; Mon, 12 Jun 2006 02:05:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21232-04; Mon, 12 Jun 2006 02:05:19 -0400 (EDT) Received: from genamics.blastula.net (dns1.blastula.net [64.92.214.155]) by menubar.gnome.org (Postfix) with ESMTP id 4C4D83B00D4; Mon, 12 Jun 2006 02:05:19 -0400 (EDT) Received: from [60.234.103.60] (helo=[60.234.103.60]) by genamics.blastula.net with esmtpa (Exim 4.52) id 1FpfWT-0001Yo-NG; Mon, 12 Jun 2006 18:03:39 +1200 From: Callum McKenzie To: games-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Date: Mon, 12 Jun 2006 18:03:05 +1200 Message-Id: <1150092185.10939.21.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Antivirus-Scanner: Clean mail though you should still use an Antivirus X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - genamics.blastula.net X-AntiAbuse: Original Domain - gnome.org X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [47 12] X-AntiAbuse: Sender Address Domain - spooky-possum.org X-Source: X-Source-Args: X-Source-Dir: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.538 tagged_above=-999 required=2 tests=[AWL=0.061, BAYES_00=-2.599] X-Spam-Score: -2.538 X-Spam-Level: X-Mailman-Approved-At: Mon, 12 Jun 2006 03:23:07 -0400 Cc: Subject: gnome-games 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: callum@spooky-possum.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 06:05:21 -0000 gnome-games 2.15.3 ================== This development release of gnome-games is a little short on new content since we are in the process of changing maintainers and not everything is organised yet. Things that have changed: General: - High scores: the file is truncated properly if you use a short name. This stops you getting a top-ten score with 11th-place. - Require the latest intltool. Aisleriot - Radio-buttons for Klondike options work now. There are new choices for how you want your cards dealt in Klondike. - Explicitly protect the cards from garbage collection. This is should fix bug #342038, but doesn't actually seem to work. Robots: - Really, really, fix the desktop icon name this time (I hope). As usual, get it from: http://download.gnome.org/sources/gnome-games/2.15/ - Callum From gjc@inescporto.pt Sun Jun 11 18:38:11 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E31903B0350 for ; Sun, 11 Jun 2006 18:38:10 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06171-08 for ; Sun, 11 Jun 2006 18:38:08 -0400 (EDT) Received: from animal.inescn.pt (correio.inescn.pt [194.117.24.9]) by menubar.gnome.org (Postfix) with ESMTP id D88DC3B025D for ; Sun, 11 Jun 2006 18:38:07 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by animal.inescn.pt (8.13.6/8.13.6/7) with ESMTP id k5BMau8H023824; Sun, 11 Jun 2006 23:36:56 +0100 (WEST) Received: from pong.inescporto.pt (pong.inescn.pt [194.117.26.74]) by animal.inescn.pt (8.13.6/8.13.6/5) with ESMTP id k5BMaf3c023811; Sun, 11 Jun 2006 23:36:41 +0100 (WEST) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by pong.inescporto.pt (Postfix) with ESMTP id CC3E1119191; Sun, 11 Jun 2006 23:33:43 +0100 (WEST) From: "Gustavo J. A. M. Carneiro" To: PyGTK Content-Type: text/plain Date: Sun, 11 Jun 2006 23:36:40 +0100 Message-Id: <1150065400.5758.3.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at inescporto.pt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.39 tagged_above=-999 required=2 tests=[AWL=-0.002, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: -2.39 X-Spam-Level: X-Mailman-Approved-At: Mon, 12 Jun 2006 03:23:25 -0400 Cc: gnome-announce-list@gnome.org Subject: ANNOUNCE: GnomePythonDesktop 2.15.3 (unstable) X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 22:38:11 -0000 GnomePythonDesktop 2.15.3 has been just released. This is a unstable release for testing purposes. GnomePythonDesktop provides python interfacing modules for some GNOME libraries part of the GNOME Desktop. The following Python modules are included: - gnomeapplet - gnomeprint, gnomeprint.ui - gtksourceview - wnck - totem.plparser - gtop - nautilusburn - mediaprofiles - metacity - rsvg - gnomekeyring - gnomedesktop Overview of Changes from 2.15.2 to 2.15.3 ============================================================================== * gnomekeyring - Improve API (throw exceptions instead of returning error codes) (Gustavo) - Add an example (Gustavo) * metacity - Update to new C API (Frederic Peters) - Wrap wnck_window_get_geometry() (Magnus Therning) * nautilusburn - Update to new improved C API (Python API is not preserved) (Gustavo) The source tarball can be found here: http://ftp.gnome.org/pub/GNOME/sources/gnome-python-desktop/2.15/ Please file bug reports (bugs, missing APIs) here: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-python-desktop Happy testing! -- Gustavo J. A. M. Carneiro The universe is always one step beyond logic. From gjc@inescporto.pt Sun Jun 11 19:00:35 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 48BC73B0253; Sun, 11 Jun 2006 19:00:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07173-08; Sun, 11 Jun 2006 19:00:34 -0400 (EDT) Received: from animal.inescn.pt (correio.inescn.pt [194.117.24.9]) by menubar.gnome.org (Postfix) with ESMTP id 6D4C93B014F; Sun, 11 Jun 2006 19:00:33 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by animal.inescn.pt (8.13.6/8.13.6/7) with ESMTP id k5BMxkXt025129; Sun, 11 Jun 2006 23:59:46 +0100 (WEST) Received: from pong.inescporto.pt (pong.inescn.pt [194.117.26.74]) by animal.inescn.pt (8.13.6/8.13.6/5) with ESMTP id k5BMxSnQ025107; Sun, 11 Jun 2006 23:59:28 +0100 (WEST) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by pong.inescporto.pt (Postfix) with ESMTP id 08E1F119191; Sun, 11 Jun 2006 23:56:31 +0100 (WEST) From: "Gustavo J. A. M. Carneiro" To: gnome-announce-list@gnome.org Content-Type: text/plain Date: Sun, 11 Jun 2006 23:59:27 +0100 Message-Id: <1150066767.5758.5.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at inescporto.pt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.427 tagged_above=-999 required=2 tests=[AWL=0.038, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.427 X-Spam-Level: X-Mailman-Approved-At: Mon, 12 Jun 2006 03:23:49 -0400 Cc: orbit-list@gnome.org, PyGTK List Subject: ANNOUNCE: PyORBit 2.14.1 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 23:00:36 -0000 "PyORBit is a Python binding for the ORBit2 CORBA ORB. It was developped to suit the needs of the bonobo bindings in GNOME-Python, but is usable for other purposes as well. It aims to follow the standard Python language mapping for CORBA. It can generate stubs at runtime from typelibs, IDL files, or by introspecting remote objects using ORBit2's IModule typelib capabilities." The source tarball can be found here: http://ftp.gnome.org/pub/GNOME/sources/pyorbit/2.13/ Please file bug reports (bugs, missing APIs) here: http://bugzilla.gnome.org/enter_bug.cgi?product=pyorbit Changes from 2.14.0 to 2.14.1: - Fix build problem on cygwin - Fix segmentation fault on orb.shutdown() - Make it work on Python 2.5 and 64-bit platforms -- Gustavo J. A. M. Carneiro The universe is always one step beyond logic From mclasen@redhat.com Mon Jun 12 12:04:32 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 41C3B3B000C; Mon, 12 Jun 2006 12:04:32 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09149-04; Mon, 12 Jun 2006 12:04:29 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 7270D3B009D; Mon, 12 Jun 2006 12:04:29 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5CG3bc9030255; Mon, 12 Jun 2006 12:03:37 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [172.16.76.12]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5CG3bc3007778; Mon, 12 Jun 2006 12:03:37 -0400 Received: from golem.boston.redhat.com (golem.boston.redhat.com [172.16.80.24]) by mail.boston.redhat.com (8.12.8/8.12.8) with ESMTP id k5CG3blQ018463; Mon, 12 Jun 2006 12:03:37 -0400 From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain Date: Mon, 12 Jun 2006 12:03:36 -0400 Message-Id: <1150128216.15532.14.camel@golem.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.1 (2.7.1-1) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.426 tagged_above=-999 required=2 tests=[AWL=-0.056, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_LQ=0.077, TW_RX=0.077, TW_TR=0.077] X-Spam-Score: -2.426 X-Spam-Level: Cc: Subject: GLib 2.11.3 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 16:04:32 -0000 GLib 2.11.3 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.11/ http://ftp.gnome.org/pub/GNOME/sources/glib/2.11/ glib-2.11.3.tar.bz2 md5sum: 41931c4965f7e1848f81b800914905cd glib-2.11.3.tar.gz md5sum: cd78ebc535e29cdef0fed9487aa21dac This is a development release leading up to GLib 2.12. Notes: * This is unstable development release. While it has had a bit of testing, there are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GLib 2.10. If you have problems, you'll need to reinstall GLib 2.10. * GLib 2.12 will be source and binary compatible with the GLib 2.10.x series (for some caveats, see the README). At this point, the API additions in the 2.11.x series are almost finished. * Bugs should be reported to http://bugzilla.gnome.org. About GLib ========== GLib is the low-level core library that forms the basis for projects such as GTK+ and GNOME. It provides data structure handling for C, portability wrappers, and interfaces for such runtime functionality as an event loop, threads, dynamic loading, and an object system. More information about GLib is available at: http://www.gtk.org/ An installation guide for the GTK+ libraries, including GLib, can be found at: http://developer.gnome.org/doc/API/2.0/gtk/gtk-building.html Overview of Changes from GLib 2.11.2 to GLib 2.11.3 =================================================== * GBookmarkFile: - g_bookmark_file_move_item: Return TRUE in case of an empty target * Bugs fixed: 343919 gunicollate.c: strxfrm bug on VC8 * Updated translations (fi) A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=343919 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Emmanuele Bassi, Kazuki Iwamoto, Tor Lillqvist Matthias Clasen June 12, 2006 From Brian.Cameron@Sun.COM Mon Jun 12 14:30:32 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4CFFC3B0010; Mon, 12 Jun 2006 14:30:32 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24480-06; Mon, 12 Jun 2006 14:30:31 -0400 (EDT) Received: from brmea-mail-3.sun.com (brmea-mail-3.Sun.COM [192.18.98.34]) by menubar.gnome.org (Postfix) with ESMTP id F1D1A3B0078; Mon, 12 Jun 2006 14:30:30 -0400 (EDT) Received: from fe-amer-01.sun.com ([192.18.108.175]) by brmea-mail-3.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k5CITqhn016383; Mon, 12 Jun 2006 12:29:52 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0R00001F5FBN00@mail-amer.sun.com> (original mail from Brian.Cameron@Sun.COM); Mon, 12 Jun 2006 12:29:52 -0600 (MDT) Received: from [192.168.0.20] ([206.135.142.194]) by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0R002PJFDNG7X0@mail-amer.sun.com>; Mon, 12 Jun 2006 12:29:52 -0600 (MDT) Date: Mon, 12 Jun 2006 13:29:49 -0500 From: Brian Cameron Sender: Brian.Cameron@Sun.COM To: gnome-announce-list@gnome.org, gdm-list@gnome.org Message-id: <448DB29D.9020208@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5.0.2 (X11/20060515) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.444 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, TW_GD=0.077, TW_PM=0.077, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.444 X-Spam-Level: Cc: Subject: GDM2 2.15.5 (unstable), the "Caraboy" Release X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 18:30:32 -0000 AOOH-GAH -------- (If you have no clue what gdm is, skip a few paragraphs down first) The 2.15.5 release is an unstable release of GDM with the following new features. - Correction to autologin PAM service name so automatic login works. (Brian Cameron) - Fix compiler warnings that were causing core dumping issues on some platforms (Brian Cameron) - Translation updates (Josep Puigdemont Casamaj\303\263, Changwoo Ryu) Note that this also contains an important security fix that was originally released in 2.15.4, so please make sure to update if using an older version than 2.15.4. - Correction for serious security issue where the user can enter the GDM configuration GUI with a user password when the Face Browser is enabled. Refer to bugzilla.gnome.org bug #343476 (Brian Cameron) This issue impacts all versions of GDM 2.8.0.0-2.8.0.7, 2.14.0-2.14.7, and 2.15.0-2.15.3. This issue was reported to vendor-sec one week ago and has ID #CVE-2006-2452. Note: GDM2 was originally written by Martin K. Petersen . Much work has been done on GDM2 by George Lebl, and Brian Cameron currently shares maintainership duties with the Queen of England. Note2: If installing from the tarball do note that make install overwrites most of the setup files, all except gdm.conf. It will however save backups with the .orig extension first. #ifndef GDM_DISABLE_DEPRECATED Note3: Note3 has been depracated ... #endif /* GDM_DISABLE_DEPRECATED */ Downloading: ============ Online Documentation - http://www.gnome.org/projects/gdm/ Latest Stable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.14/ Latest Unstable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.15/ No RPM this time around BTW. Have fun. A spec file is included though, so you can try: rpmbuild -ta gdm-whatever.tar.gz Have fun, Brian From Brian.Cameron@Sun.COM Mon Jun 12 15:08:35 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 715123B034C; Mon, 12 Jun 2006 15:08:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26412-02; Mon, 12 Jun 2006 15:08:32 -0400 (EDT) Received: from brmea-mail-1.sun.com (brmea-mail-1.Sun.COM [192.18.98.31]) by menubar.gnome.org (Postfix) with ESMTP id 99D443B025E; Mon, 12 Jun 2006 15:08:32 -0400 (EDT) Received: from fe-amer-05.sun.com ([192.18.108.179]) by brmea-mail-1.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k5CJ7bEh002523; Mon, 12 Jun 2006 13:07:37 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0R00501GXLIW00@mail-amer.sun.com> (original mail from Brian.Cameron@Sun.COM); Mon, 12 Jun 2006 13:07:37 -0600 (MDT) Received: from [192.168.0.20] ([206.135.142.194]) by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0R00A6NH4LVTH0@mail-amer.sun.com>; Mon, 12 Jun 2006 13:07:37 -0600 (MDT) Date: Mon, 12 Jun 2006 14:07:35 -0500 From: Brian Cameron Sender: Brian.Cameron@Sun.COM To: gnome-announce-list@gnome.org, gdm-list@gnome.org Message-id: <448DBB77.9000608@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5.0.2 (X11/20060515) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.444 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, TW_GD=0.077, TW_PM=0.077, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.444 X-Spam-Level: Cc: Subject: GDM2 2.14.9 (stable), the "Lincoln Park" Release X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 19:08:35 -0000 AOOH-GAH -------- (If you have no clue what gdm is, skip a few paragraphs down first) The 2.14.9 release is a stable release of GDM with the following new features. - Correction to autologin PAM service name so automatic login works. (Brian Cameron) - Fix compiler warnings that were causing core dumping issues on some platforms (Brian Cameron) - Translation updates (Josep Puigdemont Casamaj\303\263) Note: GDM2 was originally written by Martin K. Petersen . Much work has been done on GDM2 by George Lebl, and Brian Cameron currently shares maintainership duties with the Queen of England. Note2: If installing from the tarball do note that make install overwrites most of the setup files, all except gdm.conf. It will however save backups with the .orig extension first. #ifndef GDM_DISABLE_DEPRECATED Note3: Note3 has been depracated ... #endif /* GDM_DISABLE_DEPRECATED */ Downloading: ============ Online Documentation - http://www.gnome.org/projects/gdm/ Latest Stable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.14/ Latest Unstable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.15/ No RPM this time around BTW. Have fun. A spec file is included though, so you can try: rpmbuild -ta gdm-whatever.tar.gz Have fun, Brian From mclasen@redhat.com Mon Jun 12 15:43:04 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 851123B00E5; Mon, 12 Jun 2006 15:43:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27729-06; Mon, 12 Jun 2006 15:43:02 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 5B16F3B0010; Mon, 12 Jun 2006 15:43:02 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5CJZWav007572; Mon, 12 Jun 2006 15:35:32 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [172.16.76.12]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5CJZWUd001833; Mon, 12 Jun 2006 15:35:32 -0400 Received: from golem.boston.redhat.com (golem.boston.redhat.com [172.16.80.24]) by mail.boston.redhat.com (8.12.8/8.12.8) with ESMTP id k5CJZWlQ009694; Mon, 12 Jun 2006 15:35:32 -0400 From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain Date: Mon, 12 Jun 2006 15:35:31 -0400 Message-Id: <1150140931.15532.18.camel@golem.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.1 (2.7.1-1) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.541 tagged_above=-999 required=2 tests=[AWL=0.060, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.541 X-Spam-Level: Cc: Subject: GTK+ 2.8.19 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 19:43:04 -0000 GTK+ 2.8.19 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.8/ http://ftp.gnome.org/pub/GNOME/sources/gtk+/2.8/ gtk+-2.8.19.tar.bz2 md5sum: 1a03dbed4b794194a610e9d7eb175b06 gtk+-2.8.19.tar.gz md5sum: 604d3263498994c58af378f0ec076e6f This is a bugfix release in the 2.8.x series. It fixes a rare memory corruption issue when using the deprecated GdkFont API. What is GTK+ ============ 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.8 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/ Overview of Changes from GTK+ 2.8.18 to GTK+ 2.8.19 =================================================== Bugs fixed: 341327 Memory corruption inside glib 337491 _gdk_win32_drawable_release_dc: DeleteDC() called on a GetDC() handle 343425 "grab-notify"-signal is not correctly propagated for internal children 344244 Window resizing not working when keeping the aspect fixed 344496 CRLF converting via Clipboard Updated translations (ne) A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=343425,341327,344244,337491,344496 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Markku Vire, Sampo Savolainen, Tim Janik, Tor Lillqvist, Chris Wilson June 12, 2006 Matthias Clasen From newren@gmail.com Mon Jun 12 20:01:08 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C06453B018B for ; Mon, 12 Jun 2006 20:01:08 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03747-10 for ; Mon, 12 Jun 2006 20:01:06 -0400 (EDT) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.203]) by menubar.gnome.org (Postfix) with ESMTP id DCC213B0078 for ; Mon, 12 Jun 2006 20:01:05 -0400 (EDT) Received: by wx-out-0102.google.com with SMTP id h26so971531wxd for ; Mon, 12 Jun 2006 17:00:16 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=tzATDJMp0XzBzC3f1Js6q5t6DW1AJ/Xb3xHu6cJ5HbRxmg4U9Mi4mRfXd+tBd4gF2Jrx0LCPgFnY6WCcrrfEvTgkrAqgyR9TK2LZ0Rxry84BtUi6UXb3giOhJe8CORooz/5D9FkMGku6+JWNaBWjfK/H1pg3dz8Xy5khyLDZnps= Received: by 10.70.29.3 with SMTP id c3mr7026730wxc; Mon, 12 Jun 2006 17:00:16 -0700 (PDT) Received: by 10.70.89.16 with HTTP; Mon, 12 Jun 2006 17:00:16 -0700 (PDT) Message-ID: <51419b2c0606121700j69ef2e93x2dedecfb4c173083@mail.gmail.com> Date: Mon, 12 Jun 2006 18:00:16 -0600 From: "Elijah Newren" To: gnome-announce-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.537 tagged_above=-999 required=2 tests=[AWL=-0.014, BAYES_00=-2.599, SPF_PASS=-0.001, TW_BW=0.077] X-Spam-Score: -2.537 X-Spam-Level: Subject: libwnck 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 00:01:09 -0000 * What is it ? ============== Library for writing different kinds of workspace switchers, window lists, task bars, task menus, etc. Window Navigation Construction Kit. Pronounced "lib-wink" * What's changed ? ================== Fixes - restart activation timeout when the mouse moves to a different workspace (Benjamin) - new methods to test if the names returned by wnck_window_get_name and wnck_window_get_icon_name are real or just FALLBACK_NAME (Dan) [#342577] Misc - don't translate %s (Vincent) [#339069] Translations - Guillaume Savaton (eo) * Where can I get it ? ====================== Source code http://ftp.gnome.org/pub/GNOME/sources/libwnck/2.15/ MD5SUMs 6e9ef41d1aa9e81d6bc33047cccbe07f libwnck-2.15.3.tar.bz2 08a86da5a0225ef1ac5f340b95e74a4c libwnck-2.15.3.tar.gz From newren@gmail.com Mon Jun 12 20:28:13 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2AE023B00A5 for ; Mon, 12 Jun 2006 20:28:13 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04431-07 for ; Mon, 12 Jun 2006 20:28:11 -0400 (EDT) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.193]) by menubar.gnome.org (Postfix) with ESMTP id 6F8173B0078 for ; Mon, 12 Jun 2006 20:28:11 -0400 (EDT) Received: by wx-out-0102.google.com with SMTP id h26so974384wxd for ; Mon, 12 Jun 2006 17:27:35 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=kP6G2sZ3DMwVOY8jQamPOJMaaFSRSXp2y9wwFGXNkpY9JgQhdby0hd2FfdVpmpuaiefE4ZzuZpRcGMYYYQn6Uy0lA4+nsPGxOr+uQMfqytegFiAFLpHQ1Ly8bKHW0FG3kwRN1lWVPIylZ8GP7vkdnEXeWht1ipWqQw7nj0OchIk= Received: by 10.70.132.12 with SMTP id f12mr6858664wxd; Mon, 12 Jun 2006 17:01:49 -0700 (PDT) Received: by 10.70.89.16 with HTTP; Mon, 12 Jun 2006 17:01:49 -0700 (PDT) Message-ID: <51419b2c0606121701y5d42a121o5ab05ac32f69b96@mail.gmail.com> Date: Mon, 12 Jun 2006 18:01:49 -0600 From: "Elijah Newren" To: gnome-announce-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.576 tagged_above=-999 required=2 tests=[AWL=0.024, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.576 X-Spam-Level: Subject: metacity 2.15.5 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 00:28:13 -0000 * What is it ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Metacity is a simple window manager that integrates nicely with GNOME 2. * What's changed ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Thanks to Bj=F6rn Lindqvist, S=F8ren Sandmann, Adam Jackson, Elijah Newren, and Aidan Delaney for improvements in this release. - code cleanup in resizepopup.c (Bj=F6rn) [#341648] - fix a logic bug so that the whole titlebar becomes sensitive to mouse clicks (Bj=F6rn) [#336320] - make mouse cursor when moving windows become a hand (Bj=F6rn) [#337376] - lots and lots of compositor improvements -- beginning of a new layer to abstract transition effects, shrinking and minimizing and exploding effects, fading in and out, unminimize animation that reverses minimize one, translucent menus, bounce on window focus, and all kinds of stuff I don't understand and can't summarize well (S=F8ren, Adam) - Fix a crash on exit/logout from assuming a compositor would always exist (Elijah) [#342166] - code cleanup in tabpopup.c (Aidan Delaney) [#166890] Translations Pema Geyleg (dz), I=F1aki Larra=F1aga Murgoitio (eu), Theppitak Karoonboonyanan (th), Clytie Siddall (vi) * Where can I get it ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Source code http://download.gnome.org/sources/metacity/2.15/ MD5SUMs 057a284898385218b8711229d659c2ed metacity-2.15.5.tar.bz2 983eb3ee58263214e3e57c2f962fbd6a metacity-2.15.5.tar.gz From mclasen@redhat.com Tue Jun 13 02:09:16 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 72FE93B00AF; Tue, 13 Jun 2006 02:09:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12183-04; Tue, 13 Jun 2006 02:09:13 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id B2F773B000C; Tue, 13 Jun 2006 02:09:13 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5D681s3022181; Tue, 13 Jun 2006 02:08:01 -0400 Received: from lacrosse.corp.redhat.com (lacrosse.corp.redhat.com [172.16.52.154]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5D67uRP017686; Tue, 13 Jun 2006 02:07:56 -0400 Received: from [172.16.83.145] (vpn83-145.boston.redhat.com [172.16.83.145]) by lacrosse.corp.redhat.com (8.12.11.20060308/8.11.6) with ESMTP id k5D67tQC015619; Tue, 13 Jun 2006 02:07:56 -0400 From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain; charset=UTF-8 Organization: Red Hat Date: Tue, 13 Jun 2006 02:09:42 -0400 Message-Id: <1150178982.4081.13.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.426 tagged_above=-999 required=2 tests=[AWL=-0.056, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_GD=0.077, TW_GT=0.077, TW_KB=0.077] X-Spam-Score: -2.426 X-Spam-Level: Cc: Subject: GTK+ 2.9.3 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 06:09:16 -0000 GTK+ 2.9.3 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.9/ http://ftp.gnome.org/pub/gnome/sources/gtk+/2.9/ gtk+-2.9.3.tar.bz2 md5sum: d73039a3b5847c352f5740ac908be7d2 gtk+-2.9.3.tar.gz md5sum: 0156eef91d2bbb23f1b6ccb49335fae5 This is a development release leading up to GTK+ 2.10. Notes: * This is unstable development release. There are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GTK+ 2.8. If you have problems, you'll need to reinstall GTK+ 2.8. * GTK+ 2.10 will be source compatible with the GTK+ 2.8 series; the new API additions in GTK+ 2.9.0 are not yet completely finalized, so there are likely incompatibilies between this release and the final 2.10 release. * The ABI version has been bumped from 2.4.0 to 2.10.0, since the filechooser backend interface has been changed. Third-party filechooser backends need to be ported to the new interface. Other third-party modules (input methods, image loaders, etc) just need to be reinstalled in the proper location for GTK+ to find them. * Remaining issues for GTK+ 2.10 can be found with following bugzilla query: http://bugzilla.gnome.org/buglist.cgi?product=gtk%2b&target_milestone=2.10+API+Freeze&target_milestone=2.10+Freeze&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED * Bugs should be reported to http://bugzilla.gnome.org. What is GTK+ ============ 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.4/gtk/gtk-building.html Common questions: http://developer.gnome.org/doc/API/2.4/gtk/gtk-question-index.html http://www.gtk.org/faq/ Overview of Changes from GTK+ 2.9.2 to 2.9.3 ============================================ * GtkPrintOperation: - Introduce an allow-async property - Introduce a GtkPrintOperationAction enumeration - Rename pdf_target to export_filename - Allow to hide "Print to PDF" in the low-level API * GtkNotebook: - Add a destroy notify to gtk_notebook_set_window_creation_hook. * GtkTreeView: - Support grid lines * GtkRange: - Add a number of new stle properties which allow more fexible stepper theming * Bugs fixed: 153212 Have the Paste kbd shortcut jump to the location in the buffer 337491 _gdk_win32_drawable_release_dc: DeleteDC() called on a GetDC() handle 339739 gtk/gtkprintoperation-win32.c: 3 compile error 342339 GtkRange::stepper-spacing style property not implemented correctly 343945 Buttons of a GtkAssistant are not accessible 344148 Wrong reqs for ATK 344209 gtk_notebook_set_window_creation_hook() has no destroy func. 344232 GtkEntry's "Delete" context menu item is sensitive on a non-editable GtkEntry 344244 Window resizing not working when keeping the aspect fixed 344288 gtk_print_operation_preview_is_selected must return a value 344386 gdk-2.0-uninstalled.pc.in and gdkconfig.h 344496 CRLF converting via Clipboard 344504 GtkPrintCapabilities not in gtktypebuiltins.h 344505 Wrong signal registration for create_custom_widget 344512 cvs build issue 344513 pdf print module's print_stream not calling destroy notify 344518 NULL unref in page setup dialogue 344543 gtk_progress_bar_pulse calls gtk_progress_bar_paint directly 344560 gtk_print_settings_[sg]et_scale shouldn't be in percent 344607 memory leaks in gtkrecentchooserdefault.c and gtkrecentchoosermenu.c 344624 Memory leak in gtk_tree_model_filter_finalize: User data not freed 337603 Possible off-by-one in gdk_pango_layout_line_get_clip_region 344239 Wrong filename for gtk-find stock item. 344528 comma at end of GtkPrintOperationAction enum causes mozilla compilation error 344290 horizontal-padding not take into account when placing submenus 344558 document print dialogue response codes 339592 Add print-to-postscript 342249 Allow to draw upper and lower sides of GtkRange's trough differently 344530 gtk_recent_chooser_widget_new_for_manager and gtk_recent_chooser_menu_new_for_manager should allow NULL manager arg * Updated translations (es,fi,gu,ko,th,wa) A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=153212,337491,339739,342339,343945,344148,344209,344232,344244,344288,344386,344496,344504,344505,344512,344513,344518,344543,344560,344607,344624,337603,344239,344528,344290,344558,339592,342249,344530 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Behdad Esfahbod, Bastian Nocera, Alexander Larsson, Jrg Billeter, Murray Cumming, Milosz Derezynski, Tor Lillqvist, Kazuki Iwamoto, Chris Wilson, Michael Natterer, Benjamin Berg, Marko Anastasov, Christian Persch, Masatake Yamamoto, Elijah Newren, John Finlay, Emmanuele Bassi, David Malcolm, John Darrington, Christian Weiske, Yvgen Muntyan, Martyn Russell, Kristian Rietveld June 13, 2006 Matthias Clasen From parente@gmail.com Mon Jun 12 09:07:24 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8979A3B009D for ; Mon, 12 Jun 2006 09:07:24 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03281-09 for ; Mon, 12 Jun 2006 09:07:22 -0400 (EDT) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.231]) by menubar.gnome.org (Postfix) with ESMTP id 9BD863B0083 for ; Mon, 12 Jun 2006 09:07:22 -0400 (EDT) Received: by wr-out-0506.google.com with SMTP id 50so59130wri for ; Mon, 12 Jun 2006 06:06:53 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=Hk2y2xQcbYJKNPf1LW7Y+V28/uYf1U244+IHjlJ7rvPAXFm2IeIHW6o/slpX1K2RUSQzIkrF+sc7i4dF5E8CMLURiFTCBFzpZu9qbgaiDE/D6+W4KrPGXwQqArUp5siLDWhmzDklvsX4fL+9EE4/UFa+de3k689sT00z2J2T/y4= Received: by 10.64.150.20 with SMTP id x20mr4562225qbd; Mon, 12 Jun 2006 06:06:53 -0700 (PDT) Received: by 10.65.154.18 with HTTP; Mon, 12 Jun 2006 06:06:53 -0700 (PDT) Message-ID: <5308fd2c0606120606p43b30477o4e73cfad155dcaa7@mail.gmail.com> Date: Mon, 12 Jun 2006 09:06:53 -0400 From: "Peter Parente" To: gnome-announce-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.589 tagged_above=-999 required=2 tests=[AWL=0.011, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.589 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Subject: lsr-0.2.1 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: parente@cs.unc.edu List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 13:07:24 -0000 ============== * What is it ? ============== Linux Screen Reader (LSR) is an extensible assistive technology for people with disabilities. The design philosophy behind LSR is to provide a core platform that enables the development of LSR extensions for improving desktop application accessibility and usability and shields extension developers from the intricacies of the desktop accessibility architecture. The primary use of the LSR platform is to give people with visual impairments access to the GNOME desktop and its business applications (e.g. Firefox, OpenOffice, Eclipse) using speech, Braille, and screen magnification. The extensions packaged with the LSR core are intended to meet this end. However, LSR's rich support for extensions can be used for a variety of other purposes such as supporting novel input and output devices, improving accessibility for users with other disabilities, enabling multi-modal access to the GNOME desktop, and so forth. ================== * What's changed ? ================== 0.2.1 ===== User interface * Better reporting of accessible components * Combobox current text reported on focus * Tree level reported on level change and first focus (bug #343388) * Menu role and name announced before menu items when switching between menus * Review of visible items works on text, trees, lists, and tables now * Added mute indefinitely key command Scripting * Added DeveloperPerk with the following commands * Refresh all loaded scripts without restarting LSR * Report names of all loaded scripts * Show or hide all development monitor windows * Added -g command line parameter to generate a new extension template * Update of TaskTools to support new output semantics * Added support for text selection events * Added support for storing script and application state separately Devices * Updated Keyboard device to support stateful keys as modifiers (e.g. CapsLock) Architecture * Complete refactor of output interface to support device Style objects * Mapping from semantics (role, title, level, etc.) to styles * Plumbing to support persistence and configuration of extension settings * Plumbing to support auto-generation of settings dialogs for extensions Documentation * Posted Gaim Perk tutorial as hands-on example of writing a script extension * Updated user guide to mention new key bindings * Regenerated epydoc to match latest API Translations * sv(Christian Rose) ====================== * Where can I get it ? ====================== Source code release: http://live.gnome.org/LSR#downloads For more information, visit the LSR home page: http://live.gnome.org/LSR From rodrigo@novell.com Mon Jun 12 17:44:58 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F06E53B016D for ; Mon, 12 Jun 2006 17:44:57 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32717-04 for ; Mon, 12 Jun 2006 17:44:57 -0400 (EDT) Received: from peabody.ximian.com (peabody.ximian.com [130.57.169.10]) by menubar.gnome.org (Postfix) with ESMTP id DCE623B00E5 for ; Mon, 12 Jun 2006 17:44:56 -0400 (EDT) Received: (qmail 22167 invoked from network); 12 Jun 2006 21:43:46 -0000 Received: from localhost (HELO ?164.99.120.183?) (127.0.0.1) by localhost with SMTP; 12 Jun 2006 21:43:46 -0000 From: Rodrigo Moya To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-15 Date: Mon, 12 Jun 2006 23:36:21 +0200 Message-Id: <1150148182.16907.0.camel@formigal.home> Mime-Version: 1.0 X-Mailer: Evolution 2.6.0 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.336 tagged_above=-999 required=2 tests=[AWL=-0.091, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, TW_BX=0.077, TW_IB=0.077] X-Spam-Score: -2.336 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: Control Center List Subject: control-center 2.15.3 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 21:44:58 -0000 Changes since 2.14.2 -------------------- about me: - Fixed typo (Rodrigo Moya) (324971) - Fixed compilation issues (Rodrigo Moya) (344468) default applications: - Added support for Sylpheed (Luca Cavalli) (332659) - Removed unnecessary gnome-terminal argument (Luca Cavalli) (336700) keybindings: - Removed brightness keybindings, now in gnome-power-manager (Bastien Nocera) (339857) keyboard: - Save/restore layout preview window geometry (Sergey Udaltsov) mouse: - Fixed selection when no cursor font is set in GConf (Darren Kenny) (340003) sound: - Added sound device selection (Jrg Billeter) (329112) - Fixed button strings (Rodrigo Moya) (324971) theme-switcher: - Removed drag & drop information text (Thomas Wood) (99535) - Added Install buttons to each tab in the details window (Thomas Wood) - Remember last browsed or installed from location (Thomas Wood) (138795) - Don't allow invalid characters in theme names (Thomas Wood) (139692) - Don't ask user whether to overwrite or not internal files (Thomas Wood) (317375) - Allow saving background image for custom themes (Thomas Wood) (330302) - Fixed UI issues in the save dialog (Thomas Wood) (100622) settings daemon: - Fixed libxklavier engine initialization logic (Sergey Udaltsov) (333091) - Removed references to brightness controls (Bastien Nocera) (339857) - Fixed leaks (Paolo Borelli) (342568, 342570) general: - Updated to new libxklavier API (Sergey Udaltsov) updated translations: - bg (Alexander Shopov) - cs (Miloslav Trmac, Lukas Novotny, Jakub Friedl) - dz (Pema Geyleg) - es (Francisco Javier F. Serrador) - fi (Ilkka Tuohela) - gl (Ignacio Casal Quinteiro) - gu (Ankit Patel) - mg (Simos Xenitellis) - nb (Kjartan Maraas) - sq (Laurent Dhima) - sv (Daniel Nylander) - th (Theppitak Karoonboonyanan) - vi (Clytie Siddall) - zh_CN (Funda Wang) - zh_HK (Chao-Hsiung Liao) - zh_TW (Chao-Hsiung Liao) Availability ------------ http://ftp.gnome.org/pub/GNOME/sources/control-center/2.15/ Contact ------- * Bugs in http://bugzilla.gnome.org * Mailing list http://mail.gnome.org/mailman/listinfo/gnomecc-list -- Rodrigo Moya From behdad.esfahbod@gmail.com Mon Jun 12 17:47:52 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7B80A3B014D for ; Mon, 12 Jun 2006 17:47:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32679-08 for ; Mon, 12 Jun 2006 17:47:50 -0400 (EDT) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.206]) by menubar.gnome.org (Postfix) with ESMTP id 93D3F3B02C1 for ; Mon, 12 Jun 2006 17:47:50 -0400 (EDT) Received: by wx-out-0102.google.com with SMTP id h26so956318wxd for ; Mon, 12 Jun 2006 14:47:02 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:subject:from:to:content-type:date:message-id:mime-version:x-mailer:sender; b=YVJmmmTJDYAPVWyBcXj8x877np/3myVRslCESpGT8RXV9fhXWO7m4zcVtD0bbIyxzLCNy9G4MxoeR4wKgZZNAmVLfJY4S5Cm99AU8jHeau3kamsPLiBWdw/7luc5fNsqJp4eQk4EpFqLzmMhtWaKSOxclPSl65MK68ngzTNkqNo= Received: by 10.70.103.17 with SMTP id a17mr6909562wxc; Mon, 12 Jun 2006 14:47:02 -0700 (PDT) Received: from to-dhcp26.toronto.redhat.com ( [63.250.163.171]) by mx.gmail.com with ESMTP id h34sm6169771wxd.2006.06.12.14.47.01; Mon, 12 Jun 2006 14:47:01 -0700 (PDT) From: Behdad Esfahbod To: gnome-announce-list@gnome.org Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-Vxzn0OEXLlv9C28CHSps" Date: Mon, 12 Jun 2006 17:46:59 -0400 Message-Id: <1150148819.10765.11.camel@home> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 (2.6.1-1.fc5.2) Sender: Behdad Esfahbod X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.6 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.6 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Subject: vte-0.13.2 released [unstable] X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 21:47:52 -0000 --=-Vxzn0OEXLlv9C28CHSps Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Vte-0.13.2 is available for download at: http://download.gnome.org/sources/vte/0.13/ Vte is GNOME 2's virtual-terminal emulation widget. This is an unstable release. 0.13.2 Bug 344666 =E2=80=93 Problems with *_CFLAGS and *_LDFLAGS in makefiles Patch from Stepan Kasal . Bug 339529 =E2=80=93 gnome-terminal (vte) crashes when detatched window is closed Bug 342549 =E2=80=93 uninitialized var (coverity) Patch from Paolo Borelli. Bug 342082 =E2=80=93 vte_invalidate_region() may check whether terminal is realiazed or not Patch from Kouhei Sutou. Bug 340363 =E2=80=93 vte Cygwin build fixes Patch from Cygwin Ports maintainer Bug 341793 =E2=80=93 vte.h doesn't need to include X11/Xlib.h Patch from Kouhei Sutou Require intltool 0.35.0 to have translations in the dist tarballs. Fix typo which may have been causing things like crashes. Behdad Esfahbod 12 June 2006 --=-Vxzn0OEXLlv9C28CHSps Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEjeDTn+4E5dNTERURAjCvAJ9H07aDShKW/mLQfhNyOaMG1RtYsACgixvW gbPOhTT6IK5+BSx0dCk7844= =JsUT -----END PGP SIGNATURE----- --=-Vxzn0OEXLlv9C28CHSps-- From behdad.esfahbod@gmail.com Mon Jun 12 17:52:44 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id EFA613B02CD for ; Mon, 12 Jun 2006 17:52:43 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00550-05 for ; Mon, 12 Jun 2006 17:52:42 -0400 (EDT) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.196]) by menubar.gnome.org (Postfix) with ESMTP id A2EDA3B016D for ; Mon, 12 Jun 2006 17:52:41 -0400 (EDT) Received: by wx-out-0102.google.com with SMTP id h26so957012wxd for ; Mon, 12 Jun 2006 14:51:44 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:subject:from:to:content-type:date:message-id:mime-version:x-mailer:sender; b=HkVpdki0/g3XkGcHUm613LiH99RNWp83QpOiB04twtI9/oyY5QJs7xgUW9ugXUYWTW0FQESua3SiFes9GpwcHFnulMB+jmu6Frg1gjSTz94Z0WNKazKYJCx/0yCrKVvi+sIhO9793kd+R7hBbKFWLBqlIyo5yetvED1gx6HIjnc= Received: by 10.70.36.1 with SMTP id j1mr6891335wxj; Mon, 12 Jun 2006 14:44:52 -0700 (PDT) Received: from to-dhcp26.toronto.redhat.com ( [63.250.163.171]) by mx.gmail.com with ESMTP id h18sm3879342wxd.2006.06.12.14.44.50; Mon, 12 Jun 2006 14:44:51 -0700 (PDT) From: Behdad Esfahbod To: Pango Release Lists , gtk-app-devel-list@gnome.org, gtk-devel-list@gnome.org, gtk-i18n-list@gnome.org, gtk-list@gnome.org Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-HZBsNn3KdPR3jVVwB9gO" Date: Mon, 12 Jun 2006 17:44:37 -0400 Message-Id: <1150148678.10765.8.camel@home> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 (2.6.1-1.fc5.2) Sender: Behdad Esfahbod X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.6 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.6 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: Subject: Pango-1.13.2 released [unstable] X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 21:52:44 -0000 --=-HZBsNn3KdPR3jVVwB9gO Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Pango-1.13.2 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.11/ or http://download.gnome.org/sources/pango/1.13/ 28a6ea9d43c4cd398e7352032f775401 pango-1.13.2.tar.bz2 17d78473c05fece044c6a3b44519b61f pango-1.13.2.tar.gz This is a development release leading up to Pango-1.14.0, which will be released just in time for GNOME-2.16. Notes: * This is unstable development release. While it has had fairly extensive testing, there are likely bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of Pango-1.12. If you have problems, you'll need to reinstall Pango-1.12.x * Bugs should be reported to http://bugzilla.gnome.org. About Pango =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Pango is a library for layout and rendering of text, with an emphasis on internationalization. Pango can be used anywhere that text layout is needed, though most of the work on Pango so far has been done in the context of the GTK+ widget toolkit. Pango forms the core of text and font handling for GTK+-2.x. Pango is designed to be modular; the core Pango layout engine can be used with different font backends. There are three basic backends, with multiple options for rendering with each. - Client side fonts using the FreeType and fontconfig libraries. Rendering can be with with Cairo or Xft libraries, or directly to an in-memory buffer with no additional libraries. - Native fonts on Microsoft Windows. (Optionally using Uniscribe for complex-text handling). Rendering can be done via Cairo or directly using the native Win32 API. - Native fonts on MacOS X, rendering via Cairo. The integration of Pango with Cairo (http://cairographics.org) provides a complete solution with high quality text handling and graphics rendering. Dynamically loaded modules then handle text layout for particular combinations of script and font backend. Pango ships with a wide selection of modules, including modules for Hebrew, Arabic, Hangul, Thai, and a number of Indic scripts. Virtually all of the world's major scripts are supported. As well as the low level layout rendering routines, Pango includes PangoLayout, a high level driver for laying out entire blocks of text, and routines to assist in editing internationalized text. More information about Pango is available from http://www.pango.org/. Pango 1.13.2 depends on version 2.10.0 or newer of the GLib library and version 1.1.2 or newer of the cairo library (if the cairo backend is desired); more information about GLib and cairo can be found at http://www.gtk.org/ and http://cairographics.org/ respectively. Overview of changes between 1.13.1 and 1.13.2 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D * Improved hexbox drawing, and font metrics calculations. * Synthesize italic variants on win32 [Hans Breuer] * New public API: - pango_cairo_show_error_underline - pango_cairo_error_underline_path - pango_font_describe_with_absolute_size * Misc fixes. * Bugs fixed in this release: Bug 326960 =E2=80=93 hex box drawing for win32 and atsui backends of cairo Bug 343717 =E2=80=93 License information in unclear. Bug 343355 =E2=80=93 Add pango_cairo_show_error_underline & pango_cairo_error_underline_path Bug 343966 =E2=80=93 pango Cygwin build fixes Patch from Cygwin Ports maintainer. Bug 343796 =E2=80=93 Italic Chinese character can't be show correctly in Win32. Bug 314114 =E2=80=93 max_x_advance not appropriate for approximate_(char|digit)_width Bug 341138 =E2=80=93 Using TTC font, Gtk2 programs begin to eating big mem= ory and have many cpu usage. Patch from Yong Li. Bug 336153 =E2=80=93 Mark to mark positioning (Lookup Type 6) isn't correc= t when using MarkAttchmentType Patch from Tin Myo Htet. Bug 333984 =E2=80=93 pango_language_from_string improvements Bug 125378 =E2=80=93 Better underline thickness handling Bug 339730 =E2=80=93 Pango needlessly falls back away from a Type 1 font i= nto a TTF font Bug 342562 =E2=80=93 Support absolute sizes in pango_font_description_to/from_string Bug 341922 =E2=80=93 pango should handle more characters as zero width Patch from Roozbeh Pournader Bug 342525 =E2=80=93 With PangoFc and PangoWin32, approximate digit width = is not what it says Bug 342079 =E2=80=93 pangoatsui-private.h missing from release Behdad Esfahbod 12 June 2006 --=-HZBsNn3KdPR3jVVwB9gO Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEjeBFn+4E5dNTERURApTwAJ9OvqbaG1xnQYzGPC9u0WPi30b6ggCfXNvZ oFfMwctzkAaKRETc/0aDRj0= =Wl7j -----END PGP SIGNATURE----- --=-HZBsNn3KdPR3jVVwB9gO-- From ebassi@gmail.com Mon Jun 12 18:16:04 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 959AC3B00A5 for ; Mon, 12 Jun 2006 18:16:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01337-06 for ; Mon, 12 Jun 2006 18:16:03 -0400 (EDT) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.186]) by menubar.gnome.org (Postfix) with ESMTP id E69443B015D for ; Mon, 12 Jun 2006 18:16:02 -0400 (EDT) Received: by nf-out-0910.google.com with SMTP id x37so950087nfc for ; Mon, 12 Jun 2006 15:14:56 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:subject:from:to:cc:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; b=eGvIpFNEWtb7L9J87AK/A8+ENa91duWZBEqSL8uzr9KmNI5+11lkZvmnBmdUhuBBlxyNjlYBw3sh/Am36NkcDakYEh5OSYiVckbEq9XEKnN5svoJJwcDLufW7SXw+2xzT5RpJ43xYvJHTzDB08ykyYlcsfJVZtZALOWrI8eQ7mU= Received: by 10.48.241.20 with SMTP id o20mr5263837nfh; Mon, 12 Jun 2006 15:08:01 -0700 (PDT) Received: from rogue.local ( [86.136.65.180]) by mx.gmail.com with ESMTP id k23sm6896442nfc.2006.06.12.15.08.01; Mon, 12 Jun 2006 15:08:01 -0700 (PDT) From: Emmanuele Bassi To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=UTF-8 Date: Mon, 12 Jun 2006 23:07:59 +0100 Message-Id: <1150150079.5273.10.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.336 tagged_above=-999 required=2 tests=[AWL=0.264, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.336 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: GNOME Utils Subject: [ANNOUNCE] Gnome-utils 2.15.3 - "No, this is not Metacity" X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 22:16:04 -0000 Yeap, you read right: this is release 2.15.3 and this is *not* Metacity - even if we did skip a bit of numbers - but yet another great release of the GNOME Utilities package! Unfortunately, due to time constraints, this release rocks less than what we maintainers expected; nevertheless, it rocks louder and harder than any release done before. So download, sit back with a nice glass of red wine while your compiler of choice churns the sources, and prepare to test new features and to file new bugs. This is an unstable release of gnome-utils, so please be warned that it may cause loss of patience, body hair, teeth and overall sanity; it could also make your life easier. It's up to you to test it and report back any misfeature, bug or feature request. You can download the 2.15.3 release of gnome-utils from the usual place, at: http://download.gnome.org/sources/gnome-utils/2.15/ =================================================================== GNOME Utilities 2.15.3 (June 12th 2006) - "No, it's not Metacity" Baobab * Add a new item in the list window context menu to start scanning a folder. Dictionary * Re-implement the speller widget, to show similar words in case no definition was found. * Use a themable icon Floppy * Nothing Screenshot * Drop deprecated include files (Kristof Vansant, #167098) * Fix compilator warnings * Update launcher description Search Tool * Update launcher description System Log Viewer * Miscellaneous fixes on 64bit platforms (Joe Marcus Clarke, Lin Ma) * Change the default log files list on Solaris (Lin Ma) * Remove empty character from status bar (Lin Ma) * Sort files by ascending order (Lin Ma) * Use `File' instead of `Log' as the first menu (Lin Ma) * Fix the selection offset when copying from a log (Sebastien Bacher) Translations updates: Petr Tomeš (cs), Mindu Dorji (dz), Francisco Javier F. Serrador (es), Iñaki Larrañaga Murgoitio (eu), Ignacio Casal Quinteiro (gl), Ankit Patel (gu), Fabio Marzocca (it), Changwoo Ryu (ko), Fano Rajaonarisoa (mg), Øivind Hoel (nb), Vincent van Adrighem (nl), Theppitak Karoonboonyanan (th), Clytie Siddall (vi), Funda Wang (zh_CN), Lin-Chieh Shangkuan (zh_HK), Lin-Chieh Shangkuan (zh_TW) Ciao, Emmanuele. -- Emmanuele Bassi - Log: http://log.emmanuelebassi.net From kurt@maute.us Mon Jun 12 19:34:25 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 07B863B0150 for ; Mon, 12 Jun 2006 19:34:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03322-07 for ; Mon, 12 Jun 2006 19:34:23 -0400 (EDT) Received: from mta6.srv.hcvlny.cv.net (mta6.srv.hcvlny.cv.net [167.206.4.201]) by menubar.gnome.org (Postfix) with ESMTP id 5040C3B000C for ; Mon, 12 Jun 2006 19:34:23 -0400 (EDT) Received: from [192.168.0.56] (ool-435223b5.dyn.optonline.net [67.82.35.181]) by mta6.srv.hcvlny.cv.net (Sun Java System Messaging Server 6.2-6.01 (built Apr 3 2006)) with ESMTP id <0J0R00G8NSFQ4H00@mta6.srv.hcvlny.cv.net> for gnome-announce-list@gnome.org; Mon, 12 Jun 2006 19:11:51 -0400 (EDT) Date: Mon, 12 Jun 2006 19:11:49 -0400 From: Kurt Maute To: Planner-Dev , Planner , gnome-announce-list@gnome.org Message-id: <1150153909.4619.131.camel@dori> MIME-version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-type: text/plain; charset=UTF-8 Content-transfer-encoding: 8BIT X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.599 tagged_above=-999 required=2 tests=[AWL=0.000, BAYES_00=-2.599] X-Spam-Score: -2.599 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: Subject: Planner v0.14 Released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 23:34:25 -0000 Hi All, Planner v0.14 is now available for download: http://ftp.gnome.org/pub/GNOME/sources/planner/0.14/ What is Planner =============== Planner is the GNOME project management tool. Homepage: http://live.gnome.org/Planner What's New in Planner v0.14 =========================== * FF and SF Predecessors 140561 (Kurt Maute) * Simple priority scheduling (Matteo Nastasi): Use the --enable-simple-priority-scheduling option when building. This feature will allow a high priority task to steal resources from a lower priority task. * View Non-standard working/nonworking days (Matteo Nastasi): In the Gantt view, this feature shows where resources have differences in working and nonworking days when compared to the default calendar. * Resource Usage view canvas interactivity (Alvaro del Castillo): Right clicking on a usage bar or resource pops up an option menu. * Gantt chart misalignment with tree view 128983 (Francisco Moraes) * Summary tasks: work now equals sum of child tasks 305801 (Kurt Maute) * Eliminate effects of resource assignments on summary tasks 151604 (Kurt Maute): Assigning a resource to a summary task now has no effect. * Updated user guide: (Kurt Maute) * View Grid Lines in Gantt view 303374 (Nguyễn Thái Ngọc Duy): Shows horizontal lines in Gantt to help visually line up tasks with Gantt bars. Translators: Vladimir "Kaladan" Petkov (bg) Miloslav Trmac (cs) Hendrik Richter (de) Kostas Papadimas (el) Adam Weinberger (en_CA) David Lodge (en_GB) Francisco Javier F. Serrador (es) Ivar Smolin (et) Larra Murgoitio (eu) Meelad Zakaria (fa) Ilkka Tuohela (fi) Gabor Kelemen (hu) Takeshi AIHANA (ja) Kjartan Maraas (nb) "Last-Translator: \n" (ne) Jan-Willem Harmanny (nl) Afonso Celso Medina (pt_BR) Steve Murphy (rw) Marcel Telka (sk) Данило Шеган (sr) Daniel Nylander (sv) Maxim V. Dziumanenko (uk) Clytie Siddall (vi) Woodman Tuen (zh_TW) -- Kurt Maute From nudrema@gmail.com Mon Jun 12 20:13:02 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 32C693B0009; Mon, 12 Jun 2006 20:13:02 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04226-02; Mon, 12 Jun 2006 20:13:01 -0400 (EDT) Received: from swip.net (mailfe04.swip.net [212.247.154.97]) by menubar.gnome.org (Postfix) with ESMTP id 447933B000C; Mon, 12 Jun 2006 20:13:00 -0400 (EDT) X-T2-Posting-ID: Ee7YIbSG3O5rNcT4cGADretWTWrDEjpwS9FwzyhFhzk= X-Cloudmark-Score: 0.000000 [] Received: from [83.182.30.225] (HELO [10.0.0.13]) by mailfe04.swip.net (CommuniGate Pro SMTP 5.0.8) with ESMTP id 211925446; Tue, 13 Jun 2006 02:11:51 +0200 Message-ID: <448E02C4.2050805@gmail.com> Date: Tue, 13 Jun 2006 02:11:48 +0200 From: =?ISO-8859-1?Q?Steve_Fr=E9cinaux?= User-Agent: Thunderbird 1.5.0.2 (X11/20060522) MIME-Version: 1.0 To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.931 tagged_above=-999 required=2 tests=[AWL=-0.478, BAYES_00=-2.599, SPF_NEUTRAL=1.069, TW_GT=0.077] X-Spam-Score: -1.931 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: gedit-list Subject: ANNOUNCE: gedit 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 00:13:02 -0000 Hi all, gedit 2.15.3 is now available. gedit the official GNOME text editor. homepage: http://live.gnome.org/GeditPlugins * Changes in 2.15.3 ==================== New features and fixes: - New gedit_commands_* API for plugins (Paolo Maggi) - Snippets support for space indentation (Jesse van den Kieboom) - gtk-doc enabled C plugin API documentation (Steve Frcinaux) - Next/Previous menu items (Paolo Maggi) - C/Python plugin skeleton generator (Steve Frcinaux) - Snippets plugin enhancements and fixes (Jesse van den Kieboom) - Misc improvements and bugfixes New and updated translations: - Alexander Shopov (bg) - Ankit Patel (gu) - Clytie Siddall (vi) - Francisco Javier F. Serrador (es) - Kjartan Maraas (nb) - Ignacio Casal Quinteiro (gl) - Jakub Friedl (cs) - Pema Geyleg (dz) - Priit Laes (et) - Theppitak Karoonboonyanan (th) * Download =========== http://ftp.gnome.org/pub/GNOME/sources/gedit/2.15/gedit-2.15.3.tar.gz md5sum: 07a99a6c45fa859a770a86bfa6289acd http://ftp.gnome.org/pub/GNOME/sources/gedit/2.15/gedit-2.15.3.tar.bz2 md5sum: e43046da726b9df3119ff8db00c7f4ad -- Steve http://tw.apinc.org From gnome@nextreality.net Mon Jun 12 23:42:44 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 13DDB3B00E5 for ; Mon, 12 Jun 2006 23:42:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08544-08 for ; Mon, 12 Jun 2006 23:42:42 -0400 (EDT) Received: from brentsmith.name (unknown [64.62.195.122]) by menubar.gnome.org (Postfix) with ESMTP id 7C54A3B0010 for ; Mon, 12 Jun 2006 23:42:42 -0400 (EDT) Received: by brentsmith.name (Postfix, from userid 5001) id 8C64635904; Tue, 13 Jun 2006 03:41:31 +0000 (UTC) Received: from [192.168.1.101] (c-67-176-37-213.hsd1.co.comcast.net [67.176.37.213]) by brentsmith.name (Postfix) with ESMTP id DA11C35901 for ; Tue, 13 Jun 2006 03:41:30 +0000 (UTC) Message-ID: <448E33F5.5080804@nextreality.net> Date: Mon, 12 Jun 2006 21:41:41 -0600 From: Brent Smith User-Agent: Thunderbird 1.5.0.2 (X11/20060522) MIME-Version: 1.0 To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Bogosity: Unsure, tests=bogofilter, spamicity=0.500000, version=0.94.4 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.577 tagged_above=-999 required=2 tests=[AWL=0.022, BAYES_00=-2.599] X-Spam-Score: -2.577 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:35 -0400 Subject: Yelp 2.15.3 Released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 03:42:44 -0000 Yelp 2.15.3 is now available from an FTP mirror near you (actually, you might have to wait a little bit for it to appear). Yelp is the program that appears from the mist when you click the Help button in your favorite GNOME application. This release contains many improvements over the last development release. Read on for details... Changes in 2.15.3: ------------------ * New debugging infrastructure (Brent Smith) * Add support for translated man pages, fixes #343275 (Brent Smith) * Support private instances with -p (Bug #337540) (Don Scorgie) * Switch from Bonobo to DBUS Activation (Don Scorgie) * Change 'Multimedia' category to 'Sound & Vision' for (Don Scorgie) consistency (bug #332182) * Don't auto-expand sections in left pane (bug #167070) (Don Scorgie) * Don't use mozilla's internal string API, and drop (Christian Persch) support for gecko 1.7 and non-toolkit geckos. Bug #343950. * Add a deep history framework (bug #67966) (Don Scorgie) * Make *Notes into hyperlinks (bug #343524) (Don Scorgie) * Make monospace fonts change size when asked (Don Scorgie) (bug #344003) * Escape & characters when encountered in info (Don Scorgie) processing (fixes #343372) * more helpful message when there are no search results(Frederic Peters) (fixes #341798) * search results message can be translated (Frederic Peters) (fixes #341689) * limit search results to 20 items (fixes #341434) (Frederic Peters) * cleanup the man_secthash hash table when finished (Brent Smith) * don't increment ptr, fixes #341827 (Don Scorgie) * Fix a bunch of memory leaks (Don Scorgie) * Fix an invalid write, #342151 (Don Scorgie) * NULL checking. Suppresses critical warnings on some (Don Scorgie) info pages * If an info file doesn't exist, default to showing (Don Scorgie) the man page, fixes #341627 * Fix loading of info pages from subdirectories (emacs) (Don Scorgie) * Update intltool requirement to 0.35.0 (Brent Smith) * Reduce strictness of searching for menus in info pages (Don Scorgie) * Updated translations: Jakub Friedl (cs) Mindu Dorji (dz) Francisco Javier F. Serrador (es) Priit Laes (et) Iaki Larraaga Murgoitio (eu) Ankit Patel (gu) Raivis Dejus (lv) Kjartan Maraas (nb) Theppitak Karoonboonyanan (th) Pablo Saratxaga (wa) http://ftp.gnome.org/pub/GNOME/sources/yelp/2.14/ Share and enjoy. Regards, -- Brent Smith IRC: smitten From nudrema@gmail.com Tue Jun 13 04:23:41 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F14743B000C; Tue, 13 Jun 2006 04:23:40 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16049-10; Tue, 13 Jun 2006 04:23:40 -0400 (EDT) Received: from swip.net (mailfe11.swipnet.se [212.247.155.65]) by menubar.gnome.org (Postfix) with ESMTP id 2C63B3B000A; Tue, 13 Jun 2006 04:23:39 -0400 (EDT) X-T2-Posting-ID: Ee7YIbSG3O5rNcT4cGADretWTWrDEjpwS9FwzyhFhzk= X-Cloudmark-Score: 0.000000 [] Received: from [83.182.30.69] (HELO [10.0.0.13]) by mailfe11.swip.net (CommuniGate Pro SMTP 5.0.8) with ESMTP id 44536455; Tue, 13 Jun 2006 10:22:28 +0200 Message-ID: <448E75C1.6030808@gmail.com> Date: Tue, 13 Jun 2006 10:22:25 +0200 From: =?ISO-8859-1?Q?Steve_Fr=E9cinaux?= User-Agent: Thunderbird 1.5.0.2 (X11/20060522) MIME-Version: 1.0 To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.861 tagged_above=-999 required=2 tests=[AWL=-0.543, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_NEUTRAL=1.069, TW_GT=0.077] X-Spam-Score: -1.861 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:35 -0400 Cc: gedit-list Subject: ANNOUNCE: gedit 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 08:23:41 -0000 Hi all, gedit 2.15.3 is now available. gedit the official GNOME text editor. homepage: http://www.gnome.org/projects/gedit * Changes in 2.15.3 ==================== New features and fixes: - New gedit_commands_* API for plugins (Paolo Maggi) - Snippets support for space indentation (Jesse van den Kieboom) - gtk-doc enabled C plugin API documentation (Steve Frcinaux) - Next/Previous menu items (Paolo Maggi) - C/Python plugin skeleton generator (Steve Frcinaux) - Snippets plugin enhancements and fixes (Jesse van den Kieboom) - Misc improvements and bugfixes New and updated translations: - Alexander Shopov (bg) - Ankit Patel (gu) - Clytie Siddall (vi) - Francisco Javier F. Serrador (es) - Kjartan Maraas (nb) - Ignacio Casal Quinteiro (gl) - Jakub Friedl (cs) - Pema Geyleg (dz) - Priit Laes (et) - Theppitak Karoonboonyanan (th) * Download =========== http://ftp.gnome.org/pub/GNOME/sources/gedit/2.15/gedit-2.15.3.tar.gz md5sum: 07a99a6c45fa859a770a86bfa6289acd http://ftp.gnome.org/pub/GNOME/sources/gedit/2.15/gedit-2.15.3.tar.bz2 md5sum: e43046da726b9df3119ff8db00c7f4ad -- Steve http://tw.apinc.org From s.marechal@jejik.com Tue Jun 13 19:55:27 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 44B8A3B00C7 for ; Tue, 13 Jun 2006 19:55:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10258-05 for ; Tue, 13 Jun 2006 19:55:25 -0400 (EDT) Received: from smtp-vbr15.xs4all.nl (smtp-vbr15.xs4all.nl [194.109.24.35]) by menubar.gnome.org (Postfix) with ESMTP id 1E2F43B00D4 for ; Tue, 13 Jun 2006 19:55:24 -0400 (EDT) Received: from [192.168.1.2] (a82-92-145-91.adsl.xs4all.nl [82.92.145.91]) (authenticated bits=0) by smtp-vbr15.xs4all.nl (8.13.6/8.13.6) with ESMTP id k5DNsOqr025232 for ; Wed, 14 Jun 2006 01:54:25 +0200 (CEST) (envelope-from s.marechal@jejik.com) Message-ID: <448F504E.1060904@jejik.com> Date: Wed, 14 Jun 2006 01:54:54 +0200 From: Sander Marechal User-Agent: Thunderbird 1.5.0.2 (X11/20060522) MIME-Version: 1.0 To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by XS4ALL Virus Scanner X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.557 tagged_above=-999 required=2 tests=[AWL=0.042, BAYES_00=-2.599] X-Spam-Score: -2.557 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Subject: Gnome Hearts 0.1 Release Announcement X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: user and developer discussion for the gnome hearts game List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 23:55:27 -0000 Gnome Hearts 0.1 Release Announcement ------------------------------------- Lone Wolves [1] is happy to announce the release of Gnome Hearts version 0.1, an implementation of the classic hearts card game for the Gnome desktop. Gnome Hearts 0.1 is the first release since the project's inception on April 30, earlier this year. Gnome Hearts features configurable rule-sets such as Omnibus and Spot Hearts besides the standard rules. The game also has multiple computer players that are implemented in the Lua [2] scripting language. This allows for easy modification of the players. Also, the game can use any deck of cards installed for the Gnome Games package. [1] http://www.jejik.com [2] http://www.lua.org Downloading and installing Gnome Hearts --------------------------------------- Gnome Hearts can be downloaded from the project website at http://www.gnome-hearts.org/download or directly using this link [3]. At the moment only a .tar.gz source package is available. Binaries for various distributions will appear at a later date. Keep an eye out on the download page and the mailing list [4] for the announcements. In order to build the .tar.gz you need to have libgnomeui2.0, liblua50, liblualib50 and libglade2 plus their respective headers installed. See the README file in the package for more details. [3] http://www.jejik.com/files/gnome-hearts/gnome-hearts-0.1.tar.gz [4] http://lists.jejik.com/cgi-bin/mailman/listinfo/hearts Acknowledgments --------------- Many thanks to the people that contributed to this first release and those who cast a critical glance over the package so we could fix many issues before our first release. -- Sander Marechal http://www.gnome-hearts.org From gjc@inescporto.pt Tue Jun 13 20:28:23 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BD25B3B000E for ; Tue, 13 Jun 2006 20:28:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11220-02 for ; Tue, 13 Jun 2006 20:28:21 -0400 (EDT) Received: from animal.inescn.pt (correio.inescn.pt [194.117.24.9]) by menubar.gnome.org (Postfix) with ESMTP id A61433B00C8 for ; Tue, 13 Jun 2006 20:28:20 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by animal.inescn.pt (8.13.6/8.13.6/7) with ESMTP id k5E0RKZp008488; Wed, 14 Jun 2006 01:27:20 +0100 (WEST) Received: from pong.inescporto.pt (pong.inescn.pt [194.117.26.74]) by animal.inescn.pt (8.13.6/8.13.6/5) with ESMTP id k5E0Qv9X008443; Wed, 14 Jun 2006 01:26:57 +0100 (WEST) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by pong.inescporto.pt (Postfix) with ESMTP id A69A5119284; Wed, 14 Jun 2006 01:23:55 +0100 (WEST) From: "Gustavo J. A. M. Carneiro" To: PyGTK Content-Type: text/plain Date: Wed, 14 Jun 2006 01:26:56 +0100 Message-Id: <1150244816.5417.6.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at inescporto.pt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.351 tagged_above=-999 required=2 tests=[AWL=-0.040, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001, TW_GD=0.077, TW_GT=0.077] X-Spam-Score: -2.351 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: gnome-announce-list@gnome.org Subject: ANNOUNCE: PyGTK 2.9.1 (unstable) X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 00:28:23 -0000 I am pleased to announce version 2.9.1 of the Python bindings for GTK. The new release is available from ftp.gnome.org and its mirrors as soon as its synced correctly: http://ftp.gnome.org/pub/GNOME/sources/pygtk/2.9/pygtk-2.9.1.tar.gz This is an unstable release and should be used with caution. It requires either GTK+ 2.8.x or GTK+ >= 2.9.3. [ Note: this release also fixes a build problem for the recently released GnomePythonDesktop 2.15.3. ] Blurb: GTK is a toolkit for developing graphical applications that run on systems such as Linux, Windows and MacOS X. It provides a comprehensive set of GUI widgets, can display Unicode bidi text. It links into the Gnome Accessibility Framework through the ATK library. PyGTK provides a convenient wrapper for the GTK+ library for use in Python programs, and takes care of many of the boring details such as managing memory and type casting. When combined with PyORBit and gnome-python, it can be used to write full featured Gnome applications. Like the GTK+ library itself PyGTK is licensed under the GNU LGPL, so is suitable for use in both free software and proprietary applications. It is already in use in many applications ranging from small single purpose scripts up to large full features applications. pygtk-2.9.0 13-june-2006 - Allow gtk.TreeSortable.set_default_sort_func callback to be None (Johan, Patrick O'Brien) - Add API to unset the g_log handlers (#323786, Johan) - Allow the gtk module to be imported without DISPLAY (#316877, Johan) - Code cleanup and fixes considering Coverity reports (Johan) - Add codegen support for const-Object return type (#169204, Gustavo) - Add codgen support for unblocking threads around method calls (Gustavo) - Wrap gdk_event_handler_set (Johan) - Codegen reverse wrapper bug fix (#340162, Yevgen Muntyan) - Wrap GdkRegion (John Ehresman) - Add codegen support for ignore-type statement in override (Johan) - Add conditional support for gtk+ 2.10 API, especially printing (Johan, Finlay, Gustavo) - Complete the support for gtk.Container virtual methods (#341641, Gustavo) - Fix misc. reference leaks (Finlay, Gustavo) - Allow None parameter in pangocairo.CairoContext.set_font_options (Finlay) - Complete the support for gtk.CellRenderer virtual methods (#339431, Gustavo) - IconView.set_cursor method params 'cell' and 'start_editing' made optional (#343039, Ross Burton, Finlay) - Wrap a few more gdk_cairo_* methods (Finlay) - Add a 'selection' field to gdk.OWNER_CHANGE events (Finlay) - Allow None in gtk.Entry.set_inner_border() (Finlay) - gtk.Clipboard rich text methods (Finlay) - Add gtk.MessageDialog.set_image() (Finlay) - Wrap gtk_link_button_set_uri_hook() (Finlay) - Allow None in gtk.Widget.input_shape_combine_mask() (Finlay) - Allow gtk.LinkButton() constructor to optionally receive a label (Finlay) - Allow None in gtk.Label.set_mnemonic_widget() (Johan) - Wrap a bunch of X11 specific gdk methods (Gustavo) - Add gtk.SizeGroup.get_widgets() (Finlay) - Wrap gtk_style_lookup_color() (Finlay) - Wrap a bunch of gtk treeview grid lines methods (Finlay) - Better Drag and drop API support (Finlay) - Add -I option to codegen (defs search path) (Gustavo) PyGTK requires GTK+ >= 2.8.0 and Python >= 2.3.5 to build. Bug reports, as always, should go to Bugzilla; check out http://pygtk.org/developer.html and http://pygtk.org/feedback.html for links to posting and querying bug reports for PyGTK. -- Gustavo J. A. M. Carneiro The universe is always one step beyond logic From ebassi@gmail.com Tue Jun 13 20:32:58 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A8A4B3B00C8 for ; Tue, 13 Jun 2006 20:32:58 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11365-03 for ; Tue, 13 Jun 2006 20:32:57 -0400 (EDT) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.184]) by menubar.gnome.org (Postfix) with ESMTP id D60A23B000E for ; Tue, 13 Jun 2006 20:32:56 -0400 (EDT) Received: by nf-out-0910.google.com with SMTP id y38so3928nfb for ; Tue, 13 Jun 2006 17:31:56 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:subject:from:to:cc:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; b=oUq+Y9uyXse5jWbXHN+a1hlPNgEB4SSPDgg8dWXx+1GsvRNsktrt4C4g3H5vMlt23VjpIETSUuVlhG6R9+5WQPa1f/yUs5fj1vO2K5m9rUq0MSBz2x1DxlwhH3zgxxsgbcw07IUW4AZgu+4ffuEd58TvM5NOX7EJyv1wtcIGIDA= Received: by 10.48.225.16 with SMTP id x16mr53191nfg; Tue, 13 Jun 2006 17:31:56 -0700 (PDT) Received: from ?192.168.1.70? ( [86.136.65.180]) by mx.gmail.com with ESMTP id l32sm22126nfa.2006.06.13.17.31.56; Tue, 13 Jun 2006 17:31:56 -0700 (PDT) From: Emmanuele Bassi To: gnome-announce-list@gnome.org Content-Type: text/plain Date: Wed, 14 Jun 2006 01:31:50 +0100 Message-Id: <1150245110.28862.8.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.337 tagged_above=-999 required=2 tests=[AWL=0.263, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.337 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: gnome-utils-list@gnome.org Subject: [ANNOUNCE] Gnome-utils 2.15.4 - "Ain't that another brown paper bag?" X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 00:32:58 -0000 Good news everyone! As last gnome-utils release contained a glitch that broke the build, here's a Brown Paper Bag Release ready: gnome-utils 2.15.4. Many thanks to Matthias Clasen and Fryderyk Dziarmagowski for finding the glitch. As usual, you can download the sources from here: http://download.gnome.org/sources/gnome-utils/2.15/ Enjoy, and remember to file any bug you might find! =================================================================== GNOME Utilities 2.15.4 (June 14th 2006) - "Ain't that another brown paper bag?" * "Brown paper bag" release Baobab * Nothing Dictionary * Remove wrong headers from the build (Matthias Clasen, #344773) Floppy * Nothing Screenshot * Fix included files Search Tool * Nothing System Log Viewer * Nothing Translations updates: Francisco Javier F. Serrador (es), Ankit Patel (gu) Ciao, Emmanuele. From cworth@cworth.org Wed Jun 14 12:07:42 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 50C153B03B2 for ; Wed, 14 Jun 2006 12:07:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05531-07 for ; Wed, 14 Jun 2006 12:07:31 -0400 (EDT) Received: from theworths.org (cworth.org [217.160.249.188]) by menubar.gnome.org (Postfix) with ESMTP id D79923B045D for ; Wed, 14 Jun 2006 12:07:30 -0400 (EDT) Received: (qmail 20098 invoked from network); 14 Jun 2006 12:06:35 -0400 Received: from localhost (HELO raht.cworth.org) (127.0.0.1) by localhost with SMTP; 14 Jun 2006 12:06:35 -0400 Date: Wed, 14 Jun 2006 09:01:56 -0700 Message-ID: <87pshbd8uj.wl%cworth@cworth.org> From: Carl Worth To: cairo-announce@cairographics.org Subject: cairo snapshot 1.1.8 now available User-Agent: Wanderlust/2.14.0 (Africa) Emacs/21.4 Mule/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: multipart/signed; boundary="pgp-sign-Multipart_Wed_Jun_14_09:01:49_2006-1"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.441 tagged_above=-999 required=2 tests=[AWL=-0.054, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, TW_XC=0.077] X-Spam-Score: -2.441 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 12:46:39 -0400 Cc: gnome-announce-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 16:07:42 -0000 --pgp-sign-Multipart_Wed_Jun_14_09:01:49_2006-1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable A new cairo snapshot 1.1.8 is now available from: http://cairographics.org/snapshots/cairo-1.1.8.tar.gz which can be verified with: http://cairographics.org/snapshots/cairo-1.1.8.tar.gz.sha1 ad660fe7bfede1882f4b81798e3e0ef8fe7ecb9b cairo-1.1.8.tar.gz http://cairographics.org/snapshots/cairo-1.1.8.tar.gz.sha1.asc (signed by Carl Worth) Additionally, a git clone of the source tree: git clone git://git.cairographics.org/git/cairo will include a signed 1.1.8 tag which points to a commit named: dd859b8736bb4d1bcf3ed78d0bd1f72a7aad9ca9 which can be verified with: git verify-tag 1.1.8 and can be checked out with a command such as: git checkout -b build 1.1.8 This is the fourth in a series of snapshots working toward the 1.2 release of cairo. At this point, all major features of the 1.2 release are in place, leaving just a few bug fixes left. In particular, there will be no additional API changes between this 1.1.8 snapshot and the 1.2 release. The announcement for 1.1.6 mentioned several API changes being considered. Only one of these changes was actually implemented (set_dpi -> fallback_resolution). This change does introduce one source-level incompatibility with respect to previous 1.1.x snapshots, so see below for details. What is cairo =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Cairo is a 2D graphics library with support for multiple output devices. Currently supported output targets include the X Window System, win32, and image buffers. Experimental backends include OpenGL (through glitz), Quartz, XCB, PostScript and PDF file output. Cairo is designed to produce consistent output on all output media while taking advantage of display hardware acceleration when available (for example, through the X Render Extension). The cairo API provides operations similar to the drawing operators of PostScript and PDF. Operations in cairo including stroking and filling cubic B=E9zier splines, transforming and compositing translucent images, and antialiased text rendering. All drawing operations can be transformed by any affine transformation (scale, rotation, shear, etc.). Cairo has been designed to let you draw anything you want in a modern 2D graphical user interface. At the same time, the cairo API has been designed to be as fun and easy to learn as possible. If you're not having fun while programming with cairo, then we have failed somewhere---let us know and we'll try to fix it next time around. Cairo is free software and is available to be redistributed and/or modified under the terms of either the GNU Lesser General Public License (LGPL) version 2.1 or the Mozilla Public License (MPL) version 1.1. Where to get more information about cairo =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D The primary source of information about cairo is: http://cairographics.org/ The latest releases of cairo can be found at: http://cairographics.org/releases Snapshots of in-development versions of cairo: http://cairographics.org/snapshots The programming manual for using cairo: http://cairographics.org/manual Mailing lists for contacting cairo users and developers: http://cairographics.org/lists Answers to some frequently asked questions about cairo: http://cairographics.org/FAQ What's new in 1.1.8 compared to 1.1.6 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ** API Change ** ---------------- According to the plan mentioned in the 1.1.6 notes, one source-level incompatible change has been implemented. The following three functions have been removed from cairo's API: cairo_pdf_surface_set_dpi cairo_ps_surface_set_dpi cairo_svg_surface_set_dpi and in their place the following function has been added: cairo_surface_set_fallback_resolution The signature and semantics of the function remains the same, so it is a simple matter of changing the name of the function when calling it. As a transition mechanism, this snapshot will (on many systems) build to include the old symbols so that code previously compiled will still run. However, all source code using the old names must be updated before it will compile. And the upcoming 1.2 release is not anticipated to include the old symbols. Finally, it should be pointed out that the old symbols never existed in the supported API of any stable release of cairo. (In the stable 1.0 releases the PDF, PS, and SVG backends were advertised as experimental and unstable.) And, as always, cairo continues to maintain source and binary compatibility between major releases. So applications compiled against supported backends in a stable release of cairo (1.0.4 say) will continue to compile and run without modification against new major releases (1.2.0 say) without modification. API additions ------------- The following new functions have been added to cairo's API: cairo_surface_get_content cairo_debug_reset_static_data cairo_image_surface_get_data cairo_image_surface_get_format cairo_image_surface_get_stride cairo_win32_font_face_create_for_hfont New, backend-specific pkg-config files -------------------------------------- In addition to the original cairo.pc file, cairo will also now install a pkg-config files for each configured backend, (for example cairo-pdf.pc, cairo-svg.pc, cairo-xlib.pc, cairo-win32.pc, etc.) this also includes optional font backends (such as cairo-ft.pc) and the optional png functionality (cairo-png.pc). These new pkg-config files should be very convenient for allowing cairo-using code to easily check for the existing of optional functionality in cairo without having to write complex rules to grub through cairo header files or the compiled library looking for symbols. Printing backend (PS, PDF, and SVG) ----------------------------------- Improving the quality of the "printing" backends has been a priority of the development between cairo 1.1.6 and cairo 1.1.8. The big improvement here is in the area of text output. Previously, at best, text was output as paths without taking advantage of any font support available in the output file format. Now, at the minimum text paths will be shared by using type3 fonts (for PS and PDF---and similarly, defs for SVG). Also, if possible, type3 and truetype fonts will be embedded in PostScript and PDF output. There are still some known bugs with this, (for example, selecting text in a cairo-generated PDF file with an embedded truetype font does not work). So there will be some more changes in this area before cairo 1.2, but do try test this feature out as it exists so far. Many thanks to Kristian H=F8gsberg for the truetype and type1 font embedding. win32 backend ------------- Performance improvements by preferring GDI over pixman rendering when possi= ble. Fixes for text rendering. xlib backend ------------ Fix potentially big performance bug by making xlib's create_similar try harder to create a pixmap of a depth matching that of the screen. Bug fixes --------- Among various other fixes, the following bugs listed in bugzilla have been fixed: Bug 2488: Patch to fix pixman samping location bug (#2488). https://bugs.freedesktop.org/show_bug.cgi?id=3D2488 Bug 4196: undef MIN an MAX before defining to avoid duplicate definition https://bugs.freedesktop.org/show_bug.cgi?id=3D4196 Bug 4723: configure.in: Fix m4 quoting when examining pkg-config version https://bugs.freedesktop.org/show_bug.cgi?id=3D4723 Bug 4882: Flag Sun's X server has having buggy_repeat. https://bugs.freedesktop.org/show_bug.cgi?id=3D4882 Bug 5306: test/pdf2png: Add missing include of stdio.h https://bugs.freedesktop.org/show_bug.cgi?id=3D5306 Bug 7075: Fix make clean to remove cairo.def https://bugs.freedesktop.org/show_bug.cgi?id=3D7075 (Many thanks to Behdad Esfahbod for helping us track down and fix many of these.) Detailed list of changes since 1.1.6 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Tag '1.1.8' created by Carl Worth at 2006-06-14 16:17 -= 0700 cairo 1.1.8 snapshot -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEkCju6JDdNq8qSWgRAjdQAJ9jjY8MwIcyhpSxf8Yn50izT6wXRwCeJN3x XKToq1aoRwjXc1HujBI0wVo=3D =3DtwxK -----END PGP SIGNATURE----- Changes since 1.1.6: Behdad Esfahbod: Bug 7075: Fix make clean to remove cairo.def Move cairo.pc into src/. Add backend-specific pkg-config files. Rename cairo-wideint.h to cairo-wideint-private.h. Bertram Felgenhauer: Patch to fix pixman samping location bug (#2488). Bug 4723: configure.in: Fix m4 quoting when examining pkg-config vers= ion Brian Cameron: Bug 4882: Flag Sun's X server has having buggy_repeat. Carl Worth: Increment CAIRO_VERSION to 1.1.7 after making the 1.1.6 snapshot Revert "pdf2png: Use new poppler_page_render to render directly throu= gh cairo." Don't build pdf2svg until we start depending on newer poppler ROADMAP: non-substantive changes Add select-font-face test for whosing multiple faces at once. Fix typo in select-font-face.c and update reference images PS: Remove stale comment (the stuff TODO is done already) PS: Move type 3 support out into cairo-ps-font.c PS: Put functions in more logical order. Rename cairo-ps-font to cairo-scaled-font-subsets (file names only) Generalize font subsetting code in cairo-scaled-font-subsets for use = by more than just PS backend Fix cairo_output_stream_destroy to do nothing on nil stream objects. Tweak names to match those of cairo-scaled-font-subsets SVG: Discard custom font subsetting in favor of sharing cairo-scaled-= font-subsets Add documentation for the _cairo_scaled_font_subsets interface. Fix memory leak in _cairo_scaled_font_subsets_foreach PDF: Use cairo_pdf_resource_t more consistently. PDF: Fold (unused) cairo_pdf_document_t into cairo_pdf_surface_t Change scaled_font_subsets_callback to have return type of void. PS: Fix arguments to setcachedevice PS: Remove the fallback case from _cairo_ps_surface_show_glyphs PDF: Use consistent style for typedef struct and macro naming. PDF: Move Resources dictionary up from Page objects to Pages object. PDF: Add Type3 font support to PDF output. pixman: Fix build to enable warnings again pixman: Add default case to quiet compiler warning pixman: Remove unused code to quiet compiler warnings ROADMAP: Note that PDF type 3 font support is done PDF: Fix broken per-page sizes in PDF output. xlib: Rename surface->format to surface->xrender_format to avoid conf= usion xlib: Style cleanups for _cairo_xlib_surface_create_similar PDF: Squelch a couple of bogus "may be used uninitialized" warnings. Move prototype of cairo_debug_reset_static_data from uninstalled cair= o-debug.h to cairo.h Codify 1.0 behavior of cairo_set_line_width as a feature, not a bug. SVG: Fix for line-width-scale New test: dash-scale PDF: Rename pdf_stroke_t to pdf_path_into_t for future sharing with f= ill PDF: Share path callbacks for fill and stroke. Clarify the documentation for cairo_set_dash PDF: Move dash operator before path construction operators. ROADMAP: Note that the cairo_set_line_width issue is resolved Typo fixes cairo-xlib-test: Rename cairo_test_xlib function prefix to cairo_xlib= _test PDF: Add new, private test function: cairo_pdf_test_force_fallbacks Add new fallback-resolution test for bug in cairo_pdf_surface_set_dpi New API: Add new function cairo_surface_get_content Note the changed semantics of cairo_surface_set_device_offset New API: Add cairo_image_surface_get_{data,format,stride} Move rectangle functions to new cairo-rectangle.c Remove extraneous whitespace from "blank" lines. Remove trailing whitespace from lines that look like comments. Remove trailing whitespace from lines with a single brace. Remove all remaining trailing whitespace. Remove initial, final, and duplicate blank lines. CODING_STYLE: Add notes on avoiding trailing whitespace. CODING_STYLE: Fix misspellings. Fix bogus cairo_rectangle_fixed_t to be cairo_rectangle_int16_t. Remove CAIRO_{MIN,MAX}SHORT which did not distinguish signed vs. unsi= gned. win32: Add conditional definitions for INT16_{MIN,MAX} and UINT16_MAX= now that we use them. Fix MAX vs. MIN bug introduced with rename away from CAIRO_MINSHORT Change all instances of UINT16_MAX to INT16_MAX to avoid new bug. Remove debugging "prints" of images from test/device-offset.c Add new test get-group-target (currently failing with paginated). Fix bug in get-group-target (in the test itself) letting it now pass. Rename ft-text-vertical-layout reference image according to standard = convention. Ignore ft-text-vertical-layout binary New API: Replace cairo_{ps,pdf,svg}_set_dpi with new cairo_surface_se= t_fallback_resolution. Add REPLACED_BY macros to help porting to new set_fallback_resolution Rename device_{x,y}_offset to {x,y}_device_offset for better consiten= cy/grepability doc: SGML template churn Change {x,y}_device_offset values to a device_transform matrix. Hook up device scaling so fallback_resolution starts working. Add text and stroke to falback-resolution test (showing bugs in each). Fix line width for stroking with a device_scale. Fix font size when drawing text with a device_scale. Add cairo_{ps,svg}_test_force_fallbacks so tests can force fallbacks. Test PS and SVG backends in addition to PDF in test/fallback-resoluti= on. Clarify that fallback_resolution acts on a per-page granularity. Don't create a new scaled_font if there's a device_offset but no devi= ce_scale. Change _cairo_meta_surface_get_extents to return a bounded size. ROADMAP: Note that cairo_surface_set_fallback_resolution is in place = now. Add cairo-ps-test.h and cairo-svg-test.h to Makefile.am Add aliases for deprecated cairo_{pdf,ps,svg}_surface_set_dpi Change return type of _cairo_scaled_glyph_lookup to allow UNSUPPORTED. PS, PDF: Re-organize handling of bitmapped fonts to avoid invalid out= put. Merge branch 'truetype-subsetting' into cairo Merge branch 'type1-subsetting' into cairo Add new zero-alpha test to demonstrate (X server?) bug found by Paul = Giblock test/zero-alpha: Drop REPS from 100 to 10 for a faster test. Bug 4196: undef MIN an MAX before defining to avoid duplicate definit= ion ft: If glyph->format is not OUTLINE use _render_glyph_bitmap to coerc= e to a bitmap ROADMAP: Update with PDF bugs from minefield test. Slip non-1.0 regre= ssions off of 1.2. Add zero-alpha reference image to Makefile.am for the sake of make di= st PS PDF: Update reference images due to truetype subsetting Update refefence images due to pattern source shift. Update version to 1.1.8 and add notes to NEWS file. Christian Biesinger: Make BeOS compile again Add missing reference images to EXTRA_DIST Distribute make-html.pl Add "html" Makefile target to run make-html.pl Dom Lachowicz: Bug 5306: test/pdf2png: Add missing include of stdio.h Emmanuel Pacaud: SVG: Sets something sane in width and height if acquire source image = fails. SVG: Remove special case for unclipped CLEAR and SOURCE in paint when SVG: Fix cairo_svg_surface_restrict_to_version. Use CLEAR operator for initialisation of similar surface with a trans= parent color. SVG: Add reference images for fill-and-stroke-alpha. SVG: Implementation of glyph cache SVG: Emit glyphs at the beginning of defs section. SVG: Sets fallback resolution when compositing a meta surface. Jeff Muizelaar: Only destroy scaled glyphs if they are not in the cache. Jinghua Luo: glitz: Don't hardcode content type when initializing cairo surface Merge branch 'master' of git+ssh://jinghua@git.cairographics.org/git/= cairo Add ft-text-vertical-layout test case for vertical layout. freetype: Fix for test case ft-text-vertial-layout. Make image-*-ref.png image as reference image. freetype: Ignore global advance unconditionally. freetype: rework _transform_glyph_bitmap. ignore FC_MATRIX in font pattern. freetype: build fix for _transform_glyph_bitmap. xlib: bugfix for #7172. freetype: Return an error if the glyph format isn't outline or bitmap ROADMAP: Mark bugs FC_ADVANCE and _transform_glyph_bitmap as fixed. Kristian H=C3=B8gsberg: Documentation fixes (cairo_font_create -> cairo_scaled_font_create). Merge branch 'master' of git://git.freedesktop.org/git/cairo Update pdf font emit code to try to emit a truetype subset before typ= e3. Output pdf dicts for truetype subset fonts. Hook _cairo_truetype_subset_init() up to existing truetype subset cod= e. Switch to using Tm for text positioning and scale type3 fonts to unit= size. Add support for truetype subset to ps backend. Print out ps comment in the truetype emit code and update type3 ps co= mment. Remember to destroy cairo_pdf_ft_font_t once we've generated the subs= et. Set libcairo_font_subset_sources for ps, pdf, and svg backends. Remember to call _cairo_truetype_subset_fini() after outputting subse= t. Pull in type1 subset code from the cvs repo it was sitting in. Add code to emit type1 dicts to the pdf backend. Use RD and ND for delimiting glyph data instead of -| and |-. Only use the word wrap stream when emitting paths. Make ps surface use type1 subset code. Track glyph subset indices and use them in the output. Look for /-| or /RD tokens to determine the charstring delimiter toke= ns. Consolidate a few arrays into a array of structs. Remember to call cairo_type1_font_subset_destroy(). Handle seac charstring commands correctly. Clarify licensing of float formatting code. Remove cairo_public from _cairo_lzw_compress() definition. Robert O'Callahan: [xlib] Have create_similar try harder to create the right surface Stuart Parmenter: [win32] Allow for creating a font from a HFONT [win32] implement win32 show_glyphs [win32] fix win32_show_glyphs glyph offsets Tim Mooney: bug #6890: fix the signature for main() in pthread-show-text Vladimir Vukicevic: [xlib] implement _cairo_xlib_surface_show_glyphs [xlib] only do glyph extents computation if non-solid source. [win32] Add SHADEBLENDCAPS and SB_NONE definitions for older SDKs [win32] Add GdiFlush() calls after DIB creation, as per MSDN docs [win32] GDI is nearly always faster than pixman; use it whenever poss= ible CAIRO_SCALED_FONT_TYPE_* -> CAIRO_FONT_TYPE_* Whitespace fix Define kCGBitmapByteOrder32Host for when the SDK doesn't define it Zakharov Mikhail: pixman: fix compilation on HP-UX 11.11 --- .gitignore | 1=20 CODING_STYLE | 22=20 Makefile.am | 8=20 NEWS | 132 + RELEASING | 2=20 ROADMAP | 72=20 configure.in | 68=20 doc/public/Makefile.am | 1=20 doc/public/tmpl/cairo-pdf.sgml | 7=20 doc/public/tmpl/cairo-ps.sgml | 7=20 doc/public/tmpl/cairo-status.sgml | 7=20 doc/public/tmpl/cairo-svg.sgml | 7=20 doc/tutorial/src/include/cairo-tutorial-gtk.h | 8=20 doc/tutorial/src/include/cairo-tutorial-pdf.h | 4=20 doc/tutorial/src/include/cairo-tutorial-png.h | 4=20 doc/tutorial/src/include/cairo-tutorial-xlib.h | 2=20 doc/tutorial/src/include/cairo-tutorial.h | 1=20 doc/tutorial/src/lca.c | 6=20 pixman/src/Makefile.am | 4=20 pixman/src/fbcompose.c | 44=20 pixman/src/fbedge.c | 5=20 pixman/src/fbedgeimp.h | 8=20 pixman/src/fbmmx.c | 559 +++--- pixman/src/fbmmx.h | 2=20 pixman/src/fbpict.c | 39=20 pixman/src/fbpict.h | 3=20 pixman/src/fbtrap.c | 24=20 pixman/src/icblt.c | 96 - pixman/src/icbltone.c | 57=20 pixman/src/iccolor.c | 2=20 pixman/src/icformat.c | 30=20 pixman/src/icimage.c | 99 - pixman/src/icimage.h | 9=20 pixman/src/icint.h | 55=20 pixman/src/icpixels.c | 1=20 pixman/src/icrect.c | 30=20 pixman/src/icrop.h | 6=20 pixman/src/icstipple.c | 6=20 pixman/src/ictransform.c | 5=20 pixman/src/ictrap.c | 12=20 pixman/src/ictri.c | 31=20 pixman/src/icutil.c | 3=20 pixman/src/pixman-xserver-compat.h | 3=20 pixman/src/pixman.h | 20=20 pixman/src/pixregion.c | 76=20 pixman/src/pixregionint.h | 9=20 pixman/src/renderedge.c | 13=20 pixman/src/slim_internal.h | 4=20 src/.gitignore | 1=20 src/Makefile.am | 60=20 src/cairo-analysis-surface.c | 11=20 src/cairo-arc.c | 6=20 src/cairo-array.c | 33=20 src/cairo-atsui-font.c | 59=20 src/cairo-backend.pc.in | 12=20 src/cairo-base85-stream.c | 5=20 src/cairo-beos-surface.cpp | 5=20 src/cairo-beos.h | 1=20 src/cairo-cache.c | 32=20 src/cairo-clip-private.h | 8=20 src/cairo-clip.c | 55=20 src/cairo-debug.c | 3=20 src/cairo-directfb-surface.c | 104 - src/cairo-directfb.h | 13=20 src/cairo-font-options.c | 60=20 src/cairo-font-subset-private.h | 1=20 src/cairo-font-subset.c | 182 +- src/cairo-font.c | 42=20 src/cairo-ft-font.c | 471 +++-- src/cairo-glitz-surface.c | 48=20 src/cairo-gstate-private.h | 2=20 src/cairo-gstate.c | 185 -- src/cairo-hash.c | 54=20 src/cairo-hull.c | 2=20 src/cairo-image-surface.c | 132 + src/cairo-lzw.c | 4=20 src/cairo-matrix.c | 147 - src/cairo-meta-surface.c | 53=20 src/cairo-operator.c | 8=20 src/cairo-output-stream.c | 28=20 src/cairo-paginated-surface.c | 28=20 src/cairo-path-bounds.c | 8=20 src/cairo-path-data.c | 14=20 src/cairo-path-fill.c | 3=20 src/cairo-path-stroke.c | 22=20 src/cairo-path.c | 32=20 src/cairo-pattern.c | 122 - src/cairo-pdf-surface.c | 2009 +++++++++++++------= ----- src/cairo-pdf-test.h | 20=20 src/cairo-pdf.h | 5=20 src/cairo-pen.c | 18=20 src/cairo-png.c | 35=20 src/cairo-polygon.c | 2=20 src/cairo-ps-surface.c | 982 +++++------ src/cairo-ps-test.h | 20=20 src/cairo-ps.h | 5=20 src/cairo-quartz-private.h | 2=20 src/cairo-quartz-surface.c | 37=20 src/cairo-quartz.h | 1=20 src/cairo-rectangle.c | 85 + src/cairo-region.c | 17=20 src/cairo-scaled-font-subsets-private.h | 267 +++ src/cairo-scaled-font-subsets.c | 384 ++++ src/cairo-scaled-font.c | 195 +- src/cairo-slope.c | 6=20 src/cairo-spline.c | 3=20 src/cairo-stroke-style.c | 1=20 src/cairo-surface-fallback-private.h | 2=20 src/cairo-surface-fallback.c | 145 - src/cairo-surface.c | 461 +++-- src/cairo-svg-surface.c | 770 +++++---- src/cairo-svg-test.h | 20=20 src/cairo-svg.h | 9=20 src/cairo-traps.c | 51=20 src/cairo-type1-subset.c | 1040 ++++++++++++ src/cairo-unicode.c | 39=20 src/cairo-wideint-private.h | 11=20 src/cairo-wideint.c | 18=20 src/cairo-win32-font.c | 196 +- src/cairo-win32-private.h | 11=20 src/cairo-win32-surface.c | 299 ++- src/cairo-win32.h | 3=20 src/cairo-xcb-surface.c | 108 - src/cairo-xlib-private.h | 4=20 src/cairo-xlib-screen.c | 32=20 src/cairo-xlib-surface.c | 698 ++++---- src/cairo-xlib-test.h | 3=20 src/cairo-xlib-xrender.h | 1=20 src/cairo-xlib.h | 1=20 src/cairo.c | 246 +- src/cairo.h | 61=20 src/cairoint.h | 182 +- src/test-fallback-surface.c | 17=20 src/test-meta-surface.c | 9=20 src/test-paginated-surface.c | 5=20 test/.gitignore | 10=20 test/Makefile.am | 31=20 test/buffer-diff.c | 3=20 test/buffer-diff.h | 4=20 test/cairo-test-directfb.c | 20=20 test/cairo-test.c | 80=20 test/cairo-test.h | 5=20 test/caps-joins.c | 2=20 test/clip-all.c | 2=20 test/clip-nesting.c | 4=20 test/clip-operator.c | 14=20 test/dash-offset-negative.c | 8=20 test/dash-scale-ps-argb32-ref.png |binary test/dash-scale-ref.png |binary test/dash-scale.c | 125 + test/device-offset-ref.png |binary test/device-offset-rgb24-ref.png |binary test/device-offset.c | 87 + test/fallback-resolution.c | 178 ++ test/fill-and-stroke-alpha-svg-argb32-ref.png |binary test/fill-and-stroke-alpha-svg-rgb24-ref.png |binary test/fill-and-stroke.c | 2=20 test/filter-nearest-offset.c | 2=20 test/font-face-get-type.c | 4=20 test/ft-text-vertical-layout-pdf-argb32-ref.png |binary test/ft-text-vertical-layout-pdf-rgb24-ref.png |binary test/ft-text-vertical-layout-ps-argb32-ref.png |binary test/ft-text-vertical-layout-ps-rgb24-ref.png |binary test/ft-text-vertical-layout-ref.png |binary test/ft-text-vertical-layout-rgb24-ref.png |binary test/ft-text-vertical-layout-svg-argb32-ref.png |binary test/ft-text-vertical-layout-svg-rgb24-ref.png |binary test/ft-text-vertical-layout.c | 131 + test/get-and-set.c | 2=20 test/get-group-target-ref.png |binary test/get-group-target.c | 90 + test/gradient-alpha-ref.png |binary test/gradient-alpha-rgb24-ref.png |binary test/gradient-alpha.c | 2=20 test/imagediff.c | 4=20 test/line-width-scale-ps-argb32-ref.png |binary test/line-width-scale-ref.png |binary test/line-width-scale.c | 30=20 test/linear-gradient-ref.png |binary test/linear-gradient.c | 8=20 test/mask-ref.png |binary test/mask-rgb24-ref.png |binary test/mask.c | 8=20 test/operator-clear.c | 16=20 test/operator-source-ref.png |binary test/operator-source-rgb24-ref.png |binary test/operator-source.c | 18=20 test/pdf-features.c | 4=20 test/pdf2png.c | 39=20 test/pixman-rotate-rgb24-ref.png |binary test/pixman-rotate-svg-argb32-ref.png |binary test/pixman-rotate-svg-rgb24-ref.png |binary test/ps-features.c | 2=20 test/pthread-show-text.c | 2=20 test/push-group-ref.png |binary test/push-group-rgb24-ref.png |binary test/push-group.c | 2=20 test/read-png.c | 1=20 test/rectangle-rounding-error.c | 10=20 test/rel-path.c | 4=20 test/select-font-face-pdf-argb32-ref.png |binary test/select-font-face-ps-argb32-ref.png |binary test/select-font-face-ref.png |binary test/select-font-face-svg-argb32-ref.png |binary test/select-font-face-svg-rgb24-ref.png |binary test/select-font-face.c | 83=20 test/self-copy.c | 6=20 test/show-text-current-point-pdf-argb32-ref.png |binary test/show-text-current-point-ps-argb32-ref.png |binary test/source-clip.c | 2=20 test/surface-finish-twice.c | 1=20 test/surface-pattern.c | 2=20 test/svg-clip.c | 2=20 test/text-antialias-gray-pdf-argb32-ref.png |binary test/text-antialias-gray-ps-argb32-ref.png |binary test/text-antialias-none-pdf-argb32-ref.png |binary test/text-antialias-none-ps-argb32-ref.png |binary test/text-antialias-subpixel-pdf-argb32-ref.png |binary test/text-antialias-subpixel-ps-argb32-ref.png |binary test/text-cache-crash.c | 1=20 test/text-pattern-ref.png |binary test/text-pattern-rgb24-ref.png |binary test/text-pattern.c | 10=20 test/text-rotate.c | 2=20 test/transforms.c | 2=20 test/trap-clip-ref.png |binary test/trap-clip-rgb24-ref.png |binary test/trap-clip.c | 4=20 test/unbounded-operator.c | 16=20 test/user-data.c | 2=20 test/write-png.c | 4=20 test/xlib-surface.c | 20=20 test/xmalloc.c | 1=20 test/zero-alpha-ref.png |binary test/zero-alpha.c | 97 + 235 files changed, 8579 insertions(+), 4836 deletions(-) --pgp-sign-Multipart_Wed_Jun_14_09:01:49_2006-1 Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEkDL06JDdNq8qSWgRAlbkAJ92YIDTUafsLa/U2ZTiKZ9zO0WmFgCfc252 2Y2uyD4rr4R2jx+43617QZk= =vX2e -----END PGP SIGNATURE----- --pgp-sign-Multipart_Wed_Jun_14_09:01:49_2006-1-- From janina@opera.rednote.net Wed Jun 14 12:12:42 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 912A73B029F for ; Wed, 14 Jun 2006 12:12:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19357-07 for ; Wed, 14 Jun 2006 12:12:39 -0400 (EDT) Received: from opera.rednote.net (opera.rednote.net [70.84.142.212]) by menubar.gnome.org (Postfix) with ESMTP id ED02F3B0281 for ; Wed, 14 Jun 2006 12:12:38 -0400 (EDT) Received: from opera.rednote.net (localhost.localdomain [127.0.0.1]) by opera.rednote.net (8.13.6/8.13.5) with ESMTP id k5EGAtdS007700; Wed, 14 Jun 2006 16:10:55 GMT Received: (from janina@localhost) by opera.rednote.net (8.13.6/8.13.6/Submit) id k5EGAtD9007699; Wed, 14 Jun 2006 12:10:55 -0400 Date: Wed, 14 Jun 2006 12:10:55 -0400 From: Janina Sajka To: parente@cs.unc.edu Subject: Re: lsr-0.2.1 Message-ID: <20060614161055.GV2259@rednote.net> References: <5308fd2c0606120606p43b30477o4e73cfad155dcaa7@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5308fd2c0606120606p43b30477o4e73cfad155dcaa7@mail.gmail.com> User-Agent: Mutt/1.4.2.1i X-Operating-System: Linux opera.rednote.net 2.6.16-1.2122_FC5spksmp Organization: Capital Accessibility LLC (http://www.CapitalAccessibility.com) X-PGP-Key: http://www.CapitalAccessibility.com/JaninaSajka_gpg_key.html X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.568 tagged_above=-999 required=2 tests=[AWL=0.031, BAYES_00=-2.599] X-Spam-Score: -2.568 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 12:46:56 -0400 Cc: gnome-announce-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 16:12:42 -0000 Peter Parente writes: > ============== > * What is it ? > ============== > > Linux Screen Reader (LSR) is an extensible assistive technology for people > with > disabilities. The design philosophy behind LSR is to provide a core platform > that enables the development of LSR extensions for improving desktop > application accessibility and usability and shields extension developers > from > the intricacies of the desktop accessibility architecture. > snip snip Where can I get it ? rpm packages for Fedora Core 5 available from: ftp://SpeakupModified.Org/fedora/rednote/ The binary is under RPMS, and the source under SRPMS as usual with Fedora. Special Note: You may need to upgrade your Gnome Desktop to Fedora Development. If you find things not working with the current release and updated Gnome environment, try: yum --disablerepo='*' --enablerepo=development groupupdate 'GNOME Desktop Environment' Note the above command is issued on one line, though it's probably been broken into at least two lines in this email message. -- Janina Sajka Phone: +1.240.715.1272 Partner, Capital Accessibility LLC http://CapitalAccessibility.Com Marketing the Owasys 22C talking screenless cell phone in the U.S. and Canada--Go to http://ScreenlessPhone.Com to learn more. Chair, Accessibility Workgroup Free Standards Group (FSG) janina@freestandards.org http://a11y.org From janina@opera.rednote.net Wed Jun 14 12:17:56 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 08CF33B0156; Wed, 14 Jun 2006 12:17:56 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28336-10; Wed, 14 Jun 2006 12:17:54 -0400 (EDT) Received: from opera.rednote.net (opera.rednote.net [70.84.142.212]) by menubar.gnome.org (Postfix) with ESMTP id 2375F3B03DA; Wed, 14 Jun 2006 12:17:54 -0400 (EDT) Received: from opera.rednote.net (localhost.localdomain [127.0.0.1]) by opera.rednote.net (8.13.6/8.13.5) with ESMTP id k5EGH5iU007764; Wed, 14 Jun 2006 16:17:05 GMT Received: (from janina@localhost) by opera.rednote.net (8.13.6/8.13.6/Submit) id k5EGH5N6007763; Wed, 14 Jun 2006 12:17:05 -0400 Date: Wed, 14 Jun 2006 12:17:05 -0400 From: Janina Sajka To: Willie Walker Subject: Re: Announcing Orca 0.2.5 rpms Message-ID: <20060614161705.GW2259@rednote.net> References: <1150069937.5071.4.camel@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1150069937.5071.4.camel@localhost> User-Agent: Mutt/1.4.2.1i X-Operating-System: Linux opera.rednote.net 2.6.16-1.2122_FC5spksmp Organization: Capital Accessibility LLC (http://www.CapitalAccessibility.com) X-PGP-Key: http://www.CapitalAccessibility.com/JaninaSajka_gpg_key.html X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.569 tagged_above=-999 required=2 tests=[AWL=0.030, BAYES_00=-2.599] X-Spam-Score: -2.569 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 12:47:08 -0400 Cc: gnome-announce-list@gnome.org, gnome-accessibility-list@gnome.org, orca-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 16:17:56 -0000 rpm packages of Orca-0.2.5 for Fedora Core 5 are now available from: ftp://SpeakupModified.Org/fedora/rednote/ The binary is under RPMS, and the source under SRPMS as usual with Fedora. Installation There is yet some unresolved dependency issue with these rpms, so they probably will need to be installed using the --nodeps option as follows: rpm -Uv --nodeps orca-0.2.5-1.i386.rpm However, I can attest the resulting installation works for me on two different systems. I have first run: orca -t from the console, as the same user I am in the gui desktop. Once on the desktop, I have issued Alt-F2 and typed: orca -t again to get things started. Seems wrong, but is working for me on two systems. Special Note: You may need to upgrade your Gnome Desktop to Fedora Development. If you find things not working with the current release and updated Gnome environment, try: yum --disablerepo='*' --enablerepo=development groupupdate 'GNOME Desktop Environment' Note the above command is issued on one line, though it's probably been broken into at least two lines in this email message. -- Janina Sajka Phone: +1.240.715.1272 Partner, Capital Accessibility LLC http://CapitalAccessibility.Com Marketing the Owasys 22C talking screenless cell phone in the U.S. and Canada--Go to http://ScreenlessPhone.Com to learn more. Chair, Accessibility Workgroup Free Standards Group (FSG) janina@freestandards.org http://a11y.org From ross@golder.org Thu Jun 15 07:48:01 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D826D3B007D for ; Thu, 15 Jun 2006 07:48:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03520-09 for ; Thu, 15 Jun 2006 07:47:53 -0400 (EDT) Received: from black.golder.org (black.golder.org [81.6.249.35]) by menubar.gnome.org (Postfix) with ESMTP id BFA543B009A for ; Thu, 15 Jun 2006 07:47:49 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by black.golder.org (Postfix) with ESMTP id 6BF4B40AB; Thu, 15 Jun 2006 12:47:48 +0100 (BST) X-Virus-Scanned: amavisd-new at golder.org Received: from black.golder.org ([127.0.0.1]) by localhost (black.golder.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id H-Yje6ok1oMb; Thu, 15 Jun 2006 12:47:45 +0100 (BST) Received: from red (unknown [125.24.64.59]) by black.golder.org (Postfix) with ESMTP id B12633FE2; Thu, 15 Jun 2006 12:47:41 +0100 (BST) Subject: Subversion migration schedule (new cut-off is Fri 14 July) From: Ross Golder To: gnome-announce-list@gnome.org Content-Type: multipart/mixed; boundary="=-41kIj1JG8/E+h5tM2RXc" Date: Thu, 15 Jun 2006 18:47:06 +0700 Message-Id: <1150372026.9754.1.camel@red> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.519 tagged_above=-999 required=2 tests=[AWL=0.080, BAYES_00=-2.599] X-Spam-Score: -2.519 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 07:51:43 -0400 Cc: devel-announce@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 11:48:02 -0000 --=-41kIj1JG8/E+h5tM2RXc Content-Type: text/plain Content-Transfer-Encoding: 7bit As per below, it was decided that 23rd June was too soon before GUADEC, so the new cut-off date has been put back to 14th July. Regards, -- Ross --=-41kIj1JG8/E+h5tM2RXc Content-Disposition: inline Content-Description: Forwarded message - Re: Subversion migration schedule (new cut-off Fri 14 July?) Content-Type: message/rfc822 Return-Path: Received: from black.golder.org ([unix socket]) by black.golder.org (Cyrus v2.3.1-Invoca-RPM-2.3.1-2.6.fc5) with LMTPA; Fri, 02 Jun 2006 14:59:52 +0100 X-Sieve: CMU Sieve 2.3 Received: from localhost (localhost.localdomain [127.0.0.1]) by black.golder.org (Postfix) with ESMTP id 621804A93 for ; Fri, 2 Jun 2006 14:59:52 +0100 (BST) X-Virus-Scanned: amavisd-new at golder.org X-Spam-Score: 0.466 X-Spam-Level: X-Spam-Status: No, score=0.466 tagged_above=-99 required=2.5 tests=[AWL=0.466] Received: from black.golder.org ([127.0.0.1]) by localhost (black.golder.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 9MLIDaDvOs4S for ; Fri, 2 Jun 2006 14:59:49 +0100 (BST) Received: from menubar.gnome.org (menubar.gnome.org [209.132.176.177]) by black.golder.org (Postfix) with ESMTP id 570164A91 for ; Fri, 2 Jun 2006 14:59:48 +0100 (BST) Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 58DFF3B04AD; Fri, 2 Jun 2006 09:59:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30643-08; Fri, 2 Jun 2006 09:59:44 -0400 (EDT) Received: from menubar.gnome.org (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0CDFA3B0480; Fri, 2 Jun 2006 09:59:44 -0400 (EDT) X-Original-To: gnome-hackers@gnome.org Delivered-To: gnome-hackers@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 44C613B0480 for ; Fri, 2 Jun 2006 09:59:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30672-06 for ; Fri, 2 Jun 2006 09:59:41 -0400 (EDT) Received: from localhost.localdomain (unknown [125.25.17.26]) by menubar.gnome.org (Postfix) with ESMTP id 7067E3B0468 for ; Fri, 2 Jun 2006 09:59:39 -0400 (EDT) Received: by localhost.localdomain (Postfix, from userid 500) id 80BC09FC5E; Fri, 2 Jun 2006 20:59:23 +0700 (ICT) From: Ross Golder To: Jeff Waugh In-Reply-To: <20060601132052.GF5203@waugh.id.au> References: <1139648664.6627.40.camel@localhost> <1148971293.12902.2.camel@red> <20060601132052.GF5203@waugh.id.au> Content-Type: text/plain Date: Fri, 02 Jun 2006 20:59:23 +0700 Message-Id: <1149256763.6298.18.camel@red> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org Cc: gnome-hackers@gnome.org Subject: Re: Subversion migration schedule (new cut-off Fri 14 July?) X-BeenThere: gnome-hackers@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Hacking GNOME discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: gnome-hackers-bounces@gnome.org Errors-To: gnome-hackers-bounces@gnome.org X-Virus-Scanned: by amavisd-new at gnome.org Content-Transfer-Encoding: 7bit On Thu, 2006-06-01 at 23:20 +1000, Jeff Waugh wrote: > > > > As the various show-stoppers that prevented our previously scheduled > > migration from going ahead have now been resolved, I am proposing that the > > new migration go ahead at 23:59UTC on Friday 16th June 2006. Please let us > > know a.s.a.p if that will be inconvenient for anyone. > > Ross, > > Can I suggest that we do the migration after GUADEC? I think it would be > more useful for us to have reliable and known access to CVS through the week > than be dealing with post-migration woes (as clean as it will be, there will > be some hassles for everyone). > > Thanks, > > - Jeff > How about this - I'll run another test migration on the 23rd, but won't actually make the switch. At least then, if anyone at GUADEC wants to play with or demonstrate anything related to subversion, at least they will get fairly up-to-date code. So, looking at the release schedule, it looks like the next best date would be July 14th. How would that be? -- Ross _______________________________________________ gnome-hackers mailing list gnome-hackers@gnome.org http://mail.gnome.org/mailman/listinfo/gnome-hackers --=-41kIj1JG8/E+h5tM2RXc-- From gjc@inescporto.pt Thu Jun 15 15:10:39 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7C99F3B02BF for ; Thu, 15 Jun 2006 15:10:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 29070-01 for ; Thu, 15 Jun 2006 15:10:36 -0400 (EDT) Received: from animal.inescn.pt (correio.inescn.pt [194.117.24.9]) by menubar.gnome.org (Postfix) with ESMTP id 5CEBB3B016C for ; Thu, 15 Jun 2006 15:10:35 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by animal.inescn.pt (8.13.6/8.13.6/7) with ESMTP id k5FJ9a1H007835; Thu, 15 Jun 2006 20:09:36 +0100 (WEST) Received: from pong.inescporto.pt (pong.inescn.pt [194.117.26.74]) by animal.inescn.pt (8.13.6/8.13.6/5) with ESMTP id k5FJ9PGj007812; Thu, 15 Jun 2006 20:09:25 +0100 (WEST) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by pong.inescporto.pt (Postfix) with ESMTP id 63C2A1303A8; Thu, 15 Jun 2006 20:06:19 +0100 (WEST) Subject: ANNOUNCE: PyGTK 2.9.2 (unstable) From: "Gustavo J. A. M. Carneiro" To: PyGTK Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-RzvsD9ggP/SFbL+MHSSy" Date: Thu, 15 Jun 2006 20:09:24 +0100 Message-Id: <1150398564.5933.27.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at inescporto.pt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.428 tagged_above=-999 required=2 tests=[AWL=0.037, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.428 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 23:27:04 -0400 Cc: gnome-announce-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 19:10:39 -0000 --=-RzvsD9ggP/SFbL+MHSSy Content-Type: text/plain Content-Transfer-Encoding: quoted-printable I am pleased to announce version 2.9.2 of the Python bindings for GTK. The new release is available from ftp.gnome.org and its mirrors as soon as its synced correctly: http://ftp.gnome.org/pub/GNOME/sources/pygtk/2.9/ This is an unstable release and should be used with caution. It requires either GTK+ 2.8.x or GTK+ >=3D 2.9.3. Blurb: GTK is a toolkit for developing graphical applications that run on systems such as Linux, Windows and MacOS X. It provides a comprehensive set of GUI widgets, can display Unicode bidi text. It links into the Gnome Accessibility Framework through the ATK library. PyGTK provides a convenient wrapper for the GTK+ library for use in Python programs, and takes care of many of the boring details such as managing memory and type casting. When combined with PyORBit and gnome-python, it can be used to write full featured Gnome applications. Like the GTK+ library itself PyGTK is licensed under the GNU LGPL, so is suitable for use in both free software and proprietary applications. It is already in use in many applications ranging from small single purpose scripts up to large full features applications. pygtk-2.9.2 15-june-2006 - Fix a codegen bug that prevent build of other extensions (344845, Gus= tavo) - Builds with pycairo 1.1.6 (344957, Gustavo) - gtk.TextBuffer rich text copy and serialization (Finlay) - Correct Print Editor example (Gustavo) PyGTK requires GTK+ >=3D 2.8.0 and Python >=3D 2.3.5 to build. Bug reports, as always, should go to Bugzilla; check out http://pygtk.org/developer.html and http://pygtk.org/feedback.html for links to posting and querying bug reports for PyGTK. --=20 Gustavo J. A. M. Carneiro The universe is always one step beyond logic=09 --=-RzvsD9ggP/SFbL+MHSSy Content-Type: application/pgp-signature; name=signature.asc Content-Description: Esta =?ISO-8859-1?Q?=E9?= uma parte de mensagem assinada digitalmente -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (GNU/Linux) iD8DBQBEkbBk2XoHyMdS6TARAjgIAJ4upHdWvOey6x3eV21Ji6P58K+OhgCdGstN wEORPp04QwWKfmDGW0Dum/g= =Suqv -----END PGP SIGNATURE----- --=-RzvsD9ggP/SFbL+MHSSy-- From johnp@redhat.com Thu Jun 15 16:50:59 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8557E3B01FF; Thu, 15 Jun 2006 16:50:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00479-04; Thu, 15 Jun 2006 16:50:58 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 798313B00D0; Thu, 15 Jun 2006 16:50:58 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5FKndP2000921; Thu, 15 Jun 2006 16:49:39 -0400 Received: from lacrosse.corp.redhat.com (lacrosse.corp.redhat.com [172.16.52.154]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5FKnYTU014072; Thu, 15 Jun 2006 16:49:34 -0400 Received: from [172.16.80.35] (remedyz.boston.redhat.com [172.16.80.35]) by lacrosse.corp.redhat.com (8.12.11.20060308/8.11.6) with ESMTP id k5FKnYad010638; Thu, 15 Jun 2006 16:49:34 -0400 Subject: GNOME 2.15.3 Development Release From: "John (J5) Palmieri" To: devel-announce-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Date: Thu, 15 Jun 2006 16:49:34 -0400 Message-Id: <1150404574.5271.18.camel@remedyz.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.3 (2.7.3-2) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.449 tagged_above=-999 required=2 tests=[AWL=-0.079, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_GT=0.077, TW_JH=0.077, TW_YG=0.077] X-Spam-Score: -2.449 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 23:27:04 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 20:50:59 -0000 GNOME 2.15.3 Development Release ================================ It is that time again. Time to get it, time to build it and time to test it. The GNOME Release Team is proud to present the 2.15.3 development release. This is our third development release on our road towards GNOME 2.16.0, which will be released in September 2006. So go download it. Go compile it. Go test it. And go hack on it, document it, translate it, fix it. Note that gnome-applets, deskbar-applet and pygtk all need patches which can be found here gnome-applets: http://download.gnome.org/teams/releng/2.15.3/gswitchit.patch deskbar-applet: http://download.gnome.org/teams/releng/2.15.3/CuemiacPopupEntry.py.patch pygtk: http://download.gnome.org/teams/releng/2.15.3/defsparser.py.patch To compile GNOME 2.15.3, you can use GARNOME (will be released soon), or the jhbuild modulesets available at: http://download.gnome.org/teams/releng/2.15.3/ The release notes that describe the changes between 2.15.2 and 2.15.3 are available. Go read them to learn all the goodness of this release: platform - http://download.gnome.org/platform/2.15/2.15.3/NEWS desktop - http://download.gnome.org/desktop/2.15/2.15.3/NEWS admin - http://download.gnome.org/admin/2.15/2.15.3/NEWS bindings - http://download.gnome.org/bindings/2.15/2.15.3/NEWS Here are some figures about this release: admin 2.15.3 statistics: tar.gz: 792K total tar.bz2: 616K total bindings 2.15.3 statistics: tar.gz: 21M total tar.bz2: 15M total desktop 2.15.3 statistics: tar.gz: 156M total tar.bz2: 114M total platform 2.15.3 statistics: tar.gz: 53M total tar.bz2: 37M total The GNOME 2.15.3 release is available here: platform sources - http://download.gnome.org/platform/2.15/2.15.3/ desktop sources - http://download.gnome.org/desktop/2.15/2.15.3/ admin sources - http://download.gnome.org/admin/2.15/2.15.3/ bindings sources - http://download.gnome.org/bindings/2.15/2.15.3/ WARNING! WARNING! WARNING! -------------------------- This release is a snapshot of development code. Although it is buildable and usable, it is primarily intended for testing and hacking purposes. GNOME uses odd minor version numbers to indicate development status. For more informations about 2.15, the full schedule, the official module lists and the proposed modules list, please see our shiny 2.15 page: http://www.gnome.org/start/unstable/ We hope you'll love it, The GNOME Release Team -- John (J5) Palmieri From guenther@rudersport.de Thu Jun 15 17:06:31 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1F0DB3B0237; Thu, 15 Jun 2006 17:06:31 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00750-05; Thu, 15 Jun 2006 17:06:30 -0400 (EDT) Received: from rudersport.de (rudersport.de [192.220.91.203]) by menubar.gnome.org (Postfix) with ESMTP id 427033B00D0; Thu, 15 Jun 2006 17:06:30 -0400 (EDT) Received: from [10.0.0.2] (IP-213157009217.dialin.heagmedianet.de [213.157.9.217]) by rudersport.de (8.12.11.20060308) id k5FL5jDY040713; Thu, 15 Jun 2006 15:05:46 -0600 (MDT) Subject: [ANNOUNCE] GARNOME 2.15.3 From: guenther To: garnome-list@gnome.org Content-Type: text/plain Date: Thu, 15 Jun 2006 23:05:43 +0200 Message-Id: <1150405543.8323.15.camel@monkey.loc> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.053 tagged_above=-999 required=2 tests=[AWL=-0.451, BAYES_00=-2.599, SUBJ_ALL_CAPS=0.997] X-Spam-Score: -2.053 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 23:27:04 -0400 Cc: gnome-announce-list@gnome.org, gnome-love@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 21:06:31 -0000 GARNOME 2.15.3 ============== The "It's quiet out there... Yes... Too quiet..." release. What seemed to be no last minute releases turned out to be a broken list server, holding back the official GNOME release for a day. Also, there have been a bunch of build issues this time around, more than usual. Some good cooperation between the Release Team and the GARNOME Team (especially Joseph) hacked around the brokeness, thus... We are pleased to announce the release of GARNOME 2.15.3 Desktop and Developer Platform. This release includes all of GNOME 2.15.3 plus a whole bunch of updates that were released after the GNOME freeze date. This is the third release in the unstable cycle, with more features, more fixes and yet more madness added. It is for anyone who wants to get his hands dirty on the development branch, or who'd like to get a peek at future features. If you want to help spot issues in GARNOME, (or, better yet, fix 'em ;-) this release is for you as well. As usual, you can get the tarball directly from the gnome.org site: http://download.gnome.org/sources/garnome/2.15/ Note: GNOME 2.15.x is an unstable branch and is assumed to be a moving target. Therefore, things in this release may not work as advertised. If you find any issues with this release, feel free to contact the GARNOMEies in the #garnome channel on GIMPNet (irc://irc.gnome.org), where we hang out, or post to the mailing list. More information is available at our project website: http://www.gnome.org/projects/garnome/ Enjoy, The GARNOME Team -- char *t="\10pse\0r\0dtu\0.@ghno\x4e\xc8\x79\xf4\xab\x51\x8a\x10\xf4\xf4\xc4"; main(){ char h,m=h=*t++,*x=t+2*h,c,i,l=*x,s=0; for (i=0;i>=1)||!t[s+h]){ putchar(t[s]);h=m;s=0; }}} From behdad.esfahbod@gmail.com Thu Jun 15 17:39:14 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 21DF83B0232 for ; Thu, 15 Jun 2006 17:39:14 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02006-04 for ; Thu, 15 Jun 2006 17:39:13 -0400 (EDT) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.237]) by menubar.gnome.org (Postfix) with ESMTP id 17AEE3B0007 for ; Thu, 15 Jun 2006 17:39:13 -0400 (EDT) Received: by wr-out-0506.google.com with SMTP id 37so427823wra for ; Thu, 15 Jun 2006 14:38:12 -0700 (PDT) Received: by 10.54.108.13 with SMTP id g13mr2187733wrc; Thu, 15 Jun 2006 14:38:11 -0700 (PDT) Received: from ?192.168.190.5? ( [72.136.156.47]) by mx.gmail.com with ESMTP id 6sm1544376wrl.2006.06.15.14.38.10; Thu, 15 Jun 2006 14:38:11 -0700 (PDT) Subject: Women's Summer Outreach Program 2006 From: Behdad Esfahbod To: gnome-hackers@gnome.org, foundation-list@gnome.org, foundation-announce@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Date: Thu, 15 Jun 2006 17:38:06 -0400 Message-Id: <1150407487.29623.12.camel@home> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 (2.6.1-1.fc5.2) Content-Transfer-Encoding: 7bit Sender: Behdad Esfahbod X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.6 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.6 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 23:27:04 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 21:39:14 -0000 GNOME to Sponsor Female Developers in a Summer Outreach Program BOSTON, Mass - June 13, 2006 - The GNOME Foundation is offering USD$9000 to female students in order to promote the participation of women in GNOME-related development. The money originates from GNOME's participation in the Google "Summer of Code" program (code.google.com/soc/), for which GNOME developers will mentor 20 students working throughout the northern summer on GNOME-related projects. This year GNOME received 181 applications to Google's program, yet none were from women. The GNOME Foundation has therefore chosen to reinvest Google's contribution into a new program designed to increase the participation of women in GNOME. The program has no official relationship with Google. "Free software prides itself on being open to anyone with a good idea, yet less than 2% of free software developers are female. We, as a community, need to be actively working to change this statistic, and programs like this one are a much needed step in the right direction." said Hanna Wallach, a GNOME developer who is involved in several projects that encourage women to participate in free software development. The Women's Summer Outreach Program is currently accepting applications from female students. Accepted students will receive a stipend of USD $3000 over a two month period. A pool of project ideas is provided at www.gnome.org/projects/wsop/, though original proposals are also encouraged. Projects may either be related to GNOME directly, or indirectly via projects such as Gstreamer and Abiword. Each student will be assigned a mentor to provide guidance throughout the program. Vincent Untz, member of the GNOME Foundation board and coordinator of the GNOME team for Google's "Summer of Code" program, explained: "Many women have the skills required to contribute to Free Software projects like GNOME, but may not see an opportunity to start working with us. By initiating this program, not only do we want to highlight the issue, but we also hope that this opportunity will help more women to get involved in the long term." Applications should be submitted using the form at www.gnome.org/projects/wsop/. More information about the application process may be found at the same location. From cworth@cworth.org Fri Jun 16 13:14:11 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7C02B3B0125 for ; Fri, 16 Jun 2006 13:14:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07413-02 for ; Fri, 16 Jun 2006 13:14:09 -0400 (EDT) Received: from theworths.org (cworth.org [217.160.249.188]) by menubar.gnome.org (Postfix) with ESMTP id B2BA33B0128 for ; Fri, 16 Jun 2006 13:14:08 -0400 (EDT) Received: (qmail 6134 invoked from network); 16 Jun 2006 13:13:38 -0400 Received: from localhost (HELO raht.cworth.org) (127.0.0.1) by localhost with SMTP; 16 Jun 2006 13:13:38 -0400 Date: Fri, 16 Jun 2006 10:08:58 -0700 Message-ID: <878xnxc9jp.wl%cworth@cworth.org> From: Carl Worth To: cairo-announce@cairographics.org Subject: cairo snapshot 1.1.10 now available User-Agent: Wanderlust/2.14.0 (Africa) Emacs/21.4 Mule/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: multipart/signed; boundary="pgp-sign-Multipart_Fri_Jun_16_10:08:52_2006-1"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.4 tagged_above=-999 required=2 tests=[AWL=-0.090, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, TW_BX=0.077, TW_IB=0.077] X-Spam-Score: -2.4 X-Spam-Level: X-Mailman-Approved-At: Sat, 17 Jun 2006 00:52:39 -0400 Cc: gnome-announce-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2006 17:14:11 -0000 --pgp-sign-Multipart_Fri_Jun_16_10:08:52_2006-1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable A new cairo snapshot 1.1.10 is now available from: http://cairographics.org/snapshots/cairo-1.1.10.tar.gz which can be verified with: http://cairographics.org/snapshots/cairo-1.1.10.tar.gz.sha1 709d48dbcd0ac806e4f7bfd1f69314e4dfb57329 cairo-1.1.10.tar.gz http://cairographics.org/snapshots/cairo-1.1.10.tar.gz.sha1.asc (signed by Carl Worth) Additionally, a git clone of the source tree: git clone git://git.cairographics.org/git/cairo will include a signed 1.1.10 tag which points to a commit named: 65e73c81b83222de873935cf384e514ea20ac854 which can be verified with: git verify-tag 1.1.10 and can be checked out with a command such as: git checkout -b build 1.1.10 This is the fifth in a series of snapshots working toward the 1.2 release of cairo. The primary motivation for this snapshot is to fix a long-standing bug that had long been silent, but as of the 1.1.8 snapshot started causing crashes when run against 16-bit depth X servers, (often Xvnc or Xnest). The fix for this adds a new CAIRO_FORMAT_RGB16_565 to the API. This snapshot also includes a rewrite of cairo's SVG backend to eliminate the dependency on libxml2. With this in place, cairo 1.2 will not depend on any libraries that cairo 1.0 did not. As usual, there are also a few fixes for minor bugs. What is cairo =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Cairo is a 2D graphics library with support for multiple output devices. Currently supported output targets include the X Window System, win32, and image buffers. Experimental backends include OpenGL (through glitz), Quartz, XCB, PostScript and PDF file output. Cairo is designed to produce consistent output on all output media while taking advantage of display hardware acceleration when available (for example, through the X Render Extension). The cairo API provides operations similar to the drawing operators of PostScript and PDF. Operations in cairo including stroking and filling cubic B=E9zier splines, transforming and compositing translucent images, and antialiased text rendering. All drawing operations can be transformed by any affine transformation (scale, rotation, shear, etc.). Cairo has been designed to let you draw anything you want in a modern 2D graphical user interface. At the same time, the cairo API has been designed to be as fun and easy to learn as possible. If you're not having fun while programming with cairo, then we have failed somewhere---let us know and we'll try to fix it next time around. Cairo is free software and is available to be redistributed and/or modified under the terms of either the GNU Lesser General Public License (LGPL) version 2.1 or the Mozilla Public License (MPL) version 1.1. Where to get more information about cairo =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D The primary source of information about cairo is: http://cairographics.org/ The latest releases of cairo can be found at: http://cairographics.org/releases Snapshots of in-development versions of cairo: http://cairographics.org/snapshots The programming manual for using cairo: http://cairographics.org/manual Mailing lists for contacting cairo users and developers: http://cairographics.org/lists Answers to some frequently asked questions about cairo: http://cairographics.org/FAQ Detailed list of changes since 1.1.8 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Tag '1.1.10' created by Carl Worth at 2006-06-16 17:53 = -0700 cairo 1.1.10 snapshot -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEkuIi6JDdNq8qSWgRArhnAJ4hDlfpnWYY9bj0NVs7ZMl+XKsaXwCffRLz HMhowJx6or+LK99tRtZO5YM=3D =3DAsAw -----END PGP SIGNATURE----- Changes since 1.1.8: Behdad Esfahbod: Use enum time instead of int (shuts intel compiler up.) Merge branch 'cairo' into cairo-origin Carl Worth: Increment CAIRO_VERSION to 1.1.9 after making the 1.1.8 snapshot _cairo_format_from_pixman_format: Add useful error mesage and asserti= on when failing. Remove _cairo_image_surface_is_alpha_only in favor of just looking at= content value. Drop _cairo_surface_is_opaque now that we have cairo_surface_get_cont= ent Add missing breaks in switch statement. New API: Add support for new CAIRO_FORMAT_RGB16_565 Update release rules in Makefile to add git signature information. Annoying doc template churn. Update version to 1.1.10 and add notes to NEWS file. Emmanuel Pacaud: SVG: Update of reference images. Jinghua Luo: xlib: free resources before return if looking up glyph surface fails. Kristian H=F8gsberg: Make cairo_output_stream_t an embeddable type. Convert the stdio output stream to use the new output stream interfac= e. Convert the word wrap stream, the base85 stream and the ps string str= eam. Add an in-memory output-stream implementation. Only run fallback-resolution test case when all of PDF, PS and SVG ar= e enabled. Rewrite SVG backend to just use cairo output stream instead of libxml= 2. Remove libxml2 checks from configure.in. Actually add src/cairo-output-stream-private.h. Merge branch 'svg-rewrite' Add test case for the PDF, PS and SVG stream constructors. Only call close function for output streams if it's non-NULL. Add cairo-output-stream-private.h to libcairo_la_SOURCES. Torsten Sch=F6nfeld: Add missing cairo_public tag for cairo_image_surface_get_stride --- Makefile.am | 25=20 NEWS | 17=20 RELEASING | 2=20 configure.in | 20=20 doc/public/tmpl/cairo-image.sgml | 1=20 pixman/src/icformat.c | 6=20 pixman/src/pixman.h | 3=20 pixman/src/pixregion.c | 2=20 src/Makefile.am | 1=20 src/cairo-base85-stream.c | 28=20 src/cairo-image-surface.c | 98 + src/cairo-output-stream-private.h | 156 ++ src/cairo-output-stream.c | 188 ++- src/cairo-pattern.c | 2=20 src/cairo-pdf-surface.c | 1=20 src/cairo-ps-surface.c | 45=20 src/cairo-surface.c | 37=20 src/cairo-svg-surface.c | 1170 ++++++++--------= ----- src/cairo-type1-subset.c | 1=20 src/cairo-xlib-surface.c | 2=20 src/cairo.h | 8=20 src/cairoint.h | 85 - test/Makefile.am | 10=20 test/create-for-stream.c | 218 +++ test/linear-gradient-svg-argb32-ref.png |binary test/linear-gradient-svg-rgb24-ref.png |binary test/mask-svg-argb32-ref.png |binary test/mask-svg-rgb24-ref.png |binary test/paint-source-alpha-svg-argb32-ref.png |binary test/paint-source-alpha-svg-rgb24-ref.png |binary test/paint-with-alpha-svg-argb32-ref.png |binary test/paint-with-alpha-svg-rgb24-ref.png |binary test/push-group-svg-argb32-ref.png |binary test/push-group-svg-rgb24-ref.png |binary test/scale-source-surface-paint-svg-argb32-ref.png |binary test/scale-source-surface-paint-svg-rgb24-ref.png |binary test/text-pattern-svg-argb32-ref.png |binary test/text-pattern-svg-rgb24-ref.png |binary test/trap-clip-svg-argb32-ref.png |binary test/trap-clip-svg-rgb24-ref.png |binary 40 files changed, 1171 insertions(+), 955 deletions(-) --pgp-sign-Multipart_Fri_Jun_16_10:08:52_2006-1 Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEkuWq6JDdNq8qSWgRAqI6AJ42+4WuUfwFtayn9C8dh+r/xTk4OACeMMgt Cdpk2ar//g0UaT0w77grJjc= =kUjC -----END PGP SIGNATURE----- --pgp-sign-Multipart_Fri_Jun_16_10:08:52_2006-1-- From doclivingston@gmail.com Sun Jun 18 02:45:17 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 001613B014D for ; Sun, 18 Jun 2006 02:45:17 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27928-05 for ; Sun, 18 Jun 2006 02:45:15 -0400 (EDT) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.179]) by menubar.gnome.org (Postfix) with ESMTP id C709D3B0158 for ; Sun, 18 Jun 2006 02:45:14 -0400 (EDT) Received: by py-out-1112.google.com with SMTP id c39so971442pyd for ; Sat, 17 Jun 2006 23:43:58 -0700 (PDT) Received: by 10.35.89.10 with SMTP id r10mr6756008pyl; Sat, 17 Jun 2006 23:43:58 -0700 (PDT) Received: from alyrion.local ( [144.134.102.218]) by mx.gmail.com with ESMTP id k13sm2076296pyf.2006.06.17.23.43.55; Sat, 17 Jun 2006 23:43:57 -0700 (PDT) Subject: Rhythmbox 0.9.5 From: "James \"Doc\" Livingston" To: Rhythmbox-devel list , gnome-announce-list@gnome.org Content-Type: text/plain; charset=UTF-8 Date: Sun, 18 Jun 2006 16:43:53 +1000 Message-Id: <1150613033.6027.23.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.53 tagged_above=-999 required=2 tests=[AWL=0.070, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.53 X-Spam-Level: X-Mailman-Approved-At: Sun, 18 Jun 2006 10:56:33 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: rhythmbox-devel@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 06:45:17 -0000 G'day Everyone, On behalf of the Rhythmbox developers, I'm proud to announce the sixth release of the Rhythmbox 0.9 series, which includes a large number of fixes, improvements and new features. Notable new features include: - Improved plugin support, and several features converted to plugins - An album art viewing and download plugin - A song lyric viewing and download plugin - Ogg Vorbis tag editing [0] - Partial iPod write support [1] - Improved audio player and DAAP support - CD ripping and track transfer enabled by default - Updated documentation and many, many more improvements, bug fixes and new minor features. See below for more details. [0] requires a GStreamer plugin not yet in cvs, see bug 335635 [1] off by default, pass --enable-ipod-writing to enable. * What is Rhythmbox ? ===================== Rhythmbox is an integrated music management application, originally inspired by Apple's iTunes. It is free software, designed to work well under the GNOME Desktop, and based on the powerful GStreamer media framework. * What's changed in 0.9.5 ? =========================== * fix icon themability (Steve Frécinaux) * handle iPods that have been repartitioned (Christophe Fergeau: 325034) * allow ipod renaming, ejection, deletion and transfer (Christophe Fergeau) * make iradio handling work much better (Jonathan Matthew: 320336, 324402) * improve out-of-process metadata loader (Jonathan Matthew: 338062) * update documentation (Baptiste Mille-Mathias, ) * pluginise iPod and Generic players (Christophe Fergeau, Jonathan Matthew) * support saving playlists as M3U (Gavin Stewart: 316295) * remember browser visibility when changing sources (Alex Lancaster: 118862) * handle media unmounts better (Jonathan Matthew: 339023) * make entry types be a structure, and add support for extended data, and various method implementations (Christophe Fergeau, James Livingston) * album art view&download plugin (Alex Lancaster, James Livingston, Gareth Murphy, William Jon McCann, Martin Szulecki) * update the FSF's address (Gunnar Steinn Magnusson) * much improved Python bindings (James Livingston, Jonathan Matthew) * fix some translation issues (Nguyễn Thái Ngọc Duy, James Livingston: 339380, 343081) * improve startup time (James Livingston, Jonathan Matthew) * fix audioscrobbler submission, and allow viewing of info (Jonathan Matthew: 325848) * improve DBus interface (Jonathan Matthew, Tim Moloney) * allow transcoding during track transfer (Alessandro Decina: 322268) * cd burning fixes and improvements (William Jon McCann) * podcast feed parsing and download fixes (James Livingston: 339728) * turn the playback backend into a full GObject interface (James Livingston: 338667) * add more API documentation (Jonathan Mattjew) * add vorbis tag editing (James Livingston: 339878) * fix various threading insanities (Jonathan Matthew) * display "child libraries" with multiple library locations (James Livingston: 100552) * improve drag-and-drop from browsers (Jonathan Matthew: 327540) * support Motorola ROKR phones (Joe Barnett) * make query model limits saner (Janes Livingston) * source cleanup and API improvement (James Livingston, Jonathan Matthew) * improve status feedback for DAAP (Jonathan Matthew: 322020 and 338978) * memory improvement and leak fixed (James Livingston, Jonathan Matthew) * kill Bonobo support, require DBus, support DBus 0.3.0 (Jonathan Matthew: 339720) * add lyric download and view plugin (Jonathan Matthew: 319320) * add "add to playlist" menu (James Livingston: 323364) * allow changing of audio cd metadata (James Livingston) * improve DAAP handling (William Jon McCann: 342643) * update and write new unit tests (James Livingston) * group sources (Jonathan Matthew) * add new "rhythmbox-client" program (Jonathan Matthew: 340863, 155763) * assorted build fixes (Brian Cameron, Paul Drain, Elijah Newren, Hendrik Richter, Ryan P Skadberg, Götz Waschk, Pawel Worach, FreeBSD GNOME project, others) * HIG and UI improvements (Dennis Cranston, Baptiste Mille-Mathias) * many other bug fixed (Christophe Fergeau, Jaap A. Haitsma, James Livingston, Jonathan Matthew, Mikael Olenfalk, Roozbeh Pournader) Updated Translations -------------------- ca Jordi Mallach cs Miloslav Trmac de Hendrik Richter es Francisco Javier F. Serrador fi Ilkka Tuohela gl Ignacio Casal Quinteiro lt Žygimantas Beručka nb Øivind Hoel, Kjartan Maraas nl Vincent van Adrighem, Wouter Bolsterlee sv Fredrik Tuomas vi Clytie Siddall zh_CN Funda Wang * Where can I get it ? ====================== Source code: http://ftp.gnome.org/pub/GNOME/sources/rhythmbox/0.9/rhythmbox-0.9.5.tar.gz [MD5 sum: 3cbce0fd5ed948e13dabe7be7b9353e9] http://ftp.gnome.org/pub/GNOME/sources/rhythmbox/0.9/rhythmbox-0.9.5.tar.bz2 [MD5 sum: ff55e1db114321b7bdd6e21df1879367] Home Page: http://www.rhythmbox.org/ James "Doc" Livingston From mclasen@redhat.com Tue Jun 20 11:22:11 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3B32C3B043F; Tue, 20 Jun 2006 11:22:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22457-09; Tue, 20 Jun 2006 11:22:09 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 71CF13B00E7; Tue, 20 Jun 2006 11:22:09 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5KFLLnL004523; Tue, 20 Jun 2006 11:21:21 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [172.16.76.12]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5KFLLNA016479; Tue, 20 Jun 2006 11:21:21 -0400 Received: from golem.boston.redhat.com (golem.boston.redhat.com [172.16.80.24]) by mail.boston.redhat.com (8.12.8/8.12.8) with ESMTP id k5KFLKdH032719; Tue, 20 Jun 2006 11:21:20 -0400 Subject: GLib 2.11.4 released From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-list@gnome.org, gtk-app-devel-list@gnome.org Content-Type: text/plain Date: Tue, 20 Jun 2006 11:21:20 -0400 Message-Id: <1150816880.15532.58.camel@golem.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.1 (2.7.1-1) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.543 tagged_above=-999 required=2 tests=[AWL=0.058, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.543 X-Spam-Level: X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2006 15:22:11 -0000 GLib 2.11.4 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.11/ http://ftp.gnome.org/pub/GNOME/sources/glib/2.11/ glib-2.11.4.tar.bz2 md5sum: 9d3a94baa4bfcd9a579b45eea6de3a8c glib-2.11.4.tar.gz md5sum: f7768bc7ed524c6b40cb87daccb6c2b2 This is a development release leading up to GLib 2.12. Notes: * This is unstable development release. While it has had a bit of testing, there are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GLib 2.10. If you have problems, you'll need to reinstall GLib 2.10. * GLib 2.12 will be source and binary compatible with the GLib 2.10.x series (for some caveats, see the README). At this point, the API additions in the 2.11.x series are finished. * Bugs should be reported to http://bugzilla.gnome.org. About GLib ========== GLib is the low-level core library that forms the basis for projects such as GTK+ and GNOME. It provides data structure handling for C, portability wrappers, and interfaces for such runtime functionality as an event loop, threads, dynamic loading, and an object system. More information about GLib is available at: http://www.gtk.org/ An installation guide for the GTK+ libraries, including GLib, can be found at: http://developer.gnome.org/doc/API/2.0/gtk/gtk-building.html Overview of Changes from GLib 2.11.3 to GLib 2.11.4 =================================================== * GBookmarkFile: - g_bookmark_file_remove_item returns a boolean * g_mkstemp accepts the XXXXXX in the middle of the template * Bugs fixed: 344868 g_key_file_to_data should separate groups * Updated translations (de,es,fr,gu,hi,ko,th) A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=344868 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Emmanuele Bassi, Christian Persch, Federico Mena Quintero Matthias Clasen June 20, 2006 From joeshaw@novell.com Mon Jun 19 16:10:21 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id ABD293B0D15 for ; Mon, 19 Jun 2006 16:10:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30318-02 for ; Mon, 19 Jun 2006 16:10:20 -0400 (EDT) Received: from peabody.ximian.com (peabody.ximian.com [130.57.169.10]) by menubar.gnome.org (Postfix) with ESMTP id C79993B084E for ; Mon, 19 Jun 2006 16:10:19 -0400 (EDT) Received: (qmail 29764 invoked from network); 19 Jun 2006 20:09:04 -0000 Received: from localhost (HELO posthaste.boston.ximian.com) (joe@127.0.0.1) by localhost with SMTP; 19 Jun 2006 20:09:04 -0000 Subject: ANNOUNCE: Beagle 0.2.7 From: Joe Shaw To: dashboard-hackers@gnome.org Content-Type: text/plain; charset=UTF-8 Date: Mon, 19 Jun 2006 16:08:58 -0400 Message-Id: <1150747738.21037.1.camel@posthaste.boston.ximian.com> Mime-Version: 1.0 X-Mailer: Evolution 2.6.0 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.362 tagged_above=-999 required=2 tests=[AWL=-0.194, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, TW_BG=0.077, TW_GT=0.077, TW_XD=0.077] X-Spam-Score: -2.362 X-Spam-Level: X-Mailman-Approved-At: Tue, 20 Jun 2006 11:54:51 -0400 Cc: gnome-announce-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jun 2006 20:10:21 -0000 Hi, I'm happy to announce the release of Beagle 0.2.7. This version fixes the dreaded "Lock obtain timed out" bug, includes a new SVG and marks the return of the CHM filter. It introduces a compressed text cache, so that the disk space needed to generate snippets is greatly reduced, and many more bug fixes. OUR MANY URLS ------------- To download the 0.2.7 tarball or learn more, visit the Beagle wiki at: http://www.beagle-project.org The latest gossip is available at: http://www.planetbeagle.org Nat Friedman made some cool movies that demonstrate Beagle in action: http://nat.org/demos We still talk about Beagle on the dashboard-hackers mailing list: http://mail.gnome.org/mailman/listinfo/dashboard-hackers Info on Beagle's participation in Google's Summer of Code can be found here: http://beagle-project.org/Summer_Of_Code WHAT IS BEAGLE? --------------- Beagle is a tool for indexing and searching your data. Beagle is improving rapidly on many fronts, and should work well enough for everyday use. The Beagle daemon transparently monitors your data and updates the index to reflect any changes. On an inotify-enabled system, these updates happen more-or-less in real time. So for example, * Files are immediately indexed when they are created, are re-indexed when they are modified, and are dropped from the index upon deletion. * E-mails are indexed upon arrival. * IM conversations are indexed as you chat, a line at a time. Beagle supports many different file formats including OpenOffice documents, Microsoft Word documents, PDFs, HTML files, and many image, audio and video formats. Beagle can extract information from your file system, Evolution and KMail mailboxes, Evolution calendars and addressbooks, Gaim and Kopete instant messenger conversations, several RSS aggregators, Tomboy notes, Konqueror browsing history, system documentation, and many others. Beagle also indexes tags on your photos from F-Spot and Digikam. Beagle also provides Firefox and Epiphany extensions that index web pages in real-time as the user visits them. Beagle uses the Lucene indexing system from the prodigious Doug Cutting. Beagle includes a GTK-based graphical tool for searching the index that the daemon creates. This application doesn't query the index directly; it passes the search terms to the daemon and the daemon sends any matches back. The user interface then renders the results and allows you to perform useful actions on the matching objects. Indexing your data requires a fair amount of computing power, but the Beagle daemon tries to be as unobtrusive as possible. It contains a scheduler that works to prioritize tasks and control CPU usage, based on whether or not you are actively using your workstation. DEPENDENCY HECK --------------- Beagle requires: * Mono 1.1.13.5 or better, along with the full Mono stack * gtk-sharp 2.3.90 or better * GMime 2.1.19 * Libexif 0.5.7 or better * shared-mime-info For the best possible Beagle experience, you should also have: * GMime 2.2.1 * Evolution-sharp 0.10.2 or 0.11.1 * libgsf 1.12.1 and gsf-sharp 0.6 * Either wv 1.2.0, or a *patched* wv 1.0.3 --- the patch is available from http://users.avafan.com/~fredrik/beagle/wv-libole2-readonly.patch * An inotify-enabled kernel. Inotify is in the mainline Linux kernel as of 2.6.13. And other optional dependencies: http://beagle-project.org/Optional_Prerequisites CHANGES SINCE 0.2.6 ------------------- Daemon/Infrastructure: * Fix bugs in the query parser by using a regular expression-based system. (Max Wiehle, Keving Kubasik) * Compress items in the text cache, greatly reducing disk usage. (Kevin, Lukas Lipka) * Fix a bug in which the sqlite database could get cluttered with older files. (Debajyoti Bera, Joe Shaw) * Again write out the PID of the locking process, or else we cannot effectively detect dangling locks. (Joe) * If we see a lockfile with no PID, assume it's a dangling lock. (Joe) * No longer handle SIGQUIT to shut down the daemon; it's used very valuably by Mono for debugging purposes. (Joe) * Add a BEAGLE_DISABLE_XATTR environment variable to disable extended attribute support for testing purposes. (Joe) * Only print out the inotify "Maximum watch limit hit" warning once. (Joe) * Convert HTML entities when creating snippets. (Lukas, Kevin) * Patch our xdgmime installation to not crash if the data is reloaded while it is processing it. (Joe) * Fix an issue with newer Mono installations where the index helper process would become a zombie after it finished and was never cleaned up. (Joe) * Fix a bug in which properties weren't being sorted and couldn't be found. (Max, Kevin, Bera) * Work around a Mono bug so that dangling symlinks in ~/.beagle/Log are cleaned up at startup. (Joe) Backends: * Generate mail delete events using the indexable generator rather than creating many individual indexables by hand, which could flood the scheduler and slow the system down. (Joe) * Check for exceptions when calling GetChanges() on Evolution calendars and addressbooks. (Joe) Filters: * Added an SVG filter. (Alexander Macdonald) * Re-enable the CHM filter. (Miguel Cabrera) * Close the OpenOffice zip file when we're finished. (Joe) * Index additional info from ebuild files, including installation info and desktop file entries. (Pat Double) * Add duration and bitrate properties to the music filter. (Lukas) * Add a filter for Boo. (Paul Betts) * Don't throw EncodingFoundException in the HTML parser unless asked to. (Bera) * Add application/x-php as a valid mime type for the PHP filter. (Kevin) * Make sure the mime type is lower case before matching on it. (Kevin, Joe) UI: * Catch exceptions if we can't load an application's icons. (Joe, Pierre Poissinger) * Include the date in note tiles. (Lukas) * Only display the first line of a calendar item's description. (Dan Winship) * Use mailto URIs rather than invoking Evolution directly when possible. (Lukas) * Use desktop-launch to open file tiles when applicable. (Lukas) * Make the text in the details pane selectable. (Lukas) * If the calendar's description is empty, still display the item. (Lukas) * Simplify the code for the details pane significantly. (Lukas) * Scale down very large mime icons for display. (Lukas) * Enable the "Open With" menu if GTK+ 2.8 is available at build-time. (Kevin) * Force the window to get wider if the tiles get wider rather than creating a horizontal scrollbar. (Dan) Tools: * Add --enable-deletion to beagle-build-index, which removes deleted files from the index. (Bera) * Add $sharedir/gtk-doc/html and $sharedir/gnome/html to the documentation crawl rules. (Joe) * Fix a typo in the beagled manpage. (Kevin Lamontagne) * Fix bugs dealing with shell quoting in beagle-query. (Max) Translations: * Updated Brazilian Portuguese translation. (Raphael Higino) * Updated Czech translation. (Jakub Friedl) * Updated Dutch translation. (Vincent van Adrighem) * Updated Finnish translation. (Ilkka Tuohela) * Updated Galician translation. (Ignacio Casal Quinteiro) * Updated Greek translation. (Kostas Papadimas) * Updated Japanese translation. (Takeshi Aihana) * Updated Norwegian bokml translation. (ivind Hoel) * Updated Simplified Chinese translation. (Funda Wang) * Updated Spanish translation. (Francisco Javier F. Serrador) * Updated Swedish translation. (Daniel Nylander) * Updated Vietnamese translation. (Clytie Siddall) Everything Else: * Make the Firefox extension work with Bon Echo (2.0 Alpha). (Joe) * Check for mmap() in configure.in, to optimize xdgmime. (Joe) * Add a pkg-config file for the UiUtil.dll assembly. (Luis Medinas) * Getting Dashboard building again. (Luis) KNOWN ISSUES ------------ We still use a bit too much memory. We are working on it. Certain extremely large documents can temporarily degrade your system's performance while they are being indexed. The file system is now much more robust than ever before. However, there are still race conditions that can occur with certain combinations of file system operations. In some cases it might be necessary to stop and restart the daemon. Certain files can crash the underlying libraries Beagle uses to extract metadata. This has been observed in MS Word and JPG files. If you encounter such a crash, please report it to the upstream developer of those libraries (wv1 and libexif for the above, respectively). At this point in development, we cannot commit to stable APIs or file formats. You will almost certainly need to delete your indexes and start again at some point in the future. From s.marechal@jejik.com Mon Jun 19 18:32:09 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 62F693B080B for ; Mon, 19 Jun 2006 18:32:09 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04849-10 for ; Mon, 19 Jun 2006 18:32:04 -0400 (EDT) Received: from smtp-vbr7.xs4all.nl (smtp-vbr7.xs4all.nl [194.109.24.27]) by menubar.gnome.org (Postfix) with ESMTP id 2E4AA3B035F for ; Mon, 19 Jun 2006 18:32:04 -0400 (EDT) Received: from [192.168.1.2] (a82-92-145-91.adsl.xs4all.nl [82.92.145.91]) (authenticated bits=0) by smtp-vbr7.xs4all.nl (8.13.6/8.13.6) with ESMTP id k5JMUN7U092865; Tue, 20 Jun 2006 00:30:24 +0200 (CEST) (envelope-from s.marechal@jejik.com) Message-ID: <449725B0.9050004@jejik.com> Date: Tue, 20 Jun 2006 00:31:12 +0200 From: Sander Marechal User-Agent: Thunderbird 1.5.0.4 (X11/20060615) MIME-Version: 1.0 To: hearts@lists.jejik.com, gnome-announce-list@gnome.org, news@linuxgames.com, webmaster@linuxlinks.com Subject: Gnome Hearts 0.1.1 Release Announcement Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by XS4ALL Virus Scanner X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.557 tagged_above=-999 required=2 tests=[AWL=0.042, BAYES_00=-2.599] X-Spam-Score: -2.557 X-Spam-Level: X-Mailman-Approved-At: Tue, 20 Jun 2006 11:54:51 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: hearts@lists.jejik.com List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jun 2006 22:32:09 -0000 Gnome Hearts 0.1.1 Release Announcement --------------------------------------- Our recently released Gnome Hearts 0.1 suffered from a build problem on distributions that shipped the Lua libraries as liblua instead of liblua50, most notably on the new Suse Linux. Gnome Hearts 0.1.1 fixes this issue, thanks to a patch sent in by a gnomefiles.org contributor. You can download the new tarball from our download section at: http://www.gnome-hearts.org/download/ About Gnome Hearts ------------------ Gnome Hearts is an implementation of the classic hearts card game for the GNOME desktop, featuring configurable rule sets and editable computer opponents to satisfy widely diverging playing styles. Gnome Hearts is Free Software, released under the GNU General Public License and should be able to run on any computer that can run the GNOME desktop. Enjoy, -- Sander Marechal http://www.gnome-hearts.org From peter@peterjohanson.com Tue Jun 20 01:48:23 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3398E3B0E71 for ; Tue, 20 Jun 2006 01:48:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26948-04 for ; Tue, 20 Jun 2006 01:48:21 -0400 (EDT) Received: from cubesearch.com (unknown [207.115.69.50]) by menubar.gnome.org (Postfix) with ESMTP id 7B83E3B05AF for ; Tue, 20 Jun 2006 01:48:21 -0400 (EDT) Received: by cubesearch.com (Postfix, from userid 522) id 8BF0D10E089; Mon, 19 Jun 2006 22:47:22 -0700 (PDT) Date: Mon, 19 Jun 2006 22:47:22 -0700 From: Peter Johanson To: gnome-announce-list@gnome.org Subject: [RELEASE] muine-0.8.5 Message-ID: <20060620054722.GS9163@butchest.cubesearch.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.11 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.55 tagged_above=-999 required=2 tests=[AWL=0.050, BAYES_00=-2.599, SPF_HELO_PASS=-0.001] X-Spam-Score: -2.55 X-Spam-Level: X-Mailman-Approved-At: Tue, 20 Jun 2006 11:54:51 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2006 05:48:23 -0000 Muine is a music player using new UI ideas. The goal is to create a player that eschews the iTunes model in favor of an easier and more comfortable interface. 0.8.5 ===== This release primarily updates Muine to use Gstreamer 0.10 (0.8 is also supported at configure time). Lots of bugfixes have also gone into this release. Details ======= - Gstreamer 0.10 support (configurable, 0.8 is still supported) [Iain, Peter Johanson] - Small shortcut/mnemonics tweaks [Sebastian Heinlein, Wouter Bolsterlee, Peter Johanson] - Fix bug with tray icon not re-appearing after a gnome-panel crash [Ed Catmur, Peter Johanson] - Handle large id3 tags properly [Jorn Baayen] - Properly raise the window when unhiding [Ryan Lortie] - Various build and bugfixes [Peter Johanson] New translations: - Punjabi [Amanpreet Singh Alam] - Thai [Isriya Paireepairit] Updated Translations: - Basque [Inaki Larranaga] - Czech [Miloslav Trmac] - Dutch [Wouter Bolsterlee] - Estonian [Priit Laes] - Finnish [Ilkka Tuohela] - German [Frank Arnold, Hendrik Richter] - Japanese [Takeshi AIHANA] - Spanish [Francisco Javier F. Serrador] - Swedish [Daniel Nylander] - Vietnamese [Clytie Siddall] Download ======== http://www.muine-player.org/wiki/Download Cheers, -pete From olav@bkor.dhs.org Wed Jun 21 16:12:51 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 436D73B0191; Wed, 21 Jun 2006 16:12:51 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02952-03; Wed, 21 Jun 2006 16:12:50 -0400 (EDT) Received: from amsfep20-int.chello.nl (amsfep17-int.chello.nl [213.46.243.15]) by menubar.gnome.org (Postfix) with ESMTP id 551023B0235; Wed, 21 Jun 2006 16:12:49 -0400 (EDT) Received: from bkor.dhs.org ([24.132.164.94]) by amsfep20-int.chello.nl (InterMail vM.6.01.04.04 201-2131-118-104-20050224) with ESMTP id <20060621201243.WMNK3918.amsfep20-int.chello.nl@bkor.dhs.org>; Wed, 21 Jun 2006 22:12:43 +0200 Received: by bkor.dhs.org (Postfix, from userid 501) id A0A54626877; Wed, 21 Jun 2006 22:12:42 +0200 (CEST) Date: Wed, 21 Jun 2006 22:12:42 +0200 From: Olav Vitters To: gnome-announce-list@gnome.org Subject: ANNOUNCE: gnome-blog 0.9.1 released Message-ID: <20060621201242.GI1266@bkor.dhs.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.5.11 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.26 tagged_above=-999 required=2 tests=[AWL=-0.150, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, FORGED_RCVD_HELO=0.135, TW_GT=0.077, TW_SX=0.077] X-Spam-Score: -2.26 X-Spam-Level: Cc: seth@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 20:12:51 -0000 gnome-blog 0.9.1 ================ Been a long time since the last version was released. With the approval of Seth Nickell, I am releasing a newer version. homepage: http://www.gnome.org/~seth/gnome-blog/ (I will probably soon move this to http://www.gnome.org/projects/gnome-blog/) download: http://download.gnome.org/sources/gnome-blog/0.9/ Features ======== * Clean interface doesn't get in the way of what you're writing * WYSIWYG styled text support * Entries can be written gradually over the course of a day, popping gnome blog open and closed as you have thoughts to jot down and then posting at the end of the day * Operates as a panel object/applet or a standalone application * Supports many different kinds of blogs * Spell checking * Drag and drop images into your blog entry (if your blog supports it) Supported Blogs =============== * Blogger.com / Blogspot.com * Advogato.org * Movable Type * WordPress * LiveJournal.com * Pyblosxom * Any other blog using bloggerAPI or MetaWeblog Fixes ===== * Make add link dialog stay near and above the blog window (Tommi Komulainen) * Do not crash when gtkspell is installed but lack a dictionary (Jan Alonzo) * Ensure window looks sane when resized (Olav Vitters) * Ensure blog applet window receives focus with newer metacity versions and make it stay on top (Olav Vitters) * Correctly position blog window beside the applet when using a vertical panel (Olav Vitters) * Make sure CTRL-B (bold), CTRL-I (italic) work when using the applet (Olav Vitters) * Fix blogs.gnome.org XML-RPC URL (Olav Vitters) Translations ============ * Mətin Əmirov (az) * Vladimir Petkov (bg) * Aleix Badia i Bosch (ca) * Miloslav Trmac (cs) * Hendrik Richter (de) * Adam Weinberger (en_CA) * David Lodge (en_GB) * Francisco Javier F. Serrador (es) * Priit Laes (et) * Ilkka Tuohela (fi) * Christophe Merlet (RedFox) (fr) * Pedro Silva (gl) * Robert Sedak (hr) * Gabor Kelemen (hu) * Francesco Gigli (it) * Takeshi AIHANA (ja) * Hasbullah Bin Pit (ms) * Kjartan Maraas (nb) * Jyotshna Shrestha (ne) * Taco Witte (nl) * Arkadiusz Lipiec (pl) * Afonso Celso Medina (pt_BR) * Duarte Loreto (pt) * Steve Murphy (rw) * Laurent Dhima (sq) * Danilo Šegan (sr@Latn) * Данило Шеган (sr) * Daniel Nylander (sv) * Maxim Dziumanenko (uk) * Clytie Siddall (vi) * storm (zh_CN) * Abel Cheung (zh_TW) -- Regards, Olav From mclasen@redhat.com Wed Jun 21 23:10:41 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AA4213B0172; Wed, 21 Jun 2006 23:10:41 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23030-07; Wed, 21 Jun 2006 23:10:39 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 63BA23B0008; Wed, 21 Jun 2006 23:10:39 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5M3AclX021506; Wed, 21 Jun 2006 23:10:38 -0400 Received: from lacrosse.corp.redhat.com (lacrosse.corp.redhat.com [172.16.52.154]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5M3AcnM019751; Wed, 21 Jun 2006 23:10:38 -0400 Received: from [172.16.83.158] (vpn83-158.boston.redhat.com [172.16.83.158]) by lacrosse.corp.redhat.com (8.12.11.20060308/8.11.6) with ESMTP id k5M3AciB004961; Wed, 21 Jun 2006 23:10:38 -0400 Subject: GTK+ 2.9.4 released From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain Organization: Red Hat Date: Wed, 21 Jun 2006 23:12:41 -0400 Message-Id: <1150945961.4457.2.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.7.3 (2.7.3-2) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.507 tagged_above=-999 required=2 tests=[AWL=0.017, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: -2.507 X-Spam-Level: X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 03:10:41 -0000 GTK+ 2.9.4 is now available for download at: http://ftp.gnome.org/pub/gnome/sources/gtk+/2.9/ gtk+-2.9.4.tar.bz2 md5sum: c06cf2cfa66485600d90789c9e58f27c gtk+-2.9.4.tar.gz md5sum: e3fefedc7f1a89b66c71c9967168a857 This is a development release leading up to GTK+ 2.10. Notes: * This is unstable development release. There are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GTK+ 2.8. If you have problems, you'll need to reinstall GTK+ 2.8. * GTK+ 2.10 will be source compatible with the GTK+ 2.8 series; the new API additions in GTK+ 2.9.0 are finalized by now. * The ABI version has been bumped from 2.4.0 to 2.10.0, since the filechooser backend interface has been changed. Third-party filechooser backends need to be ported to the new interface. Other third-party modules (input methods, image loaders, etc) just need to be reinstalled in the proper location for GTK+ to find them. * Remaining issues for GTK+ 2.10 can be found with following bugzilla query: http://bugzilla.gnome.org/buglist.cgi?product=gtk%2b&target_milestone=2.10+API+Freeze&target_milestone=2.10+Freeze&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED * Bugs should be reported to http://bugzilla.gnome.org. What is GTK+ ============ 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.4/gtk/gtk-building.html Common questions: http://developer.gnome.org/doc/API/2.4/gtk/gtk-question-index.html http://www.gtk.org/faq/ Overview of Changes from GTK+ 2.9.3 to 2.9.4 ============================================ * GtkPrintOperation: - UI improvements in the print dialog - Make printing work without a display connection - Replace "Print to PDF" by "Print to file" that can generate PDF or PostScript - Add a function to the low-level API to enumerate all printers * GtkNotebook tab DND has been improved * GtkProgressbar supports text in activity mode * GtkLabel allows to set the wrap mode * GtkStatusIcon supports transparency * Bugs fixed: 344850 Dragging a GtkTreeViewColumn segfaults when using certain GtkTreeViewColumnDropFunc 342458 Stock menu items without icons are broken in recent GTK+ releases. 335873 notebook DND + popup windows 337882 gtk_progress_bar_set_text() does nothing in activity mode 339456 unix print dialogue help button bug 339702 Make sure printing works without a display 341571 tabs too easily reordered 344074 New Feature: get printer list, and get default print 344743 gtk_targets_include_text() should initialize atoms 344838 Allow func to be NULL in gtk_tree_view_set_search_position_func 344891 GtkPrintOperationPreview signal defs correction 345008 Need updated cairo req 345093 print preview temp file issues 345107 Memory leak in gtk_entry_completion_finalize: User data not freed 345194 gdk_window_set_functions() docs need to be updated 345456 grid-lines property is wrongly registered and get/set. 314278 strings in gtk-update-icon-cache are not marked for translation 344707 size group with widgets in hidden container 344897 Entry completion model NULL handling should be documented 345038 gtk_print_job_set_status' status 345106 dialog button box spacings 345176 GtkIconView doc about drag and drop 345275 doc imporovements for gtk_window_move 345320 Two very similiar strings should be made equal 345321 Add meaning of "shortcut" as translator comment 320034 transparency gtkstatusicon 339592 Add print-to-postscript 344867 custom paper file could use keyfile * Updated translations (cs,de,es,fr,gl,gu,hi,ko,ta,th) A list of all bugs fixed in this release can be found at http://bugzilla.gnome.org/buglist.cgi?bug_id=344838,344743,344867,344891,345008,341571,345038,337882,345093,344707,339456,345107,345275,339702,344074,345320,345321,344897,314278,320034,344850,345194,345176,345106,335873,342458,339592,345456 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Christian Persch, John Finlay, Federico Mena Quintero, Michael Emmel, Marko Anastasov, Bastien Nocera, Carlos Garnacho, Yevgen Muntyan, Tommi Komulainen, Tim Janik, Christian Weiske, Behdad Esfahbod, Alexander Larsson, Felipe Heidrich, Hendrik Richter, Claudio Saavedra, Dan Winship, Callum McKenzie, John Palmieri, Murray Cumming, Kristian Rietveld June 21, 2006 Matthias Clasen From cass@skynet.be Wed Jun 21 10:17:16 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9D8BD3B0FB7 for ; Wed, 21 Jun 2006 10:17:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11755-08 for ; Wed, 21 Jun 2006 10:17:15 -0400 (EDT) Received: from dorado.vub.ac.be (mailhost.vub.ac.be [134.184.129.10]) by menubar.gnome.org (Postfix) with ESMTP id D3CD03B0F77 for ; Wed, 21 Jun 2006 10:17:14 -0400 (EDT) Received: from mach.vub.ac.be (maxi.vub.ac.be [134.184.129.8]) by dorado.vub.ac.be (Postfix) with ESMTP id 4B484D7 for ; Wed, 21 Jun 2006 16:17:02 +0200 (CEST) Received: by mach.vub.ac.be (Postfix, from userid 21099) id 274998D01; Wed, 21 Jun 2006 16:17:02 +0200 (CEST) Received: from cass-lpt.ulb.ac.be (f1-pc174.ulb.ac.be [164.15.24.174]) by mach.vub.ac.be (Postfix) with ESMTP id 6C1178D24 for ; Wed, 21 Jun 2006 16:17:01 +0200 (CEST) Subject: XChat-GNOME 0.12 From: Guillaume Desmottes To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=UTF-8 Date: Wed, 21 Jun 2006 16:16:46 +0200 Message-Id: <1150899407.18129.0.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.496 tagged_above=-999 required=2 tests=[AWL=0.026, BAYES_00=-2.599, TW_JH=0.077] X-Spam-Score: -2.496 X-Spam-Level: X-Mailman-Approved-At: Thu, 22 Jun 2006 09:00:41 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 14:17:16 -0000 XChat-GNOME 0.12 “All roads lead to Sean Connery” is now available. * What is it ? ============== XChat-GNOME is a new frontend to the popular X-Chat IRC client which is designed with the user interface foremost in mind. More informations can be found at: http://xchat-gnome.navi.cx/ * What's changed ? ================== - A new sheme for theme-based foreground and backgrond colors, with automatic palette optimization for mIRC color codes. - Remove redundant nicknames (with a gconf key to re-enable them) - Show a whois tooltip on users in the conversation panel - Display a tooltip with the description of plugins - You can now build XChat-GNOME HEAD using jhbuild (using gnome-2.16 modulesets) - A large number of bug fixes and smaller improvements - Updated translations * Contributors to this release ============================== David Trowbridge, Guillaume Desmottes, Christian Persch, Przemyslaw Grzegorczyk, Gathy Grégory, Isak Savo, Steve Frécinaux, Jeremy Nickurak, Dan Kuester, Brian Pepple * Where can I get it ? ====================== http://releases.navi.cx/xchat-gnome/xchat-gnome-0.12.tar.gz http://releases.navi.cx/xchat-gnome/xchat-gnome-0.12.tar.bz2 -- Guillaume Desmottes Jabber GPG 1024D/711E31B1 | 1B5A 1BA8 11AA F0F1 2169 E28A AC55 8671 711E 31B1 From murrayc@murrayc.com Tue Jun 20 13:04:27 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BEAFD3B05E3; Tue, 20 Jun 2006 13:04:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30785-01; Tue, 20 Jun 2006 13:04:23 -0400 (EDT) Received: from swarthymail-a4.dreamhost.com (sd-green-bigip-60.dreamhost.com [208.97.132.60]) by menubar.gnome.org (Postfix) with ESMTP id 7AB3D3B04F0; Tue, 20 Jun 2006 13:04:23 -0400 (EDT) Received: from noname (p5497DB9C.dip.t-dialin.net [84.151.219.156]) by swarthymail-a4.dreamhost.com (Postfix) with ESMTP id AF950129A91; Tue, 20 Jun 2006 10:03:26 -0700 (PDT) Subject: ANNOUNCE: gtkmm 2.9.5 From: Murray Cumming To: gnome-announce , gtkmm-list Content-Type: text/plain Date: Tue, 20 Jun 2006 19:03:22 +0200 Message-Id: <1150823002.6261.21.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.404 tagged_above=-999 required=2 tests=[AWL=0.041, BAYES_00=-2.599, TW_GT=0.077, TW_TK=0.077] X-Spam-Score: -2.404 X-Spam-Level: X-Mailman-Approved-At: Thu, 22 Jun 2006 09:02:35 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2006 17:04:28 -0000 *** gtkmm 2.9/2.10: gtkmm 2.9 wraps new API in GTK+ 2.9, and is API/ABI-compatibile with gtkmm 2.8, 2.6 and 2.4. It is a version of the gtkmm-2.4 API. This will become the API-stable gtkmm 2.10, wrapping GTK+ 2.10. gtkmm stays in-sync with GTK+ by following the official GNOME release schedule: http://www.gnome.org/start/unstable/ Bindings for the rest of the GNOME Platform are also available, and are also API-stable. http://www.gtkmm.org *** Changes gtkmm 2.9.5: Gtk: * Assistant: Added update_buttons_state(). * Button: Added get/set_image_position(). * Clipboard: Added request_rich_text(), wait_for_rich_text(), and wait_rich_text_is_available(). * Entry: Added get/set_inner_border(). * Notebook: Added set_group_id(), get_group_id(), get_tab_reorderable(), set_tab_reorderable(), get_tab_detachable(), set_tab_detachable(). * PrintContext: Added set_cairo_context(). * Printoperation: - run(): Added PrintOperationAction parameter. - Removed set_show_dialog(), set_pdf_target(), set_track_print_status(), run_async(). - Added set_export_filename(), set_track_print_status(), set_show_progress(), set_allow_async(), set_custom_tab_label(). * Fixed warnings (Elijah Newren, Jonathon Jongsma) Pango: * Context: Added get_matrix(). * Font: Added describe_with_absolute_size(), get_font_map(). * FontDescription: Added set_absolute_size(), get_size_is_absolute(). * Layout: Added get_font_description(), index_to_line_x(). * Renderer: Added get_matrix(). *** Download http://www.gtkmm.org/download.shtml You will need libsigc++ 2.0, available here: https://sourceforge.net/project/showfiles.php?group_id=1970 *** Development There is active discussion on the mailing list: http://www.gtkmm.org/mailinglist.shtml and in the #c++ channel on irc.gnome.org -- Murray Cumming murray@usa.net www.murrayc.com From murrayc@murrayc.com Thu Jun 22 17:21:32 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 53AA83B083F; Thu, 22 Jun 2006 17:21:32 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27489-07; Thu, 22 Jun 2006 17:21:31 -0400 (EDT) Received: from swarthymail-a3.dreamhost.com (sd-green-bigip-62.dreamhost.com [208.97.132.62]) by menubar.gnome.org (Postfix) with ESMTP id 713DB3B0823; Thu, 22 Jun 2006 17:21:26 -0400 (EDT) Received: from noname (p5497EA12.dip.t-dialin.net [84.151.234.18]) by swarthymail-a3.dreamhost.com (Postfix) with ESMTP id 13D217F03D; Thu, 22 Jun 2006 14:21:24 -0700 (PDT) Subject: ANNOUNCE: gtkmm 2.9.6 From: Murray Cumming To: gnome-announce , gtkmm-list Content-Type: text/plain Date: Thu, 22 Jun 2006 23:21:22 +0200 Message-Id: <1151011282.5804.37.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.4 tagged_above=-999 required=2 tests=[AWL=0.045, BAYES_00=-2.599, TW_GT=0.077, TW_TK=0.077] X-Spam-Score: -2.4 X-Spam-Level: X-Mailman-Approved-At: Thu, 22 Jun 2006 19:51:58 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 21:21:32 -0000 *** gtkmm 2.9/2.10: gtkmm 2.9 wraps new API in GTK+ 2.9, and is API/ABI-compatibile with gtkmm 2.8, 2.6 and 2.4. It is a version of the gtkmm-2.4 API. This will become the API-stable gtkmm 2.10, wrapping GTK+ 2.10. gtkmm stays in-sync with GTK+ by following the official GNOME release schedule: http://www.gnome.org/start/unstable/ Bindings for the rest of the GNOME Platform are also available, and are also API-stable. http://www.gtkmm.org *** Changes gtkmm 2.9.6: Gtk: * Label: Added get/set_line_wrap_mode() and property. * MenuShell: Added get/set_take_focus() and property. * MessageDialog: Added set_image() and property. * StatusIcon: Added get_geometry(). * TreeView: Added get/set_rubber_banding(), get/set_grid_lines(), get/set_enable_tree_lines(). Added properties for show-expanders, level-indentation, rubber-banding, enable-grid-lines, and enable-tree-lines. (Murray Cumming) * PrintJob: send_job(): No longer throws an exception. * PrintUnixDialog: Added add_custom_tab() overload that takes a ustring. * Printer: Added get_job_count(), and enumerate_printers(), and others. * Printsettings: - Put the standard settings in a member class so they can be used as Gtk::PrintSettings::Keys::SOMETHING. - Remove get/set_print_to_file(). * PrintOperation: Added a version of run() without the Window parameter. * PrintOperationPreview: New class. (Most printing stuff: Marko Anastasov) *** Download http://www.gtkmm.org/download.shtml You will need libsigc++ 2.0, available here: https://sourceforge.net/project/showfiles.php?group_id=1970 *** Development There is active discussion on the mailing list: http://www.gtkmm.org/mailinglist.shtml and in the #c++ channel on irc.gnome.org -- Murray Cumming murray@usa.net www.murrayc.com From bryce@bryceharrington.org Sat Jun 24 01:30:28 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 157CC3B0150 for ; Sat, 24 Jun 2006 01:30:28 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25007-03 for ; Sat, 24 Jun 2006 01:30:24 -0400 (EDT) Received: from dc2-web15.assortedinternet.com (dc2-web15.assortedinternet.com [66.36.233.162]) by menubar.gnome.org (Postfix) with ESMTP id 701A03B0132 for ; Sat, 24 Jun 2006 01:30:24 -0400 (EDT) Received: from c-24-20-224-228.hsd1.or.comcast.net ([24.20.224.228] helo=localhost) by dc2-web15.assortedinternet.com with esmtpa (Exim 4.52) id 1Fu0in-0003sK-Oi for gnome-announce-list@gnome.org; Sat, 24 Jun 2006 01:30:18 -0400 Date: Fri, 23 Jun 2006 22:28:53 -0700 From: Bryce Harrington To: gnome-announce-list@gnome.org Subject: Inkscape Announces 0.44 Release :: http://www.inkscape.org Message-ID: <20060624052853.GE23238@bryceharrington.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.11 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - dc2-web15.assortedinternet.com X-AntiAbuse: Original Domain - gnome.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - bryceharrington.org X-Source: X-Source-Args: X-Source-Dir: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.597 tagged_above=-999 required=2 tests=[AWL=0.002, BAYES_00=-2.599] X-Spam-Score: -2.597 X-Spam-Level: X-Mailman-Approved-At: Sat, 24 Jun 2006 06:24:44 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jun 2006 05:30:28 -0000 The Inkscape community today officially released the latest version of its vector graphic drawing software. Inkscape 0.44 adds many new features, is faster and more usable, better supports SVG, is translated into more languages (17 on last count), and adds a lot of polish and refinement. Major new features include Layers dialog, support for clipping and masking, improved PDF export with transparency, configurable keyboard shortcuts, innovative "node sculpting" capability in Node tool, and the Outline mode. Significant gains are achieved in performance, especially in screen rendering and Node tool. Noticeable user interface changes include docked color swatches, interactive style indicator in the statusbar, a redesigned preferences dialog, a text toolbar, and new icons. Our SVG compliance has also taken a step forward, with the added support for the tag and ICC color profiles for images. This release also includes hundreds of smaller features, usability enhancements and bug fixes. For several releases, a collection of extension effects was shipped with Inkscape, but the Effects menu to access them was turned off by default. With this release, it has become mature enough, with effects working out of the box on all platforms, so this menu is enabled. We'd like to thank Google for their sponsorship of five students to work, during the summer of 2006, on several Inkscape development efforts: SVG Filters, Inkboard protocol, PDF export with Cairo, and memory optimization. Download Linux, Windows, and Mac OS X packages: http://sourceforge.net/project/showfiles.php?group_id=93438 For many more details, see the complete Release Notes for 0.44: http://wiki.inkscape.org/wiki/index.php/Release_Notes Community submitted screenshots: http://www.inkscape.org/screenshots/ ===About Inkscape=== Inkscape is an open source drawing tool that uses the World Wide Web Consortium's ([[W3C]]) scalable vector graphics format (SVG). Some supported SVG features include basic shapes, paths, text, markers, clones, alpha blending, transforms, gradients, and grouping. In addition, Inkscape supports Creative Commons' metadata, node-editing, layers, complex path operations, text-on-path, text-in-shape, and SVG XML editing. It can also import EPS, PostScript, and most bitmap formats, and exports PNG, PS, PDF and various vector formats. Inkscape's main motivation is to provide the Open Source community with a fully [[W3C]] compliant XML, SVG, and CSS2 drawing tool. Additional work includes conversion of the codebase from C/Gtk to C++/Gtkmm, emphasizing a lightweight core with powerful features added through an extension mechanism, and maintaining a friendly, open, community-oriented development process. From rejon@freedesktop.org Sun Jun 25 10:52:07 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C309D3B009A for ; Sun, 25 Jun 2006 10:52:07 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18260-01 for ; Sun, 25 Jun 2006 10:52:06 -0400 (EDT) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.208.82]) by menubar.gnome.org (Postfix) with ESMTP id 4BFB03B008F for ; Sun, 25 Jun 2006 10:52:06 -0400 (EDT) Received: by gabe.freedesktop.org (Postfix, from userid 2695) id 5EDA79ED2A; Sun, 25 Jun 2006 07:51:01 -0700 (PDT) To: gnome-announce-list@gnome.org From: Jon Phillips Subject: Inkscape Announces 0.44 Release :: http://www.inkscape.org Content-Type: text/plain Message-Id: <20060625145101.5EDA79ED2A@gabe.freedesktop.org> Date: Sun, 25 Jun 2006 07:51:01 -0700 (PDT) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.599 tagged_above=-999 required=2 tests=[BAYES_00=-2.599] X-Spam-Score: -2.599 X-Spam-Level: X-Mailman-Approved-At: Mon, 26 Jun 2006 03:57:39 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Jun 2006 14:52:07 -0000 Inkscape Announces 0.44 Release :: http://www.inkscape.org The Inkscape community today officially released the latest version of its vector graphic drawing software. Inkscape 0.44 adds many new features, is faster and more usable, better supports SVG, is translated into more languages (17 on last count), and adds a lot of polish and refinement. Major new features include Layers dialog, support for clipping and masking, improved PDF export with transparency, configurable keyboard shortcuts, innovative "node sculpting" capability in Node tool, and the Outline mode. Significant gains are achieved in performance, especially in screen rendering and Node tool. Noticeable user interface changes include docked color swatches, interactive style indicator in the statusbar, a redesigned preferences dialog, a text toolbar, and new icons. Our SVG compliance has also taken a step forward, with the added support for the tag and ICC color profiles for images. This release also includes hundreds of smaller features, usability enhancements and bug fixes. For several releases, a collection of extension effects was shipped with Inkscape, but the Effects menu to access them was turned off by default. With this release, it has become mature enough, with effects working out of the box on all platforms, so this menu is enabled. The Inkscape developer community would like to thank Google for their sponsorship of five students to work, during the summer of 2006, on several Inkscape development efforts: SVG Filters, Inkboard protocol, PDF export with Cairo, and memory optimization. Download Linux, Windows, and Mac OS X packages: http://sourceforge.net/project/showfiles.php?group_id=93438 For many more details, see the complete Release Notes for 0.44: http://wiki.inkscape.org/wiki/index.php/Release_Notes Community submitted screenshots: http://www.inkscape.org/screenshots/ About Inkscape Inkscape is an open source drawing tool that uses the World Wide Web Consortium's ([[W3C]]) scalable vector graphics format (SVG). Some supported SVG features include basic shapes, paths, text, markers, clones, alpha blending, transforms, gradients, and grouping. In addition, Inkscape supports Creative Commons' metadata, node-editing, layers, complex path operations, text-on-path, text-in-shape, and SVG XML editing. It can also import EPS, PostScript, and most bitmap formats, and exports PNG, PS, PDF and various vector formats. Inkscape's main motivation is to provide the Open Source community with a fully [[W3C]] compliant XML, SVG, and CSS2 drawing tool. Additional work includes conversion of the codebase from C/Gtk to C++/Gtkmm, emphasizing a lightweight core with powerful features added through an extension mechanism, and maintaining a friendly, open, community-oriented development process. From phoenix@nova.es Wed Jun 28 17:32:54 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7BBC83B0100 for ; Wed, 28 Jun 2006 17:32:54 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02743-08 for ; Wed, 28 Jun 2006 17:32:52 -0400 (EDT) Received: from localhost.localdomain (171.Red-80-34-230.staticIP.rima-tde.net [80.34.230.171]) by menubar.gnome.org (Postfix) with ESMTP id BDEEC3B00A3 for ; Wed, 28 Jun 2006 17:32:50 -0400 (EDT) Received: by localhost.localdomain (Postfix, from userid 1000) id BC029821BA; Sun, 25 Jun 2006 15:37:41 +0200 (CEST) Subject: ANNOUNCE: Nautilus-Sendto 0.6 & 0.7 From: Roberto Majadas To: Gnome Announce Content-Type: multipart/alternative; boundary="=-jsBhLm2jjnt8W4Xg4Kr+" Date: Sun, 25 Jun 2006 15:37:40 +0200 Message-Id: <1151242661.7517.8.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.93 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, HTML_40_50=0.496, HTML_MESSAGE=0.001, RCVD_IN_XBL=3.897] X-Spam-Score: 1.93 X-Spam-Level: * X-Mailman-Approved-At: Thu, 29 Jun 2006 03:00:17 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Jun 2006 21:32:54 -0000 --=-jsBhLm2jjnt8W4Xg4Kr+ Content-Type: text/plain Content-Transfer-Encoding: 7bit NAUTILUS SEND-TO (0.6 & 0.7) * What it is ? ============== This application provide integration between nautilus , evolution , gaim and gnome-bluetooth ============ Version 0.7 ============ Nautilus Sendto * Quick revision. I don't include some files to POTFILES.in ============ Version 0.6 ============ Nautilus Sendto * Added support for gajim * Added support for sylpheed-claws * Added initial support for thunderbird. Thunderbird don't support attachment by command line atm. * Added initial support for Balsa. Balsa don't support attachment by command line atm. * Many bugfixes Special Thanks to : Bastien Nocera (He resolve many many bugs while i was busy in my work, Thanks guy !) Dimitur Kirov (He developed gajim support) Peter Enseleit (he developed balsa, sylpheed and thunderbird support) * Features ========== * Nautilus context menu component ("Send To...") . * A dialog for insert the email acount or IM account which you want to send the file/files . * Contact with evolution-data-server and get the email accounts . * Contact with gaim (nautilus gaim plugin) and get the IM acccounts * Send to bluetooth devices detected from gnome-bluetooth * You can send files packaged in varios formats --=-jsBhLm2jjnt8W4Xg4Kr+ Content-Type: text/html; charset=utf-8 NAUTILUS SEND-TO (0.6 & 0.7)

* What it is ?
==============

This application provide integration between nautilus , evolution ,
gaim and gnome-bluetooth


============
Version 0.7
============

Nautilus Sendto
        * Quick revision. I don't include some files to POTFILES.in

============
Version 0.6
============

Nautilus Sendto
        * Added support for gajim
        * Added support for sylpheed-claws
        * Added initial support for thunderbird. Thunderbird don't support attachment by command line atm.
        * Added initial support for Balsa. Balsa don't support attachment by command line atm.
        * Many bugfixes

        Special Thanks to :
                Bastien Nocera (He resolve many many bugs while i was busy in my work, Thanks guy !)
                Dimitur Kirov (He developed gajim support)
                Peter Enseleit (he developed balsa, sylpheed and thunderbird support)

* Features
==========
      * Nautilus context menu component ("Send To...") .
      * A dialog for insert the email acount or IM account which you
        want to send the file/files .
              * Contact with evolution-data-server and get the email
                accounts .
              * Contact with gaim (nautilus gaim plugin) and get the IM
                acccounts
	      * Send to bluetooth devices detected from gnome-bluetooth
              * You can send files packaged in varios formats

--=-jsBhLm2jjnt8W4Xg4Kr+-- From callum@spooky-possum.org Thu Jun 29 04:08:17 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 903F53B01CE; Thu, 29 Jun 2006 04:08:17 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28081-02; Thu, 29 Jun 2006 04:08:09 -0400 (EDT) Received: from genamics.blastula.net (dns1.blastula.net [64.92.214.155]) by menubar.gnome.org (Postfix) with ESMTP id B42D13B0423; Thu, 29 Jun 2006 04:07:56 -0400 (EDT) Received: from [60.234.108.157] (helo=[60.234.108.157]) by genamics.blastula.net with esmtpa (Exim 4.52) id 1FvrZ5-0003f6-67; Thu, 29 Jun 2006 20:07:56 +1200 Subject: gnome-games 2.14.2.1 From: Callum McKenzie To: games-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Date: Thu, 29 Jun 2006 20:07:45 +1200 Message-Id: <1151568466.22419.21.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Antivirus-Scanner: Clean mail though you should still use an Antivirus X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - genamics.blastula.net X-AntiAbuse: Original Domain - gnome.org X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [47 12] X-AntiAbuse: Sender Address Domain - spooky-possum.org X-Source: X-Source-Args: X-Source-Dir: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.543 tagged_above=-999 required=2 tests=[AWL=0.056, BAYES_00=-2.599] X-Spam-Score: -2.543 X-Spam-Level: X-Mailman-Approved-At: Thu, 29 Jun 2006 07:32:02 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: callum@spooky-possum.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 08:08:18 -0000 gnome-games 2.14.2.1 ==================== This release is primarily to fix a crash that occurs in Aisleriot when you change games. An upgrade is strongly recommended. It also fixes a high-score file corruption bug when entering short names for the high scores table. As a bonus there are also translation updates. Get it from: http://download.gnome.org/sources/gnome-games/2.14/ - Callum From mclasen@redhat.com Mon Jun 5 14:15:03 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 744343B09D3; Mon, 5 Jun 2006 14:15:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20278-06; Mon, 5 Jun 2006 14:15:01 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id D637E3B0988; Mon, 5 Jun 2006 14:15:00 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k55IF08I024331; Mon, 5 Jun 2006 14:15:00 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [172.16.76.12]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k55IF0I9021827; Mon, 5 Jun 2006 14:15:00 -0400 Received: from golem.boston.redhat.com (golem.boston.redhat.com [172.16.80.24]) by mail.boston.redhat.com (8.12.8/8.12.8) with ESMTP id k55IExAV012588; Mon, 5 Jun 2006 14:14:59 -0400 From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain; charset=UTF-8 Date: Mon, 05 Jun 2006 14:14:59 -0400 Message-Id: <1149531299.4071.35.camel@golem.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.1 (2.7.1-1) Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.543 tagged_above=-999 required=2 tests=[AWL=0.058, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.543 X-Spam-Level: Cc: Subject: GLib 2.11.2 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jun 2006 18:15:03 -0000 GLib 2.11.2 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.11/ http://ftp.gnome.org/pub/GNOME/sources/glib/2.11/ glib-2.11.2.tar.bz2 md5sum: 18464b85bfd589f83897623c637a1553 glib-2.11.2.tar.gz md5sum: f728cd295ac98d4b95d850fe91c05fd5 This is a development release leading up to GLib 2.12. Notes: * This is unstable development release. While it has had a bit of testing, there are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GLib 2.10. If you have problems, you'll need to reinstall GLib 2.10. * GLib 2.12 will be source and binary compatible with the GLib 2.10.x series (for some caveats, see the README). At this point, the API additions in the 2.11.x series are almost finished. * Bugs should be reported to http://bugzilla.gnome.org. About GLib ========== GLib is the low-level core library that forms the basis for projects such as GTK+ and GNOME. It provides data structure handling for C, portability wrappers, and interfaces for such runtime functionality as an event loop, threads, dynamic loading, and an object system. More information about GLib is available at: http://www.gtk.org/ An installation guide for the GTK+ libraries, including GLib, can be found at: http://developer.gnome.org/doc/API/2.0/gtk/gtk-building.html Overview of Changes from GLib 2.11.1 to GLib 2.11.2 =================================================== * Add g_ascii_stroll to parse signed 64bit integers * GMarkup: add a flag to treat CDATA as text * GHashTable: add functions to remove all entries * GMainLoop: add functions to find the currently running source, and determine if it is destroyed * Bug fixes: 342563 g_atomic_thread_init() needs to be called before other _g_*_thread_init() functions 343548 Potential use after free in callers of g_string_free() 168538 Wish: Clearing contents of GHashTables 321886 GTK+ cannot be reliably used in multi-threaded applications 341826 goption.c: 'strtoll' is C99's function 343899 g_ascii_formatd dosn't work as expected for all format strings 317793 Make GEnumValue strings const 337129 Compile warnings in G_IMPLEMENT_INTERFACE 303622 What is G_TYPE_CHAR? * Updated translations (bg,dz,eu,gl,ja,nl,th,vi) A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=341826,342563,343548,168538,168538,321886,343899,321886,317793,337129,303622 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Peter Kjellerstedt, Kazuki Iwamoto Leonard den Ottolander, Chris Wilson, Behdad Esfahbod, Matt Barnes, ystein Johansen, Tim Janik Morten Welinder Matthias Clasen June 5, 2006 From mclasen@redhat.com Mon Jun 5 16:21:34 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 09B113B0543; Mon, 5 Jun 2006 16:21:34 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28553-01; Mon, 5 Jun 2006 16:21:32 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 0F8903B0012; Mon, 5 Jun 2006 16:21:31 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k55KLVn7006951; Mon, 5 Jun 2006 16:21:31 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [172.16.76.12]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k55KLUBq020469; Mon, 5 Jun 2006 16:21:31 -0400 Received: from golem.boston.redhat.com (golem.boston.redhat.com [172.16.80.24]) by mail.boston.redhat.com (8.12.8/8.12.8) with ESMTP id k55KLUAV025318; Mon, 5 Jun 2006 16:21:30 -0400 From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain Date: Mon, 05 Jun 2006 16:21:30 -0400 Message-Id: <1149538890.4071.40.camel@golem.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.1 (2.7.1-1) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.429 tagged_above=-999 required=2 tests=[AWL=-0.059, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_GD=0.077, TW_GT=0.077, TW_XI=0.077] X-Spam-Score: -2.429 X-Spam-Level: Cc: Subject: GTK+ 2.9.2 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jun 2006 20:21:34 -0000 GTK+ 2.9.2 is now available for download at: http://ftp.gnome.org/pub/gnome/sources/gtk+/2.9/ gtk+-2.9.2.tar.gz md5sum: c63e7d0cf7c4e983206c3088a0fb8862 gtk+-2.9.2.tar.bz2 md5sum: 17629437af44fce03485101371c8f041 This is a development release leading up to GTK+ 2.10. Notes: * This is unstable development release. There are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GTK+ 2.8. If you have problems, you'll need to reinstall GTK+ 2.8. * GTK+ 2.10 will be source compatible with the GTK+ 2.8 series; the new API additions in GTK+ 2.9.0 are not yet completely finalized, so there are likely incompatibilies between this release and the final 2.10 release. * The ABI version has been bumped from 2.4.0 to 2.10.0, since the filechooser backend interface has been changed. Third-party filechooser backends need to be ported to the new interface. Other third-party modules (input methods, image loaders, etc) just need to be reinstalled in the proper location for GTK+ to find them. * Remaining issues for GTK+ 2.10 can be found with following bugzilla query: http://bugzilla.gnome.org/buglist.cgi?product=gtk%2b&target_milestone=2.10+API+Freeze&target_milestone=2.10+Freeze&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED * Bugs should be reported to http://bugzilla.gnome.org. What is GTK+ ============ 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.4/gtk/gtk-building.html Common questions: http://developer.gnome.org/doc/API/2.4/gtk/gtk-question-index.html http://www.gtk.org/faq/ Overview of Changes from GTK+ 2.9.1 to 2.9.2 ============================================ * GtkPrintOperation - Support asynchronous pagination with the ::paginate signal - Add gtk_print_operation_cancel - Support application-specific widgets - Allow disabling features based on application capabilities - Optionally show progress - Change some function names in GtkPrintContext to be longer and better - Support preview, the default implementation spawns evince, but the api allows for an internal preview implementation * GtkCellView - Add a model property * GtkStatusIcon - Allow to obtain screen geometry * GtkTreeView - Many bug fixes, in particular for RTL handling - Separate sensitive and selectable properties of rows - Optionally allow rubberband selection * GtkButton - Add image-spacing style property - Add image-position property * GtkToolButton - Add icon-spacing style property * Make GTK+ work as an untrused X client * Bugs fixed: 343838 gtkprintoperationpreview.h guards 305530 Crashes while creating source code w/GtkFontSelection 341327 Memory corruption inside glib 341734 cursor blocked to dnd mode after using shift and dnd on a GtkCalendar 343453 G_DEFINE_TYPE messes up internal typenames of GdkWindow and GdkPixmap 136571 Problems running as untrusted client 168105 the right edge tab does not appear when switching tab 172535 Add support for UI builders in gtk+ 302556 GtkTreeView widget signals are badly documented 324480 Selecting first item with keyboard is difficult 340428 small cleanup 340444 don't run the custom page size dialogue 340839 Critical warnings in GtkTreeModelFilter 341898 gtk_tree_view_insert_column_with_attributes doesn't work with fixed_height_mode 342003 DnD: Conditional jump or move depends on uninitialised value 342072 Wrong drop location in GtkEntry 342096 GtkImage animation CRITICALS on switching themes 342513 widget class style property with type module 342529 gdk should set resolution on PangoCairoFontmap, not PangoCairoContext 342535 Add documentation for new GtkWidget style properties (including Since tags) 342543 can't compile gtk+ on opensolaris using sun cc 342569 Typo in decl of gdk_color_parse 342752 Need a way to specify custom tab label for custom page in Print dialog 342754 print-editor: font button dialog doesn't get focus if main window has a window group 342781 GtkPrintUnixDialog: Collate should be insensitive unless Copies is > 1 342783 GtkPrintUnixDialog: Range textinput area should be insensitive unless range radiobutton is selected 342894 Use after free inside gtk_text_view_set_buffer 342930 GtkButton should offer a way to position the image relative to the text 343088 Some typos in the PO file 343425 "grab-notify"-signal is not correctly propagated for internal children 343438 gtk_color_button_set_color() doesn't emit "color-set" signal 343475 page setup unix dialog confusion 343625 allow to get only some info from gtk_status_icon_get_geometry 343677 GtkWindow chains key-release to key-press 320431 Text too close when using East/West in a GtkToolButton 321523 GtkTreeView's test_expand_row signal emitting impractical on row expand all 342007 Warning in gtk_paned_compute_position 343233 gdk_rectangle_intersect doc 333284 expander animation not working in RTL mode 343444 change color of gtk-demo source-buffer comment color from red to DodgerBlue 343630 Small inconsistence in migration documentation 80127 Rubberbanding for GtkTreeView 341450 status icon + libnotify 341679 Allow absolute filenames in the options entries * Updated translations (bg,cy,de,el,es,et,eu,gl,gu,it,ja, nb,nl,pt_BR,th,vi) Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Alexander Larsson, Behdad Esfahbod, Benjamin Berg, Caolan McNamara, Carlos Garnacho Parro, Carol Spears, Christian Persch, Chris Wilson, Claudio Saavedra, Clytie Siddall, Damon Chaplin, Daniel Lindenaar, Dan Winship, Diana Fong, Ed Catmur, Emmanuele Bassi, Havoc Pennington, Henrique Romano, Hiroyuki Ikezoe, James Moger, Johan Dahlin, Kouhei Sutou, Kristian Rietveld, Markku Vire, Mart Raudsepp, Masatake Yamato, Michael Emmel, Michael Natterer, Murray Cumming, Olexiy Avramchenko, Paolo Borelli, Patrick Monnerat, Richard Hult, Sampo Savolainen, Sebastien Bacher, Srirama Sharma, Stefan Kost, Tim Janik, Tommi Komulainen, Tor Lillqvist, Yevgen Muntyan A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=342072,342096,342003,341734,305530,168105,342007,342529,342535,342543,342569,341679,342752,172535,342513,342781,342783,342754,136571,341450,333284,340428,340839,341898,321523,343088,343233,324480,342894,320431,342930,343453,343425,343438,343444,340444,343475,302556,343677,343625,80127,343838,341327,168105,343630 Matthias Clasen June 5, 2006 From thomas@apestaart.org Tue Jun 6 06:04:09 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id ABA3E3B0750; Tue, 6 Jun 2006 06:04:09 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04145-08; Tue, 6 Jun 2006 06:04:08 -0400 (EDT) Received: from mx1.es6.egwn.net (server02.es6.egwn.net [195.10.6.12]) by menubar.gnome.org (Postfix) with ESMTP id 6BEAF3B014E; Tue, 6 Jun 2006 06:04:08 -0400 (EDT) Received: from mx1.fr4.egwn.net (server07.fr4.egwn.net [62.39.85.77]) by mx1.es6.egwn.net (Postfix) with ESMTP id D5F0C4F82E2; Tue, 6 Jun 2006 12:04:05 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by mx1.fr4.egwn.net (spiffy mail daemon) with ESMTP id 0D94183BE7; Tue, 6 Jun 2006 12:04:00 +0200 (CEST) Received: from mx1.fr4.egwn.net ([127.0.0.1]) by localhost (server07.fr4.egwn.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16922-12; Tue, 6 Jun 2006 12:03:14 +0200 (CEST) Received: from thread.fluendo.lan (core.fluendo.com [195.10.6.237]) by mx1.fr4.egwn.net (spiffy mail daemon) with ESMTP id C559583BE4; Tue, 6 Jun 2006 12:03:14 +0200 (CEST) Received: from thomas.fluendo.lan (thomas.fluendo.lan [192.168.1.10]) by thread.fluendo.lan (Postfix) with ESMTP id 6EF06FFDB; Tue, 6 Jun 2006 12:03:18 +0200 (CEST) From: Thomas Vander Stichele To: gnome-hackers@gnome.org In-Reply-To: <1148971293.12902.2.camel@red> References: <1139648664.6627.40.camel@localhost> <1148971293.12902.2.camel@red> Content-Type: text/plain Date: Tue, 06 Jun 2006 12:03:19 +0200 Message-Id: <1149588200.24971.3.camel@otto.amantes> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 (2.6.1-1.fc5.2) Content-Transfer-Encoding: 7bit X-Scanned: By amavis at egwn.net X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.626 tagged_above=-999 required=2 tests=[AWL=-0.070, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, RCVD_IN_SBL=3.16] X-Spam-Score: 0.626 X-Spam-Level: Cc: gnome-announce-list@gnome.org, devel-announce-list@gnome.org Subject: Re: Subversion migration schedule (new cut-off Fri 16 June) X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 10:04:10 -0000 On Tue, 2006-05-30 at 13:41 +0700, Ross Golder wrote: > Hi, > > As the various show-stoppers that prevented our previously scheduled > migration from going ahead have now been resolved, I am proposing that > the new migration go ahead at 23:59UTC on Friday 16th June 2006. Please > let us know a.s.a.p if that will be inconvenient for anyone. It may be inconvenient for any hack sessions done at GUADEC if it leaves people with too little time to convert their laptop checkouts properly, or if anything goes wrong with the conversion. I don't know if that's important enough of a reason, but it'd be too bad if we'd be stifling the surge of activity at GUADEC. Thomas From carlosg@gnome.org Tue Jun 6 10:05:02 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1A0BD3B0132; Tue, 6 Jun 2006 10:05:02 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26815-01; Tue, 6 Jun 2006 10:05:01 -0400 (EDT) Received: from localhost.localdomain (133.Red-88-0-26.dynamicIP.rima-tde.net [88.0.26.133]) by menubar.gnome.org (Postfix) with ESMTP id CB9F23B0107; Tue, 6 Jun 2006 10:05:00 -0400 (EDT) Received: by localhost.localdomain (Postfix, from userid 1000) id 7F37E13F73; Tue, 6 Jun 2006 16:04:58 +0200 (CEST) From: Carlos Garnacho To: system-tools-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Tue, 06 Jun 2006 16:04:57 +0200 Message-Id: <1149602697.21203.7.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.528 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, RCVD_IN_NJABL_DUL=1.946, RCVD_IN_SORBS_DUL=2.046] X-Spam-Score: 1.528 X-Spam-Level: * X-Mailman-Approved-At: Tue, 06 Jun 2006 10:20:33 -0400 Cc: Subject: System Tools Backends 1.9.0 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 14:05:02 -0000 The System Tools Backends version 1.9.0 "Pluto tan" have been released. This is the first release towards 2.x series, which will feature DBus interfaces to access data, signals to notify asynchronously about modifications in the configuration and a cleaner codebase. If you're interested in the 1.4.x series, checkout the stb-1-4 CVS branch. The System Tools Backends are a set of cross-platform modules for Linux, FreeBSD and other Unix systems. The backends provide an common DBus interface to all distros for modifying or reading the system configuration. Right now the System Tools Backends fully support various distros/OS such as: Redhat, Mandrake, SuSE, Fedora, Debian (and derivations like Ubuntu, Linex, Guadalinex...), Gentoo, Slackware, FreeBSD, OpenNA, PLD, Vine and Specifix. Downloading =========== You can get it from : http://system-tools-backends.freedesktop.org/downloads/1.9/ From carlosg@gnome.org Tue Jun 6 10:05:22 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B7A6E3B014C; Tue, 6 Jun 2006 10:05:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26770-09; Tue, 6 Jun 2006 10:05:22 -0400 (EDT) Received: from localhost.localdomain (133.Red-88-0-26.dynamicIP.rima-tde.net [88.0.26.133]) by menubar.gnome.org (Postfix) with ESMTP id 7A00B3B012A; Tue, 6 Jun 2006 10:05:21 -0400 (EDT) Received: by localhost.localdomain (Postfix, from userid 1000) id 0618413F73; Tue, 6 Jun 2006 16:05:20 +0200 (CEST) From: Carlos Garnacho To: system-tools-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Tue, 06 Jun 2006 16:05:19 +0200 Message-Id: <1149602719.21203.9.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.528 tagged_above=-999 required=2 tests=[AWL=-0.000, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, RCVD_IN_NJABL_DUL=1.946, RCVD_IN_SORBS_DUL=2.046] X-Spam-Score: 1.528 X-Spam-Level: * X-Mailman-Approved-At: Tue, 06 Jun 2006 10:20:34 -0400 Cc: Subject: Liboobs 0.1.0 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 14:05:22 -0000 Liboobs 0.1.0, 2006-06-06 ----------------------------------------------- Liboobs version 0.1.0 "Shattered ataraxia" has been released. Liboobs is a lightweight library that provides a GObject based interface to system-tools-backends. It's completely abstracted of the communication and authentication details, making it easy for applications to integrate with the system details. Downloading =========== You can get it from : ftp://ftp.gnome.org/pub/GNOME/sources/liboobs/0.1/ From carlosg@gnome.org Tue Jun 6 10:05:35 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AB0C03B012A; Tue, 6 Jun 2006 10:05:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26769-07; Tue, 6 Jun 2006 10:05:34 -0400 (EDT) Received: from localhost.localdomain (133.Red-88-0-26.dynamicIP.rima-tde.net [88.0.26.133]) by menubar.gnome.org (Postfix) with ESMTP id D49943B0179; Tue, 6 Jun 2006 10:05:33 -0400 (EDT) Received: by localhost.localdomain (Postfix, from userid 1000) id E163B13F73; Tue, 6 Jun 2006 16:05:31 +0200 (CEST) From: Carlos Garnacho To: system-tools-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Date: Tue, 06 Jun 2006 16:05:31 +0200 Message-Id: <1149602731.21203.11.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.528 tagged_above=-999 required=2 tests=[AWL=-0.000, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, RCVD_IN_NJABL_DUL=1.946, RCVD_IN_SORBS_DUL=2.046] X-Spam-Score: 1.528 X-Spam-Level: * X-Mailman-Approved-At: Tue, 06 Jun 2006 10:20:34 -0400 Cc: Subject: GNOME System Tools 2.15.0 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 14:05:35 -0000 The GNOME System Tools version 2.15.0 "Uncanny routine" have been released. The GNOME System Tools are a set of cross-platform configuration utilities for Linux and other Unix systems. The frontends knows nothing about the underlying system and provide the same user interface across the different types of systems. Internally they use the Liboobs library. Changes since last release =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D Common =3D=3D=3D=3D=3D=3D - use intltool 0.35, move ALL_LINGUAS to po/LINGUAS (Przemys=C5=82aw Grzegorczyk) - Make g-s-t work fine with --as-needed (Mike Auty) All tools =3D=3D=3D=3D=3D=3D=3D=3D=3D - Use liboobs. The XML interface is deprecated (Garnacho) - Adopt a more instant apply policy (Garnacho) - UI Changes (Garnacho) - Use named icons in menus and window icon for themeability (Sebastien Bacher, Garnacho) - Set translation domain for popups (Sebastien Bacher) Users =3D=3D=3D=3D=3D - Use adduser/addgroup if it's present (Garnacho) Network =3D=3D=3D=3D=3D=3D=3D - Use DHCP as the default (Garnacho) Services =3D=3D=3D=3D=3D=3D=3D=3D - Add advanced runlevels/priorities editor (Garnacho) Shares =3D=3D=3D=3D=3D=3D - Rework defaults for new shared folders (Garnacho) Time =3D=3D=3D=3D - Update some NTP servers (Gary Coady, Jun Kobayashi) Translations =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D - dz (Pema Geyleg) - es (Francisco Javier F. Serrador) - et (Ivar Smolin) - fi (Ilkka Tuohela) - gl (Ignacio Casal Quinteiro) - gu (Ankit Patel) - it (Francesco Marletta) - ka (Vladimer Sichinava) - nb (Kjartan Maraas) - ru (Nickolay V. Shmyrev) - th (Theppitak Karoonboonyanan) - tr (Deniz Kocak) Downloading =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D You can get it from : ftp://ftp.gnome.org/pub/GNOME/sources/gnome-system-tools/2.15/ From kalle.vahlman@gmail.com Wed Jun 7 13:52:15 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6E4E43B01A4 for ; Wed, 7 Jun 2006 13:52:15 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02283-05 for ; Wed, 7 Jun 2006 13:52:14 -0400 (EDT) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.168]) by menubar.gnome.org (Postfix) with ESMTP id 965853B0115 for ; Wed, 7 Jun 2006 13:52:13 -0400 (EDT) Received: by ug-out-1314.google.com with SMTP id u2so434421uge for ; Wed, 07 Jun 2006 10:52:12 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=iebILRnovVdTxqGwouC/tR/+4MtaielhlX8Ua0W3DfGDpIfDH3f9KvKP70TzbcVubjtjL/zWOS7/A2VM/5vvfCOtbjHJsooRdCtWuC03vTCdPlQ6u7BZgs1lUvDhzlgKMUpdMeg2eI3oWqrM64fhyC+c+LkzIbKwCkxiTwVCgEI= Received: by 10.67.101.10 with SMTP id d10mr759171ugm; Wed, 07 Jun 2006 10:40:55 -0700 (PDT) Received: by 10.67.16.10 with HTTP; Wed, 7 Jun 2006 10:40:55 -0700 (PDT) Message-ID: <177e83dd0606071040h35f807a8o205c18c2a68ee184@mail.gmail.com> Date: Wed, 7 Jun 2006 20:40:55 +0300 From: "Kalle Vahlman" To: gnome-announce-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.432 tagged_above=-999 required=2 tests=[AWL=-0.390, BAYES_00=-2.599, RCVD_IN_BL_SPAMCOP_NET=1.558, SPF_PASS=-0.001] X-Spam-Score: -1.432 X-Spam-Level: X-Mailman-Approved-At: Wed, 07 Jun 2006 14:03:53 -0400 Subject: [Announce] The Scw library version 0.4.4 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: zuh@iki.fi List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 17:52:15 -0000 I'm happy to announce a new release of Scw, the chat-oriented widget set! (I have a broken memory chip, didn't remember to send announcements for the releases between 0.3.0 and 0.4.4...) What's new? ========= The release 0.4.4 includes the following changes (from 0.3.0): * Bugfixes: - Draw much less (but still enough ;) - Fix memory leaks * API changes: - scw_view_set_column_foldable(): Add a boolean argument to control the foldability (previously you couldn't undo setting foldability) - New signal: "buffer-request" - New method: scw_view_scroll_to_row(): Scrolls the view to given row (a GtkTreePath) * Gtk-docs, at last! (and possibly more, but haven't managed to keep track of all the individual fixes) What is it? ======= Scw is a library that includes widgets designed for chat programs. Currently this means (but will be extended with time): * ScwView, a view that has: - Activatable text (urls, user names, etc) - Embedded icons - Pango markup - Wrapping - GtkTreeModel implementations as data storage - Different interaction modes (select, pan, smart pan) * ScwEntry, an derivate of GtkEntry which adds: - Simple input history Python and Ruby bindings are available, Java-Gtk bindings are (still) planned (but not on the immediate todo list). Any bindings will be welcomed. As a bonus feature, the widgets are guaranteed to compile and work on the Maemo[1] platform (used in the Nokia 770[2] that everybody is so exited about). More detailed description, as well as API documentation is found on the home page of Scw. Applications that use Scw ================== * Rirc (an irssi2 client, not exactly sure about status) * Silky (is being ported to it in the REWRITE branch, http://silky.sourceforge.net/ * Telepathy people have been doing a proto client using Scw (http://telepathy.freedesktop.org) * Your app here possibly? Let me know! Where to get it? ============ Homepage: http://iki.fi/zuh/scw/ Version 0.4.4: http://iki.fi/zuh/scw/scw-0.4.4.tar.gz Python bindings http://iki.fi/zuh/scw/python-scw-0.4.0.tar.gz Ruby bindings http://iki.fi/zuh/scw/ruby-scw-0.4.0.tar.gz Communication options ================ As I haven't yet set up mailing lists or bugzilla or anything really, bug reports and other stuff should be sent straight to me at zuh@iki.fi. -- Kalle Vahlman, zuh@iki.fi Powered by http://movial.fi Interesting stuff at http://syslog.movial.fi From Brian.Cameron@Sun.COM Wed Jun 7 18:25:45 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D74D13B04F0; Wed, 7 Jun 2006 18:24:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19021-09; Wed, 7 Jun 2006 18:24:40 -0400 (EDT) Received: from brmea-mail-1.sun.com (brmea-mail-1.Sun.COM [192.18.98.31]) by menubar.gnome.org (Postfix) with ESMTP id 648333B0E7D; Wed, 7 Jun 2006 18:24:21 -0400 (EDT) Received: from fe-amer-04.sun.com ([192.18.108.178]) by brmea-mail-1.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k57MOKiX019647; Wed, 7 Jun 2006 16:24:20 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0I00A01GLFT100@mail-amer.sun.com> (original mail from Brian.Cameron@Sun.COM); Wed, 07 Jun 2006 16:24:20 -0600 (MDT) Received: from [192.9.61.158] by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0I00M6DGWJIGM4@mail-amer.sun.com>; Wed, 07 Jun 2006 16:24:20 -0600 (MDT) Date: Wed, 07 Jun 2006 17:24:20 -0500 From: Brian Cameron Sender: Brian.Cameron@Sun.COM To: gnome-announce-list@gnome.org, gdm-list@gnome.org Message-id: <44875214.1030303@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5.0.2 (X11/20060515) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.446 tagged_above=-999 required=2 tests=[AWL=-0.002, BAYES_00=-2.599, TW_GD=0.077, TW_PM=0.077, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.446 X-Spam-Level: Cc: Subject: GDM2 2.8.0.8 (stable), the "SecurityFix" Release] X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 22:25:46 -0000 AOOH-GAH -------- (If you have no clue what gdm is, skip a few paragraphs down first) The 2.8.0.8 release is a stable release of GDM (note GDM 2.8.0.8 corresponds with gnome-2-12 branch) with the following new features. Note this contains an important security fix, so users and distros should update immediately. - Correction for serious security issue where the user can enter the GDM configuration GUI with a user password when the Face Browser is enabled. Refer to bugzilla.gnome.org bug #343476 (Brian Cameron) This issue impacts all versions of GDM 2.8.0.0-2.8.0.7, 2.14.0-2.14.7, and 2.15.0-2.15.3. This issue was reported to vendor-sec one week ago and has ID #CVE-2006-2452. - Translation updates (Stanislav Brabec, Josep Puigdemont i Casamaj\303\263, Abel Cheung, Priit Laes, Christophe Merlet, Clytie Siddall, \303\205smund Skj\303\246veland, Tommi Vainikainen) Note: GDM2 was originally written by Martin K. Petersen . Much work has been done on GDM2 by George Lebl, and Brian Cameron currently shares maintainership duties with the Queen of England. Note2: If installing from the tarball do note that make install overwrites most of the setup files, all except gdm.conf. It will however save backups with the .orig extension first. #ifndef GDM_DISABLE_DEPRECATED Note3: Note3 has been depracated ... #endif /* GDM_DISABLE_DEPRECATED */ Downloading: ============ Online Documentation: http://www.gnome.org/projects/gdm/ http://ftp.gnome.org/pub/GNOME/sources/gdm/2.15/ No RPM this time around BTW. Have fun. A spec file is included though, so you can try: rpmbuild -ta gdm-whatever.tar.gz Have fun, Brian From Brian.Cameron@Sun.COM Wed Jun 7 18:27:17 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7C4C83B0C49; Wed, 7 Jun 2006 18:27:17 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19552-05; Wed, 7 Jun 2006 18:27:15 -0400 (EDT) Received: from brmea-mail-3.sun.com (brmea-mail-3.Sun.COM [192.18.98.34]) by menubar.gnome.org (Postfix) with ESMTP id CCF8D3B0E66; Wed, 7 Jun 2006 18:27:14 -0400 (EDT) Received: from fe-amer-02.sun.com ([192.18.108.176]) by brmea-mail-3.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k57MRDvQ016057; Wed, 7 Jun 2006 16:27:14 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0I00401GJDHP00@mail-amer.sun.com> (original mail from Brian.Cameron@Sun.COM); Wed, 07 Jun 2006 16:27:13 -0600 (MDT) Received: from [192.9.61.158] by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0I00I5KH1CUVP4@mail-amer.sun.com>; Wed, 07 Jun 2006 16:27:13 -0600 (MDT) Date: Wed, 07 Jun 2006 17:27:13 -0500 From: Brian Cameron Sender: Brian.Cameron@Sun.COM To: gnome-announce-list@gnome.org, gdm-list@gnome.org Message-id: <448752C1.30509@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5.0.2 (X11/20060515) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.408 tagged_above=-999 required=2 tests=[AWL=-0.041, BAYES_00=-2.599, TW_DM=0.077, TW_GD=0.077, TW_PM=0.077, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.408 X-Spam-Level: Cc: Subject: GDM2 2.14.8 (stable), the "SecurityFix" Release X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 22:27:17 -0000 AOOH-GAH -------- (If you have no clue what gdm is, skip a few paragraphs down first) The 2.14.8 release is a stable release of GDM with the following new features. Note this contains an important security fix, so users and distros should update immediately. - Correction for serious security issue where the user can enter the GDM configuration GUI with a user password when the Face Browser is enabled. Refer to bugzilla.gnome.org bug #343476 (Brian Cameron) This issue impacts all versions of GDM 2.8.0.0-2.8.0.7, 2.14.0-2.14.7, and 2.15.0-2.15.3. This issue was reported to vendor-sec one week ago and has ID #CVE-2006-2452. - Fixed bug where when the "Include All" button is modified in the Users tab, the Automatic/Timed login dropdown lists update properly. (Brian Cameron) - Now gdmflexiserver calls gdmcomm_check with FALSE so it will not pop up a dialog. gdmflexiserver can be run with the --command option which can be used when the user does not have permission to a DISPLAY, so trying to show a dialog was causing gdmflexiserver to core dump when the check failed. (Brian Cameron) - Added gestures to the AccessKeyMouseEvents configuration file so that users can access more accessibility features using dwell gestures. (Brian Cameron) - Translation updates (Laurent Dhima, Pema Geyleg, Theppitak Karoonboonyanan, Gabor Kelemen, Ahmad Riza H Nst, Vincent van Adrighem) Note: GDM2 was originally written by Martin K. Petersen . Much work has been done on GDM2 by George Lebl, and Brian Cameron currently shares maintainership duties with the Queen of England. Note2: If installing from the tarball do note that make install overwrites most of the setup files, all except gdm.conf. It will however save backups with the .orig extension first. #ifndef GDM_DISABLE_DEPRECATED Note3: Note3 has been depracated ... #endif /* GDM_DISABLE_DEPRECATED */ Downloading: ============ Online Documentation - http://www.gnome.org/projects/gdm/ Latest Stable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.14/ Latest Unstable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.15/ No RPM this time around BTW. Have fun. A spec file is included though, so you can try: rpmbuild -ta gdm-whatever.tar.gz Have fun, Brian From dsandras@seconix.com Wed Jun 7 15:09:24 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E46CC3B027D for ; Wed, 7 Jun 2006 15:09:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07646-04 for ; Wed, 7 Jun 2006 15:09:22 -0400 (EDT) Received: from ns20085.ovh.net (ekiga.net [213.186.62.145]) by menubar.gnome.org (Postfix) with ESMTP id A72183B0239 for ; Wed, 7 Jun 2006 15:09:21 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ns20085.ovh.net (Postfix) with ESMTP id BF54049704 for ; Wed, 7 Jun 2006 20:51:50 +0200 (CEST) Received: from ns20085.ovh.net ([127.0.0.1]) by localhost (ns20085.ovh.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09043-07 for ; Wed, 7 Jun 2006 20:51:49 +0200 (CEST) Received: from [192.168.0.161] (173.132-245-81.adsl-dyn.isp.belgacom.be [81.245.132.173]) (using SSLv3 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by ns20085.ovh.net (Postfix) with ESMTP id DF3C549702 for ; Wed, 7 Jun 2006 20:51:48 +0200 (CEST) From: Damien Sandras To: gnome-announce-list@gnome.org Content-Type: text/plain Date: Wed, 07 Jun 2006 21:10:04 +0200 Message-Id: <1149707404.2474.40.camel@golgoth01> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at gnomemeeting.net X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 03:15:35 -0400 Subject: Ekiga 2.0.2 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 19:09:24 -0000 This is release of Ekiga for GNOME 2.14 * What is it ? ============== Ekiga is a free Voice over IP phone allowing you to do free calls over the Internet. Ekiga is the first Open Source application to support both H.323 and SIP, as well as audio and video. Ekiga was formerly known as GnomeMeeting. More information can be found at http://www.ekiga.org * Where to get it ? =================== Ekiga is available at: ftp://ftp.gnome.org/pub/gnome/sources/ekiga/2.0 * What's changed ? ================== Ekiga: * Fixed problem with the activation of actions on contacts in the addressbook. (#334685, Julien Puydt) * Added a tooltip for the status label, to read the full text even when the message is cut off. (Jan Schampera) * Added missing notifiers for "new message" sound event. (Damien Sandras) * Prevent the UI from freezing a few micro seconds while registering accounts. (Damien Sandras) * Fixed OpenSolaris support. (#335196, Sun Microsystems/Boying Lu) * Fixed wrong key name in URL handlers section for GNOME. (Jan Schampera) * Fixed detection of ended calls in DBUS. (Julien Puydt) * Fixed playing/pausing of calls in DBUS. (#333465, Julien Puydt) * Fixed useless focus grabbing in druid which made some pages impossible to get the focus. (Jan Schampera) * Fixed crash when creating a contact while not having any local addressbook. (#334960, Julien Puydt) * Fixed leaking the system username on the network. (#335784, Julien Puydt) * Make sure the reason of the end of the call is always the last thing displayed in the status bar. (Damien Sandras) * Fixed browsing of ILS servers. (Damien Sandras) * Made sensitivity of the zoom related menuitems dependant on the actual zoom factor. (#336575, Jan Schampera) * Added "New contact" menu item to the contacts context menu. (#336588, Jan Schampera) * Fixed frame size calculation of video frame. (#336572, Jan Schampera) * Fixed sensitivity setting of "Fullscreen" menu item and sensitifity when leaving Fullscreen mode. (#336575, Jan Schampera) * Fixed non-selectable text problem in the chat window. (#336789, Jan Schampera) * Fixed LDAP search filter so that it works with LDAP servers that do not have a "location" attribute. (#336849, Damien Sandras) * Made most dialogs/popups closable by ESC (partially fixes #337494) (Jan Schampera) * Fixed problem with cursor turning into a hand at the wrong position in the chat window. (#336793, Julien Puydt) * Fixed text chat formatting corruption. (#335794, Simon Wood) * Monitor IP address changes to update the registrations. (#335398, Damien Sandras) * Color inactive tabs when receiving a chat message. (#335857, Simon Wood) * Open new tabs in the background. (#335857, Simon Wood) * Avoid losing error dialogs behind the druid (#338270, Julien Puydt) * Fixed wrong packets loss count. (#339866, Damien Sandras) * Fixed video flipping bug during calls with preview active. (#339867, Damien Sandras) * Fixes crash in address book when no address book is selected (#34210, Julien Puydt) * Fixed handling of call forwarding/transfer in case of incoming call (Damien Sandras) Ekiga WIN32: * Fixed remote contacts crashing on WIN32 or with the non GNOME version. (#335472, Jan Schampera) * Ekiga will now detect if it is already running on WIN32 and bail out. (#337794, Michael Rickmann) * Fixed command-line parsing on WIN32. (#337797, Michael Rickmann) * Fixed stuttering on WIN32. (#337799, Michael Rickmann) * Made the use of SDL more reliable on WIN32. (#337795, Michael Rickmann) * Made the help work on WIN32. (#337798, Michael Rickmann) * Made the 4s delay in the audio test work on WIN32. (#337799, Michael Rickmann) * Fixed fullscreen issues on WIN32 (#337792, Michael Rickmann). SIP support: * Fixed rport support when receving SIP request from another host than the one mentionned in the Via. (#335002, Damien Sandras) * Remove REGISTER and SUBSCRIBE from the Allow field. (#334979, Damien Sandras) * Fixed SRV lookup when creating connections. (#334994, Damien Sandras) * Improved CANCEL handling. (i#334985, Damien Sandras) * Fixed user in From field so that it always corresponds to a registered account. (#335006, Damien Sandras) * Unregister using the same remote address than the one used to register. (#334999, Damien Sandras) * Prevent loop of UNREGISTER requests when leaving. (#334997, Damien Sandras) * Allow duplicate INVITE PDUs to be treated concurrently. (#334847, Damien Sandras) * Set the From field to the address of record of the default SIP account. (#334457, Damien Sandras) * Fixed infinite loop when calling an host with more than 1 SRV record. (Damien Sandras) * Added support for SDP offers in the OK response, and SDP answer in the ACK request. (Damien Sandras) * Fixed wrong behavior with different priorities when building the priorities list. (#339314, Damien Sandras) * Do not lookup recipient's address when using an outbound proxy. (#334455, Damien Sandras) * Fixed problem with dynamic payload type codecs. (#337456, Damien Sandras) * Fixed routing with proxies who do not support the 'lr' parameter. (#340415, Damien Sandras) H.323 support: * Uses lower initial bandwidth by default when registering to gatekeepers. (#300366, Damien Sandras) Devices: * Fixed broken OSS plugin. (#338505, Damien Sandras) * Added resizing capability for VYUY YUYV formats. (#330946, Luc Saillard) * Improved UVC camera support. (Martin Rubli from Logitech) * Fixed parsing of JPEG streams with DHT markers. (Martin Rubli from Logitech) -- _ Damien Sandras (o- //\ Ekiga Softphone: http://www.ekiga.org/ v_/_ FOSDEM 2006 : http://www.fosdem.org/ SIP Phone : sip:dsandras@ekiga.net sip:600000@ekiga.net From murrayc@murrayc.com Wed Jun 7 15:39:02 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 71EF73B0DDF; Wed, 7 Jun 2006 15:38:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09273-01; Wed, 7 Jun 2006 15:38:57 -0400 (EDT) Received: from swarthymail-a3.dreamhost.com (mailbigip2.dreamhost.com [208.97.132.53]) by menubar.gnome.org (Postfix) with ESMTP id 3DC723B0E65; Wed, 7 Jun 2006 15:38:44 -0400 (EDT) Received: from noname (p5497CB1E.dip.t-dialin.net [84.151.203.30]) by swarthymail-a3.dreamhost.com (Postfix) with ESMTP id 1E03F7F05A; Wed, 7 Jun 2006 12:38:41 -0700 (PDT) From: Murray Cumming To: gnome-announce , gtkmm-list Content-Type: text/plain Date: Wed, 07 Jun 2006 21:38:36 +0200 Message-Id: <1149709116.5916.26.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.684 tagged_above=-999 required=2 tests=[AWL=-0.695, BAYES_00=-2.599, RCVD_IN_SORBS_WEB=1.456, TW_GT=0.077, TW_TK=0.077] X-Spam-Score: -1.684 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 03:15:35 -0400 Cc: Subject: ANNOUNCE: gtkmm 2.9.4 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 19:39:02 -0000 *** gtkmm 2.9/2.10: gtkmm 2.9 wraps new API in GTK+ 2.9, and is API/ABI-compatibile with gtkmm 2.8, 2.6 and 2.4. It is a version of the gtkmm-2.4 API. This will become the API-stable gtkmm 2.10, wrapping GTK+ 2.10. gtkmm stays in-sync with GTK+ by following the official GNOME release schedule: http://www.gnome.org/start/unstable/ Bindings for the rest of the GNOME Platform are also available, and are also API-stable. http://www.gtkmm.org *** Changes gtkmm 2.9.4: Gtk: * PrintContext: - Added set_track_print_status() and cancel(), paginate signal. (Marko Anastasov) - get_cairo() renamed to get_cairo_context(), - get_fontmap() renamed to get_pango_fontmap(), - create_context() renamed to create_pango_context(), - create_layout() renamed to create_pango_layout(). (Murray Cumming) * PrintJob: - Added set/get_track_print_status(). (Marko Anastasov) Pango: * Added CairoFontMap. (Might be removed later) * Context: Added update_from_cairo_context(), set_cairo_font_options(), set_cairo_font_options(), get_font_options(), set_resolution(), get_resolution(). * Layout: Added create(Cairo::Context), update_from_cairo_context(), add_to_cairo_context(). * LayoutLine: Added show_in_cairo_context(), add_to_cairo_context(). (Murray Cumming) *** Download http://www.gtkmm.org/download.shtml You will need libsigc++ 2.0, available here: https://sourceforge.net/project/showfiles.php?group_id=1970 *** Development There is active discussion on the mailing list: http://www.gtkmm.org/mailinglist.shtml and in the #c++ channel on irc.gnome.org -- Murray Cumming murray@usa.net www.murrayc.com From sandmann@daimi.au.dk Thu Jun 8 23:24:44 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id ACF2A3B0418 for ; Thu, 8 Jun 2006 23:24:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23677-04 for ; Thu, 8 Jun 2006 23:24:43 -0400 (EDT) Received: from daimi.au.dk (daimi.au.dk [130.225.16.1]) by menubar.gnome.org (Postfix) with ESMTP id A7F633B0408 for ; Thu, 8 Jun 2006 23:24:42 -0400 (EDT) Received: from camel18.daimi.au.dk (camel18 [130.225.16.137]) by daimi.au.dk (8.12.11.20060308/8.12.11) with ESMTP id k593OeQD008266; Fri, 9 Jun 2006 05:24:40 +0200 Received: from camel18.daimi.au.dk (IDENT:U2FsdGVkX1/iO3gyunaS0bFYmoVfNsPfhKVcvodnSF0@localhost [127.0.0.1]) by camel18.daimi.au.dk (8.13.1/8.13.1) with ESMTP id k593OeQV004787; Fri, 9 Jun 2006 05:24:40 +0200 Received: (from sandmann@localhost) by camel18.daimi.au.dk (8.13.1/8.13.1/Submit) id k593OedI004782; Fri, 9 Jun 2006 05:24:40 +0200 X-Authentication-Warning: camel18.daimi.au.dk: sandmann set sender to sandmann@daimi.au.dk using -f Sender: sandmann@daimi.au.dk To: gnome-announce-list@gnome.org From: Soeren Sandmann Date: 09 Jun 2006 05:24:40 +0200 Message-ID: Lines: 65 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Scanned-By: MIMEDefang 2.56 on 130.225.16.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.574 tagged_above=-999 required=2 tests=[AWL=0.025, BAYES_00=-2.599] X-Spam-Score: -2.574 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 03:15:35 -0400 Subject: Sysprof Linux Profiler v. 1.0.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jun 2006 03:24:44 -0000 * What is it? -------------------------- Sysprof is a sampling system-wide CPU profiler for Linux. Sysprof uses a Linux kernel module to profile the entire system, not just an individual application.=20 Of course, sysprof handles threads and shared libraries, and applications do not have to be recompiled or instrumented. In fact they don't even have to be restarted.=20 Just insert the kernel module and start sysprof. * Features: ---------------------- - Profiles all running processes, not just a single application - Call graph support showing time spent in each branch of the call tree - Has a simple graphical interface - Profiles can be loaded and saved - Easy to use: Just insert the kernel module and start sysprof - Supports Fedora debuginfo packages * Sysprof 1.0.3 -------------------------- - Compiles with the latest kernels Please report bugs as well as success or failure stories to=20 sandmann@daimi au dk * Where can I get it? -------------------------------------------- Home page: http://www.daimi.au.dk/~sandmann/sysprof/ Source code: http://www.daimi.au.dk/~sandmann/sysprof/sysprof-1.0.3.tar.gz Sysprof requires - Linux 2.6.11 or later, compiled with profiling support - GTK+ 2.6 - libglade 2.5 It is known to work out the box on Fedora Core 4 and 5. S=F8ren From pjc51@cam.ac.uk Fri Jun 9 05:57:47 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B73C93B01A8 for ; Fri, 9 Jun 2006 05:57:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12981-09 for ; Fri, 9 Jun 2006 05:57:45 -0400 (EDT) Received: from ppsw-9.csi.cam.ac.uk (unknown [131.111.8.139]) by menubar.gnome.org (Postfix) with ESMTP id B5D2C3B00B1 for ; Fri, 9 Jun 2006 05:57:45 -0400 (EDT) X-Cam-SpamDetails: Not scanned X-Cam-AntiVirus: No virus found X-Cam-ScannerInfo: http://www.cam.ac.uk/cs/email/scanner/ Received: from tiree.ra.phy.cam.ac.uk ([131.111.48.169]:49064) by ppsw-9.csi.cam.ac.uk (ppsw.cam.ac.uk [131.111.8.139]:25) with esmtp id 1FodkB-0007u9-Tm (Exim 4.54) (return-path ); Fri, 09 Jun 2006 10:57:31 +0100 From: Phil Cowans To: gnome-announce-list@gnome.org, dasherteam@yahoogroups.com Content-Type: text/plain Date: Fri, 09 Jun 2006 10:57:30 +0100 Message-Id: <1149847050.16654.9.camel@tiree.ra.phy.cam.ac.uk> Mime-Version: 1.0 X-Mailer: Evolution 2.0.4 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.599 tagged_above=-999 required=2 tests=[BAYES_00=-2.599] X-Spam-Score: -2.599 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 06:34:46 -0400 Cc: Subject: Dasher 4.1.4 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jun 2006 09:57:47 -0000 Dasher 4.1.4 is now available for download from: http://ftp.gnome.org/pub/GNOME/sources/dasher/4.1/ Windows and (unofficial) Debian binaries are available from: http://www.dasher.org.uk/Download.html The 4.1.x series of Dasher releases is a development series which will lead to version 4.2.0 in time for the GNOME 2.16 release. If you're after stability, install the latest 4.0.x version instead. The 4.1.x series aims to improve interaction with the desktop environment and window manager, for example to make it easier to enter text into other applications. 4.1.4 fixes a number of bugs which were present in 4.1.0. We're always greatful for any feedback from users - either via the GNOME Bugzilla: http://bugzilla.gnome.org/ Or by email to dasher@mrao.cam.ac.uk. Thanks to all who contributed to this release, Phil Cowans 9th June 2006 From Rich.Burridge@Sun.COM Fri Jun 9 09:59:59 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4262D3B010A for ; Fri, 9 Jun 2006 09:59:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 29076-03 for ; Fri, 9 Jun 2006 09:59:57 -0400 (EDT) Received: from brmea-mail-2.sun.com (brmea-mail-2.Sun.COM [192.18.98.43]) by menubar.gnome.org (Postfix) with ESMTP id 436C93B01BE for ; Fri, 9 Jun 2006 09:59:57 -0400 (EDT) Received: from fe-amer-03.sun.com ([192.18.108.177]) by brmea-mail-2.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k59DxtP3010388 for ; Fri, 9 Jun 2006 07:59:56 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0L00I01IP1J100@mail-amer.sun.com> (original mail from Rich.Burridge@Sun.COM) for gnome-announce-list@gnome.org; Fri, 09 Jun 2006 07:59:55 -0600 (MDT) Received: from [192.168.1.102] (c-71-202-99-109.hsd1.ca.comcast.net [71.202.99.109]) by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0L008L6IVU1C10@mail-amer.sun.com> for gnome-announce-list@gnome.org; Fri, 09 Jun 2006 07:59:55 -0600 (MDT) Date: Fri, 09 Jun 2006 06:59:21 -0700 From: Rich Burridge Sender: Rich.Burridge@Sun.COM To: gnome-announce-list@gnome.org Message-id: <44897EB9.6060700@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5 (X11/20060327) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.598 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.598 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 11:19:14 -0400 Subject: ANNOUNCE: gcalctool v5.8.13 [hopefully stable] X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jun 2006 13:59:59 -0000 Gcalctool is the default GNOME desktop calculator. It has Basic, Advanced, Financial and Scientific modes. Internally it uses multiple precision arithmetic to produce results to a high degree of accuracy. This (hopefully stable) release is for GNOME 2.15.3. Changes since the last gcalctool version (5.8.13). * From Sami Pietila - Fixed bug #343150. Gcalctool no longer crashes when switching to scientific mode. * Adjusted configure.in so that gcalctool now requires intltool v0.35.0. Updated Translations (thankyou!) Pema Geyleg - dz.po: Updated Dzongkha translation. Vincent van Adrighem - nl.po: Translation updated by Tino Meinen. Clytie Siddall - vi.po: Updated Vietnamese translation. Theppitak Karoonboonyanan - th.po: Updated Thai translation. Miloslav Trmac - cs.po: Updated Czech translation. Raphael Higino - pt_BR.po: Updated Brazilian Portuguese translation. Ignacio Casal Quinteiro - gl.po: Updated Galician Translation. You can download this new version from: http://ftp.gnome.org/pub/GNOME/sources/gcalctool/5.8/ From Rich.Burridge@Sun.COM Fri Jun 9 12:22:20 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1CB123B110C for ; Fri, 9 Jun 2006 12:22:20 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05769-10 for ; Fri, 9 Jun 2006 12:22:18 -0400 (EDT) Received: from brmea-mail-2.sun.com (brmea-mail-2.Sun.COM [192.18.98.43]) by menubar.gnome.org (Postfix) with ESMTP id 220193B0112 for ; Fri, 9 Jun 2006 12:22:17 -0400 (EDT) Received: from fe-amer-04.sun.com ([192.18.108.178]) by brmea-mail-2.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k59GMHje022696 for ; Fri, 9 Jun 2006 10:22:17 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0L00601PDSJP00@mail-amer.sun.com> (original mail from Rich.Burridge@Sun.COM) for gnome-announce-list@gnome.org; Fri, 09 Jun 2006 10:22:17 -0600 (MDT) Received: from [192.168.1.102] (c-71-202-99-109.hsd1.ca.comcast.net [71.202.99.109]) by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0L000IIPH4FY20@mail-amer.sun.com> for gnome-announce-list@gnome.org; Fri, 09 Jun 2006 10:22:17 -0600 (MDT) Date: Fri, 09 Jun 2006 09:21:43 -0700 From: Rich Burridge Sender: Rich.Burridge@Sun.COM To: gnome-announce-list@gnome.org Message-id: <4489A017.2030903@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5 (X11/20060327) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.598 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.598 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 16:30:37 -0400 Subject: [ANNOUNCE: gcalctool v5.8.16 [hopefully stable] X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jun 2006 16:22:20 -0000 Sorry, that should have been gcalctool 5.8.16 (not 5.8.13). -------- Original Message -------- Subject: ANNOUNCE: gcalctool v5.8.16 [hopefully stable] Date: Fri, 09 Jun 2006 06:59:21 -0700 From: Rich Burridge To: gnome-announce-list@gnome.org Gcalctool is the default GNOME desktop calculator. It has Basic, Advanced, Financial and Scientific modes. Internally it uses multiple precision arithmetic to produce results to a high degree of accuracy. This (hopefully stable) release is for GNOME 2.15.3. Changes since the last gcalctool version (5.8.13). * From Sami Pietila - Fixed bug #343150. Gcalctool no longer crashes when switching to scientific mode. * Adjusted configure.in so that gcalctool now requires intltool v0.35.0. Updated Translations (thankyou!) Pema Geyleg - dz.po: Updated Dzongkha translation. Vincent van Adrighem - nl.po: Translation updated by Tino Meinen. Clytie Siddall - vi.po: Updated Vietnamese translation. Theppitak Karoonboonyanan - th.po: Updated Thai translation. Miloslav Trmac - cs.po: Updated Czech translation. Raphael Higino - pt_BR.po: Updated Brazilian Portuguese translation. Ignacio Casal Quinteiro - gl.po: Updated Galician Translation. You can download this new version from: http://ftp.gnome.org/pub/GNOME/sources/gcalctool/5.8/ _______________________________________________ gnome-announce-list mailing list gnome-announce-list@gnome.org http://mail.gnome.org/mailman/listinfo/gnome-announce-list From lucasr.at.mundo@gmail.com Sat Jun 10 15:18:25 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BFE893B0355 for ; Sat, 10 Jun 2006 15:18:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22270-07 for ; Sat, 10 Jun 2006 15:18:19 -0400 (EDT) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.225]) by menubar.gnome.org (Postfix) with ESMTP id 497F63B00D0 for ; Sat, 10 Jun 2006 15:18:16 -0400 (EDT) Received: by wr-out-0506.google.com with SMTP id i12so1072899wra for ; Sat, 10 Jun 2006 12:18:15 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=Az6w6MZB4nAyrTPN/c1dBiy1QeZ3eP7h8u4jteTnJO41JONOrr+vLcaDgMaoq4CGUsTFL9SOAi4mYQa1U/quNPHKz5w9wCTni0PKnnsN+iZD4toNQ2U72zqyiU0cW7CuR3V4pUG+hJ2fX18MkuKthXuw+tWs50Y+gO+yiE+erPs= Received: by 10.54.128.19 with SMTP id a19mr2963077wrd; Sat, 10 Jun 2006 12:18:15 -0700 (PDT) Received: by 10.54.93.4 with HTTP; Sat, 10 Jun 2006 12:18:15 -0700 (PDT) Message-ID: <31a62e6f0606101218v6e0f8de0rec084fa7f081f2bc@mail.gmail.com> Date: Sat, 10 Jun 2006 16:18:15 -0300 From: "Lucas Rocha" To: gnome-announce-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.525 tagged_above=-999 required=2 tests=[AWL=0.075, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.525 X-Spam-Level: X-Mailman-Approved-At: Sat, 10 Jun 2006 15:24:41 -0400 Subject: Eye of GNOME 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Jun 2006 19:18:25 -0000 Hi all, * What is it ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Eye of GNOME (eog) is the image viewer for the GNOME desktop. * What's changed in 2.15.3 ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D - Properly sort image filenames containing numbers (Felix Riemann) [#340957= ] - Thumbnailing fixes (Felix Riemann) [#342817] - Fix printing for images with alpha channel (Jan K=FCmmel) [#322057] - Updated translations: Ignacio Casal Quinteiro (gl), Ankit Patel (gu), Theppitak Karoonboonyanan (th), Clytie Siddall (vi), Inaki Larra=F1aga (e= u), Pema Geyleg (dz), Francisco Javier F. Serrador (es) * Where can I get it ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Source code: http://ftp.gnome.org/pub/GNOME/sources/eog/2.15/eog-2.15.3.tar.gz md5sums: 1e39941d5327a28f0b3e88dfc6d5d2d0 http://ftp.gnome.org/pub/GNOME/sources/eog/2.15/eog-2.15.3.tar.bz2 md5sums: 29a9768a41dce2823e93c8de60b638e3 Enjoy! --lucasr From nudrema@gmail.com Sun Jun 11 07:21:01 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1905C3B057C; Sun, 11 Jun 2006 07:21:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06331-08; Sun, 11 Jun 2006 07:20:58 -0400 (EDT) Received: from swip.net (mailfe01.swip.net [212.247.154.1]) by menubar.gnome.org (Postfix) with ESMTP id EA99F3B0318; Sun, 11 Jun 2006 07:20:57 -0400 (EDT) X-T2-Posting-ID: Ee7YIbSG3O5rNcT4cGADretWTWrDEjpwS9FwzyhFhzk= X-Cloudmark-Score: 0.000000 [] Received: from [83.182.30.172] (HELO [10.0.0.13]) by mailfe01.swip.net (CommuniGate Pro SMTP 5.0.8) with ESMTP id 192388062; Sun, 11 Jun 2006 13:20:20 +0200 Message-ID: <448BFC72.5000804@gmail.com> Date: Sun, 11 Jun 2006 13:20:18 +0200 From: =?ISO-8859-1?Q?Steve_Fr=E9cinaux?= User-Agent: Thunderbird 1.5.0.2 (X11/20060522) MIME-Version: 1.0 To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.966 tagged_above=-999 required=2 tests=[AWL=-0.436, BAYES_00=-2.599, SPF_NEUTRAL=1.069] X-Spam-Score: -1.966 X-Spam-Level: X-Mailman-Approved-At: Sun, 11 Jun 2006 07:32:46 -0400 Cc: gedit-list Subject: ANNOUNCE: gedit-plugins 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 11:21:01 -0000 Hi all, gedit-plugins 2.15.3 is available. gedit-plugins is a set of (hopefuly useful) plugins for the GNOME text editor, gedit. homepage: http://live.gnome.org/GeditPlugins * Changes in 2.15.3 ==================== New features and fixes: - Autotools fixes (Jesse van den Kieboom, Steve Frcinaux) - Terminal now uses gnome-terminal default profile (Steve Frcinaux) - New Smart Spaces unindent plugin (Steve Frcinaux) - various fixes New and updated translations: - cs (Jakub Friedl) - pt_BR (Raphael Higino) * Download =========== http://ftp.gnome.org/pub/GNOME/sources/gedit-plugins/2.15/gedit-plugins-2.15.3.tar.gz md5sums: 1d7c70969fbd60b466e00f3295bced59 http://ftp.gnome.org/pub/GNOME/sources/gedit-plugins/2.15/gedit-plugins-2.15.3.tar.bz2 md5sums: 4182e0b3b522cb35e5348ce00c8aaa1d * Development ============== Don't hesitate to have a talk with the gedit team on #gedit on irc.gnome.org if you want to give gedit-plugins some of the love it needs :-) -- Steve http://tw.apinc.org From martyn@imendio.com Sun Jun 11 17:10:48 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1F0903B013F for ; Sun, 11 Jun 2006 17:10:48 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02407-03 for ; Sun, 11 Jun 2006 17:10:46 -0400 (EDT) Received: from holken.mikan.net (holken.mikan.net [83.145.56.183]) by menubar.gnome.org (Postfix) with ESMTP id A284B3B066D for ; Sun, 11 Jun 2006 17:10:45 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by holken.mikan.net (Postfix) with ESMTP id 30EA033525E; Sun, 11 Jun 2006 22:49:14 +0200 (CEST) Received: from holken.mikan.net ([127.0.0.1]) by localhost (holken.mikan.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03671-03; Sun, 11 Jun 2006 22:49:09 +0200 (CEST) Received: from [192.168.0.2] (host86-135-75-230.range86-135.btcentralplus.com [86.135.75.230]) by holken.mikan.net (Postfix) with ESMTP id 716673352A4; Sun, 11 Jun 2006 22:49:09 +0200 (CEST) From: Martyn Russell To: gnome-announce-list@gnome.org Content-Type: text/plain Organization: Imendio Date: Sun, 11 Jun 2006 21:49:40 +0100 Message-Id: <1150058980.30411.5.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at holken.mikan.net X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.586 tagged_above=-999 required=2 tests=[AWL=0.013, BAYES_00=-2.599] X-Spam-Score: -2.586 X-Spam-Level: X-Mailman-Approved-At: Sun, 11 Jun 2006 17:36:08 -0400 Cc: gossip-dev@lists.imendio.com Subject: ANNOUNCE: Gossip 0.11.2 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 21:10:48 -0000 Gossip 0.11.1 is now available for download from: http://download.gnome.org/sources/gossip/0.11/ What is Gossip ============== Gossip is an instant messaging client for GNOME with an easy-to-use interface, providing users of the GNOME Desktop with a friendly way to keep in touch with their friends. What's new in Gossip 0.11.2 =========================== - Added avatars to the chat window (Martyn). - Cleaned up the preferences and some of the gconf keys have changed, this means some of your preferences might need resetting (Martyn). - Added a preference for showing avatars (Martyn). - Added a preference to disable the contact online notifications (Martyn). - Stop flashing the task list a while after new messages arrive (Richard). Bugs Fixed ========== - Fixed #342928, Show subscription requests in the roster instead of JUST the notification tray which isn't ideal for people without one (Martyn). - Fixed #343375, Make sure we follow the XMPP spec for RFC 3921 with regards to adding and removing contacts. Subscription was broken somehow since 0.10 (Jonatan Magnusson). - Fixed #339285, Move to new LINGUAS method (patch by Przemyslaw Grzegorczyk). - Fixed #339679, Use case insensitive search in the logs (Richard). - Fixed #343511, Support scroll events in the presence chooser (Richard). - Fixed #331773, Ask for confirmation before clearing the list (Richard). - Fixed #344438, Set mnemonic target for the theme combo (Richard). Updated Translations ==================== Jordi Mallach (ca) Richard Hult (sv) Wouter Bolsterlee (nl) More information: ================= The Gossip project page: http://developer.imendio.com/wiki/Gossip If you want to subscribe to just announcements of Gossip you can join the announcement list here: http://lists.imendio.com/mailman/listinfo/announce 11 June 2006 Gossip Team From hughsient@gmail.com Sun Jun 11 16:10:31 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 029C73B0422 for ; Sun, 11 Jun 2006 16:10:31 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31984-01 for ; Sun, 11 Jun 2006 16:10:28 -0400 (EDT) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.168]) by menubar.gnome.org (Postfix) with ESMTP id 034F83B02CC for ; Sun, 11 Jun 2006 16:10:27 -0400 (EDT) Received: by ug-out-1314.google.com with SMTP id k3so2123698ugf for ; Sun, 11 Jun 2006 13:10:03 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:subject:from:reply-to:to:cc:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; b=HRcsTP79snnDu6H8ZeGN3Q6/nt35smFKdHMw9SBcLONZCQ2eVs5l1vjT5nHY94RPJ1RJsNuEcmy+rT+Dk1FOFWvHutu5HWk50bzy6X376OZom5F33NDNaFDr5szRY8Y870/jaEpj2C+0bC4v382GnYa1nd0EcgVRgkGSV9++cCA= Received: by 10.66.216.20 with SMTP id o20mr4467611ugg; Sun, 11 Jun 2006 13:02:54 -0700 (PDT) Received: from ?10.0.0.14? ( [86.132.112.248]) by mx.gmail.com with ESMTP id e1sm5926698ugf.2006.06.11.13.02.53; Sun, 11 Jun 2006 13:02:53 -0700 (PDT) From: Richard Hughes To: GnomePowerManager List Content-Type: text/plain; charset=UTF-8 Date: Sun, 11 Jun 2006 21:02:29 +0100 Message-Id: <1150056149.3896.9.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 (2.6.2-1.fc5.5) Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.705 tagged_above=-999 required=2 tests=[AWL=-0.663, BAYES_00=-2.599, RCVD_IN_BL_SPAMCOP_NET=1.558, SPF_PASS=-0.001] X-Spam-Score: -1.705 X-Spam-Level: X-Mailman-Approved-At: Sun, 11 Jun 2006 17:36:20 -0400 Cc: GNOME-Announce List , GNOME TranslationProject Subject: GNOME Power Manager 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: richard@hughsie.com List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 20:10:31 -0000 GNOME Power Manager is a session daemon for the GNOME desktop environment that makes it easy to manage the power on your laptop or desktop system. Download at the usual place : http://ftp.gnome.org/pub/GNOME/sources/gnome-power-manager/2.15/ ============== Version 2.15.3 ============== Released June 11, 2006 General - Depend on intltool 0.35.0 to build - Grammar fixes in the schema and glade file (Clytie Siddall) - Add in XFCE option so we display in the XFCE menu. lp:43077 - Use GtkStatusIcon when GTK version >= 2.9.0 (Jaap Haitsma) - Add in new docbook documentation about the dbus interface. - Rename and add a few DBUS methods from feedback on XDG list. Power Manager - Actually show the correct levels in the pixmaps for the mouse and keyboard. - Add a gconf key so we can disable the action for when the lid is previously shut and the AC power removed at a later time as this was causing confusion. - Limit the capacity to 100% - Undim the screen when we have to unlock returning from resume. #333290 - Rework the brightness handling so that we only have one way of doing the transitions. This simplifies things greatly. #341616 - Update for gnome-screensaver API changes. #344103 Power Preferences - Add the configurable action for power button press in the UI. #344325. Power Info - Set the correct colours of the line depending on discharging/charging status. #338175. Translators - Theppitak Karoonboonyanan & Roys Hengwatanakul (Thai) - Wouter Bolsterlee (Netherlands) - Clytie Siddall (Vietnamese) - Funda Wang (Simplified Chinese) - ivind Hoel (Norwegian bokml) - Francisco Javier F. Serrador (Spanish) - Raphael Higino (Brazilian Portuguese) From gjc@inescporto.pt Sun Jun 11 18:14:06 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F035C3B0137 for ; Sun, 11 Jun 2006 18:14:05 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05363-03 for ; Sun, 11 Jun 2006 18:14:04 -0400 (EDT) Received: from animal.inescn.pt (correio.inescn.pt [194.117.24.9]) by menubar.gnome.org (Postfix) with ESMTP id 82AD43B02F9 for ; Sun, 11 Jun 2006 18:14:03 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by animal.inescn.pt (8.13.6/8.13.6/7) with ESMTP id k5BMCqqs022474; Sun, 11 Jun 2006 23:12:52 +0100 (WEST) Received: from pong.inescporto.pt (pong.inescn.pt [194.117.26.74]) by animal.inescn.pt (8.13.6/8.13.6/5) with ESMTP id k5BMCZ29022454; Sun, 11 Jun 2006 23:12:35 +0100 (WEST) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by pong.inescporto.pt (Postfix) with ESMTP id DB83A119191; Sun, 11 Jun 2006 23:09:37 +0100 (WEST) From: "Gustavo J. A. M. Carneiro" To: gnome-announce-list@gnome.org Content-Type: text/plain Date: Sun, 11 Jun 2006 23:12:34 +0100 Message-Id: <1150063954.5758.0.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at inescporto.pt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.394 tagged_above=-999 required=2 tests=[AWL=-0.006, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001, TW_EV=0.077] X-Spam-Score: -2.394 X-Spam-Level: X-Mailman-Approved-At: Sun, 11 Jun 2006 18:37:01 -0400 Cc: PyGTK List Subject: ANNOUNCE: GnomePython 2.15.2 (unstable) X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 22:14:06 -0000 GnomePython 2.15.2 has been just released. This is a unstable release for testing purposes. GnomePython provides python interfacing modules for most of the GNOME Developer Platform libraries (except those already wrapped somewhere else.) Currently the list of provided python modules includes: - gnome, gnome.ui - gnomecanvas - gnomevfs - gconf - bonobo, bonobo.activation, bonobo.ui Overview of Changes from gnome-python 2.15.1 to gnome-python 2.15.2 =================================================================== * gnomevfs - Fix FileInfo.valid_fields computation (Sidnei da Silva) - Add some missing permission constants (Sidnei) - Add new FileInfo.access field (Gustavo) - Add sync variant of "file control" method (Gustavo) * gnome - gnome.program_init changes process name on Linux with prctl (Gustavo) The source tarball can be found here: http://ftp.gnome.org/pub/GNOME/sources/gnome-python/2.15/ Please file bug reports (bugs, missing APIs) here: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-python -- Gustavo J. A. M. Carneiro The universe is always one step beyond logic From William.Walker@Sun.COM Sun Jun 11 19:53:33 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C98A93B00BC; Sun, 11 Jun 2006 19:53:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09467-02; Sun, 11 Jun 2006 19:53:31 -0400 (EDT) Received: from brmea-mail-4.sun.com (brmea-mail-4.Sun.COM [192.18.98.36]) by menubar.gnome.org (Postfix) with ESMTP id 656553B00B7; Sun, 11 Jun 2006 19:53:31 -0400 (EDT) Received: from fe-amer-06.sun.com ([192.18.108.180]) by brmea-mail-4.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k5BNqQ6B020577; Sun, 11 Jun 2006 17:52:26 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0P00M01Y1KY900@mail-amer.sun.com> (original mail from William.Walker@Sun.COM); Sun, 11 Jun 2006 17:52:26 -0600 (MDT) Received: from [192.168.1.105] ([68.116.197.173]) by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0P0097BZN5LTZ1@mail-amer.sun.com>; Sun, 11 Jun 2006 17:52:26 -0600 (MDT) Date: Sun, 11 Jun 2006 19:52:16 -0400 From: Willie Walker Sender: William.Walker@Sun.COM To: orca-list@gnome.org, gnome-announce-list@gnome.org, gnome-accessibility-list@gnome.org Message-id: <1150069937.5071.4.camel@localhost> MIME-version: 1.0 X-Mailer: Evolution 2.6.1 Content-type: text/plain; charset=UTF-8 Content-transfer-encoding: 8BIT X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.587 tagged_above=-999 required=2 tests=[AWL=0.011, BAYES_00=-2.599, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.587 X-Spam-Level: X-Mailman-Approved-At: Mon, 12 Jun 2006 03:22:46 -0400 Cc: Subject: Announcing Orca 0.2.5 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 23:53:34 -0000 ================ * What is Orca ? ================ Orca is a scriptable screen reader for the GNOME desktop for people with visual impairments. ================== * What's changed ? ================== We've done a lot of work on Orca since the last release in both the new functionality and quality/stability departments. We thank all of our users that are providing feedback on gnome-list@gnome.org (see http://mail.gnome.org/mailman/listinfo/orca-list) as well as http://bugzilla.gnome.org. We value all of your feedback and help. We also appreciate contributions from community members, including Al Puzzuoli who is doing a great job helping with the Orca Wiki at http://live.gnome.org/Orca and Francisco Javier Dorado Martnez who has been testing and providing patches. Thank you all! ================== Orca 0.2.5 Changes ================== * Re-map keyboard bindings and add additional keyboard bindings. See http://live.gnome.org/Orca/KeyboardCommands for the list. * Improvements to StarOffice support to provide better access to text documents and spreadsheets. Also get rid of spurious "0.00" text that was showing up in braille for StarOffice buttons. * Addition of announcing text selection as it is selected and unselected. * Generalize the "read table cell row" functionality. If you press Insert+F11, it will toggle the feature to read the entire row of a table or just the selected table cell when you move from row to row. * Improved support for SayAll of text objects (SayAll for flat review is still on the to do list). * Addition of self-voicing module to tell Orca to be quiet when a self-voicing application is present. * Addition of ability to turn Orca into a speech server that can accessed via simple HTTP commands (default port is 20433, but this is customizable via orca.settings.speechServerPort). This will allow self-voicing applications to use Orca for their speech, thus letting them get the user's speech settings preferences. * Addition of orca.settings.enableBrailleGrouping (default=False). NOTE: this represents a change in the UI for Orca - the behavior to date has been to always group menu items on the braille display. The system responsiveness was bad for large menus, however, so we decided to make this an optional feature turned off by default. * Addition of utility to report information on the currently active script. This is primarily for helping script writers do debugging and is accessed by pressing Insert+F3. * Addition of orca.settings.cacheAccessibles (default=True) as a means to turn the local caching of accessible objects on or off. This is primarily an Orca developer debugging feature. * Fix for bug 344218 - gnome-terminal would not be presented properly if it was started after Orca. * Fix for bug 343666: pressing buttons on braille displays could cause a hang. * Partial fix for bug 342022 - provide some defensive mechanisms to help prevent some hangs. * Fix for bug 343133 - do not hang when doing a flat-review of a man page in gnome-terminal. * Fix for bug #343013 - the command line option strings should not be translatable. * Partial fix for bug 319652 - become a better Python thread citizen to help reduce hangs. * Fix for bug 342303 - stop speech when the user presses the mouse button. * Fix for bug 342122 - use all labels for an objecty when presenting an object. * Fix for bug 342133 - do not read all labels in gnome-window-properties application when it appears. * Fix for bug 341415 - when moving between workspaces with metacity, eliminate redundant output and alsomake sure workspace names are announced. * Refactor of various modules to move script writing utilities into util.py. * More fleshing out of the test plan. ====================== * Where can I get it ? ====================== Source code: http://ftp.gnome.org/pub/GNOME/sources/orca/0.2/orca-0.2.5.tar.gz Enjoy. Will, Mike, Rich, Lynn, and the Orca community From callum@spooky-possum.org Mon Jun 12 02:05:21 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 06D8C3B000D; Mon, 12 Jun 2006 02:05:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21232-04; Mon, 12 Jun 2006 02:05:19 -0400 (EDT) Received: from genamics.blastula.net (dns1.blastula.net [64.92.214.155]) by menubar.gnome.org (Postfix) with ESMTP id 4C4D83B00D4; Mon, 12 Jun 2006 02:05:19 -0400 (EDT) Received: from [60.234.103.60] (helo=[60.234.103.60]) by genamics.blastula.net with esmtpa (Exim 4.52) id 1FpfWT-0001Yo-NG; Mon, 12 Jun 2006 18:03:39 +1200 From: Callum McKenzie To: games-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Date: Mon, 12 Jun 2006 18:03:05 +1200 Message-Id: <1150092185.10939.21.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Antivirus-Scanner: Clean mail though you should still use an Antivirus X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - genamics.blastula.net X-AntiAbuse: Original Domain - gnome.org X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [47 12] X-AntiAbuse: Sender Address Domain - spooky-possum.org X-Source: X-Source-Args: X-Source-Dir: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.538 tagged_above=-999 required=2 tests=[AWL=0.061, BAYES_00=-2.599] X-Spam-Score: -2.538 X-Spam-Level: X-Mailman-Approved-At: Mon, 12 Jun 2006 03:23:07 -0400 Cc: Subject: gnome-games 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: callum@spooky-possum.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 06:05:21 -0000 gnome-games 2.15.3 ================== This development release of gnome-games is a little short on new content since we are in the process of changing maintainers and not everything is organised yet. Things that have changed: General: - High scores: the file is truncated properly if you use a short name. This stops you getting a top-ten score with 11th-place. - Require the latest intltool. Aisleriot - Radio-buttons for Klondike options work now. There are new choices for how you want your cards dealt in Klondike. - Explicitly protect the cards from garbage collection. This is should fix bug #342038, but doesn't actually seem to work. Robots: - Really, really, fix the desktop icon name this time (I hope). As usual, get it from: http://download.gnome.org/sources/gnome-games/2.15/ - Callum From gjc@inescporto.pt Sun Jun 11 18:38:11 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E31903B0350 for ; Sun, 11 Jun 2006 18:38:10 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06171-08 for ; Sun, 11 Jun 2006 18:38:08 -0400 (EDT) Received: from animal.inescn.pt (correio.inescn.pt [194.117.24.9]) by menubar.gnome.org (Postfix) with ESMTP id D88DC3B025D for ; Sun, 11 Jun 2006 18:38:07 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by animal.inescn.pt (8.13.6/8.13.6/7) with ESMTP id k5BMau8H023824; Sun, 11 Jun 2006 23:36:56 +0100 (WEST) Received: from pong.inescporto.pt (pong.inescn.pt [194.117.26.74]) by animal.inescn.pt (8.13.6/8.13.6/5) with ESMTP id k5BMaf3c023811; Sun, 11 Jun 2006 23:36:41 +0100 (WEST) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by pong.inescporto.pt (Postfix) with ESMTP id CC3E1119191; Sun, 11 Jun 2006 23:33:43 +0100 (WEST) From: "Gustavo J. A. M. Carneiro" To: PyGTK Content-Type: text/plain Date: Sun, 11 Jun 2006 23:36:40 +0100 Message-Id: <1150065400.5758.3.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at inescporto.pt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.39 tagged_above=-999 required=2 tests=[AWL=-0.002, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: -2.39 X-Spam-Level: X-Mailman-Approved-At: Mon, 12 Jun 2006 03:23:25 -0400 Cc: gnome-announce-list@gnome.org Subject: ANNOUNCE: GnomePythonDesktop 2.15.3 (unstable) X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 22:38:11 -0000 GnomePythonDesktop 2.15.3 has been just released. This is a unstable release for testing purposes. GnomePythonDesktop provides python interfacing modules for some GNOME libraries part of the GNOME Desktop. The following Python modules are included: - gnomeapplet - gnomeprint, gnomeprint.ui - gtksourceview - wnck - totem.plparser - gtop - nautilusburn - mediaprofiles - metacity - rsvg - gnomekeyring - gnomedesktop Overview of Changes from 2.15.2 to 2.15.3 ============================================================================== * gnomekeyring - Improve API (throw exceptions instead of returning error codes) (Gustavo) - Add an example (Gustavo) * metacity - Update to new C API (Frederic Peters) - Wrap wnck_window_get_geometry() (Magnus Therning) * nautilusburn - Update to new improved C API (Python API is not preserved) (Gustavo) The source tarball can be found here: http://ftp.gnome.org/pub/GNOME/sources/gnome-python-desktop/2.15/ Please file bug reports (bugs, missing APIs) here: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-python-desktop Happy testing! -- Gustavo J. A. M. Carneiro The universe is always one step beyond logic. From gjc@inescporto.pt Sun Jun 11 19:00:35 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 48BC73B0253; Sun, 11 Jun 2006 19:00:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07173-08; Sun, 11 Jun 2006 19:00:34 -0400 (EDT) Received: from animal.inescn.pt (correio.inescn.pt [194.117.24.9]) by menubar.gnome.org (Postfix) with ESMTP id 6D4C93B014F; Sun, 11 Jun 2006 19:00:33 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by animal.inescn.pt (8.13.6/8.13.6/7) with ESMTP id k5BMxkXt025129; Sun, 11 Jun 2006 23:59:46 +0100 (WEST) Received: from pong.inescporto.pt (pong.inescn.pt [194.117.26.74]) by animal.inescn.pt (8.13.6/8.13.6/5) with ESMTP id k5BMxSnQ025107; Sun, 11 Jun 2006 23:59:28 +0100 (WEST) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by pong.inescporto.pt (Postfix) with ESMTP id 08E1F119191; Sun, 11 Jun 2006 23:56:31 +0100 (WEST) From: "Gustavo J. A. M. Carneiro" To: gnome-announce-list@gnome.org Content-Type: text/plain Date: Sun, 11 Jun 2006 23:59:27 +0100 Message-Id: <1150066767.5758.5.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at inescporto.pt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.427 tagged_above=-999 required=2 tests=[AWL=0.038, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.427 X-Spam-Level: X-Mailman-Approved-At: Mon, 12 Jun 2006 03:23:49 -0400 Cc: orbit-list@gnome.org, PyGTK List Subject: ANNOUNCE: PyORBit 2.14.1 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 23:00:36 -0000 "PyORBit is a Python binding for the ORBit2 CORBA ORB. It was developped to suit the needs of the bonobo bindings in GNOME-Python, but is usable for other purposes as well. It aims to follow the standard Python language mapping for CORBA. It can generate stubs at runtime from typelibs, IDL files, or by introspecting remote objects using ORBit2's IModule typelib capabilities." The source tarball can be found here: http://ftp.gnome.org/pub/GNOME/sources/pyorbit/2.13/ Please file bug reports (bugs, missing APIs) here: http://bugzilla.gnome.org/enter_bug.cgi?product=pyorbit Changes from 2.14.0 to 2.14.1: - Fix build problem on cygwin - Fix segmentation fault on orb.shutdown() - Make it work on Python 2.5 and 64-bit platforms -- Gustavo J. A. M. Carneiro The universe is always one step beyond logic From mclasen@redhat.com Mon Jun 12 12:04:32 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 41C3B3B000C; Mon, 12 Jun 2006 12:04:32 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09149-04; Mon, 12 Jun 2006 12:04:29 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 7270D3B009D; Mon, 12 Jun 2006 12:04:29 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5CG3bc9030255; Mon, 12 Jun 2006 12:03:37 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [172.16.76.12]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5CG3bc3007778; Mon, 12 Jun 2006 12:03:37 -0400 Received: from golem.boston.redhat.com (golem.boston.redhat.com [172.16.80.24]) by mail.boston.redhat.com (8.12.8/8.12.8) with ESMTP id k5CG3blQ018463; Mon, 12 Jun 2006 12:03:37 -0400 From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain Date: Mon, 12 Jun 2006 12:03:36 -0400 Message-Id: <1150128216.15532.14.camel@golem.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.1 (2.7.1-1) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.426 tagged_above=-999 required=2 tests=[AWL=-0.056, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_LQ=0.077, TW_RX=0.077, TW_TR=0.077] X-Spam-Score: -2.426 X-Spam-Level: Cc: Subject: GLib 2.11.3 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 16:04:32 -0000 GLib 2.11.3 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.11/ http://ftp.gnome.org/pub/GNOME/sources/glib/2.11/ glib-2.11.3.tar.bz2 md5sum: 41931c4965f7e1848f81b800914905cd glib-2.11.3.tar.gz md5sum: cd78ebc535e29cdef0fed9487aa21dac This is a development release leading up to GLib 2.12. Notes: * This is unstable development release. While it has had a bit of testing, there are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GLib 2.10. If you have problems, you'll need to reinstall GLib 2.10. * GLib 2.12 will be source and binary compatible with the GLib 2.10.x series (for some caveats, see the README). At this point, the API additions in the 2.11.x series are almost finished. * Bugs should be reported to http://bugzilla.gnome.org. About GLib ========== GLib is the low-level core library that forms the basis for projects such as GTK+ and GNOME. It provides data structure handling for C, portability wrappers, and interfaces for such runtime functionality as an event loop, threads, dynamic loading, and an object system. More information about GLib is available at: http://www.gtk.org/ An installation guide for the GTK+ libraries, including GLib, can be found at: http://developer.gnome.org/doc/API/2.0/gtk/gtk-building.html Overview of Changes from GLib 2.11.2 to GLib 2.11.3 =================================================== * GBookmarkFile: - g_bookmark_file_move_item: Return TRUE in case of an empty target * Bugs fixed: 343919 gunicollate.c: strxfrm bug on VC8 * Updated translations (fi) A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=343919 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Emmanuele Bassi, Kazuki Iwamoto, Tor Lillqvist Matthias Clasen June 12, 2006 From Brian.Cameron@Sun.COM Mon Jun 12 14:30:32 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4CFFC3B0010; Mon, 12 Jun 2006 14:30:32 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24480-06; Mon, 12 Jun 2006 14:30:31 -0400 (EDT) Received: from brmea-mail-3.sun.com (brmea-mail-3.Sun.COM [192.18.98.34]) by menubar.gnome.org (Postfix) with ESMTP id F1D1A3B0078; Mon, 12 Jun 2006 14:30:30 -0400 (EDT) Received: from fe-amer-01.sun.com ([192.18.108.175]) by brmea-mail-3.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k5CITqhn016383; Mon, 12 Jun 2006 12:29:52 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0R00001F5FBN00@mail-amer.sun.com> (original mail from Brian.Cameron@Sun.COM); Mon, 12 Jun 2006 12:29:52 -0600 (MDT) Received: from [192.168.0.20] ([206.135.142.194]) by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0R002PJFDNG7X0@mail-amer.sun.com>; Mon, 12 Jun 2006 12:29:52 -0600 (MDT) Date: Mon, 12 Jun 2006 13:29:49 -0500 From: Brian Cameron Sender: Brian.Cameron@Sun.COM To: gnome-announce-list@gnome.org, gdm-list@gnome.org Message-id: <448DB29D.9020208@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5.0.2 (X11/20060515) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.444 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, TW_GD=0.077, TW_PM=0.077, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.444 X-Spam-Level: Cc: Subject: GDM2 2.15.5 (unstable), the "Caraboy" Release X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 18:30:32 -0000 AOOH-GAH -------- (If you have no clue what gdm is, skip a few paragraphs down first) The 2.15.5 release is an unstable release of GDM with the following new features. - Correction to autologin PAM service name so automatic login works. (Brian Cameron) - Fix compiler warnings that were causing core dumping issues on some platforms (Brian Cameron) - Translation updates (Josep Puigdemont Casamaj\303\263, Changwoo Ryu) Note that this also contains an important security fix that was originally released in 2.15.4, so please make sure to update if using an older version than 2.15.4. - Correction for serious security issue where the user can enter the GDM configuration GUI with a user password when the Face Browser is enabled. Refer to bugzilla.gnome.org bug #343476 (Brian Cameron) This issue impacts all versions of GDM 2.8.0.0-2.8.0.7, 2.14.0-2.14.7, and 2.15.0-2.15.3. This issue was reported to vendor-sec one week ago and has ID #CVE-2006-2452. Note: GDM2 was originally written by Martin K. Petersen . Much work has been done on GDM2 by George Lebl, and Brian Cameron currently shares maintainership duties with the Queen of England. Note2: If installing from the tarball do note that make install overwrites most of the setup files, all except gdm.conf. It will however save backups with the .orig extension first. #ifndef GDM_DISABLE_DEPRECATED Note3: Note3 has been depracated ... #endif /* GDM_DISABLE_DEPRECATED */ Downloading: ============ Online Documentation - http://www.gnome.org/projects/gdm/ Latest Stable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.14/ Latest Unstable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.15/ No RPM this time around BTW. Have fun. A spec file is included though, so you can try: rpmbuild -ta gdm-whatever.tar.gz Have fun, Brian From Brian.Cameron@Sun.COM Mon Jun 12 15:08:35 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 715123B034C; Mon, 12 Jun 2006 15:08:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26412-02; Mon, 12 Jun 2006 15:08:32 -0400 (EDT) Received: from brmea-mail-1.sun.com (brmea-mail-1.Sun.COM [192.18.98.31]) by menubar.gnome.org (Postfix) with ESMTP id 99D443B025E; Mon, 12 Jun 2006 15:08:32 -0400 (EDT) Received: from fe-amer-05.sun.com ([192.18.108.179]) by brmea-mail-1.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k5CJ7bEh002523; Mon, 12 Jun 2006 13:07:37 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0R00501GXLIW00@mail-amer.sun.com> (original mail from Brian.Cameron@Sun.COM); Mon, 12 Jun 2006 13:07:37 -0600 (MDT) Received: from [192.168.0.20] ([206.135.142.194]) by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0R00A6NH4LVTH0@mail-amer.sun.com>; Mon, 12 Jun 2006 13:07:37 -0600 (MDT) Date: Mon, 12 Jun 2006 14:07:35 -0500 From: Brian Cameron Sender: Brian.Cameron@Sun.COM To: gnome-announce-list@gnome.org, gdm-list@gnome.org Message-id: <448DBB77.9000608@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5.0.2 (X11/20060515) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.444 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, TW_GD=0.077, TW_PM=0.077, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.444 X-Spam-Level: Cc: Subject: GDM2 2.14.9 (stable), the "Lincoln Park" Release X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 19:08:35 -0000 AOOH-GAH -------- (If you have no clue what gdm is, skip a few paragraphs down first) The 2.14.9 release is a stable release of GDM with the following new features. - Correction to autologin PAM service name so automatic login works. (Brian Cameron) - Fix compiler warnings that were causing core dumping issues on some platforms (Brian Cameron) - Translation updates (Josep Puigdemont Casamaj\303\263) Note: GDM2 was originally written by Martin K. Petersen . Much work has been done on GDM2 by George Lebl, and Brian Cameron currently shares maintainership duties with the Queen of England. Note2: If installing from the tarball do note that make install overwrites most of the setup files, all except gdm.conf. It will however save backups with the .orig extension first. #ifndef GDM_DISABLE_DEPRECATED Note3: Note3 has been depracated ... #endif /* GDM_DISABLE_DEPRECATED */ Downloading: ============ Online Documentation - http://www.gnome.org/projects/gdm/ Latest Stable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.14/ Latest Unstable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.15/ No RPM this time around BTW. Have fun. A spec file is included though, so you can try: rpmbuild -ta gdm-whatever.tar.gz Have fun, Brian From mclasen@redhat.com Mon Jun 12 15:43:04 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 851123B00E5; Mon, 12 Jun 2006 15:43:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27729-06; Mon, 12 Jun 2006 15:43:02 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 5B16F3B0010; Mon, 12 Jun 2006 15:43:02 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5CJZWav007572; Mon, 12 Jun 2006 15:35:32 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [172.16.76.12]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5CJZWUd001833; Mon, 12 Jun 2006 15:35:32 -0400 Received: from golem.boston.redhat.com (golem.boston.redhat.com [172.16.80.24]) by mail.boston.redhat.com (8.12.8/8.12.8) with ESMTP id k5CJZWlQ009694; Mon, 12 Jun 2006 15:35:32 -0400 From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain Date: Mon, 12 Jun 2006 15:35:31 -0400 Message-Id: <1150140931.15532.18.camel@golem.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.1 (2.7.1-1) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.541 tagged_above=-999 required=2 tests=[AWL=0.060, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.541 X-Spam-Level: Cc: Subject: GTK+ 2.8.19 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 19:43:04 -0000 GTK+ 2.8.19 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.8/ http://ftp.gnome.org/pub/GNOME/sources/gtk+/2.8/ gtk+-2.8.19.tar.bz2 md5sum: 1a03dbed4b794194a610e9d7eb175b06 gtk+-2.8.19.tar.gz md5sum: 604d3263498994c58af378f0ec076e6f This is a bugfix release in the 2.8.x series. It fixes a rare memory corruption issue when using the deprecated GdkFont API. What is GTK+ ============ 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.8 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/ Overview of Changes from GTK+ 2.8.18 to GTK+ 2.8.19 =================================================== Bugs fixed: 341327 Memory corruption inside glib 337491 _gdk_win32_drawable_release_dc: DeleteDC() called on a GetDC() handle 343425 "grab-notify"-signal is not correctly propagated for internal children 344244 Window resizing not working when keeping the aspect fixed 344496 CRLF converting via Clipboard Updated translations (ne) A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=343425,341327,344244,337491,344496 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Markku Vire, Sampo Savolainen, Tim Janik, Tor Lillqvist, Chris Wilson June 12, 2006 Matthias Clasen From newren@gmail.com Mon Jun 12 20:01:08 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C06453B018B for ; Mon, 12 Jun 2006 20:01:08 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03747-10 for ; Mon, 12 Jun 2006 20:01:06 -0400 (EDT) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.203]) by menubar.gnome.org (Postfix) with ESMTP id DCC213B0078 for ; Mon, 12 Jun 2006 20:01:05 -0400 (EDT) Received: by wx-out-0102.google.com with SMTP id h26so971531wxd for ; Mon, 12 Jun 2006 17:00:16 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=tzATDJMp0XzBzC3f1Js6q5t6DW1AJ/Xb3xHu6cJ5HbRxmg4U9Mi4mRfXd+tBd4gF2Jrx0LCPgFnY6WCcrrfEvTgkrAqgyR9TK2LZ0Rxry84BtUi6UXb3giOhJe8CORooz/5D9FkMGku6+JWNaBWjfK/H1pg3dz8Xy5khyLDZnps= Received: by 10.70.29.3 with SMTP id c3mr7026730wxc; Mon, 12 Jun 2006 17:00:16 -0700 (PDT) Received: by 10.70.89.16 with HTTP; Mon, 12 Jun 2006 17:00:16 -0700 (PDT) Message-ID: <51419b2c0606121700j69ef2e93x2dedecfb4c173083@mail.gmail.com> Date: Mon, 12 Jun 2006 18:00:16 -0600 From: "Elijah Newren" To: gnome-announce-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.537 tagged_above=-999 required=2 tests=[AWL=-0.014, BAYES_00=-2.599, SPF_PASS=-0.001, TW_BW=0.077] X-Spam-Score: -2.537 X-Spam-Level: Subject: libwnck 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 00:01:09 -0000 * What is it ? ============== Library for writing different kinds of workspace switchers, window lists, task bars, task menus, etc. Window Navigation Construction Kit. Pronounced "lib-wink" * What's changed ? ================== Fixes - restart activation timeout when the mouse moves to a different workspace (Benjamin) - new methods to test if the names returned by wnck_window_get_name and wnck_window_get_icon_name are real or just FALLBACK_NAME (Dan) [#342577] Misc - don't translate %s (Vincent) [#339069] Translations - Guillaume Savaton (eo) * Where can I get it ? ====================== Source code http://ftp.gnome.org/pub/GNOME/sources/libwnck/2.15/ MD5SUMs 6e9ef41d1aa9e81d6bc33047cccbe07f libwnck-2.15.3.tar.bz2 08a86da5a0225ef1ac5f340b95e74a4c libwnck-2.15.3.tar.gz From newren@gmail.com Mon Jun 12 20:28:13 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2AE023B00A5 for ; Mon, 12 Jun 2006 20:28:13 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04431-07 for ; Mon, 12 Jun 2006 20:28:11 -0400 (EDT) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.193]) by menubar.gnome.org (Postfix) with ESMTP id 6F8173B0078 for ; Mon, 12 Jun 2006 20:28:11 -0400 (EDT) Received: by wx-out-0102.google.com with SMTP id h26so974384wxd for ; Mon, 12 Jun 2006 17:27:35 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=kP6G2sZ3DMwVOY8jQamPOJMaaFSRSXp2y9wwFGXNkpY9JgQhdby0hd2FfdVpmpuaiefE4ZzuZpRcGMYYYQn6Uy0lA4+nsPGxOr+uQMfqytegFiAFLpHQ1Ly8bKHW0FG3kwRN1lWVPIylZ8GP7vkdnEXeWht1ipWqQw7nj0OchIk= Received: by 10.70.132.12 with SMTP id f12mr6858664wxd; Mon, 12 Jun 2006 17:01:49 -0700 (PDT) Received: by 10.70.89.16 with HTTP; Mon, 12 Jun 2006 17:01:49 -0700 (PDT) Message-ID: <51419b2c0606121701y5d42a121o5ab05ac32f69b96@mail.gmail.com> Date: Mon, 12 Jun 2006 18:01:49 -0600 From: "Elijah Newren" To: gnome-announce-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.576 tagged_above=-999 required=2 tests=[AWL=0.024, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.576 X-Spam-Level: Subject: metacity 2.15.5 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 00:28:13 -0000 * What is it ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Metacity is a simple window manager that integrates nicely with GNOME 2. * What's changed ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Thanks to Bj=F6rn Lindqvist, S=F8ren Sandmann, Adam Jackson, Elijah Newren, and Aidan Delaney for improvements in this release. - code cleanup in resizepopup.c (Bj=F6rn) [#341648] - fix a logic bug so that the whole titlebar becomes sensitive to mouse clicks (Bj=F6rn) [#336320] - make mouse cursor when moving windows become a hand (Bj=F6rn) [#337376] - lots and lots of compositor improvements -- beginning of a new layer to abstract transition effects, shrinking and minimizing and exploding effects, fading in and out, unminimize animation that reverses minimize one, translucent menus, bounce on window focus, and all kinds of stuff I don't understand and can't summarize well (S=F8ren, Adam) - Fix a crash on exit/logout from assuming a compositor would always exist (Elijah) [#342166] - code cleanup in tabpopup.c (Aidan Delaney) [#166890] Translations Pema Geyleg (dz), I=F1aki Larra=F1aga Murgoitio (eu), Theppitak Karoonboonyanan (th), Clytie Siddall (vi) * Where can I get it ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Source code http://download.gnome.org/sources/metacity/2.15/ MD5SUMs 057a284898385218b8711229d659c2ed metacity-2.15.5.tar.bz2 983eb3ee58263214e3e57c2f962fbd6a metacity-2.15.5.tar.gz From mclasen@redhat.com Tue Jun 13 02:09:16 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 72FE93B00AF; Tue, 13 Jun 2006 02:09:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12183-04; Tue, 13 Jun 2006 02:09:13 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id B2F773B000C; Tue, 13 Jun 2006 02:09:13 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5D681s3022181; Tue, 13 Jun 2006 02:08:01 -0400 Received: from lacrosse.corp.redhat.com (lacrosse.corp.redhat.com [172.16.52.154]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5D67uRP017686; Tue, 13 Jun 2006 02:07:56 -0400 Received: from [172.16.83.145] (vpn83-145.boston.redhat.com [172.16.83.145]) by lacrosse.corp.redhat.com (8.12.11.20060308/8.11.6) with ESMTP id k5D67tQC015619; Tue, 13 Jun 2006 02:07:56 -0400 From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain; charset=UTF-8 Organization: Red Hat Date: Tue, 13 Jun 2006 02:09:42 -0400 Message-Id: <1150178982.4081.13.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.426 tagged_above=-999 required=2 tests=[AWL=-0.056, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_GD=0.077, TW_GT=0.077, TW_KB=0.077] X-Spam-Score: -2.426 X-Spam-Level: Cc: Subject: GTK+ 2.9.3 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 06:09:16 -0000 GTK+ 2.9.3 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.9/ http://ftp.gnome.org/pub/gnome/sources/gtk+/2.9/ gtk+-2.9.3.tar.bz2 md5sum: d73039a3b5847c352f5740ac908be7d2 gtk+-2.9.3.tar.gz md5sum: 0156eef91d2bbb23f1b6ccb49335fae5 This is a development release leading up to GTK+ 2.10. Notes: * This is unstable development release. There are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GTK+ 2.8. If you have problems, you'll need to reinstall GTK+ 2.8. * GTK+ 2.10 will be source compatible with the GTK+ 2.8 series; the new API additions in GTK+ 2.9.0 are not yet completely finalized, so there are likely incompatibilies between this release and the final 2.10 release. * The ABI version has been bumped from 2.4.0 to 2.10.0, since the filechooser backend interface has been changed. Third-party filechooser backends need to be ported to the new interface. Other third-party modules (input methods, image loaders, etc) just need to be reinstalled in the proper location for GTK+ to find them. * Remaining issues for GTK+ 2.10 can be found with following bugzilla query: http://bugzilla.gnome.org/buglist.cgi?product=gtk%2b&target_milestone=2.10+API+Freeze&target_milestone=2.10+Freeze&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED * Bugs should be reported to http://bugzilla.gnome.org. What is GTK+ ============ 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.4/gtk/gtk-building.html Common questions: http://developer.gnome.org/doc/API/2.4/gtk/gtk-question-index.html http://www.gtk.org/faq/ Overview of Changes from GTK+ 2.9.2 to 2.9.3 ============================================ * GtkPrintOperation: - Introduce an allow-async property - Introduce a GtkPrintOperationAction enumeration - Rename pdf_target to export_filename - Allow to hide "Print to PDF" in the low-level API * GtkNotebook: - Add a destroy notify to gtk_notebook_set_window_creation_hook. * GtkTreeView: - Support grid lines * GtkRange: - Add a number of new stle properties which allow more fexible stepper theming * Bugs fixed: 153212 Have the Paste kbd shortcut jump to the location in the buffer 337491 _gdk_win32_drawable_release_dc: DeleteDC() called on a GetDC() handle 339739 gtk/gtkprintoperation-win32.c: 3 compile error 342339 GtkRange::stepper-spacing style property not implemented correctly 343945 Buttons of a GtkAssistant are not accessible 344148 Wrong reqs for ATK 344209 gtk_notebook_set_window_creation_hook() has no destroy func. 344232 GtkEntry's "Delete" context menu item is sensitive on a non-editable GtkEntry 344244 Window resizing not working when keeping the aspect fixed 344288 gtk_print_operation_preview_is_selected must return a value 344386 gdk-2.0-uninstalled.pc.in and gdkconfig.h 344496 CRLF converting via Clipboard 344504 GtkPrintCapabilities not in gtktypebuiltins.h 344505 Wrong signal registration for create_custom_widget 344512 cvs build issue 344513 pdf print module's print_stream not calling destroy notify 344518 NULL unref in page setup dialogue 344543 gtk_progress_bar_pulse calls gtk_progress_bar_paint directly 344560 gtk_print_settings_[sg]et_scale shouldn't be in percent 344607 memory leaks in gtkrecentchooserdefault.c and gtkrecentchoosermenu.c 344624 Memory leak in gtk_tree_model_filter_finalize: User data not freed 337603 Possible off-by-one in gdk_pango_layout_line_get_clip_region 344239 Wrong filename for gtk-find stock item. 344528 comma at end of GtkPrintOperationAction enum causes mozilla compilation error 344290 horizontal-padding not take into account when placing submenus 344558 document print dialogue response codes 339592 Add print-to-postscript 342249 Allow to draw upper and lower sides of GtkRange's trough differently 344530 gtk_recent_chooser_widget_new_for_manager and gtk_recent_chooser_menu_new_for_manager should allow NULL manager arg * Updated translations (es,fi,gu,ko,th,wa) A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=153212,337491,339739,342339,343945,344148,344209,344232,344244,344288,344386,344496,344504,344505,344512,344513,344518,344543,344560,344607,344624,337603,344239,344528,344290,344558,339592,342249,344530 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Behdad Esfahbod, Bastian Nocera, Alexander Larsson, Jrg Billeter, Murray Cumming, Milosz Derezynski, Tor Lillqvist, Kazuki Iwamoto, Chris Wilson, Michael Natterer, Benjamin Berg, Marko Anastasov, Christian Persch, Masatake Yamamoto, Elijah Newren, John Finlay, Emmanuele Bassi, David Malcolm, John Darrington, Christian Weiske, Yvgen Muntyan, Martyn Russell, Kristian Rietveld June 13, 2006 Matthias Clasen From parente@gmail.com Mon Jun 12 09:07:24 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8979A3B009D for ; Mon, 12 Jun 2006 09:07:24 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03281-09 for ; Mon, 12 Jun 2006 09:07:22 -0400 (EDT) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.231]) by menubar.gnome.org (Postfix) with ESMTP id 9BD863B0083 for ; Mon, 12 Jun 2006 09:07:22 -0400 (EDT) Received: by wr-out-0506.google.com with SMTP id 50so59130wri for ; Mon, 12 Jun 2006 06:06:53 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=Hk2y2xQcbYJKNPf1LW7Y+V28/uYf1U244+IHjlJ7rvPAXFm2IeIHW6o/slpX1K2RUSQzIkrF+sc7i4dF5E8CMLURiFTCBFzpZu9qbgaiDE/D6+W4KrPGXwQqArUp5siLDWhmzDklvsX4fL+9EE4/UFa+de3k689sT00z2J2T/y4= Received: by 10.64.150.20 with SMTP id x20mr4562225qbd; Mon, 12 Jun 2006 06:06:53 -0700 (PDT) Received: by 10.65.154.18 with HTTP; Mon, 12 Jun 2006 06:06:53 -0700 (PDT) Message-ID: <5308fd2c0606120606p43b30477o4e73cfad155dcaa7@mail.gmail.com> Date: Mon, 12 Jun 2006 09:06:53 -0400 From: "Peter Parente" To: gnome-announce-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.589 tagged_above=-999 required=2 tests=[AWL=0.011, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.589 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Subject: lsr-0.2.1 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: parente@cs.unc.edu List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 13:07:24 -0000 ============== * What is it ? ============== Linux Screen Reader (LSR) is an extensible assistive technology for people with disabilities. The design philosophy behind LSR is to provide a core platform that enables the development of LSR extensions for improving desktop application accessibility and usability and shields extension developers from the intricacies of the desktop accessibility architecture. The primary use of the LSR platform is to give people with visual impairments access to the GNOME desktop and its business applications (e.g. Firefox, OpenOffice, Eclipse) using speech, Braille, and screen magnification. The extensions packaged with the LSR core are intended to meet this end. However, LSR's rich support for extensions can be used for a variety of other purposes such as supporting novel input and output devices, improving accessibility for users with other disabilities, enabling multi-modal access to the GNOME desktop, and so forth. ================== * What's changed ? ================== 0.2.1 ===== User interface * Better reporting of accessible components * Combobox current text reported on focus * Tree level reported on level change and first focus (bug #343388) * Menu role and name announced before menu items when switching between menus * Review of visible items works on text, trees, lists, and tables now * Added mute indefinitely key command Scripting * Added DeveloperPerk with the following commands * Refresh all loaded scripts without restarting LSR * Report names of all loaded scripts * Show or hide all development monitor windows * Added -g command line parameter to generate a new extension template * Update of TaskTools to support new output semantics * Added support for text selection events * Added support for storing script and application state separately Devices * Updated Keyboard device to support stateful keys as modifiers (e.g. CapsLock) Architecture * Complete refactor of output interface to support device Style objects * Mapping from semantics (role, title, level, etc.) to styles * Plumbing to support persistence and configuration of extension settings * Plumbing to support auto-generation of settings dialogs for extensions Documentation * Posted Gaim Perk tutorial as hands-on example of writing a script extension * Updated user guide to mention new key bindings * Regenerated epydoc to match latest API Translations * sv(Christian Rose) ====================== * Where can I get it ? ====================== Source code release: http://live.gnome.org/LSR#downloads For more information, visit the LSR home page: http://live.gnome.org/LSR From rodrigo@novell.com Mon Jun 12 17:44:58 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F06E53B016D for ; Mon, 12 Jun 2006 17:44:57 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32717-04 for ; Mon, 12 Jun 2006 17:44:57 -0400 (EDT) Received: from peabody.ximian.com (peabody.ximian.com [130.57.169.10]) by menubar.gnome.org (Postfix) with ESMTP id DCE623B00E5 for ; Mon, 12 Jun 2006 17:44:56 -0400 (EDT) Received: (qmail 22167 invoked from network); 12 Jun 2006 21:43:46 -0000 Received: from localhost (HELO ?164.99.120.183?) (127.0.0.1) by localhost with SMTP; 12 Jun 2006 21:43:46 -0000 From: Rodrigo Moya To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-15 Date: Mon, 12 Jun 2006 23:36:21 +0200 Message-Id: <1150148182.16907.0.camel@formigal.home> Mime-Version: 1.0 X-Mailer: Evolution 2.6.0 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.336 tagged_above=-999 required=2 tests=[AWL=-0.091, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, TW_BX=0.077, TW_IB=0.077] X-Spam-Score: -2.336 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: Control Center List Subject: control-center 2.15.3 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 21:44:58 -0000 Changes since 2.14.2 -------------------- about me: - Fixed typo (Rodrigo Moya) (324971) - Fixed compilation issues (Rodrigo Moya) (344468) default applications: - Added support for Sylpheed (Luca Cavalli) (332659) - Removed unnecessary gnome-terminal argument (Luca Cavalli) (336700) keybindings: - Removed brightness keybindings, now in gnome-power-manager (Bastien Nocera) (339857) keyboard: - Save/restore layout preview window geometry (Sergey Udaltsov) mouse: - Fixed selection when no cursor font is set in GConf (Darren Kenny) (340003) sound: - Added sound device selection (Jrg Billeter) (329112) - Fixed button strings (Rodrigo Moya) (324971) theme-switcher: - Removed drag & drop information text (Thomas Wood) (99535) - Added Install buttons to each tab in the details window (Thomas Wood) - Remember last browsed or installed from location (Thomas Wood) (138795) - Don't allow invalid characters in theme names (Thomas Wood) (139692) - Don't ask user whether to overwrite or not internal files (Thomas Wood) (317375) - Allow saving background image for custom themes (Thomas Wood) (330302) - Fixed UI issues in the save dialog (Thomas Wood) (100622) settings daemon: - Fixed libxklavier engine initialization logic (Sergey Udaltsov) (333091) - Removed references to brightness controls (Bastien Nocera) (339857) - Fixed leaks (Paolo Borelli) (342568, 342570) general: - Updated to new libxklavier API (Sergey Udaltsov) updated translations: - bg (Alexander Shopov) - cs (Miloslav Trmac, Lukas Novotny, Jakub Friedl) - dz (Pema Geyleg) - es (Francisco Javier F. Serrador) - fi (Ilkka Tuohela) - gl (Ignacio Casal Quinteiro) - gu (Ankit Patel) - mg (Simos Xenitellis) - nb (Kjartan Maraas) - sq (Laurent Dhima) - sv (Daniel Nylander) - th (Theppitak Karoonboonyanan) - vi (Clytie Siddall) - zh_CN (Funda Wang) - zh_HK (Chao-Hsiung Liao) - zh_TW (Chao-Hsiung Liao) Availability ------------ http://ftp.gnome.org/pub/GNOME/sources/control-center/2.15/ Contact ------- * Bugs in http://bugzilla.gnome.org * Mailing list http://mail.gnome.org/mailman/listinfo/gnomecc-list -- Rodrigo Moya From behdad.esfahbod@gmail.com Mon Jun 12 17:47:52 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7B80A3B014D for ; Mon, 12 Jun 2006 17:47:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32679-08 for ; Mon, 12 Jun 2006 17:47:50 -0400 (EDT) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.206]) by menubar.gnome.org (Postfix) with ESMTP id 93D3F3B02C1 for ; Mon, 12 Jun 2006 17:47:50 -0400 (EDT) Received: by wx-out-0102.google.com with SMTP id h26so956318wxd for ; Mon, 12 Jun 2006 14:47:02 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:subject:from:to:content-type:date:message-id:mime-version:x-mailer:sender; b=YVJmmmTJDYAPVWyBcXj8x877np/3myVRslCESpGT8RXV9fhXWO7m4zcVtD0bbIyxzLCNy9G4MxoeR4wKgZZNAmVLfJY4S5Cm99AU8jHeau3kamsPLiBWdw/7luc5fNsqJp4eQk4EpFqLzmMhtWaKSOxclPSl65MK68ngzTNkqNo= Received: by 10.70.103.17 with SMTP id a17mr6909562wxc; Mon, 12 Jun 2006 14:47:02 -0700 (PDT) Received: from to-dhcp26.toronto.redhat.com ( [63.250.163.171]) by mx.gmail.com with ESMTP id h34sm6169771wxd.2006.06.12.14.47.01; Mon, 12 Jun 2006 14:47:01 -0700 (PDT) From: Behdad Esfahbod To: gnome-announce-list@gnome.org Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-Vxzn0OEXLlv9C28CHSps" Date: Mon, 12 Jun 2006 17:46:59 -0400 Message-Id: <1150148819.10765.11.camel@home> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 (2.6.1-1.fc5.2) Sender: Behdad Esfahbod X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.6 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.6 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Subject: vte-0.13.2 released [unstable] X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 21:47:52 -0000 --=-Vxzn0OEXLlv9C28CHSps Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Vte-0.13.2 is available for download at: http://download.gnome.org/sources/vte/0.13/ Vte is GNOME 2's virtual-terminal emulation widget. This is an unstable release. 0.13.2 Bug 344666 =E2=80=93 Problems with *_CFLAGS and *_LDFLAGS in makefiles Patch from Stepan Kasal . Bug 339529 =E2=80=93 gnome-terminal (vte) crashes when detatched window is closed Bug 342549 =E2=80=93 uninitialized var (coverity) Patch from Paolo Borelli. Bug 342082 =E2=80=93 vte_invalidate_region() may check whether terminal is realiazed or not Patch from Kouhei Sutou. Bug 340363 =E2=80=93 vte Cygwin build fixes Patch from Cygwin Ports maintainer Bug 341793 =E2=80=93 vte.h doesn't need to include X11/Xlib.h Patch from Kouhei Sutou Require intltool 0.35.0 to have translations in the dist tarballs. Fix typo which may have been causing things like crashes. Behdad Esfahbod 12 June 2006 --=-Vxzn0OEXLlv9C28CHSps Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEjeDTn+4E5dNTERURAjCvAJ9H07aDShKW/mLQfhNyOaMG1RtYsACgixvW gbPOhTT6IK5+BSx0dCk7844= =JsUT -----END PGP SIGNATURE----- --=-Vxzn0OEXLlv9C28CHSps-- From behdad.esfahbod@gmail.com Mon Jun 12 17:52:44 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id EFA613B02CD for ; Mon, 12 Jun 2006 17:52:43 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00550-05 for ; Mon, 12 Jun 2006 17:52:42 -0400 (EDT) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.196]) by menubar.gnome.org (Postfix) with ESMTP id A2EDA3B016D for ; Mon, 12 Jun 2006 17:52:41 -0400 (EDT) Received: by wx-out-0102.google.com with SMTP id h26so957012wxd for ; Mon, 12 Jun 2006 14:51:44 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:subject:from:to:content-type:date:message-id:mime-version:x-mailer:sender; b=HkVpdki0/g3XkGcHUm613LiH99RNWp83QpOiB04twtI9/oyY5QJs7xgUW9ugXUYWTW0FQESua3SiFes9GpwcHFnulMB+jmu6Frg1gjSTz94Z0WNKazKYJCx/0yCrKVvi+sIhO9793kd+R7hBbKFWLBqlIyo5yetvED1gx6HIjnc= Received: by 10.70.36.1 with SMTP id j1mr6891335wxj; Mon, 12 Jun 2006 14:44:52 -0700 (PDT) Received: from to-dhcp26.toronto.redhat.com ( [63.250.163.171]) by mx.gmail.com with ESMTP id h18sm3879342wxd.2006.06.12.14.44.50; Mon, 12 Jun 2006 14:44:51 -0700 (PDT) From: Behdad Esfahbod To: Pango Release Lists , gtk-app-devel-list@gnome.org, gtk-devel-list@gnome.org, gtk-i18n-list@gnome.org, gtk-list@gnome.org Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-HZBsNn3KdPR3jVVwB9gO" Date: Mon, 12 Jun 2006 17:44:37 -0400 Message-Id: <1150148678.10765.8.camel@home> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 (2.6.1-1.fc5.2) Sender: Behdad Esfahbod X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.6 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.6 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: Subject: Pango-1.13.2 released [unstable] X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 21:52:44 -0000 --=-HZBsNn3KdPR3jVVwB9gO Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Pango-1.13.2 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.11/ or http://download.gnome.org/sources/pango/1.13/ 28a6ea9d43c4cd398e7352032f775401 pango-1.13.2.tar.bz2 17d78473c05fece044c6a3b44519b61f pango-1.13.2.tar.gz This is a development release leading up to Pango-1.14.0, which will be released just in time for GNOME-2.16. Notes: * This is unstable development release. While it has had fairly extensive testing, there are likely bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of Pango-1.12. If you have problems, you'll need to reinstall Pango-1.12.x * Bugs should be reported to http://bugzilla.gnome.org. About Pango =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Pango is a library for layout and rendering of text, with an emphasis on internationalization. Pango can be used anywhere that text layout is needed, though most of the work on Pango so far has been done in the context of the GTK+ widget toolkit. Pango forms the core of text and font handling for GTK+-2.x. Pango is designed to be modular; the core Pango layout engine can be used with different font backends. There are three basic backends, with multiple options for rendering with each. - Client side fonts using the FreeType and fontconfig libraries. Rendering can be with with Cairo or Xft libraries, or directly to an in-memory buffer with no additional libraries. - Native fonts on Microsoft Windows. (Optionally using Uniscribe for complex-text handling). Rendering can be done via Cairo or directly using the native Win32 API. - Native fonts on MacOS X, rendering via Cairo. The integration of Pango with Cairo (http://cairographics.org) provides a complete solution with high quality text handling and graphics rendering. Dynamically loaded modules then handle text layout for particular combinations of script and font backend. Pango ships with a wide selection of modules, including modules for Hebrew, Arabic, Hangul, Thai, and a number of Indic scripts. Virtually all of the world's major scripts are supported. As well as the low level layout rendering routines, Pango includes PangoLayout, a high level driver for laying out entire blocks of text, and routines to assist in editing internationalized text. More information about Pango is available from http://www.pango.org/. Pango 1.13.2 depends on version 2.10.0 or newer of the GLib library and version 1.1.2 or newer of the cairo library (if the cairo backend is desired); more information about GLib and cairo can be found at http://www.gtk.org/ and http://cairographics.org/ respectively. Overview of changes between 1.13.1 and 1.13.2 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D * Improved hexbox drawing, and font metrics calculations. * Synthesize italic variants on win32 [Hans Breuer] * New public API: - pango_cairo_show_error_underline - pango_cairo_error_underline_path - pango_font_describe_with_absolute_size * Misc fixes. * Bugs fixed in this release: Bug 326960 =E2=80=93 hex box drawing for win32 and atsui backends of cairo Bug 343717 =E2=80=93 License information in unclear. Bug 343355 =E2=80=93 Add pango_cairo_show_error_underline & pango_cairo_error_underline_path Bug 343966 =E2=80=93 pango Cygwin build fixes Patch from Cygwin Ports maintainer. Bug 343796 =E2=80=93 Italic Chinese character can't be show correctly in Win32. Bug 314114 =E2=80=93 max_x_advance not appropriate for approximate_(char|digit)_width Bug 341138 =E2=80=93 Using TTC font, Gtk2 programs begin to eating big mem= ory and have many cpu usage. Patch from Yong Li. Bug 336153 =E2=80=93 Mark to mark positioning (Lookup Type 6) isn't correc= t when using MarkAttchmentType Patch from Tin Myo Htet. Bug 333984 =E2=80=93 pango_language_from_string improvements Bug 125378 =E2=80=93 Better underline thickness handling Bug 339730 =E2=80=93 Pango needlessly falls back away from a Type 1 font i= nto a TTF font Bug 342562 =E2=80=93 Support absolute sizes in pango_font_description_to/from_string Bug 341922 =E2=80=93 pango should handle more characters as zero width Patch from Roozbeh Pournader Bug 342525 =E2=80=93 With PangoFc and PangoWin32, approximate digit width = is not what it says Bug 342079 =E2=80=93 pangoatsui-private.h missing from release Behdad Esfahbod 12 June 2006 --=-HZBsNn3KdPR3jVVwB9gO Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEjeBFn+4E5dNTERURApTwAJ9OvqbaG1xnQYzGPC9u0WPi30b6ggCfXNvZ oFfMwctzkAaKRETc/0aDRj0= =Wl7j -----END PGP SIGNATURE----- --=-HZBsNn3KdPR3jVVwB9gO-- From ebassi@gmail.com Mon Jun 12 18:16:04 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 959AC3B00A5 for ; Mon, 12 Jun 2006 18:16:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01337-06 for ; Mon, 12 Jun 2006 18:16:03 -0400 (EDT) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.186]) by menubar.gnome.org (Postfix) with ESMTP id E69443B015D for ; Mon, 12 Jun 2006 18:16:02 -0400 (EDT) Received: by nf-out-0910.google.com with SMTP id x37so950087nfc for ; Mon, 12 Jun 2006 15:14:56 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:subject:from:to:cc:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; b=eGvIpFNEWtb7L9J87AK/A8+ENa91duWZBEqSL8uzr9KmNI5+11lkZvmnBmdUhuBBlxyNjlYBw3sh/Am36NkcDakYEh5OSYiVckbEq9XEKnN5svoJJwcDLufW7SXw+2xzT5RpJ43xYvJHTzDB08ykyYlcsfJVZtZALOWrI8eQ7mU= Received: by 10.48.241.20 with SMTP id o20mr5263837nfh; Mon, 12 Jun 2006 15:08:01 -0700 (PDT) Received: from rogue.local ( [86.136.65.180]) by mx.gmail.com with ESMTP id k23sm6896442nfc.2006.06.12.15.08.01; Mon, 12 Jun 2006 15:08:01 -0700 (PDT) From: Emmanuele Bassi To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=UTF-8 Date: Mon, 12 Jun 2006 23:07:59 +0100 Message-Id: <1150150079.5273.10.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.336 tagged_above=-999 required=2 tests=[AWL=0.264, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.336 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: GNOME Utils Subject: [ANNOUNCE] Gnome-utils 2.15.3 - "No, this is not Metacity" X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 22:16:04 -0000 Yeap, you read right: this is release 2.15.3 and this is *not* Metacity - even if we did skip a bit of numbers - but yet another great release of the GNOME Utilities package! Unfortunately, due to time constraints, this release rocks less than what we maintainers expected; nevertheless, it rocks louder and harder than any release done before. So download, sit back with a nice glass of red wine while your compiler of choice churns the sources, and prepare to test new features and to file new bugs. This is an unstable release of gnome-utils, so please be warned that it may cause loss of patience, body hair, teeth and overall sanity; it could also make your life easier. It's up to you to test it and report back any misfeature, bug or feature request. You can download the 2.15.3 release of gnome-utils from the usual place, at: http://download.gnome.org/sources/gnome-utils/2.15/ =================================================================== GNOME Utilities 2.15.3 (June 12th 2006) - "No, it's not Metacity" Baobab * Add a new item in the list window context menu to start scanning a folder. Dictionary * Re-implement the speller widget, to show similar words in case no definition was found. * Use a themable icon Floppy * Nothing Screenshot * Drop deprecated include files (Kristof Vansant, #167098) * Fix compilator warnings * Update launcher description Search Tool * Update launcher description System Log Viewer * Miscellaneous fixes on 64bit platforms (Joe Marcus Clarke, Lin Ma) * Change the default log files list on Solaris (Lin Ma) * Remove empty character from status bar (Lin Ma) * Sort files by ascending order (Lin Ma) * Use `File' instead of `Log' as the first menu (Lin Ma) * Fix the selection offset when copying from a log (Sebastien Bacher) Translations updates: Petr Tomeš (cs), Mindu Dorji (dz), Francisco Javier F. Serrador (es), Iñaki Larrañaga Murgoitio (eu), Ignacio Casal Quinteiro (gl), Ankit Patel (gu), Fabio Marzocca (it), Changwoo Ryu (ko), Fano Rajaonarisoa (mg), Øivind Hoel (nb), Vincent van Adrighem (nl), Theppitak Karoonboonyanan (th), Clytie Siddall (vi), Funda Wang (zh_CN), Lin-Chieh Shangkuan (zh_HK), Lin-Chieh Shangkuan (zh_TW) Ciao, Emmanuele. -- Emmanuele Bassi - Log: http://log.emmanuelebassi.net From kurt@maute.us Mon Jun 12 19:34:25 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 07B863B0150 for ; Mon, 12 Jun 2006 19:34:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03322-07 for ; Mon, 12 Jun 2006 19:34:23 -0400 (EDT) Received: from mta6.srv.hcvlny.cv.net (mta6.srv.hcvlny.cv.net [167.206.4.201]) by menubar.gnome.org (Postfix) with ESMTP id 5040C3B000C for ; Mon, 12 Jun 2006 19:34:23 -0400 (EDT) Received: from [192.168.0.56] (ool-435223b5.dyn.optonline.net [67.82.35.181]) by mta6.srv.hcvlny.cv.net (Sun Java System Messaging Server 6.2-6.01 (built Apr 3 2006)) with ESMTP id <0J0R00G8NSFQ4H00@mta6.srv.hcvlny.cv.net> for gnome-announce-list@gnome.org; Mon, 12 Jun 2006 19:11:51 -0400 (EDT) Date: Mon, 12 Jun 2006 19:11:49 -0400 From: Kurt Maute To: Planner-Dev , Planner , gnome-announce-list@gnome.org Message-id: <1150153909.4619.131.camel@dori> MIME-version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-type: text/plain; charset=UTF-8 Content-transfer-encoding: 8BIT X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.599 tagged_above=-999 required=2 tests=[AWL=0.000, BAYES_00=-2.599] X-Spam-Score: -2.599 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: Subject: Planner v0.14 Released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 23:34:25 -0000 Hi All, Planner v0.14 is now available for download: http://ftp.gnome.org/pub/GNOME/sources/planner/0.14/ What is Planner =============== Planner is the GNOME project management tool. Homepage: http://live.gnome.org/Planner What's New in Planner v0.14 =========================== * FF and SF Predecessors 140561 (Kurt Maute) * Simple priority scheduling (Matteo Nastasi): Use the --enable-simple-priority-scheduling option when building. This feature will allow a high priority task to steal resources from a lower priority task. * View Non-standard working/nonworking days (Matteo Nastasi): In the Gantt view, this feature shows where resources have differences in working and nonworking days when compared to the default calendar. * Resource Usage view canvas interactivity (Alvaro del Castillo): Right clicking on a usage bar or resource pops up an option menu. * Gantt chart misalignment with tree view 128983 (Francisco Moraes) * Summary tasks: work now equals sum of child tasks 305801 (Kurt Maute) * Eliminate effects of resource assignments on summary tasks 151604 (Kurt Maute): Assigning a resource to a summary task now has no effect. * Updated user guide: (Kurt Maute) * View Grid Lines in Gantt view 303374 (Nguyễn Thái Ngọc Duy): Shows horizontal lines in Gantt to help visually line up tasks with Gantt bars. Translators: Vladimir "Kaladan" Petkov (bg) Miloslav Trmac (cs) Hendrik Richter (de) Kostas Papadimas (el) Adam Weinberger (en_CA) David Lodge (en_GB) Francisco Javier F. Serrador (es) Ivar Smolin (et) Larra Murgoitio (eu) Meelad Zakaria (fa) Ilkka Tuohela (fi) Gabor Kelemen (hu) Takeshi AIHANA (ja) Kjartan Maraas (nb) "Last-Translator: \n" (ne) Jan-Willem Harmanny (nl) Afonso Celso Medina (pt_BR) Steve Murphy (rw) Marcel Telka (sk) Данило Шеган (sr) Daniel Nylander (sv) Maxim V. Dziumanenko (uk) Clytie Siddall (vi) Woodman Tuen (zh_TW) -- Kurt Maute From nudrema@gmail.com Mon Jun 12 20:13:02 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 32C693B0009; Mon, 12 Jun 2006 20:13:02 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04226-02; Mon, 12 Jun 2006 20:13:01 -0400 (EDT) Received: from swip.net (mailfe04.swip.net [212.247.154.97]) by menubar.gnome.org (Postfix) with ESMTP id 447933B000C; Mon, 12 Jun 2006 20:13:00 -0400 (EDT) X-T2-Posting-ID: Ee7YIbSG3O5rNcT4cGADretWTWrDEjpwS9FwzyhFhzk= X-Cloudmark-Score: 0.000000 [] Received: from [83.182.30.225] (HELO [10.0.0.13]) by mailfe04.swip.net (CommuniGate Pro SMTP 5.0.8) with ESMTP id 211925446; Tue, 13 Jun 2006 02:11:51 +0200 Message-ID: <448E02C4.2050805@gmail.com> Date: Tue, 13 Jun 2006 02:11:48 +0200 From: =?ISO-8859-1?Q?Steve_Fr=E9cinaux?= User-Agent: Thunderbird 1.5.0.2 (X11/20060522) MIME-Version: 1.0 To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.931 tagged_above=-999 required=2 tests=[AWL=-0.478, BAYES_00=-2.599, SPF_NEUTRAL=1.069, TW_GT=0.077] X-Spam-Score: -1.931 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: gedit-list Subject: ANNOUNCE: gedit 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 00:13:02 -0000 Hi all, gedit 2.15.3 is now available. gedit the official GNOME text editor. homepage: http://live.gnome.org/GeditPlugins * Changes in 2.15.3 ==================== New features and fixes: - New gedit_commands_* API for plugins (Paolo Maggi) - Snippets support for space indentation (Jesse van den Kieboom) - gtk-doc enabled C plugin API documentation (Steve Frcinaux) - Next/Previous menu items (Paolo Maggi) - C/Python plugin skeleton generator (Steve Frcinaux) - Snippets plugin enhancements and fixes (Jesse van den Kieboom) - Misc improvements and bugfixes New and updated translations: - Alexander Shopov (bg) - Ankit Patel (gu) - Clytie Siddall (vi) - Francisco Javier F. Serrador (es) - Kjartan Maraas (nb) - Ignacio Casal Quinteiro (gl) - Jakub Friedl (cs) - Pema Geyleg (dz) - Priit Laes (et) - Theppitak Karoonboonyanan (th) * Download =========== http://ftp.gnome.org/pub/GNOME/sources/gedit/2.15/gedit-2.15.3.tar.gz md5sum: 07a99a6c45fa859a770a86bfa6289acd http://ftp.gnome.org/pub/GNOME/sources/gedit/2.15/gedit-2.15.3.tar.bz2 md5sum: e43046da726b9df3119ff8db00c7f4ad -- Steve http://tw.apinc.org From gnome@nextreality.net Mon Jun 12 23:42:44 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 13DDB3B00E5 for ; Mon, 12 Jun 2006 23:42:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08544-08 for ; Mon, 12 Jun 2006 23:42:42 -0400 (EDT) Received: from brentsmith.name (unknown [64.62.195.122]) by menubar.gnome.org (Postfix) with ESMTP id 7C54A3B0010 for ; Mon, 12 Jun 2006 23:42:42 -0400 (EDT) Received: by brentsmith.name (Postfix, from userid 5001) id 8C64635904; Tue, 13 Jun 2006 03:41:31 +0000 (UTC) Received: from [192.168.1.101] (c-67-176-37-213.hsd1.co.comcast.net [67.176.37.213]) by brentsmith.name (Postfix) with ESMTP id DA11C35901 for ; Tue, 13 Jun 2006 03:41:30 +0000 (UTC) Message-ID: <448E33F5.5080804@nextreality.net> Date: Mon, 12 Jun 2006 21:41:41 -0600 From: Brent Smith User-Agent: Thunderbird 1.5.0.2 (X11/20060522) MIME-Version: 1.0 To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Bogosity: Unsure, tests=bogofilter, spamicity=0.500000, version=0.94.4 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.577 tagged_above=-999 required=2 tests=[AWL=0.022, BAYES_00=-2.599] X-Spam-Score: -2.577 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:35 -0400 Subject: Yelp 2.15.3 Released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 03:42:44 -0000 Yelp 2.15.3 is now available from an FTP mirror near you (actually, you might have to wait a little bit for it to appear). Yelp is the program that appears from the mist when you click the Help button in your favorite GNOME application. This release contains many improvements over the last development release. Read on for details... Changes in 2.15.3: ------------------ * New debugging infrastructure (Brent Smith) * Add support for translated man pages, fixes #343275 (Brent Smith) * Support private instances with -p (Bug #337540) (Don Scorgie) * Switch from Bonobo to DBUS Activation (Don Scorgie) * Change 'Multimedia' category to 'Sound & Vision' for (Don Scorgie) consistency (bug #332182) * Don't auto-expand sections in left pane (bug #167070) (Don Scorgie) * Don't use mozilla's internal string API, and drop (Christian Persch) support for gecko 1.7 and non-toolkit geckos. Bug #343950. * Add a deep history framework (bug #67966) (Don Scorgie) * Make *Notes into hyperlinks (bug #343524) (Don Scorgie) * Make monospace fonts change size when asked (Don Scorgie) (bug #344003) * Escape & characters when encountered in info (Don Scorgie) processing (fixes #343372) * more helpful message when there are no search results(Frederic Peters) (fixes #341798) * search results message can be translated (Frederic Peters) (fixes #341689) * limit search results to 20 items (fixes #341434) (Frederic Peters) * cleanup the man_secthash hash table when finished (Brent Smith) * don't increment ptr, fixes #341827 (Don Scorgie) * Fix a bunch of memory leaks (Don Scorgie) * Fix an invalid write, #342151 (Don Scorgie) * NULL checking. Suppresses critical warnings on some (Don Scorgie) info pages * If an info file doesn't exist, default to showing (Don Scorgie) the man page, fixes #341627 * Fix loading of info pages from subdirectories (emacs) (Don Scorgie) * Update intltool requirement to 0.35.0 (Brent Smith) * Reduce strictness of searching for menus in info pages (Don Scorgie) * Updated translations: Jakub Friedl (cs) Mindu Dorji (dz) Francisco Javier F. Serrador (es) Priit Laes (et) Iaki Larraaga Murgoitio (eu) Ankit Patel (gu) Raivis Dejus (lv) Kjartan Maraas (nb) Theppitak Karoonboonyanan (th) Pablo Saratxaga (wa) http://ftp.gnome.org/pub/GNOME/sources/yelp/2.14/ Share and enjoy. Regards, -- Brent Smith IRC: smitten From nudrema@gmail.com Tue Jun 13 04:23:41 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F14743B000C; Tue, 13 Jun 2006 04:23:40 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16049-10; Tue, 13 Jun 2006 04:23:40 -0400 (EDT) Received: from swip.net (mailfe11.swipnet.se [212.247.155.65]) by menubar.gnome.org (Postfix) with ESMTP id 2C63B3B000A; Tue, 13 Jun 2006 04:23:39 -0400 (EDT) X-T2-Posting-ID: Ee7YIbSG3O5rNcT4cGADretWTWrDEjpwS9FwzyhFhzk= X-Cloudmark-Score: 0.000000 [] Received: from [83.182.30.69] (HELO [10.0.0.13]) by mailfe11.swip.net (CommuniGate Pro SMTP 5.0.8) with ESMTP id 44536455; Tue, 13 Jun 2006 10:22:28 +0200 Message-ID: <448E75C1.6030808@gmail.com> Date: Tue, 13 Jun 2006 10:22:25 +0200 From: =?ISO-8859-1?Q?Steve_Fr=E9cinaux?= User-Agent: Thunderbird 1.5.0.2 (X11/20060522) MIME-Version: 1.0 To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.861 tagged_above=-999 required=2 tests=[AWL=-0.543, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_NEUTRAL=1.069, TW_GT=0.077] X-Spam-Score: -1.861 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:35 -0400 Cc: gedit-list Subject: ANNOUNCE: gedit 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 08:23:41 -0000 Hi all, gedit 2.15.3 is now available. gedit the official GNOME text editor. homepage: http://www.gnome.org/projects/gedit * Changes in 2.15.3 ==================== New features and fixes: - New gedit_commands_* API for plugins (Paolo Maggi) - Snippets support for space indentation (Jesse van den Kieboom) - gtk-doc enabled C plugin API documentation (Steve Frcinaux) - Next/Previous menu items (Paolo Maggi) - C/Python plugin skeleton generator (Steve Frcinaux) - Snippets plugin enhancements and fixes (Jesse van den Kieboom) - Misc improvements and bugfixes New and updated translations: - Alexander Shopov (bg) - Ankit Patel (gu) - Clytie Siddall (vi) - Francisco Javier F. Serrador (es) - Kjartan Maraas (nb) - Ignacio Casal Quinteiro (gl) - Jakub Friedl (cs) - Pema Geyleg (dz) - Priit Laes (et) - Theppitak Karoonboonyanan (th) * Download =========== http://ftp.gnome.org/pub/GNOME/sources/gedit/2.15/gedit-2.15.3.tar.gz md5sum: 07a99a6c45fa859a770a86bfa6289acd http://ftp.gnome.org/pub/GNOME/sources/gedit/2.15/gedit-2.15.3.tar.bz2 md5sum: e43046da726b9df3119ff8db00c7f4ad -- Steve http://tw.apinc.org From s.marechal@jejik.com Tue Jun 13 19:55:27 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 44B8A3B00C7 for ; Tue, 13 Jun 2006 19:55:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10258-05 for ; Tue, 13 Jun 2006 19:55:25 -0400 (EDT) Received: from smtp-vbr15.xs4all.nl (smtp-vbr15.xs4all.nl [194.109.24.35]) by menubar.gnome.org (Postfix) with ESMTP id 1E2F43B00D4 for ; Tue, 13 Jun 2006 19:55:24 -0400 (EDT) Received: from [192.168.1.2] (a82-92-145-91.adsl.xs4all.nl [82.92.145.91]) (authenticated bits=0) by smtp-vbr15.xs4all.nl (8.13.6/8.13.6) with ESMTP id k5DNsOqr025232 for ; Wed, 14 Jun 2006 01:54:25 +0200 (CEST) (envelope-from s.marechal@jejik.com) Message-ID: <448F504E.1060904@jejik.com> Date: Wed, 14 Jun 2006 01:54:54 +0200 From: Sander Marechal User-Agent: Thunderbird 1.5.0.2 (X11/20060522) MIME-Version: 1.0 To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by XS4ALL Virus Scanner X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.557 tagged_above=-999 required=2 tests=[AWL=0.042, BAYES_00=-2.599] X-Spam-Score: -2.557 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Subject: Gnome Hearts 0.1 Release Announcement X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: user and developer discussion for the gnome hearts game List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 23:55:27 -0000 Gnome Hearts 0.1 Release Announcement ------------------------------------- Lone Wolves [1] is happy to announce the release of Gnome Hearts version 0.1, an implementation of the classic hearts card game for the Gnome desktop. Gnome Hearts 0.1 is the first release since the project's inception on April 30, earlier this year. Gnome Hearts features configurable rule-sets such as Omnibus and Spot Hearts besides the standard rules. The game also has multiple computer players that are implemented in the Lua [2] scripting language. This allows for easy modification of the players. Also, the game can use any deck of cards installed for the Gnome Games package. [1] http://www.jejik.com [2] http://www.lua.org Downloading and installing Gnome Hearts --------------------------------------- Gnome Hearts can be downloaded from the project website at http://www.gnome-hearts.org/download or directly using this link [3]. At the moment only a .tar.gz source package is available. Binaries for various distributions will appear at a later date. Keep an eye out on the download page and the mailing list [4] for the announcements. In order to build the .tar.gz you need to have libgnomeui2.0, liblua50, liblualib50 and libglade2 plus their respective headers installed. See the README file in the package for more details. [3] http://www.jejik.com/files/gnome-hearts/gnome-hearts-0.1.tar.gz [4] http://lists.jejik.com/cgi-bin/mailman/listinfo/hearts Acknowledgments --------------- Many thanks to the people that contributed to this first release and those who cast a critical glance over the package so we could fix many issues before our first release. -- Sander Marechal http://www.gnome-hearts.org From gjc@inescporto.pt Tue Jun 13 20:28:23 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BD25B3B000E for ; Tue, 13 Jun 2006 20:28:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11220-02 for ; Tue, 13 Jun 2006 20:28:21 -0400 (EDT) Received: from animal.inescn.pt (correio.inescn.pt [194.117.24.9]) by menubar.gnome.org (Postfix) with ESMTP id A61433B00C8 for ; Tue, 13 Jun 2006 20:28:20 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by animal.inescn.pt (8.13.6/8.13.6/7) with ESMTP id k5E0RKZp008488; Wed, 14 Jun 2006 01:27:20 +0100 (WEST) Received: from pong.inescporto.pt (pong.inescn.pt [194.117.26.74]) by animal.inescn.pt (8.13.6/8.13.6/5) with ESMTP id k5E0Qv9X008443; Wed, 14 Jun 2006 01:26:57 +0100 (WEST) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by pong.inescporto.pt (Postfix) with ESMTP id A69A5119284; Wed, 14 Jun 2006 01:23:55 +0100 (WEST) From: "Gustavo J. A. M. Carneiro" To: PyGTK Content-Type: text/plain Date: Wed, 14 Jun 2006 01:26:56 +0100 Message-Id: <1150244816.5417.6.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at inescporto.pt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.351 tagged_above=-999 required=2 tests=[AWL=-0.040, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001, TW_GD=0.077, TW_GT=0.077] X-Spam-Score: -2.351 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: gnome-announce-list@gnome.org Subject: ANNOUNCE: PyGTK 2.9.1 (unstable) X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 00:28:23 -0000 I am pleased to announce version 2.9.1 of the Python bindings for GTK. The new release is available from ftp.gnome.org and its mirrors as soon as its synced correctly: http://ftp.gnome.org/pub/GNOME/sources/pygtk/2.9/pygtk-2.9.1.tar.gz This is an unstable release and should be used with caution. It requires either GTK+ 2.8.x or GTK+ >= 2.9.3. [ Note: this release also fixes a build problem for the recently released GnomePythonDesktop 2.15.3. ] Blurb: GTK is a toolkit for developing graphical applications that run on systems such as Linux, Windows and MacOS X. It provides a comprehensive set of GUI widgets, can display Unicode bidi text. It links into the Gnome Accessibility Framework through the ATK library. PyGTK provides a convenient wrapper for the GTK+ library for use in Python programs, and takes care of many of the boring details such as managing memory and type casting. When combined with PyORBit and gnome-python, it can be used to write full featured Gnome applications. Like the GTK+ library itself PyGTK is licensed under the GNU LGPL, so is suitable for use in both free software and proprietary applications. It is already in use in many applications ranging from small single purpose scripts up to large full features applications. pygtk-2.9.0 13-june-2006 - Allow gtk.TreeSortable.set_default_sort_func callback to be None (Johan, Patrick O'Brien) - Add API to unset the g_log handlers (#323786, Johan) - Allow the gtk module to be imported without DISPLAY (#316877, Johan) - Code cleanup and fixes considering Coverity reports (Johan) - Add codegen support for const-Object return type (#169204, Gustavo) - Add codgen support for unblocking threads around method calls (Gustavo) - Wrap gdk_event_handler_set (Johan) - Codegen reverse wrapper bug fix (#340162, Yevgen Muntyan) - Wrap GdkRegion (John Ehresman) - Add codegen support for ignore-type statement in override (Johan) - Add conditional support for gtk+ 2.10 API, especially printing (Johan, Finlay, Gustavo) - Complete the support for gtk.Container virtual methods (#341641, Gustavo) - Fix misc. reference leaks (Finlay, Gustavo) - Allow None parameter in pangocairo.CairoContext.set_font_options (Finlay) - Complete the support for gtk.CellRenderer virtual methods (#339431, Gustavo) - IconView.set_cursor method params 'cell' and 'start_editing' made optional (#343039, Ross Burton, Finlay) - Wrap a few more gdk_cairo_* methods (Finlay) - Add a 'selection' field to gdk.OWNER_CHANGE events (Finlay) - Allow None in gtk.Entry.set_inner_border() (Finlay) - gtk.Clipboard rich text methods (Finlay) - Add gtk.MessageDialog.set_image() (Finlay) - Wrap gtk_link_button_set_uri_hook() (Finlay) - Allow None in gtk.Widget.input_shape_combine_mask() (Finlay) - Allow gtk.LinkButton() constructor to optionally receive a label (Finlay) - Allow None in gtk.Label.set_mnemonic_widget() (Johan) - Wrap a bunch of X11 specific gdk methods (Gustavo) - Add gtk.SizeGroup.get_widgets() (Finlay) - Wrap gtk_style_lookup_color() (Finlay) - Wrap a bunch of gtk treeview grid lines methods (Finlay) - Better Drag and drop API support (Finlay) - Add -I option to codegen (defs search path) (Gustavo) PyGTK requires GTK+ >= 2.8.0 and Python >= 2.3.5 to build. Bug reports, as always, should go to Bugzilla; check out http://pygtk.org/developer.html and http://pygtk.org/feedback.html for links to posting and querying bug reports for PyGTK. -- Gustavo J. A. M. Carneiro The universe is always one step beyond logic From ebassi@gmail.com Tue Jun 13 20:32:58 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A8A4B3B00C8 for ; Tue, 13 Jun 2006 20:32:58 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11365-03 for ; Tue, 13 Jun 2006 20:32:57 -0400 (EDT) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.184]) by menubar.gnome.org (Postfix) with ESMTP id D60A23B000E for ; Tue, 13 Jun 2006 20:32:56 -0400 (EDT) Received: by nf-out-0910.google.com with SMTP id y38so3928nfb for ; Tue, 13 Jun 2006 17:31:56 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:subject:from:to:cc:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; b=oUq+Y9uyXse5jWbXHN+a1hlPNgEB4SSPDgg8dWXx+1GsvRNsktrt4C4g3H5vMlt23VjpIETSUuVlhG6R9+5WQPa1f/yUs5fj1vO2K5m9rUq0MSBz2x1DxlwhH3zgxxsgbcw07IUW4AZgu+4ffuEd58TvM5NOX7EJyv1wtcIGIDA= Received: by 10.48.225.16 with SMTP id x16mr53191nfg; Tue, 13 Jun 2006 17:31:56 -0700 (PDT) Received: from ?192.168.1.70? ( [86.136.65.180]) by mx.gmail.com with ESMTP id l32sm22126nfa.2006.06.13.17.31.56; Tue, 13 Jun 2006 17:31:56 -0700 (PDT) From: Emmanuele Bassi To: gnome-announce-list@gnome.org Content-Type: text/plain Date: Wed, 14 Jun 2006 01:31:50 +0100 Message-Id: <1150245110.28862.8.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.337 tagged_above=-999 required=2 tests=[AWL=0.263, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.337 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: gnome-utils-list@gnome.org Subject: [ANNOUNCE] Gnome-utils 2.15.4 - "Ain't that another brown paper bag?" X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 00:32:58 -0000 Good news everyone! As last gnome-utils release contained a glitch that broke the build, here's a Brown Paper Bag Release ready: gnome-utils 2.15.4. Many thanks to Matthias Clasen and Fryderyk Dziarmagowski for finding the glitch. As usual, you can download the sources from here: http://download.gnome.org/sources/gnome-utils/2.15/ Enjoy, and remember to file any bug you might find! =================================================================== GNOME Utilities 2.15.4 (June 14th 2006) - "Ain't that another brown paper bag?" * "Brown paper bag" release Baobab * Nothing Dictionary * Remove wrong headers from the build (Matthias Clasen, #344773) Floppy * Nothing Screenshot * Fix included files Search Tool * Nothing System Log Viewer * Nothing Translations updates: Francisco Javier F. Serrador (es), Ankit Patel (gu) Ciao, Emmanuele. From cworth@cworth.org Wed Jun 14 12:07:42 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 50C153B03B2 for ; Wed, 14 Jun 2006 12:07:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05531-07 for ; Wed, 14 Jun 2006 12:07:31 -0400 (EDT) Received: from theworths.org (cworth.org [217.160.249.188]) by menubar.gnome.org (Postfix) with ESMTP id D79923B045D for ; Wed, 14 Jun 2006 12:07:30 -0400 (EDT) Received: (qmail 20098 invoked from network); 14 Jun 2006 12:06:35 -0400 Received: from localhost (HELO raht.cworth.org) (127.0.0.1) by localhost with SMTP; 14 Jun 2006 12:06:35 -0400 Date: Wed, 14 Jun 2006 09:01:56 -0700 Message-ID: <87pshbd8uj.wl%cworth@cworth.org> From: Carl Worth To: cairo-announce@cairographics.org Subject: cairo snapshot 1.1.8 now available User-Agent: Wanderlust/2.14.0 (Africa) Emacs/21.4 Mule/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: multipart/signed; boundary="pgp-sign-Multipart_Wed_Jun_14_09:01:49_2006-1"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.441 tagged_above=-999 required=2 tests=[AWL=-0.054, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, TW_XC=0.077] X-Spam-Score: -2.441 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 12:46:39 -0400 Cc: gnome-announce-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 16:07:42 -0000 --pgp-sign-Multipart_Wed_Jun_14_09:01:49_2006-1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable A new cairo snapshot 1.1.8 is now available from: http://cairographics.org/snapshots/cairo-1.1.8.tar.gz which can be verified with: http://cairographics.org/snapshots/cairo-1.1.8.tar.gz.sha1 ad660fe7bfede1882f4b81798e3e0ef8fe7ecb9b cairo-1.1.8.tar.gz http://cairographics.org/snapshots/cairo-1.1.8.tar.gz.sha1.asc (signed by Carl Worth) Additionally, a git clone of the source tree: git clone git://git.cairographics.org/git/cairo will include a signed 1.1.8 tag which points to a commit named: dd859b8736bb4d1bcf3ed78d0bd1f72a7aad9ca9 which can be verified with: git verify-tag 1.1.8 and can be checked out with a command such as: git checkout -b build 1.1.8 This is the fourth in a series of snapshots working toward the 1.2 release of cairo. At this point, all major features of the 1.2 release are in place, leaving just a few bug fixes left. In particular, there will be no additional API changes between this 1.1.8 snapshot and the 1.2 release. The announcement for 1.1.6 mentioned several API changes being considered. Only one of these changes was actually implemented (set_dpi -> fallback_resolution). This change does introduce one source-level incompatibility with respect to previous 1.1.x snapshots, so see below for details. What is cairo =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Cairo is a 2D graphics library with support for multiple output devices. Currently supported output targets include the X Window System, win32, and image buffers. Experimental backends include OpenGL (through glitz), Quartz, XCB, PostScript and PDF file output. Cairo is designed to produce consistent output on all output media while taking advantage of display hardware acceleration when available (for example, through the X Render Extension). The cairo API provides operations similar to the drawing operators of PostScript and PDF. Operations in cairo including stroking and filling cubic B=E9zier splines, transforming and compositing translucent images, and antialiased text rendering. All drawing operations can be transformed by any affine transformation (scale, rotation, shear, etc.). Cairo has been designed to let you draw anything you want in a modern 2D graphical user interface. At the same time, the cairo API has been designed to be as fun and easy to learn as possible. If you're not having fun while programming with cairo, then we have failed somewhere---let us know and we'll try to fix it next time around. Cairo is free software and is available to be redistributed and/or modified under the terms of either the GNU Lesser General Public License (LGPL) version 2.1 or the Mozilla Public License (MPL) version 1.1. Where to get more information about cairo =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D The primary source of information about cairo is: http://cairographics.org/ The latest releases of cairo can be found at: http://cairographics.org/releases Snapshots of in-development versions of cairo: http://cairographics.org/snapshots The programming manual for using cairo: http://cairographics.org/manual Mailing lists for contacting cairo users and developers: http://cairographics.org/lists Answers to some frequently asked questions about cairo: http://cairographics.org/FAQ What's new in 1.1.8 compared to 1.1.6 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ** API Change ** ---------------- According to the plan mentioned in the 1.1.6 notes, one source-level incompatible change has been implemented. The following three functions have been removed from cairo's API: cairo_pdf_surface_set_dpi cairo_ps_surface_set_dpi cairo_svg_surface_set_dpi and in their place the following function has been added: cairo_surface_set_fallback_resolution The signature and semantics of the function remains the same, so it is a simple matter of changing the name of the function when calling it. As a transition mechanism, this snapshot will (on many systems) build to include the old symbols so that code previously compiled will still run. However, all source code using the old names must be updated before it will compile. And the upcoming 1.2 release is not anticipated to include the old symbols. Finally, it should be pointed out that the old symbols never existed in the supported API of any stable release of cairo. (In the stable 1.0 releases the PDF, PS, and SVG backends were advertised as experimental and unstable.) And, as always, cairo continues to maintain source and binary compatibility between major releases. So applications compiled against supported backends in a stable release of cairo (1.0.4 say) will continue to compile and run without modification against new major releases (1.2.0 say) without modification. API additions ------------- The following new functions have been added to cairo's API: cairo_surface_get_content cairo_debug_reset_static_data cairo_image_surface_get_data cairo_image_surface_get_format cairo_image_surface_get_stride cairo_win32_font_face_create_for_hfont New, backend-specific pkg-config files -------------------------------------- In addition to the original cairo.pc file, cairo will also now install a pkg-config files for each configured backend, (for example cairo-pdf.pc, cairo-svg.pc, cairo-xlib.pc, cairo-win32.pc, etc.) this also includes optional font backends (such as cairo-ft.pc) and the optional png functionality (cairo-png.pc). These new pkg-config files should be very convenient for allowing cairo-using code to easily check for the existing of optional functionality in cairo without having to write complex rules to grub through cairo header files or the compiled library looking for symbols. Printing backend (PS, PDF, and SVG) ----------------------------------- Improving the quality of the "printing" backends has been a priority of the development between cairo 1.1.6 and cairo 1.1.8. The big improvement here is in the area of text output. Previously, at best, text was output as paths without taking advantage of any font support available in the output file format. Now, at the minimum text paths will be shared by using type3 fonts (for PS and PDF---and similarly, defs for SVG). Also, if possible, type3 and truetype fonts will be embedded in PostScript and PDF output. There are still some known bugs with this, (for example, selecting text in a cairo-generated PDF file with an embedded truetype font does not work). So there will be some more changes in this area before cairo 1.2, but do try test this feature out as it exists so far. Many thanks to Kristian H=F8gsberg for the truetype and type1 font embedding. win32 backend ------------- Performance improvements by preferring GDI over pixman rendering when possi= ble. Fixes for text rendering. xlib backend ------------ Fix potentially big performance bug by making xlib's create_similar try harder to create a pixmap of a depth matching that of the screen. Bug fixes --------- Among various other fixes, the following bugs listed in bugzilla have been fixed: Bug 2488: Patch to fix pixman samping location bug (#2488). https://bugs.freedesktop.org/show_bug.cgi?id=3D2488 Bug 4196: undef MIN an MAX before defining to avoid duplicate definition https://bugs.freedesktop.org/show_bug.cgi?id=3D4196 Bug 4723: configure.in: Fix m4 quoting when examining pkg-config version https://bugs.freedesktop.org/show_bug.cgi?id=3D4723 Bug 4882: Flag Sun's X server has having buggy_repeat. https://bugs.freedesktop.org/show_bug.cgi?id=3D4882 Bug 5306: test/pdf2png: Add missing include of stdio.h https://bugs.freedesktop.org/show_bug.cgi?id=3D5306 Bug 7075: Fix make clean to remove cairo.def https://bugs.freedesktop.org/show_bug.cgi?id=3D7075 (Many thanks to Behdad Esfahbod for helping us track down and fix many of these.) Detailed list of changes since 1.1.6 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Tag '1.1.8' created by Carl Worth at 2006-06-14 16:17 -= 0700 cairo 1.1.8 snapshot -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEkCju6JDdNq8qSWgRAjdQAJ9jjY8MwIcyhpSxf8Yn50izT6wXRwCeJN3x XKToq1aoRwjXc1HujBI0wVo=3D =3DtwxK -----END PGP SIGNATURE----- Changes since 1.1.6: Behdad Esfahbod: Bug 7075: Fix make clean to remove cairo.def Move cairo.pc into src/. Add backend-specific pkg-config files. Rename cairo-wideint.h to cairo-wideint-private.h. Bertram Felgenhauer: Patch to fix pixman samping location bug (#2488). Bug 4723: configure.in: Fix m4 quoting when examining pkg-config vers= ion Brian Cameron: Bug 4882: Flag Sun's X server has having buggy_repeat. Carl Worth: Increment CAIRO_VERSION to 1.1.7 after making the 1.1.6 snapshot Revert "pdf2png: Use new poppler_page_render to render directly throu= gh cairo." Don't build pdf2svg until we start depending on newer poppler ROADMAP: non-substantive changes Add select-font-face test for whosing multiple faces at once. Fix typo in select-font-face.c and update reference images PS: Remove stale comment (the stuff TODO is done already) PS: Move type 3 support out into cairo-ps-font.c PS: Put functions in more logical order. Rename cairo-ps-font to cairo-scaled-font-subsets (file names only) Generalize font subsetting code in cairo-scaled-font-subsets for use = by more than just PS backend Fix cairo_output_stream_destroy to do nothing on nil stream objects. Tweak names to match those of cairo-scaled-font-subsets SVG: Discard custom font subsetting in favor of sharing cairo-scaled-= font-subsets Add documentation for the _cairo_scaled_font_subsets interface. Fix memory leak in _cairo_scaled_font_subsets_foreach PDF: Use cairo_pdf_resource_t more consistently. PDF: Fold (unused) cairo_pdf_document_t into cairo_pdf_surface_t Change scaled_font_subsets_callback to have return type of void. PS: Fix arguments to setcachedevice PS: Remove the fallback case from _cairo_ps_surface_show_glyphs PDF: Use consistent style for typedef struct and macro naming. PDF: Move Resources dictionary up from Page objects to Pages object. PDF: Add Type3 font support to PDF output. pixman: Fix build to enable warnings again pixman: Add default case to quiet compiler warning pixman: Remove unused code to quiet compiler warnings ROADMAP: Note that PDF type 3 font support is done PDF: Fix broken per-page sizes in PDF output. xlib: Rename surface->format to surface->xrender_format to avoid conf= usion xlib: Style cleanups for _cairo_xlib_surface_create_similar PDF: Squelch a couple of bogus "may be used uninitialized" warnings. Move prototype of cairo_debug_reset_static_data from uninstalled cair= o-debug.h to cairo.h Codify 1.0 behavior of cairo_set_line_width as a feature, not a bug. SVG: Fix for line-width-scale New test: dash-scale PDF: Rename pdf_stroke_t to pdf_path_into_t for future sharing with f= ill PDF: Share path callbacks for fill and stroke. Clarify the documentation for cairo_set_dash PDF: Move dash operator before path construction operators. ROADMAP: Note that the cairo_set_line_width issue is resolved Typo fixes cairo-xlib-test: Rename cairo_test_xlib function prefix to cairo_xlib= _test PDF: Add new, private test function: cairo_pdf_test_force_fallbacks Add new fallback-resolution test for bug in cairo_pdf_surface_set_dpi New API: Add new function cairo_surface_get_content Note the changed semantics of cairo_surface_set_device_offset New API: Add cairo_image_surface_get_{data,format,stride} Move rectangle functions to new cairo-rectangle.c Remove extraneous whitespace from "blank" lines. Remove trailing whitespace from lines that look like comments. Remove trailing whitespace from lines with a single brace. Remove all remaining trailing whitespace. Remove initial, final, and duplicate blank lines. CODING_STYLE: Add notes on avoiding trailing whitespace. CODING_STYLE: Fix misspellings. Fix bogus cairo_rectangle_fixed_t to be cairo_rectangle_int16_t. Remove CAIRO_{MIN,MAX}SHORT which did not distinguish signed vs. unsi= gned. win32: Add conditional definitions for INT16_{MIN,MAX} and UINT16_MAX= now that we use them. Fix MAX vs. MIN bug introduced with rename away from CAIRO_MINSHORT Change all instances of UINT16_MAX to INT16_MAX to avoid new bug. Remove debugging "prints" of images from test/device-offset.c Add new test get-group-target (currently failing with paginated). Fix bug in get-group-target (in the test itself) letting it now pass. Rename ft-text-vertical-layout reference image according to standard = convention. Ignore ft-text-vertical-layout binary New API: Replace cairo_{ps,pdf,svg}_set_dpi with new cairo_surface_se= t_fallback_resolution. Add REPLACED_BY macros to help porting to new set_fallback_resolution Rename device_{x,y}_offset to {x,y}_device_offset for better consiten= cy/grepability doc: SGML template churn Change {x,y}_device_offset values to a device_transform matrix. Hook up device scaling so fallback_resolution starts working. Add text and stroke to falback-resolution test (showing bugs in each). Fix line width for stroking with a device_scale. Fix font size when drawing text with a device_scale. Add cairo_{ps,svg}_test_force_fallbacks so tests can force fallbacks. Test PS and SVG backends in addition to PDF in test/fallback-resoluti= on. Clarify that fallback_resolution acts on a per-page granularity. Don't create a new scaled_font if there's a device_offset but no devi= ce_scale. Change _cairo_meta_surface_get_extents to return a bounded size. ROADMAP: Note that cairo_surface_set_fallback_resolution is in place = now. Add cairo-ps-test.h and cairo-svg-test.h to Makefile.am Add aliases for deprecated cairo_{pdf,ps,svg}_surface_set_dpi Change return type of _cairo_scaled_glyph_lookup to allow UNSUPPORTED. PS, PDF: Re-organize handling of bitmapped fonts to avoid invalid out= put. Merge branch 'truetype-subsetting' into cairo Merge branch 'type1-subsetting' into cairo Add new zero-alpha test to demonstrate (X server?) bug found by Paul = Giblock test/zero-alpha: Drop REPS from 100 to 10 for a faster test. Bug 4196: undef MIN an MAX before defining to avoid duplicate definit= ion ft: If glyph->format is not OUTLINE use _render_glyph_bitmap to coerc= e to a bitmap ROADMAP: Update with PDF bugs from minefield test. Slip non-1.0 regre= ssions off of 1.2. Add zero-alpha reference image to Makefile.am for the sake of make di= st PS PDF: Update reference images due to truetype subsetting Update refefence images due to pattern source shift. Update version to 1.1.8 and add notes to NEWS file. Christian Biesinger: Make BeOS compile again Add missing reference images to EXTRA_DIST Distribute make-html.pl Add "html" Makefile target to run make-html.pl Dom Lachowicz: Bug 5306: test/pdf2png: Add missing include of stdio.h Emmanuel Pacaud: SVG: Sets something sane in width and height if acquire source image = fails. SVG: Remove special case for unclipped CLEAR and SOURCE in paint when SVG: Fix cairo_svg_surface_restrict_to_version. Use CLEAR operator for initialisation of similar surface with a trans= parent color. SVG: Add reference images for fill-and-stroke-alpha. SVG: Implementation of glyph cache SVG: Emit glyphs at the beginning of defs section. SVG: Sets fallback resolution when compositing a meta surface. Jeff Muizelaar: Only destroy scaled glyphs if they are not in the cache. Jinghua Luo: glitz: Don't hardcode content type when initializing cairo surface Merge branch 'master' of git+ssh://jinghua@git.cairographics.org/git/= cairo Add ft-text-vertical-layout test case for vertical layout. freetype: Fix for test case ft-text-vertial-layout. Make image-*-ref.png image as reference image. freetype: Ignore global advance unconditionally. freetype: rework _transform_glyph_bitmap. ignore FC_MATRIX in font pattern. freetype: build fix for _transform_glyph_bitmap. xlib: bugfix for #7172. freetype: Return an error if the glyph format isn't outline or bitmap ROADMAP: Mark bugs FC_ADVANCE and _transform_glyph_bitmap as fixed. Kristian H=C3=B8gsberg: Documentation fixes (cairo_font_create -> cairo_scaled_font_create). Merge branch 'master' of git://git.freedesktop.org/git/cairo Update pdf font emit code to try to emit a truetype subset before typ= e3. Output pdf dicts for truetype subset fonts. Hook _cairo_truetype_subset_init() up to existing truetype subset cod= e. Switch to using Tm for text positioning and scale type3 fonts to unit= size. Add support for truetype subset to ps backend. Print out ps comment in the truetype emit code and update type3 ps co= mment. Remember to destroy cairo_pdf_ft_font_t once we've generated the subs= et. Set libcairo_font_subset_sources for ps, pdf, and svg backends. Remember to call _cairo_truetype_subset_fini() after outputting subse= t. Pull in type1 subset code from the cvs repo it was sitting in. Add code to emit type1 dicts to the pdf backend. Use RD and ND for delimiting glyph data instead of -| and |-. Only use the word wrap stream when emitting paths. Make ps surface use type1 subset code. Track glyph subset indices and use them in the output. Look for /-| or /RD tokens to determine the charstring delimiter toke= ns. Consolidate a few arrays into a array of structs. Remember to call cairo_type1_font_subset_destroy(). Handle seac charstring commands correctly. Clarify licensing of float formatting code. Remove cairo_public from _cairo_lzw_compress() definition. Robert O'Callahan: [xlib] Have create_similar try harder to create the right surface Stuart Parmenter: [win32] Allow for creating a font from a HFONT [win32] implement win32 show_glyphs [win32] fix win32_show_glyphs glyph offsets Tim Mooney: bug #6890: fix the signature for main() in pthread-show-text Vladimir Vukicevic: [xlib] implement _cairo_xlib_surface_show_glyphs [xlib] only do glyph extents computation if non-solid source. [win32] Add SHADEBLENDCAPS and SB_NONE definitions for older SDKs [win32] Add GdiFlush() calls after DIB creation, as per MSDN docs [win32] GDI is nearly always faster than pixman; use it whenever poss= ible CAIRO_SCALED_FONT_TYPE_* -> CAIRO_FONT_TYPE_* Whitespace fix Define kCGBitmapByteOrder32Host for when the SDK doesn't define it Zakharov Mikhail: pixman: fix compilation on HP-UX 11.11 --- .gitignore | 1=20 CODING_STYLE | 22=20 Makefile.am | 8=20 NEWS | 132 + RELEASING | 2=20 ROADMAP | 72=20 configure.in | 68=20 doc/public/Makefile.am | 1=20 doc/public/tmpl/cairo-pdf.sgml | 7=20 doc/public/tmpl/cairo-ps.sgml | 7=20 doc/public/tmpl/cairo-status.sgml | 7=20 doc/public/tmpl/cairo-svg.sgml | 7=20 doc/tutorial/src/include/cairo-tutorial-gtk.h | 8=20 doc/tutorial/src/include/cairo-tutorial-pdf.h | 4=20 doc/tutorial/src/include/cairo-tutorial-png.h | 4=20 doc/tutorial/src/include/cairo-tutorial-xlib.h | 2=20 doc/tutorial/src/include/cairo-tutorial.h | 1=20 doc/tutorial/src/lca.c | 6=20 pixman/src/Makefile.am | 4=20 pixman/src/fbcompose.c | 44=20 pixman/src/fbedge.c | 5=20 pixman/src/fbedgeimp.h | 8=20 pixman/src/fbmmx.c | 559 +++--- pixman/src/fbmmx.h | 2=20 pixman/src/fbpict.c | 39=20 pixman/src/fbpict.h | 3=20 pixman/src/fbtrap.c | 24=20 pixman/src/icblt.c | 96 - pixman/src/icbltone.c | 57=20 pixman/src/iccolor.c | 2=20 pixman/src/icformat.c | 30=20 pixman/src/icimage.c | 99 - pixman/src/icimage.h | 9=20 pixman/src/icint.h | 55=20 pixman/src/icpixels.c | 1=20 pixman/src/icrect.c | 30=20 pixman/src/icrop.h | 6=20 pixman/src/icstipple.c | 6=20 pixman/src/ictransform.c | 5=20 pixman/src/ictrap.c | 12=20 pixman/src/ictri.c | 31=20 pixman/src/icutil.c | 3=20 pixman/src/pixman-xserver-compat.h | 3=20 pixman/src/pixman.h | 20=20 pixman/src/pixregion.c | 76=20 pixman/src/pixregionint.h | 9=20 pixman/src/renderedge.c | 13=20 pixman/src/slim_internal.h | 4=20 src/.gitignore | 1=20 src/Makefile.am | 60=20 src/cairo-analysis-surface.c | 11=20 src/cairo-arc.c | 6=20 src/cairo-array.c | 33=20 src/cairo-atsui-font.c | 59=20 src/cairo-backend.pc.in | 12=20 src/cairo-base85-stream.c | 5=20 src/cairo-beos-surface.cpp | 5=20 src/cairo-beos.h | 1=20 src/cairo-cache.c | 32=20 src/cairo-clip-private.h | 8=20 src/cairo-clip.c | 55=20 src/cairo-debug.c | 3=20 src/cairo-directfb-surface.c | 104 - src/cairo-directfb.h | 13=20 src/cairo-font-options.c | 60=20 src/cairo-font-subset-private.h | 1=20 src/cairo-font-subset.c | 182 +- src/cairo-font.c | 42=20 src/cairo-ft-font.c | 471 +++-- src/cairo-glitz-surface.c | 48=20 src/cairo-gstate-private.h | 2=20 src/cairo-gstate.c | 185 -- src/cairo-hash.c | 54=20 src/cairo-hull.c | 2=20 src/cairo-image-surface.c | 132 + src/cairo-lzw.c | 4=20 src/cairo-matrix.c | 147 - src/cairo-meta-surface.c | 53=20 src/cairo-operator.c | 8=20 src/cairo-output-stream.c | 28=20 src/cairo-paginated-surface.c | 28=20 src/cairo-path-bounds.c | 8=20 src/cairo-path-data.c | 14=20 src/cairo-path-fill.c | 3=20 src/cairo-path-stroke.c | 22=20 src/cairo-path.c | 32=20 src/cairo-pattern.c | 122 - src/cairo-pdf-surface.c | 2009 +++++++++++++------= ----- src/cairo-pdf-test.h | 20=20 src/cairo-pdf.h | 5=20 src/cairo-pen.c | 18=20 src/cairo-png.c | 35=20 src/cairo-polygon.c | 2=20 src/cairo-ps-surface.c | 982 +++++------ src/cairo-ps-test.h | 20=20 src/cairo-ps.h | 5=20 src/cairo-quartz-private.h | 2=20 src/cairo-quartz-surface.c | 37=20 src/cairo-quartz.h | 1=20 src/cairo-rectangle.c | 85 + src/cairo-region.c | 17=20 src/cairo-scaled-font-subsets-private.h | 267 +++ src/cairo-scaled-font-subsets.c | 384 ++++ src/cairo-scaled-font.c | 195 +- src/cairo-slope.c | 6=20 src/cairo-spline.c | 3=20 src/cairo-stroke-style.c | 1=20 src/cairo-surface-fallback-private.h | 2=20 src/cairo-surface-fallback.c | 145 - src/cairo-surface.c | 461 +++-- src/cairo-svg-surface.c | 770 +++++---- src/cairo-svg-test.h | 20=20 src/cairo-svg.h | 9=20 src/cairo-traps.c | 51=20 src/cairo-type1-subset.c | 1040 ++++++++++++ src/cairo-unicode.c | 39=20 src/cairo-wideint-private.h | 11=20 src/cairo-wideint.c | 18=20 src/cairo-win32-font.c | 196 +- src/cairo-win32-private.h | 11=20 src/cairo-win32-surface.c | 299 ++- src/cairo-win32.h | 3=20 src/cairo-xcb-surface.c | 108 - src/cairo-xlib-private.h | 4=20 src/cairo-xlib-screen.c | 32=20 src/cairo-xlib-surface.c | 698 ++++---- src/cairo-xlib-test.h | 3=20 src/cairo-xlib-xrender.h | 1=20 src/cairo-xlib.h | 1=20 src/cairo.c | 246 +- src/cairo.h | 61=20 src/cairoint.h | 182 +- src/test-fallback-surface.c | 17=20 src/test-meta-surface.c | 9=20 src/test-paginated-surface.c | 5=20 test/.gitignore | 10=20 test/Makefile.am | 31=20 test/buffer-diff.c | 3=20 test/buffer-diff.h | 4=20 test/cairo-test-directfb.c | 20=20 test/cairo-test.c | 80=20 test/cairo-test.h | 5=20 test/caps-joins.c | 2=20 test/clip-all.c | 2=20 test/clip-nesting.c | 4=20 test/clip-operator.c | 14=20 test/dash-offset-negative.c | 8=20 test/dash-scale-ps-argb32-ref.png |binary test/dash-scale-ref.png |binary test/dash-scale.c | 125 + test/device-offset-ref.png |binary test/device-offset-rgb24-ref.png |binary test/device-offset.c | 87 + test/fallback-resolution.c | 178 ++ test/fill-and-stroke-alpha-svg-argb32-ref.png |binary test/fill-and-stroke-alpha-svg-rgb24-ref.png |binary test/fill-and-stroke.c | 2=20 test/filter-nearest-offset.c | 2=20 test/font-face-get-type.c | 4=20 test/ft-text-vertical-layout-pdf-argb32-ref.png |binary test/ft-text-vertical-layout-pdf-rgb24-ref.png |binary test/ft-text-vertical-layout-ps-argb32-ref.png |binary test/ft-text-vertical-layout-ps-rgb24-ref.png |binary test/ft-text-vertical-layout-ref.png |binary test/ft-text-vertical-layout-rgb24-ref.png |binary test/ft-text-vertical-layout-svg-argb32-ref.png |binary test/ft-text-vertical-layout-svg-rgb24-ref.png |binary test/ft-text-vertical-layout.c | 131 + test/get-and-set.c | 2=20 test/get-group-target-ref.png |binary test/get-group-target.c | 90 + test/gradient-alpha-ref.png |binary test/gradient-alpha-rgb24-ref.png |binary test/gradient-alpha.c | 2=20 test/imagediff.c | 4=20 test/line-width-scale-ps-argb32-ref.png |binary test/line-width-scale-ref.png |binary test/line-width-scale.c | 30=20 test/linear-gradient-ref.png |binary test/linear-gradient.c | 8=20 test/mask-ref.png |binary test/mask-rgb24-ref.png |binary test/mask.c | 8=20 test/operator-clear.c | 16=20 test/operator-source-ref.png |binary test/operator-source-rgb24-ref.png |binary test/operator-source.c | 18=20 test/pdf-features.c | 4=20 test/pdf2png.c | 39=20 test/pixman-rotate-rgb24-ref.png |binary test/pixman-rotate-svg-argb32-ref.png |binary test/pixman-rotate-svg-rgb24-ref.png |binary test/ps-features.c | 2=20 test/pthread-show-text.c | 2=20 test/push-group-ref.png |binary test/push-group-rgb24-ref.png |binary test/push-group.c | 2=20 test/read-png.c | 1=20 test/rectangle-rounding-error.c | 10=20 test/rel-path.c | 4=20 test/select-font-face-pdf-argb32-ref.png |binary test/select-font-face-ps-argb32-ref.png |binary test/select-font-face-ref.png |binary test/select-font-face-svg-argb32-ref.png |binary test/select-font-face-svg-rgb24-ref.png |binary test/select-font-face.c | 83=20 test/self-copy.c | 6=20 test/show-text-current-point-pdf-argb32-ref.png |binary test/show-text-current-point-ps-argb32-ref.png |binary test/source-clip.c | 2=20 test/surface-finish-twice.c | 1=20 test/surface-pattern.c | 2=20 test/svg-clip.c | 2=20 test/text-antialias-gray-pdf-argb32-ref.png |binary test/text-antialias-gray-ps-argb32-ref.png |binary test/text-antialias-none-pdf-argb32-ref.png |binary test/text-antialias-none-ps-argb32-ref.png |binary test/text-antialias-subpixel-pdf-argb32-ref.png |binary test/text-antialias-subpixel-ps-argb32-ref.png |binary test/text-cache-crash.c | 1=20 test/text-pattern-ref.png |binary test/text-pattern-rgb24-ref.png |binary test/text-pattern.c | 10=20 test/text-rotate.c | 2=20 test/transforms.c | 2=20 test/trap-clip-ref.png |binary test/trap-clip-rgb24-ref.png |binary test/trap-clip.c | 4=20 test/unbounded-operator.c | 16=20 test/user-data.c | 2=20 test/write-png.c | 4=20 test/xlib-surface.c | 20=20 test/xmalloc.c | 1=20 test/zero-alpha-ref.png |binary test/zero-alpha.c | 97 + 235 files changed, 8579 insertions(+), 4836 deletions(-) --pgp-sign-Multipart_Wed_Jun_14_09:01:49_2006-1 Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEkDL06JDdNq8qSWgRAlbkAJ92YIDTUafsLa/U2ZTiKZ9zO0WmFgCfc252 2Y2uyD4rr4R2jx+43617QZk= =vX2e -----END PGP SIGNATURE----- --pgp-sign-Multipart_Wed_Jun_14_09:01:49_2006-1-- From janina@opera.rednote.net Wed Jun 14 12:12:42 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 912A73B029F for ; Wed, 14 Jun 2006 12:12:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19357-07 for ; Wed, 14 Jun 2006 12:12:39 -0400 (EDT) Received: from opera.rednote.net (opera.rednote.net [70.84.142.212]) by menubar.gnome.org (Postfix) with ESMTP id ED02F3B0281 for ; Wed, 14 Jun 2006 12:12:38 -0400 (EDT) Received: from opera.rednote.net (localhost.localdomain [127.0.0.1]) by opera.rednote.net (8.13.6/8.13.5) with ESMTP id k5EGAtdS007700; Wed, 14 Jun 2006 16:10:55 GMT Received: (from janina@localhost) by opera.rednote.net (8.13.6/8.13.6/Submit) id k5EGAtD9007699; Wed, 14 Jun 2006 12:10:55 -0400 Date: Wed, 14 Jun 2006 12:10:55 -0400 From: Janina Sajka To: parente@cs.unc.edu Subject: Re: lsr-0.2.1 Message-ID: <20060614161055.GV2259@rednote.net> References: <5308fd2c0606120606p43b30477o4e73cfad155dcaa7@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5308fd2c0606120606p43b30477o4e73cfad155dcaa7@mail.gmail.com> User-Agent: Mutt/1.4.2.1i X-Operating-System: Linux opera.rednote.net 2.6.16-1.2122_FC5spksmp Organization: Capital Accessibility LLC (http://www.CapitalAccessibility.com) X-PGP-Key: http://www.CapitalAccessibility.com/JaninaSajka_gpg_key.html X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.568 tagged_above=-999 required=2 tests=[AWL=0.031, BAYES_00=-2.599] X-Spam-Score: -2.568 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 12:46:56 -0400 Cc: gnome-announce-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 16:12:42 -0000 Peter Parente writes: > ============== > * What is it ? > ============== > > Linux Screen Reader (LSR) is an extensible assistive technology for people > with > disabilities. The design philosophy behind LSR is to provide a core platform > that enables the development of LSR extensions for improving desktop > application accessibility and usability and shields extension developers > from > the intricacies of the desktop accessibility architecture. > snip snip Where can I get it ? rpm packages for Fedora Core 5 available from: ftp://SpeakupModified.Org/fedora/rednote/ The binary is under RPMS, and the source under SRPMS as usual with Fedora. Special Note: You may need to upgrade your Gnome Desktop to Fedora Development. If you find things not working with the current release and updated Gnome environment, try: yum --disablerepo='*' --enablerepo=development groupupdate 'GNOME Desktop Environment' Note the above command is issued on one line, though it's probably been broken into at least two lines in this email message. -- Janina Sajka Phone: +1.240.715.1272 Partner, Capital Accessibility LLC http://CapitalAccessibility.Com Marketing the Owasys 22C talking screenless cell phone in the U.S. and Canada--Go to http://ScreenlessPhone.Com to learn more. Chair, Accessibility Workgroup Free Standards Group (FSG) janina@freestandards.org http://a11y.org From janina@opera.rednote.net Wed Jun 14 12:17:56 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 08CF33B0156; Wed, 14 Jun 2006 12:17:56 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28336-10; Wed, 14 Jun 2006 12:17:54 -0400 (EDT) Received: from opera.rednote.net (opera.rednote.net [70.84.142.212]) by menubar.gnome.org (Postfix) with ESMTP id 2375F3B03DA; Wed, 14 Jun 2006 12:17:54 -0400 (EDT) Received: from opera.rednote.net (localhost.localdomain [127.0.0.1]) by opera.rednote.net (8.13.6/8.13.5) with ESMTP id k5EGH5iU007764; Wed, 14 Jun 2006 16:17:05 GMT Received: (from janina@localhost) by opera.rednote.net (8.13.6/8.13.6/Submit) id k5EGH5N6007763; Wed, 14 Jun 2006 12:17:05 -0400 Date: Wed, 14 Jun 2006 12:17:05 -0400 From: Janina Sajka To: Willie Walker Subject: Re: Announcing Orca 0.2.5 rpms Message-ID: <20060614161705.GW2259@rednote.net> References: <1150069937.5071.4.camel@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1150069937.5071.4.camel@localhost> User-Agent: Mutt/1.4.2.1i X-Operating-System: Linux opera.rednote.net 2.6.16-1.2122_FC5spksmp Organization: Capital Accessibility LLC (http://www.CapitalAccessibility.com) X-PGP-Key: http://www.CapitalAccessibility.com/JaninaSajka_gpg_key.html X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.569 tagged_above=-999 required=2 tests=[AWL=0.030, BAYES_00=-2.599] X-Spam-Score: -2.569 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 12:47:08 -0400 Cc: gnome-announce-list@gnome.org, gnome-accessibility-list@gnome.org, orca-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 16:17:56 -0000 rpm packages of Orca-0.2.5 for Fedora Core 5 are now available from: ftp://SpeakupModified.Org/fedora/rednote/ The binary is under RPMS, and the source under SRPMS as usual with Fedora. Installation There is yet some unresolved dependency issue with these rpms, so they probably will need to be installed using the --nodeps option as follows: rpm -Uv --nodeps orca-0.2.5-1.i386.rpm However, I can attest the resulting installation works for me on two different systems. I have first run: orca -t from the console, as the same user I am in the gui desktop. Once on the desktop, I have issued Alt-F2 and typed: orca -t again to get things started. Seems wrong, but is working for me on two systems. Special Note: You may need to upgrade your Gnome Desktop to Fedora Development. If you find things not working with the current release and updated Gnome environment, try: yum --disablerepo='*' --enablerepo=development groupupdate 'GNOME Desktop Environment' Note the above command is issued on one line, though it's probably been broken into at least two lines in this email message. -- Janina Sajka Phone: +1.240.715.1272 Partner, Capital Accessibility LLC http://CapitalAccessibility.Com Marketing the Owasys 22C talking screenless cell phone in the U.S. and Canada--Go to http://ScreenlessPhone.Com to learn more. Chair, Accessibility Workgroup Free Standards Group (FSG) janina@freestandards.org http://a11y.org From ross@golder.org Thu Jun 15 07:48:01 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D826D3B007D for ; Thu, 15 Jun 2006 07:48:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03520-09 for ; Thu, 15 Jun 2006 07:47:53 -0400 (EDT) Received: from black.golder.org (black.golder.org [81.6.249.35]) by menubar.gnome.org (Postfix) with ESMTP id BFA543B009A for ; Thu, 15 Jun 2006 07:47:49 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by black.golder.org (Postfix) with ESMTP id 6BF4B40AB; Thu, 15 Jun 2006 12:47:48 +0100 (BST) X-Virus-Scanned: amavisd-new at golder.org Received: from black.golder.org ([127.0.0.1]) by localhost (black.golder.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id H-Yje6ok1oMb; Thu, 15 Jun 2006 12:47:45 +0100 (BST) Received: from red (unknown [125.24.64.59]) by black.golder.org (Postfix) with ESMTP id B12633FE2; Thu, 15 Jun 2006 12:47:41 +0100 (BST) Subject: Subversion migration schedule (new cut-off is Fri 14 July) From: Ross Golder To: gnome-announce-list@gnome.org Content-Type: multipart/mixed; boundary="=-41kIj1JG8/E+h5tM2RXc" Date: Thu, 15 Jun 2006 18:47:06 +0700 Message-Id: <1150372026.9754.1.camel@red> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.519 tagged_above=-999 required=2 tests=[AWL=0.080, BAYES_00=-2.599] X-Spam-Score: -2.519 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 07:51:43 -0400 Cc: devel-announce@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 11:48:02 -0000 --=-41kIj1JG8/E+h5tM2RXc Content-Type: text/plain Content-Transfer-Encoding: 7bit As per below, it was decided that 23rd June was too soon before GUADEC, so the new cut-off date has been put back to 14th July. Regards, -- Ross --=-41kIj1JG8/E+h5tM2RXc Content-Disposition: inline Content-Description: Forwarded message - Re: Subversion migration schedule (new cut-off Fri 14 July?) Content-Type: message/rfc822 Return-Path: Received: from black.golder.org ([unix socket]) by black.golder.org (Cyrus v2.3.1-Invoca-RPM-2.3.1-2.6.fc5) with LMTPA; Fri, 02 Jun 2006 14:59:52 +0100 X-Sieve: CMU Sieve 2.3 Received: from localhost (localhost.localdomain [127.0.0.1]) by black.golder.org (Postfix) with ESMTP id 621804A93 for ; Fri, 2 Jun 2006 14:59:52 +0100 (BST) X-Virus-Scanned: amavisd-new at golder.org X-Spam-Score: 0.466 X-Spam-Level: X-Spam-Status: No, score=0.466 tagged_above=-99 required=2.5 tests=[AWL=0.466] Received: from black.golder.org ([127.0.0.1]) by localhost (black.golder.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 9MLIDaDvOs4S for ; Fri, 2 Jun 2006 14:59:49 +0100 (BST) Received: from menubar.gnome.org (menubar.gnome.org [209.132.176.177]) by black.golder.org (Postfix) with ESMTP id 570164A91 for ; Fri, 2 Jun 2006 14:59:48 +0100 (BST) Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 58DFF3B04AD; Fri, 2 Jun 2006 09:59:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30643-08; Fri, 2 Jun 2006 09:59:44 -0400 (EDT) Received: from menubar.gnome.org (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0CDFA3B0480; Fri, 2 Jun 2006 09:59:44 -0400 (EDT) X-Original-To: gnome-hackers@gnome.org Delivered-To: gnome-hackers@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 44C613B0480 for ; Fri, 2 Jun 2006 09:59:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30672-06 for ; Fri, 2 Jun 2006 09:59:41 -0400 (EDT) Received: from localhost.localdomain (unknown [125.25.17.26]) by menubar.gnome.org (Postfix) with ESMTP id 7067E3B0468 for ; Fri, 2 Jun 2006 09:59:39 -0400 (EDT) Received: by localhost.localdomain (Postfix, from userid 500) id 80BC09FC5E; Fri, 2 Jun 2006 20:59:23 +0700 (ICT) From: Ross Golder To: Jeff Waugh In-Reply-To: <20060601132052.GF5203@waugh.id.au> References: <1139648664.6627.40.camel@localhost> <1148971293.12902.2.camel@red> <20060601132052.GF5203@waugh.id.au> Content-Type: text/plain Date: Fri, 02 Jun 2006 20:59:23 +0700 Message-Id: <1149256763.6298.18.camel@red> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org Cc: gnome-hackers@gnome.org Subject: Re: Subversion migration schedule (new cut-off Fri 14 July?) X-BeenThere: gnome-hackers@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Hacking GNOME discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: gnome-hackers-bounces@gnome.org Errors-To: gnome-hackers-bounces@gnome.org X-Virus-Scanned: by amavisd-new at gnome.org Content-Transfer-Encoding: 7bit On Thu, 2006-06-01 at 23:20 +1000, Jeff Waugh wrote: > > > > As the various show-stoppers that prevented our previously scheduled > > migration from going ahead have now been resolved, I am proposing that the > > new migration go ahead at 23:59UTC on Friday 16th June 2006. Please let us > > know a.s.a.p if that will be inconvenient for anyone. > > Ross, > > Can I suggest that we do the migration after GUADEC? I think it would be > more useful for us to have reliable and known access to CVS through the week > than be dealing with post-migration woes (as clean as it will be, there will > be some hassles for everyone). > > Thanks, > > - Jeff > How about this - I'll run another test migration on the 23rd, but won't actually make the switch. At least then, if anyone at GUADEC wants to play with or demonstrate anything related to subversion, at least they will get fairly up-to-date code. So, looking at the release schedule, it looks like the next best date would be July 14th. How would that be? -- Ross _______________________________________________ gnome-hackers mailing list gnome-hackers@gnome.org http://mail.gnome.org/mailman/listinfo/gnome-hackers --=-41kIj1JG8/E+h5tM2RXc-- From gjc@inescporto.pt Thu Jun 15 15:10:39 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7C99F3B02BF for ; Thu, 15 Jun 2006 15:10:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 29070-01 for ; Thu, 15 Jun 2006 15:10:36 -0400 (EDT) Received: from animal.inescn.pt (correio.inescn.pt [194.117.24.9]) by menubar.gnome.org (Postfix) with ESMTP id 5CEBB3B016C for ; Thu, 15 Jun 2006 15:10:35 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by animal.inescn.pt (8.13.6/8.13.6/7) with ESMTP id k5FJ9a1H007835; Thu, 15 Jun 2006 20:09:36 +0100 (WEST) Received: from pong.inescporto.pt (pong.inescn.pt [194.117.26.74]) by animal.inescn.pt (8.13.6/8.13.6/5) with ESMTP id k5FJ9PGj007812; Thu, 15 Jun 2006 20:09:25 +0100 (WEST) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by pong.inescporto.pt (Postfix) with ESMTP id 63C2A1303A8; Thu, 15 Jun 2006 20:06:19 +0100 (WEST) Subject: ANNOUNCE: PyGTK 2.9.2 (unstable) From: "Gustavo J. A. M. Carneiro" To: PyGTK Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-RzvsD9ggP/SFbL+MHSSy" Date: Thu, 15 Jun 2006 20:09:24 +0100 Message-Id: <1150398564.5933.27.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at inescporto.pt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.428 tagged_above=-999 required=2 tests=[AWL=0.037, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.428 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 23:27:04 -0400 Cc: gnome-announce-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 19:10:39 -0000 --=-RzvsD9ggP/SFbL+MHSSy Content-Type: text/plain Content-Transfer-Encoding: quoted-printable I am pleased to announce version 2.9.2 of the Python bindings for GTK. The new release is available from ftp.gnome.org and its mirrors as soon as its synced correctly: http://ftp.gnome.org/pub/GNOME/sources/pygtk/2.9/ This is an unstable release and should be used with caution. It requires either GTK+ 2.8.x or GTK+ >=3D 2.9.3. Blurb: GTK is a toolkit for developing graphical applications that run on systems such as Linux, Windows and MacOS X. It provides a comprehensive set of GUI widgets, can display Unicode bidi text. It links into the Gnome Accessibility Framework through the ATK library. PyGTK provides a convenient wrapper for the GTK+ library for use in Python programs, and takes care of many of the boring details such as managing memory and type casting. When combined with PyORBit and gnome-python, it can be used to write full featured Gnome applications. Like the GTK+ library itself PyGTK is licensed under the GNU LGPL, so is suitable for use in both free software and proprietary applications. It is already in use in many applications ranging from small single purpose scripts up to large full features applications. pygtk-2.9.2 15-june-2006 - Fix a codegen bug that prevent build of other extensions (344845, Gus= tavo) - Builds with pycairo 1.1.6 (344957, Gustavo) - gtk.TextBuffer rich text copy and serialization (Finlay) - Correct Print Editor example (Gustavo) PyGTK requires GTK+ >=3D 2.8.0 and Python >=3D 2.3.5 to build. Bug reports, as always, should go to Bugzilla; check out http://pygtk.org/developer.html and http://pygtk.org/feedback.html for links to posting and querying bug reports for PyGTK. --=20 Gustavo J. A. M. Carneiro The universe is always one step beyond logic=09 --=-RzvsD9ggP/SFbL+MHSSy Content-Type: application/pgp-signature; name=signature.asc Content-Description: Esta =?ISO-8859-1?Q?=E9?= uma parte de mensagem assinada digitalmente -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (GNU/Linux) iD8DBQBEkbBk2XoHyMdS6TARAjgIAJ4upHdWvOey6x3eV21Ji6P58K+OhgCdGstN wEORPp04QwWKfmDGW0Dum/g= =Suqv -----END PGP SIGNATURE----- --=-RzvsD9ggP/SFbL+MHSSy-- From johnp@redhat.com Thu Jun 15 16:50:59 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8557E3B01FF; Thu, 15 Jun 2006 16:50:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00479-04; Thu, 15 Jun 2006 16:50:58 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 798313B00D0; Thu, 15 Jun 2006 16:50:58 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5FKndP2000921; Thu, 15 Jun 2006 16:49:39 -0400 Received: from lacrosse.corp.redhat.com (lacrosse.corp.redhat.com [172.16.52.154]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5FKnYTU014072; Thu, 15 Jun 2006 16:49:34 -0400 Received: from [172.16.80.35] (remedyz.boston.redhat.com [172.16.80.35]) by lacrosse.corp.redhat.com (8.12.11.20060308/8.11.6) with ESMTP id k5FKnYad010638; Thu, 15 Jun 2006 16:49:34 -0400 Subject: GNOME 2.15.3 Development Release From: "John (J5) Palmieri" To: devel-announce-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Date: Thu, 15 Jun 2006 16:49:34 -0400 Message-Id: <1150404574.5271.18.camel@remedyz.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.3 (2.7.3-2) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.449 tagged_above=-999 required=2 tests=[AWL=-0.079, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_GT=0.077, TW_JH=0.077, TW_YG=0.077] X-Spam-Score: -2.449 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 23:27:04 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 20:50:59 -0000 GNOME 2.15.3 Development Release ================================ It is that time again. Time to get it, time to build it and time to test it. The GNOME Release Team is proud to present the 2.15.3 development release. This is our third development release on our road towards GNOME 2.16.0, which will be released in September 2006. So go download it. Go compile it. Go test it. And go hack on it, document it, translate it, fix it. Note that gnome-applets, deskbar-applet and pygtk all need patches which can be found here gnome-applets: http://download.gnome.org/teams/releng/2.15.3/gswitchit.patch deskbar-applet: http://download.gnome.org/teams/releng/2.15.3/CuemiacPopupEntry.py.patch pygtk: http://download.gnome.org/teams/releng/2.15.3/defsparser.py.patch To compile GNOME 2.15.3, you can use GARNOME (will be released soon), or the jhbuild modulesets available at: http://download.gnome.org/teams/releng/2.15.3/ The release notes that describe the changes between 2.15.2 and 2.15.3 are available. Go read them to learn all the goodness of this release: platform - http://download.gnome.org/platform/2.15/2.15.3/NEWS desktop - http://download.gnome.org/desktop/2.15/2.15.3/NEWS admin - http://download.gnome.org/admin/2.15/2.15.3/NEWS bindings - http://download.gnome.org/bindings/2.15/2.15.3/NEWS Here are some figures about this release: admin 2.15.3 statistics: tar.gz: 792K total tar.bz2: 616K total bindings 2.15.3 statistics: tar.gz: 21M total tar.bz2: 15M total desktop 2.15.3 statistics: tar.gz: 156M total tar.bz2: 114M total platform 2.15.3 statistics: tar.gz: 53M total tar.bz2: 37M total The GNOME 2.15.3 release is available here: platform sources - http://download.gnome.org/platform/2.15/2.15.3/ desktop sources - http://download.gnome.org/desktop/2.15/2.15.3/ admin sources - http://download.gnome.org/admin/2.15/2.15.3/ bindings sources - http://download.gnome.org/bindings/2.15/2.15.3/ WARNING! WARNING! WARNING! -------------------------- This release is a snapshot of development code. Although it is buildable and usable, it is primarily intended for testing and hacking purposes. GNOME uses odd minor version numbers to indicate development status. For more informations about 2.15, the full schedule, the official module lists and the proposed modules list, please see our shiny 2.15 page: http://www.gnome.org/start/unstable/ We hope you'll love it, The GNOME Release Team -- John (J5) Palmieri From guenther@rudersport.de Thu Jun 15 17:06:31 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1F0DB3B0237; Thu, 15 Jun 2006 17:06:31 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00750-05; Thu, 15 Jun 2006 17:06:30 -0400 (EDT) Received: from rudersport.de (rudersport.de [192.220.91.203]) by menubar.gnome.org (Postfix) with ESMTP id 427033B00D0; Thu, 15 Jun 2006 17:06:30 -0400 (EDT) Received: from [10.0.0.2] (IP-213157009217.dialin.heagmedianet.de [213.157.9.217]) by rudersport.de (8.12.11.20060308) id k5FL5jDY040713; Thu, 15 Jun 2006 15:05:46 -0600 (MDT) Subject: [ANNOUNCE] GARNOME 2.15.3 From: guenther To: garnome-list@gnome.org Content-Type: text/plain Date: Thu, 15 Jun 2006 23:05:43 +0200 Message-Id: <1150405543.8323.15.camel@monkey.loc> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.053 tagged_above=-999 required=2 tests=[AWL=-0.451, BAYES_00=-2.599, SUBJ_ALL_CAPS=0.997] X-Spam-Score: -2.053 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 23:27:04 -0400 Cc: gnome-announce-list@gnome.org, gnome-love@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 21:06:31 -0000 GARNOME 2.15.3 ============== The "It's quiet out there... Yes... Too quiet..." release. What seemed to be no last minute releases turned out to be a broken list server, holding back the official GNOME release for a day. Also, there have been a bunch of build issues this time around, more than usual. Some good cooperation between the Release Team and the GARNOME Team (especially Joseph) hacked around the brokeness, thus... We are pleased to announce the release of GARNOME 2.15.3 Desktop and Developer Platform. This release includes all of GNOME 2.15.3 plus a whole bunch of updates that were released after the GNOME freeze date. This is the third release in the unstable cycle, with more features, more fixes and yet more madness added. It is for anyone who wants to get his hands dirty on the development branch, or who'd like to get a peek at future features. If you want to help spot issues in GARNOME, (or, better yet, fix 'em ;-) this release is for you as well. As usual, you can get the tarball directly from the gnome.org site: http://download.gnome.org/sources/garnome/2.15/ Note: GNOME 2.15.x is an unstable branch and is assumed to be a moving target. Therefore, things in this release may not work as advertised. If you find any issues with this release, feel free to contact the GARNOMEies in the #garnome channel on GIMPNet (irc://irc.gnome.org), where we hang out, or post to the mailing list. More information is available at our project website: http://www.gnome.org/projects/garnome/ Enjoy, The GARNOME Team -- char *t="\10pse\0r\0dtu\0.@ghno\x4e\xc8\x79\xf4\xab\x51\x8a\x10\xf4\xf4\xc4"; main(){ char h,m=h=*t++,*x=t+2*h,c,i,l=*x,s=0; for (i=0;i>=1)||!t[s+h]){ putchar(t[s]);h=m;s=0; }}} From behdad.esfahbod@gmail.com Thu Jun 15 17:39:14 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 21DF83B0232 for ; Thu, 15 Jun 2006 17:39:14 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02006-04 for ; Thu, 15 Jun 2006 17:39:13 -0400 (EDT) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.237]) by menubar.gnome.org (Postfix) with ESMTP id 17AEE3B0007 for ; Thu, 15 Jun 2006 17:39:13 -0400 (EDT) Received: by wr-out-0506.google.com with SMTP id 37so427823wra for ; Thu, 15 Jun 2006 14:38:12 -0700 (PDT) Received: by 10.54.108.13 with SMTP id g13mr2187733wrc; Thu, 15 Jun 2006 14:38:11 -0700 (PDT) Received: from ?192.168.190.5? ( [72.136.156.47]) by mx.gmail.com with ESMTP id 6sm1544376wrl.2006.06.15.14.38.10; Thu, 15 Jun 2006 14:38:11 -0700 (PDT) Subject: Women's Summer Outreach Program 2006 From: Behdad Esfahbod To: gnome-hackers@gnome.org, foundation-list@gnome.org, foundation-announce@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Date: Thu, 15 Jun 2006 17:38:06 -0400 Message-Id: <1150407487.29623.12.camel@home> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 (2.6.1-1.fc5.2) Content-Transfer-Encoding: 7bit Sender: Behdad Esfahbod X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.6 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.6 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 23:27:04 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 21:39:14 -0000 GNOME to Sponsor Female Developers in a Summer Outreach Program BOSTON, Mass - June 13, 2006 - The GNOME Foundation is offering USD$9000 to female students in order to promote the participation of women in GNOME-related development. The money originates from GNOME's participation in the Google "Summer of Code" program (code.google.com/soc/), for which GNOME developers will mentor 20 students working throughout the northern summer on GNOME-related projects. This year GNOME received 181 applications to Google's program, yet none were from women. The GNOME Foundation has therefore chosen to reinvest Google's contribution into a new program designed to increase the participation of women in GNOME. The program has no official relationship with Google. "Free software prides itself on being open to anyone with a good idea, yet less than 2% of free software developers are female. We, as a community, need to be actively working to change this statistic, and programs like this one are a much needed step in the right direction." said Hanna Wallach, a GNOME developer who is involved in several projects that encourage women to participate in free software development. The Women's Summer Outreach Program is currently accepting applications from female students. Accepted students will receive a stipend of USD $3000 over a two month period. A pool of project ideas is provided at www.gnome.org/projects/wsop/, though original proposals are also encouraged. Projects may either be related to GNOME directly, or indirectly via projects such as Gstreamer and Abiword. Each student will be assigned a mentor to provide guidance throughout the program. Vincent Untz, member of the GNOME Foundation board and coordinator of the GNOME team for Google's "Summer of Code" program, explained: "Many women have the skills required to contribute to Free Software projects like GNOME, but may not see an opportunity to start working with us. By initiating this program, not only do we want to highlight the issue, but we also hope that this opportunity will help more women to get involved in the long term." Applications should be submitted using the form at www.gnome.org/projects/wsop/. More information about the application process may be found at the same location. From cworth@cworth.org Fri Jun 16 13:14:11 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7C02B3B0125 for ; Fri, 16 Jun 2006 13:14:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07413-02 for ; Fri, 16 Jun 2006 13:14:09 -0400 (EDT) Received: from theworths.org (cworth.org [217.160.249.188]) by menubar.gnome.org (Postfix) with ESMTP id B2BA33B0128 for ; Fri, 16 Jun 2006 13:14:08 -0400 (EDT) Received: (qmail 6134 invoked from network); 16 Jun 2006 13:13:38 -0400 Received: from localhost (HELO raht.cworth.org) (127.0.0.1) by localhost with SMTP; 16 Jun 2006 13:13:38 -0400 Date: Fri, 16 Jun 2006 10:08:58 -0700 Message-ID: <878xnxc9jp.wl%cworth@cworth.org> From: Carl Worth To: cairo-announce@cairographics.org Subject: cairo snapshot 1.1.10 now available User-Agent: Wanderlust/2.14.0 (Africa) Emacs/21.4 Mule/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: multipart/signed; boundary="pgp-sign-Multipart_Fri_Jun_16_10:08:52_2006-1"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.4 tagged_above=-999 required=2 tests=[AWL=-0.090, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, TW_BX=0.077, TW_IB=0.077] X-Spam-Score: -2.4 X-Spam-Level: X-Mailman-Approved-At: Sat, 17 Jun 2006 00:52:39 -0400 Cc: gnome-announce-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2006 17:14:11 -0000 --pgp-sign-Multipart_Fri_Jun_16_10:08:52_2006-1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable A new cairo snapshot 1.1.10 is now available from: http://cairographics.org/snapshots/cairo-1.1.10.tar.gz which can be verified with: http://cairographics.org/snapshots/cairo-1.1.10.tar.gz.sha1 709d48dbcd0ac806e4f7bfd1f69314e4dfb57329 cairo-1.1.10.tar.gz http://cairographics.org/snapshots/cairo-1.1.10.tar.gz.sha1.asc (signed by Carl Worth) Additionally, a git clone of the source tree: git clone git://git.cairographics.org/git/cairo will include a signed 1.1.10 tag which points to a commit named: 65e73c81b83222de873935cf384e514ea20ac854 which can be verified with: git verify-tag 1.1.10 and can be checked out with a command such as: git checkout -b build 1.1.10 This is the fifth in a series of snapshots working toward the 1.2 release of cairo. The primary motivation for this snapshot is to fix a long-standing bug that had long been silent, but as of the 1.1.8 snapshot started causing crashes when run against 16-bit depth X servers, (often Xvnc or Xnest). The fix for this adds a new CAIRO_FORMAT_RGB16_565 to the API. This snapshot also includes a rewrite of cairo's SVG backend to eliminate the dependency on libxml2. With this in place, cairo 1.2 will not depend on any libraries that cairo 1.0 did not. As usual, there are also a few fixes for minor bugs. What is cairo =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Cairo is a 2D graphics library with support for multiple output devices. Currently supported output targets include the X Window System, win32, and image buffers. Experimental backends include OpenGL (through glitz), Quartz, XCB, PostScript and PDF file output. Cairo is designed to produce consistent output on all output media while taking advantage of display hardware acceleration when available (for example, through the X Render Extension). The cairo API provides operations similar to the drawing operators of PostScript and PDF. Operations in cairo including stroking and filling cubic B=E9zier splines, transforming and compositing translucent images, and antialiased text rendering. All drawing operations can be transformed by any affine transformation (scale, rotation, shear, etc.). Cairo has been designed to let you draw anything you want in a modern 2D graphical user interface. At the same time, the cairo API has been designed to be as fun and easy to learn as possible. If you're not having fun while programming with cairo, then we have failed somewhere---let us know and we'll try to fix it next time around. Cairo is free software and is available to be redistributed and/or modified under the terms of either the GNU Lesser General Public License (LGPL) version 2.1 or the Mozilla Public License (MPL) version 1.1. Where to get more information about cairo =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D The primary source of information about cairo is: http://cairographics.org/ The latest releases of cairo can be found at: http://cairographics.org/releases Snapshots of in-development versions of cairo: http://cairographics.org/snapshots The programming manual for using cairo: http://cairographics.org/manual Mailing lists for contacting cairo users and developers: http://cairographics.org/lists Answers to some frequently asked questions about cairo: http://cairographics.org/FAQ Detailed list of changes since 1.1.8 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Tag '1.1.10' created by Carl Worth at 2006-06-16 17:53 = -0700 cairo 1.1.10 snapshot -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEkuIi6JDdNq8qSWgRArhnAJ4hDlfpnWYY9bj0NVs7ZMl+XKsaXwCffRLz HMhowJx6or+LK99tRtZO5YM=3D =3DAsAw -----END PGP SIGNATURE----- Changes since 1.1.8: Behdad Esfahbod: Use enum time instead of int (shuts intel compiler up.) Merge branch 'cairo' into cairo-origin Carl Worth: Increment CAIRO_VERSION to 1.1.9 after making the 1.1.8 snapshot _cairo_format_from_pixman_format: Add useful error mesage and asserti= on when failing. Remove _cairo_image_surface_is_alpha_only in favor of just looking at= content value. Drop _cairo_surface_is_opaque now that we have cairo_surface_get_cont= ent Add missing breaks in switch statement. New API: Add support for new CAIRO_FORMAT_RGB16_565 Update release rules in Makefile to add git signature information. Annoying doc template churn. Update version to 1.1.10 and add notes to NEWS file. Emmanuel Pacaud: SVG: Update of reference images. Jinghua Luo: xlib: free resources before return if looking up glyph surface fails. Kristian H=F8gsberg: Make cairo_output_stream_t an embeddable type. Convert the stdio output stream to use the new output stream interfac= e. Convert the word wrap stream, the base85 stream and the ps string str= eam. Add an in-memory output-stream implementation. Only run fallback-resolution test case when all of PDF, PS and SVG ar= e enabled. Rewrite SVG backend to just use cairo output stream instead of libxml= 2. Remove libxml2 checks from configure.in. Actually add src/cairo-output-stream-private.h. Merge branch 'svg-rewrite' Add test case for the PDF, PS and SVG stream constructors. Only call close function for output streams if it's non-NULL. Add cairo-output-stream-private.h to libcairo_la_SOURCES. Torsten Sch=F6nfeld: Add missing cairo_public tag for cairo_image_surface_get_stride --- Makefile.am | 25=20 NEWS | 17=20 RELEASING | 2=20 configure.in | 20=20 doc/public/tmpl/cairo-image.sgml | 1=20 pixman/src/icformat.c | 6=20 pixman/src/pixman.h | 3=20 pixman/src/pixregion.c | 2=20 src/Makefile.am | 1=20 src/cairo-base85-stream.c | 28=20 src/cairo-image-surface.c | 98 + src/cairo-output-stream-private.h | 156 ++ src/cairo-output-stream.c | 188 ++- src/cairo-pattern.c | 2=20 src/cairo-pdf-surface.c | 1=20 src/cairo-ps-surface.c | 45=20 src/cairo-surface.c | 37=20 src/cairo-svg-surface.c | 1170 ++++++++--------= ----- src/cairo-type1-subset.c | 1=20 src/cairo-xlib-surface.c | 2=20 src/cairo.h | 8=20 src/cairoint.h | 85 - test/Makefile.am | 10=20 test/create-for-stream.c | 218 +++ test/linear-gradient-svg-argb32-ref.png |binary test/linear-gradient-svg-rgb24-ref.png |binary test/mask-svg-argb32-ref.png |binary test/mask-svg-rgb24-ref.png |binary test/paint-source-alpha-svg-argb32-ref.png |binary test/paint-source-alpha-svg-rgb24-ref.png |binary test/paint-with-alpha-svg-argb32-ref.png |binary test/paint-with-alpha-svg-rgb24-ref.png |binary test/push-group-svg-argb32-ref.png |binary test/push-group-svg-rgb24-ref.png |binary test/scale-source-surface-paint-svg-argb32-ref.png |binary test/scale-source-surface-paint-svg-rgb24-ref.png |binary test/text-pattern-svg-argb32-ref.png |binary test/text-pattern-svg-rgb24-ref.png |binary test/trap-clip-svg-argb32-ref.png |binary test/trap-clip-svg-rgb24-ref.png |binary 40 files changed, 1171 insertions(+), 955 deletions(-) --pgp-sign-Multipart_Fri_Jun_16_10:08:52_2006-1 Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEkuWq6JDdNq8qSWgRAqI6AJ42+4WuUfwFtayn9C8dh+r/xTk4OACeMMgt Cdpk2ar//g0UaT0w77grJjc= =kUjC -----END PGP SIGNATURE----- --pgp-sign-Multipart_Fri_Jun_16_10:08:52_2006-1-- From doclivingston@gmail.com Sun Jun 18 02:45:17 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 001613B014D for ; Sun, 18 Jun 2006 02:45:17 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27928-05 for ; Sun, 18 Jun 2006 02:45:15 -0400 (EDT) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.179]) by menubar.gnome.org (Postfix) with ESMTP id C709D3B0158 for ; Sun, 18 Jun 2006 02:45:14 -0400 (EDT) Received: by py-out-1112.google.com with SMTP id c39so971442pyd for ; Sat, 17 Jun 2006 23:43:58 -0700 (PDT) Received: by 10.35.89.10 with SMTP id r10mr6756008pyl; Sat, 17 Jun 2006 23:43:58 -0700 (PDT) Received: from alyrion.local ( [144.134.102.218]) by mx.gmail.com with ESMTP id k13sm2076296pyf.2006.06.17.23.43.55; Sat, 17 Jun 2006 23:43:57 -0700 (PDT) Subject: Rhythmbox 0.9.5 From: "James \"Doc\" Livingston" To: Rhythmbox-devel list , gnome-announce-list@gnome.org Content-Type: text/plain; charset=UTF-8 Date: Sun, 18 Jun 2006 16:43:53 +1000 Message-Id: <1150613033.6027.23.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.53 tagged_above=-999 required=2 tests=[AWL=0.070, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.53 X-Spam-Level: X-Mailman-Approved-At: Sun, 18 Jun 2006 10:56:33 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: rhythmbox-devel@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 06:45:17 -0000 G'day Everyone, On behalf of the Rhythmbox developers, I'm proud to announce the sixth release of the Rhythmbox 0.9 series, which includes a large number of fixes, improvements and new features. Notable new features include: - Improved plugin support, and several features converted to plugins - An album art viewing and download plugin - A song lyric viewing and download plugin - Ogg Vorbis tag editing [0] - Partial iPod write support [1] - Improved audio player and DAAP support - CD ripping and track transfer enabled by default - Updated documentation and many, many more improvements, bug fixes and new minor features. See below for more details. [0] requires a GStreamer plugin not yet in cvs, see bug 335635 [1] off by default, pass --enable-ipod-writing to enable. * What is Rhythmbox ? ===================== Rhythmbox is an integrated music management application, originally inspired by Apple's iTunes. It is free software, designed to work well under the GNOME Desktop, and based on the powerful GStreamer media framework. * What's changed in 0.9.5 ? =========================== * fix icon themability (Steve Frécinaux) * handle iPods that have been repartitioned (Christophe Fergeau: 325034) * allow ipod renaming, ejection, deletion and transfer (Christophe Fergeau) * make iradio handling work much better (Jonathan Matthew: 320336, 324402) * improve out-of-process metadata loader (Jonathan Matthew: 338062) * update documentation (Baptiste Mille-Mathias, ) * pluginise iPod and Generic players (Christophe Fergeau, Jonathan Matthew) * support saving playlists as M3U (Gavin Stewart: 316295) * remember browser visibility when changing sources (Alex Lancaster: 118862) * handle media unmounts better (Jonathan Matthew: 339023) * make entry types be a structure, and add support for extended data, and various method implementations (Christophe Fergeau, James Livingston) * album art view&download plugin (Alex Lancaster, James Livingston, Gareth Murphy, William Jon McCann, Martin Szulecki) * update the FSF's address (Gunnar Steinn Magnusson) * much improved Python bindings (James Livingston, Jonathan Matthew) * fix some translation issues (Nguyễn Thái Ngọc Duy, James Livingston: 339380, 343081) * improve startup time (James Livingston, Jonathan Matthew) * fix audioscrobbler submission, and allow viewing of info (Jonathan Matthew: 325848) * improve DBus interface (Jonathan Matthew, Tim Moloney) * allow transcoding during track transfer (Alessandro Decina: 322268) * cd burning fixes and improvements (William Jon McCann) * podcast feed parsing and download fixes (James Livingston: 339728) * turn the playback backend into a full GObject interface (James Livingston: 338667) * add more API documentation (Jonathan Mattjew) * add vorbis tag editing (James Livingston: 339878) * fix various threading insanities (Jonathan Matthew) * display "child libraries" with multiple library locations (James Livingston: 100552) * improve drag-and-drop from browsers (Jonathan Matthew: 327540) * support Motorola ROKR phones (Joe Barnett) * make query model limits saner (Janes Livingston) * source cleanup and API improvement (James Livingston, Jonathan Matthew) * improve status feedback for DAAP (Jonathan Matthew: 322020 and 338978) * memory improvement and leak fixed (James Livingston, Jonathan Matthew) * kill Bonobo support, require DBus, support DBus 0.3.0 (Jonathan Matthew: 339720) * add lyric download and view plugin (Jonathan Matthew: 319320) * add "add to playlist" menu (James Livingston: 323364) * allow changing of audio cd metadata (James Livingston) * improve DAAP handling (William Jon McCann: 342643) * update and write new unit tests (James Livingston) * group sources (Jonathan Matthew) * add new "rhythmbox-client" program (Jonathan Matthew: 340863, 155763) * assorted build fixes (Brian Cameron, Paul Drain, Elijah Newren, Hendrik Richter, Ryan P Skadberg, Götz Waschk, Pawel Worach, FreeBSD GNOME project, others) * HIG and UI improvements (Dennis Cranston, Baptiste Mille-Mathias) * many other bug fixed (Christophe Fergeau, Jaap A. Haitsma, James Livingston, Jonathan Matthew, Mikael Olenfalk, Roozbeh Pournader) Updated Translations -------------------- ca Jordi Mallach cs Miloslav Trmac de Hendrik Richter es Francisco Javier F. Serrador fi Ilkka Tuohela gl Ignacio Casal Quinteiro lt Žygimantas Beručka nb Øivind Hoel, Kjartan Maraas nl Vincent van Adrighem, Wouter Bolsterlee sv Fredrik Tuomas vi Clytie Siddall zh_CN Funda Wang * Where can I get it ? ====================== Source code: http://ftp.gnome.org/pub/GNOME/sources/rhythmbox/0.9/rhythmbox-0.9.5.tar.gz [MD5 sum: 3cbce0fd5ed948e13dabe7be7b9353e9] http://ftp.gnome.org/pub/GNOME/sources/rhythmbox/0.9/rhythmbox-0.9.5.tar.bz2 [MD5 sum: ff55e1db114321b7bdd6e21df1879367] Home Page: http://www.rhythmbox.org/ James "Doc" Livingston From mclasen@redhat.com Tue Jun 20 11:22:11 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3B32C3B043F; Tue, 20 Jun 2006 11:22:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22457-09; Tue, 20 Jun 2006 11:22:09 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 71CF13B00E7; Tue, 20 Jun 2006 11:22:09 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5KFLLnL004523; Tue, 20 Jun 2006 11:21:21 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [172.16.76.12]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5KFLLNA016479; Tue, 20 Jun 2006 11:21:21 -0400 Received: from golem.boston.redhat.com (golem.boston.redhat.com [172.16.80.24]) by mail.boston.redhat.com (8.12.8/8.12.8) with ESMTP id k5KFLKdH032719; Tue, 20 Jun 2006 11:21:20 -0400 Subject: GLib 2.11.4 released From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-list@gnome.org, gtk-app-devel-list@gnome.org Content-Type: text/plain Date: Tue, 20 Jun 2006 11:21:20 -0400 Message-Id: <1150816880.15532.58.camel@golem.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.1 (2.7.1-1) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.543 tagged_above=-999 required=2 tests=[AWL=0.058, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.543 X-Spam-Level: X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2006 15:22:11 -0000 GLib 2.11.4 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.11/ http://ftp.gnome.org/pub/GNOME/sources/glib/2.11/ glib-2.11.4.tar.bz2 md5sum: 9d3a94baa4bfcd9a579b45eea6de3a8c glib-2.11.4.tar.gz md5sum: f7768bc7ed524c6b40cb87daccb6c2b2 This is a development release leading up to GLib 2.12. Notes: * This is unstable development release. While it has had a bit of testing, there are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GLib 2.10. If you have problems, you'll need to reinstall GLib 2.10. * GLib 2.12 will be source and binary compatible with the GLib 2.10.x series (for some caveats, see the README). At this point, the API additions in the 2.11.x series are finished. * Bugs should be reported to http://bugzilla.gnome.org. About GLib ========== GLib is the low-level core library that forms the basis for projects such as GTK+ and GNOME. It provides data structure handling for C, portability wrappers, and interfaces for such runtime functionality as an event loop, threads, dynamic loading, and an object system. More information about GLib is available at: http://www.gtk.org/ An installation guide for the GTK+ libraries, including GLib, can be found at: http://developer.gnome.org/doc/API/2.0/gtk/gtk-building.html Overview of Changes from GLib 2.11.3 to GLib 2.11.4 =================================================== * GBookmarkFile: - g_bookmark_file_remove_item returns a boolean * g_mkstemp accepts the XXXXXX in the middle of the template * Bugs fixed: 344868 g_key_file_to_data should separate groups * Updated translations (de,es,fr,gu,hi,ko,th) A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=344868 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Emmanuele Bassi, Christian Persch, Federico Mena Quintero Matthias Clasen June 20, 2006 From joeshaw@novell.com Mon Jun 19 16:10:21 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id ABD293B0D15 for ; Mon, 19 Jun 2006 16:10:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30318-02 for ; Mon, 19 Jun 2006 16:10:20 -0400 (EDT) Received: from peabody.ximian.com (peabody.ximian.com [130.57.169.10]) by menubar.gnome.org (Postfix) with ESMTP id C79993B084E for ; Mon, 19 Jun 2006 16:10:19 -0400 (EDT) Received: (qmail 29764 invoked from network); 19 Jun 2006 20:09:04 -0000 Received: from localhost (HELO posthaste.boston.ximian.com) (joe@127.0.0.1) by localhost with SMTP; 19 Jun 2006 20:09:04 -0000 Subject: ANNOUNCE: Beagle 0.2.7 From: Joe Shaw To: dashboard-hackers@gnome.org Content-Type: text/plain; charset=UTF-8 Date: Mon, 19 Jun 2006 16:08:58 -0400 Message-Id: <1150747738.21037.1.camel@posthaste.boston.ximian.com> Mime-Version: 1.0 X-Mailer: Evolution 2.6.0 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.362 tagged_above=-999 required=2 tests=[AWL=-0.194, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, TW_BG=0.077, TW_GT=0.077, TW_XD=0.077] X-Spam-Score: -2.362 X-Spam-Level: X-Mailman-Approved-At: Tue, 20 Jun 2006 11:54:51 -0400 Cc: gnome-announce-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jun 2006 20:10:21 -0000 Hi, I'm happy to announce the release of Beagle 0.2.7. This version fixes the dreaded "Lock obtain timed out" bug, includes a new SVG and marks the return of the CHM filter. It introduces a compressed text cache, so that the disk space needed to generate snippets is greatly reduced, and many more bug fixes. OUR MANY URLS ------------- To download the 0.2.7 tarball or learn more, visit the Beagle wiki at: http://www.beagle-project.org The latest gossip is available at: http://www.planetbeagle.org Nat Friedman made some cool movies that demonstrate Beagle in action: http://nat.org/demos We still talk about Beagle on the dashboard-hackers mailing list: http://mail.gnome.org/mailman/listinfo/dashboard-hackers Info on Beagle's participation in Google's Summer of Code can be found here: http://beagle-project.org/Summer_Of_Code WHAT IS BEAGLE? --------------- Beagle is a tool for indexing and searching your data. Beagle is improving rapidly on many fronts, and should work well enough for everyday use. The Beagle daemon transparently monitors your data and updates the index to reflect any changes. On an inotify-enabled system, these updates happen more-or-less in real time. So for example, * Files are immediately indexed when they are created, are re-indexed when they are modified, and are dropped from the index upon deletion. * E-mails are indexed upon arrival. * IM conversations are indexed as you chat, a line at a time. Beagle supports many different file formats including OpenOffice documents, Microsoft Word documents, PDFs, HTML files, and many image, audio and video formats. Beagle can extract information from your file system, Evolution and KMail mailboxes, Evolution calendars and addressbooks, Gaim and Kopete instant messenger conversations, several RSS aggregators, Tomboy notes, Konqueror browsing history, system documentation, and many others. Beagle also indexes tags on your photos from F-Spot and Digikam. Beagle also provides Firefox and Epiphany extensions that index web pages in real-time as the user visits them. Beagle uses the Lucene indexing system from the prodigious Doug Cutting. Beagle includes a GTK-based graphical tool for searching the index that the daemon creates. This application doesn't query the index directly; it passes the search terms to the daemon and the daemon sends any matches back. The user interface then renders the results and allows you to perform useful actions on the matching objects. Indexing your data requires a fair amount of computing power, but the Beagle daemon tries to be as unobtrusive as possible. It contains a scheduler that works to prioritize tasks and control CPU usage, based on whether or not you are actively using your workstation. DEPENDENCY HECK --------------- Beagle requires: * Mono 1.1.13.5 or better, along with the full Mono stack * gtk-sharp 2.3.90 or better * GMime 2.1.19 * Libexif 0.5.7 or better * shared-mime-info For the best possible Beagle experience, you should also have: * GMime 2.2.1 * Evolution-sharp 0.10.2 or 0.11.1 * libgsf 1.12.1 and gsf-sharp 0.6 * Either wv 1.2.0, or a *patched* wv 1.0.3 --- the patch is available from http://users.avafan.com/~fredrik/beagle/wv-libole2-readonly.patch * An inotify-enabled kernel. Inotify is in the mainline Linux kernel as of 2.6.13. And other optional dependencies: http://beagle-project.org/Optional_Prerequisites CHANGES SINCE 0.2.6 ------------------- Daemon/Infrastructure: * Fix bugs in the query parser by using a regular expression-based system. (Max Wiehle, Keving Kubasik) * Compress items in the text cache, greatly reducing disk usage. (Kevin, Lukas Lipka) * Fix a bug in which the sqlite database could get cluttered with older files. (Debajyoti Bera, Joe Shaw) * Again write out the PID of the locking process, or else we cannot effectively detect dangling locks. (Joe) * If we see a lockfile with no PID, assume it's a dangling lock. (Joe) * No longer handle SIGQUIT to shut down the daemon; it's used very valuably by Mono for debugging purposes. (Joe) * Add a BEAGLE_DISABLE_XATTR environment variable to disable extended attribute support for testing purposes. (Joe) * Only print out the inotify "Maximum watch limit hit" warning once. (Joe) * Convert HTML entities when creating snippets. (Lukas, Kevin) * Patch our xdgmime installation to not crash if the data is reloaded while it is processing it. (Joe) * Fix an issue with newer Mono installations where the index helper process would become a zombie after it finished and was never cleaned up. (Joe) * Fix a bug in which properties weren't being sorted and couldn't be found. (Max, Kevin, Bera) * Work around a Mono bug so that dangling symlinks in ~/.beagle/Log are cleaned up at startup. (Joe) Backends: * Generate mail delete events using the indexable generator rather than creating many individual indexables by hand, which could flood the scheduler and slow the system down. (Joe) * Check for exceptions when calling GetChanges() on Evolution calendars and addressbooks. (Joe) Filters: * Added an SVG filter. (Alexander Macdonald) * Re-enable the CHM filter. (Miguel Cabrera) * Close the OpenOffice zip file when we're finished. (Joe) * Index additional info from ebuild files, including installation info and desktop file entries. (Pat Double) * Add duration and bitrate properties to the music filter. (Lukas) * Add a filter for Boo. (Paul Betts) * Don't throw EncodingFoundException in the HTML parser unless asked to. (Bera) * Add application/x-php as a valid mime type for the PHP filter. (Kevin) * Make sure the mime type is lower case before matching on it. (Kevin, Joe) UI: * Catch exceptions if we can't load an application's icons. (Joe, Pierre Poissinger) * Include the date in note tiles. (Lukas) * Only display the first line of a calendar item's description. (Dan Winship) * Use mailto URIs rather than invoking Evolution directly when possible. (Lukas) * Use desktop-launch to open file tiles when applicable. (Lukas) * Make the text in the details pane selectable. (Lukas) * If the calendar's description is empty, still display the item. (Lukas) * Simplify the code for the details pane significantly. (Lukas) * Scale down very large mime icons for display. (Lukas) * Enable the "Open With" menu if GTK+ 2.8 is available at build-time. (Kevin) * Force the window to get wider if the tiles get wider rather than creating a horizontal scrollbar. (Dan) Tools: * Add --enable-deletion to beagle-build-index, which removes deleted files from the index. (Bera) * Add $sharedir/gtk-doc/html and $sharedir/gnome/html to the documentation crawl rules. (Joe) * Fix a typo in the beagled manpage. (Kevin Lamontagne) * Fix bugs dealing with shell quoting in beagle-query. (Max) Translations: * Updated Brazilian Portuguese translation. (Raphael Higino) * Updated Czech translation. (Jakub Friedl) * Updated Dutch translation. (Vincent van Adrighem) * Updated Finnish translation. (Ilkka Tuohela) * Updated Galician translation. (Ignacio Casal Quinteiro) * Updated Greek translation. (Kostas Papadimas) * Updated Japanese translation. (Takeshi Aihana) * Updated Norwegian bokml translation. (ivind Hoel) * Updated Simplified Chinese translation. (Funda Wang) * Updated Spanish translation. (Francisco Javier F. Serrador) * Updated Swedish translation. (Daniel Nylander) * Updated Vietnamese translation. (Clytie Siddall) Everything Else: * Make the Firefox extension work with Bon Echo (2.0 Alpha). (Joe) * Check for mmap() in configure.in, to optimize xdgmime. (Joe) * Add a pkg-config file for the UiUtil.dll assembly. (Luis Medinas) * Getting Dashboard building again. (Luis) KNOWN ISSUES ------------ We still use a bit too much memory. We are working on it. Certain extremely large documents can temporarily degrade your system's performance while they are being indexed. The file system is now much more robust than ever before. However, there are still race conditions that can occur with certain combinations of file system operations. In some cases it might be necessary to stop and restart the daemon. Certain files can crash the underlying libraries Beagle uses to extract metadata. This has been observed in MS Word and JPG files. If you encounter such a crash, please report it to the upstream developer of those libraries (wv1 and libexif for the above, respectively). At this point in development, we cannot commit to stable APIs or file formats. You will almost certainly need to delete your indexes and start again at some point in the future. From s.marechal@jejik.com Mon Jun 19 18:32:09 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 62F693B080B for ; Mon, 19 Jun 2006 18:32:09 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04849-10 for ; Mon, 19 Jun 2006 18:32:04 -0400 (EDT) Received: from smtp-vbr7.xs4all.nl (smtp-vbr7.xs4all.nl [194.109.24.27]) by menubar.gnome.org (Postfix) with ESMTP id 2E4AA3B035F for ; Mon, 19 Jun 2006 18:32:04 -0400 (EDT) Received: from [192.168.1.2] (a82-92-145-91.adsl.xs4all.nl [82.92.145.91]) (authenticated bits=0) by smtp-vbr7.xs4all.nl (8.13.6/8.13.6) with ESMTP id k5JMUN7U092865; Tue, 20 Jun 2006 00:30:24 +0200 (CEST) (envelope-from s.marechal@jejik.com) Message-ID: <449725B0.9050004@jejik.com> Date: Tue, 20 Jun 2006 00:31:12 +0200 From: Sander Marechal User-Agent: Thunderbird 1.5.0.4 (X11/20060615) MIME-Version: 1.0 To: hearts@lists.jejik.com, gnome-announce-list@gnome.org, news@linuxgames.com, webmaster@linuxlinks.com Subject: Gnome Hearts 0.1.1 Release Announcement Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by XS4ALL Virus Scanner X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.557 tagged_above=-999 required=2 tests=[AWL=0.042, BAYES_00=-2.599] X-Spam-Score: -2.557 X-Spam-Level: X-Mailman-Approved-At: Tue, 20 Jun 2006 11:54:51 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: hearts@lists.jejik.com List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jun 2006 22:32:09 -0000 Gnome Hearts 0.1.1 Release Announcement --------------------------------------- Our recently released Gnome Hearts 0.1 suffered from a build problem on distributions that shipped the Lua libraries as liblua instead of liblua50, most notably on the new Suse Linux. Gnome Hearts 0.1.1 fixes this issue, thanks to a patch sent in by a gnomefiles.org contributor. You can download the new tarball from our download section at: http://www.gnome-hearts.org/download/ About Gnome Hearts ------------------ Gnome Hearts is an implementation of the classic hearts card game for the GNOME desktop, featuring configurable rule sets and editable computer opponents to satisfy widely diverging playing styles. Gnome Hearts is Free Software, released under the GNU General Public License and should be able to run on any computer that can run the GNOME desktop. Enjoy, -- Sander Marechal http://www.gnome-hearts.org From peter@peterjohanson.com Tue Jun 20 01:48:23 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3398E3B0E71 for ; Tue, 20 Jun 2006 01:48:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26948-04 for ; Tue, 20 Jun 2006 01:48:21 -0400 (EDT) Received: from cubesearch.com (unknown [207.115.69.50]) by menubar.gnome.org (Postfix) with ESMTP id 7B83E3B05AF for ; Tue, 20 Jun 2006 01:48:21 -0400 (EDT) Received: by cubesearch.com (Postfix, from userid 522) id 8BF0D10E089; Mon, 19 Jun 2006 22:47:22 -0700 (PDT) Date: Mon, 19 Jun 2006 22:47:22 -0700 From: Peter Johanson To: gnome-announce-list@gnome.org Subject: [RELEASE] muine-0.8.5 Message-ID: <20060620054722.GS9163@butchest.cubesearch.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.11 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.55 tagged_above=-999 required=2 tests=[AWL=0.050, BAYES_00=-2.599, SPF_HELO_PASS=-0.001] X-Spam-Score: -2.55 X-Spam-Level: X-Mailman-Approved-At: Tue, 20 Jun 2006 11:54:51 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2006 05:48:23 -0000 Muine is a music player using new UI ideas. The goal is to create a player that eschews the iTunes model in favor of an easier and more comfortable interface. 0.8.5 ===== This release primarily updates Muine to use Gstreamer 0.10 (0.8 is also supported at configure time). Lots of bugfixes have also gone into this release. Details ======= - Gstreamer 0.10 support (configurable, 0.8 is still supported) [Iain, Peter Johanson] - Small shortcut/mnemonics tweaks [Sebastian Heinlein, Wouter Bolsterlee, Peter Johanson] - Fix bug with tray icon not re-appearing after a gnome-panel crash [Ed Catmur, Peter Johanson] - Handle large id3 tags properly [Jorn Baayen] - Properly raise the window when unhiding [Ryan Lortie] - Various build and bugfixes [Peter Johanson] New translations: - Punjabi [Amanpreet Singh Alam] - Thai [Isriya Paireepairit] Updated Translations: - Basque [Inaki Larranaga] - Czech [Miloslav Trmac] - Dutch [Wouter Bolsterlee] - Estonian [Priit Laes] - Finnish [Ilkka Tuohela] - German [Frank Arnold, Hendrik Richter] - Japanese [Takeshi AIHANA] - Spanish [Francisco Javier F. Serrador] - Swedish [Daniel Nylander] - Vietnamese [Clytie Siddall] Download ======== http://www.muine-player.org/wiki/Download Cheers, -pete From olav@bkor.dhs.org Wed Jun 21 16:12:51 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 436D73B0191; Wed, 21 Jun 2006 16:12:51 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02952-03; Wed, 21 Jun 2006 16:12:50 -0400 (EDT) Received: from amsfep20-int.chello.nl (amsfep17-int.chello.nl [213.46.243.15]) by menubar.gnome.org (Postfix) with ESMTP id 551023B0235; Wed, 21 Jun 2006 16:12:49 -0400 (EDT) Received: from bkor.dhs.org ([24.132.164.94]) by amsfep20-int.chello.nl (InterMail vM.6.01.04.04 201-2131-118-104-20050224) with ESMTP id <20060621201243.WMNK3918.amsfep20-int.chello.nl@bkor.dhs.org>; Wed, 21 Jun 2006 22:12:43 +0200 Received: by bkor.dhs.org (Postfix, from userid 501) id A0A54626877; Wed, 21 Jun 2006 22:12:42 +0200 (CEST) Date: Wed, 21 Jun 2006 22:12:42 +0200 From: Olav Vitters To: gnome-announce-list@gnome.org Subject: ANNOUNCE: gnome-blog 0.9.1 released Message-ID: <20060621201242.GI1266@bkor.dhs.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.5.11 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.26 tagged_above=-999 required=2 tests=[AWL=-0.150, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, FORGED_RCVD_HELO=0.135, TW_GT=0.077, TW_SX=0.077] X-Spam-Score: -2.26 X-Spam-Level: Cc: seth@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 20:12:51 -0000 gnome-blog 0.9.1 ================ Been a long time since the last version was released. With the approval of Seth Nickell, I am releasing a newer version. homepage: http://www.gnome.org/~seth/gnome-blog/ (I will probably soon move this to http://www.gnome.org/projects/gnome-blog/) download: http://download.gnome.org/sources/gnome-blog/0.9/ Features ======== * Clean interface doesn't get in the way of what you're writing * WYSIWYG styled text support * Entries can be written gradually over the course of a day, popping gnome blog open and closed as you have thoughts to jot down and then posting at the end of the day * Operates as a panel object/applet or a standalone application * Supports many different kinds of blogs * Spell checking * Drag and drop images into your blog entry (if your blog supports it) Supported Blogs =============== * Blogger.com / Blogspot.com * Advogato.org * Movable Type * WordPress * LiveJournal.com * Pyblosxom * Any other blog using bloggerAPI or MetaWeblog Fixes ===== * Make add link dialog stay near and above the blog window (Tommi Komulainen) * Do not crash when gtkspell is installed but lack a dictionary (Jan Alonzo) * Ensure window looks sane when resized (Olav Vitters) * Ensure blog applet window receives focus with newer metacity versions and make it stay on top (Olav Vitters) * Correctly position blog window beside the applet when using a vertical panel (Olav Vitters) * Make sure CTRL-B (bold), CTRL-I (italic) work when using the applet (Olav Vitters) * Fix blogs.gnome.org XML-RPC URL (Olav Vitters) Translations ============ * Mətin Əmirov (az) * Vladimir Petkov (bg) * Aleix Badia i Bosch (ca) * Miloslav Trmac (cs) * Hendrik Richter (de) * Adam Weinberger (en_CA) * David Lodge (en_GB) * Francisco Javier F. Serrador (es) * Priit Laes (et) * Ilkka Tuohela (fi) * Christophe Merlet (RedFox) (fr) * Pedro Silva (gl) * Robert Sedak (hr) * Gabor Kelemen (hu) * Francesco Gigli (it) * Takeshi AIHANA (ja) * Hasbullah Bin Pit (ms) * Kjartan Maraas (nb) * Jyotshna Shrestha (ne) * Taco Witte (nl) * Arkadiusz Lipiec (pl) * Afonso Celso Medina (pt_BR) * Duarte Loreto (pt) * Steve Murphy (rw) * Laurent Dhima (sq) * Danilo Šegan (sr@Latn) * Данило Шеган (sr) * Daniel Nylander (sv) * Maxim Dziumanenko (uk) * Clytie Siddall (vi) * storm (zh_CN) * Abel Cheung (zh_TW) -- Regards, Olav From mclasen@redhat.com Wed Jun 21 23:10:41 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AA4213B0172; Wed, 21 Jun 2006 23:10:41 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23030-07; Wed, 21 Jun 2006 23:10:39 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 63BA23B0008; Wed, 21 Jun 2006 23:10:39 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5M3AclX021506; Wed, 21 Jun 2006 23:10:38 -0400 Received: from lacrosse.corp.redhat.com (lacrosse.corp.redhat.com [172.16.52.154]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5M3AcnM019751; Wed, 21 Jun 2006 23:10:38 -0400 Received: from [172.16.83.158] (vpn83-158.boston.redhat.com [172.16.83.158]) by lacrosse.corp.redhat.com (8.12.11.20060308/8.11.6) with ESMTP id k5M3AciB004961; Wed, 21 Jun 2006 23:10:38 -0400 Subject: GTK+ 2.9.4 released From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain Organization: Red Hat Date: Wed, 21 Jun 2006 23:12:41 -0400 Message-Id: <1150945961.4457.2.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.7.3 (2.7.3-2) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.507 tagged_above=-999 required=2 tests=[AWL=0.017, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: -2.507 X-Spam-Level: X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 03:10:41 -0000 GTK+ 2.9.4 is now available for download at: http://ftp.gnome.org/pub/gnome/sources/gtk+/2.9/ gtk+-2.9.4.tar.bz2 md5sum: c06cf2cfa66485600d90789c9e58f27c gtk+-2.9.4.tar.gz md5sum: e3fefedc7f1a89b66c71c9967168a857 This is a development release leading up to GTK+ 2.10. Notes: * This is unstable development release. There are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GTK+ 2.8. If you have problems, you'll need to reinstall GTK+ 2.8. * GTK+ 2.10 will be source compatible with the GTK+ 2.8 series; the new API additions in GTK+ 2.9.0 are finalized by now. * The ABI version has been bumped from 2.4.0 to 2.10.0, since the filechooser backend interface has been changed. Third-party filechooser backends need to be ported to the new interface. Other third-party modules (input methods, image loaders, etc) just need to be reinstalled in the proper location for GTK+ to find them. * Remaining issues for GTK+ 2.10 can be found with following bugzilla query: http://bugzilla.gnome.org/buglist.cgi?product=gtk%2b&target_milestone=2.10+API+Freeze&target_milestone=2.10+Freeze&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED * Bugs should be reported to http://bugzilla.gnome.org. What is GTK+ ============ 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.4/gtk/gtk-building.html Common questions: http://developer.gnome.org/doc/API/2.4/gtk/gtk-question-index.html http://www.gtk.org/faq/ Overview of Changes from GTK+ 2.9.3 to 2.9.4 ============================================ * GtkPrintOperation: - UI improvements in the print dialog - Make printing work without a display connection - Replace "Print to PDF" by "Print to file" that can generate PDF or PostScript - Add a function to the low-level API to enumerate all printers * GtkNotebook tab DND has been improved * GtkProgressbar supports text in activity mode * GtkLabel allows to set the wrap mode * GtkStatusIcon supports transparency * Bugs fixed: 344850 Dragging a GtkTreeViewColumn segfaults when using certain GtkTreeViewColumnDropFunc 342458 Stock menu items without icons are broken in recent GTK+ releases. 335873 notebook DND + popup windows 337882 gtk_progress_bar_set_text() does nothing in activity mode 339456 unix print dialogue help button bug 339702 Make sure printing works without a display 341571 tabs too easily reordered 344074 New Feature: get printer list, and get default print 344743 gtk_targets_include_text() should initialize atoms 344838 Allow func to be NULL in gtk_tree_view_set_search_position_func 344891 GtkPrintOperationPreview signal defs correction 345008 Need updated cairo req 345093 print preview temp file issues 345107 Memory leak in gtk_entry_completion_finalize: User data not freed 345194 gdk_window_set_functions() docs need to be updated 345456 grid-lines property is wrongly registered and get/set. 314278 strings in gtk-update-icon-cache are not marked for translation 344707 size group with widgets in hidden container 344897 Entry completion model NULL handling should be documented 345038 gtk_print_job_set_status' status 345106 dialog button box spacings 345176 GtkIconView doc about drag and drop 345275 doc imporovements for gtk_window_move 345320 Two very similiar strings should be made equal 345321 Add meaning of "shortcut" as translator comment 320034 transparency gtkstatusicon 339592 Add print-to-postscript 344867 custom paper file could use keyfile * Updated translations (cs,de,es,fr,gl,gu,hi,ko,ta,th) A list of all bugs fixed in this release can be found at http://bugzilla.gnome.org/buglist.cgi?bug_id=344838,344743,344867,344891,345008,341571,345038,337882,345093,344707,339456,345107,345275,339702,344074,345320,345321,344897,314278,320034,344850,345194,345176,345106,335873,342458,339592,345456 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Christian Persch, John Finlay, Federico Mena Quintero, Michael Emmel, Marko Anastasov, Bastien Nocera, Carlos Garnacho, Yevgen Muntyan, Tommi Komulainen, Tim Janik, Christian Weiske, Behdad Esfahbod, Alexander Larsson, Felipe Heidrich, Hendrik Richter, Claudio Saavedra, Dan Winship, Callum McKenzie, John Palmieri, Murray Cumming, Kristian Rietveld June 21, 2006 Matthias Clasen From cass@skynet.be Wed Jun 21 10:17:16 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9D8BD3B0FB7 for ; Wed, 21 Jun 2006 10:17:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11755-08 for ; Wed, 21 Jun 2006 10:17:15 -0400 (EDT) Received: from dorado.vub.ac.be (mailhost.vub.ac.be [134.184.129.10]) by menubar.gnome.org (Postfix) with ESMTP id D3CD03B0F77 for ; Wed, 21 Jun 2006 10:17:14 -0400 (EDT) Received: from mach.vub.ac.be (maxi.vub.ac.be [134.184.129.8]) by dorado.vub.ac.be (Postfix) with ESMTP id 4B484D7 for ; Wed, 21 Jun 2006 16:17:02 +0200 (CEST) Received: by mach.vub.ac.be (Postfix, from userid 21099) id 274998D01; Wed, 21 Jun 2006 16:17:02 +0200 (CEST) Received: from cass-lpt.ulb.ac.be (f1-pc174.ulb.ac.be [164.15.24.174]) by mach.vub.ac.be (Postfix) with ESMTP id 6C1178D24 for ; Wed, 21 Jun 2006 16:17:01 +0200 (CEST) Subject: XChat-GNOME 0.12 From: Guillaume Desmottes To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=UTF-8 Date: Wed, 21 Jun 2006 16:16:46 +0200 Message-Id: <1150899407.18129.0.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.496 tagged_above=-999 required=2 tests=[AWL=0.026, BAYES_00=-2.599, TW_JH=0.077] X-Spam-Score: -2.496 X-Spam-Level: X-Mailman-Approved-At: Thu, 22 Jun 2006 09:00:41 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 14:17:16 -0000 XChat-GNOME 0.12 “All roads lead to Sean Connery” is now available. * What is it ? ============== XChat-GNOME is a new frontend to the popular X-Chat IRC client which is designed with the user interface foremost in mind. More informations can be found at: http://xchat-gnome.navi.cx/ * What's changed ? ================== - A new sheme for theme-based foreground and backgrond colors, with automatic palette optimization for mIRC color codes. - Remove redundant nicknames (with a gconf key to re-enable them) - Show a whois tooltip on users in the conversation panel - Display a tooltip with the description of plugins - You can now build XChat-GNOME HEAD using jhbuild (using gnome-2.16 modulesets) - A large number of bug fixes and smaller improvements - Updated translations * Contributors to this release ============================== David Trowbridge, Guillaume Desmottes, Christian Persch, Przemyslaw Grzegorczyk, Gathy Grégory, Isak Savo, Steve Frécinaux, Jeremy Nickurak, Dan Kuester, Brian Pepple * Where can I get it ? ====================== http://releases.navi.cx/xchat-gnome/xchat-gnome-0.12.tar.gz http://releases.navi.cx/xchat-gnome/xchat-gnome-0.12.tar.bz2 -- Guillaume Desmottes Jabber GPG 1024D/711E31B1 | 1B5A 1BA8 11AA F0F1 2169 E28A AC55 8671 711E 31B1 From murrayc@murrayc.com Tue Jun 20 13:04:27 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BEAFD3B05E3; Tue, 20 Jun 2006 13:04:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30785-01; Tue, 20 Jun 2006 13:04:23 -0400 (EDT) Received: from swarthymail-a4.dreamhost.com (sd-green-bigip-60.dreamhost.com [208.97.132.60]) by menubar.gnome.org (Postfix) with ESMTP id 7AB3D3B04F0; Tue, 20 Jun 2006 13:04:23 -0400 (EDT) Received: from noname (p5497DB9C.dip.t-dialin.net [84.151.219.156]) by swarthymail-a4.dreamhost.com (Postfix) with ESMTP id AF950129A91; Tue, 20 Jun 2006 10:03:26 -0700 (PDT) Subject: ANNOUNCE: gtkmm 2.9.5 From: Murray Cumming To: gnome-announce , gtkmm-list Content-Type: text/plain Date: Tue, 20 Jun 2006 19:03:22 +0200 Message-Id: <1150823002.6261.21.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.404 tagged_above=-999 required=2 tests=[AWL=0.041, BAYES_00=-2.599, TW_GT=0.077, TW_TK=0.077] X-Spam-Score: -2.404 X-Spam-Level: X-Mailman-Approved-At: Thu, 22 Jun 2006 09:02:35 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2006 17:04:28 -0000 *** gtkmm 2.9/2.10: gtkmm 2.9 wraps new API in GTK+ 2.9, and is API/ABI-compatibile with gtkmm 2.8, 2.6 and 2.4. It is a version of the gtkmm-2.4 API. This will become the API-stable gtkmm 2.10, wrapping GTK+ 2.10. gtkmm stays in-sync with GTK+ by following the official GNOME release schedule: http://www.gnome.org/start/unstable/ Bindings for the rest of the GNOME Platform are also available, and are also API-stable. http://www.gtkmm.org *** Changes gtkmm 2.9.5: Gtk: * Assistant: Added update_buttons_state(). * Button: Added get/set_image_position(). * Clipboard: Added request_rich_text(), wait_for_rich_text(), and wait_rich_text_is_available(). * Entry: Added get/set_inner_border(). * Notebook: Added set_group_id(), get_group_id(), get_tab_reorderable(), set_tab_reorderable(), get_tab_detachable(), set_tab_detachable(). * PrintContext: Added set_cairo_context(). * Printoperation: - run(): Added PrintOperationAction parameter. - Removed set_show_dialog(), set_pdf_target(), set_track_print_status(), run_async(). - Added set_export_filename(), set_track_print_status(), set_show_progress(), set_allow_async(), set_custom_tab_label(). * Fixed warnings (Elijah Newren, Jonathon Jongsma) Pango: * Context: Added get_matrix(). * Font: Added describe_with_absolute_size(), get_font_map(). * FontDescription: Added set_absolute_size(), get_size_is_absolute(). * Layout: Added get_font_description(), index_to_line_x(). * Renderer: Added get_matrix(). *** Download http://www.gtkmm.org/download.shtml You will need libsigc++ 2.0, available here: https://sourceforge.net/project/showfiles.php?group_id=1970 *** Development There is active discussion on the mailing list: http://www.gtkmm.org/mailinglist.shtml and in the #c++ channel on irc.gnome.org -- Murray Cumming murray@usa.net www.murrayc.com From murrayc@murrayc.com Thu Jun 22 17:21:32 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 53AA83B083F; Thu, 22 Jun 2006 17:21:32 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27489-07; Thu, 22 Jun 2006 17:21:31 -0400 (EDT) Received: from swarthymail-a3.dreamhost.com (sd-green-bigip-62.dreamhost.com [208.97.132.62]) by menubar.gnome.org (Postfix) with ESMTP id 713DB3B0823; Thu, 22 Jun 2006 17:21:26 -0400 (EDT) Received: from noname (p5497EA12.dip.t-dialin.net [84.151.234.18]) by swarthymail-a3.dreamhost.com (Postfix) with ESMTP id 13D217F03D; Thu, 22 Jun 2006 14:21:24 -0700 (PDT) Subject: ANNOUNCE: gtkmm 2.9.6 From: Murray Cumming To: gnome-announce , gtkmm-list Content-Type: text/plain Date: Thu, 22 Jun 2006 23:21:22 +0200 Message-Id: <1151011282.5804.37.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.4 tagged_above=-999 required=2 tests=[AWL=0.045, BAYES_00=-2.599, TW_GT=0.077, TW_TK=0.077] X-Spam-Score: -2.4 X-Spam-Level: X-Mailman-Approved-At: Thu, 22 Jun 2006 19:51:58 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 21:21:32 -0000 *** gtkmm 2.9/2.10: gtkmm 2.9 wraps new API in GTK+ 2.9, and is API/ABI-compatibile with gtkmm 2.8, 2.6 and 2.4. It is a version of the gtkmm-2.4 API. This will become the API-stable gtkmm 2.10, wrapping GTK+ 2.10. gtkmm stays in-sync with GTK+ by following the official GNOME release schedule: http://www.gnome.org/start/unstable/ Bindings for the rest of the GNOME Platform are also available, and are also API-stable. http://www.gtkmm.org *** Changes gtkmm 2.9.6: Gtk: * Label: Added get/set_line_wrap_mode() and property. * MenuShell: Added get/set_take_focus() and property. * MessageDialog: Added set_image() and property. * StatusIcon: Added get_geometry(). * TreeView: Added get/set_rubber_banding(), get/set_grid_lines(), get/set_enable_tree_lines(). Added properties for show-expanders, level-indentation, rubber-banding, enable-grid-lines, and enable-tree-lines. (Murray Cumming) * PrintJob: send_job(): No longer throws an exception. * PrintUnixDialog: Added add_custom_tab() overload that takes a ustring. * Printer: Added get_job_count(), and enumerate_printers(), and others. * Printsettings: - Put the standard settings in a member class so they can be used as Gtk::PrintSettings::Keys::SOMETHING. - Remove get/set_print_to_file(). * PrintOperation: Added a version of run() without the Window parameter. * PrintOperationPreview: New class. (Most printing stuff: Marko Anastasov) *** Download http://www.gtkmm.org/download.shtml You will need libsigc++ 2.0, available here: https://sourceforge.net/project/showfiles.php?group_id=1970 *** Development There is active discussion on the mailing list: http://www.gtkmm.org/mailinglist.shtml and in the #c++ channel on irc.gnome.org -- Murray Cumming murray@usa.net www.murrayc.com From bryce@bryceharrington.org Sat Jun 24 01:30:28 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 157CC3B0150 for ; Sat, 24 Jun 2006 01:30:28 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25007-03 for ; Sat, 24 Jun 2006 01:30:24 -0400 (EDT) Received: from dc2-web15.assortedinternet.com (dc2-web15.assortedinternet.com [66.36.233.162]) by menubar.gnome.org (Postfix) with ESMTP id 701A03B0132 for ; Sat, 24 Jun 2006 01:30:24 -0400 (EDT) Received: from c-24-20-224-228.hsd1.or.comcast.net ([24.20.224.228] helo=localhost) by dc2-web15.assortedinternet.com with esmtpa (Exim 4.52) id 1Fu0in-0003sK-Oi for gnome-announce-list@gnome.org; Sat, 24 Jun 2006 01:30:18 -0400 Date: Fri, 23 Jun 2006 22:28:53 -0700 From: Bryce Harrington To: gnome-announce-list@gnome.org Subject: Inkscape Announces 0.44 Release :: http://www.inkscape.org Message-ID: <20060624052853.GE23238@bryceharrington.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.11 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - dc2-web15.assortedinternet.com X-AntiAbuse: Original Domain - gnome.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - bryceharrington.org X-Source: X-Source-Args: X-Source-Dir: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.597 tagged_above=-999 required=2 tests=[AWL=0.002, BAYES_00=-2.599] X-Spam-Score: -2.597 X-Spam-Level: X-Mailman-Approved-At: Sat, 24 Jun 2006 06:24:44 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jun 2006 05:30:28 -0000 The Inkscape community today officially released the latest version of its vector graphic drawing software. Inkscape 0.44 adds many new features, is faster and more usable, better supports SVG, is translated into more languages (17 on last count), and adds a lot of polish and refinement. Major new features include Layers dialog, support for clipping and masking, improved PDF export with transparency, configurable keyboard shortcuts, innovative "node sculpting" capability in Node tool, and the Outline mode. Significant gains are achieved in performance, especially in screen rendering and Node tool. Noticeable user interface changes include docked color swatches, interactive style indicator in the statusbar, a redesigned preferences dialog, a text toolbar, and new icons. Our SVG compliance has also taken a step forward, with the added support for the tag and ICC color profiles for images. This release also includes hundreds of smaller features, usability enhancements and bug fixes. For several releases, a collection of extension effects was shipped with Inkscape, but the Effects menu to access them was turned off by default. With this release, it has become mature enough, with effects working out of the box on all platforms, so this menu is enabled. We'd like to thank Google for their sponsorship of five students to work, during the summer of 2006, on several Inkscape development efforts: SVG Filters, Inkboard protocol, PDF export with Cairo, and memory optimization. Download Linux, Windows, and Mac OS X packages: http://sourceforge.net/project/showfiles.php?group_id=93438 For many more details, see the complete Release Notes for 0.44: http://wiki.inkscape.org/wiki/index.php/Release_Notes Community submitted screenshots: http://www.inkscape.org/screenshots/ ===About Inkscape=== Inkscape is an open source drawing tool that uses the World Wide Web Consortium's ([[W3C]]) scalable vector graphics format (SVG). Some supported SVG features include basic shapes, paths, text, markers, clones, alpha blending, transforms, gradients, and grouping. In addition, Inkscape supports Creative Commons' metadata, node-editing, layers, complex path operations, text-on-path, text-in-shape, and SVG XML editing. It can also import EPS, PostScript, and most bitmap formats, and exports PNG, PS, PDF and various vector formats. Inkscape's main motivation is to provide the Open Source community with a fully [[W3C]] compliant XML, SVG, and CSS2 drawing tool. Additional work includes conversion of the codebase from C/Gtk to C++/Gtkmm, emphasizing a lightweight core with powerful features added through an extension mechanism, and maintaining a friendly, open, community-oriented development process. From rejon@freedesktop.org Sun Jun 25 10:52:07 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C309D3B009A for ; Sun, 25 Jun 2006 10:52:07 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18260-01 for ; Sun, 25 Jun 2006 10:52:06 -0400 (EDT) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.208.82]) by menubar.gnome.org (Postfix) with ESMTP id 4BFB03B008F for ; Sun, 25 Jun 2006 10:52:06 -0400 (EDT) Received: by gabe.freedesktop.org (Postfix, from userid 2695) id 5EDA79ED2A; Sun, 25 Jun 2006 07:51:01 -0700 (PDT) To: gnome-announce-list@gnome.org From: Jon Phillips Subject: Inkscape Announces 0.44 Release :: http://www.inkscape.org Content-Type: text/plain Message-Id: <20060625145101.5EDA79ED2A@gabe.freedesktop.org> Date: Sun, 25 Jun 2006 07:51:01 -0700 (PDT) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.599 tagged_above=-999 required=2 tests=[BAYES_00=-2.599] X-Spam-Score: -2.599 X-Spam-Level: X-Mailman-Approved-At: Mon, 26 Jun 2006 03:57:39 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Jun 2006 14:52:07 -0000 Inkscape Announces 0.44 Release :: http://www.inkscape.org The Inkscape community today officially released the latest version of its vector graphic drawing software. Inkscape 0.44 adds many new features, is faster and more usable, better supports SVG, is translated into more languages (17 on last count), and adds a lot of polish and refinement. Major new features include Layers dialog, support for clipping and masking, improved PDF export with transparency, configurable keyboard shortcuts, innovative "node sculpting" capability in Node tool, and the Outline mode. Significant gains are achieved in performance, especially in screen rendering and Node tool. Noticeable user interface changes include docked color swatches, interactive style indicator in the statusbar, a redesigned preferences dialog, a text toolbar, and new icons. Our SVG compliance has also taken a step forward, with the added support for the tag and ICC color profiles for images. This release also includes hundreds of smaller features, usability enhancements and bug fixes. For several releases, a collection of extension effects was shipped with Inkscape, but the Effects menu to access them was turned off by default. With this release, it has become mature enough, with effects working out of the box on all platforms, so this menu is enabled. The Inkscape developer community would like to thank Google for their sponsorship of five students to work, during the summer of 2006, on several Inkscape development efforts: SVG Filters, Inkboard protocol, PDF export with Cairo, and memory optimization. Download Linux, Windows, and Mac OS X packages: http://sourceforge.net/project/showfiles.php?group_id=93438 For many more details, see the complete Release Notes for 0.44: http://wiki.inkscape.org/wiki/index.php/Release_Notes Community submitted screenshots: http://www.inkscape.org/screenshots/ About Inkscape Inkscape is an open source drawing tool that uses the World Wide Web Consortium's ([[W3C]]) scalable vector graphics format (SVG). Some supported SVG features include basic shapes, paths, text, markers, clones, alpha blending, transforms, gradients, and grouping. In addition, Inkscape supports Creative Commons' metadata, node-editing, layers, complex path operations, text-on-path, text-in-shape, and SVG XML editing. It can also import EPS, PostScript, and most bitmap formats, and exports PNG, PS, PDF and various vector formats. Inkscape's main motivation is to provide the Open Source community with a fully [[W3C]] compliant XML, SVG, and CSS2 drawing tool. Additional work includes conversion of the codebase from C/Gtk to C++/Gtkmm, emphasizing a lightweight core with powerful features added through an extension mechanism, and maintaining a friendly, open, community-oriented development process. From phoenix@nova.es Wed Jun 28 17:32:54 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7BBC83B0100 for ; Wed, 28 Jun 2006 17:32:54 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02743-08 for ; Wed, 28 Jun 2006 17:32:52 -0400 (EDT) Received: from localhost.localdomain (171.Red-80-34-230.staticIP.rima-tde.net [80.34.230.171]) by menubar.gnome.org (Postfix) with ESMTP id BDEEC3B00A3 for ; Wed, 28 Jun 2006 17:32:50 -0400 (EDT) Received: by localhost.localdomain (Postfix, from userid 1000) id BC029821BA; Sun, 25 Jun 2006 15:37:41 +0200 (CEST) Subject: ANNOUNCE: Nautilus-Sendto 0.6 & 0.7 From: Roberto Majadas To: Gnome Announce Content-Type: multipart/alternative; boundary="=-jsBhLm2jjnt8W4Xg4Kr+" Date: Sun, 25 Jun 2006 15:37:40 +0200 Message-Id: <1151242661.7517.8.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.93 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, HTML_40_50=0.496, HTML_MESSAGE=0.001, RCVD_IN_XBL=3.897] X-Spam-Score: 1.93 X-Spam-Level: * X-Mailman-Approved-At: Thu, 29 Jun 2006 03:00:17 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Jun 2006 21:32:54 -0000 --=-jsBhLm2jjnt8W4Xg4Kr+ Content-Type: text/plain Content-Transfer-Encoding: 7bit NAUTILUS SEND-TO (0.6 & 0.7) * What it is ? ============== This application provide integration between nautilus , evolution , gaim and gnome-bluetooth ============ Version 0.7 ============ Nautilus Sendto * Quick revision. I don't include some files to POTFILES.in ============ Version 0.6 ============ Nautilus Sendto * Added support for gajim * Added support for sylpheed-claws * Added initial support for thunderbird. Thunderbird don't support attachment by command line atm. * Added initial support for Balsa. Balsa don't support attachment by command line atm. * Many bugfixes Special Thanks to : Bastien Nocera (He resolve many many bugs while i was busy in my work, Thanks guy !) Dimitur Kirov (He developed gajim support) Peter Enseleit (he developed balsa, sylpheed and thunderbird support) * Features ========== * Nautilus context menu component ("Send To...") . * A dialog for insert the email acount or IM account which you want to send the file/files . * Contact with evolution-data-server and get the email accounts . * Contact with gaim (nautilus gaim plugin) and get the IM acccounts * Send to bluetooth devices detected from gnome-bluetooth * You can send files packaged in varios formats --=-jsBhLm2jjnt8W4Xg4Kr+ Content-Type: text/html; charset=utf-8 NAUTILUS SEND-TO (0.6 & 0.7)

* What it is ?
==============

This application provide integration between nautilus , evolution ,
gaim and gnome-bluetooth


============
Version 0.7
============

Nautilus Sendto
        * Quick revision. I don't include some files to POTFILES.in

============
Version 0.6
============

Nautilus Sendto
        * Added support for gajim
        * Added support for sylpheed-claws
        * Added initial support for thunderbird. Thunderbird don't support attachment by command line atm.
        * Added initial support for Balsa. Balsa don't support attachment by command line atm.
        * Many bugfixes

        Special Thanks to :
                Bastien Nocera (He resolve many many bugs while i was busy in my work, Thanks guy !)
                Dimitur Kirov (He developed gajim support)
                Peter Enseleit (he developed balsa, sylpheed and thunderbird support)

* Features
==========
      * Nautilus context menu component ("Send To...") .
      * A dialog for insert the email acount or IM account which you
        want to send the file/files .
              * Contact with evolution-data-server and get the email
                accounts .
              * Contact with gaim (nautilus gaim plugin) and get the IM
                acccounts
	      * Send to bluetooth devices detected from gnome-bluetooth
              * You can send files packaged in varios formats

--=-jsBhLm2jjnt8W4Xg4Kr+-- From callum@spooky-possum.org Thu Jun 29 04:08:17 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 903F53B01CE; Thu, 29 Jun 2006 04:08:17 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28081-02; Thu, 29 Jun 2006 04:08:09 -0400 (EDT) Received: from genamics.blastula.net (dns1.blastula.net [64.92.214.155]) by menubar.gnome.org (Postfix) with ESMTP id B42D13B0423; Thu, 29 Jun 2006 04:07:56 -0400 (EDT) Received: from [60.234.108.157] (helo=[60.234.108.157]) by genamics.blastula.net with esmtpa (Exim 4.52) id 1FvrZ5-0003f6-67; Thu, 29 Jun 2006 20:07:56 +1200 Subject: gnome-games 2.14.2.1 From: Callum McKenzie To: games-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Date: Thu, 29 Jun 2006 20:07:45 +1200 Message-Id: <1151568466.22419.21.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Antivirus-Scanner: Clean mail though you should still use an Antivirus X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - genamics.blastula.net X-AntiAbuse: Original Domain - gnome.org X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [47 12] X-AntiAbuse: Sender Address Domain - spooky-possum.org X-Source: X-Source-Args: X-Source-Dir: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.543 tagged_above=-999 required=2 tests=[AWL=0.056, BAYES_00=-2.599] X-Spam-Score: -2.543 X-Spam-Level: X-Mailman-Approved-At: Thu, 29 Jun 2006 07:32:02 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: callum@spooky-possum.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 08:08:18 -0000 gnome-games 2.14.2.1 ==================== This release is primarily to fix a crash that occurs in Aisleriot when you change games. An upgrade is strongly recommended. It also fixes a high-score file corruption bug when entering short names for the high scores table. As a bonus there are also translation updates. Get it from: http://download.gnome.org/sources/gnome-games/2.14/ - Callum From cjb@mrao.cam.ac.uk Fri Jun 30 10:57:08 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3683C3B013B; Fri, 30 Jun 2006 10:57:08 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26976-04; Fri, 30 Jun 2006 10:57:07 -0400 (EDT) Received: from mraos.ra.phy.cam.ac.uk (mraos.ra.phy.cam.ac.uk [131.111.48.8]) by menubar.gnome.org (Postfix) with ESMTP id D4BBD3B013F; Fri, 30 Jun 2006 10:57:06 -0400 (EDT) Received: from skye.ra.phy.cam.ac.uk ([131.111.48.158] ident=mail) by mraos.ra.phy.cam.ac.uk with esmtp (Exim 4.43) id 1FwKQb-0001M9-M7; Fri, 30 Jun 2006 15:57:05 +0100 Received: from islay.ra.phy.cam.ac.uk ([131.111.48.119]) by skye.ra.phy.cam.ac.uk with esmtp (Exim 3.36 #1) id 1FwKQb-0006Vd-00; Fri, 30 Jun 2006 15:57:05 +0100 To: foundation-announce@gnome.org Subject: Women's Summer Outreach Program 2006 Update. From: Chris Ball Date: Fri, 30 Jun 2006 15:57:04 +0100 Message-ID: User-Agent: Gnus/5.110002 (No Gnus v0.2) XEmacs/21.4 (Social Property, linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.563 tagged_above=-999 required=2 tests=[AWL=0.036, BAYES_00=-2.599] X-Spam-Score: -2.563 X-Spam-Level: X-Mailman-Approved-At: Fri, 30 Jun 2006 18:08:19 -0400 Cc: gnome-announce-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jun 2006 14:57:08 -0000 Dear all, We're thrilled to announce that Google is donating funds to double the number of available projects for the WSOP[1] from three to six, due to the project getting a huge response from interested women. We'll be announcing the six accepted projects tomorrow. Many thanks to Google! - Chris. [1]: http://www.gnome.org/projects/wsop/ -- Chris Ball From mclasen@redhat.com Mon Jun 5 14:15:03 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 744343B09D3; Mon, 5 Jun 2006 14:15:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20278-06; Mon, 5 Jun 2006 14:15:01 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id D637E3B0988; Mon, 5 Jun 2006 14:15:00 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k55IF08I024331; Mon, 5 Jun 2006 14:15:00 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [172.16.76.12]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k55IF0I9021827; Mon, 5 Jun 2006 14:15:00 -0400 Received: from golem.boston.redhat.com (golem.boston.redhat.com [172.16.80.24]) by mail.boston.redhat.com (8.12.8/8.12.8) with ESMTP id k55IExAV012588; Mon, 5 Jun 2006 14:14:59 -0400 From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain; charset=UTF-8 Date: Mon, 05 Jun 2006 14:14:59 -0400 Message-Id: <1149531299.4071.35.camel@golem.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.1 (2.7.1-1) Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.543 tagged_above=-999 required=2 tests=[AWL=0.058, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.543 X-Spam-Level: Cc: Subject: GLib 2.11.2 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jun 2006 18:15:03 -0000 GLib 2.11.2 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.11/ http://ftp.gnome.org/pub/GNOME/sources/glib/2.11/ glib-2.11.2.tar.bz2 md5sum: 18464b85bfd589f83897623c637a1553 glib-2.11.2.tar.gz md5sum: f728cd295ac98d4b95d850fe91c05fd5 This is a development release leading up to GLib 2.12. Notes: * This is unstable development release. While it has had a bit of testing, there are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GLib 2.10. If you have problems, you'll need to reinstall GLib 2.10. * GLib 2.12 will be source and binary compatible with the GLib 2.10.x series (for some caveats, see the README). At this point, the API additions in the 2.11.x series are almost finished. * Bugs should be reported to http://bugzilla.gnome.org. About GLib ========== GLib is the low-level core library that forms the basis for projects such as GTK+ and GNOME. It provides data structure handling for C, portability wrappers, and interfaces for such runtime functionality as an event loop, threads, dynamic loading, and an object system. More information about GLib is available at: http://www.gtk.org/ An installation guide for the GTK+ libraries, including GLib, can be found at: http://developer.gnome.org/doc/API/2.0/gtk/gtk-building.html Overview of Changes from GLib 2.11.1 to GLib 2.11.2 =================================================== * Add g_ascii_stroll to parse signed 64bit integers * GMarkup: add a flag to treat CDATA as text * GHashTable: add functions to remove all entries * GMainLoop: add functions to find the currently running source, and determine if it is destroyed * Bug fixes: 342563 g_atomic_thread_init() needs to be called before other _g_*_thread_init() functions 343548 Potential use after free in callers of g_string_free() 168538 Wish: Clearing contents of GHashTables 321886 GTK+ cannot be reliably used in multi-threaded applications 341826 goption.c: 'strtoll' is C99's function 343899 g_ascii_formatd dosn't work as expected for all format strings 317793 Make GEnumValue strings const 337129 Compile warnings in G_IMPLEMENT_INTERFACE 303622 What is G_TYPE_CHAR? * Updated translations (bg,dz,eu,gl,ja,nl,th,vi) A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=341826,342563,343548,168538,168538,321886,343899,321886,317793,337129,303622 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Peter Kjellerstedt, Kazuki Iwamoto Leonard den Ottolander, Chris Wilson, Behdad Esfahbod, Matt Barnes, ystein Johansen, Tim Janik Morten Welinder Matthias Clasen June 5, 2006 From mclasen@redhat.com Mon Jun 5 16:21:34 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 09B113B0543; Mon, 5 Jun 2006 16:21:34 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28553-01; Mon, 5 Jun 2006 16:21:32 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 0F8903B0012; Mon, 5 Jun 2006 16:21:31 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k55KLVn7006951; Mon, 5 Jun 2006 16:21:31 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [172.16.76.12]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k55KLUBq020469; Mon, 5 Jun 2006 16:21:31 -0400 Received: from golem.boston.redhat.com (golem.boston.redhat.com [172.16.80.24]) by mail.boston.redhat.com (8.12.8/8.12.8) with ESMTP id k55KLUAV025318; Mon, 5 Jun 2006 16:21:30 -0400 From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain Date: Mon, 05 Jun 2006 16:21:30 -0400 Message-Id: <1149538890.4071.40.camel@golem.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.1 (2.7.1-1) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.429 tagged_above=-999 required=2 tests=[AWL=-0.059, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_GD=0.077, TW_GT=0.077, TW_XI=0.077] X-Spam-Score: -2.429 X-Spam-Level: Cc: Subject: GTK+ 2.9.2 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jun 2006 20:21:34 -0000 GTK+ 2.9.2 is now available for download at: http://ftp.gnome.org/pub/gnome/sources/gtk+/2.9/ gtk+-2.9.2.tar.gz md5sum: c63e7d0cf7c4e983206c3088a0fb8862 gtk+-2.9.2.tar.bz2 md5sum: 17629437af44fce03485101371c8f041 This is a development release leading up to GTK+ 2.10. Notes: * This is unstable development release. There are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GTK+ 2.8. If you have problems, you'll need to reinstall GTK+ 2.8. * GTK+ 2.10 will be source compatible with the GTK+ 2.8 series; the new API additions in GTK+ 2.9.0 are not yet completely finalized, so there are likely incompatibilies between this release and the final 2.10 release. * The ABI version has been bumped from 2.4.0 to 2.10.0, since the filechooser backend interface has been changed. Third-party filechooser backends need to be ported to the new interface. Other third-party modules (input methods, image loaders, etc) just need to be reinstalled in the proper location for GTK+ to find them. * Remaining issues for GTK+ 2.10 can be found with following bugzilla query: http://bugzilla.gnome.org/buglist.cgi?product=gtk%2b&target_milestone=2.10+API+Freeze&target_milestone=2.10+Freeze&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED * Bugs should be reported to http://bugzilla.gnome.org. What is GTK+ ============ 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.4/gtk/gtk-building.html Common questions: http://developer.gnome.org/doc/API/2.4/gtk/gtk-question-index.html http://www.gtk.org/faq/ Overview of Changes from GTK+ 2.9.1 to 2.9.2 ============================================ * GtkPrintOperation - Support asynchronous pagination with the ::paginate signal - Add gtk_print_operation_cancel - Support application-specific widgets - Allow disabling features based on application capabilities - Optionally show progress - Change some function names in GtkPrintContext to be longer and better - Support preview, the default implementation spawns evince, but the api allows for an internal preview implementation * GtkCellView - Add a model property * GtkStatusIcon - Allow to obtain screen geometry * GtkTreeView - Many bug fixes, in particular for RTL handling - Separate sensitive and selectable properties of rows - Optionally allow rubberband selection * GtkButton - Add image-spacing style property - Add image-position property * GtkToolButton - Add icon-spacing style property * Make GTK+ work as an untrused X client * Bugs fixed: 343838 gtkprintoperationpreview.h guards 305530 Crashes while creating source code w/GtkFontSelection 341327 Memory corruption inside glib 341734 cursor blocked to dnd mode after using shift and dnd on a GtkCalendar 343453 G_DEFINE_TYPE messes up internal typenames of GdkWindow and GdkPixmap 136571 Problems running as untrusted client 168105 the right edge tab does not appear when switching tab 172535 Add support for UI builders in gtk+ 302556 GtkTreeView widget signals are badly documented 324480 Selecting first item with keyboard is difficult 340428 small cleanup 340444 don't run the custom page size dialogue 340839 Critical warnings in GtkTreeModelFilter 341898 gtk_tree_view_insert_column_with_attributes doesn't work with fixed_height_mode 342003 DnD: Conditional jump or move depends on uninitialised value 342072 Wrong drop location in GtkEntry 342096 GtkImage animation CRITICALS on switching themes 342513 widget class style property with type module 342529 gdk should set resolution on PangoCairoFontmap, not PangoCairoContext 342535 Add documentation for new GtkWidget style properties (including Since tags) 342543 can't compile gtk+ on opensolaris using sun cc 342569 Typo in decl of gdk_color_parse 342752 Need a way to specify custom tab label for custom page in Print dialog 342754 print-editor: font button dialog doesn't get focus if main window has a window group 342781 GtkPrintUnixDialog: Collate should be insensitive unless Copies is > 1 342783 GtkPrintUnixDialog: Range textinput area should be insensitive unless range radiobutton is selected 342894 Use after free inside gtk_text_view_set_buffer 342930 GtkButton should offer a way to position the image relative to the text 343088 Some typos in the PO file 343425 "grab-notify"-signal is not correctly propagated for internal children 343438 gtk_color_button_set_color() doesn't emit "color-set" signal 343475 page setup unix dialog confusion 343625 allow to get only some info from gtk_status_icon_get_geometry 343677 GtkWindow chains key-release to key-press 320431 Text too close when using East/West in a GtkToolButton 321523 GtkTreeView's test_expand_row signal emitting impractical on row expand all 342007 Warning in gtk_paned_compute_position 343233 gdk_rectangle_intersect doc 333284 expander animation not working in RTL mode 343444 change color of gtk-demo source-buffer comment color from red to DodgerBlue 343630 Small inconsistence in migration documentation 80127 Rubberbanding for GtkTreeView 341450 status icon + libnotify 341679 Allow absolute filenames in the options entries * Updated translations (bg,cy,de,el,es,et,eu,gl,gu,it,ja, nb,nl,pt_BR,th,vi) Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Alexander Larsson, Behdad Esfahbod, Benjamin Berg, Caolan McNamara, Carlos Garnacho Parro, Carol Spears, Christian Persch, Chris Wilson, Claudio Saavedra, Clytie Siddall, Damon Chaplin, Daniel Lindenaar, Dan Winship, Diana Fong, Ed Catmur, Emmanuele Bassi, Havoc Pennington, Henrique Romano, Hiroyuki Ikezoe, James Moger, Johan Dahlin, Kouhei Sutou, Kristian Rietveld, Markku Vire, Mart Raudsepp, Masatake Yamato, Michael Emmel, Michael Natterer, Murray Cumming, Olexiy Avramchenko, Paolo Borelli, Patrick Monnerat, Richard Hult, Sampo Savolainen, Sebastien Bacher, Srirama Sharma, Stefan Kost, Tim Janik, Tommi Komulainen, Tor Lillqvist, Yevgen Muntyan A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=342072,342096,342003,341734,305530,168105,342007,342529,342535,342543,342569,341679,342752,172535,342513,342781,342783,342754,136571,341450,333284,340428,340839,341898,321523,343088,343233,324480,342894,320431,342930,343453,343425,343438,343444,340444,343475,302556,343677,343625,80127,343838,341327,168105,343630 Matthias Clasen June 5, 2006 From thomas@apestaart.org Tue Jun 6 06:04:09 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id ABA3E3B0750; Tue, 6 Jun 2006 06:04:09 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04145-08; Tue, 6 Jun 2006 06:04:08 -0400 (EDT) Received: from mx1.es6.egwn.net (server02.es6.egwn.net [195.10.6.12]) by menubar.gnome.org (Postfix) with ESMTP id 6BEAF3B014E; Tue, 6 Jun 2006 06:04:08 -0400 (EDT) Received: from mx1.fr4.egwn.net (server07.fr4.egwn.net [62.39.85.77]) by mx1.es6.egwn.net (Postfix) with ESMTP id D5F0C4F82E2; Tue, 6 Jun 2006 12:04:05 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by mx1.fr4.egwn.net (spiffy mail daemon) with ESMTP id 0D94183BE7; Tue, 6 Jun 2006 12:04:00 +0200 (CEST) Received: from mx1.fr4.egwn.net ([127.0.0.1]) by localhost (server07.fr4.egwn.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16922-12; Tue, 6 Jun 2006 12:03:14 +0200 (CEST) Received: from thread.fluendo.lan (core.fluendo.com [195.10.6.237]) by mx1.fr4.egwn.net (spiffy mail daemon) with ESMTP id C559583BE4; Tue, 6 Jun 2006 12:03:14 +0200 (CEST) Received: from thomas.fluendo.lan (thomas.fluendo.lan [192.168.1.10]) by thread.fluendo.lan (Postfix) with ESMTP id 6EF06FFDB; Tue, 6 Jun 2006 12:03:18 +0200 (CEST) From: Thomas Vander Stichele To: gnome-hackers@gnome.org In-Reply-To: <1148971293.12902.2.camel@red> References: <1139648664.6627.40.camel@localhost> <1148971293.12902.2.camel@red> Content-Type: text/plain Date: Tue, 06 Jun 2006 12:03:19 +0200 Message-Id: <1149588200.24971.3.camel@otto.amantes> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 (2.6.1-1.fc5.2) Content-Transfer-Encoding: 7bit X-Scanned: By amavis at egwn.net X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.626 tagged_above=-999 required=2 tests=[AWL=-0.070, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, RCVD_IN_SBL=3.16] X-Spam-Score: 0.626 X-Spam-Level: Cc: gnome-announce-list@gnome.org, devel-announce-list@gnome.org Subject: Re: Subversion migration schedule (new cut-off Fri 16 June) X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 10:04:10 -0000 On Tue, 2006-05-30 at 13:41 +0700, Ross Golder wrote: > Hi, > > As the various show-stoppers that prevented our previously scheduled > migration from going ahead have now been resolved, I am proposing that > the new migration go ahead at 23:59UTC on Friday 16th June 2006. Please > let us know a.s.a.p if that will be inconvenient for anyone. It may be inconvenient for any hack sessions done at GUADEC if it leaves people with too little time to convert their laptop checkouts properly, or if anything goes wrong with the conversion. I don't know if that's important enough of a reason, but it'd be too bad if we'd be stifling the surge of activity at GUADEC. Thomas From carlosg@gnome.org Tue Jun 6 10:05:02 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1A0BD3B0132; Tue, 6 Jun 2006 10:05:02 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26815-01; Tue, 6 Jun 2006 10:05:01 -0400 (EDT) Received: from localhost.localdomain (133.Red-88-0-26.dynamicIP.rima-tde.net [88.0.26.133]) by menubar.gnome.org (Postfix) with ESMTP id CB9F23B0107; Tue, 6 Jun 2006 10:05:00 -0400 (EDT) Received: by localhost.localdomain (Postfix, from userid 1000) id 7F37E13F73; Tue, 6 Jun 2006 16:04:58 +0200 (CEST) From: Carlos Garnacho To: system-tools-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Tue, 06 Jun 2006 16:04:57 +0200 Message-Id: <1149602697.21203.7.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.528 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, RCVD_IN_NJABL_DUL=1.946, RCVD_IN_SORBS_DUL=2.046] X-Spam-Score: 1.528 X-Spam-Level: * X-Mailman-Approved-At: Tue, 06 Jun 2006 10:20:33 -0400 Cc: Subject: System Tools Backends 1.9.0 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 14:05:02 -0000 The System Tools Backends version 1.9.0 "Pluto tan" have been released. This is the first release towards 2.x series, which will feature DBus interfaces to access data, signals to notify asynchronously about modifications in the configuration and a cleaner codebase. If you're interested in the 1.4.x series, checkout the stb-1-4 CVS branch. The System Tools Backends are a set of cross-platform modules for Linux, FreeBSD and other Unix systems. The backends provide an common DBus interface to all distros for modifying or reading the system configuration. Right now the System Tools Backends fully support various distros/OS such as: Redhat, Mandrake, SuSE, Fedora, Debian (and derivations like Ubuntu, Linex, Guadalinex...), Gentoo, Slackware, FreeBSD, OpenNA, PLD, Vine and Specifix. Downloading =========== You can get it from : http://system-tools-backends.freedesktop.org/downloads/1.9/ From carlosg@gnome.org Tue Jun 6 10:05:22 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B7A6E3B014C; Tue, 6 Jun 2006 10:05:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26770-09; Tue, 6 Jun 2006 10:05:22 -0400 (EDT) Received: from localhost.localdomain (133.Red-88-0-26.dynamicIP.rima-tde.net [88.0.26.133]) by menubar.gnome.org (Postfix) with ESMTP id 7A00B3B012A; Tue, 6 Jun 2006 10:05:21 -0400 (EDT) Received: by localhost.localdomain (Postfix, from userid 1000) id 0618413F73; Tue, 6 Jun 2006 16:05:20 +0200 (CEST) From: Carlos Garnacho To: system-tools-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Tue, 06 Jun 2006 16:05:19 +0200 Message-Id: <1149602719.21203.9.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.528 tagged_above=-999 required=2 tests=[AWL=-0.000, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, RCVD_IN_NJABL_DUL=1.946, RCVD_IN_SORBS_DUL=2.046] X-Spam-Score: 1.528 X-Spam-Level: * X-Mailman-Approved-At: Tue, 06 Jun 2006 10:20:34 -0400 Cc: Subject: Liboobs 0.1.0 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 14:05:22 -0000 Liboobs 0.1.0, 2006-06-06 ----------------------------------------------- Liboobs version 0.1.0 "Shattered ataraxia" has been released. Liboobs is a lightweight library that provides a GObject based interface to system-tools-backends. It's completely abstracted of the communication and authentication details, making it easy for applications to integrate with the system details. Downloading =========== You can get it from : ftp://ftp.gnome.org/pub/GNOME/sources/liboobs/0.1/ From carlosg@gnome.org Tue Jun 6 10:05:35 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AB0C03B012A; Tue, 6 Jun 2006 10:05:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26769-07; Tue, 6 Jun 2006 10:05:34 -0400 (EDT) Received: from localhost.localdomain (133.Red-88-0-26.dynamicIP.rima-tde.net [88.0.26.133]) by menubar.gnome.org (Postfix) with ESMTP id D49943B0179; Tue, 6 Jun 2006 10:05:33 -0400 (EDT) Received: by localhost.localdomain (Postfix, from userid 1000) id E163B13F73; Tue, 6 Jun 2006 16:05:31 +0200 (CEST) From: Carlos Garnacho To: system-tools-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Date: Tue, 06 Jun 2006 16:05:31 +0200 Message-Id: <1149602731.21203.11.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.528 tagged_above=-999 required=2 tests=[AWL=-0.000, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, RCVD_IN_NJABL_DUL=1.946, RCVD_IN_SORBS_DUL=2.046] X-Spam-Score: 1.528 X-Spam-Level: * X-Mailman-Approved-At: Tue, 06 Jun 2006 10:20:34 -0400 Cc: Subject: GNOME System Tools 2.15.0 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 14:05:35 -0000 The GNOME System Tools version 2.15.0 "Uncanny routine" have been released. The GNOME System Tools are a set of cross-platform configuration utilities for Linux and other Unix systems. The frontends knows nothing about the underlying system and provide the same user interface across the different types of systems. Internally they use the Liboobs library. Changes since last release =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D Common =3D=3D=3D=3D=3D=3D - use intltool 0.35, move ALL_LINGUAS to po/LINGUAS (Przemys=C5=82aw Grzegorczyk) - Make g-s-t work fine with --as-needed (Mike Auty) All tools =3D=3D=3D=3D=3D=3D=3D=3D=3D - Use liboobs. The XML interface is deprecated (Garnacho) - Adopt a more instant apply policy (Garnacho) - UI Changes (Garnacho) - Use named icons in menus and window icon for themeability (Sebastien Bacher, Garnacho) - Set translation domain for popups (Sebastien Bacher) Users =3D=3D=3D=3D=3D - Use adduser/addgroup if it's present (Garnacho) Network =3D=3D=3D=3D=3D=3D=3D - Use DHCP as the default (Garnacho) Services =3D=3D=3D=3D=3D=3D=3D=3D - Add advanced runlevels/priorities editor (Garnacho) Shares =3D=3D=3D=3D=3D=3D - Rework defaults for new shared folders (Garnacho) Time =3D=3D=3D=3D - Update some NTP servers (Gary Coady, Jun Kobayashi) Translations =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D - dz (Pema Geyleg) - es (Francisco Javier F. Serrador) - et (Ivar Smolin) - fi (Ilkka Tuohela) - gl (Ignacio Casal Quinteiro) - gu (Ankit Patel) - it (Francesco Marletta) - ka (Vladimer Sichinava) - nb (Kjartan Maraas) - ru (Nickolay V. Shmyrev) - th (Theppitak Karoonboonyanan) - tr (Deniz Kocak) Downloading =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D You can get it from : ftp://ftp.gnome.org/pub/GNOME/sources/gnome-system-tools/2.15/ From kalle.vahlman@gmail.com Wed Jun 7 13:52:15 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6E4E43B01A4 for ; Wed, 7 Jun 2006 13:52:15 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02283-05 for ; Wed, 7 Jun 2006 13:52:14 -0400 (EDT) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.168]) by menubar.gnome.org (Postfix) with ESMTP id 965853B0115 for ; Wed, 7 Jun 2006 13:52:13 -0400 (EDT) Received: by ug-out-1314.google.com with SMTP id u2so434421uge for ; Wed, 07 Jun 2006 10:52:12 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=iebILRnovVdTxqGwouC/tR/+4MtaielhlX8Ua0W3DfGDpIfDH3f9KvKP70TzbcVubjtjL/zWOS7/A2VM/5vvfCOtbjHJsooRdCtWuC03vTCdPlQ6u7BZgs1lUvDhzlgKMUpdMeg2eI3oWqrM64fhyC+c+LkzIbKwCkxiTwVCgEI= Received: by 10.67.101.10 with SMTP id d10mr759171ugm; Wed, 07 Jun 2006 10:40:55 -0700 (PDT) Received: by 10.67.16.10 with HTTP; Wed, 7 Jun 2006 10:40:55 -0700 (PDT) Message-ID: <177e83dd0606071040h35f807a8o205c18c2a68ee184@mail.gmail.com> Date: Wed, 7 Jun 2006 20:40:55 +0300 From: "Kalle Vahlman" To: gnome-announce-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.432 tagged_above=-999 required=2 tests=[AWL=-0.390, BAYES_00=-2.599, RCVD_IN_BL_SPAMCOP_NET=1.558, SPF_PASS=-0.001] X-Spam-Score: -1.432 X-Spam-Level: X-Mailman-Approved-At: Wed, 07 Jun 2006 14:03:53 -0400 Subject: [Announce] The Scw library version 0.4.4 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: zuh@iki.fi List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 17:52:15 -0000 I'm happy to announce a new release of Scw, the chat-oriented widget set! (I have a broken memory chip, didn't remember to send announcements for the releases between 0.3.0 and 0.4.4...) What's new? ========= The release 0.4.4 includes the following changes (from 0.3.0): * Bugfixes: - Draw much less (but still enough ;) - Fix memory leaks * API changes: - scw_view_set_column_foldable(): Add a boolean argument to control the foldability (previously you couldn't undo setting foldability) - New signal: "buffer-request" - New method: scw_view_scroll_to_row(): Scrolls the view to given row (a GtkTreePath) * Gtk-docs, at last! (and possibly more, but haven't managed to keep track of all the individual fixes) What is it? ======= Scw is a library that includes widgets designed for chat programs. Currently this means (but will be extended with time): * ScwView, a view that has: - Activatable text (urls, user names, etc) - Embedded icons - Pango markup - Wrapping - GtkTreeModel implementations as data storage - Different interaction modes (select, pan, smart pan) * ScwEntry, an derivate of GtkEntry which adds: - Simple input history Python and Ruby bindings are available, Java-Gtk bindings are (still) planned (but not on the immediate todo list). Any bindings will be welcomed. As a bonus feature, the widgets are guaranteed to compile and work on the Maemo[1] platform (used in the Nokia 770[2] that everybody is so exited about). More detailed description, as well as API documentation is found on the home page of Scw. Applications that use Scw ================== * Rirc (an irssi2 client, not exactly sure about status) * Silky (is being ported to it in the REWRITE branch, http://silky.sourceforge.net/ * Telepathy people have been doing a proto client using Scw (http://telepathy.freedesktop.org) * Your app here possibly? Let me know! Where to get it? ============ Homepage: http://iki.fi/zuh/scw/ Version 0.4.4: http://iki.fi/zuh/scw/scw-0.4.4.tar.gz Python bindings http://iki.fi/zuh/scw/python-scw-0.4.0.tar.gz Ruby bindings http://iki.fi/zuh/scw/ruby-scw-0.4.0.tar.gz Communication options ================ As I haven't yet set up mailing lists or bugzilla or anything really, bug reports and other stuff should be sent straight to me at zuh@iki.fi. -- Kalle Vahlman, zuh@iki.fi Powered by http://movial.fi Interesting stuff at http://syslog.movial.fi From Brian.Cameron@Sun.COM Wed Jun 7 18:25:45 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D74D13B04F0; Wed, 7 Jun 2006 18:24:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19021-09; Wed, 7 Jun 2006 18:24:40 -0400 (EDT) Received: from brmea-mail-1.sun.com (brmea-mail-1.Sun.COM [192.18.98.31]) by menubar.gnome.org (Postfix) with ESMTP id 648333B0E7D; Wed, 7 Jun 2006 18:24:21 -0400 (EDT) Received: from fe-amer-04.sun.com ([192.18.108.178]) by brmea-mail-1.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k57MOKiX019647; Wed, 7 Jun 2006 16:24:20 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0I00A01GLFT100@mail-amer.sun.com> (original mail from Brian.Cameron@Sun.COM); Wed, 07 Jun 2006 16:24:20 -0600 (MDT) Received: from [192.9.61.158] by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0I00M6DGWJIGM4@mail-amer.sun.com>; Wed, 07 Jun 2006 16:24:20 -0600 (MDT) Date: Wed, 07 Jun 2006 17:24:20 -0500 From: Brian Cameron Sender: Brian.Cameron@Sun.COM To: gnome-announce-list@gnome.org, gdm-list@gnome.org Message-id: <44875214.1030303@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5.0.2 (X11/20060515) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.446 tagged_above=-999 required=2 tests=[AWL=-0.002, BAYES_00=-2.599, TW_GD=0.077, TW_PM=0.077, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.446 X-Spam-Level: Cc: Subject: GDM2 2.8.0.8 (stable), the "SecurityFix" Release] X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 22:25:46 -0000 AOOH-GAH -------- (If you have no clue what gdm is, skip a few paragraphs down first) The 2.8.0.8 release is a stable release of GDM (note GDM 2.8.0.8 corresponds with gnome-2-12 branch) with the following new features. Note this contains an important security fix, so users and distros should update immediately. - Correction for serious security issue where the user can enter the GDM configuration GUI with a user password when the Face Browser is enabled. Refer to bugzilla.gnome.org bug #343476 (Brian Cameron) This issue impacts all versions of GDM 2.8.0.0-2.8.0.7, 2.14.0-2.14.7, and 2.15.0-2.15.3. This issue was reported to vendor-sec one week ago and has ID #CVE-2006-2452. - Translation updates (Stanislav Brabec, Josep Puigdemont i Casamaj\303\263, Abel Cheung, Priit Laes, Christophe Merlet, Clytie Siddall, \303\205smund Skj\303\246veland, Tommi Vainikainen) Note: GDM2 was originally written by Martin K. Petersen . Much work has been done on GDM2 by George Lebl, and Brian Cameron currently shares maintainership duties with the Queen of England. Note2: If installing from the tarball do note that make install overwrites most of the setup files, all except gdm.conf. It will however save backups with the .orig extension first. #ifndef GDM_DISABLE_DEPRECATED Note3: Note3 has been depracated ... #endif /* GDM_DISABLE_DEPRECATED */ Downloading: ============ Online Documentation: http://www.gnome.org/projects/gdm/ http://ftp.gnome.org/pub/GNOME/sources/gdm/2.15/ No RPM this time around BTW. Have fun. A spec file is included though, so you can try: rpmbuild -ta gdm-whatever.tar.gz Have fun, Brian From Brian.Cameron@Sun.COM Wed Jun 7 18:27:17 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7C4C83B0C49; Wed, 7 Jun 2006 18:27:17 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19552-05; Wed, 7 Jun 2006 18:27:15 -0400 (EDT) Received: from brmea-mail-3.sun.com (brmea-mail-3.Sun.COM [192.18.98.34]) by menubar.gnome.org (Postfix) with ESMTP id CCF8D3B0E66; Wed, 7 Jun 2006 18:27:14 -0400 (EDT) Received: from fe-amer-02.sun.com ([192.18.108.176]) by brmea-mail-3.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k57MRDvQ016057; Wed, 7 Jun 2006 16:27:14 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0I00401GJDHP00@mail-amer.sun.com> (original mail from Brian.Cameron@Sun.COM); Wed, 07 Jun 2006 16:27:13 -0600 (MDT) Received: from [192.9.61.158] by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0I00I5KH1CUVP4@mail-amer.sun.com>; Wed, 07 Jun 2006 16:27:13 -0600 (MDT) Date: Wed, 07 Jun 2006 17:27:13 -0500 From: Brian Cameron Sender: Brian.Cameron@Sun.COM To: gnome-announce-list@gnome.org, gdm-list@gnome.org Message-id: <448752C1.30509@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5.0.2 (X11/20060515) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.408 tagged_above=-999 required=2 tests=[AWL=-0.041, BAYES_00=-2.599, TW_DM=0.077, TW_GD=0.077, TW_PM=0.077, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.408 X-Spam-Level: Cc: Subject: GDM2 2.14.8 (stable), the "SecurityFix" Release X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 22:27:17 -0000 AOOH-GAH -------- (If you have no clue what gdm is, skip a few paragraphs down first) The 2.14.8 release is a stable release of GDM with the following new features. Note this contains an important security fix, so users and distros should update immediately. - Correction for serious security issue where the user can enter the GDM configuration GUI with a user password when the Face Browser is enabled. Refer to bugzilla.gnome.org bug #343476 (Brian Cameron) This issue impacts all versions of GDM 2.8.0.0-2.8.0.7, 2.14.0-2.14.7, and 2.15.0-2.15.3. This issue was reported to vendor-sec one week ago and has ID #CVE-2006-2452. - Fixed bug where when the "Include All" button is modified in the Users tab, the Automatic/Timed login dropdown lists update properly. (Brian Cameron) - Now gdmflexiserver calls gdmcomm_check with FALSE so it will not pop up a dialog. gdmflexiserver can be run with the --command option which can be used when the user does not have permission to a DISPLAY, so trying to show a dialog was causing gdmflexiserver to core dump when the check failed. (Brian Cameron) - Added gestures to the AccessKeyMouseEvents configuration file so that users can access more accessibility features using dwell gestures. (Brian Cameron) - Translation updates (Laurent Dhima, Pema Geyleg, Theppitak Karoonboonyanan, Gabor Kelemen, Ahmad Riza H Nst, Vincent van Adrighem) Note: GDM2 was originally written by Martin K. Petersen . Much work has been done on GDM2 by George Lebl, and Brian Cameron currently shares maintainership duties with the Queen of England. Note2: If installing from the tarball do note that make install overwrites most of the setup files, all except gdm.conf. It will however save backups with the .orig extension first. #ifndef GDM_DISABLE_DEPRECATED Note3: Note3 has been depracated ... #endif /* GDM_DISABLE_DEPRECATED */ Downloading: ============ Online Documentation - http://www.gnome.org/projects/gdm/ Latest Stable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.14/ Latest Unstable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.15/ No RPM this time around BTW. Have fun. A spec file is included though, so you can try: rpmbuild -ta gdm-whatever.tar.gz Have fun, Brian From dsandras@seconix.com Wed Jun 7 15:09:24 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E46CC3B027D for ; Wed, 7 Jun 2006 15:09:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07646-04 for ; Wed, 7 Jun 2006 15:09:22 -0400 (EDT) Received: from ns20085.ovh.net (ekiga.net [213.186.62.145]) by menubar.gnome.org (Postfix) with ESMTP id A72183B0239 for ; Wed, 7 Jun 2006 15:09:21 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ns20085.ovh.net (Postfix) with ESMTP id BF54049704 for ; Wed, 7 Jun 2006 20:51:50 +0200 (CEST) Received: from ns20085.ovh.net ([127.0.0.1]) by localhost (ns20085.ovh.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09043-07 for ; Wed, 7 Jun 2006 20:51:49 +0200 (CEST) Received: from [192.168.0.161] (173.132-245-81.adsl-dyn.isp.belgacom.be [81.245.132.173]) (using SSLv3 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by ns20085.ovh.net (Postfix) with ESMTP id DF3C549702 for ; Wed, 7 Jun 2006 20:51:48 +0200 (CEST) From: Damien Sandras To: gnome-announce-list@gnome.org Content-Type: text/plain Date: Wed, 07 Jun 2006 21:10:04 +0200 Message-Id: <1149707404.2474.40.camel@golgoth01> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at gnomemeeting.net X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 03:15:35 -0400 Subject: Ekiga 2.0.2 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 19:09:24 -0000 This is release of Ekiga for GNOME 2.14 * What is it ? ============== Ekiga is a free Voice over IP phone allowing you to do free calls over the Internet. Ekiga is the first Open Source application to support both H.323 and SIP, as well as audio and video. Ekiga was formerly known as GnomeMeeting. More information can be found at http://www.ekiga.org * Where to get it ? =================== Ekiga is available at: ftp://ftp.gnome.org/pub/gnome/sources/ekiga/2.0 * What's changed ? ================== Ekiga: * Fixed problem with the activation of actions on contacts in the addressbook. (#334685, Julien Puydt) * Added a tooltip for the status label, to read the full text even when the message is cut off. (Jan Schampera) * Added missing notifiers for "new message" sound event. (Damien Sandras) * Prevent the UI from freezing a few micro seconds while registering accounts. (Damien Sandras) * Fixed OpenSolaris support. (#335196, Sun Microsystems/Boying Lu) * Fixed wrong key name in URL handlers section for GNOME. (Jan Schampera) * Fixed detection of ended calls in DBUS. (Julien Puydt) * Fixed playing/pausing of calls in DBUS. (#333465, Julien Puydt) * Fixed useless focus grabbing in druid which made some pages impossible to get the focus. (Jan Schampera) * Fixed crash when creating a contact while not having any local addressbook. (#334960, Julien Puydt) * Fixed leaking the system username on the network. (#335784, Julien Puydt) * Make sure the reason of the end of the call is always the last thing displayed in the status bar. (Damien Sandras) * Fixed browsing of ILS servers. (Damien Sandras) * Made sensitivity of the zoom related menuitems dependant on the actual zoom factor. (#336575, Jan Schampera) * Added "New contact" menu item to the contacts context menu. (#336588, Jan Schampera) * Fixed frame size calculation of video frame. (#336572, Jan Schampera) * Fixed sensitivity setting of "Fullscreen" menu item and sensitifity when leaving Fullscreen mode. (#336575, Jan Schampera) * Fixed non-selectable text problem in the chat window. (#336789, Jan Schampera) * Fixed LDAP search filter so that it works with LDAP servers that do not have a "location" attribute. (#336849, Damien Sandras) * Made most dialogs/popups closable by ESC (partially fixes #337494) (Jan Schampera) * Fixed problem with cursor turning into a hand at the wrong position in the chat window. (#336793, Julien Puydt) * Fixed text chat formatting corruption. (#335794, Simon Wood) * Monitor IP address changes to update the registrations. (#335398, Damien Sandras) * Color inactive tabs when receiving a chat message. (#335857, Simon Wood) * Open new tabs in the background. (#335857, Simon Wood) * Avoid losing error dialogs behind the druid (#338270, Julien Puydt) * Fixed wrong packets loss count. (#339866, Damien Sandras) * Fixed video flipping bug during calls with preview active. (#339867, Damien Sandras) * Fixes crash in address book when no address book is selected (#34210, Julien Puydt) * Fixed handling of call forwarding/transfer in case of incoming call (Damien Sandras) Ekiga WIN32: * Fixed remote contacts crashing on WIN32 or with the non GNOME version. (#335472, Jan Schampera) * Ekiga will now detect if it is already running on WIN32 and bail out. (#337794, Michael Rickmann) * Fixed command-line parsing on WIN32. (#337797, Michael Rickmann) * Fixed stuttering on WIN32. (#337799, Michael Rickmann) * Made the use of SDL more reliable on WIN32. (#337795, Michael Rickmann) * Made the help work on WIN32. (#337798, Michael Rickmann) * Made the 4s delay in the audio test work on WIN32. (#337799, Michael Rickmann) * Fixed fullscreen issues on WIN32 (#337792, Michael Rickmann). SIP support: * Fixed rport support when receving SIP request from another host than the one mentionned in the Via. (#335002, Damien Sandras) * Remove REGISTER and SUBSCRIBE from the Allow field. (#334979, Damien Sandras) * Fixed SRV lookup when creating connections. (#334994, Damien Sandras) * Improved CANCEL handling. (i#334985, Damien Sandras) * Fixed user in From field so that it always corresponds to a registered account. (#335006, Damien Sandras) * Unregister using the same remote address than the one used to register. (#334999, Damien Sandras) * Prevent loop of UNREGISTER requests when leaving. (#334997, Damien Sandras) * Allow duplicate INVITE PDUs to be treated concurrently. (#334847, Damien Sandras) * Set the From field to the address of record of the default SIP account. (#334457, Damien Sandras) * Fixed infinite loop when calling an host with more than 1 SRV record. (Damien Sandras) * Added support for SDP offers in the OK response, and SDP answer in the ACK request. (Damien Sandras) * Fixed wrong behavior with different priorities when building the priorities list. (#339314, Damien Sandras) * Do not lookup recipient's address when using an outbound proxy. (#334455, Damien Sandras) * Fixed problem with dynamic payload type codecs. (#337456, Damien Sandras) * Fixed routing with proxies who do not support the 'lr' parameter. (#340415, Damien Sandras) H.323 support: * Uses lower initial bandwidth by default when registering to gatekeepers. (#300366, Damien Sandras) Devices: * Fixed broken OSS plugin. (#338505, Damien Sandras) * Added resizing capability for VYUY YUYV formats. (#330946, Luc Saillard) * Improved UVC camera support. (Martin Rubli from Logitech) * Fixed parsing of JPEG streams with DHT markers. (Martin Rubli from Logitech) -- _ Damien Sandras (o- //\ Ekiga Softphone: http://www.ekiga.org/ v_/_ FOSDEM 2006 : http://www.fosdem.org/ SIP Phone : sip:dsandras@ekiga.net sip:600000@ekiga.net From murrayc@murrayc.com Wed Jun 7 15:39:02 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 71EF73B0DDF; Wed, 7 Jun 2006 15:38:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09273-01; Wed, 7 Jun 2006 15:38:57 -0400 (EDT) Received: from swarthymail-a3.dreamhost.com (mailbigip2.dreamhost.com [208.97.132.53]) by menubar.gnome.org (Postfix) with ESMTP id 3DC723B0E65; Wed, 7 Jun 2006 15:38:44 -0400 (EDT) Received: from noname (p5497CB1E.dip.t-dialin.net [84.151.203.30]) by swarthymail-a3.dreamhost.com (Postfix) with ESMTP id 1E03F7F05A; Wed, 7 Jun 2006 12:38:41 -0700 (PDT) From: Murray Cumming To: gnome-announce , gtkmm-list Content-Type: text/plain Date: Wed, 07 Jun 2006 21:38:36 +0200 Message-Id: <1149709116.5916.26.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.684 tagged_above=-999 required=2 tests=[AWL=-0.695, BAYES_00=-2.599, RCVD_IN_SORBS_WEB=1.456, TW_GT=0.077, TW_TK=0.077] X-Spam-Score: -1.684 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 03:15:35 -0400 Cc: Subject: ANNOUNCE: gtkmm 2.9.4 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 19:39:02 -0000 *** gtkmm 2.9/2.10: gtkmm 2.9 wraps new API in GTK+ 2.9, and is API/ABI-compatibile with gtkmm 2.8, 2.6 and 2.4. It is a version of the gtkmm-2.4 API. This will become the API-stable gtkmm 2.10, wrapping GTK+ 2.10. gtkmm stays in-sync with GTK+ by following the official GNOME release schedule: http://www.gnome.org/start/unstable/ Bindings for the rest of the GNOME Platform are also available, and are also API-stable. http://www.gtkmm.org *** Changes gtkmm 2.9.4: Gtk: * PrintContext: - Added set_track_print_status() and cancel(), paginate signal. (Marko Anastasov) - get_cairo() renamed to get_cairo_context(), - get_fontmap() renamed to get_pango_fontmap(), - create_context() renamed to create_pango_context(), - create_layout() renamed to create_pango_layout(). (Murray Cumming) * PrintJob: - Added set/get_track_print_status(). (Marko Anastasov) Pango: * Added CairoFontMap. (Might be removed later) * Context: Added update_from_cairo_context(), set_cairo_font_options(), set_cairo_font_options(), get_font_options(), set_resolution(), get_resolution(). * Layout: Added create(Cairo::Context), update_from_cairo_context(), add_to_cairo_context(). * LayoutLine: Added show_in_cairo_context(), add_to_cairo_context(). (Murray Cumming) *** Download http://www.gtkmm.org/download.shtml You will need libsigc++ 2.0, available here: https://sourceforge.net/project/showfiles.php?group_id=1970 *** Development There is active discussion on the mailing list: http://www.gtkmm.org/mailinglist.shtml and in the #c++ channel on irc.gnome.org -- Murray Cumming murray@usa.net www.murrayc.com From sandmann@daimi.au.dk Thu Jun 8 23:24:44 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id ACF2A3B0418 for ; Thu, 8 Jun 2006 23:24:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23677-04 for ; Thu, 8 Jun 2006 23:24:43 -0400 (EDT) Received: from daimi.au.dk (daimi.au.dk [130.225.16.1]) by menubar.gnome.org (Postfix) with ESMTP id A7F633B0408 for ; Thu, 8 Jun 2006 23:24:42 -0400 (EDT) Received: from camel18.daimi.au.dk (camel18 [130.225.16.137]) by daimi.au.dk (8.12.11.20060308/8.12.11) with ESMTP id k593OeQD008266; Fri, 9 Jun 2006 05:24:40 +0200 Received: from camel18.daimi.au.dk (IDENT:U2FsdGVkX1/iO3gyunaS0bFYmoVfNsPfhKVcvodnSF0@localhost [127.0.0.1]) by camel18.daimi.au.dk (8.13.1/8.13.1) with ESMTP id k593OeQV004787; Fri, 9 Jun 2006 05:24:40 +0200 Received: (from sandmann@localhost) by camel18.daimi.au.dk (8.13.1/8.13.1/Submit) id k593OedI004782; Fri, 9 Jun 2006 05:24:40 +0200 X-Authentication-Warning: camel18.daimi.au.dk: sandmann set sender to sandmann@daimi.au.dk using -f Sender: sandmann@daimi.au.dk To: gnome-announce-list@gnome.org From: Soeren Sandmann Date: 09 Jun 2006 05:24:40 +0200 Message-ID: Lines: 65 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Scanned-By: MIMEDefang 2.56 on 130.225.16.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.574 tagged_above=-999 required=2 tests=[AWL=0.025, BAYES_00=-2.599] X-Spam-Score: -2.574 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 03:15:35 -0400 Subject: Sysprof Linux Profiler v. 1.0.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jun 2006 03:24:44 -0000 * What is it? -------------------------- Sysprof is a sampling system-wide CPU profiler for Linux. Sysprof uses a Linux kernel module to profile the entire system, not just an individual application.=20 Of course, sysprof handles threads and shared libraries, and applications do not have to be recompiled or instrumented. In fact they don't even have to be restarted.=20 Just insert the kernel module and start sysprof. * Features: ---------------------- - Profiles all running processes, not just a single application - Call graph support showing time spent in each branch of the call tree - Has a simple graphical interface - Profiles can be loaded and saved - Easy to use: Just insert the kernel module and start sysprof - Supports Fedora debuginfo packages * Sysprof 1.0.3 -------------------------- - Compiles with the latest kernels Please report bugs as well as success or failure stories to=20 sandmann@daimi au dk * Where can I get it? -------------------------------------------- Home page: http://www.daimi.au.dk/~sandmann/sysprof/ Source code: http://www.daimi.au.dk/~sandmann/sysprof/sysprof-1.0.3.tar.gz Sysprof requires - Linux 2.6.11 or later, compiled with profiling support - GTK+ 2.6 - libglade 2.5 It is known to work out the box on Fedora Core 4 and 5. S=F8ren From pjc51@cam.ac.uk Fri Jun 9 05:57:47 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B73C93B01A8 for ; Fri, 9 Jun 2006 05:57:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12981-09 for ; Fri, 9 Jun 2006 05:57:45 -0400 (EDT) Received: from ppsw-9.csi.cam.ac.uk (unknown [131.111.8.139]) by menubar.gnome.org (Postfix) with ESMTP id B5D2C3B00B1 for ; Fri, 9 Jun 2006 05:57:45 -0400 (EDT) X-Cam-SpamDetails: Not scanned X-Cam-AntiVirus: No virus found X-Cam-ScannerInfo: http://www.cam.ac.uk/cs/email/scanner/ Received: from tiree.ra.phy.cam.ac.uk ([131.111.48.169]:49064) by ppsw-9.csi.cam.ac.uk (ppsw.cam.ac.uk [131.111.8.139]:25) with esmtp id 1FodkB-0007u9-Tm (Exim 4.54) (return-path ); Fri, 09 Jun 2006 10:57:31 +0100 From: Phil Cowans To: gnome-announce-list@gnome.org, dasherteam@yahoogroups.com Content-Type: text/plain Date: Fri, 09 Jun 2006 10:57:30 +0100 Message-Id: <1149847050.16654.9.camel@tiree.ra.phy.cam.ac.uk> Mime-Version: 1.0 X-Mailer: Evolution 2.0.4 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.599 tagged_above=-999 required=2 tests=[BAYES_00=-2.599] X-Spam-Score: -2.599 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 06:34:46 -0400 Cc: Subject: Dasher 4.1.4 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jun 2006 09:57:47 -0000 Dasher 4.1.4 is now available for download from: http://ftp.gnome.org/pub/GNOME/sources/dasher/4.1/ Windows and (unofficial) Debian binaries are available from: http://www.dasher.org.uk/Download.html The 4.1.x series of Dasher releases is a development series which will lead to version 4.2.0 in time for the GNOME 2.16 release. If you're after stability, install the latest 4.0.x version instead. The 4.1.x series aims to improve interaction with the desktop environment and window manager, for example to make it easier to enter text into other applications. 4.1.4 fixes a number of bugs which were present in 4.1.0. We're always greatful for any feedback from users - either via the GNOME Bugzilla: http://bugzilla.gnome.org/ Or by email to dasher@mrao.cam.ac.uk. Thanks to all who contributed to this release, Phil Cowans 9th June 2006 From Rich.Burridge@Sun.COM Fri Jun 9 09:59:59 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4262D3B010A for ; Fri, 9 Jun 2006 09:59:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 29076-03 for ; Fri, 9 Jun 2006 09:59:57 -0400 (EDT) Received: from brmea-mail-2.sun.com (brmea-mail-2.Sun.COM [192.18.98.43]) by menubar.gnome.org (Postfix) with ESMTP id 436C93B01BE for ; Fri, 9 Jun 2006 09:59:57 -0400 (EDT) Received: from fe-amer-03.sun.com ([192.18.108.177]) by brmea-mail-2.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k59DxtP3010388 for ; Fri, 9 Jun 2006 07:59:56 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0L00I01IP1J100@mail-amer.sun.com> (original mail from Rich.Burridge@Sun.COM) for gnome-announce-list@gnome.org; Fri, 09 Jun 2006 07:59:55 -0600 (MDT) Received: from [192.168.1.102] (c-71-202-99-109.hsd1.ca.comcast.net [71.202.99.109]) by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0L008L6IVU1C10@mail-amer.sun.com> for gnome-announce-list@gnome.org; Fri, 09 Jun 2006 07:59:55 -0600 (MDT) Date: Fri, 09 Jun 2006 06:59:21 -0700 From: Rich Burridge Sender: Rich.Burridge@Sun.COM To: gnome-announce-list@gnome.org Message-id: <44897EB9.6060700@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5 (X11/20060327) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.598 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.598 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 11:19:14 -0400 Subject: ANNOUNCE: gcalctool v5.8.13 [hopefully stable] X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jun 2006 13:59:59 -0000 Gcalctool is the default GNOME desktop calculator. It has Basic, Advanced, Financial and Scientific modes. Internally it uses multiple precision arithmetic to produce results to a high degree of accuracy. This (hopefully stable) release is for GNOME 2.15.3. Changes since the last gcalctool version (5.8.13). * From Sami Pietila - Fixed bug #343150. Gcalctool no longer crashes when switching to scientific mode. * Adjusted configure.in so that gcalctool now requires intltool v0.35.0. Updated Translations (thankyou!) Pema Geyleg - dz.po: Updated Dzongkha translation. Vincent van Adrighem - nl.po: Translation updated by Tino Meinen. Clytie Siddall - vi.po: Updated Vietnamese translation. Theppitak Karoonboonyanan - th.po: Updated Thai translation. Miloslav Trmac - cs.po: Updated Czech translation. Raphael Higino - pt_BR.po: Updated Brazilian Portuguese translation. Ignacio Casal Quinteiro - gl.po: Updated Galician Translation. You can download this new version from: http://ftp.gnome.org/pub/GNOME/sources/gcalctool/5.8/ From Rich.Burridge@Sun.COM Fri Jun 9 12:22:20 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1CB123B110C for ; Fri, 9 Jun 2006 12:22:20 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05769-10 for ; Fri, 9 Jun 2006 12:22:18 -0400 (EDT) Received: from brmea-mail-2.sun.com (brmea-mail-2.Sun.COM [192.18.98.43]) by menubar.gnome.org (Postfix) with ESMTP id 220193B0112 for ; Fri, 9 Jun 2006 12:22:17 -0400 (EDT) Received: from fe-amer-04.sun.com ([192.18.108.178]) by brmea-mail-2.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k59GMHje022696 for ; Fri, 9 Jun 2006 10:22:17 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0L00601PDSJP00@mail-amer.sun.com> (original mail from Rich.Burridge@Sun.COM) for gnome-announce-list@gnome.org; Fri, 09 Jun 2006 10:22:17 -0600 (MDT) Received: from [192.168.1.102] (c-71-202-99-109.hsd1.ca.comcast.net [71.202.99.109]) by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0L000IIPH4FY20@mail-amer.sun.com> for gnome-announce-list@gnome.org; Fri, 09 Jun 2006 10:22:17 -0600 (MDT) Date: Fri, 09 Jun 2006 09:21:43 -0700 From: Rich Burridge Sender: Rich.Burridge@Sun.COM To: gnome-announce-list@gnome.org Message-id: <4489A017.2030903@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5 (X11/20060327) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.598 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.598 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 16:30:37 -0400 Subject: [ANNOUNCE: gcalctool v5.8.16 [hopefully stable] X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jun 2006 16:22:20 -0000 Sorry, that should have been gcalctool 5.8.16 (not 5.8.13). -------- Original Message -------- Subject: ANNOUNCE: gcalctool v5.8.16 [hopefully stable] Date: Fri, 09 Jun 2006 06:59:21 -0700 From: Rich Burridge To: gnome-announce-list@gnome.org Gcalctool is the default GNOME desktop calculator. It has Basic, Advanced, Financial and Scientific modes. Internally it uses multiple precision arithmetic to produce results to a high degree of accuracy. This (hopefully stable) release is for GNOME 2.15.3. Changes since the last gcalctool version (5.8.13). * From Sami Pietila - Fixed bug #343150. Gcalctool no longer crashes when switching to scientific mode. * Adjusted configure.in so that gcalctool now requires intltool v0.35.0. Updated Translations (thankyou!) Pema Geyleg - dz.po: Updated Dzongkha translation. Vincent van Adrighem - nl.po: Translation updated by Tino Meinen. Clytie Siddall - vi.po: Updated Vietnamese translation. Theppitak Karoonboonyanan - th.po: Updated Thai translation. Miloslav Trmac - cs.po: Updated Czech translation. Raphael Higino - pt_BR.po: Updated Brazilian Portuguese translation. Ignacio Casal Quinteiro - gl.po: Updated Galician Translation. You can download this new version from: http://ftp.gnome.org/pub/GNOME/sources/gcalctool/5.8/ _______________________________________________ gnome-announce-list mailing list gnome-announce-list@gnome.org http://mail.gnome.org/mailman/listinfo/gnome-announce-list From lucasr.at.mundo@gmail.com Sat Jun 10 15:18:25 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BFE893B0355 for ; Sat, 10 Jun 2006 15:18:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22270-07 for ; Sat, 10 Jun 2006 15:18:19 -0400 (EDT) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.225]) by menubar.gnome.org (Postfix) with ESMTP id 497F63B00D0 for ; Sat, 10 Jun 2006 15:18:16 -0400 (EDT) Received: by wr-out-0506.google.com with SMTP id i12so1072899wra for ; Sat, 10 Jun 2006 12:18:15 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=Az6w6MZB4nAyrTPN/c1dBiy1QeZ3eP7h8u4jteTnJO41JONOrr+vLcaDgMaoq4CGUsTFL9SOAi4mYQa1U/quNPHKz5w9wCTni0PKnnsN+iZD4toNQ2U72zqyiU0cW7CuR3V4pUG+hJ2fX18MkuKthXuw+tWs50Y+gO+yiE+erPs= Received: by 10.54.128.19 with SMTP id a19mr2963077wrd; Sat, 10 Jun 2006 12:18:15 -0700 (PDT) Received: by 10.54.93.4 with HTTP; Sat, 10 Jun 2006 12:18:15 -0700 (PDT) Message-ID: <31a62e6f0606101218v6e0f8de0rec084fa7f081f2bc@mail.gmail.com> Date: Sat, 10 Jun 2006 16:18:15 -0300 From: "Lucas Rocha" To: gnome-announce-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.525 tagged_above=-999 required=2 tests=[AWL=0.075, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.525 X-Spam-Level: X-Mailman-Approved-At: Sat, 10 Jun 2006 15:24:41 -0400 Subject: Eye of GNOME 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Jun 2006 19:18:25 -0000 Hi all, * What is it ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Eye of GNOME (eog) is the image viewer for the GNOME desktop. * What's changed in 2.15.3 ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D - Properly sort image filenames containing numbers (Felix Riemann) [#340957= ] - Thumbnailing fixes (Felix Riemann) [#342817] - Fix printing for images with alpha channel (Jan K=FCmmel) [#322057] - Updated translations: Ignacio Casal Quinteiro (gl), Ankit Patel (gu), Theppitak Karoonboonyanan (th), Clytie Siddall (vi), Inaki Larra=F1aga (e= u), Pema Geyleg (dz), Francisco Javier F. Serrador (es) * Where can I get it ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Source code: http://ftp.gnome.org/pub/GNOME/sources/eog/2.15/eog-2.15.3.tar.gz md5sums: 1e39941d5327a28f0b3e88dfc6d5d2d0 http://ftp.gnome.org/pub/GNOME/sources/eog/2.15/eog-2.15.3.tar.bz2 md5sums: 29a9768a41dce2823e93c8de60b638e3 Enjoy! --lucasr From nudrema@gmail.com Sun Jun 11 07:21:01 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1905C3B057C; Sun, 11 Jun 2006 07:21:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06331-08; Sun, 11 Jun 2006 07:20:58 -0400 (EDT) Received: from swip.net (mailfe01.swip.net [212.247.154.1]) by menubar.gnome.org (Postfix) with ESMTP id EA99F3B0318; Sun, 11 Jun 2006 07:20:57 -0400 (EDT) X-T2-Posting-ID: Ee7YIbSG3O5rNcT4cGADretWTWrDEjpwS9FwzyhFhzk= X-Cloudmark-Score: 0.000000 [] Received: from [83.182.30.172] (HELO [10.0.0.13]) by mailfe01.swip.net (CommuniGate Pro SMTP 5.0.8) with ESMTP id 192388062; Sun, 11 Jun 2006 13:20:20 +0200 Message-ID: <448BFC72.5000804@gmail.com> Date: Sun, 11 Jun 2006 13:20:18 +0200 From: =?ISO-8859-1?Q?Steve_Fr=E9cinaux?= User-Agent: Thunderbird 1.5.0.2 (X11/20060522) MIME-Version: 1.0 To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.966 tagged_above=-999 required=2 tests=[AWL=-0.436, BAYES_00=-2.599, SPF_NEUTRAL=1.069] X-Spam-Score: -1.966 X-Spam-Level: X-Mailman-Approved-At: Sun, 11 Jun 2006 07:32:46 -0400 Cc: gedit-list Subject: ANNOUNCE: gedit-plugins 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 11:21:01 -0000 Hi all, gedit-plugins 2.15.3 is available. gedit-plugins is a set of (hopefuly useful) plugins for the GNOME text editor, gedit. homepage: http://live.gnome.org/GeditPlugins * Changes in 2.15.3 ==================== New features and fixes: - Autotools fixes (Jesse van den Kieboom, Steve Frcinaux) - Terminal now uses gnome-terminal default profile (Steve Frcinaux) - New Smart Spaces unindent plugin (Steve Frcinaux) - various fixes New and updated translations: - cs (Jakub Friedl) - pt_BR (Raphael Higino) * Download =========== http://ftp.gnome.org/pub/GNOME/sources/gedit-plugins/2.15/gedit-plugins-2.15.3.tar.gz md5sums: 1d7c70969fbd60b466e00f3295bced59 http://ftp.gnome.org/pub/GNOME/sources/gedit-plugins/2.15/gedit-plugins-2.15.3.tar.bz2 md5sums: 4182e0b3b522cb35e5348ce00c8aaa1d * Development ============== Don't hesitate to have a talk with the gedit team on #gedit on irc.gnome.org if you want to give gedit-plugins some of the love it needs :-) -- Steve http://tw.apinc.org From martyn@imendio.com Sun Jun 11 17:10:48 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1F0903B013F for ; Sun, 11 Jun 2006 17:10:48 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02407-03 for ; Sun, 11 Jun 2006 17:10:46 -0400 (EDT) Received: from holken.mikan.net (holken.mikan.net [83.145.56.183]) by menubar.gnome.org (Postfix) with ESMTP id A284B3B066D for ; Sun, 11 Jun 2006 17:10:45 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by holken.mikan.net (Postfix) with ESMTP id 30EA033525E; Sun, 11 Jun 2006 22:49:14 +0200 (CEST) Received: from holken.mikan.net ([127.0.0.1]) by localhost (holken.mikan.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03671-03; Sun, 11 Jun 2006 22:49:09 +0200 (CEST) Received: from [192.168.0.2] (host86-135-75-230.range86-135.btcentralplus.com [86.135.75.230]) by holken.mikan.net (Postfix) with ESMTP id 716673352A4; Sun, 11 Jun 2006 22:49:09 +0200 (CEST) From: Martyn Russell To: gnome-announce-list@gnome.org Content-Type: text/plain Organization: Imendio Date: Sun, 11 Jun 2006 21:49:40 +0100 Message-Id: <1150058980.30411.5.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at holken.mikan.net X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.586 tagged_above=-999 required=2 tests=[AWL=0.013, BAYES_00=-2.599] X-Spam-Score: -2.586 X-Spam-Level: X-Mailman-Approved-At: Sun, 11 Jun 2006 17:36:08 -0400 Cc: gossip-dev@lists.imendio.com Subject: ANNOUNCE: Gossip 0.11.2 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 21:10:48 -0000 Gossip 0.11.1 is now available for download from: http://download.gnome.org/sources/gossip/0.11/ What is Gossip ============== Gossip is an instant messaging client for GNOME with an easy-to-use interface, providing users of the GNOME Desktop with a friendly way to keep in touch with their friends. What's new in Gossip 0.11.2 =========================== - Added avatars to the chat window (Martyn). - Cleaned up the preferences and some of the gconf keys have changed, this means some of your preferences might need resetting (Martyn). - Added a preference for showing avatars (Martyn). - Added a preference to disable the contact online notifications (Martyn). - Stop flashing the task list a while after new messages arrive (Richard). Bugs Fixed ========== - Fixed #342928, Show subscription requests in the roster instead of JUST the notification tray which isn't ideal for people without one (Martyn). - Fixed #343375, Make sure we follow the XMPP spec for RFC 3921 with regards to adding and removing contacts. Subscription was broken somehow since 0.10 (Jonatan Magnusson). - Fixed #339285, Move to new LINGUAS method (patch by Przemyslaw Grzegorczyk). - Fixed #339679, Use case insensitive search in the logs (Richard). - Fixed #343511, Support scroll events in the presence chooser (Richard). - Fixed #331773, Ask for confirmation before clearing the list (Richard). - Fixed #344438, Set mnemonic target for the theme combo (Richard). Updated Translations ==================== Jordi Mallach (ca) Richard Hult (sv) Wouter Bolsterlee (nl) More information: ================= The Gossip project page: http://developer.imendio.com/wiki/Gossip If you want to subscribe to just announcements of Gossip you can join the announcement list here: http://lists.imendio.com/mailman/listinfo/announce 11 June 2006 Gossip Team From hughsient@gmail.com Sun Jun 11 16:10:31 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 029C73B0422 for ; Sun, 11 Jun 2006 16:10:31 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31984-01 for ; Sun, 11 Jun 2006 16:10:28 -0400 (EDT) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.168]) by menubar.gnome.org (Postfix) with ESMTP id 034F83B02CC for ; Sun, 11 Jun 2006 16:10:27 -0400 (EDT) Received: by ug-out-1314.google.com with SMTP id k3so2123698ugf for ; Sun, 11 Jun 2006 13:10:03 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:subject:from:reply-to:to:cc:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; b=HRcsTP79snnDu6H8ZeGN3Q6/nt35smFKdHMw9SBcLONZCQ2eVs5l1vjT5nHY94RPJ1RJsNuEcmy+rT+Dk1FOFWvHutu5HWk50bzy6X376OZom5F33NDNaFDr5szRY8Y870/jaEpj2C+0bC4v382GnYa1nd0EcgVRgkGSV9++cCA= Received: by 10.66.216.20 with SMTP id o20mr4467611ugg; Sun, 11 Jun 2006 13:02:54 -0700 (PDT) Received: from ?10.0.0.14? ( [86.132.112.248]) by mx.gmail.com with ESMTP id e1sm5926698ugf.2006.06.11.13.02.53; Sun, 11 Jun 2006 13:02:53 -0700 (PDT) From: Richard Hughes To: GnomePowerManager List Content-Type: text/plain; charset=UTF-8 Date: Sun, 11 Jun 2006 21:02:29 +0100 Message-Id: <1150056149.3896.9.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 (2.6.2-1.fc5.5) Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.705 tagged_above=-999 required=2 tests=[AWL=-0.663, BAYES_00=-2.599, RCVD_IN_BL_SPAMCOP_NET=1.558, SPF_PASS=-0.001] X-Spam-Score: -1.705 X-Spam-Level: X-Mailman-Approved-At: Sun, 11 Jun 2006 17:36:20 -0400 Cc: GNOME-Announce List , GNOME TranslationProject Subject: GNOME Power Manager 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: richard@hughsie.com List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 20:10:31 -0000 GNOME Power Manager is a session daemon for the GNOME desktop environment that makes it easy to manage the power on your laptop or desktop system. Download at the usual place : http://ftp.gnome.org/pub/GNOME/sources/gnome-power-manager/2.15/ ============== Version 2.15.3 ============== Released June 11, 2006 General - Depend on intltool 0.35.0 to build - Grammar fixes in the schema and glade file (Clytie Siddall) - Add in XFCE option so we display in the XFCE menu. lp:43077 - Use GtkStatusIcon when GTK version >= 2.9.0 (Jaap Haitsma) - Add in new docbook documentation about the dbus interface. - Rename and add a few DBUS methods from feedback on XDG list. Power Manager - Actually show the correct levels in the pixmaps for the mouse and keyboard. - Add a gconf key so we can disable the action for when the lid is previously shut and the AC power removed at a later time as this was causing confusion. - Limit the capacity to 100% - Undim the screen when we have to unlock returning from resume. #333290 - Rework the brightness handling so that we only have one way of doing the transitions. This simplifies things greatly. #341616 - Update for gnome-screensaver API changes. #344103 Power Preferences - Add the configurable action for power button press in the UI. #344325. Power Info - Set the correct colours of the line depending on discharging/charging status. #338175. Translators - Theppitak Karoonboonyanan & Roys Hengwatanakul (Thai) - Wouter Bolsterlee (Netherlands) - Clytie Siddall (Vietnamese) - Funda Wang (Simplified Chinese) - ivind Hoel (Norwegian bokml) - Francisco Javier F. Serrador (Spanish) - Raphael Higino (Brazilian Portuguese) From gjc@inescporto.pt Sun Jun 11 18:14:06 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F035C3B0137 for ; Sun, 11 Jun 2006 18:14:05 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05363-03 for ; Sun, 11 Jun 2006 18:14:04 -0400 (EDT) Received: from animal.inescn.pt (correio.inescn.pt [194.117.24.9]) by menubar.gnome.org (Postfix) with ESMTP id 82AD43B02F9 for ; Sun, 11 Jun 2006 18:14:03 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by animal.inescn.pt (8.13.6/8.13.6/7) with ESMTP id k5BMCqqs022474; Sun, 11 Jun 2006 23:12:52 +0100 (WEST) Received: from pong.inescporto.pt (pong.inescn.pt [194.117.26.74]) by animal.inescn.pt (8.13.6/8.13.6/5) with ESMTP id k5BMCZ29022454; Sun, 11 Jun 2006 23:12:35 +0100 (WEST) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by pong.inescporto.pt (Postfix) with ESMTP id DB83A119191; Sun, 11 Jun 2006 23:09:37 +0100 (WEST) From: "Gustavo J. A. M. Carneiro" To: gnome-announce-list@gnome.org Content-Type: text/plain Date: Sun, 11 Jun 2006 23:12:34 +0100 Message-Id: <1150063954.5758.0.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at inescporto.pt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.394 tagged_above=-999 required=2 tests=[AWL=-0.006, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001, TW_EV=0.077] X-Spam-Score: -2.394 X-Spam-Level: X-Mailman-Approved-At: Sun, 11 Jun 2006 18:37:01 -0400 Cc: PyGTK List Subject: ANNOUNCE: GnomePython 2.15.2 (unstable) X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 22:14:06 -0000 GnomePython 2.15.2 has been just released. This is a unstable release for testing purposes. GnomePython provides python interfacing modules for most of the GNOME Developer Platform libraries (except those already wrapped somewhere else.) Currently the list of provided python modules includes: - gnome, gnome.ui - gnomecanvas - gnomevfs - gconf - bonobo, bonobo.activation, bonobo.ui Overview of Changes from gnome-python 2.15.1 to gnome-python 2.15.2 =================================================================== * gnomevfs - Fix FileInfo.valid_fields computation (Sidnei da Silva) - Add some missing permission constants (Sidnei) - Add new FileInfo.access field (Gustavo) - Add sync variant of "file control" method (Gustavo) * gnome - gnome.program_init changes process name on Linux with prctl (Gustavo) The source tarball can be found here: http://ftp.gnome.org/pub/GNOME/sources/gnome-python/2.15/ Please file bug reports (bugs, missing APIs) here: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-python -- Gustavo J. A. M. Carneiro The universe is always one step beyond logic From William.Walker@Sun.COM Sun Jun 11 19:53:33 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C98A93B00BC; Sun, 11 Jun 2006 19:53:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09467-02; Sun, 11 Jun 2006 19:53:31 -0400 (EDT) Received: from brmea-mail-4.sun.com (brmea-mail-4.Sun.COM [192.18.98.36]) by menubar.gnome.org (Postfix) with ESMTP id 656553B00B7; Sun, 11 Jun 2006 19:53:31 -0400 (EDT) Received: from fe-amer-06.sun.com ([192.18.108.180]) by brmea-mail-4.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k5BNqQ6B020577; Sun, 11 Jun 2006 17:52:26 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0P00M01Y1KY900@mail-amer.sun.com> (original mail from William.Walker@Sun.COM); Sun, 11 Jun 2006 17:52:26 -0600 (MDT) Received: from [192.168.1.105] ([68.116.197.173]) by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0P0097BZN5LTZ1@mail-amer.sun.com>; Sun, 11 Jun 2006 17:52:26 -0600 (MDT) Date: Sun, 11 Jun 2006 19:52:16 -0400 From: Willie Walker Sender: William.Walker@Sun.COM To: orca-list@gnome.org, gnome-announce-list@gnome.org, gnome-accessibility-list@gnome.org Message-id: <1150069937.5071.4.camel@localhost> MIME-version: 1.0 X-Mailer: Evolution 2.6.1 Content-type: text/plain; charset=UTF-8 Content-transfer-encoding: 8BIT X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.587 tagged_above=-999 required=2 tests=[AWL=0.011, BAYES_00=-2.599, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.587 X-Spam-Level: X-Mailman-Approved-At: Mon, 12 Jun 2006 03:22:46 -0400 Cc: Subject: Announcing Orca 0.2.5 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 23:53:34 -0000 ================ * What is Orca ? ================ Orca is a scriptable screen reader for the GNOME desktop for people with visual impairments. ================== * What's changed ? ================== We've done a lot of work on Orca since the last release in both the new functionality and quality/stability departments. We thank all of our users that are providing feedback on gnome-list@gnome.org (see http://mail.gnome.org/mailman/listinfo/orca-list) as well as http://bugzilla.gnome.org. We value all of your feedback and help. We also appreciate contributions from community members, including Al Puzzuoli who is doing a great job helping with the Orca Wiki at http://live.gnome.org/Orca and Francisco Javier Dorado Martnez who has been testing and providing patches. Thank you all! ================== Orca 0.2.5 Changes ================== * Re-map keyboard bindings and add additional keyboard bindings. See http://live.gnome.org/Orca/KeyboardCommands for the list. * Improvements to StarOffice support to provide better access to text documents and spreadsheets. Also get rid of spurious "0.00" text that was showing up in braille for StarOffice buttons. * Addition of announcing text selection as it is selected and unselected. * Generalize the "read table cell row" functionality. If you press Insert+F11, it will toggle the feature to read the entire row of a table or just the selected table cell when you move from row to row. * Improved support for SayAll of text objects (SayAll for flat review is still on the to do list). * Addition of self-voicing module to tell Orca to be quiet when a self-voicing application is present. * Addition of ability to turn Orca into a speech server that can accessed via simple HTTP commands (default port is 20433, but this is customizable via orca.settings.speechServerPort). This will allow self-voicing applications to use Orca for their speech, thus letting them get the user's speech settings preferences. * Addition of orca.settings.enableBrailleGrouping (default=False). NOTE: this represents a change in the UI for Orca - the behavior to date has been to always group menu items on the braille display. The system responsiveness was bad for large menus, however, so we decided to make this an optional feature turned off by default. * Addition of utility to report information on the currently active script. This is primarily for helping script writers do debugging and is accessed by pressing Insert+F3. * Addition of orca.settings.cacheAccessibles (default=True) as a means to turn the local caching of accessible objects on or off. This is primarily an Orca developer debugging feature. * Fix for bug 344218 - gnome-terminal would not be presented properly if it was started after Orca. * Fix for bug 343666: pressing buttons on braille displays could cause a hang. * Partial fix for bug 342022 - provide some defensive mechanisms to help prevent some hangs. * Fix for bug 343133 - do not hang when doing a flat-review of a man page in gnome-terminal. * Fix for bug #343013 - the command line option strings should not be translatable. * Partial fix for bug 319652 - become a better Python thread citizen to help reduce hangs. * Fix for bug 342303 - stop speech when the user presses the mouse button. * Fix for bug 342122 - use all labels for an objecty when presenting an object. * Fix for bug 342133 - do not read all labels in gnome-window-properties application when it appears. * Fix for bug 341415 - when moving between workspaces with metacity, eliminate redundant output and alsomake sure workspace names are announced. * Refactor of various modules to move script writing utilities into util.py. * More fleshing out of the test plan. ====================== * Where can I get it ? ====================== Source code: http://ftp.gnome.org/pub/GNOME/sources/orca/0.2/orca-0.2.5.tar.gz Enjoy. Will, Mike, Rich, Lynn, and the Orca community From callum@spooky-possum.org Mon Jun 12 02:05:21 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 06D8C3B000D; Mon, 12 Jun 2006 02:05:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21232-04; Mon, 12 Jun 2006 02:05:19 -0400 (EDT) Received: from genamics.blastula.net (dns1.blastula.net [64.92.214.155]) by menubar.gnome.org (Postfix) with ESMTP id 4C4D83B00D4; Mon, 12 Jun 2006 02:05:19 -0400 (EDT) Received: from [60.234.103.60] (helo=[60.234.103.60]) by genamics.blastula.net with esmtpa (Exim 4.52) id 1FpfWT-0001Yo-NG; Mon, 12 Jun 2006 18:03:39 +1200 From: Callum McKenzie To: games-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Date: Mon, 12 Jun 2006 18:03:05 +1200 Message-Id: <1150092185.10939.21.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Antivirus-Scanner: Clean mail though you should still use an Antivirus X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - genamics.blastula.net X-AntiAbuse: Original Domain - gnome.org X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [47 12] X-AntiAbuse: Sender Address Domain - spooky-possum.org X-Source: X-Source-Args: X-Source-Dir: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.538 tagged_above=-999 required=2 tests=[AWL=0.061, BAYES_00=-2.599] X-Spam-Score: -2.538 X-Spam-Level: X-Mailman-Approved-At: Mon, 12 Jun 2006 03:23:07 -0400 Cc: Subject: gnome-games 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: callum@spooky-possum.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 06:05:21 -0000 gnome-games 2.15.3 ================== This development release of gnome-games is a little short on new content since we are in the process of changing maintainers and not everything is organised yet. Things that have changed: General: - High scores: the file is truncated properly if you use a short name. This stops you getting a top-ten score with 11th-place. - Require the latest intltool. Aisleriot - Radio-buttons for Klondike options work now. There are new choices for how you want your cards dealt in Klondike. - Explicitly protect the cards from garbage collection. This is should fix bug #342038, but doesn't actually seem to work. Robots: - Really, really, fix the desktop icon name this time (I hope). As usual, get it from: http://download.gnome.org/sources/gnome-games/2.15/ - Callum From gjc@inescporto.pt Sun Jun 11 18:38:11 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E31903B0350 for ; Sun, 11 Jun 2006 18:38:10 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06171-08 for ; Sun, 11 Jun 2006 18:38:08 -0400 (EDT) Received: from animal.inescn.pt (correio.inescn.pt [194.117.24.9]) by menubar.gnome.org (Postfix) with ESMTP id D88DC3B025D for ; Sun, 11 Jun 2006 18:38:07 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by animal.inescn.pt (8.13.6/8.13.6/7) with ESMTP id k5BMau8H023824; Sun, 11 Jun 2006 23:36:56 +0100 (WEST) Received: from pong.inescporto.pt (pong.inescn.pt [194.117.26.74]) by animal.inescn.pt (8.13.6/8.13.6/5) with ESMTP id k5BMaf3c023811; Sun, 11 Jun 2006 23:36:41 +0100 (WEST) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by pong.inescporto.pt (Postfix) with ESMTP id CC3E1119191; Sun, 11 Jun 2006 23:33:43 +0100 (WEST) From: "Gustavo J. A. M. Carneiro" To: PyGTK Content-Type: text/plain Date: Sun, 11 Jun 2006 23:36:40 +0100 Message-Id: <1150065400.5758.3.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at inescporto.pt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.39 tagged_above=-999 required=2 tests=[AWL=-0.002, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: -2.39 X-Spam-Level: X-Mailman-Approved-At: Mon, 12 Jun 2006 03:23:25 -0400 Cc: gnome-announce-list@gnome.org Subject: ANNOUNCE: GnomePythonDesktop 2.15.3 (unstable) X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 22:38:11 -0000 GnomePythonDesktop 2.15.3 has been just released. This is a unstable release for testing purposes. GnomePythonDesktop provides python interfacing modules for some GNOME libraries part of the GNOME Desktop. The following Python modules are included: - gnomeapplet - gnomeprint, gnomeprint.ui - gtksourceview - wnck - totem.plparser - gtop - nautilusburn - mediaprofiles - metacity - rsvg - gnomekeyring - gnomedesktop Overview of Changes from 2.15.2 to 2.15.3 ============================================================================== * gnomekeyring - Improve API (throw exceptions instead of returning error codes) (Gustavo) - Add an example (Gustavo) * metacity - Update to new C API (Frederic Peters) - Wrap wnck_window_get_geometry() (Magnus Therning) * nautilusburn - Update to new improved C API (Python API is not preserved) (Gustavo) The source tarball can be found here: http://ftp.gnome.org/pub/GNOME/sources/gnome-python-desktop/2.15/ Please file bug reports (bugs, missing APIs) here: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-python-desktop Happy testing! -- Gustavo J. A. M. Carneiro The universe is always one step beyond logic. From gjc@inescporto.pt Sun Jun 11 19:00:35 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 48BC73B0253; Sun, 11 Jun 2006 19:00:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07173-08; Sun, 11 Jun 2006 19:00:34 -0400 (EDT) Received: from animal.inescn.pt (correio.inescn.pt [194.117.24.9]) by menubar.gnome.org (Postfix) with ESMTP id 6D4C93B014F; Sun, 11 Jun 2006 19:00:33 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by animal.inescn.pt (8.13.6/8.13.6/7) with ESMTP id k5BMxkXt025129; Sun, 11 Jun 2006 23:59:46 +0100 (WEST) Received: from pong.inescporto.pt (pong.inescn.pt [194.117.26.74]) by animal.inescn.pt (8.13.6/8.13.6/5) with ESMTP id k5BMxSnQ025107; Sun, 11 Jun 2006 23:59:28 +0100 (WEST) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by pong.inescporto.pt (Postfix) with ESMTP id 08E1F119191; Sun, 11 Jun 2006 23:56:31 +0100 (WEST) From: "Gustavo J. A. M. Carneiro" To: gnome-announce-list@gnome.org Content-Type: text/plain Date: Sun, 11 Jun 2006 23:59:27 +0100 Message-Id: <1150066767.5758.5.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at inescporto.pt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.427 tagged_above=-999 required=2 tests=[AWL=0.038, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.427 X-Spam-Level: X-Mailman-Approved-At: Mon, 12 Jun 2006 03:23:49 -0400 Cc: orbit-list@gnome.org, PyGTK List Subject: ANNOUNCE: PyORBit 2.14.1 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 23:00:36 -0000 "PyORBit is a Python binding for the ORBit2 CORBA ORB. It was developped to suit the needs of the bonobo bindings in GNOME-Python, but is usable for other purposes as well. It aims to follow the standard Python language mapping for CORBA. It can generate stubs at runtime from typelibs, IDL files, or by introspecting remote objects using ORBit2's IModule typelib capabilities." The source tarball can be found here: http://ftp.gnome.org/pub/GNOME/sources/pyorbit/2.13/ Please file bug reports (bugs, missing APIs) here: http://bugzilla.gnome.org/enter_bug.cgi?product=pyorbit Changes from 2.14.0 to 2.14.1: - Fix build problem on cygwin - Fix segmentation fault on orb.shutdown() - Make it work on Python 2.5 and 64-bit platforms -- Gustavo J. A. M. Carneiro The universe is always one step beyond logic From mclasen@redhat.com Mon Jun 12 12:04:32 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 41C3B3B000C; Mon, 12 Jun 2006 12:04:32 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09149-04; Mon, 12 Jun 2006 12:04:29 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 7270D3B009D; Mon, 12 Jun 2006 12:04:29 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5CG3bc9030255; Mon, 12 Jun 2006 12:03:37 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [172.16.76.12]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5CG3bc3007778; Mon, 12 Jun 2006 12:03:37 -0400 Received: from golem.boston.redhat.com (golem.boston.redhat.com [172.16.80.24]) by mail.boston.redhat.com (8.12.8/8.12.8) with ESMTP id k5CG3blQ018463; Mon, 12 Jun 2006 12:03:37 -0400 From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain Date: Mon, 12 Jun 2006 12:03:36 -0400 Message-Id: <1150128216.15532.14.camel@golem.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.1 (2.7.1-1) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.426 tagged_above=-999 required=2 tests=[AWL=-0.056, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_LQ=0.077, TW_RX=0.077, TW_TR=0.077] X-Spam-Score: -2.426 X-Spam-Level: Cc: Subject: GLib 2.11.3 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 16:04:32 -0000 GLib 2.11.3 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.11/ http://ftp.gnome.org/pub/GNOME/sources/glib/2.11/ glib-2.11.3.tar.bz2 md5sum: 41931c4965f7e1848f81b800914905cd glib-2.11.3.tar.gz md5sum: cd78ebc535e29cdef0fed9487aa21dac This is a development release leading up to GLib 2.12. Notes: * This is unstable development release. While it has had a bit of testing, there are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GLib 2.10. If you have problems, you'll need to reinstall GLib 2.10. * GLib 2.12 will be source and binary compatible with the GLib 2.10.x series (for some caveats, see the README). At this point, the API additions in the 2.11.x series are almost finished. * Bugs should be reported to http://bugzilla.gnome.org. About GLib ========== GLib is the low-level core library that forms the basis for projects such as GTK+ and GNOME. It provides data structure handling for C, portability wrappers, and interfaces for such runtime functionality as an event loop, threads, dynamic loading, and an object system. More information about GLib is available at: http://www.gtk.org/ An installation guide for the GTK+ libraries, including GLib, can be found at: http://developer.gnome.org/doc/API/2.0/gtk/gtk-building.html Overview of Changes from GLib 2.11.2 to GLib 2.11.3 =================================================== * GBookmarkFile: - g_bookmark_file_move_item: Return TRUE in case of an empty target * Bugs fixed: 343919 gunicollate.c: strxfrm bug on VC8 * Updated translations (fi) A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=343919 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Emmanuele Bassi, Kazuki Iwamoto, Tor Lillqvist Matthias Clasen June 12, 2006 From Brian.Cameron@Sun.COM Mon Jun 12 14:30:32 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4CFFC3B0010; Mon, 12 Jun 2006 14:30:32 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24480-06; Mon, 12 Jun 2006 14:30:31 -0400 (EDT) Received: from brmea-mail-3.sun.com (brmea-mail-3.Sun.COM [192.18.98.34]) by menubar.gnome.org (Postfix) with ESMTP id F1D1A3B0078; Mon, 12 Jun 2006 14:30:30 -0400 (EDT) Received: from fe-amer-01.sun.com ([192.18.108.175]) by brmea-mail-3.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k5CITqhn016383; Mon, 12 Jun 2006 12:29:52 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0R00001F5FBN00@mail-amer.sun.com> (original mail from Brian.Cameron@Sun.COM); Mon, 12 Jun 2006 12:29:52 -0600 (MDT) Received: from [192.168.0.20] ([206.135.142.194]) by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0R002PJFDNG7X0@mail-amer.sun.com>; Mon, 12 Jun 2006 12:29:52 -0600 (MDT) Date: Mon, 12 Jun 2006 13:29:49 -0500 From: Brian Cameron Sender: Brian.Cameron@Sun.COM To: gnome-announce-list@gnome.org, gdm-list@gnome.org Message-id: <448DB29D.9020208@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5.0.2 (X11/20060515) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.444 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, TW_GD=0.077, TW_PM=0.077, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.444 X-Spam-Level: Cc: Subject: GDM2 2.15.5 (unstable), the "Caraboy" Release X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 18:30:32 -0000 AOOH-GAH -------- (If you have no clue what gdm is, skip a few paragraphs down first) The 2.15.5 release is an unstable release of GDM with the following new features. - Correction to autologin PAM service name so automatic login works. (Brian Cameron) - Fix compiler warnings that were causing core dumping issues on some platforms (Brian Cameron) - Translation updates (Josep Puigdemont Casamaj\303\263, Changwoo Ryu) Note that this also contains an important security fix that was originally released in 2.15.4, so please make sure to update if using an older version than 2.15.4. - Correction for serious security issue where the user can enter the GDM configuration GUI with a user password when the Face Browser is enabled. Refer to bugzilla.gnome.org bug #343476 (Brian Cameron) This issue impacts all versions of GDM 2.8.0.0-2.8.0.7, 2.14.0-2.14.7, and 2.15.0-2.15.3. This issue was reported to vendor-sec one week ago and has ID #CVE-2006-2452. Note: GDM2 was originally written by Martin K. Petersen . Much work has been done on GDM2 by George Lebl, and Brian Cameron currently shares maintainership duties with the Queen of England. Note2: If installing from the tarball do note that make install overwrites most of the setup files, all except gdm.conf. It will however save backups with the .orig extension first. #ifndef GDM_DISABLE_DEPRECATED Note3: Note3 has been depracated ... #endif /* GDM_DISABLE_DEPRECATED */ Downloading: ============ Online Documentation - http://www.gnome.org/projects/gdm/ Latest Stable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.14/ Latest Unstable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.15/ No RPM this time around BTW. Have fun. A spec file is included though, so you can try: rpmbuild -ta gdm-whatever.tar.gz Have fun, Brian From Brian.Cameron@Sun.COM Mon Jun 12 15:08:35 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 715123B034C; Mon, 12 Jun 2006 15:08:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26412-02; Mon, 12 Jun 2006 15:08:32 -0400 (EDT) Received: from brmea-mail-1.sun.com (brmea-mail-1.Sun.COM [192.18.98.31]) by menubar.gnome.org (Postfix) with ESMTP id 99D443B025E; Mon, 12 Jun 2006 15:08:32 -0400 (EDT) Received: from fe-amer-05.sun.com ([192.18.108.179]) by brmea-mail-1.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k5CJ7bEh002523; Mon, 12 Jun 2006 13:07:37 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0R00501GXLIW00@mail-amer.sun.com> (original mail from Brian.Cameron@Sun.COM); Mon, 12 Jun 2006 13:07:37 -0600 (MDT) Received: from [192.168.0.20] ([206.135.142.194]) by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0R00A6NH4LVTH0@mail-amer.sun.com>; Mon, 12 Jun 2006 13:07:37 -0600 (MDT) Date: Mon, 12 Jun 2006 14:07:35 -0500 From: Brian Cameron Sender: Brian.Cameron@Sun.COM To: gnome-announce-list@gnome.org, gdm-list@gnome.org Message-id: <448DBB77.9000608@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5.0.2 (X11/20060515) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.444 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, TW_GD=0.077, TW_PM=0.077, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.444 X-Spam-Level: Cc: Subject: GDM2 2.14.9 (stable), the "Lincoln Park" Release X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 19:08:35 -0000 AOOH-GAH -------- (If you have no clue what gdm is, skip a few paragraphs down first) The 2.14.9 release is a stable release of GDM with the following new features. - Correction to autologin PAM service name so automatic login works. (Brian Cameron) - Fix compiler warnings that were causing core dumping issues on some platforms (Brian Cameron) - Translation updates (Josep Puigdemont Casamaj\303\263) Note: GDM2 was originally written by Martin K. Petersen . Much work has been done on GDM2 by George Lebl, and Brian Cameron currently shares maintainership duties with the Queen of England. Note2: If installing from the tarball do note that make install overwrites most of the setup files, all except gdm.conf. It will however save backups with the .orig extension first. #ifndef GDM_DISABLE_DEPRECATED Note3: Note3 has been depracated ... #endif /* GDM_DISABLE_DEPRECATED */ Downloading: ============ Online Documentation - http://www.gnome.org/projects/gdm/ Latest Stable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.14/ Latest Unstable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.15/ No RPM this time around BTW. Have fun. A spec file is included though, so you can try: rpmbuild -ta gdm-whatever.tar.gz Have fun, Brian From mclasen@redhat.com Mon Jun 12 15:43:04 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 851123B00E5; Mon, 12 Jun 2006 15:43:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27729-06; Mon, 12 Jun 2006 15:43:02 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 5B16F3B0010; Mon, 12 Jun 2006 15:43:02 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5CJZWav007572; Mon, 12 Jun 2006 15:35:32 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [172.16.76.12]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5CJZWUd001833; Mon, 12 Jun 2006 15:35:32 -0400 Received: from golem.boston.redhat.com (golem.boston.redhat.com [172.16.80.24]) by mail.boston.redhat.com (8.12.8/8.12.8) with ESMTP id k5CJZWlQ009694; Mon, 12 Jun 2006 15:35:32 -0400 From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain Date: Mon, 12 Jun 2006 15:35:31 -0400 Message-Id: <1150140931.15532.18.camel@golem.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.1 (2.7.1-1) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.541 tagged_above=-999 required=2 tests=[AWL=0.060, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.541 X-Spam-Level: Cc: Subject: GTK+ 2.8.19 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 19:43:04 -0000 GTK+ 2.8.19 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.8/ http://ftp.gnome.org/pub/GNOME/sources/gtk+/2.8/ gtk+-2.8.19.tar.bz2 md5sum: 1a03dbed4b794194a610e9d7eb175b06 gtk+-2.8.19.tar.gz md5sum: 604d3263498994c58af378f0ec076e6f This is a bugfix release in the 2.8.x series. It fixes a rare memory corruption issue when using the deprecated GdkFont API. What is GTK+ ============ 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.8 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/ Overview of Changes from GTK+ 2.8.18 to GTK+ 2.8.19 =================================================== Bugs fixed: 341327 Memory corruption inside glib 337491 _gdk_win32_drawable_release_dc: DeleteDC() called on a GetDC() handle 343425 "grab-notify"-signal is not correctly propagated for internal children 344244 Window resizing not working when keeping the aspect fixed 344496 CRLF converting via Clipboard Updated translations (ne) A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=343425,341327,344244,337491,344496 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Markku Vire, Sampo Savolainen, Tim Janik, Tor Lillqvist, Chris Wilson June 12, 2006 Matthias Clasen From newren@gmail.com Mon Jun 12 20:01:08 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C06453B018B for ; Mon, 12 Jun 2006 20:01:08 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03747-10 for ; Mon, 12 Jun 2006 20:01:06 -0400 (EDT) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.203]) by menubar.gnome.org (Postfix) with ESMTP id DCC213B0078 for ; Mon, 12 Jun 2006 20:01:05 -0400 (EDT) Received: by wx-out-0102.google.com with SMTP id h26so971531wxd for ; Mon, 12 Jun 2006 17:00:16 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=tzATDJMp0XzBzC3f1Js6q5t6DW1AJ/Xb3xHu6cJ5HbRxmg4U9Mi4mRfXd+tBd4gF2Jrx0LCPgFnY6WCcrrfEvTgkrAqgyR9TK2LZ0Rxry84BtUi6UXb3giOhJe8CORooz/5D9FkMGku6+JWNaBWjfK/H1pg3dz8Xy5khyLDZnps= Received: by 10.70.29.3 with SMTP id c3mr7026730wxc; Mon, 12 Jun 2006 17:00:16 -0700 (PDT) Received: by 10.70.89.16 with HTTP; Mon, 12 Jun 2006 17:00:16 -0700 (PDT) Message-ID: <51419b2c0606121700j69ef2e93x2dedecfb4c173083@mail.gmail.com> Date: Mon, 12 Jun 2006 18:00:16 -0600 From: "Elijah Newren" To: gnome-announce-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.537 tagged_above=-999 required=2 tests=[AWL=-0.014, BAYES_00=-2.599, SPF_PASS=-0.001, TW_BW=0.077] X-Spam-Score: -2.537 X-Spam-Level: Subject: libwnck 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 00:01:09 -0000 * What is it ? ============== Library for writing different kinds of workspace switchers, window lists, task bars, task menus, etc. Window Navigation Construction Kit. Pronounced "lib-wink" * What's changed ? ================== Fixes - restart activation timeout when the mouse moves to a different workspace (Benjamin) - new methods to test if the names returned by wnck_window_get_name and wnck_window_get_icon_name are real or just FALLBACK_NAME (Dan) [#342577] Misc - don't translate %s (Vincent) [#339069] Translations - Guillaume Savaton (eo) * Where can I get it ? ====================== Source code http://ftp.gnome.org/pub/GNOME/sources/libwnck/2.15/ MD5SUMs 6e9ef41d1aa9e81d6bc33047cccbe07f libwnck-2.15.3.tar.bz2 08a86da5a0225ef1ac5f340b95e74a4c libwnck-2.15.3.tar.gz From newren@gmail.com Mon Jun 12 20:28:13 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2AE023B00A5 for ; Mon, 12 Jun 2006 20:28:13 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04431-07 for ; Mon, 12 Jun 2006 20:28:11 -0400 (EDT) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.193]) by menubar.gnome.org (Postfix) with ESMTP id 6F8173B0078 for ; Mon, 12 Jun 2006 20:28:11 -0400 (EDT) Received: by wx-out-0102.google.com with SMTP id h26so974384wxd for ; Mon, 12 Jun 2006 17:27:35 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=kP6G2sZ3DMwVOY8jQamPOJMaaFSRSXp2y9wwFGXNkpY9JgQhdby0hd2FfdVpmpuaiefE4ZzuZpRcGMYYYQn6Uy0lA4+nsPGxOr+uQMfqytegFiAFLpHQ1Ly8bKHW0FG3kwRN1lWVPIylZ8GP7vkdnEXeWht1ipWqQw7nj0OchIk= Received: by 10.70.132.12 with SMTP id f12mr6858664wxd; Mon, 12 Jun 2006 17:01:49 -0700 (PDT) Received: by 10.70.89.16 with HTTP; Mon, 12 Jun 2006 17:01:49 -0700 (PDT) Message-ID: <51419b2c0606121701y5d42a121o5ab05ac32f69b96@mail.gmail.com> Date: Mon, 12 Jun 2006 18:01:49 -0600 From: "Elijah Newren" To: gnome-announce-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.576 tagged_above=-999 required=2 tests=[AWL=0.024, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.576 X-Spam-Level: Subject: metacity 2.15.5 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 00:28:13 -0000 * What is it ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Metacity is a simple window manager that integrates nicely with GNOME 2. * What's changed ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Thanks to Bj=F6rn Lindqvist, S=F8ren Sandmann, Adam Jackson, Elijah Newren, and Aidan Delaney for improvements in this release. - code cleanup in resizepopup.c (Bj=F6rn) [#341648] - fix a logic bug so that the whole titlebar becomes sensitive to mouse clicks (Bj=F6rn) [#336320] - make mouse cursor when moving windows become a hand (Bj=F6rn) [#337376] - lots and lots of compositor improvements -- beginning of a new layer to abstract transition effects, shrinking and minimizing and exploding effects, fading in and out, unminimize animation that reverses minimize one, translucent menus, bounce on window focus, and all kinds of stuff I don't understand and can't summarize well (S=F8ren, Adam) - Fix a crash on exit/logout from assuming a compositor would always exist (Elijah) [#342166] - code cleanup in tabpopup.c (Aidan Delaney) [#166890] Translations Pema Geyleg (dz), I=F1aki Larra=F1aga Murgoitio (eu), Theppitak Karoonboonyanan (th), Clytie Siddall (vi) * Where can I get it ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Source code http://download.gnome.org/sources/metacity/2.15/ MD5SUMs 057a284898385218b8711229d659c2ed metacity-2.15.5.tar.bz2 983eb3ee58263214e3e57c2f962fbd6a metacity-2.15.5.tar.gz From mclasen@redhat.com Tue Jun 13 02:09:16 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 72FE93B00AF; Tue, 13 Jun 2006 02:09:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12183-04; Tue, 13 Jun 2006 02:09:13 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id B2F773B000C; Tue, 13 Jun 2006 02:09:13 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5D681s3022181; Tue, 13 Jun 2006 02:08:01 -0400 Received: from lacrosse.corp.redhat.com (lacrosse.corp.redhat.com [172.16.52.154]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5D67uRP017686; Tue, 13 Jun 2006 02:07:56 -0400 Received: from [172.16.83.145] (vpn83-145.boston.redhat.com [172.16.83.145]) by lacrosse.corp.redhat.com (8.12.11.20060308/8.11.6) with ESMTP id k5D67tQC015619; Tue, 13 Jun 2006 02:07:56 -0400 From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain; charset=UTF-8 Organization: Red Hat Date: Tue, 13 Jun 2006 02:09:42 -0400 Message-Id: <1150178982.4081.13.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.426 tagged_above=-999 required=2 tests=[AWL=-0.056, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_GD=0.077, TW_GT=0.077, TW_KB=0.077] X-Spam-Score: -2.426 X-Spam-Level: Cc: Subject: GTK+ 2.9.3 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 06:09:16 -0000 GTK+ 2.9.3 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.9/ http://ftp.gnome.org/pub/gnome/sources/gtk+/2.9/ gtk+-2.9.3.tar.bz2 md5sum: d73039a3b5847c352f5740ac908be7d2 gtk+-2.9.3.tar.gz md5sum: 0156eef91d2bbb23f1b6ccb49335fae5 This is a development release leading up to GTK+ 2.10. Notes: * This is unstable development release. There are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GTK+ 2.8. If you have problems, you'll need to reinstall GTK+ 2.8. * GTK+ 2.10 will be source compatible with the GTK+ 2.8 series; the new API additions in GTK+ 2.9.0 are not yet completely finalized, so there are likely incompatibilies between this release and the final 2.10 release. * The ABI version has been bumped from 2.4.0 to 2.10.0, since the filechooser backend interface has been changed. Third-party filechooser backends need to be ported to the new interface. Other third-party modules (input methods, image loaders, etc) just need to be reinstalled in the proper location for GTK+ to find them. * Remaining issues for GTK+ 2.10 can be found with following bugzilla query: http://bugzilla.gnome.org/buglist.cgi?product=gtk%2b&target_milestone=2.10+API+Freeze&target_milestone=2.10+Freeze&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED * Bugs should be reported to http://bugzilla.gnome.org. What is GTK+ ============ 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.4/gtk/gtk-building.html Common questions: http://developer.gnome.org/doc/API/2.4/gtk/gtk-question-index.html http://www.gtk.org/faq/ Overview of Changes from GTK+ 2.9.2 to 2.9.3 ============================================ * GtkPrintOperation: - Introduce an allow-async property - Introduce a GtkPrintOperationAction enumeration - Rename pdf_target to export_filename - Allow to hide "Print to PDF" in the low-level API * GtkNotebook: - Add a destroy notify to gtk_notebook_set_window_creation_hook. * GtkTreeView: - Support grid lines * GtkRange: - Add a number of new stle properties which allow more fexible stepper theming * Bugs fixed: 153212 Have the Paste kbd shortcut jump to the location in the buffer 337491 _gdk_win32_drawable_release_dc: DeleteDC() called on a GetDC() handle 339739 gtk/gtkprintoperation-win32.c: 3 compile error 342339 GtkRange::stepper-spacing style property not implemented correctly 343945 Buttons of a GtkAssistant are not accessible 344148 Wrong reqs for ATK 344209 gtk_notebook_set_window_creation_hook() has no destroy func. 344232 GtkEntry's "Delete" context menu item is sensitive on a non-editable GtkEntry 344244 Window resizing not working when keeping the aspect fixed 344288 gtk_print_operation_preview_is_selected must return a value 344386 gdk-2.0-uninstalled.pc.in and gdkconfig.h 344496 CRLF converting via Clipboard 344504 GtkPrintCapabilities not in gtktypebuiltins.h 344505 Wrong signal registration for create_custom_widget 344512 cvs build issue 344513 pdf print module's print_stream not calling destroy notify 344518 NULL unref in page setup dialogue 344543 gtk_progress_bar_pulse calls gtk_progress_bar_paint directly 344560 gtk_print_settings_[sg]et_scale shouldn't be in percent 344607 memory leaks in gtkrecentchooserdefault.c and gtkrecentchoosermenu.c 344624 Memory leak in gtk_tree_model_filter_finalize: User data not freed 337603 Possible off-by-one in gdk_pango_layout_line_get_clip_region 344239 Wrong filename for gtk-find stock item. 344528 comma at end of GtkPrintOperationAction enum causes mozilla compilation error 344290 horizontal-padding not take into account when placing submenus 344558 document print dialogue response codes 339592 Add print-to-postscript 342249 Allow to draw upper and lower sides of GtkRange's trough differently 344530 gtk_recent_chooser_widget_new_for_manager and gtk_recent_chooser_menu_new_for_manager should allow NULL manager arg * Updated translations (es,fi,gu,ko,th,wa) A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=153212,337491,339739,342339,343945,344148,344209,344232,344244,344288,344386,344496,344504,344505,344512,344513,344518,344543,344560,344607,344624,337603,344239,344528,344290,344558,339592,342249,344530 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Behdad Esfahbod, Bastian Nocera, Alexander Larsson, Jrg Billeter, Murray Cumming, Milosz Derezynski, Tor Lillqvist, Kazuki Iwamoto, Chris Wilson, Michael Natterer, Benjamin Berg, Marko Anastasov, Christian Persch, Masatake Yamamoto, Elijah Newren, John Finlay, Emmanuele Bassi, David Malcolm, John Darrington, Christian Weiske, Yvgen Muntyan, Martyn Russell, Kristian Rietveld June 13, 2006 Matthias Clasen From parente@gmail.com Mon Jun 12 09:07:24 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8979A3B009D for ; Mon, 12 Jun 2006 09:07:24 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03281-09 for ; Mon, 12 Jun 2006 09:07:22 -0400 (EDT) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.231]) by menubar.gnome.org (Postfix) with ESMTP id 9BD863B0083 for ; Mon, 12 Jun 2006 09:07:22 -0400 (EDT) Received: by wr-out-0506.google.com with SMTP id 50so59130wri for ; Mon, 12 Jun 2006 06:06:53 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=Hk2y2xQcbYJKNPf1LW7Y+V28/uYf1U244+IHjlJ7rvPAXFm2IeIHW6o/slpX1K2RUSQzIkrF+sc7i4dF5E8CMLURiFTCBFzpZu9qbgaiDE/D6+W4KrPGXwQqArUp5siLDWhmzDklvsX4fL+9EE4/UFa+de3k689sT00z2J2T/y4= Received: by 10.64.150.20 with SMTP id x20mr4562225qbd; Mon, 12 Jun 2006 06:06:53 -0700 (PDT) Received: by 10.65.154.18 with HTTP; Mon, 12 Jun 2006 06:06:53 -0700 (PDT) Message-ID: <5308fd2c0606120606p43b30477o4e73cfad155dcaa7@mail.gmail.com> Date: Mon, 12 Jun 2006 09:06:53 -0400 From: "Peter Parente" To: gnome-announce-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.589 tagged_above=-999 required=2 tests=[AWL=0.011, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.589 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Subject: lsr-0.2.1 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: parente@cs.unc.edu List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 13:07:24 -0000 ============== * What is it ? ============== Linux Screen Reader (LSR) is an extensible assistive technology for people with disabilities. The design philosophy behind LSR is to provide a core platform that enables the development of LSR extensions for improving desktop application accessibility and usability and shields extension developers from the intricacies of the desktop accessibility architecture. The primary use of the LSR platform is to give people with visual impairments access to the GNOME desktop and its business applications (e.g. Firefox, OpenOffice, Eclipse) using speech, Braille, and screen magnification. The extensions packaged with the LSR core are intended to meet this end. However, LSR's rich support for extensions can be used for a variety of other purposes such as supporting novel input and output devices, improving accessibility for users with other disabilities, enabling multi-modal access to the GNOME desktop, and so forth. ================== * What's changed ? ================== 0.2.1 ===== User interface * Better reporting of accessible components * Combobox current text reported on focus * Tree level reported on level change and first focus (bug #343388) * Menu role and name announced before menu items when switching between menus * Review of visible items works on text, trees, lists, and tables now * Added mute indefinitely key command Scripting * Added DeveloperPerk with the following commands * Refresh all loaded scripts without restarting LSR * Report names of all loaded scripts * Show or hide all development monitor windows * Added -g command line parameter to generate a new extension template * Update of TaskTools to support new output semantics * Added support for text selection events * Added support for storing script and application state separately Devices * Updated Keyboard device to support stateful keys as modifiers (e.g. CapsLock) Architecture * Complete refactor of output interface to support device Style objects * Mapping from semantics (role, title, level, etc.) to styles * Plumbing to support persistence and configuration of extension settings * Plumbing to support auto-generation of settings dialogs for extensions Documentation * Posted Gaim Perk tutorial as hands-on example of writing a script extension * Updated user guide to mention new key bindings * Regenerated epydoc to match latest API Translations * sv(Christian Rose) ====================== * Where can I get it ? ====================== Source code release: http://live.gnome.org/LSR#downloads For more information, visit the LSR home page: http://live.gnome.org/LSR From rodrigo@novell.com Mon Jun 12 17:44:58 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F06E53B016D for ; Mon, 12 Jun 2006 17:44:57 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32717-04 for ; Mon, 12 Jun 2006 17:44:57 -0400 (EDT) Received: from peabody.ximian.com (peabody.ximian.com [130.57.169.10]) by menubar.gnome.org (Postfix) with ESMTP id DCE623B00E5 for ; Mon, 12 Jun 2006 17:44:56 -0400 (EDT) Received: (qmail 22167 invoked from network); 12 Jun 2006 21:43:46 -0000 Received: from localhost (HELO ?164.99.120.183?) (127.0.0.1) by localhost with SMTP; 12 Jun 2006 21:43:46 -0000 From: Rodrigo Moya To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-15 Date: Mon, 12 Jun 2006 23:36:21 +0200 Message-Id: <1150148182.16907.0.camel@formigal.home> Mime-Version: 1.0 X-Mailer: Evolution 2.6.0 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.336 tagged_above=-999 required=2 tests=[AWL=-0.091, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, TW_BX=0.077, TW_IB=0.077] X-Spam-Score: -2.336 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: Control Center List Subject: control-center 2.15.3 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 21:44:58 -0000 Changes since 2.14.2 -------------------- about me: - Fixed typo (Rodrigo Moya) (324971) - Fixed compilation issues (Rodrigo Moya) (344468) default applications: - Added support for Sylpheed (Luca Cavalli) (332659) - Removed unnecessary gnome-terminal argument (Luca Cavalli) (336700) keybindings: - Removed brightness keybindings, now in gnome-power-manager (Bastien Nocera) (339857) keyboard: - Save/restore layout preview window geometry (Sergey Udaltsov) mouse: - Fixed selection when no cursor font is set in GConf (Darren Kenny) (340003) sound: - Added sound device selection (Jrg Billeter) (329112) - Fixed button strings (Rodrigo Moya) (324971) theme-switcher: - Removed drag & drop information text (Thomas Wood) (99535) - Added Install buttons to each tab in the details window (Thomas Wood) - Remember last browsed or installed from location (Thomas Wood) (138795) - Don't allow invalid characters in theme names (Thomas Wood) (139692) - Don't ask user whether to overwrite or not internal files (Thomas Wood) (317375) - Allow saving background image for custom themes (Thomas Wood) (330302) - Fixed UI issues in the save dialog (Thomas Wood) (100622) settings daemon: - Fixed libxklavier engine initialization logic (Sergey Udaltsov) (333091) - Removed references to brightness controls (Bastien Nocera) (339857) - Fixed leaks (Paolo Borelli) (342568, 342570) general: - Updated to new libxklavier API (Sergey Udaltsov) updated translations: - bg (Alexander Shopov) - cs (Miloslav Trmac, Lukas Novotny, Jakub Friedl) - dz (Pema Geyleg) - es (Francisco Javier F. Serrador) - fi (Ilkka Tuohela) - gl (Ignacio Casal Quinteiro) - gu (Ankit Patel) - mg (Simos Xenitellis) - nb (Kjartan Maraas) - sq (Laurent Dhima) - sv (Daniel Nylander) - th (Theppitak Karoonboonyanan) - vi (Clytie Siddall) - zh_CN (Funda Wang) - zh_HK (Chao-Hsiung Liao) - zh_TW (Chao-Hsiung Liao) Availability ------------ http://ftp.gnome.org/pub/GNOME/sources/control-center/2.15/ Contact ------- * Bugs in http://bugzilla.gnome.org * Mailing list http://mail.gnome.org/mailman/listinfo/gnomecc-list -- Rodrigo Moya From behdad.esfahbod@gmail.com Mon Jun 12 17:47:52 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7B80A3B014D for ; Mon, 12 Jun 2006 17:47:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32679-08 for ; Mon, 12 Jun 2006 17:47:50 -0400 (EDT) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.206]) by menubar.gnome.org (Postfix) with ESMTP id 93D3F3B02C1 for ; Mon, 12 Jun 2006 17:47:50 -0400 (EDT) Received: by wx-out-0102.google.com with SMTP id h26so956318wxd for ; Mon, 12 Jun 2006 14:47:02 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:subject:from:to:content-type:date:message-id:mime-version:x-mailer:sender; b=YVJmmmTJDYAPVWyBcXj8x877np/3myVRslCESpGT8RXV9fhXWO7m4zcVtD0bbIyxzLCNy9G4MxoeR4wKgZZNAmVLfJY4S5Cm99AU8jHeau3kamsPLiBWdw/7luc5fNsqJp4eQk4EpFqLzmMhtWaKSOxclPSl65MK68ngzTNkqNo= Received: by 10.70.103.17 with SMTP id a17mr6909562wxc; Mon, 12 Jun 2006 14:47:02 -0700 (PDT) Received: from to-dhcp26.toronto.redhat.com ( [63.250.163.171]) by mx.gmail.com with ESMTP id h34sm6169771wxd.2006.06.12.14.47.01; Mon, 12 Jun 2006 14:47:01 -0700 (PDT) From: Behdad Esfahbod To: gnome-announce-list@gnome.org Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-Vxzn0OEXLlv9C28CHSps" Date: Mon, 12 Jun 2006 17:46:59 -0400 Message-Id: <1150148819.10765.11.camel@home> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 (2.6.1-1.fc5.2) Sender: Behdad Esfahbod X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.6 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.6 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Subject: vte-0.13.2 released [unstable] X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 21:47:52 -0000 --=-Vxzn0OEXLlv9C28CHSps Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Vte-0.13.2 is available for download at: http://download.gnome.org/sources/vte/0.13/ Vte is GNOME 2's virtual-terminal emulation widget. This is an unstable release. 0.13.2 Bug 344666 =E2=80=93 Problems with *_CFLAGS and *_LDFLAGS in makefiles Patch from Stepan Kasal . Bug 339529 =E2=80=93 gnome-terminal (vte) crashes when detatched window is closed Bug 342549 =E2=80=93 uninitialized var (coverity) Patch from Paolo Borelli. Bug 342082 =E2=80=93 vte_invalidate_region() may check whether terminal is realiazed or not Patch from Kouhei Sutou. Bug 340363 =E2=80=93 vte Cygwin build fixes Patch from Cygwin Ports maintainer Bug 341793 =E2=80=93 vte.h doesn't need to include X11/Xlib.h Patch from Kouhei Sutou Require intltool 0.35.0 to have translations in the dist tarballs. Fix typo which may have been causing things like crashes. Behdad Esfahbod 12 June 2006 --=-Vxzn0OEXLlv9C28CHSps Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEjeDTn+4E5dNTERURAjCvAJ9H07aDShKW/mLQfhNyOaMG1RtYsACgixvW gbPOhTT6IK5+BSx0dCk7844= =JsUT -----END PGP SIGNATURE----- --=-Vxzn0OEXLlv9C28CHSps-- From behdad.esfahbod@gmail.com Mon Jun 12 17:52:44 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id EFA613B02CD for ; Mon, 12 Jun 2006 17:52:43 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00550-05 for ; Mon, 12 Jun 2006 17:52:42 -0400 (EDT) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.196]) by menubar.gnome.org (Postfix) with ESMTP id A2EDA3B016D for ; Mon, 12 Jun 2006 17:52:41 -0400 (EDT) Received: by wx-out-0102.google.com with SMTP id h26so957012wxd for ; Mon, 12 Jun 2006 14:51:44 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:subject:from:to:content-type:date:message-id:mime-version:x-mailer:sender; b=HkVpdki0/g3XkGcHUm613LiH99RNWp83QpOiB04twtI9/oyY5QJs7xgUW9ugXUYWTW0FQESua3SiFes9GpwcHFnulMB+jmu6Frg1gjSTz94Z0WNKazKYJCx/0yCrKVvi+sIhO9793kd+R7hBbKFWLBqlIyo5yetvED1gx6HIjnc= Received: by 10.70.36.1 with SMTP id j1mr6891335wxj; Mon, 12 Jun 2006 14:44:52 -0700 (PDT) Received: from to-dhcp26.toronto.redhat.com ( [63.250.163.171]) by mx.gmail.com with ESMTP id h18sm3879342wxd.2006.06.12.14.44.50; Mon, 12 Jun 2006 14:44:51 -0700 (PDT) From: Behdad Esfahbod To: Pango Release Lists , gtk-app-devel-list@gnome.org, gtk-devel-list@gnome.org, gtk-i18n-list@gnome.org, gtk-list@gnome.org Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-HZBsNn3KdPR3jVVwB9gO" Date: Mon, 12 Jun 2006 17:44:37 -0400 Message-Id: <1150148678.10765.8.camel@home> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 (2.6.1-1.fc5.2) Sender: Behdad Esfahbod X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.6 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.6 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: Subject: Pango-1.13.2 released [unstable] X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 21:52:44 -0000 --=-HZBsNn3KdPR3jVVwB9gO Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Pango-1.13.2 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.11/ or http://download.gnome.org/sources/pango/1.13/ 28a6ea9d43c4cd398e7352032f775401 pango-1.13.2.tar.bz2 17d78473c05fece044c6a3b44519b61f pango-1.13.2.tar.gz This is a development release leading up to Pango-1.14.0, which will be released just in time for GNOME-2.16. Notes: * This is unstable development release. While it has had fairly extensive testing, there are likely bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of Pango-1.12. If you have problems, you'll need to reinstall Pango-1.12.x * Bugs should be reported to http://bugzilla.gnome.org. About Pango =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Pango is a library for layout and rendering of text, with an emphasis on internationalization. Pango can be used anywhere that text layout is needed, though most of the work on Pango so far has been done in the context of the GTK+ widget toolkit. Pango forms the core of text and font handling for GTK+-2.x. Pango is designed to be modular; the core Pango layout engine can be used with different font backends. There are three basic backends, with multiple options for rendering with each. - Client side fonts using the FreeType and fontconfig libraries. Rendering can be with with Cairo or Xft libraries, or directly to an in-memory buffer with no additional libraries. - Native fonts on Microsoft Windows. (Optionally using Uniscribe for complex-text handling). Rendering can be done via Cairo or directly using the native Win32 API. - Native fonts on MacOS X, rendering via Cairo. The integration of Pango with Cairo (http://cairographics.org) provides a complete solution with high quality text handling and graphics rendering. Dynamically loaded modules then handle text layout for particular combinations of script and font backend. Pango ships with a wide selection of modules, including modules for Hebrew, Arabic, Hangul, Thai, and a number of Indic scripts. Virtually all of the world's major scripts are supported. As well as the low level layout rendering routines, Pango includes PangoLayout, a high level driver for laying out entire blocks of text, and routines to assist in editing internationalized text. More information about Pango is available from http://www.pango.org/. Pango 1.13.2 depends on version 2.10.0 or newer of the GLib library and version 1.1.2 or newer of the cairo library (if the cairo backend is desired); more information about GLib and cairo can be found at http://www.gtk.org/ and http://cairographics.org/ respectively. Overview of changes between 1.13.1 and 1.13.2 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D * Improved hexbox drawing, and font metrics calculations. * Synthesize italic variants on win32 [Hans Breuer] * New public API: - pango_cairo_show_error_underline - pango_cairo_error_underline_path - pango_font_describe_with_absolute_size * Misc fixes. * Bugs fixed in this release: Bug 326960 =E2=80=93 hex box drawing for win32 and atsui backends of cairo Bug 343717 =E2=80=93 License information in unclear. Bug 343355 =E2=80=93 Add pango_cairo_show_error_underline & pango_cairo_error_underline_path Bug 343966 =E2=80=93 pango Cygwin build fixes Patch from Cygwin Ports maintainer. Bug 343796 =E2=80=93 Italic Chinese character can't be show correctly in Win32. Bug 314114 =E2=80=93 max_x_advance not appropriate for approximate_(char|digit)_width Bug 341138 =E2=80=93 Using TTC font, Gtk2 programs begin to eating big mem= ory and have many cpu usage. Patch from Yong Li. Bug 336153 =E2=80=93 Mark to mark positioning (Lookup Type 6) isn't correc= t when using MarkAttchmentType Patch from Tin Myo Htet. Bug 333984 =E2=80=93 pango_language_from_string improvements Bug 125378 =E2=80=93 Better underline thickness handling Bug 339730 =E2=80=93 Pango needlessly falls back away from a Type 1 font i= nto a TTF font Bug 342562 =E2=80=93 Support absolute sizes in pango_font_description_to/from_string Bug 341922 =E2=80=93 pango should handle more characters as zero width Patch from Roozbeh Pournader Bug 342525 =E2=80=93 With PangoFc and PangoWin32, approximate digit width = is not what it says Bug 342079 =E2=80=93 pangoatsui-private.h missing from release Behdad Esfahbod 12 June 2006 --=-HZBsNn3KdPR3jVVwB9gO Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEjeBFn+4E5dNTERURApTwAJ9OvqbaG1xnQYzGPC9u0WPi30b6ggCfXNvZ oFfMwctzkAaKRETc/0aDRj0= =Wl7j -----END PGP SIGNATURE----- --=-HZBsNn3KdPR3jVVwB9gO-- From ebassi@gmail.com Mon Jun 12 18:16:04 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 959AC3B00A5 for ; Mon, 12 Jun 2006 18:16:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01337-06 for ; Mon, 12 Jun 2006 18:16:03 -0400 (EDT) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.186]) by menubar.gnome.org (Postfix) with ESMTP id E69443B015D for ; Mon, 12 Jun 2006 18:16:02 -0400 (EDT) Received: by nf-out-0910.google.com with SMTP id x37so950087nfc for ; Mon, 12 Jun 2006 15:14:56 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:subject:from:to:cc:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; b=eGvIpFNEWtb7L9J87AK/A8+ENa91duWZBEqSL8uzr9KmNI5+11lkZvmnBmdUhuBBlxyNjlYBw3sh/Am36NkcDakYEh5OSYiVckbEq9XEKnN5svoJJwcDLufW7SXw+2xzT5RpJ43xYvJHTzDB08ykyYlcsfJVZtZALOWrI8eQ7mU= Received: by 10.48.241.20 with SMTP id o20mr5263837nfh; Mon, 12 Jun 2006 15:08:01 -0700 (PDT) Received: from rogue.local ( [86.136.65.180]) by mx.gmail.com with ESMTP id k23sm6896442nfc.2006.06.12.15.08.01; Mon, 12 Jun 2006 15:08:01 -0700 (PDT) From: Emmanuele Bassi To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=UTF-8 Date: Mon, 12 Jun 2006 23:07:59 +0100 Message-Id: <1150150079.5273.10.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.336 tagged_above=-999 required=2 tests=[AWL=0.264, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.336 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: GNOME Utils Subject: [ANNOUNCE] Gnome-utils 2.15.3 - "No, this is not Metacity" X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 22:16:04 -0000 Yeap, you read right: this is release 2.15.3 and this is *not* Metacity - even if we did skip a bit of numbers - but yet another great release of the GNOME Utilities package! Unfortunately, due to time constraints, this release rocks less than what we maintainers expected; nevertheless, it rocks louder and harder than any release done before. So download, sit back with a nice glass of red wine while your compiler of choice churns the sources, and prepare to test new features and to file new bugs. This is an unstable release of gnome-utils, so please be warned that it may cause loss of patience, body hair, teeth and overall sanity; it could also make your life easier. It's up to you to test it and report back any misfeature, bug or feature request. You can download the 2.15.3 release of gnome-utils from the usual place, at: http://download.gnome.org/sources/gnome-utils/2.15/ =================================================================== GNOME Utilities 2.15.3 (June 12th 2006) - "No, it's not Metacity" Baobab * Add a new item in the list window context menu to start scanning a folder. Dictionary * Re-implement the speller widget, to show similar words in case no definition was found. * Use a themable icon Floppy * Nothing Screenshot * Drop deprecated include files (Kristof Vansant, #167098) * Fix compilator warnings * Update launcher description Search Tool * Update launcher description System Log Viewer * Miscellaneous fixes on 64bit platforms (Joe Marcus Clarke, Lin Ma) * Change the default log files list on Solaris (Lin Ma) * Remove empty character from status bar (Lin Ma) * Sort files by ascending order (Lin Ma) * Use `File' instead of `Log' as the first menu (Lin Ma) * Fix the selection offset when copying from a log (Sebastien Bacher) Translations updates: Petr Tomeš (cs), Mindu Dorji (dz), Francisco Javier F. Serrador (es), Iñaki Larrañaga Murgoitio (eu), Ignacio Casal Quinteiro (gl), Ankit Patel (gu), Fabio Marzocca (it), Changwoo Ryu (ko), Fano Rajaonarisoa (mg), Øivind Hoel (nb), Vincent van Adrighem (nl), Theppitak Karoonboonyanan (th), Clytie Siddall (vi), Funda Wang (zh_CN), Lin-Chieh Shangkuan (zh_HK), Lin-Chieh Shangkuan (zh_TW) Ciao, Emmanuele. -- Emmanuele Bassi - Log: http://log.emmanuelebassi.net From kurt@maute.us Mon Jun 12 19:34:25 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 07B863B0150 for ; Mon, 12 Jun 2006 19:34:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03322-07 for ; Mon, 12 Jun 2006 19:34:23 -0400 (EDT) Received: from mta6.srv.hcvlny.cv.net (mta6.srv.hcvlny.cv.net [167.206.4.201]) by menubar.gnome.org (Postfix) with ESMTP id 5040C3B000C for ; Mon, 12 Jun 2006 19:34:23 -0400 (EDT) Received: from [192.168.0.56] (ool-435223b5.dyn.optonline.net [67.82.35.181]) by mta6.srv.hcvlny.cv.net (Sun Java System Messaging Server 6.2-6.01 (built Apr 3 2006)) with ESMTP id <0J0R00G8NSFQ4H00@mta6.srv.hcvlny.cv.net> for gnome-announce-list@gnome.org; Mon, 12 Jun 2006 19:11:51 -0400 (EDT) Date: Mon, 12 Jun 2006 19:11:49 -0400 From: Kurt Maute To: Planner-Dev , Planner , gnome-announce-list@gnome.org Message-id: <1150153909.4619.131.camel@dori> MIME-version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-type: text/plain; charset=UTF-8 Content-transfer-encoding: 8BIT X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.599 tagged_above=-999 required=2 tests=[AWL=0.000, BAYES_00=-2.599] X-Spam-Score: -2.599 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: Subject: Planner v0.14 Released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 23:34:25 -0000 Hi All, Planner v0.14 is now available for download: http://ftp.gnome.org/pub/GNOME/sources/planner/0.14/ What is Planner =============== Planner is the GNOME project management tool. Homepage: http://live.gnome.org/Planner What's New in Planner v0.14 =========================== * FF and SF Predecessors 140561 (Kurt Maute) * Simple priority scheduling (Matteo Nastasi): Use the --enable-simple-priority-scheduling option when building. This feature will allow a high priority task to steal resources from a lower priority task. * View Non-standard working/nonworking days (Matteo Nastasi): In the Gantt view, this feature shows where resources have differences in working and nonworking days when compared to the default calendar. * Resource Usage view canvas interactivity (Alvaro del Castillo): Right clicking on a usage bar or resource pops up an option menu. * Gantt chart misalignment with tree view 128983 (Francisco Moraes) * Summary tasks: work now equals sum of child tasks 305801 (Kurt Maute) * Eliminate effects of resource assignments on summary tasks 151604 (Kurt Maute): Assigning a resource to a summary task now has no effect. * Updated user guide: (Kurt Maute) * View Grid Lines in Gantt view 303374 (Nguyễn Thái Ngọc Duy): Shows horizontal lines in Gantt to help visually line up tasks with Gantt bars. Translators: Vladimir "Kaladan" Petkov (bg) Miloslav Trmac (cs) Hendrik Richter (de) Kostas Papadimas (el) Adam Weinberger (en_CA) David Lodge (en_GB) Francisco Javier F. Serrador (es) Ivar Smolin (et) Larra Murgoitio (eu) Meelad Zakaria (fa) Ilkka Tuohela (fi) Gabor Kelemen (hu) Takeshi AIHANA (ja) Kjartan Maraas (nb) "Last-Translator: \n" (ne) Jan-Willem Harmanny (nl) Afonso Celso Medina (pt_BR) Steve Murphy (rw) Marcel Telka (sk) Данило Шеган (sr) Daniel Nylander (sv) Maxim V. Dziumanenko (uk) Clytie Siddall (vi) Woodman Tuen (zh_TW) -- Kurt Maute From nudrema@gmail.com Mon Jun 12 20:13:02 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 32C693B0009; Mon, 12 Jun 2006 20:13:02 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04226-02; Mon, 12 Jun 2006 20:13:01 -0400 (EDT) Received: from swip.net (mailfe04.swip.net [212.247.154.97]) by menubar.gnome.org (Postfix) with ESMTP id 447933B000C; Mon, 12 Jun 2006 20:13:00 -0400 (EDT) X-T2-Posting-ID: Ee7YIbSG3O5rNcT4cGADretWTWrDEjpwS9FwzyhFhzk= X-Cloudmark-Score: 0.000000 [] Received: from [83.182.30.225] (HELO [10.0.0.13]) by mailfe04.swip.net (CommuniGate Pro SMTP 5.0.8) with ESMTP id 211925446; Tue, 13 Jun 2006 02:11:51 +0200 Message-ID: <448E02C4.2050805@gmail.com> Date: Tue, 13 Jun 2006 02:11:48 +0200 From: =?ISO-8859-1?Q?Steve_Fr=E9cinaux?= User-Agent: Thunderbird 1.5.0.2 (X11/20060522) MIME-Version: 1.0 To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.931 tagged_above=-999 required=2 tests=[AWL=-0.478, BAYES_00=-2.599, SPF_NEUTRAL=1.069, TW_GT=0.077] X-Spam-Score: -1.931 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: gedit-list Subject: ANNOUNCE: gedit 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 00:13:02 -0000 Hi all, gedit 2.15.3 is now available. gedit the official GNOME text editor. homepage: http://live.gnome.org/GeditPlugins * Changes in 2.15.3 ==================== New features and fixes: - New gedit_commands_* API for plugins (Paolo Maggi) - Snippets support for space indentation (Jesse van den Kieboom) - gtk-doc enabled C plugin API documentation (Steve Frcinaux) - Next/Previous menu items (Paolo Maggi) - C/Python plugin skeleton generator (Steve Frcinaux) - Snippets plugin enhancements and fixes (Jesse van den Kieboom) - Misc improvements and bugfixes New and updated translations: - Alexander Shopov (bg) - Ankit Patel (gu) - Clytie Siddall (vi) - Francisco Javier F. Serrador (es) - Kjartan Maraas (nb) - Ignacio Casal Quinteiro (gl) - Jakub Friedl (cs) - Pema Geyleg (dz) - Priit Laes (et) - Theppitak Karoonboonyanan (th) * Download =========== http://ftp.gnome.org/pub/GNOME/sources/gedit/2.15/gedit-2.15.3.tar.gz md5sum: 07a99a6c45fa859a770a86bfa6289acd http://ftp.gnome.org/pub/GNOME/sources/gedit/2.15/gedit-2.15.3.tar.bz2 md5sum: e43046da726b9df3119ff8db00c7f4ad -- Steve http://tw.apinc.org From gnome@nextreality.net Mon Jun 12 23:42:44 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 13DDB3B00E5 for ; Mon, 12 Jun 2006 23:42:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08544-08 for ; Mon, 12 Jun 2006 23:42:42 -0400 (EDT) Received: from brentsmith.name (unknown [64.62.195.122]) by menubar.gnome.org (Postfix) with ESMTP id 7C54A3B0010 for ; Mon, 12 Jun 2006 23:42:42 -0400 (EDT) Received: by brentsmith.name (Postfix, from userid 5001) id 8C64635904; Tue, 13 Jun 2006 03:41:31 +0000 (UTC) Received: from [192.168.1.101] (c-67-176-37-213.hsd1.co.comcast.net [67.176.37.213]) by brentsmith.name (Postfix) with ESMTP id DA11C35901 for ; Tue, 13 Jun 2006 03:41:30 +0000 (UTC) Message-ID: <448E33F5.5080804@nextreality.net> Date: Mon, 12 Jun 2006 21:41:41 -0600 From: Brent Smith User-Agent: Thunderbird 1.5.0.2 (X11/20060522) MIME-Version: 1.0 To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Bogosity: Unsure, tests=bogofilter, spamicity=0.500000, version=0.94.4 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.577 tagged_above=-999 required=2 tests=[AWL=0.022, BAYES_00=-2.599] X-Spam-Score: -2.577 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:35 -0400 Subject: Yelp 2.15.3 Released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 03:42:44 -0000 Yelp 2.15.3 is now available from an FTP mirror near you (actually, you might have to wait a little bit for it to appear). Yelp is the program that appears from the mist when you click the Help button in your favorite GNOME application. This release contains many improvements over the last development release. Read on for details... Changes in 2.15.3: ------------------ * New debugging infrastructure (Brent Smith) * Add support for translated man pages, fixes #343275 (Brent Smith) * Support private instances with -p (Bug #337540) (Don Scorgie) * Switch from Bonobo to DBUS Activation (Don Scorgie) * Change 'Multimedia' category to 'Sound & Vision' for (Don Scorgie) consistency (bug #332182) * Don't auto-expand sections in left pane (bug #167070) (Don Scorgie) * Don't use mozilla's internal string API, and drop (Christian Persch) support for gecko 1.7 and non-toolkit geckos. Bug #343950. * Add a deep history framework (bug #67966) (Don Scorgie) * Make *Notes into hyperlinks (bug #343524) (Don Scorgie) * Make monospace fonts change size when asked (Don Scorgie) (bug #344003) * Escape & characters when encountered in info (Don Scorgie) processing (fixes #343372) * more helpful message when there are no search results(Frederic Peters) (fixes #341798) * search results message can be translated (Frederic Peters) (fixes #341689) * limit search results to 20 items (fixes #341434) (Frederic Peters) * cleanup the man_secthash hash table when finished (Brent Smith) * don't increment ptr, fixes #341827 (Don Scorgie) * Fix a bunch of memory leaks (Don Scorgie) * Fix an invalid write, #342151 (Don Scorgie) * NULL checking. Suppresses critical warnings on some (Don Scorgie) info pages * If an info file doesn't exist, default to showing (Don Scorgie) the man page, fixes #341627 * Fix loading of info pages from subdirectories (emacs) (Don Scorgie) * Update intltool requirement to 0.35.0 (Brent Smith) * Reduce strictness of searching for menus in info pages (Don Scorgie) * Updated translations: Jakub Friedl (cs) Mindu Dorji (dz) Francisco Javier F. Serrador (es) Priit Laes (et) Iaki Larraaga Murgoitio (eu) Ankit Patel (gu) Raivis Dejus (lv) Kjartan Maraas (nb) Theppitak Karoonboonyanan (th) Pablo Saratxaga (wa) http://ftp.gnome.org/pub/GNOME/sources/yelp/2.14/ Share and enjoy. Regards, -- Brent Smith IRC: smitten From nudrema@gmail.com Tue Jun 13 04:23:41 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F14743B000C; Tue, 13 Jun 2006 04:23:40 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16049-10; Tue, 13 Jun 2006 04:23:40 -0400 (EDT) Received: from swip.net (mailfe11.swipnet.se [212.247.155.65]) by menubar.gnome.org (Postfix) with ESMTP id 2C63B3B000A; Tue, 13 Jun 2006 04:23:39 -0400 (EDT) X-T2-Posting-ID: Ee7YIbSG3O5rNcT4cGADretWTWrDEjpwS9FwzyhFhzk= X-Cloudmark-Score: 0.000000 [] Received: from [83.182.30.69] (HELO [10.0.0.13]) by mailfe11.swip.net (CommuniGate Pro SMTP 5.0.8) with ESMTP id 44536455; Tue, 13 Jun 2006 10:22:28 +0200 Message-ID: <448E75C1.6030808@gmail.com> Date: Tue, 13 Jun 2006 10:22:25 +0200 From: =?ISO-8859-1?Q?Steve_Fr=E9cinaux?= User-Agent: Thunderbird 1.5.0.2 (X11/20060522) MIME-Version: 1.0 To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.861 tagged_above=-999 required=2 tests=[AWL=-0.543, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_NEUTRAL=1.069, TW_GT=0.077] X-Spam-Score: -1.861 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:35 -0400 Cc: gedit-list Subject: ANNOUNCE: gedit 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 08:23:41 -0000 Hi all, gedit 2.15.3 is now available. gedit the official GNOME text editor. homepage: http://www.gnome.org/projects/gedit * Changes in 2.15.3 ==================== New features and fixes: - New gedit_commands_* API for plugins (Paolo Maggi) - Snippets support for space indentation (Jesse van den Kieboom) - gtk-doc enabled C plugin API documentation (Steve Frcinaux) - Next/Previous menu items (Paolo Maggi) - C/Python plugin skeleton generator (Steve Frcinaux) - Snippets plugin enhancements and fixes (Jesse van den Kieboom) - Misc improvements and bugfixes New and updated translations: - Alexander Shopov (bg) - Ankit Patel (gu) - Clytie Siddall (vi) - Francisco Javier F. Serrador (es) - Kjartan Maraas (nb) - Ignacio Casal Quinteiro (gl) - Jakub Friedl (cs) - Pema Geyleg (dz) - Priit Laes (et) - Theppitak Karoonboonyanan (th) * Download =========== http://ftp.gnome.org/pub/GNOME/sources/gedit/2.15/gedit-2.15.3.tar.gz md5sum: 07a99a6c45fa859a770a86bfa6289acd http://ftp.gnome.org/pub/GNOME/sources/gedit/2.15/gedit-2.15.3.tar.bz2 md5sum: e43046da726b9df3119ff8db00c7f4ad -- Steve http://tw.apinc.org From s.marechal@jejik.com Tue Jun 13 19:55:27 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 44B8A3B00C7 for ; Tue, 13 Jun 2006 19:55:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10258-05 for ; Tue, 13 Jun 2006 19:55:25 -0400 (EDT) Received: from smtp-vbr15.xs4all.nl (smtp-vbr15.xs4all.nl [194.109.24.35]) by menubar.gnome.org (Postfix) with ESMTP id 1E2F43B00D4 for ; Tue, 13 Jun 2006 19:55:24 -0400 (EDT) Received: from [192.168.1.2] (a82-92-145-91.adsl.xs4all.nl [82.92.145.91]) (authenticated bits=0) by smtp-vbr15.xs4all.nl (8.13.6/8.13.6) with ESMTP id k5DNsOqr025232 for ; Wed, 14 Jun 2006 01:54:25 +0200 (CEST) (envelope-from s.marechal@jejik.com) Message-ID: <448F504E.1060904@jejik.com> Date: Wed, 14 Jun 2006 01:54:54 +0200 From: Sander Marechal User-Agent: Thunderbird 1.5.0.2 (X11/20060522) MIME-Version: 1.0 To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by XS4ALL Virus Scanner X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.557 tagged_above=-999 required=2 tests=[AWL=0.042, BAYES_00=-2.599] X-Spam-Score: -2.557 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Subject: Gnome Hearts 0.1 Release Announcement X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: user and developer discussion for the gnome hearts game List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 23:55:27 -0000 Gnome Hearts 0.1 Release Announcement ------------------------------------- Lone Wolves [1] is happy to announce the release of Gnome Hearts version 0.1, an implementation of the classic hearts card game for the Gnome desktop. Gnome Hearts 0.1 is the first release since the project's inception on April 30, earlier this year. Gnome Hearts features configurable rule-sets such as Omnibus and Spot Hearts besides the standard rules. The game also has multiple computer players that are implemented in the Lua [2] scripting language. This allows for easy modification of the players. Also, the game can use any deck of cards installed for the Gnome Games package. [1] http://www.jejik.com [2] http://www.lua.org Downloading and installing Gnome Hearts --------------------------------------- Gnome Hearts can be downloaded from the project website at http://www.gnome-hearts.org/download or directly using this link [3]. At the moment only a .tar.gz source package is available. Binaries for various distributions will appear at a later date. Keep an eye out on the download page and the mailing list [4] for the announcements. In order to build the .tar.gz you need to have libgnomeui2.0, liblua50, liblualib50 and libglade2 plus their respective headers installed. See the README file in the package for more details. [3] http://www.jejik.com/files/gnome-hearts/gnome-hearts-0.1.tar.gz [4] http://lists.jejik.com/cgi-bin/mailman/listinfo/hearts Acknowledgments --------------- Many thanks to the people that contributed to this first release and those who cast a critical glance over the package so we could fix many issues before our first release. -- Sander Marechal http://www.gnome-hearts.org From gjc@inescporto.pt Tue Jun 13 20:28:23 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BD25B3B000E for ; Tue, 13 Jun 2006 20:28:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11220-02 for ; Tue, 13 Jun 2006 20:28:21 -0400 (EDT) Received: from animal.inescn.pt (correio.inescn.pt [194.117.24.9]) by menubar.gnome.org (Postfix) with ESMTP id A61433B00C8 for ; Tue, 13 Jun 2006 20:28:20 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by animal.inescn.pt (8.13.6/8.13.6/7) with ESMTP id k5E0RKZp008488; Wed, 14 Jun 2006 01:27:20 +0100 (WEST) Received: from pong.inescporto.pt (pong.inescn.pt [194.117.26.74]) by animal.inescn.pt (8.13.6/8.13.6/5) with ESMTP id k5E0Qv9X008443; Wed, 14 Jun 2006 01:26:57 +0100 (WEST) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by pong.inescporto.pt (Postfix) with ESMTP id A69A5119284; Wed, 14 Jun 2006 01:23:55 +0100 (WEST) From: "Gustavo J. A. M. Carneiro" To: PyGTK Content-Type: text/plain Date: Wed, 14 Jun 2006 01:26:56 +0100 Message-Id: <1150244816.5417.6.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at inescporto.pt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.351 tagged_above=-999 required=2 tests=[AWL=-0.040, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001, TW_GD=0.077, TW_GT=0.077] X-Spam-Score: -2.351 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: gnome-announce-list@gnome.org Subject: ANNOUNCE: PyGTK 2.9.1 (unstable) X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 00:28:23 -0000 I am pleased to announce version 2.9.1 of the Python bindings for GTK. The new release is available from ftp.gnome.org and its mirrors as soon as its synced correctly: http://ftp.gnome.org/pub/GNOME/sources/pygtk/2.9/pygtk-2.9.1.tar.gz This is an unstable release and should be used with caution. It requires either GTK+ 2.8.x or GTK+ >= 2.9.3. [ Note: this release also fixes a build problem for the recently released GnomePythonDesktop 2.15.3. ] Blurb: GTK is a toolkit for developing graphical applications that run on systems such as Linux, Windows and MacOS X. It provides a comprehensive set of GUI widgets, can display Unicode bidi text. It links into the Gnome Accessibility Framework through the ATK library. PyGTK provides a convenient wrapper for the GTK+ library for use in Python programs, and takes care of many of the boring details such as managing memory and type casting. When combined with PyORBit and gnome-python, it can be used to write full featured Gnome applications. Like the GTK+ library itself PyGTK is licensed under the GNU LGPL, so is suitable for use in both free software and proprietary applications. It is already in use in many applications ranging from small single purpose scripts up to large full features applications. pygtk-2.9.0 13-june-2006 - Allow gtk.TreeSortable.set_default_sort_func callback to be None (Johan, Patrick O'Brien) - Add API to unset the g_log handlers (#323786, Johan) - Allow the gtk module to be imported without DISPLAY (#316877, Johan) - Code cleanup and fixes considering Coverity reports (Johan) - Add codegen support for const-Object return type (#169204, Gustavo) - Add codgen support for unblocking threads around method calls (Gustavo) - Wrap gdk_event_handler_set (Johan) - Codegen reverse wrapper bug fix (#340162, Yevgen Muntyan) - Wrap GdkRegion (John Ehresman) - Add codegen support for ignore-type statement in override (Johan) - Add conditional support for gtk+ 2.10 API, especially printing (Johan, Finlay, Gustavo) - Complete the support for gtk.Container virtual methods (#341641, Gustavo) - Fix misc. reference leaks (Finlay, Gustavo) - Allow None parameter in pangocairo.CairoContext.set_font_options (Finlay) - Complete the support for gtk.CellRenderer virtual methods (#339431, Gustavo) - IconView.set_cursor method params 'cell' and 'start_editing' made optional (#343039, Ross Burton, Finlay) - Wrap a few more gdk_cairo_* methods (Finlay) - Add a 'selection' field to gdk.OWNER_CHANGE events (Finlay) - Allow None in gtk.Entry.set_inner_border() (Finlay) - gtk.Clipboard rich text methods (Finlay) - Add gtk.MessageDialog.set_image() (Finlay) - Wrap gtk_link_button_set_uri_hook() (Finlay) - Allow None in gtk.Widget.input_shape_combine_mask() (Finlay) - Allow gtk.LinkButton() constructor to optionally receive a label (Finlay) - Allow None in gtk.Label.set_mnemonic_widget() (Johan) - Wrap a bunch of X11 specific gdk methods (Gustavo) - Add gtk.SizeGroup.get_widgets() (Finlay) - Wrap gtk_style_lookup_color() (Finlay) - Wrap a bunch of gtk treeview grid lines methods (Finlay) - Better Drag and drop API support (Finlay) - Add -I option to codegen (defs search path) (Gustavo) PyGTK requires GTK+ >= 2.8.0 and Python >= 2.3.5 to build. Bug reports, as always, should go to Bugzilla; check out http://pygtk.org/developer.html and http://pygtk.org/feedback.html for links to posting and querying bug reports for PyGTK. -- Gustavo J. A. M. Carneiro The universe is always one step beyond logic From ebassi@gmail.com Tue Jun 13 20:32:58 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A8A4B3B00C8 for ; Tue, 13 Jun 2006 20:32:58 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11365-03 for ; Tue, 13 Jun 2006 20:32:57 -0400 (EDT) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.184]) by menubar.gnome.org (Postfix) with ESMTP id D60A23B000E for ; Tue, 13 Jun 2006 20:32:56 -0400 (EDT) Received: by nf-out-0910.google.com with SMTP id y38so3928nfb for ; Tue, 13 Jun 2006 17:31:56 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:subject:from:to:cc:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; b=oUq+Y9uyXse5jWbXHN+a1hlPNgEB4SSPDgg8dWXx+1GsvRNsktrt4C4g3H5vMlt23VjpIETSUuVlhG6R9+5WQPa1f/yUs5fj1vO2K5m9rUq0MSBz2x1DxlwhH3zgxxsgbcw07IUW4AZgu+4ffuEd58TvM5NOX7EJyv1wtcIGIDA= Received: by 10.48.225.16 with SMTP id x16mr53191nfg; Tue, 13 Jun 2006 17:31:56 -0700 (PDT) Received: from ?192.168.1.70? ( [86.136.65.180]) by mx.gmail.com with ESMTP id l32sm22126nfa.2006.06.13.17.31.56; Tue, 13 Jun 2006 17:31:56 -0700 (PDT) From: Emmanuele Bassi To: gnome-announce-list@gnome.org Content-Type: text/plain Date: Wed, 14 Jun 2006 01:31:50 +0100 Message-Id: <1150245110.28862.8.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.337 tagged_above=-999 required=2 tests=[AWL=0.263, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.337 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: gnome-utils-list@gnome.org Subject: [ANNOUNCE] Gnome-utils 2.15.4 - "Ain't that another brown paper bag?" X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 00:32:58 -0000 Good news everyone! As last gnome-utils release contained a glitch that broke the build, here's a Brown Paper Bag Release ready: gnome-utils 2.15.4. Many thanks to Matthias Clasen and Fryderyk Dziarmagowski for finding the glitch. As usual, you can download the sources from here: http://download.gnome.org/sources/gnome-utils/2.15/ Enjoy, and remember to file any bug you might find! =================================================================== GNOME Utilities 2.15.4 (June 14th 2006) - "Ain't that another brown paper bag?" * "Brown paper bag" release Baobab * Nothing Dictionary * Remove wrong headers from the build (Matthias Clasen, #344773) Floppy * Nothing Screenshot * Fix included files Search Tool * Nothing System Log Viewer * Nothing Translations updates: Francisco Javier F. Serrador (es), Ankit Patel (gu) Ciao, Emmanuele. From cworth@cworth.org Wed Jun 14 12:07:42 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 50C153B03B2 for ; Wed, 14 Jun 2006 12:07:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05531-07 for ; Wed, 14 Jun 2006 12:07:31 -0400 (EDT) Received: from theworths.org (cworth.org [217.160.249.188]) by menubar.gnome.org (Postfix) with ESMTP id D79923B045D for ; Wed, 14 Jun 2006 12:07:30 -0400 (EDT) Received: (qmail 20098 invoked from network); 14 Jun 2006 12:06:35 -0400 Received: from localhost (HELO raht.cworth.org) (127.0.0.1) by localhost with SMTP; 14 Jun 2006 12:06:35 -0400 Date: Wed, 14 Jun 2006 09:01:56 -0700 Message-ID: <87pshbd8uj.wl%cworth@cworth.org> From: Carl Worth To: cairo-announce@cairographics.org Subject: cairo snapshot 1.1.8 now available User-Agent: Wanderlust/2.14.0 (Africa) Emacs/21.4 Mule/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: multipart/signed; boundary="pgp-sign-Multipart_Wed_Jun_14_09:01:49_2006-1"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.441 tagged_above=-999 required=2 tests=[AWL=-0.054, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, TW_XC=0.077] X-Spam-Score: -2.441 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 12:46:39 -0400 Cc: gnome-announce-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 16:07:42 -0000 --pgp-sign-Multipart_Wed_Jun_14_09:01:49_2006-1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable A new cairo snapshot 1.1.8 is now available from: http://cairographics.org/snapshots/cairo-1.1.8.tar.gz which can be verified with: http://cairographics.org/snapshots/cairo-1.1.8.tar.gz.sha1 ad660fe7bfede1882f4b81798e3e0ef8fe7ecb9b cairo-1.1.8.tar.gz http://cairographics.org/snapshots/cairo-1.1.8.tar.gz.sha1.asc (signed by Carl Worth) Additionally, a git clone of the source tree: git clone git://git.cairographics.org/git/cairo will include a signed 1.1.8 tag which points to a commit named: dd859b8736bb4d1bcf3ed78d0bd1f72a7aad9ca9 which can be verified with: git verify-tag 1.1.8 and can be checked out with a command such as: git checkout -b build 1.1.8 This is the fourth in a series of snapshots working toward the 1.2 release of cairo. At this point, all major features of the 1.2 release are in place, leaving just a few bug fixes left. In particular, there will be no additional API changes between this 1.1.8 snapshot and the 1.2 release. The announcement for 1.1.6 mentioned several API changes being considered. Only one of these changes was actually implemented (set_dpi -> fallback_resolution). This change does introduce one source-level incompatibility with respect to previous 1.1.x snapshots, so see below for details. What is cairo =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Cairo is a 2D graphics library with support for multiple output devices. Currently supported output targets include the X Window System, win32, and image buffers. Experimental backends include OpenGL (through glitz), Quartz, XCB, PostScript and PDF file output. Cairo is designed to produce consistent output on all output media while taking advantage of display hardware acceleration when available (for example, through the X Render Extension). The cairo API provides operations similar to the drawing operators of PostScript and PDF. Operations in cairo including stroking and filling cubic B=E9zier splines, transforming and compositing translucent images, and antialiased text rendering. All drawing operations can be transformed by any affine transformation (scale, rotation, shear, etc.). Cairo has been designed to let you draw anything you want in a modern 2D graphical user interface. At the same time, the cairo API has been designed to be as fun and easy to learn as possible. If you're not having fun while programming with cairo, then we have failed somewhere---let us know and we'll try to fix it next time around. Cairo is free software and is available to be redistributed and/or modified under the terms of either the GNU Lesser General Public License (LGPL) version 2.1 or the Mozilla Public License (MPL) version 1.1. Where to get more information about cairo =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D The primary source of information about cairo is: http://cairographics.org/ The latest releases of cairo can be found at: http://cairographics.org/releases Snapshots of in-development versions of cairo: http://cairographics.org/snapshots The programming manual for using cairo: http://cairographics.org/manual Mailing lists for contacting cairo users and developers: http://cairographics.org/lists Answers to some frequently asked questions about cairo: http://cairographics.org/FAQ What's new in 1.1.8 compared to 1.1.6 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ** API Change ** ---------------- According to the plan mentioned in the 1.1.6 notes, one source-level incompatible change has been implemented. The following three functions have been removed from cairo's API: cairo_pdf_surface_set_dpi cairo_ps_surface_set_dpi cairo_svg_surface_set_dpi and in their place the following function has been added: cairo_surface_set_fallback_resolution The signature and semantics of the function remains the same, so it is a simple matter of changing the name of the function when calling it. As a transition mechanism, this snapshot will (on many systems) build to include the old symbols so that code previously compiled will still run. However, all source code using the old names must be updated before it will compile. And the upcoming 1.2 release is not anticipated to include the old symbols. Finally, it should be pointed out that the old symbols never existed in the supported API of any stable release of cairo. (In the stable 1.0 releases the PDF, PS, and SVG backends were advertised as experimental and unstable.) And, as always, cairo continues to maintain source and binary compatibility between major releases. So applications compiled against supported backends in a stable release of cairo (1.0.4 say) will continue to compile and run without modification against new major releases (1.2.0 say) without modification. API additions ------------- The following new functions have been added to cairo's API: cairo_surface_get_content cairo_debug_reset_static_data cairo_image_surface_get_data cairo_image_surface_get_format cairo_image_surface_get_stride cairo_win32_font_face_create_for_hfont New, backend-specific pkg-config files -------------------------------------- In addition to the original cairo.pc file, cairo will also now install a pkg-config files for each configured backend, (for example cairo-pdf.pc, cairo-svg.pc, cairo-xlib.pc, cairo-win32.pc, etc.) this also includes optional font backends (such as cairo-ft.pc) and the optional png functionality (cairo-png.pc). These new pkg-config files should be very convenient for allowing cairo-using code to easily check for the existing of optional functionality in cairo without having to write complex rules to grub through cairo header files or the compiled library looking for symbols. Printing backend (PS, PDF, and SVG) ----------------------------------- Improving the quality of the "printing" backends has been a priority of the development between cairo 1.1.6 and cairo 1.1.8. The big improvement here is in the area of text output. Previously, at best, text was output as paths without taking advantage of any font support available in the output file format. Now, at the minimum text paths will be shared by using type3 fonts (for PS and PDF---and similarly, defs for SVG). Also, if possible, type3 and truetype fonts will be embedded in PostScript and PDF output. There are still some known bugs with this, (for example, selecting text in a cairo-generated PDF file with an embedded truetype font does not work). So there will be some more changes in this area before cairo 1.2, but do try test this feature out as it exists so far. Many thanks to Kristian H=F8gsberg for the truetype and type1 font embedding. win32 backend ------------- Performance improvements by preferring GDI over pixman rendering when possi= ble. Fixes for text rendering. xlib backend ------------ Fix potentially big performance bug by making xlib's create_similar try harder to create a pixmap of a depth matching that of the screen. Bug fixes --------- Among various other fixes, the following bugs listed in bugzilla have been fixed: Bug 2488: Patch to fix pixman samping location bug (#2488). https://bugs.freedesktop.org/show_bug.cgi?id=3D2488 Bug 4196: undef MIN an MAX before defining to avoid duplicate definition https://bugs.freedesktop.org/show_bug.cgi?id=3D4196 Bug 4723: configure.in: Fix m4 quoting when examining pkg-config version https://bugs.freedesktop.org/show_bug.cgi?id=3D4723 Bug 4882: Flag Sun's X server has having buggy_repeat. https://bugs.freedesktop.org/show_bug.cgi?id=3D4882 Bug 5306: test/pdf2png: Add missing include of stdio.h https://bugs.freedesktop.org/show_bug.cgi?id=3D5306 Bug 7075: Fix make clean to remove cairo.def https://bugs.freedesktop.org/show_bug.cgi?id=3D7075 (Many thanks to Behdad Esfahbod for helping us track down and fix many of these.) Detailed list of changes since 1.1.6 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Tag '1.1.8' created by Carl Worth at 2006-06-14 16:17 -= 0700 cairo 1.1.8 snapshot -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEkCju6JDdNq8qSWgRAjdQAJ9jjY8MwIcyhpSxf8Yn50izT6wXRwCeJN3x XKToq1aoRwjXc1HujBI0wVo=3D =3DtwxK -----END PGP SIGNATURE----- Changes since 1.1.6: Behdad Esfahbod: Bug 7075: Fix make clean to remove cairo.def Move cairo.pc into src/. Add backend-specific pkg-config files. Rename cairo-wideint.h to cairo-wideint-private.h. Bertram Felgenhauer: Patch to fix pixman samping location bug (#2488). Bug 4723: configure.in: Fix m4 quoting when examining pkg-config vers= ion Brian Cameron: Bug 4882: Flag Sun's X server has having buggy_repeat. Carl Worth: Increment CAIRO_VERSION to 1.1.7 after making the 1.1.6 snapshot Revert "pdf2png: Use new poppler_page_render to render directly throu= gh cairo." Don't build pdf2svg until we start depending on newer poppler ROADMAP: non-substantive changes Add select-font-face test for whosing multiple faces at once. Fix typo in select-font-face.c and update reference images PS: Remove stale comment (the stuff TODO is done already) PS: Move type 3 support out into cairo-ps-font.c PS: Put functions in more logical order. Rename cairo-ps-font to cairo-scaled-font-subsets (file names only) Generalize font subsetting code in cairo-scaled-font-subsets for use = by more than just PS backend Fix cairo_output_stream_destroy to do nothing on nil stream objects. Tweak names to match those of cairo-scaled-font-subsets SVG: Discard custom font subsetting in favor of sharing cairo-scaled-= font-subsets Add documentation for the _cairo_scaled_font_subsets interface. Fix memory leak in _cairo_scaled_font_subsets_foreach PDF: Use cairo_pdf_resource_t more consistently. PDF: Fold (unused) cairo_pdf_document_t into cairo_pdf_surface_t Change scaled_font_subsets_callback to have return type of void. PS: Fix arguments to setcachedevice PS: Remove the fallback case from _cairo_ps_surface_show_glyphs PDF: Use consistent style for typedef struct and macro naming. PDF: Move Resources dictionary up from Page objects to Pages object. PDF: Add Type3 font support to PDF output. pixman: Fix build to enable warnings again pixman: Add default case to quiet compiler warning pixman: Remove unused code to quiet compiler warnings ROADMAP: Note that PDF type 3 font support is done PDF: Fix broken per-page sizes in PDF output. xlib: Rename surface->format to surface->xrender_format to avoid conf= usion xlib: Style cleanups for _cairo_xlib_surface_create_similar PDF: Squelch a couple of bogus "may be used uninitialized" warnings. Move prototype of cairo_debug_reset_static_data from uninstalled cair= o-debug.h to cairo.h Codify 1.0 behavior of cairo_set_line_width as a feature, not a bug. SVG: Fix for line-width-scale New test: dash-scale PDF: Rename pdf_stroke_t to pdf_path_into_t for future sharing with f= ill PDF: Share path callbacks for fill and stroke. Clarify the documentation for cairo_set_dash PDF: Move dash operator before path construction operators. ROADMAP: Note that the cairo_set_line_width issue is resolved Typo fixes cairo-xlib-test: Rename cairo_test_xlib function prefix to cairo_xlib= _test PDF: Add new, private test function: cairo_pdf_test_force_fallbacks Add new fallback-resolution test for bug in cairo_pdf_surface_set_dpi New API: Add new function cairo_surface_get_content Note the changed semantics of cairo_surface_set_device_offset New API: Add cairo_image_surface_get_{data,format,stride} Move rectangle functions to new cairo-rectangle.c Remove extraneous whitespace from "blank" lines. Remove trailing whitespace from lines that look like comments. Remove trailing whitespace from lines with a single brace. Remove all remaining trailing whitespace. Remove initial, final, and duplicate blank lines. CODING_STYLE: Add notes on avoiding trailing whitespace. CODING_STYLE: Fix misspellings. Fix bogus cairo_rectangle_fixed_t to be cairo_rectangle_int16_t. Remove CAIRO_{MIN,MAX}SHORT which did not distinguish signed vs. unsi= gned. win32: Add conditional definitions for INT16_{MIN,MAX} and UINT16_MAX= now that we use them. Fix MAX vs. MIN bug introduced with rename away from CAIRO_MINSHORT Change all instances of UINT16_MAX to INT16_MAX to avoid new bug. Remove debugging "prints" of images from test/device-offset.c Add new test get-group-target (currently failing with paginated). Fix bug in get-group-target (in the test itself) letting it now pass. Rename ft-text-vertical-layout reference image according to standard = convention. Ignore ft-text-vertical-layout binary New API: Replace cairo_{ps,pdf,svg}_set_dpi with new cairo_surface_se= t_fallback_resolution. Add REPLACED_BY macros to help porting to new set_fallback_resolution Rename device_{x,y}_offset to {x,y}_device_offset for better consiten= cy/grepability doc: SGML template churn Change {x,y}_device_offset values to a device_transform matrix. Hook up device scaling so fallback_resolution starts working. Add text and stroke to falback-resolution test (showing bugs in each). Fix line width for stroking with a device_scale. Fix font size when drawing text with a device_scale. Add cairo_{ps,svg}_test_force_fallbacks so tests can force fallbacks. Test PS and SVG backends in addition to PDF in test/fallback-resoluti= on. Clarify that fallback_resolution acts on a per-page granularity. Don't create a new scaled_font if there's a device_offset but no devi= ce_scale. Change _cairo_meta_surface_get_extents to return a bounded size. ROADMAP: Note that cairo_surface_set_fallback_resolution is in place = now. Add cairo-ps-test.h and cairo-svg-test.h to Makefile.am Add aliases for deprecated cairo_{pdf,ps,svg}_surface_set_dpi Change return type of _cairo_scaled_glyph_lookup to allow UNSUPPORTED. PS, PDF: Re-organize handling of bitmapped fonts to avoid invalid out= put. Merge branch 'truetype-subsetting' into cairo Merge branch 'type1-subsetting' into cairo Add new zero-alpha test to demonstrate (X server?) bug found by Paul = Giblock test/zero-alpha: Drop REPS from 100 to 10 for a faster test. Bug 4196: undef MIN an MAX before defining to avoid duplicate definit= ion ft: If glyph->format is not OUTLINE use _render_glyph_bitmap to coerc= e to a bitmap ROADMAP: Update with PDF bugs from minefield test. Slip non-1.0 regre= ssions off of 1.2. Add zero-alpha reference image to Makefile.am for the sake of make di= st PS PDF: Update reference images due to truetype subsetting Update refefence images due to pattern source shift. Update version to 1.1.8 and add notes to NEWS file. Christian Biesinger: Make BeOS compile again Add missing reference images to EXTRA_DIST Distribute make-html.pl Add "html" Makefile target to run make-html.pl Dom Lachowicz: Bug 5306: test/pdf2png: Add missing include of stdio.h Emmanuel Pacaud: SVG: Sets something sane in width and height if acquire source image = fails. SVG: Remove special case for unclipped CLEAR and SOURCE in paint when SVG: Fix cairo_svg_surface_restrict_to_version. Use CLEAR operator for initialisation of similar surface with a trans= parent color. SVG: Add reference images for fill-and-stroke-alpha. SVG: Implementation of glyph cache SVG: Emit glyphs at the beginning of defs section. SVG: Sets fallback resolution when compositing a meta surface. Jeff Muizelaar: Only destroy scaled glyphs if they are not in the cache. Jinghua Luo: glitz: Don't hardcode content type when initializing cairo surface Merge branch 'master' of git+ssh://jinghua@git.cairographics.org/git/= cairo Add ft-text-vertical-layout test case for vertical layout. freetype: Fix for test case ft-text-vertial-layout. Make image-*-ref.png image as reference image. freetype: Ignore global advance unconditionally. freetype: rework _transform_glyph_bitmap. ignore FC_MATRIX in font pattern. freetype: build fix for _transform_glyph_bitmap. xlib: bugfix for #7172. freetype: Return an error if the glyph format isn't outline or bitmap ROADMAP: Mark bugs FC_ADVANCE and _transform_glyph_bitmap as fixed. Kristian H=C3=B8gsberg: Documentation fixes (cairo_font_create -> cairo_scaled_font_create). Merge branch 'master' of git://git.freedesktop.org/git/cairo Update pdf font emit code to try to emit a truetype subset before typ= e3. Output pdf dicts for truetype subset fonts. Hook _cairo_truetype_subset_init() up to existing truetype subset cod= e. Switch to using Tm for text positioning and scale type3 fonts to unit= size. Add support for truetype subset to ps backend. Print out ps comment in the truetype emit code and update type3 ps co= mment. Remember to destroy cairo_pdf_ft_font_t once we've generated the subs= et. Set libcairo_font_subset_sources for ps, pdf, and svg backends. Remember to call _cairo_truetype_subset_fini() after outputting subse= t. Pull in type1 subset code from the cvs repo it was sitting in. Add code to emit type1 dicts to the pdf backend. Use RD and ND for delimiting glyph data instead of -| and |-. Only use the word wrap stream when emitting paths. Make ps surface use type1 subset code. Track glyph subset indices and use them in the output. Look for /-| or /RD tokens to determine the charstring delimiter toke= ns. Consolidate a few arrays into a array of structs. Remember to call cairo_type1_font_subset_destroy(). Handle seac charstring commands correctly. Clarify licensing of float formatting code. Remove cairo_public from _cairo_lzw_compress() definition. Robert O'Callahan: [xlib] Have create_similar try harder to create the right surface Stuart Parmenter: [win32] Allow for creating a font from a HFONT [win32] implement win32 show_glyphs [win32] fix win32_show_glyphs glyph offsets Tim Mooney: bug #6890: fix the signature for main() in pthread-show-text Vladimir Vukicevic: [xlib] implement _cairo_xlib_surface_show_glyphs [xlib] only do glyph extents computation if non-solid source. [win32] Add SHADEBLENDCAPS and SB_NONE definitions for older SDKs [win32] Add GdiFlush() calls after DIB creation, as per MSDN docs [win32] GDI is nearly always faster than pixman; use it whenever poss= ible CAIRO_SCALED_FONT_TYPE_* -> CAIRO_FONT_TYPE_* Whitespace fix Define kCGBitmapByteOrder32Host for when the SDK doesn't define it Zakharov Mikhail: pixman: fix compilation on HP-UX 11.11 --- .gitignore | 1=20 CODING_STYLE | 22=20 Makefile.am | 8=20 NEWS | 132 + RELEASING | 2=20 ROADMAP | 72=20 configure.in | 68=20 doc/public/Makefile.am | 1=20 doc/public/tmpl/cairo-pdf.sgml | 7=20 doc/public/tmpl/cairo-ps.sgml | 7=20 doc/public/tmpl/cairo-status.sgml | 7=20 doc/public/tmpl/cairo-svg.sgml | 7=20 doc/tutorial/src/include/cairo-tutorial-gtk.h | 8=20 doc/tutorial/src/include/cairo-tutorial-pdf.h | 4=20 doc/tutorial/src/include/cairo-tutorial-png.h | 4=20 doc/tutorial/src/include/cairo-tutorial-xlib.h | 2=20 doc/tutorial/src/include/cairo-tutorial.h | 1=20 doc/tutorial/src/lca.c | 6=20 pixman/src/Makefile.am | 4=20 pixman/src/fbcompose.c | 44=20 pixman/src/fbedge.c | 5=20 pixman/src/fbedgeimp.h | 8=20 pixman/src/fbmmx.c | 559 +++--- pixman/src/fbmmx.h | 2=20 pixman/src/fbpict.c | 39=20 pixman/src/fbpict.h | 3=20 pixman/src/fbtrap.c | 24=20 pixman/src/icblt.c | 96 - pixman/src/icbltone.c | 57=20 pixman/src/iccolor.c | 2=20 pixman/src/icformat.c | 30=20 pixman/src/icimage.c | 99 - pixman/src/icimage.h | 9=20 pixman/src/icint.h | 55=20 pixman/src/icpixels.c | 1=20 pixman/src/icrect.c | 30=20 pixman/src/icrop.h | 6=20 pixman/src/icstipple.c | 6=20 pixman/src/ictransform.c | 5=20 pixman/src/ictrap.c | 12=20 pixman/src/ictri.c | 31=20 pixman/src/icutil.c | 3=20 pixman/src/pixman-xserver-compat.h | 3=20 pixman/src/pixman.h | 20=20 pixman/src/pixregion.c | 76=20 pixman/src/pixregionint.h | 9=20 pixman/src/renderedge.c | 13=20 pixman/src/slim_internal.h | 4=20 src/.gitignore | 1=20 src/Makefile.am | 60=20 src/cairo-analysis-surface.c | 11=20 src/cairo-arc.c | 6=20 src/cairo-array.c | 33=20 src/cairo-atsui-font.c | 59=20 src/cairo-backend.pc.in | 12=20 src/cairo-base85-stream.c | 5=20 src/cairo-beos-surface.cpp | 5=20 src/cairo-beos.h | 1=20 src/cairo-cache.c | 32=20 src/cairo-clip-private.h | 8=20 src/cairo-clip.c | 55=20 src/cairo-debug.c | 3=20 src/cairo-directfb-surface.c | 104 - src/cairo-directfb.h | 13=20 src/cairo-font-options.c | 60=20 src/cairo-font-subset-private.h | 1=20 src/cairo-font-subset.c | 182 +- src/cairo-font.c | 42=20 src/cairo-ft-font.c | 471 +++-- src/cairo-glitz-surface.c | 48=20 src/cairo-gstate-private.h | 2=20 src/cairo-gstate.c | 185 -- src/cairo-hash.c | 54=20 src/cairo-hull.c | 2=20 src/cairo-image-surface.c | 132 + src/cairo-lzw.c | 4=20 src/cairo-matrix.c | 147 - src/cairo-meta-surface.c | 53=20 src/cairo-operator.c | 8=20 src/cairo-output-stream.c | 28=20 src/cairo-paginated-surface.c | 28=20 src/cairo-path-bounds.c | 8=20 src/cairo-path-data.c | 14=20 src/cairo-path-fill.c | 3=20 src/cairo-path-stroke.c | 22=20 src/cairo-path.c | 32=20 src/cairo-pattern.c | 122 - src/cairo-pdf-surface.c | 2009 +++++++++++++------= ----- src/cairo-pdf-test.h | 20=20 src/cairo-pdf.h | 5=20 src/cairo-pen.c | 18=20 src/cairo-png.c | 35=20 src/cairo-polygon.c | 2=20 src/cairo-ps-surface.c | 982 +++++------ src/cairo-ps-test.h | 20=20 src/cairo-ps.h | 5=20 src/cairo-quartz-private.h | 2=20 src/cairo-quartz-surface.c | 37=20 src/cairo-quartz.h | 1=20 src/cairo-rectangle.c | 85 + src/cairo-region.c | 17=20 src/cairo-scaled-font-subsets-private.h | 267 +++ src/cairo-scaled-font-subsets.c | 384 ++++ src/cairo-scaled-font.c | 195 +- src/cairo-slope.c | 6=20 src/cairo-spline.c | 3=20 src/cairo-stroke-style.c | 1=20 src/cairo-surface-fallback-private.h | 2=20 src/cairo-surface-fallback.c | 145 - src/cairo-surface.c | 461 +++-- src/cairo-svg-surface.c | 770 +++++---- src/cairo-svg-test.h | 20=20 src/cairo-svg.h | 9=20 src/cairo-traps.c | 51=20 src/cairo-type1-subset.c | 1040 ++++++++++++ src/cairo-unicode.c | 39=20 src/cairo-wideint-private.h | 11=20 src/cairo-wideint.c | 18=20 src/cairo-win32-font.c | 196 +- src/cairo-win32-private.h | 11=20 src/cairo-win32-surface.c | 299 ++- src/cairo-win32.h | 3=20 src/cairo-xcb-surface.c | 108 - src/cairo-xlib-private.h | 4=20 src/cairo-xlib-screen.c | 32=20 src/cairo-xlib-surface.c | 698 ++++---- src/cairo-xlib-test.h | 3=20 src/cairo-xlib-xrender.h | 1=20 src/cairo-xlib.h | 1=20 src/cairo.c | 246 +- src/cairo.h | 61=20 src/cairoint.h | 182 +- src/test-fallback-surface.c | 17=20 src/test-meta-surface.c | 9=20 src/test-paginated-surface.c | 5=20 test/.gitignore | 10=20 test/Makefile.am | 31=20 test/buffer-diff.c | 3=20 test/buffer-diff.h | 4=20 test/cairo-test-directfb.c | 20=20 test/cairo-test.c | 80=20 test/cairo-test.h | 5=20 test/caps-joins.c | 2=20 test/clip-all.c | 2=20 test/clip-nesting.c | 4=20 test/clip-operator.c | 14=20 test/dash-offset-negative.c | 8=20 test/dash-scale-ps-argb32-ref.png |binary test/dash-scale-ref.png |binary test/dash-scale.c | 125 + test/device-offset-ref.png |binary test/device-offset-rgb24-ref.png |binary test/device-offset.c | 87 + test/fallback-resolution.c | 178 ++ test/fill-and-stroke-alpha-svg-argb32-ref.png |binary test/fill-and-stroke-alpha-svg-rgb24-ref.png |binary test/fill-and-stroke.c | 2=20 test/filter-nearest-offset.c | 2=20 test/font-face-get-type.c | 4=20 test/ft-text-vertical-layout-pdf-argb32-ref.png |binary test/ft-text-vertical-layout-pdf-rgb24-ref.png |binary test/ft-text-vertical-layout-ps-argb32-ref.png |binary test/ft-text-vertical-layout-ps-rgb24-ref.png |binary test/ft-text-vertical-layout-ref.png |binary test/ft-text-vertical-layout-rgb24-ref.png |binary test/ft-text-vertical-layout-svg-argb32-ref.png |binary test/ft-text-vertical-layout-svg-rgb24-ref.png |binary test/ft-text-vertical-layout.c | 131 + test/get-and-set.c | 2=20 test/get-group-target-ref.png |binary test/get-group-target.c | 90 + test/gradient-alpha-ref.png |binary test/gradient-alpha-rgb24-ref.png |binary test/gradient-alpha.c | 2=20 test/imagediff.c | 4=20 test/line-width-scale-ps-argb32-ref.png |binary test/line-width-scale-ref.png |binary test/line-width-scale.c | 30=20 test/linear-gradient-ref.png |binary test/linear-gradient.c | 8=20 test/mask-ref.png |binary test/mask-rgb24-ref.png |binary test/mask.c | 8=20 test/operator-clear.c | 16=20 test/operator-source-ref.png |binary test/operator-source-rgb24-ref.png |binary test/operator-source.c | 18=20 test/pdf-features.c | 4=20 test/pdf2png.c | 39=20 test/pixman-rotate-rgb24-ref.png |binary test/pixman-rotate-svg-argb32-ref.png |binary test/pixman-rotate-svg-rgb24-ref.png |binary test/ps-features.c | 2=20 test/pthread-show-text.c | 2=20 test/push-group-ref.png |binary test/push-group-rgb24-ref.png |binary test/push-group.c | 2=20 test/read-png.c | 1=20 test/rectangle-rounding-error.c | 10=20 test/rel-path.c | 4=20 test/select-font-face-pdf-argb32-ref.png |binary test/select-font-face-ps-argb32-ref.png |binary test/select-font-face-ref.png |binary test/select-font-face-svg-argb32-ref.png |binary test/select-font-face-svg-rgb24-ref.png |binary test/select-font-face.c | 83=20 test/self-copy.c | 6=20 test/show-text-current-point-pdf-argb32-ref.png |binary test/show-text-current-point-ps-argb32-ref.png |binary test/source-clip.c | 2=20 test/surface-finish-twice.c | 1=20 test/surface-pattern.c | 2=20 test/svg-clip.c | 2=20 test/text-antialias-gray-pdf-argb32-ref.png |binary test/text-antialias-gray-ps-argb32-ref.png |binary test/text-antialias-none-pdf-argb32-ref.png |binary test/text-antialias-none-ps-argb32-ref.png |binary test/text-antialias-subpixel-pdf-argb32-ref.png |binary test/text-antialias-subpixel-ps-argb32-ref.png |binary test/text-cache-crash.c | 1=20 test/text-pattern-ref.png |binary test/text-pattern-rgb24-ref.png |binary test/text-pattern.c | 10=20 test/text-rotate.c | 2=20 test/transforms.c | 2=20 test/trap-clip-ref.png |binary test/trap-clip-rgb24-ref.png |binary test/trap-clip.c | 4=20 test/unbounded-operator.c | 16=20 test/user-data.c | 2=20 test/write-png.c | 4=20 test/xlib-surface.c | 20=20 test/xmalloc.c | 1=20 test/zero-alpha-ref.png |binary test/zero-alpha.c | 97 + 235 files changed, 8579 insertions(+), 4836 deletions(-) --pgp-sign-Multipart_Wed_Jun_14_09:01:49_2006-1 Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEkDL06JDdNq8qSWgRAlbkAJ92YIDTUafsLa/U2ZTiKZ9zO0WmFgCfc252 2Y2uyD4rr4R2jx+43617QZk= =vX2e -----END PGP SIGNATURE----- --pgp-sign-Multipart_Wed_Jun_14_09:01:49_2006-1-- From janina@opera.rednote.net Wed Jun 14 12:12:42 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 912A73B029F for ; Wed, 14 Jun 2006 12:12:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19357-07 for ; Wed, 14 Jun 2006 12:12:39 -0400 (EDT) Received: from opera.rednote.net (opera.rednote.net [70.84.142.212]) by menubar.gnome.org (Postfix) with ESMTP id ED02F3B0281 for ; Wed, 14 Jun 2006 12:12:38 -0400 (EDT) Received: from opera.rednote.net (localhost.localdomain [127.0.0.1]) by opera.rednote.net (8.13.6/8.13.5) with ESMTP id k5EGAtdS007700; Wed, 14 Jun 2006 16:10:55 GMT Received: (from janina@localhost) by opera.rednote.net (8.13.6/8.13.6/Submit) id k5EGAtD9007699; Wed, 14 Jun 2006 12:10:55 -0400 Date: Wed, 14 Jun 2006 12:10:55 -0400 From: Janina Sajka To: parente@cs.unc.edu Subject: Re: lsr-0.2.1 Message-ID: <20060614161055.GV2259@rednote.net> References: <5308fd2c0606120606p43b30477o4e73cfad155dcaa7@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5308fd2c0606120606p43b30477o4e73cfad155dcaa7@mail.gmail.com> User-Agent: Mutt/1.4.2.1i X-Operating-System: Linux opera.rednote.net 2.6.16-1.2122_FC5spksmp Organization: Capital Accessibility LLC (http://www.CapitalAccessibility.com) X-PGP-Key: http://www.CapitalAccessibility.com/JaninaSajka_gpg_key.html X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.568 tagged_above=-999 required=2 tests=[AWL=0.031, BAYES_00=-2.599] X-Spam-Score: -2.568 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 12:46:56 -0400 Cc: gnome-announce-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 16:12:42 -0000 Peter Parente writes: > ============== > * What is it ? > ============== > > Linux Screen Reader (LSR) is an extensible assistive technology for people > with > disabilities. The design philosophy behind LSR is to provide a core platform > that enables the development of LSR extensions for improving desktop > application accessibility and usability and shields extension developers > from > the intricacies of the desktop accessibility architecture. > snip snip Where can I get it ? rpm packages for Fedora Core 5 available from: ftp://SpeakupModified.Org/fedora/rednote/ The binary is under RPMS, and the source under SRPMS as usual with Fedora. Special Note: You may need to upgrade your Gnome Desktop to Fedora Development. If you find things not working with the current release and updated Gnome environment, try: yum --disablerepo='*' --enablerepo=development groupupdate 'GNOME Desktop Environment' Note the above command is issued on one line, though it's probably been broken into at least two lines in this email message. -- Janina Sajka Phone: +1.240.715.1272 Partner, Capital Accessibility LLC http://CapitalAccessibility.Com Marketing the Owasys 22C talking screenless cell phone in the U.S. and Canada--Go to http://ScreenlessPhone.Com to learn more. Chair, Accessibility Workgroup Free Standards Group (FSG) janina@freestandards.org http://a11y.org From janina@opera.rednote.net Wed Jun 14 12:17:56 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 08CF33B0156; Wed, 14 Jun 2006 12:17:56 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28336-10; Wed, 14 Jun 2006 12:17:54 -0400 (EDT) Received: from opera.rednote.net (opera.rednote.net [70.84.142.212]) by menubar.gnome.org (Postfix) with ESMTP id 2375F3B03DA; Wed, 14 Jun 2006 12:17:54 -0400 (EDT) Received: from opera.rednote.net (localhost.localdomain [127.0.0.1]) by opera.rednote.net (8.13.6/8.13.5) with ESMTP id k5EGH5iU007764; Wed, 14 Jun 2006 16:17:05 GMT Received: (from janina@localhost) by opera.rednote.net (8.13.6/8.13.6/Submit) id k5EGH5N6007763; Wed, 14 Jun 2006 12:17:05 -0400 Date: Wed, 14 Jun 2006 12:17:05 -0400 From: Janina Sajka To: Willie Walker Subject: Re: Announcing Orca 0.2.5 rpms Message-ID: <20060614161705.GW2259@rednote.net> References: <1150069937.5071.4.camel@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1150069937.5071.4.camel@localhost> User-Agent: Mutt/1.4.2.1i X-Operating-System: Linux opera.rednote.net 2.6.16-1.2122_FC5spksmp Organization: Capital Accessibility LLC (http://www.CapitalAccessibility.com) X-PGP-Key: http://www.CapitalAccessibility.com/JaninaSajka_gpg_key.html X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.569 tagged_above=-999 required=2 tests=[AWL=0.030, BAYES_00=-2.599] X-Spam-Score: -2.569 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 12:47:08 -0400 Cc: gnome-announce-list@gnome.org, gnome-accessibility-list@gnome.org, orca-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 16:17:56 -0000 rpm packages of Orca-0.2.5 for Fedora Core 5 are now available from: ftp://SpeakupModified.Org/fedora/rednote/ The binary is under RPMS, and the source under SRPMS as usual with Fedora. Installation There is yet some unresolved dependency issue with these rpms, so they probably will need to be installed using the --nodeps option as follows: rpm -Uv --nodeps orca-0.2.5-1.i386.rpm However, I can attest the resulting installation works for me on two different systems. I have first run: orca -t from the console, as the same user I am in the gui desktop. Once on the desktop, I have issued Alt-F2 and typed: orca -t again to get things started. Seems wrong, but is working for me on two systems. Special Note: You may need to upgrade your Gnome Desktop to Fedora Development. If you find things not working with the current release and updated Gnome environment, try: yum --disablerepo='*' --enablerepo=development groupupdate 'GNOME Desktop Environment' Note the above command is issued on one line, though it's probably been broken into at least two lines in this email message. -- Janina Sajka Phone: +1.240.715.1272 Partner, Capital Accessibility LLC http://CapitalAccessibility.Com Marketing the Owasys 22C talking screenless cell phone in the U.S. and Canada--Go to http://ScreenlessPhone.Com to learn more. Chair, Accessibility Workgroup Free Standards Group (FSG) janina@freestandards.org http://a11y.org From ross@golder.org Thu Jun 15 07:48:01 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D826D3B007D for ; Thu, 15 Jun 2006 07:48:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03520-09 for ; Thu, 15 Jun 2006 07:47:53 -0400 (EDT) Received: from black.golder.org (black.golder.org [81.6.249.35]) by menubar.gnome.org (Postfix) with ESMTP id BFA543B009A for ; Thu, 15 Jun 2006 07:47:49 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by black.golder.org (Postfix) with ESMTP id 6BF4B40AB; Thu, 15 Jun 2006 12:47:48 +0100 (BST) X-Virus-Scanned: amavisd-new at golder.org Received: from black.golder.org ([127.0.0.1]) by localhost (black.golder.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id H-Yje6ok1oMb; Thu, 15 Jun 2006 12:47:45 +0100 (BST) Received: from red (unknown [125.24.64.59]) by black.golder.org (Postfix) with ESMTP id B12633FE2; Thu, 15 Jun 2006 12:47:41 +0100 (BST) Subject: Subversion migration schedule (new cut-off is Fri 14 July) From: Ross Golder To: gnome-announce-list@gnome.org Content-Type: multipart/mixed; boundary="=-41kIj1JG8/E+h5tM2RXc" Date: Thu, 15 Jun 2006 18:47:06 +0700 Message-Id: <1150372026.9754.1.camel@red> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.519 tagged_above=-999 required=2 tests=[AWL=0.080, BAYES_00=-2.599] X-Spam-Score: -2.519 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 07:51:43 -0400 Cc: devel-announce@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 11:48:02 -0000 --=-41kIj1JG8/E+h5tM2RXc Content-Type: text/plain Content-Transfer-Encoding: 7bit As per below, it was decided that 23rd June was too soon before GUADEC, so the new cut-off date has been put back to 14th July. Regards, -- Ross --=-41kIj1JG8/E+h5tM2RXc Content-Disposition: inline Content-Description: Forwarded message - Re: Subversion migration schedule (new cut-off Fri 14 July?) Content-Type: message/rfc822 Return-Path: Received: from black.golder.org ([unix socket]) by black.golder.org (Cyrus v2.3.1-Invoca-RPM-2.3.1-2.6.fc5) with LMTPA; Fri, 02 Jun 2006 14:59:52 +0100 X-Sieve: CMU Sieve 2.3 Received: from localhost (localhost.localdomain [127.0.0.1]) by black.golder.org (Postfix) with ESMTP id 621804A93 for ; Fri, 2 Jun 2006 14:59:52 +0100 (BST) X-Virus-Scanned: amavisd-new at golder.org X-Spam-Score: 0.466 X-Spam-Level: X-Spam-Status: No, score=0.466 tagged_above=-99 required=2.5 tests=[AWL=0.466] Received: from black.golder.org ([127.0.0.1]) by localhost (black.golder.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 9MLIDaDvOs4S for ; Fri, 2 Jun 2006 14:59:49 +0100 (BST) Received: from menubar.gnome.org (menubar.gnome.org [209.132.176.177]) by black.golder.org (Postfix) with ESMTP id 570164A91 for ; Fri, 2 Jun 2006 14:59:48 +0100 (BST) Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 58DFF3B04AD; Fri, 2 Jun 2006 09:59:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30643-08; Fri, 2 Jun 2006 09:59:44 -0400 (EDT) Received: from menubar.gnome.org (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0CDFA3B0480; Fri, 2 Jun 2006 09:59:44 -0400 (EDT) X-Original-To: gnome-hackers@gnome.org Delivered-To: gnome-hackers@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 44C613B0480 for ; Fri, 2 Jun 2006 09:59:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30672-06 for ; Fri, 2 Jun 2006 09:59:41 -0400 (EDT) Received: from localhost.localdomain (unknown [125.25.17.26]) by menubar.gnome.org (Postfix) with ESMTP id 7067E3B0468 for ; Fri, 2 Jun 2006 09:59:39 -0400 (EDT) Received: by localhost.localdomain (Postfix, from userid 500) id 80BC09FC5E; Fri, 2 Jun 2006 20:59:23 +0700 (ICT) From: Ross Golder To: Jeff Waugh In-Reply-To: <20060601132052.GF5203@waugh.id.au> References: <1139648664.6627.40.camel@localhost> <1148971293.12902.2.camel@red> <20060601132052.GF5203@waugh.id.au> Content-Type: text/plain Date: Fri, 02 Jun 2006 20:59:23 +0700 Message-Id: <1149256763.6298.18.camel@red> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org Cc: gnome-hackers@gnome.org Subject: Re: Subversion migration schedule (new cut-off Fri 14 July?) X-BeenThere: gnome-hackers@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Hacking GNOME discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: gnome-hackers-bounces@gnome.org Errors-To: gnome-hackers-bounces@gnome.org X-Virus-Scanned: by amavisd-new at gnome.org Content-Transfer-Encoding: 7bit On Thu, 2006-06-01 at 23:20 +1000, Jeff Waugh wrote: > > > > As the various show-stoppers that prevented our previously scheduled > > migration from going ahead have now been resolved, I am proposing that the > > new migration go ahead at 23:59UTC on Friday 16th June 2006. Please let us > > know a.s.a.p if that will be inconvenient for anyone. > > Ross, > > Can I suggest that we do the migration after GUADEC? I think it would be > more useful for us to have reliable and known access to CVS through the week > than be dealing with post-migration woes (as clean as it will be, there will > be some hassles for everyone). > > Thanks, > > - Jeff > How about this - I'll run another test migration on the 23rd, but won't actually make the switch. At least then, if anyone at GUADEC wants to play with or demonstrate anything related to subversion, at least they will get fairly up-to-date code. So, looking at the release schedule, it looks like the next best date would be July 14th. How would that be? -- Ross _______________________________________________ gnome-hackers mailing list gnome-hackers@gnome.org http://mail.gnome.org/mailman/listinfo/gnome-hackers --=-41kIj1JG8/E+h5tM2RXc-- From gjc@inescporto.pt Thu Jun 15 15:10:39 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7C99F3B02BF for ; Thu, 15 Jun 2006 15:10:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 29070-01 for ; Thu, 15 Jun 2006 15:10:36 -0400 (EDT) Received: from animal.inescn.pt (correio.inescn.pt [194.117.24.9]) by menubar.gnome.org (Postfix) with ESMTP id 5CEBB3B016C for ; Thu, 15 Jun 2006 15:10:35 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by animal.inescn.pt (8.13.6/8.13.6/7) with ESMTP id k5FJ9a1H007835; Thu, 15 Jun 2006 20:09:36 +0100 (WEST) Received: from pong.inescporto.pt (pong.inescn.pt [194.117.26.74]) by animal.inescn.pt (8.13.6/8.13.6/5) with ESMTP id k5FJ9PGj007812; Thu, 15 Jun 2006 20:09:25 +0100 (WEST) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by pong.inescporto.pt (Postfix) with ESMTP id 63C2A1303A8; Thu, 15 Jun 2006 20:06:19 +0100 (WEST) Subject: ANNOUNCE: PyGTK 2.9.2 (unstable) From: "Gustavo J. A. M. Carneiro" To: PyGTK Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-RzvsD9ggP/SFbL+MHSSy" Date: Thu, 15 Jun 2006 20:09:24 +0100 Message-Id: <1150398564.5933.27.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at inescporto.pt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.428 tagged_above=-999 required=2 tests=[AWL=0.037, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.428 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 23:27:04 -0400 Cc: gnome-announce-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 19:10:39 -0000 --=-RzvsD9ggP/SFbL+MHSSy Content-Type: text/plain Content-Transfer-Encoding: quoted-printable I am pleased to announce version 2.9.2 of the Python bindings for GTK. The new release is available from ftp.gnome.org and its mirrors as soon as its synced correctly: http://ftp.gnome.org/pub/GNOME/sources/pygtk/2.9/ This is an unstable release and should be used with caution. It requires either GTK+ 2.8.x or GTK+ >=3D 2.9.3. Blurb: GTK is a toolkit for developing graphical applications that run on systems such as Linux, Windows and MacOS X. It provides a comprehensive set of GUI widgets, can display Unicode bidi text. It links into the Gnome Accessibility Framework through the ATK library. PyGTK provides a convenient wrapper for the GTK+ library for use in Python programs, and takes care of many of the boring details such as managing memory and type casting. When combined with PyORBit and gnome-python, it can be used to write full featured Gnome applications. Like the GTK+ library itself PyGTK is licensed under the GNU LGPL, so is suitable for use in both free software and proprietary applications. It is already in use in many applications ranging from small single purpose scripts up to large full features applications. pygtk-2.9.2 15-june-2006 - Fix a codegen bug that prevent build of other extensions (344845, Gus= tavo) - Builds with pycairo 1.1.6 (344957, Gustavo) - gtk.TextBuffer rich text copy and serialization (Finlay) - Correct Print Editor example (Gustavo) PyGTK requires GTK+ >=3D 2.8.0 and Python >=3D 2.3.5 to build. Bug reports, as always, should go to Bugzilla; check out http://pygtk.org/developer.html and http://pygtk.org/feedback.html for links to posting and querying bug reports for PyGTK. --=20 Gustavo J. A. M. Carneiro The universe is always one step beyond logic=09 --=-RzvsD9ggP/SFbL+MHSSy Content-Type: application/pgp-signature; name=signature.asc Content-Description: Esta =?ISO-8859-1?Q?=E9?= uma parte de mensagem assinada digitalmente -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (GNU/Linux) iD8DBQBEkbBk2XoHyMdS6TARAjgIAJ4upHdWvOey6x3eV21Ji6P58K+OhgCdGstN wEORPp04QwWKfmDGW0Dum/g= =Suqv -----END PGP SIGNATURE----- --=-RzvsD9ggP/SFbL+MHSSy-- From johnp@redhat.com Thu Jun 15 16:50:59 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8557E3B01FF; Thu, 15 Jun 2006 16:50:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00479-04; Thu, 15 Jun 2006 16:50:58 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 798313B00D0; Thu, 15 Jun 2006 16:50:58 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5FKndP2000921; Thu, 15 Jun 2006 16:49:39 -0400 Received: from lacrosse.corp.redhat.com (lacrosse.corp.redhat.com [172.16.52.154]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5FKnYTU014072; Thu, 15 Jun 2006 16:49:34 -0400 Received: from [172.16.80.35] (remedyz.boston.redhat.com [172.16.80.35]) by lacrosse.corp.redhat.com (8.12.11.20060308/8.11.6) with ESMTP id k5FKnYad010638; Thu, 15 Jun 2006 16:49:34 -0400 Subject: GNOME 2.15.3 Development Release From: "John (J5) Palmieri" To: devel-announce-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Date: Thu, 15 Jun 2006 16:49:34 -0400 Message-Id: <1150404574.5271.18.camel@remedyz.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.3 (2.7.3-2) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.449 tagged_above=-999 required=2 tests=[AWL=-0.079, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_GT=0.077, TW_JH=0.077, TW_YG=0.077] X-Spam-Score: -2.449 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 23:27:04 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 20:50:59 -0000 GNOME 2.15.3 Development Release ================================ It is that time again. Time to get it, time to build it and time to test it. The GNOME Release Team is proud to present the 2.15.3 development release. This is our third development release on our road towards GNOME 2.16.0, which will be released in September 2006. So go download it. Go compile it. Go test it. And go hack on it, document it, translate it, fix it. Note that gnome-applets, deskbar-applet and pygtk all need patches which can be found here gnome-applets: http://download.gnome.org/teams/releng/2.15.3/gswitchit.patch deskbar-applet: http://download.gnome.org/teams/releng/2.15.3/CuemiacPopupEntry.py.patch pygtk: http://download.gnome.org/teams/releng/2.15.3/defsparser.py.patch To compile GNOME 2.15.3, you can use GARNOME (will be released soon), or the jhbuild modulesets available at: http://download.gnome.org/teams/releng/2.15.3/ The release notes that describe the changes between 2.15.2 and 2.15.3 are available. Go read them to learn all the goodness of this release: platform - http://download.gnome.org/platform/2.15/2.15.3/NEWS desktop - http://download.gnome.org/desktop/2.15/2.15.3/NEWS admin - http://download.gnome.org/admin/2.15/2.15.3/NEWS bindings - http://download.gnome.org/bindings/2.15/2.15.3/NEWS Here are some figures about this release: admin 2.15.3 statistics: tar.gz: 792K total tar.bz2: 616K total bindings 2.15.3 statistics: tar.gz: 21M total tar.bz2: 15M total desktop 2.15.3 statistics: tar.gz: 156M total tar.bz2: 114M total platform 2.15.3 statistics: tar.gz: 53M total tar.bz2: 37M total The GNOME 2.15.3 release is available here: platform sources - http://download.gnome.org/platform/2.15/2.15.3/ desktop sources - http://download.gnome.org/desktop/2.15/2.15.3/ admin sources - http://download.gnome.org/admin/2.15/2.15.3/ bindings sources - http://download.gnome.org/bindings/2.15/2.15.3/ WARNING! WARNING! WARNING! -------------------------- This release is a snapshot of development code. Although it is buildable and usable, it is primarily intended for testing and hacking purposes. GNOME uses odd minor version numbers to indicate development status. For more informations about 2.15, the full schedule, the official module lists and the proposed modules list, please see our shiny 2.15 page: http://www.gnome.org/start/unstable/ We hope you'll love it, The GNOME Release Team -- John (J5) Palmieri From guenther@rudersport.de Thu Jun 15 17:06:31 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1F0DB3B0237; Thu, 15 Jun 2006 17:06:31 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00750-05; Thu, 15 Jun 2006 17:06:30 -0400 (EDT) Received: from rudersport.de (rudersport.de [192.220.91.203]) by menubar.gnome.org (Postfix) with ESMTP id 427033B00D0; Thu, 15 Jun 2006 17:06:30 -0400 (EDT) Received: from [10.0.0.2] (IP-213157009217.dialin.heagmedianet.de [213.157.9.217]) by rudersport.de (8.12.11.20060308) id k5FL5jDY040713; Thu, 15 Jun 2006 15:05:46 -0600 (MDT) Subject: [ANNOUNCE] GARNOME 2.15.3 From: guenther To: garnome-list@gnome.org Content-Type: text/plain Date: Thu, 15 Jun 2006 23:05:43 +0200 Message-Id: <1150405543.8323.15.camel@monkey.loc> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.053 tagged_above=-999 required=2 tests=[AWL=-0.451, BAYES_00=-2.599, SUBJ_ALL_CAPS=0.997] X-Spam-Score: -2.053 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 23:27:04 -0400 Cc: gnome-announce-list@gnome.org, gnome-love@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 21:06:31 -0000 GARNOME 2.15.3 ============== The "It's quiet out there... Yes... Too quiet..." release. What seemed to be no last minute releases turned out to be a broken list server, holding back the official GNOME release for a day. Also, there have been a bunch of build issues this time around, more than usual. Some good cooperation between the Release Team and the GARNOME Team (especially Joseph) hacked around the brokeness, thus... We are pleased to announce the release of GARNOME 2.15.3 Desktop and Developer Platform. This release includes all of GNOME 2.15.3 plus a whole bunch of updates that were released after the GNOME freeze date. This is the third release in the unstable cycle, with more features, more fixes and yet more madness added. It is for anyone who wants to get his hands dirty on the development branch, or who'd like to get a peek at future features. If you want to help spot issues in GARNOME, (or, better yet, fix 'em ;-) this release is for you as well. As usual, you can get the tarball directly from the gnome.org site: http://download.gnome.org/sources/garnome/2.15/ Note: GNOME 2.15.x is an unstable branch and is assumed to be a moving target. Therefore, things in this release may not work as advertised. If you find any issues with this release, feel free to contact the GARNOMEies in the #garnome channel on GIMPNet (irc://irc.gnome.org), where we hang out, or post to the mailing list. More information is available at our project website: http://www.gnome.org/projects/garnome/ Enjoy, The GARNOME Team -- char *t="\10pse\0r\0dtu\0.@ghno\x4e\xc8\x79\xf4\xab\x51\x8a\x10\xf4\xf4\xc4"; main(){ char h,m=h=*t++,*x=t+2*h,c,i,l=*x,s=0; for (i=0;i>=1)||!t[s+h]){ putchar(t[s]);h=m;s=0; }}} From behdad.esfahbod@gmail.com Thu Jun 15 17:39:14 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 21DF83B0232 for ; Thu, 15 Jun 2006 17:39:14 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02006-04 for ; Thu, 15 Jun 2006 17:39:13 -0400 (EDT) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.237]) by menubar.gnome.org (Postfix) with ESMTP id 17AEE3B0007 for ; Thu, 15 Jun 2006 17:39:13 -0400 (EDT) Received: by wr-out-0506.google.com with SMTP id 37so427823wra for ; Thu, 15 Jun 2006 14:38:12 -0700 (PDT) Received: by 10.54.108.13 with SMTP id g13mr2187733wrc; Thu, 15 Jun 2006 14:38:11 -0700 (PDT) Received: from ?192.168.190.5? ( [72.136.156.47]) by mx.gmail.com with ESMTP id 6sm1544376wrl.2006.06.15.14.38.10; Thu, 15 Jun 2006 14:38:11 -0700 (PDT) Subject: Women's Summer Outreach Program 2006 From: Behdad Esfahbod To: gnome-hackers@gnome.org, foundation-list@gnome.org, foundation-announce@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Date: Thu, 15 Jun 2006 17:38:06 -0400 Message-Id: <1150407487.29623.12.camel@home> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 (2.6.1-1.fc5.2) Content-Transfer-Encoding: 7bit Sender: Behdad Esfahbod X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.6 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.6 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 23:27:04 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 21:39:14 -0000 GNOME to Sponsor Female Developers in a Summer Outreach Program BOSTON, Mass - June 13, 2006 - The GNOME Foundation is offering USD$9000 to female students in order to promote the participation of women in GNOME-related development. The money originates from GNOME's participation in the Google "Summer of Code" program (code.google.com/soc/), for which GNOME developers will mentor 20 students working throughout the northern summer on GNOME-related projects. This year GNOME received 181 applications to Google's program, yet none were from women. The GNOME Foundation has therefore chosen to reinvest Google's contribution into a new program designed to increase the participation of women in GNOME. The program has no official relationship with Google. "Free software prides itself on being open to anyone with a good idea, yet less than 2% of free software developers are female. We, as a community, need to be actively working to change this statistic, and programs like this one are a much needed step in the right direction." said Hanna Wallach, a GNOME developer who is involved in several projects that encourage women to participate in free software development. The Women's Summer Outreach Program is currently accepting applications from female students. Accepted students will receive a stipend of USD $3000 over a two month period. A pool of project ideas is provided at www.gnome.org/projects/wsop/, though original proposals are also encouraged. Projects may either be related to GNOME directly, or indirectly via projects such as Gstreamer and Abiword. Each student will be assigned a mentor to provide guidance throughout the program. Vincent Untz, member of the GNOME Foundation board and coordinator of the GNOME team for Google's "Summer of Code" program, explained: "Many women have the skills required to contribute to Free Software projects like GNOME, but may not see an opportunity to start working with us. By initiating this program, not only do we want to highlight the issue, but we also hope that this opportunity will help more women to get involved in the long term." Applications should be submitted using the form at www.gnome.org/projects/wsop/. More information about the application process may be found at the same location. From cworth@cworth.org Fri Jun 16 13:14:11 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7C02B3B0125 for ; Fri, 16 Jun 2006 13:14:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07413-02 for ; Fri, 16 Jun 2006 13:14:09 -0400 (EDT) Received: from theworths.org (cworth.org [217.160.249.188]) by menubar.gnome.org (Postfix) with ESMTP id B2BA33B0128 for ; Fri, 16 Jun 2006 13:14:08 -0400 (EDT) Received: (qmail 6134 invoked from network); 16 Jun 2006 13:13:38 -0400 Received: from localhost (HELO raht.cworth.org) (127.0.0.1) by localhost with SMTP; 16 Jun 2006 13:13:38 -0400 Date: Fri, 16 Jun 2006 10:08:58 -0700 Message-ID: <878xnxc9jp.wl%cworth@cworth.org> From: Carl Worth To: cairo-announce@cairographics.org Subject: cairo snapshot 1.1.10 now available User-Agent: Wanderlust/2.14.0 (Africa) Emacs/21.4 Mule/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: multipart/signed; boundary="pgp-sign-Multipart_Fri_Jun_16_10:08:52_2006-1"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.4 tagged_above=-999 required=2 tests=[AWL=-0.090, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, TW_BX=0.077, TW_IB=0.077] X-Spam-Score: -2.4 X-Spam-Level: X-Mailman-Approved-At: Sat, 17 Jun 2006 00:52:39 -0400 Cc: gnome-announce-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2006 17:14:11 -0000 --pgp-sign-Multipart_Fri_Jun_16_10:08:52_2006-1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable A new cairo snapshot 1.1.10 is now available from: http://cairographics.org/snapshots/cairo-1.1.10.tar.gz which can be verified with: http://cairographics.org/snapshots/cairo-1.1.10.tar.gz.sha1 709d48dbcd0ac806e4f7bfd1f69314e4dfb57329 cairo-1.1.10.tar.gz http://cairographics.org/snapshots/cairo-1.1.10.tar.gz.sha1.asc (signed by Carl Worth) Additionally, a git clone of the source tree: git clone git://git.cairographics.org/git/cairo will include a signed 1.1.10 tag which points to a commit named: 65e73c81b83222de873935cf384e514ea20ac854 which can be verified with: git verify-tag 1.1.10 and can be checked out with a command such as: git checkout -b build 1.1.10 This is the fifth in a series of snapshots working toward the 1.2 release of cairo. The primary motivation for this snapshot is to fix a long-standing bug that had long been silent, but as of the 1.1.8 snapshot started causing crashes when run against 16-bit depth X servers, (often Xvnc or Xnest). The fix for this adds a new CAIRO_FORMAT_RGB16_565 to the API. This snapshot also includes a rewrite of cairo's SVG backend to eliminate the dependency on libxml2. With this in place, cairo 1.2 will not depend on any libraries that cairo 1.0 did not. As usual, there are also a few fixes for minor bugs. What is cairo =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Cairo is a 2D graphics library with support for multiple output devices. Currently supported output targets include the X Window System, win32, and image buffers. Experimental backends include OpenGL (through glitz), Quartz, XCB, PostScript and PDF file output. Cairo is designed to produce consistent output on all output media while taking advantage of display hardware acceleration when available (for example, through the X Render Extension). The cairo API provides operations similar to the drawing operators of PostScript and PDF. Operations in cairo including stroking and filling cubic B=E9zier splines, transforming and compositing translucent images, and antialiased text rendering. All drawing operations can be transformed by any affine transformation (scale, rotation, shear, etc.). Cairo has been designed to let you draw anything you want in a modern 2D graphical user interface. At the same time, the cairo API has been designed to be as fun and easy to learn as possible. If you're not having fun while programming with cairo, then we have failed somewhere---let us know and we'll try to fix it next time around. Cairo is free software and is available to be redistributed and/or modified under the terms of either the GNU Lesser General Public License (LGPL) version 2.1 or the Mozilla Public License (MPL) version 1.1. Where to get more information about cairo =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D The primary source of information about cairo is: http://cairographics.org/ The latest releases of cairo can be found at: http://cairographics.org/releases Snapshots of in-development versions of cairo: http://cairographics.org/snapshots The programming manual for using cairo: http://cairographics.org/manual Mailing lists for contacting cairo users and developers: http://cairographics.org/lists Answers to some frequently asked questions about cairo: http://cairographics.org/FAQ Detailed list of changes since 1.1.8 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Tag '1.1.10' created by Carl Worth at 2006-06-16 17:53 = -0700 cairo 1.1.10 snapshot -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEkuIi6JDdNq8qSWgRArhnAJ4hDlfpnWYY9bj0NVs7ZMl+XKsaXwCffRLz HMhowJx6or+LK99tRtZO5YM=3D =3DAsAw -----END PGP SIGNATURE----- Changes since 1.1.8: Behdad Esfahbod: Use enum time instead of int (shuts intel compiler up.) Merge branch 'cairo' into cairo-origin Carl Worth: Increment CAIRO_VERSION to 1.1.9 after making the 1.1.8 snapshot _cairo_format_from_pixman_format: Add useful error mesage and asserti= on when failing. Remove _cairo_image_surface_is_alpha_only in favor of just looking at= content value. Drop _cairo_surface_is_opaque now that we have cairo_surface_get_cont= ent Add missing breaks in switch statement. New API: Add support for new CAIRO_FORMAT_RGB16_565 Update release rules in Makefile to add git signature information. Annoying doc template churn. Update version to 1.1.10 and add notes to NEWS file. Emmanuel Pacaud: SVG: Update of reference images. Jinghua Luo: xlib: free resources before return if looking up glyph surface fails. Kristian H=F8gsberg: Make cairo_output_stream_t an embeddable type. Convert the stdio output stream to use the new output stream interfac= e. Convert the word wrap stream, the base85 stream and the ps string str= eam. Add an in-memory output-stream implementation. Only run fallback-resolution test case when all of PDF, PS and SVG ar= e enabled. Rewrite SVG backend to just use cairo output stream instead of libxml= 2. Remove libxml2 checks from configure.in. Actually add src/cairo-output-stream-private.h. Merge branch 'svg-rewrite' Add test case for the PDF, PS and SVG stream constructors. Only call close function for output streams if it's non-NULL. Add cairo-output-stream-private.h to libcairo_la_SOURCES. Torsten Sch=F6nfeld: Add missing cairo_public tag for cairo_image_surface_get_stride --- Makefile.am | 25=20 NEWS | 17=20 RELEASING | 2=20 configure.in | 20=20 doc/public/tmpl/cairo-image.sgml | 1=20 pixman/src/icformat.c | 6=20 pixman/src/pixman.h | 3=20 pixman/src/pixregion.c | 2=20 src/Makefile.am | 1=20 src/cairo-base85-stream.c | 28=20 src/cairo-image-surface.c | 98 + src/cairo-output-stream-private.h | 156 ++ src/cairo-output-stream.c | 188 ++- src/cairo-pattern.c | 2=20 src/cairo-pdf-surface.c | 1=20 src/cairo-ps-surface.c | 45=20 src/cairo-surface.c | 37=20 src/cairo-svg-surface.c | 1170 ++++++++--------= ----- src/cairo-type1-subset.c | 1=20 src/cairo-xlib-surface.c | 2=20 src/cairo.h | 8=20 src/cairoint.h | 85 - test/Makefile.am | 10=20 test/create-for-stream.c | 218 +++ test/linear-gradient-svg-argb32-ref.png |binary test/linear-gradient-svg-rgb24-ref.png |binary test/mask-svg-argb32-ref.png |binary test/mask-svg-rgb24-ref.png |binary test/paint-source-alpha-svg-argb32-ref.png |binary test/paint-source-alpha-svg-rgb24-ref.png |binary test/paint-with-alpha-svg-argb32-ref.png |binary test/paint-with-alpha-svg-rgb24-ref.png |binary test/push-group-svg-argb32-ref.png |binary test/push-group-svg-rgb24-ref.png |binary test/scale-source-surface-paint-svg-argb32-ref.png |binary test/scale-source-surface-paint-svg-rgb24-ref.png |binary test/text-pattern-svg-argb32-ref.png |binary test/text-pattern-svg-rgb24-ref.png |binary test/trap-clip-svg-argb32-ref.png |binary test/trap-clip-svg-rgb24-ref.png |binary 40 files changed, 1171 insertions(+), 955 deletions(-) --pgp-sign-Multipart_Fri_Jun_16_10:08:52_2006-1 Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEkuWq6JDdNq8qSWgRAqI6AJ42+4WuUfwFtayn9C8dh+r/xTk4OACeMMgt Cdpk2ar//g0UaT0w77grJjc= =kUjC -----END PGP SIGNATURE----- --pgp-sign-Multipart_Fri_Jun_16_10:08:52_2006-1-- From doclivingston@gmail.com Sun Jun 18 02:45:17 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 001613B014D for ; Sun, 18 Jun 2006 02:45:17 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27928-05 for ; Sun, 18 Jun 2006 02:45:15 -0400 (EDT) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.179]) by menubar.gnome.org (Postfix) with ESMTP id C709D3B0158 for ; Sun, 18 Jun 2006 02:45:14 -0400 (EDT) Received: by py-out-1112.google.com with SMTP id c39so971442pyd for ; Sat, 17 Jun 2006 23:43:58 -0700 (PDT) Received: by 10.35.89.10 with SMTP id r10mr6756008pyl; Sat, 17 Jun 2006 23:43:58 -0700 (PDT) Received: from alyrion.local ( [144.134.102.218]) by mx.gmail.com with ESMTP id k13sm2076296pyf.2006.06.17.23.43.55; Sat, 17 Jun 2006 23:43:57 -0700 (PDT) Subject: Rhythmbox 0.9.5 From: "James \"Doc\" Livingston" To: Rhythmbox-devel list , gnome-announce-list@gnome.org Content-Type: text/plain; charset=UTF-8 Date: Sun, 18 Jun 2006 16:43:53 +1000 Message-Id: <1150613033.6027.23.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.53 tagged_above=-999 required=2 tests=[AWL=0.070, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.53 X-Spam-Level: X-Mailman-Approved-At: Sun, 18 Jun 2006 10:56:33 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: rhythmbox-devel@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 06:45:17 -0000 G'day Everyone, On behalf of the Rhythmbox developers, I'm proud to announce the sixth release of the Rhythmbox 0.9 series, which includes a large number of fixes, improvements and new features. Notable new features include: - Improved plugin support, and several features converted to plugins - An album art viewing and download plugin - A song lyric viewing and download plugin - Ogg Vorbis tag editing [0] - Partial iPod write support [1] - Improved audio player and DAAP support - CD ripping and track transfer enabled by default - Updated documentation and many, many more improvements, bug fixes and new minor features. See below for more details. [0] requires a GStreamer plugin not yet in cvs, see bug 335635 [1] off by default, pass --enable-ipod-writing to enable. * What is Rhythmbox ? ===================== Rhythmbox is an integrated music management application, originally inspired by Apple's iTunes. It is free software, designed to work well under the GNOME Desktop, and based on the powerful GStreamer media framework. * What's changed in 0.9.5 ? =========================== * fix icon themability (Steve Frécinaux) * handle iPods that have been repartitioned (Christophe Fergeau: 325034) * allow ipod renaming, ejection, deletion and transfer (Christophe Fergeau) * make iradio handling work much better (Jonathan Matthew: 320336, 324402) * improve out-of-process metadata loader (Jonathan Matthew: 338062) * update documentation (Baptiste Mille-Mathias, ) * pluginise iPod and Generic players (Christophe Fergeau, Jonathan Matthew) * support saving playlists as M3U (Gavin Stewart: 316295) * remember browser visibility when changing sources (Alex Lancaster: 118862) * handle media unmounts better (Jonathan Matthew: 339023) * make entry types be a structure, and add support for extended data, and various method implementations (Christophe Fergeau, James Livingston) * album art view&download plugin (Alex Lancaster, James Livingston, Gareth Murphy, William Jon McCann, Martin Szulecki) * update the FSF's address (Gunnar Steinn Magnusson) * much improved Python bindings (James Livingston, Jonathan Matthew) * fix some translation issues (Nguyễn Thái Ngọc Duy, James Livingston: 339380, 343081) * improve startup time (James Livingston, Jonathan Matthew) * fix audioscrobbler submission, and allow viewing of info (Jonathan Matthew: 325848) * improve DBus interface (Jonathan Matthew, Tim Moloney) * allow transcoding during track transfer (Alessandro Decina: 322268) * cd burning fixes and improvements (William Jon McCann) * podcast feed parsing and download fixes (James Livingston: 339728) * turn the playback backend into a full GObject interface (James Livingston: 338667) * add more API documentation (Jonathan Mattjew) * add vorbis tag editing (James Livingston: 339878) * fix various threading insanities (Jonathan Matthew) * display "child libraries" with multiple library locations (James Livingston: 100552) * improve drag-and-drop from browsers (Jonathan Matthew: 327540) * support Motorola ROKR phones (Joe Barnett) * make query model limits saner (Janes Livingston) * source cleanup and API improvement (James Livingston, Jonathan Matthew) * improve status feedback for DAAP (Jonathan Matthew: 322020 and 338978) * memory improvement and leak fixed (James Livingston, Jonathan Matthew) * kill Bonobo support, require DBus, support DBus 0.3.0 (Jonathan Matthew: 339720) * add lyric download and view plugin (Jonathan Matthew: 319320) * add "add to playlist" menu (James Livingston: 323364) * allow changing of audio cd metadata (James Livingston) * improve DAAP handling (William Jon McCann: 342643) * update and write new unit tests (James Livingston) * group sources (Jonathan Matthew) * add new "rhythmbox-client" program (Jonathan Matthew: 340863, 155763) * assorted build fixes (Brian Cameron, Paul Drain, Elijah Newren, Hendrik Richter, Ryan P Skadberg, Götz Waschk, Pawel Worach, FreeBSD GNOME project, others) * HIG and UI improvements (Dennis Cranston, Baptiste Mille-Mathias) * many other bug fixed (Christophe Fergeau, Jaap A. Haitsma, James Livingston, Jonathan Matthew, Mikael Olenfalk, Roozbeh Pournader) Updated Translations -------------------- ca Jordi Mallach cs Miloslav Trmac de Hendrik Richter es Francisco Javier F. Serrador fi Ilkka Tuohela gl Ignacio Casal Quinteiro lt Žygimantas Beručka nb Øivind Hoel, Kjartan Maraas nl Vincent van Adrighem, Wouter Bolsterlee sv Fredrik Tuomas vi Clytie Siddall zh_CN Funda Wang * Where can I get it ? ====================== Source code: http://ftp.gnome.org/pub/GNOME/sources/rhythmbox/0.9/rhythmbox-0.9.5.tar.gz [MD5 sum: 3cbce0fd5ed948e13dabe7be7b9353e9] http://ftp.gnome.org/pub/GNOME/sources/rhythmbox/0.9/rhythmbox-0.9.5.tar.bz2 [MD5 sum: ff55e1db114321b7bdd6e21df1879367] Home Page: http://www.rhythmbox.org/ James "Doc" Livingston From mclasen@redhat.com Tue Jun 20 11:22:11 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3B32C3B043F; Tue, 20 Jun 2006 11:22:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22457-09; Tue, 20 Jun 2006 11:22:09 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 71CF13B00E7; Tue, 20 Jun 2006 11:22:09 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5KFLLnL004523; Tue, 20 Jun 2006 11:21:21 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [172.16.76.12]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5KFLLNA016479; Tue, 20 Jun 2006 11:21:21 -0400 Received: from golem.boston.redhat.com (golem.boston.redhat.com [172.16.80.24]) by mail.boston.redhat.com (8.12.8/8.12.8) with ESMTP id k5KFLKdH032719; Tue, 20 Jun 2006 11:21:20 -0400 Subject: GLib 2.11.4 released From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-list@gnome.org, gtk-app-devel-list@gnome.org Content-Type: text/plain Date: Tue, 20 Jun 2006 11:21:20 -0400 Message-Id: <1150816880.15532.58.camel@golem.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.1 (2.7.1-1) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.543 tagged_above=-999 required=2 tests=[AWL=0.058, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.543 X-Spam-Level: X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2006 15:22:11 -0000 GLib 2.11.4 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.11/ http://ftp.gnome.org/pub/GNOME/sources/glib/2.11/ glib-2.11.4.tar.bz2 md5sum: 9d3a94baa4bfcd9a579b45eea6de3a8c glib-2.11.4.tar.gz md5sum: f7768bc7ed524c6b40cb87daccb6c2b2 This is a development release leading up to GLib 2.12. Notes: * This is unstable development release. While it has had a bit of testing, there are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GLib 2.10. If you have problems, you'll need to reinstall GLib 2.10. * GLib 2.12 will be source and binary compatible with the GLib 2.10.x series (for some caveats, see the README). At this point, the API additions in the 2.11.x series are finished. * Bugs should be reported to http://bugzilla.gnome.org. About GLib ========== GLib is the low-level core library that forms the basis for projects such as GTK+ and GNOME. It provides data structure handling for C, portability wrappers, and interfaces for such runtime functionality as an event loop, threads, dynamic loading, and an object system. More information about GLib is available at: http://www.gtk.org/ An installation guide for the GTK+ libraries, including GLib, can be found at: http://developer.gnome.org/doc/API/2.0/gtk/gtk-building.html Overview of Changes from GLib 2.11.3 to GLib 2.11.4 =================================================== * GBookmarkFile: - g_bookmark_file_remove_item returns a boolean * g_mkstemp accepts the XXXXXX in the middle of the template * Bugs fixed: 344868 g_key_file_to_data should separate groups * Updated translations (de,es,fr,gu,hi,ko,th) A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=344868 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Emmanuele Bassi, Christian Persch, Federico Mena Quintero Matthias Clasen June 20, 2006 From joeshaw@novell.com Mon Jun 19 16:10:21 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id ABD293B0D15 for ; Mon, 19 Jun 2006 16:10:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30318-02 for ; Mon, 19 Jun 2006 16:10:20 -0400 (EDT) Received: from peabody.ximian.com (peabody.ximian.com [130.57.169.10]) by menubar.gnome.org (Postfix) with ESMTP id C79993B084E for ; Mon, 19 Jun 2006 16:10:19 -0400 (EDT) Received: (qmail 29764 invoked from network); 19 Jun 2006 20:09:04 -0000 Received: from localhost (HELO posthaste.boston.ximian.com) (joe@127.0.0.1) by localhost with SMTP; 19 Jun 2006 20:09:04 -0000 Subject: ANNOUNCE: Beagle 0.2.7 From: Joe Shaw To: dashboard-hackers@gnome.org Content-Type: text/plain; charset=UTF-8 Date: Mon, 19 Jun 2006 16:08:58 -0400 Message-Id: <1150747738.21037.1.camel@posthaste.boston.ximian.com> Mime-Version: 1.0 X-Mailer: Evolution 2.6.0 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.362 tagged_above=-999 required=2 tests=[AWL=-0.194, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, TW_BG=0.077, TW_GT=0.077, TW_XD=0.077] X-Spam-Score: -2.362 X-Spam-Level: X-Mailman-Approved-At: Tue, 20 Jun 2006 11:54:51 -0400 Cc: gnome-announce-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jun 2006 20:10:21 -0000 Hi, I'm happy to announce the release of Beagle 0.2.7. This version fixes the dreaded "Lock obtain timed out" bug, includes a new SVG and marks the return of the CHM filter. It introduces a compressed text cache, so that the disk space needed to generate snippets is greatly reduced, and many more bug fixes. OUR MANY URLS ------------- To download the 0.2.7 tarball or learn more, visit the Beagle wiki at: http://www.beagle-project.org The latest gossip is available at: http://www.planetbeagle.org Nat Friedman made some cool movies that demonstrate Beagle in action: http://nat.org/demos We still talk about Beagle on the dashboard-hackers mailing list: http://mail.gnome.org/mailman/listinfo/dashboard-hackers Info on Beagle's participation in Google's Summer of Code can be found here: http://beagle-project.org/Summer_Of_Code WHAT IS BEAGLE? --------------- Beagle is a tool for indexing and searching your data. Beagle is improving rapidly on many fronts, and should work well enough for everyday use. The Beagle daemon transparently monitors your data and updates the index to reflect any changes. On an inotify-enabled system, these updates happen more-or-less in real time. So for example, * Files are immediately indexed when they are created, are re-indexed when they are modified, and are dropped from the index upon deletion. * E-mails are indexed upon arrival. * IM conversations are indexed as you chat, a line at a time. Beagle supports many different file formats including OpenOffice documents, Microsoft Word documents, PDFs, HTML files, and many image, audio and video formats. Beagle can extract information from your file system, Evolution and KMail mailboxes, Evolution calendars and addressbooks, Gaim and Kopete instant messenger conversations, several RSS aggregators, Tomboy notes, Konqueror browsing history, system documentation, and many others. Beagle also indexes tags on your photos from F-Spot and Digikam. Beagle also provides Firefox and Epiphany extensions that index web pages in real-time as the user visits them. Beagle uses the Lucene indexing system from the prodigious Doug Cutting. Beagle includes a GTK-based graphical tool for searching the index that the daemon creates. This application doesn't query the index directly; it passes the search terms to the daemon and the daemon sends any matches back. The user interface then renders the results and allows you to perform useful actions on the matching objects. Indexing your data requires a fair amount of computing power, but the Beagle daemon tries to be as unobtrusive as possible. It contains a scheduler that works to prioritize tasks and control CPU usage, based on whether or not you are actively using your workstation. DEPENDENCY HECK --------------- Beagle requires: * Mono 1.1.13.5 or better, along with the full Mono stack * gtk-sharp 2.3.90 or better * GMime 2.1.19 * Libexif 0.5.7 or better * shared-mime-info For the best possible Beagle experience, you should also have: * GMime 2.2.1 * Evolution-sharp 0.10.2 or 0.11.1 * libgsf 1.12.1 and gsf-sharp 0.6 * Either wv 1.2.0, or a *patched* wv 1.0.3 --- the patch is available from http://users.avafan.com/~fredrik/beagle/wv-libole2-readonly.patch * An inotify-enabled kernel. Inotify is in the mainline Linux kernel as of 2.6.13. And other optional dependencies: http://beagle-project.org/Optional_Prerequisites CHANGES SINCE 0.2.6 ------------------- Daemon/Infrastructure: * Fix bugs in the query parser by using a regular expression-based system. (Max Wiehle, Keving Kubasik) * Compress items in the text cache, greatly reducing disk usage. (Kevin, Lukas Lipka) * Fix a bug in which the sqlite database could get cluttered with older files. (Debajyoti Bera, Joe Shaw) * Again write out the PID of the locking process, or else we cannot effectively detect dangling locks. (Joe) * If we see a lockfile with no PID, assume it's a dangling lock. (Joe) * No longer handle SIGQUIT to shut down the daemon; it's used very valuably by Mono for debugging purposes. (Joe) * Add a BEAGLE_DISABLE_XATTR environment variable to disable extended attribute support for testing purposes. (Joe) * Only print out the inotify "Maximum watch limit hit" warning once. (Joe) * Convert HTML entities when creating snippets. (Lukas, Kevin) * Patch our xdgmime installation to not crash if the data is reloaded while it is processing it. (Joe) * Fix an issue with newer Mono installations where the index helper process would become a zombie after it finished and was never cleaned up. (Joe) * Fix a bug in which properties weren't being sorted and couldn't be found. (Max, Kevin, Bera) * Work around a Mono bug so that dangling symlinks in ~/.beagle/Log are cleaned up at startup. (Joe) Backends: * Generate mail delete events using the indexable generator rather than creating many individual indexables by hand, which could flood the scheduler and slow the system down. (Joe) * Check for exceptions when calling GetChanges() on Evolution calendars and addressbooks. (Joe) Filters: * Added an SVG filter. (Alexander Macdonald) * Re-enable the CHM filter. (Miguel Cabrera) * Close the OpenOffice zip file when we're finished. (Joe) * Index additional info from ebuild files, including installation info and desktop file entries. (Pat Double) * Add duration and bitrate properties to the music filter. (Lukas) * Add a filter for Boo. (Paul Betts) * Don't throw EncodingFoundException in the HTML parser unless asked to. (Bera) * Add application/x-php as a valid mime type for the PHP filter. (Kevin) * Make sure the mime type is lower case before matching on it. (Kevin, Joe) UI: * Catch exceptions if we can't load an application's icons. (Joe, Pierre Poissinger) * Include the date in note tiles. (Lukas) * Only display the first line of a calendar item's description. (Dan Winship) * Use mailto URIs rather than invoking Evolution directly when possible. (Lukas) * Use desktop-launch to open file tiles when applicable. (Lukas) * Make the text in the details pane selectable. (Lukas) * If the calendar's description is empty, still display the item. (Lukas) * Simplify the code for the details pane significantly. (Lukas) * Scale down very large mime icons for display. (Lukas) * Enable the "Open With" menu if GTK+ 2.8 is available at build-time. (Kevin) * Force the window to get wider if the tiles get wider rather than creating a horizontal scrollbar. (Dan) Tools: * Add --enable-deletion to beagle-build-index, which removes deleted files from the index. (Bera) * Add $sharedir/gtk-doc/html and $sharedir/gnome/html to the documentation crawl rules. (Joe) * Fix a typo in the beagled manpage. (Kevin Lamontagne) * Fix bugs dealing with shell quoting in beagle-query. (Max) Translations: * Updated Brazilian Portuguese translation. (Raphael Higino) * Updated Czech translation. (Jakub Friedl) * Updated Dutch translation. (Vincent van Adrighem) * Updated Finnish translation. (Ilkka Tuohela) * Updated Galician translation. (Ignacio Casal Quinteiro) * Updated Greek translation. (Kostas Papadimas) * Updated Japanese translation. (Takeshi Aihana) * Updated Norwegian bokml translation. (ivind Hoel) * Updated Simplified Chinese translation. (Funda Wang) * Updated Spanish translation. (Francisco Javier F. Serrador) * Updated Swedish translation. (Daniel Nylander) * Updated Vietnamese translation. (Clytie Siddall) Everything Else: * Make the Firefox extension work with Bon Echo (2.0 Alpha). (Joe) * Check for mmap() in configure.in, to optimize xdgmime. (Joe) * Add a pkg-config file for the UiUtil.dll assembly. (Luis Medinas) * Getting Dashboard building again. (Luis) KNOWN ISSUES ------------ We still use a bit too much memory. We are working on it. Certain extremely large documents can temporarily degrade your system's performance while they are being indexed. The file system is now much more robust than ever before. However, there are still race conditions that can occur with certain combinations of file system operations. In some cases it might be necessary to stop and restart the daemon. Certain files can crash the underlying libraries Beagle uses to extract metadata. This has been observed in MS Word and JPG files. If you encounter such a crash, please report it to the upstream developer of those libraries (wv1 and libexif for the above, respectively). At this point in development, we cannot commit to stable APIs or file formats. You will almost certainly need to delete your indexes and start again at some point in the future. From s.marechal@jejik.com Mon Jun 19 18:32:09 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 62F693B080B for ; Mon, 19 Jun 2006 18:32:09 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04849-10 for ; Mon, 19 Jun 2006 18:32:04 -0400 (EDT) Received: from smtp-vbr7.xs4all.nl (smtp-vbr7.xs4all.nl [194.109.24.27]) by menubar.gnome.org (Postfix) with ESMTP id 2E4AA3B035F for ; Mon, 19 Jun 2006 18:32:04 -0400 (EDT) Received: from [192.168.1.2] (a82-92-145-91.adsl.xs4all.nl [82.92.145.91]) (authenticated bits=0) by smtp-vbr7.xs4all.nl (8.13.6/8.13.6) with ESMTP id k5JMUN7U092865; Tue, 20 Jun 2006 00:30:24 +0200 (CEST) (envelope-from s.marechal@jejik.com) Message-ID: <449725B0.9050004@jejik.com> Date: Tue, 20 Jun 2006 00:31:12 +0200 From: Sander Marechal User-Agent: Thunderbird 1.5.0.4 (X11/20060615) MIME-Version: 1.0 To: hearts@lists.jejik.com, gnome-announce-list@gnome.org, news@linuxgames.com, webmaster@linuxlinks.com Subject: Gnome Hearts 0.1.1 Release Announcement Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by XS4ALL Virus Scanner X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.557 tagged_above=-999 required=2 tests=[AWL=0.042, BAYES_00=-2.599] X-Spam-Score: -2.557 X-Spam-Level: X-Mailman-Approved-At: Tue, 20 Jun 2006 11:54:51 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: hearts@lists.jejik.com List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jun 2006 22:32:09 -0000 Gnome Hearts 0.1.1 Release Announcement --------------------------------------- Our recently released Gnome Hearts 0.1 suffered from a build problem on distributions that shipped the Lua libraries as liblua instead of liblua50, most notably on the new Suse Linux. Gnome Hearts 0.1.1 fixes this issue, thanks to a patch sent in by a gnomefiles.org contributor. You can download the new tarball from our download section at: http://www.gnome-hearts.org/download/ About Gnome Hearts ------------------ Gnome Hearts is an implementation of the classic hearts card game for the GNOME desktop, featuring configurable rule sets and editable computer opponents to satisfy widely diverging playing styles. Gnome Hearts is Free Software, released under the GNU General Public License and should be able to run on any computer that can run the GNOME desktop. Enjoy, -- Sander Marechal http://www.gnome-hearts.org From peter@peterjohanson.com Tue Jun 20 01:48:23 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3398E3B0E71 for ; Tue, 20 Jun 2006 01:48:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26948-04 for ; Tue, 20 Jun 2006 01:48:21 -0400 (EDT) Received: from cubesearch.com (unknown [207.115.69.50]) by menubar.gnome.org (Postfix) with ESMTP id 7B83E3B05AF for ; Tue, 20 Jun 2006 01:48:21 -0400 (EDT) Received: by cubesearch.com (Postfix, from userid 522) id 8BF0D10E089; Mon, 19 Jun 2006 22:47:22 -0700 (PDT) Date: Mon, 19 Jun 2006 22:47:22 -0700 From: Peter Johanson To: gnome-announce-list@gnome.org Subject: [RELEASE] muine-0.8.5 Message-ID: <20060620054722.GS9163@butchest.cubesearch.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.11 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.55 tagged_above=-999 required=2 tests=[AWL=0.050, BAYES_00=-2.599, SPF_HELO_PASS=-0.001] X-Spam-Score: -2.55 X-Spam-Level: X-Mailman-Approved-At: Tue, 20 Jun 2006 11:54:51 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2006 05:48:23 -0000 Muine is a music player using new UI ideas. The goal is to create a player that eschews the iTunes model in favor of an easier and more comfortable interface. 0.8.5 ===== This release primarily updates Muine to use Gstreamer 0.10 (0.8 is also supported at configure time). Lots of bugfixes have also gone into this release. Details ======= - Gstreamer 0.10 support (configurable, 0.8 is still supported) [Iain, Peter Johanson] - Small shortcut/mnemonics tweaks [Sebastian Heinlein, Wouter Bolsterlee, Peter Johanson] - Fix bug with tray icon not re-appearing after a gnome-panel crash [Ed Catmur, Peter Johanson] - Handle large id3 tags properly [Jorn Baayen] - Properly raise the window when unhiding [Ryan Lortie] - Various build and bugfixes [Peter Johanson] New translations: - Punjabi [Amanpreet Singh Alam] - Thai [Isriya Paireepairit] Updated Translations: - Basque [Inaki Larranaga] - Czech [Miloslav Trmac] - Dutch [Wouter Bolsterlee] - Estonian [Priit Laes] - Finnish [Ilkka Tuohela] - German [Frank Arnold, Hendrik Richter] - Japanese [Takeshi AIHANA] - Spanish [Francisco Javier F. Serrador] - Swedish [Daniel Nylander] - Vietnamese [Clytie Siddall] Download ======== http://www.muine-player.org/wiki/Download Cheers, -pete From olav@bkor.dhs.org Wed Jun 21 16:12:51 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 436D73B0191; Wed, 21 Jun 2006 16:12:51 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02952-03; Wed, 21 Jun 2006 16:12:50 -0400 (EDT) Received: from amsfep20-int.chello.nl (amsfep17-int.chello.nl [213.46.243.15]) by menubar.gnome.org (Postfix) with ESMTP id 551023B0235; Wed, 21 Jun 2006 16:12:49 -0400 (EDT) Received: from bkor.dhs.org ([24.132.164.94]) by amsfep20-int.chello.nl (InterMail vM.6.01.04.04 201-2131-118-104-20050224) with ESMTP id <20060621201243.WMNK3918.amsfep20-int.chello.nl@bkor.dhs.org>; Wed, 21 Jun 2006 22:12:43 +0200 Received: by bkor.dhs.org (Postfix, from userid 501) id A0A54626877; Wed, 21 Jun 2006 22:12:42 +0200 (CEST) Date: Wed, 21 Jun 2006 22:12:42 +0200 From: Olav Vitters To: gnome-announce-list@gnome.org Subject: ANNOUNCE: gnome-blog 0.9.1 released Message-ID: <20060621201242.GI1266@bkor.dhs.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.5.11 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.26 tagged_above=-999 required=2 tests=[AWL=-0.150, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, FORGED_RCVD_HELO=0.135, TW_GT=0.077, TW_SX=0.077] X-Spam-Score: -2.26 X-Spam-Level: Cc: seth@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 20:12:51 -0000 gnome-blog 0.9.1 ================ Been a long time since the last version was released. With the approval of Seth Nickell, I am releasing a newer version. homepage: http://www.gnome.org/~seth/gnome-blog/ (I will probably soon move this to http://www.gnome.org/projects/gnome-blog/) download: http://download.gnome.org/sources/gnome-blog/0.9/ Features ======== * Clean interface doesn't get in the way of what you're writing * WYSIWYG styled text support * Entries can be written gradually over the course of a day, popping gnome blog open and closed as you have thoughts to jot down and then posting at the end of the day * Operates as a panel object/applet or a standalone application * Supports many different kinds of blogs * Spell checking * Drag and drop images into your blog entry (if your blog supports it) Supported Blogs =============== * Blogger.com / Blogspot.com * Advogato.org * Movable Type * WordPress * LiveJournal.com * Pyblosxom * Any other blog using bloggerAPI or MetaWeblog Fixes ===== * Make add link dialog stay near and above the blog window (Tommi Komulainen) * Do not crash when gtkspell is installed but lack a dictionary (Jan Alonzo) * Ensure window looks sane when resized (Olav Vitters) * Ensure blog applet window receives focus with newer metacity versions and make it stay on top (Olav Vitters) * Correctly position blog window beside the applet when using a vertical panel (Olav Vitters) * Make sure CTRL-B (bold), CTRL-I (italic) work when using the applet (Olav Vitters) * Fix blogs.gnome.org XML-RPC URL (Olav Vitters) Translations ============ * Mətin Əmirov (az) * Vladimir Petkov (bg) * Aleix Badia i Bosch (ca) * Miloslav Trmac (cs) * Hendrik Richter (de) * Adam Weinberger (en_CA) * David Lodge (en_GB) * Francisco Javier F. Serrador (es) * Priit Laes (et) * Ilkka Tuohela (fi) * Christophe Merlet (RedFox) (fr) * Pedro Silva (gl) * Robert Sedak (hr) * Gabor Kelemen (hu) * Francesco Gigli (it) * Takeshi AIHANA (ja) * Hasbullah Bin Pit (ms) * Kjartan Maraas (nb) * Jyotshna Shrestha (ne) * Taco Witte (nl) * Arkadiusz Lipiec (pl) * Afonso Celso Medina (pt_BR) * Duarte Loreto (pt) * Steve Murphy (rw) * Laurent Dhima (sq) * Danilo Šegan (sr@Latn) * Данило Шеган (sr) * Daniel Nylander (sv) * Maxim Dziumanenko (uk) * Clytie Siddall (vi) * storm (zh_CN) * Abel Cheung (zh_TW) -- Regards, Olav From mclasen@redhat.com Wed Jun 21 23:10:41 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AA4213B0172; Wed, 21 Jun 2006 23:10:41 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23030-07; Wed, 21 Jun 2006 23:10:39 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 63BA23B0008; Wed, 21 Jun 2006 23:10:39 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5M3AclX021506; Wed, 21 Jun 2006 23:10:38 -0400 Received: from lacrosse.corp.redhat.com (lacrosse.corp.redhat.com [172.16.52.154]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5M3AcnM019751; Wed, 21 Jun 2006 23:10:38 -0400 Received: from [172.16.83.158] (vpn83-158.boston.redhat.com [172.16.83.158]) by lacrosse.corp.redhat.com (8.12.11.20060308/8.11.6) with ESMTP id k5M3AciB004961; Wed, 21 Jun 2006 23:10:38 -0400 Subject: GTK+ 2.9.4 released From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain Organization: Red Hat Date: Wed, 21 Jun 2006 23:12:41 -0400 Message-Id: <1150945961.4457.2.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.7.3 (2.7.3-2) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.507 tagged_above=-999 required=2 tests=[AWL=0.017, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: -2.507 X-Spam-Level: X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 03:10:41 -0000 GTK+ 2.9.4 is now available for download at: http://ftp.gnome.org/pub/gnome/sources/gtk+/2.9/ gtk+-2.9.4.tar.bz2 md5sum: c06cf2cfa66485600d90789c9e58f27c gtk+-2.9.4.tar.gz md5sum: e3fefedc7f1a89b66c71c9967168a857 This is a development release leading up to GTK+ 2.10. Notes: * This is unstable development release. There are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GTK+ 2.8. If you have problems, you'll need to reinstall GTK+ 2.8. * GTK+ 2.10 will be source compatible with the GTK+ 2.8 series; the new API additions in GTK+ 2.9.0 are finalized by now. * The ABI version has been bumped from 2.4.0 to 2.10.0, since the filechooser backend interface has been changed. Third-party filechooser backends need to be ported to the new interface. Other third-party modules (input methods, image loaders, etc) just need to be reinstalled in the proper location for GTK+ to find them. * Remaining issues for GTK+ 2.10 can be found with following bugzilla query: http://bugzilla.gnome.org/buglist.cgi?product=gtk%2b&target_milestone=2.10+API+Freeze&target_milestone=2.10+Freeze&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED * Bugs should be reported to http://bugzilla.gnome.org. What is GTK+ ============ 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.4/gtk/gtk-building.html Common questions: http://developer.gnome.org/doc/API/2.4/gtk/gtk-question-index.html http://www.gtk.org/faq/ Overview of Changes from GTK+ 2.9.3 to 2.9.4 ============================================ * GtkPrintOperation: - UI improvements in the print dialog - Make printing work without a display connection - Replace "Print to PDF" by "Print to file" that can generate PDF or PostScript - Add a function to the low-level API to enumerate all printers * GtkNotebook tab DND has been improved * GtkProgressbar supports text in activity mode * GtkLabel allows to set the wrap mode * GtkStatusIcon supports transparency * Bugs fixed: 344850 Dragging a GtkTreeViewColumn segfaults when using certain GtkTreeViewColumnDropFunc 342458 Stock menu items without icons are broken in recent GTK+ releases. 335873 notebook DND + popup windows 337882 gtk_progress_bar_set_text() does nothing in activity mode 339456 unix print dialogue help button bug 339702 Make sure printing works without a display 341571 tabs too easily reordered 344074 New Feature: get printer list, and get default print 344743 gtk_targets_include_text() should initialize atoms 344838 Allow func to be NULL in gtk_tree_view_set_search_position_func 344891 GtkPrintOperationPreview signal defs correction 345008 Need updated cairo req 345093 print preview temp file issues 345107 Memory leak in gtk_entry_completion_finalize: User data not freed 345194 gdk_window_set_functions() docs need to be updated 345456 grid-lines property is wrongly registered and get/set. 314278 strings in gtk-update-icon-cache are not marked for translation 344707 size group with widgets in hidden container 344897 Entry completion model NULL handling should be documented 345038 gtk_print_job_set_status' status 345106 dialog button box spacings 345176 GtkIconView doc about drag and drop 345275 doc imporovements for gtk_window_move 345320 Two very similiar strings should be made equal 345321 Add meaning of "shortcut" as translator comment 320034 transparency gtkstatusicon 339592 Add print-to-postscript 344867 custom paper file could use keyfile * Updated translations (cs,de,es,fr,gl,gu,hi,ko,ta,th) A list of all bugs fixed in this release can be found at http://bugzilla.gnome.org/buglist.cgi?bug_id=344838,344743,344867,344891,345008,341571,345038,337882,345093,344707,339456,345107,345275,339702,344074,345320,345321,344897,314278,320034,344850,345194,345176,345106,335873,342458,339592,345456 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Christian Persch, John Finlay, Federico Mena Quintero, Michael Emmel, Marko Anastasov, Bastien Nocera, Carlos Garnacho, Yevgen Muntyan, Tommi Komulainen, Tim Janik, Christian Weiske, Behdad Esfahbod, Alexander Larsson, Felipe Heidrich, Hendrik Richter, Claudio Saavedra, Dan Winship, Callum McKenzie, John Palmieri, Murray Cumming, Kristian Rietveld June 21, 2006 Matthias Clasen From cass@skynet.be Wed Jun 21 10:17:16 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9D8BD3B0FB7 for ; Wed, 21 Jun 2006 10:17:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11755-08 for ; Wed, 21 Jun 2006 10:17:15 -0400 (EDT) Received: from dorado.vub.ac.be (mailhost.vub.ac.be [134.184.129.10]) by menubar.gnome.org (Postfix) with ESMTP id D3CD03B0F77 for ; Wed, 21 Jun 2006 10:17:14 -0400 (EDT) Received: from mach.vub.ac.be (maxi.vub.ac.be [134.184.129.8]) by dorado.vub.ac.be (Postfix) with ESMTP id 4B484D7 for ; Wed, 21 Jun 2006 16:17:02 +0200 (CEST) Received: by mach.vub.ac.be (Postfix, from userid 21099) id 274998D01; Wed, 21 Jun 2006 16:17:02 +0200 (CEST) Received: from cass-lpt.ulb.ac.be (f1-pc174.ulb.ac.be [164.15.24.174]) by mach.vub.ac.be (Postfix) with ESMTP id 6C1178D24 for ; Wed, 21 Jun 2006 16:17:01 +0200 (CEST) Subject: XChat-GNOME 0.12 From: Guillaume Desmottes To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=UTF-8 Date: Wed, 21 Jun 2006 16:16:46 +0200 Message-Id: <1150899407.18129.0.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.496 tagged_above=-999 required=2 tests=[AWL=0.026, BAYES_00=-2.599, TW_JH=0.077] X-Spam-Score: -2.496 X-Spam-Level: X-Mailman-Approved-At: Thu, 22 Jun 2006 09:00:41 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 14:17:16 -0000 XChat-GNOME 0.12 “All roads lead to Sean Connery” is now available. * What is it ? ============== XChat-GNOME is a new frontend to the popular X-Chat IRC client which is designed with the user interface foremost in mind. More informations can be found at: http://xchat-gnome.navi.cx/ * What's changed ? ================== - A new sheme for theme-based foreground and backgrond colors, with automatic palette optimization for mIRC color codes. - Remove redundant nicknames (with a gconf key to re-enable them) - Show a whois tooltip on users in the conversation panel - Display a tooltip with the description of plugins - You can now build XChat-GNOME HEAD using jhbuild (using gnome-2.16 modulesets) - A large number of bug fixes and smaller improvements - Updated translations * Contributors to this release ============================== David Trowbridge, Guillaume Desmottes, Christian Persch, Przemyslaw Grzegorczyk, Gathy Grégory, Isak Savo, Steve Frécinaux, Jeremy Nickurak, Dan Kuester, Brian Pepple * Where can I get it ? ====================== http://releases.navi.cx/xchat-gnome/xchat-gnome-0.12.tar.gz http://releases.navi.cx/xchat-gnome/xchat-gnome-0.12.tar.bz2 -- Guillaume Desmottes Jabber GPG 1024D/711E31B1 | 1B5A 1BA8 11AA F0F1 2169 E28A AC55 8671 711E 31B1 From murrayc@murrayc.com Tue Jun 20 13:04:27 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BEAFD3B05E3; Tue, 20 Jun 2006 13:04:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30785-01; Tue, 20 Jun 2006 13:04:23 -0400 (EDT) Received: from swarthymail-a4.dreamhost.com (sd-green-bigip-60.dreamhost.com [208.97.132.60]) by menubar.gnome.org (Postfix) with ESMTP id 7AB3D3B04F0; Tue, 20 Jun 2006 13:04:23 -0400 (EDT) Received: from noname (p5497DB9C.dip.t-dialin.net [84.151.219.156]) by swarthymail-a4.dreamhost.com (Postfix) with ESMTP id AF950129A91; Tue, 20 Jun 2006 10:03:26 -0700 (PDT) Subject: ANNOUNCE: gtkmm 2.9.5 From: Murray Cumming To: gnome-announce , gtkmm-list Content-Type: text/plain Date: Tue, 20 Jun 2006 19:03:22 +0200 Message-Id: <1150823002.6261.21.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.404 tagged_above=-999 required=2 tests=[AWL=0.041, BAYES_00=-2.599, TW_GT=0.077, TW_TK=0.077] X-Spam-Score: -2.404 X-Spam-Level: X-Mailman-Approved-At: Thu, 22 Jun 2006 09:02:35 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2006 17:04:28 -0000 *** gtkmm 2.9/2.10: gtkmm 2.9 wraps new API in GTK+ 2.9, and is API/ABI-compatibile with gtkmm 2.8, 2.6 and 2.4. It is a version of the gtkmm-2.4 API. This will become the API-stable gtkmm 2.10, wrapping GTK+ 2.10. gtkmm stays in-sync with GTK+ by following the official GNOME release schedule: http://www.gnome.org/start/unstable/ Bindings for the rest of the GNOME Platform are also available, and are also API-stable. http://www.gtkmm.org *** Changes gtkmm 2.9.5: Gtk: * Assistant: Added update_buttons_state(). * Button: Added get/set_image_position(). * Clipboard: Added request_rich_text(), wait_for_rich_text(), and wait_rich_text_is_available(). * Entry: Added get/set_inner_border(). * Notebook: Added set_group_id(), get_group_id(), get_tab_reorderable(), set_tab_reorderable(), get_tab_detachable(), set_tab_detachable(). * PrintContext: Added set_cairo_context(). * Printoperation: - run(): Added PrintOperationAction parameter. - Removed set_show_dialog(), set_pdf_target(), set_track_print_status(), run_async(). - Added set_export_filename(), set_track_print_status(), set_show_progress(), set_allow_async(), set_custom_tab_label(). * Fixed warnings (Elijah Newren, Jonathon Jongsma) Pango: * Context: Added get_matrix(). * Font: Added describe_with_absolute_size(), get_font_map(). * FontDescription: Added set_absolute_size(), get_size_is_absolute(). * Layout: Added get_font_description(), index_to_line_x(). * Renderer: Added get_matrix(). *** Download http://www.gtkmm.org/download.shtml You will need libsigc++ 2.0, available here: https://sourceforge.net/project/showfiles.php?group_id=1970 *** Development There is active discussion on the mailing list: http://www.gtkmm.org/mailinglist.shtml and in the #c++ channel on irc.gnome.org -- Murray Cumming murray@usa.net www.murrayc.com From murrayc@murrayc.com Thu Jun 22 17:21:32 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 53AA83B083F; Thu, 22 Jun 2006 17:21:32 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27489-07; Thu, 22 Jun 2006 17:21:31 -0400 (EDT) Received: from swarthymail-a3.dreamhost.com (sd-green-bigip-62.dreamhost.com [208.97.132.62]) by menubar.gnome.org (Postfix) with ESMTP id 713DB3B0823; Thu, 22 Jun 2006 17:21:26 -0400 (EDT) Received: from noname (p5497EA12.dip.t-dialin.net [84.151.234.18]) by swarthymail-a3.dreamhost.com (Postfix) with ESMTP id 13D217F03D; Thu, 22 Jun 2006 14:21:24 -0700 (PDT) Subject: ANNOUNCE: gtkmm 2.9.6 From: Murray Cumming To: gnome-announce , gtkmm-list Content-Type: text/plain Date: Thu, 22 Jun 2006 23:21:22 +0200 Message-Id: <1151011282.5804.37.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.4 tagged_above=-999 required=2 tests=[AWL=0.045, BAYES_00=-2.599, TW_GT=0.077, TW_TK=0.077] X-Spam-Score: -2.4 X-Spam-Level: X-Mailman-Approved-At: Thu, 22 Jun 2006 19:51:58 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 21:21:32 -0000 *** gtkmm 2.9/2.10: gtkmm 2.9 wraps new API in GTK+ 2.9, and is API/ABI-compatibile with gtkmm 2.8, 2.6 and 2.4. It is a version of the gtkmm-2.4 API. This will become the API-stable gtkmm 2.10, wrapping GTK+ 2.10. gtkmm stays in-sync with GTK+ by following the official GNOME release schedule: http://www.gnome.org/start/unstable/ Bindings for the rest of the GNOME Platform are also available, and are also API-stable. http://www.gtkmm.org *** Changes gtkmm 2.9.6: Gtk: * Label: Added get/set_line_wrap_mode() and property. * MenuShell: Added get/set_take_focus() and property. * MessageDialog: Added set_image() and property. * StatusIcon: Added get_geometry(). * TreeView: Added get/set_rubber_banding(), get/set_grid_lines(), get/set_enable_tree_lines(). Added properties for show-expanders, level-indentation, rubber-banding, enable-grid-lines, and enable-tree-lines. (Murray Cumming) * PrintJob: send_job(): No longer throws an exception. * PrintUnixDialog: Added add_custom_tab() overload that takes a ustring. * Printer: Added get_job_count(), and enumerate_printers(), and others. * Printsettings: - Put the standard settings in a member class so they can be used as Gtk::PrintSettings::Keys::SOMETHING. - Remove get/set_print_to_file(). * PrintOperation: Added a version of run() without the Window parameter. * PrintOperationPreview: New class. (Most printing stuff: Marko Anastasov) *** Download http://www.gtkmm.org/download.shtml You will need libsigc++ 2.0, available here: https://sourceforge.net/project/showfiles.php?group_id=1970 *** Development There is active discussion on the mailing list: http://www.gtkmm.org/mailinglist.shtml and in the #c++ channel on irc.gnome.org -- Murray Cumming murray@usa.net www.murrayc.com From bryce@bryceharrington.org Sat Jun 24 01:30:28 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 157CC3B0150 for ; Sat, 24 Jun 2006 01:30:28 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25007-03 for ; Sat, 24 Jun 2006 01:30:24 -0400 (EDT) Received: from dc2-web15.assortedinternet.com (dc2-web15.assortedinternet.com [66.36.233.162]) by menubar.gnome.org (Postfix) with ESMTP id 701A03B0132 for ; Sat, 24 Jun 2006 01:30:24 -0400 (EDT) Received: from c-24-20-224-228.hsd1.or.comcast.net ([24.20.224.228] helo=localhost) by dc2-web15.assortedinternet.com with esmtpa (Exim 4.52) id 1Fu0in-0003sK-Oi for gnome-announce-list@gnome.org; Sat, 24 Jun 2006 01:30:18 -0400 Date: Fri, 23 Jun 2006 22:28:53 -0700 From: Bryce Harrington To: gnome-announce-list@gnome.org Subject: Inkscape Announces 0.44 Release :: http://www.inkscape.org Message-ID: <20060624052853.GE23238@bryceharrington.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.11 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - dc2-web15.assortedinternet.com X-AntiAbuse: Original Domain - gnome.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - bryceharrington.org X-Source: X-Source-Args: X-Source-Dir: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.597 tagged_above=-999 required=2 tests=[AWL=0.002, BAYES_00=-2.599] X-Spam-Score: -2.597 X-Spam-Level: X-Mailman-Approved-At: Sat, 24 Jun 2006 06:24:44 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jun 2006 05:30:28 -0000 The Inkscape community today officially released the latest version of its vector graphic drawing software. Inkscape 0.44 adds many new features, is faster and more usable, better supports SVG, is translated into more languages (17 on last count), and adds a lot of polish and refinement. Major new features include Layers dialog, support for clipping and masking, improved PDF export with transparency, configurable keyboard shortcuts, innovative "node sculpting" capability in Node tool, and the Outline mode. Significant gains are achieved in performance, especially in screen rendering and Node tool. Noticeable user interface changes include docked color swatches, interactive style indicator in the statusbar, a redesigned preferences dialog, a text toolbar, and new icons. Our SVG compliance has also taken a step forward, with the added support for the tag and ICC color profiles for images. This release also includes hundreds of smaller features, usability enhancements and bug fixes. For several releases, a collection of extension effects was shipped with Inkscape, but the Effects menu to access them was turned off by default. With this release, it has become mature enough, with effects working out of the box on all platforms, so this menu is enabled. We'd like to thank Google for their sponsorship of five students to work, during the summer of 2006, on several Inkscape development efforts: SVG Filters, Inkboard protocol, PDF export with Cairo, and memory optimization. Download Linux, Windows, and Mac OS X packages: http://sourceforge.net/project/showfiles.php?group_id=93438 For many more details, see the complete Release Notes for 0.44: http://wiki.inkscape.org/wiki/index.php/Release_Notes Community submitted screenshots: http://www.inkscape.org/screenshots/ ===About Inkscape=== Inkscape is an open source drawing tool that uses the World Wide Web Consortium's ([[W3C]]) scalable vector graphics format (SVG). Some supported SVG features include basic shapes, paths, text, markers, clones, alpha blending, transforms, gradients, and grouping. In addition, Inkscape supports Creative Commons' metadata, node-editing, layers, complex path operations, text-on-path, text-in-shape, and SVG XML editing. It can also import EPS, PostScript, and most bitmap formats, and exports PNG, PS, PDF and various vector formats. Inkscape's main motivation is to provide the Open Source community with a fully [[W3C]] compliant XML, SVG, and CSS2 drawing tool. Additional work includes conversion of the codebase from C/Gtk to C++/Gtkmm, emphasizing a lightweight core with powerful features added through an extension mechanism, and maintaining a friendly, open, community-oriented development process. From rejon@freedesktop.org Sun Jun 25 10:52:07 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C309D3B009A for ; Sun, 25 Jun 2006 10:52:07 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18260-01 for ; Sun, 25 Jun 2006 10:52:06 -0400 (EDT) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.208.82]) by menubar.gnome.org (Postfix) with ESMTP id 4BFB03B008F for ; Sun, 25 Jun 2006 10:52:06 -0400 (EDT) Received: by gabe.freedesktop.org (Postfix, from userid 2695) id 5EDA79ED2A; Sun, 25 Jun 2006 07:51:01 -0700 (PDT) To: gnome-announce-list@gnome.org From: Jon Phillips Subject: Inkscape Announces 0.44 Release :: http://www.inkscape.org Content-Type: text/plain Message-Id: <20060625145101.5EDA79ED2A@gabe.freedesktop.org> Date: Sun, 25 Jun 2006 07:51:01 -0700 (PDT) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.599 tagged_above=-999 required=2 tests=[BAYES_00=-2.599] X-Spam-Score: -2.599 X-Spam-Level: X-Mailman-Approved-At: Mon, 26 Jun 2006 03:57:39 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Jun 2006 14:52:07 -0000 Inkscape Announces 0.44 Release :: http://www.inkscape.org The Inkscape community today officially released the latest version of its vector graphic drawing software. Inkscape 0.44 adds many new features, is faster and more usable, better supports SVG, is translated into more languages (17 on last count), and adds a lot of polish and refinement. Major new features include Layers dialog, support for clipping and masking, improved PDF export with transparency, configurable keyboard shortcuts, innovative "node sculpting" capability in Node tool, and the Outline mode. Significant gains are achieved in performance, especially in screen rendering and Node tool. Noticeable user interface changes include docked color swatches, interactive style indicator in the statusbar, a redesigned preferences dialog, a text toolbar, and new icons. Our SVG compliance has also taken a step forward, with the added support for the tag and ICC color profiles for images. This release also includes hundreds of smaller features, usability enhancements and bug fixes. For several releases, a collection of extension effects was shipped with Inkscape, but the Effects menu to access them was turned off by default. With this release, it has become mature enough, with effects working out of the box on all platforms, so this menu is enabled. The Inkscape developer community would like to thank Google for their sponsorship of five students to work, during the summer of 2006, on several Inkscape development efforts: SVG Filters, Inkboard protocol, PDF export with Cairo, and memory optimization. Download Linux, Windows, and Mac OS X packages: http://sourceforge.net/project/showfiles.php?group_id=93438 For many more details, see the complete Release Notes for 0.44: http://wiki.inkscape.org/wiki/index.php/Release_Notes Community submitted screenshots: http://www.inkscape.org/screenshots/ About Inkscape Inkscape is an open source drawing tool that uses the World Wide Web Consortium's ([[W3C]]) scalable vector graphics format (SVG). Some supported SVG features include basic shapes, paths, text, markers, clones, alpha blending, transforms, gradients, and grouping. In addition, Inkscape supports Creative Commons' metadata, node-editing, layers, complex path operations, text-on-path, text-in-shape, and SVG XML editing. It can also import EPS, PostScript, and most bitmap formats, and exports PNG, PS, PDF and various vector formats. Inkscape's main motivation is to provide the Open Source community with a fully [[W3C]] compliant XML, SVG, and CSS2 drawing tool. Additional work includes conversion of the codebase from C/Gtk to C++/Gtkmm, emphasizing a lightweight core with powerful features added through an extension mechanism, and maintaining a friendly, open, community-oriented development process. From phoenix@nova.es Wed Jun 28 17:32:54 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7BBC83B0100 for ; Wed, 28 Jun 2006 17:32:54 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02743-08 for ; Wed, 28 Jun 2006 17:32:52 -0400 (EDT) Received: from localhost.localdomain (171.Red-80-34-230.staticIP.rima-tde.net [80.34.230.171]) by menubar.gnome.org (Postfix) with ESMTP id BDEEC3B00A3 for ; Wed, 28 Jun 2006 17:32:50 -0400 (EDT) Received: by localhost.localdomain (Postfix, from userid 1000) id BC029821BA; Sun, 25 Jun 2006 15:37:41 +0200 (CEST) Subject: ANNOUNCE: Nautilus-Sendto 0.6 & 0.7 From: Roberto Majadas To: Gnome Announce Content-Type: multipart/alternative; boundary="=-jsBhLm2jjnt8W4Xg4Kr+" Date: Sun, 25 Jun 2006 15:37:40 +0200 Message-Id: <1151242661.7517.8.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.93 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, HTML_40_50=0.496, HTML_MESSAGE=0.001, RCVD_IN_XBL=3.897] X-Spam-Score: 1.93 X-Spam-Level: * X-Mailman-Approved-At: Thu, 29 Jun 2006 03:00:17 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Jun 2006 21:32:54 -0000 --=-jsBhLm2jjnt8W4Xg4Kr+ Content-Type: text/plain Content-Transfer-Encoding: 7bit NAUTILUS SEND-TO (0.6 & 0.7) * What it is ? ============== This application provide integration between nautilus , evolution , gaim and gnome-bluetooth ============ Version 0.7 ============ Nautilus Sendto * Quick revision. I don't include some files to POTFILES.in ============ Version 0.6 ============ Nautilus Sendto * Added support for gajim * Added support for sylpheed-claws * Added initial support for thunderbird. Thunderbird don't support attachment by command line atm. * Added initial support for Balsa. Balsa don't support attachment by command line atm. * Many bugfixes Special Thanks to : Bastien Nocera (He resolve many many bugs while i was busy in my work, Thanks guy !) Dimitur Kirov (He developed gajim support) Peter Enseleit (he developed balsa, sylpheed and thunderbird support) * Features ========== * Nautilus context menu component ("Send To...") . * A dialog for insert the email acount or IM account which you want to send the file/files . * Contact with evolution-data-server and get the email accounts . * Contact with gaim (nautilus gaim plugin) and get the IM acccounts * Send to bluetooth devices detected from gnome-bluetooth * You can send files packaged in varios formats --=-jsBhLm2jjnt8W4Xg4Kr+ Content-Type: text/html; charset=utf-8 NAUTILUS SEND-TO (0.6 & 0.7)

* What it is ?
==============

This application provide integration between nautilus , evolution ,
gaim and gnome-bluetooth


============
Version 0.7
============

Nautilus Sendto
        * Quick revision. I don't include some files to POTFILES.in

============
Version 0.6
============

Nautilus Sendto
        * Added support for gajim
        * Added support for sylpheed-claws
        * Added initial support for thunderbird. Thunderbird don't support attachment by command line atm.
        * Added initial support for Balsa. Balsa don't support attachment by command line atm.
        * Many bugfixes

        Special Thanks to :
                Bastien Nocera (He resolve many many bugs while i was busy in my work, Thanks guy !)
                Dimitur Kirov (He developed gajim support)
                Peter Enseleit (he developed balsa, sylpheed and thunderbird support)

* Features
==========
      * Nautilus context menu component ("Send To...") .
      * A dialog for insert the email acount or IM account which you
        want to send the file/files .
              * Contact with evolution-data-server and get the email
                accounts .
              * Contact with gaim (nautilus gaim plugin) and get the IM
                acccounts
	      * Send to bluetooth devices detected from gnome-bluetooth
              * You can send files packaged in varios formats

--=-jsBhLm2jjnt8W4Xg4Kr+-- From callum@spooky-possum.org Thu Jun 29 04:08:17 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 903F53B01CE; Thu, 29 Jun 2006 04:08:17 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28081-02; Thu, 29 Jun 2006 04:08:09 -0400 (EDT) Received: from genamics.blastula.net (dns1.blastula.net [64.92.214.155]) by menubar.gnome.org (Postfix) with ESMTP id B42D13B0423; Thu, 29 Jun 2006 04:07:56 -0400 (EDT) Received: from [60.234.108.157] (helo=[60.234.108.157]) by genamics.blastula.net with esmtpa (Exim 4.52) id 1FvrZ5-0003f6-67; Thu, 29 Jun 2006 20:07:56 +1200 Subject: gnome-games 2.14.2.1 From: Callum McKenzie To: games-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Date: Thu, 29 Jun 2006 20:07:45 +1200 Message-Id: <1151568466.22419.21.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Antivirus-Scanner: Clean mail though you should still use an Antivirus X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - genamics.blastula.net X-AntiAbuse: Original Domain - gnome.org X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [47 12] X-AntiAbuse: Sender Address Domain - spooky-possum.org X-Source: X-Source-Args: X-Source-Dir: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.543 tagged_above=-999 required=2 tests=[AWL=0.056, BAYES_00=-2.599] X-Spam-Score: -2.543 X-Spam-Level: X-Mailman-Approved-At: Thu, 29 Jun 2006 07:32:02 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: callum@spooky-possum.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 08:08:18 -0000 gnome-games 2.14.2.1 ==================== This release is primarily to fix a crash that occurs in Aisleriot when you change games. An upgrade is strongly recommended. It also fixes a high-score file corruption bug when entering short names for the high scores table. As a bonus there are also translation updates. Get it from: http://download.gnome.org/sources/gnome-games/2.14/ - Callum From cjb@mrao.cam.ac.uk Fri Jun 30 10:57:08 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3683C3B013B; Fri, 30 Jun 2006 10:57:08 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26976-04; Fri, 30 Jun 2006 10:57:07 -0400 (EDT) Received: from mraos.ra.phy.cam.ac.uk (mraos.ra.phy.cam.ac.uk [131.111.48.8]) by menubar.gnome.org (Postfix) with ESMTP id D4BBD3B013F; Fri, 30 Jun 2006 10:57:06 -0400 (EDT) Received: from skye.ra.phy.cam.ac.uk ([131.111.48.158] ident=mail) by mraos.ra.phy.cam.ac.uk with esmtp (Exim 4.43) id 1FwKQb-0001M9-M7; Fri, 30 Jun 2006 15:57:05 +0100 Received: from islay.ra.phy.cam.ac.uk ([131.111.48.119]) by skye.ra.phy.cam.ac.uk with esmtp (Exim 3.36 #1) id 1FwKQb-0006Vd-00; Fri, 30 Jun 2006 15:57:05 +0100 To: foundation-announce@gnome.org Subject: Women's Summer Outreach Program 2006 Update. From: Chris Ball Date: Fri, 30 Jun 2006 15:57:04 +0100 Message-ID: User-Agent: Gnus/5.110002 (No Gnus v0.2) XEmacs/21.4 (Social Property, linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.563 tagged_above=-999 required=2 tests=[AWL=0.036, BAYES_00=-2.599] X-Spam-Score: -2.563 X-Spam-Level: X-Mailman-Approved-At: Fri, 30 Jun 2006 18:08:19 -0400 Cc: gnome-announce-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jun 2006 14:57:08 -0000 Dear all, We're thrilled to announce that Google is donating funds to double the number of available projects for the WSOP[1] from three to six, due to the project getting a huge response from interested women. We'll be announcing the six accepted projects tomorrow. Many thanks to Google! - Chris. [1]: http://www.gnome.org/projects/wsop/ -- Chris Ball From mclasen@redhat.com Mon Jun 5 14:15:03 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 744343B09D3; Mon, 5 Jun 2006 14:15:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20278-06; Mon, 5 Jun 2006 14:15:01 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id D637E3B0988; Mon, 5 Jun 2006 14:15:00 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k55IF08I024331; Mon, 5 Jun 2006 14:15:00 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [172.16.76.12]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k55IF0I9021827; Mon, 5 Jun 2006 14:15:00 -0400 Received: from golem.boston.redhat.com (golem.boston.redhat.com [172.16.80.24]) by mail.boston.redhat.com (8.12.8/8.12.8) with ESMTP id k55IExAV012588; Mon, 5 Jun 2006 14:14:59 -0400 From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain; charset=UTF-8 Date: Mon, 05 Jun 2006 14:14:59 -0400 Message-Id: <1149531299.4071.35.camel@golem.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.1 (2.7.1-1) Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.543 tagged_above=-999 required=2 tests=[AWL=0.058, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.543 X-Spam-Level: Cc: Subject: GLib 2.11.2 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jun 2006 18:15:03 -0000 GLib 2.11.2 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.11/ http://ftp.gnome.org/pub/GNOME/sources/glib/2.11/ glib-2.11.2.tar.bz2 md5sum: 18464b85bfd589f83897623c637a1553 glib-2.11.2.tar.gz md5sum: f728cd295ac98d4b95d850fe91c05fd5 This is a development release leading up to GLib 2.12. Notes: * This is unstable development release. While it has had a bit of testing, there are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GLib 2.10. If you have problems, you'll need to reinstall GLib 2.10. * GLib 2.12 will be source and binary compatible with the GLib 2.10.x series (for some caveats, see the README). At this point, the API additions in the 2.11.x series are almost finished. * Bugs should be reported to http://bugzilla.gnome.org. About GLib ========== GLib is the low-level core library that forms the basis for projects such as GTK+ and GNOME. It provides data structure handling for C, portability wrappers, and interfaces for such runtime functionality as an event loop, threads, dynamic loading, and an object system. More information about GLib is available at: http://www.gtk.org/ An installation guide for the GTK+ libraries, including GLib, can be found at: http://developer.gnome.org/doc/API/2.0/gtk/gtk-building.html Overview of Changes from GLib 2.11.1 to GLib 2.11.2 =================================================== * Add g_ascii_stroll to parse signed 64bit integers * GMarkup: add a flag to treat CDATA as text * GHashTable: add functions to remove all entries * GMainLoop: add functions to find the currently running source, and determine if it is destroyed * Bug fixes: 342563 g_atomic_thread_init() needs to be called before other _g_*_thread_init() functions 343548 Potential use after free in callers of g_string_free() 168538 Wish: Clearing contents of GHashTables 321886 GTK+ cannot be reliably used in multi-threaded applications 341826 goption.c: 'strtoll' is C99's function 343899 g_ascii_formatd dosn't work as expected for all format strings 317793 Make GEnumValue strings const 337129 Compile warnings in G_IMPLEMENT_INTERFACE 303622 What is G_TYPE_CHAR? * Updated translations (bg,dz,eu,gl,ja,nl,th,vi) A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=341826,342563,343548,168538,168538,321886,343899,321886,317793,337129,303622 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Peter Kjellerstedt, Kazuki Iwamoto Leonard den Ottolander, Chris Wilson, Behdad Esfahbod, Matt Barnes, Øystein Johansen, Tim Janik Morten Welinder Matthias Clasen June 5, 2006 From mclasen@redhat.com Mon Jun 5 16:21:34 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 09B113B0543; Mon, 5 Jun 2006 16:21:34 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28553-01; Mon, 5 Jun 2006 16:21:32 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 0F8903B0012; Mon, 5 Jun 2006 16:21:31 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k55KLVn7006951; Mon, 5 Jun 2006 16:21:31 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [172.16.76.12]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k55KLUBq020469; Mon, 5 Jun 2006 16:21:31 -0400 Received: from golem.boston.redhat.com (golem.boston.redhat.com [172.16.80.24]) by mail.boston.redhat.com (8.12.8/8.12.8) with ESMTP id k55KLUAV025318; Mon, 5 Jun 2006 16:21:30 -0400 From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain Date: Mon, 05 Jun 2006 16:21:30 -0400 Message-Id: <1149538890.4071.40.camel@golem.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.1 (2.7.1-1) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.429 tagged_above=-999 required=2 tests=[AWL=-0.059, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_GD=0.077, TW_GT=0.077, TW_XI=0.077] X-Spam-Score: -2.429 X-Spam-Level: Cc: Subject: GTK+ 2.9.2 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jun 2006 20:21:34 -0000 GTK+ 2.9.2 is now available for download at: http://ftp.gnome.org/pub/gnome/sources/gtk+/2.9/ gtk+-2.9.2.tar.gz md5sum: c63e7d0cf7c4e983206c3088a0fb8862 gtk+-2.9.2.tar.bz2 md5sum: 17629437af44fce03485101371c8f041 This is a development release leading up to GTK+ 2.10. Notes: * This is unstable development release. There are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GTK+ 2.8. If you have problems, you'll need to reinstall GTK+ 2.8. * GTK+ 2.10 will be source compatible with the GTK+ 2.8 series; the new API additions in GTK+ 2.9.0 are not yet completely finalized, so there are likely incompatibilies between this release and the final 2.10 release. * The ABI version has been bumped from 2.4.0 to 2.10.0, since the filechooser backend interface has been changed. Third-party filechooser backends need to be ported to the new interface. Other third-party modules (input methods, image loaders, etc) just need to be reinstalled in the proper location for GTK+ to find them. * Remaining issues for GTK+ 2.10 can be found with following bugzilla query: http://bugzilla.gnome.org/buglist.cgi?product=gtk%2b&target_milestone=2.10+API+Freeze&target_milestone=2.10+Freeze&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED * Bugs should be reported to http://bugzilla.gnome.org. What is GTK+ ============ 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.4/gtk/gtk-building.html Common questions: http://developer.gnome.org/doc/API/2.4/gtk/gtk-question-index.html http://www.gtk.org/faq/ Overview of Changes from GTK+ 2.9.1 to 2.9.2 ============================================ * GtkPrintOperation - Support asynchronous pagination with the ::paginate signal - Add gtk_print_operation_cancel - Support application-specific widgets - Allow disabling features based on application capabilities - Optionally show progress - Change some function names in GtkPrintContext to be longer and better - Support preview, the default implementation spawns evince, but the api allows for an internal preview implementation * GtkCellView - Add a model property * GtkStatusIcon - Allow to obtain screen geometry * GtkTreeView - Many bug fixes, in particular for RTL handling - Separate sensitive and selectable properties of rows - Optionally allow rubberband selection * GtkButton - Add image-spacing style property - Add image-position property * GtkToolButton - Add icon-spacing style property * Make GTK+ work as an untrused X client * Bugs fixed: 343838 gtkprintoperationpreview.h guards 305530 Crashes while creating source code w/GtkFontSelection 341327 Memory corruption inside glib 341734 cursor blocked to dnd mode after using shift and dnd on a GtkCalendar 343453 G_DEFINE_TYPE messes up internal typenames of GdkWindow and GdkPixmap 136571 Problems running as untrusted client 168105 the right edge tab does not appear when switching tab 172535 Add support for UI builders in gtk+ 302556 GtkTreeView widget signals are badly documented 324480 Selecting first item with keyboard is difficult 340428 small cleanup 340444 don't run the custom page size dialogue 340839 Critical warnings in GtkTreeModelFilter 341898 gtk_tree_view_insert_column_with_attributes doesn't work with fixed_height_mode 342003 DnD: Conditional jump or move depends on uninitialised value 342072 Wrong drop location in GtkEntry 342096 GtkImage animation CRITICALS on switching themes 342513 widget class style property with type module 342529 gdk should set resolution on PangoCairoFontmap, not PangoCairoContext 342535 Add documentation for new GtkWidget style properties (including Since tags) 342543 can't compile gtk+ on opensolaris using sun cc 342569 Typo in decl of gdk_color_parse 342752 Need a way to specify custom tab label for custom page in Print dialog 342754 print-editor: font button dialog doesn't get focus if main window has a window group 342781 GtkPrintUnixDialog: Collate should be insensitive unless Copies is > 1 342783 GtkPrintUnixDialog: Range textinput area should be insensitive unless range radiobutton is selected 342894 Use after free inside gtk_text_view_set_buffer 342930 GtkButton should offer a way to position the image relative to the text 343088 Some typos in the PO file 343425 "grab-notify"-signal is not correctly propagated for internal children 343438 gtk_color_button_set_color() doesn't emit "color-set" signal 343475 page setup unix dialog confusion 343625 allow to get only some info from gtk_status_icon_get_geometry 343677 GtkWindow chains key-release to key-press 320431 Text too close when using East/West in a GtkToolButton 321523 GtkTreeView's test_expand_row signal emitting impractical on row expand all 342007 Warning in gtk_paned_compute_position 343233 gdk_rectangle_intersect doc 333284 expander animation not working in RTL mode 343444 change color of gtk-demo source-buffer comment color from red to DodgerBlue 343630 Small inconsistence in migration documentation 80127 Rubberbanding for GtkTreeView 341450 status icon + libnotify 341679 Allow absolute filenames in the options entries * Updated translations (bg,cy,de,el,es,et,eu,gl,gu,it,ja, nb,nl,pt_BR,th,vi) Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Alexander Larsson, Behdad Esfahbod, Benjamin Berg, Caolan McNamara, Carlos Garnacho Parro, Carol Spears, Christian Persch, Chris Wilson, Claudio Saavedra, Clytie Siddall, Damon Chaplin, Daniel Lindenaar, Dan Winship, Diana Fong, Ed Catmur, Emmanuele Bassi, Havoc Pennington, Henrique Romano, Hiroyuki Ikezoe, James Moger, Johan Dahlin, Kouhei Sutou, Kristian Rietveld, Markku Vire, Mart Raudsepp, Masatake Yamato, Michael Emmel, Michael Natterer, Murray Cumming, Olexiy Avramchenko, Paolo Borelli, Patrick Monnerat, Richard Hult, Sampo Savolainen, Sebastien Bacher, Srirama Sharma, Stefan Kost, Tim Janik, Tommi Komulainen, Tor Lillqvist, Yevgen Muntyan A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=342072,342096,342003,341734,305530,168105,342007,342529,342535,342543,342569,341679,342752,172535,342513,342781,342783,342754,136571,341450,333284,340428,340839,341898,321523,343088,343233,324480,342894,320431,342930,343453,343425,343438,343444,340444,343475,302556,343677,343625,80127,343838,341327,168105,343630 Matthias Clasen June 5, 2006 From thomas@apestaart.org Tue Jun 6 06:04:09 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id ABA3E3B0750; Tue, 6 Jun 2006 06:04:09 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04145-08; Tue, 6 Jun 2006 06:04:08 -0400 (EDT) Received: from mx1.es6.egwn.net (server02.es6.egwn.net [195.10.6.12]) by menubar.gnome.org (Postfix) with ESMTP id 6BEAF3B014E; Tue, 6 Jun 2006 06:04:08 -0400 (EDT) Received: from mx1.fr4.egwn.net (server07.fr4.egwn.net [62.39.85.77]) by mx1.es6.egwn.net (Postfix) with ESMTP id D5F0C4F82E2; Tue, 6 Jun 2006 12:04:05 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by mx1.fr4.egwn.net (spiffy mail daemon) with ESMTP id 0D94183BE7; Tue, 6 Jun 2006 12:04:00 +0200 (CEST) Received: from mx1.fr4.egwn.net ([127.0.0.1]) by localhost (server07.fr4.egwn.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16922-12; Tue, 6 Jun 2006 12:03:14 +0200 (CEST) Received: from thread.fluendo.lan (core.fluendo.com [195.10.6.237]) by mx1.fr4.egwn.net (spiffy mail daemon) with ESMTP id C559583BE4; Tue, 6 Jun 2006 12:03:14 +0200 (CEST) Received: from thomas.fluendo.lan (thomas.fluendo.lan [192.168.1.10]) by thread.fluendo.lan (Postfix) with ESMTP id 6EF06FFDB; Tue, 6 Jun 2006 12:03:18 +0200 (CEST) From: Thomas Vander Stichele To: gnome-hackers@gnome.org In-Reply-To: <1148971293.12902.2.camel@red> References: <1139648664.6627.40.camel@localhost> <1148971293.12902.2.camel@red> Content-Type: text/plain Date: Tue, 06 Jun 2006 12:03:19 +0200 Message-Id: <1149588200.24971.3.camel@otto.amantes> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 (2.6.1-1.fc5.2) Content-Transfer-Encoding: 7bit X-Scanned: By amavis at egwn.net X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.626 tagged_above=-999 required=2 tests=[AWL=-0.070, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, RCVD_IN_SBL=3.16] X-Spam-Score: 0.626 X-Spam-Level: Cc: gnome-announce-list@gnome.org, devel-announce-list@gnome.org Subject: Re: Subversion migration schedule (new cut-off Fri 16 June) X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 10:04:10 -0000 On Tue, 2006-05-30 at 13:41 +0700, Ross Golder wrote: > Hi, > > As the various show-stoppers that prevented our previously scheduled > migration from going ahead have now been resolved, I am proposing that > the new migration go ahead at 23:59UTC on Friday 16th June 2006. Please > let us know a.s.a.p if that will be inconvenient for anyone. It may be inconvenient for any hack sessions done at GUADEC if it leaves people with too little time to convert their laptop checkouts properly, or if anything goes wrong with the conversion. I don't know if that's important enough of a reason, but it'd be too bad if we'd be stifling the surge of activity at GUADEC. Thomas From carlosg@gnome.org Tue Jun 6 10:05:02 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1A0BD3B0132; Tue, 6 Jun 2006 10:05:02 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26815-01; Tue, 6 Jun 2006 10:05:01 -0400 (EDT) Received: from localhost.localdomain (133.Red-88-0-26.dynamicIP.rima-tde.net [88.0.26.133]) by menubar.gnome.org (Postfix) with ESMTP id CB9F23B0107; Tue, 6 Jun 2006 10:05:00 -0400 (EDT) Received: by localhost.localdomain (Postfix, from userid 1000) id 7F37E13F73; Tue, 6 Jun 2006 16:04:58 +0200 (CEST) From: Carlos Garnacho To: system-tools-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Tue, 06 Jun 2006 16:04:57 +0200 Message-Id: <1149602697.21203.7.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.528 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, RCVD_IN_NJABL_DUL=1.946, RCVD_IN_SORBS_DUL=2.046] X-Spam-Score: 1.528 X-Spam-Level: * X-Mailman-Approved-At: Tue, 06 Jun 2006 10:20:33 -0400 Cc: Subject: System Tools Backends 1.9.0 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 14:05:02 -0000 The System Tools Backends version 1.9.0 "Pluto tan" have been released. This is the first release towards 2.x series, which will feature DBus interfaces to access data, signals to notify asynchronously about modifications in the configuration and a cleaner codebase. If you're interested in the 1.4.x series, checkout the stb-1-4 CVS branch. The System Tools Backends are a set of cross-platform modules for Linux, FreeBSD and other Unix systems. The backends provide an common DBus interface to all distros for modifying or reading the system configuration. Right now the System Tools Backends fully support various distros/OS such as: Redhat, Mandrake, SuSE, Fedora, Debian (and derivations like Ubuntu, Linex, Guadalinex...), Gentoo, Slackware, FreeBSD, OpenNA, PLD, Vine and Specifix. Downloading =========== You can get it from : http://system-tools-backends.freedesktop.org/downloads/1.9/ From carlosg@gnome.org Tue Jun 6 10:05:22 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B7A6E3B014C; Tue, 6 Jun 2006 10:05:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26770-09; Tue, 6 Jun 2006 10:05:22 -0400 (EDT) Received: from localhost.localdomain (133.Red-88-0-26.dynamicIP.rima-tde.net [88.0.26.133]) by menubar.gnome.org (Postfix) with ESMTP id 7A00B3B012A; Tue, 6 Jun 2006 10:05:21 -0400 (EDT) Received: by localhost.localdomain (Postfix, from userid 1000) id 0618413F73; Tue, 6 Jun 2006 16:05:20 +0200 (CEST) From: Carlos Garnacho To: system-tools-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Tue, 06 Jun 2006 16:05:19 +0200 Message-Id: <1149602719.21203.9.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.528 tagged_above=-999 required=2 tests=[AWL=-0.000, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, RCVD_IN_NJABL_DUL=1.946, RCVD_IN_SORBS_DUL=2.046] X-Spam-Score: 1.528 X-Spam-Level: * X-Mailman-Approved-At: Tue, 06 Jun 2006 10:20:34 -0400 Cc: Subject: Liboobs 0.1.0 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 14:05:22 -0000 Liboobs 0.1.0, 2006-06-06 ----------------------------------------------- Liboobs version 0.1.0 "Shattered ataraxia" has been released. Liboobs is a lightweight library that provides a GObject based interface to system-tools-backends. It's completely abstracted of the communication and authentication details, making it easy for applications to integrate with the system details. Downloading =========== You can get it from : ftp://ftp.gnome.org/pub/GNOME/sources/liboobs/0.1/ From carlosg@gnome.org Tue Jun 6 10:05:35 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AB0C03B012A; Tue, 6 Jun 2006 10:05:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26769-07; Tue, 6 Jun 2006 10:05:34 -0400 (EDT) Received: from localhost.localdomain (133.Red-88-0-26.dynamicIP.rima-tde.net [88.0.26.133]) by menubar.gnome.org (Postfix) with ESMTP id D49943B0179; Tue, 6 Jun 2006 10:05:33 -0400 (EDT) Received: by localhost.localdomain (Postfix, from userid 1000) id E163B13F73; Tue, 6 Jun 2006 16:05:31 +0200 (CEST) From: Carlos Garnacho To: system-tools-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Date: Tue, 06 Jun 2006 16:05:31 +0200 Message-Id: <1149602731.21203.11.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.528 tagged_above=-999 required=2 tests=[AWL=-0.000, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, RCVD_IN_NJABL_DUL=1.946, RCVD_IN_SORBS_DUL=2.046] X-Spam-Score: 1.528 X-Spam-Level: * X-Mailman-Approved-At: Tue, 06 Jun 2006 10:20:34 -0400 Cc: Subject: GNOME System Tools 2.15.0 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 14:05:35 -0000 The GNOME System Tools version 2.15.0 "Uncanny routine" have been released. The GNOME System Tools are a set of cross-platform configuration utilities for Linux and other Unix systems. The frontends knows nothing about the underlying system and provide the same user interface across the different types of systems. Internally they use the Liboobs library. Changes since last release =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D Common =3D=3D=3D=3D=3D=3D - use intltool 0.35, move ALL_LINGUAS to po/LINGUAS (Przemys=C5=82aw Grzegorczyk) - Make g-s-t work fine with --as-needed (Mike Auty) All tools =3D=3D=3D=3D=3D=3D=3D=3D=3D - Use liboobs. The XML interface is deprecated (Garnacho) - Adopt a more instant apply policy (Garnacho) - UI Changes (Garnacho) - Use named icons in menus and window icon for themeability (Sebastien Bacher, Garnacho) - Set translation domain for popups (Sebastien Bacher) Users =3D=3D=3D=3D=3D - Use adduser/addgroup if it's present (Garnacho) Network =3D=3D=3D=3D=3D=3D=3D - Use DHCP as the default (Garnacho) Services =3D=3D=3D=3D=3D=3D=3D=3D - Add advanced runlevels/priorities editor (Garnacho) Shares =3D=3D=3D=3D=3D=3D - Rework defaults for new shared folders (Garnacho) Time =3D=3D=3D=3D - Update some NTP servers (Gary Coady, Jun Kobayashi) Translations =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D - dz (Pema Geyleg) - es (Francisco Javier F. Serrador) - et (Ivar Smolin) - fi (Ilkka Tuohela) - gl (Ignacio Casal Quinteiro) - gu (Ankit Patel) - it (Francesco Marletta) - ka (Vladimer Sichinava) - nb (Kjartan Maraas) - ru (Nickolay V. Shmyrev) - th (Theppitak Karoonboonyanan) - tr (Deniz Kocak) Downloading =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D You can get it from : ftp://ftp.gnome.org/pub/GNOME/sources/gnome-system-tools/2.15/ From kalle.vahlman@gmail.com Wed Jun 7 13:52:15 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6E4E43B01A4 for ; Wed, 7 Jun 2006 13:52:15 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02283-05 for ; Wed, 7 Jun 2006 13:52:14 -0400 (EDT) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.168]) by menubar.gnome.org (Postfix) with ESMTP id 965853B0115 for ; Wed, 7 Jun 2006 13:52:13 -0400 (EDT) Received: by ug-out-1314.google.com with SMTP id u2so434421uge for ; Wed, 07 Jun 2006 10:52:12 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=iebILRnovVdTxqGwouC/tR/+4MtaielhlX8Ua0W3DfGDpIfDH3f9KvKP70TzbcVubjtjL/zWOS7/A2VM/5vvfCOtbjHJsooRdCtWuC03vTCdPlQ6u7BZgs1lUvDhzlgKMUpdMeg2eI3oWqrM64fhyC+c+LkzIbKwCkxiTwVCgEI= Received: by 10.67.101.10 with SMTP id d10mr759171ugm; Wed, 07 Jun 2006 10:40:55 -0700 (PDT) Received: by 10.67.16.10 with HTTP; Wed, 7 Jun 2006 10:40:55 -0700 (PDT) Message-ID: <177e83dd0606071040h35f807a8o205c18c2a68ee184@mail.gmail.com> Date: Wed, 7 Jun 2006 20:40:55 +0300 From: "Kalle Vahlman" To: gnome-announce-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.432 tagged_above=-999 required=2 tests=[AWL=-0.390, BAYES_00=-2.599, RCVD_IN_BL_SPAMCOP_NET=1.558, SPF_PASS=-0.001] X-Spam-Score: -1.432 X-Spam-Level: X-Mailman-Approved-At: Wed, 07 Jun 2006 14:03:53 -0400 Subject: [Announce] The Scw library version 0.4.4 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: zuh@iki.fi List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 17:52:15 -0000 I'm happy to announce a new release of Scw, the chat-oriented widget set! (I have a broken memory chip, didn't remember to send announcements for the releases between 0.3.0 and 0.4.4...) What's new? ========= The release 0.4.4 includes the following changes (from 0.3.0): * Bugfixes: - Draw much less (but still enough ;) - Fix memory leaks * API changes: - scw_view_set_column_foldable(): Add a boolean argument to control the foldability (previously you couldn't undo setting foldability) - New signal: "buffer-request" - New method: scw_view_scroll_to_row(): Scrolls the view to given row (a GtkTreePath) * Gtk-docs, at last! (and possibly more, but haven't managed to keep track of all the individual fixes) What is it? ======= Scw is a library that includes widgets designed for chat programs. Currently this means (but will be extended with time): * ScwView, a view that has: - Activatable text (urls, user names, etc) - Embedded icons - Pango markup - Wrapping - GtkTreeModel implementations as data storage - Different interaction modes (select, pan, smart pan) * ScwEntry, an derivate of GtkEntry which adds: - Simple input history Python and Ruby bindings are available, Java-Gtk bindings are (still) planned (but not on the immediate todo list). Any bindings will be welcomed. As a bonus feature, the widgets are guaranteed to compile and work on the Maemo[1] platform (used in the Nokia 770[2] that everybody is so exited about). More detailed description, as well as API documentation is found on the home page of Scw. Applications that use Scw ================== * Rirc (an irssi2 client, not exactly sure about status) * Silky (is being ported to it in the REWRITE branch, http://silky.sourceforge.net/ * Telepathy people have been doing a proto client using Scw (http://telepathy.freedesktop.org) * Your app here possibly? Let me know! Where to get it? ============ Homepage: http://iki.fi/zuh/scw/ Version 0.4.4: http://iki.fi/zuh/scw/scw-0.4.4.tar.gz Python bindings http://iki.fi/zuh/scw/python-scw-0.4.0.tar.gz Ruby bindings http://iki.fi/zuh/scw/ruby-scw-0.4.0.tar.gz Communication options ================ As I haven't yet set up mailing lists or bugzilla or anything really, bug reports and other stuff should be sent straight to me at zuh@iki.fi. -- Kalle Vahlman, zuh@iki.fi Powered by http://movial.fi Interesting stuff at http://syslog.movial.fi From Brian.Cameron@Sun.COM Wed Jun 7 18:25:45 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D74D13B04F0; Wed, 7 Jun 2006 18:24:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19021-09; Wed, 7 Jun 2006 18:24:40 -0400 (EDT) Received: from brmea-mail-1.sun.com (brmea-mail-1.Sun.COM [192.18.98.31]) by menubar.gnome.org (Postfix) with ESMTP id 648333B0E7D; Wed, 7 Jun 2006 18:24:21 -0400 (EDT) Received: from fe-amer-04.sun.com ([192.18.108.178]) by brmea-mail-1.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k57MOKiX019647; Wed, 7 Jun 2006 16:24:20 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0I00A01GLFT100@mail-amer.sun.com> (original mail from Brian.Cameron@Sun.COM); Wed, 07 Jun 2006 16:24:20 -0600 (MDT) Received: from [192.9.61.158] by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0I00M6DGWJIGM4@mail-amer.sun.com>; Wed, 07 Jun 2006 16:24:20 -0600 (MDT) Date: Wed, 07 Jun 2006 17:24:20 -0500 From: Brian Cameron Sender: Brian.Cameron@Sun.COM To: gnome-announce-list@gnome.org, gdm-list@gnome.org Message-id: <44875214.1030303@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5.0.2 (X11/20060515) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.446 tagged_above=-999 required=2 tests=[AWL=-0.002, BAYES_00=-2.599, TW_GD=0.077, TW_PM=0.077, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.446 X-Spam-Level: Cc: Subject: GDM2 2.8.0.8 (stable), the "SecurityFix" Release] X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 22:25:46 -0000 AOOH-GAH -------- (If you have no clue what gdm is, skip a few paragraphs down first) The 2.8.0.8 release is a stable release of GDM (note GDM 2.8.0.8 corresponds with gnome-2-12 branch) with the following new features. Note this contains an important security fix, so users and distros should update immediately. - Correction for serious security issue where the user can enter the GDM configuration GUI with a user password when the Face Browser is enabled. Refer to bugzilla.gnome.org bug #343476 (Brian Cameron) This issue impacts all versions of GDM 2.8.0.0-2.8.0.7, 2.14.0-2.14.7, and 2.15.0-2.15.3. This issue was reported to vendor-sec one week ago and has ID #CVE-2006-2452. - Translation updates (Stanislav Brabec, Josep Puigdemont i Casamaj\303\263, Abel Cheung, Priit Laes, Christophe Merlet, Clytie Siddall, \303\205smund Skj\303\246veland, Tommi Vainikainen) Note: GDM2 was originally written by Martin K. Petersen . Much work has been done on GDM2 by George Lebl, and Brian Cameron currently shares maintainership duties with the Queen of England. Note2: If installing from the tarball do note that make install overwrites most of the setup files, all except gdm.conf. It will however save backups with the .orig extension first. #ifndef GDM_DISABLE_DEPRECATED Note3: Note3 has been depracated ... #endif /* GDM_DISABLE_DEPRECATED */ Downloading: ============ Online Documentation: http://www.gnome.org/projects/gdm/ http://ftp.gnome.org/pub/GNOME/sources/gdm/2.15/ No RPM this time around BTW. Have fun. A spec file is included though, so you can try: rpmbuild -ta gdm-whatever.tar.gz Have fun, Brian From Brian.Cameron@Sun.COM Wed Jun 7 18:27:17 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7C4C83B0C49; Wed, 7 Jun 2006 18:27:17 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19552-05; Wed, 7 Jun 2006 18:27:15 -0400 (EDT) Received: from brmea-mail-3.sun.com (brmea-mail-3.Sun.COM [192.18.98.34]) by menubar.gnome.org (Postfix) with ESMTP id CCF8D3B0E66; Wed, 7 Jun 2006 18:27:14 -0400 (EDT) Received: from fe-amer-02.sun.com ([192.18.108.176]) by brmea-mail-3.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k57MRDvQ016057; Wed, 7 Jun 2006 16:27:14 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0I00401GJDHP00@mail-amer.sun.com> (original mail from Brian.Cameron@Sun.COM); Wed, 07 Jun 2006 16:27:13 -0600 (MDT) Received: from [192.9.61.158] by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0I00I5KH1CUVP4@mail-amer.sun.com>; Wed, 07 Jun 2006 16:27:13 -0600 (MDT) Date: Wed, 07 Jun 2006 17:27:13 -0500 From: Brian Cameron Sender: Brian.Cameron@Sun.COM To: gnome-announce-list@gnome.org, gdm-list@gnome.org Message-id: <448752C1.30509@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5.0.2 (X11/20060515) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.408 tagged_above=-999 required=2 tests=[AWL=-0.041, BAYES_00=-2.599, TW_DM=0.077, TW_GD=0.077, TW_PM=0.077, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.408 X-Spam-Level: Cc: Subject: GDM2 2.14.8 (stable), the "SecurityFix" Release X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 22:27:17 -0000 AOOH-GAH -------- (If you have no clue what gdm is, skip a few paragraphs down first) The 2.14.8 release is a stable release of GDM with the following new features. Note this contains an important security fix, so users and distros should update immediately. - Correction for serious security issue where the user can enter the GDM configuration GUI with a user password when the Face Browser is enabled. Refer to bugzilla.gnome.org bug #343476 (Brian Cameron) This issue impacts all versions of GDM 2.8.0.0-2.8.0.7, 2.14.0-2.14.7, and 2.15.0-2.15.3. This issue was reported to vendor-sec one week ago and has ID #CVE-2006-2452. - Fixed bug where when the "Include All" button is modified in the Users tab, the Automatic/Timed login dropdown lists update properly. (Brian Cameron) - Now gdmflexiserver calls gdmcomm_check with FALSE so it will not pop up a dialog. gdmflexiserver can be run with the --command option which can be used when the user does not have permission to a DISPLAY, so trying to show a dialog was causing gdmflexiserver to core dump when the check failed. (Brian Cameron) - Added gestures to the AccessKeyMouseEvents configuration file so that users can access more accessibility features using dwell gestures. (Brian Cameron) - Translation updates (Laurent Dhima, Pema Geyleg, Theppitak Karoonboonyanan, Gabor Kelemen, Ahmad Riza H Nst, Vincent van Adrighem) Note: GDM2 was originally written by Martin K. Petersen . Much work has been done on GDM2 by George Lebl, and Brian Cameron currently shares maintainership duties with the Queen of England. Note2: If installing from the tarball do note that make install overwrites most of the setup files, all except gdm.conf. It will however save backups with the .orig extension first. #ifndef GDM_DISABLE_DEPRECATED Note3: Note3 has been depracated ... #endif /* GDM_DISABLE_DEPRECATED */ Downloading: ============ Online Documentation - http://www.gnome.org/projects/gdm/ Latest Stable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.14/ Latest Unstable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.15/ No RPM this time around BTW. Have fun. A spec file is included though, so you can try: rpmbuild -ta gdm-whatever.tar.gz Have fun, Brian From dsandras@seconix.com Wed Jun 7 15:09:24 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E46CC3B027D for ; Wed, 7 Jun 2006 15:09:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07646-04 for ; Wed, 7 Jun 2006 15:09:22 -0400 (EDT) Received: from ns20085.ovh.net (ekiga.net [213.186.62.145]) by menubar.gnome.org (Postfix) with ESMTP id A72183B0239 for ; Wed, 7 Jun 2006 15:09:21 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ns20085.ovh.net (Postfix) with ESMTP id BF54049704 for ; Wed, 7 Jun 2006 20:51:50 +0200 (CEST) Received: from ns20085.ovh.net ([127.0.0.1]) by localhost (ns20085.ovh.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09043-07 for ; Wed, 7 Jun 2006 20:51:49 +0200 (CEST) Received: from [192.168.0.161] (173.132-245-81.adsl-dyn.isp.belgacom.be [81.245.132.173]) (using SSLv3 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by ns20085.ovh.net (Postfix) with ESMTP id DF3C549702 for ; Wed, 7 Jun 2006 20:51:48 +0200 (CEST) From: Damien Sandras To: gnome-announce-list@gnome.org Content-Type: text/plain Date: Wed, 07 Jun 2006 21:10:04 +0200 Message-Id: <1149707404.2474.40.camel@golgoth01> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at gnomemeeting.net X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 03:15:35 -0400 Subject: Ekiga 2.0.2 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 19:09:24 -0000 This is release of Ekiga for GNOME 2.14 * What is it ? ============== Ekiga is a free Voice over IP phone allowing you to do free calls over the Internet. Ekiga is the first Open Source application to support both H.323 and SIP, as well as audio and video. Ekiga was formerly known as GnomeMeeting. More information can be found at http://www.ekiga.org * Where to get it ? =================== Ekiga is available at: ftp://ftp.gnome.org/pub/gnome/sources/ekiga/2.0 * What's changed ? ================== Ekiga: * Fixed problem with the activation of actions on contacts in the addressbook. (#334685, Julien Puydt) * Added a tooltip for the status label, to read the full text even when the message is cut off. (Jan Schampera) * Added missing notifiers for "new message" sound event. (Damien Sandras) * Prevent the UI from freezing a few micro seconds while registering accounts. (Damien Sandras) * Fixed OpenSolaris support. (#335196, Sun Microsystems/Boying Lu) * Fixed wrong key name in URL handlers section for GNOME. (Jan Schampera) * Fixed detection of ended calls in DBUS. (Julien Puydt) * Fixed playing/pausing of calls in DBUS. (#333465, Julien Puydt) * Fixed useless focus grabbing in druid which made some pages impossible to get the focus. (Jan Schampera) * Fixed crash when creating a contact while not having any local addressbook. (#334960, Julien Puydt) * Fixed leaking the system username on the network. (#335784, Julien Puydt) * Make sure the reason of the end of the call is always the last thing displayed in the status bar. (Damien Sandras) * Fixed browsing of ILS servers. (Damien Sandras) * Made sensitivity of the zoom related menuitems dependant on the actual zoom factor. (#336575, Jan Schampera) * Added "New contact" menu item to the contacts context menu. (#336588, Jan Schampera) * Fixed frame size calculation of video frame. (#336572, Jan Schampera) * Fixed sensitivity setting of "Fullscreen" menu item and sensitifity when leaving Fullscreen mode. (#336575, Jan Schampera) * Fixed non-selectable text problem in the chat window. (#336789, Jan Schampera) * Fixed LDAP search filter so that it works with LDAP servers that do not have a "location" attribute. (#336849, Damien Sandras) * Made most dialogs/popups closable by ESC (partially fixes #337494) (Jan Schampera) * Fixed problem with cursor turning into a hand at the wrong position in the chat window. (#336793, Julien Puydt) * Fixed text chat formatting corruption. (#335794, Simon Wood) * Monitor IP address changes to update the registrations. (#335398, Damien Sandras) * Color inactive tabs when receiving a chat message. (#335857, Simon Wood) * Open new tabs in the background. (#335857, Simon Wood) * Avoid losing error dialogs behind the druid (#338270, Julien Puydt) * Fixed wrong packets loss count. (#339866, Damien Sandras) * Fixed video flipping bug during calls with preview active. (#339867, Damien Sandras) * Fixes crash in address book when no address book is selected (#34210, Julien Puydt) * Fixed handling of call forwarding/transfer in case of incoming call (Damien Sandras) Ekiga WIN32: * Fixed remote contacts crashing on WIN32 or with the non GNOME version. (#335472, Jan Schampera) * Ekiga will now detect if it is already running on WIN32 and bail out. (#337794, Michael Rickmann) * Fixed command-line parsing on WIN32. (#337797, Michael Rickmann) * Fixed stuttering on WIN32. (#337799, Michael Rickmann) * Made the use of SDL more reliable on WIN32. (#337795, Michael Rickmann) * Made the help work on WIN32. (#337798, Michael Rickmann) * Made the 4s delay in the audio test work on WIN32. (#337799, Michael Rickmann) * Fixed fullscreen issues on WIN32 (#337792, Michael Rickmann). SIP support: * Fixed rport support when receving SIP request from another host than the one mentionned in the Via. (#335002, Damien Sandras) * Remove REGISTER and SUBSCRIBE from the Allow field. (#334979, Damien Sandras) * Fixed SRV lookup when creating connections. (#334994, Damien Sandras) * Improved CANCEL handling. (i#334985, Damien Sandras) * Fixed user in From field so that it always corresponds to a registered account. (#335006, Damien Sandras) * Unregister using the same remote address than the one used to register. (#334999, Damien Sandras) * Prevent loop of UNREGISTER requests when leaving. (#334997, Damien Sandras) * Allow duplicate INVITE PDUs to be treated concurrently. (#334847, Damien Sandras) * Set the From field to the address of record of the default SIP account. (#334457, Damien Sandras) * Fixed infinite loop when calling an host with more than 1 SRV record. (Damien Sandras) * Added support for SDP offers in the OK response, and SDP answer in the ACK request. (Damien Sandras) * Fixed wrong behavior with different priorities when building the priorities list. (#339314, Damien Sandras) * Do not lookup recipient's address when using an outbound proxy. (#334455, Damien Sandras) * Fixed problem with dynamic payload type codecs. (#337456, Damien Sandras) * Fixed routing with proxies who do not support the 'lr' parameter. (#340415, Damien Sandras) H.323 support: * Uses lower initial bandwidth by default when registering to gatekeepers. (#300366, Damien Sandras) Devices: * Fixed broken OSS plugin. (#338505, Damien Sandras) * Added resizing capability for VYUY YUYV formats. (#330946, Luc Saillard) * Improved UVC camera support. (Martin Rubli from Logitech) * Fixed parsing of JPEG streams with DHT markers. (Martin Rubli from Logitech) -- _ Damien Sandras (o- //\ Ekiga Softphone: http://www.ekiga.org/ v_/_ FOSDEM 2006 : http://www.fosdem.org/ SIP Phone : sip:dsandras@ekiga.net sip:600000@ekiga.net From murrayc@murrayc.com Wed Jun 7 15:39:02 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 71EF73B0DDF; Wed, 7 Jun 2006 15:38:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09273-01; Wed, 7 Jun 2006 15:38:57 -0400 (EDT) Received: from swarthymail-a3.dreamhost.com (mailbigip2.dreamhost.com [208.97.132.53]) by menubar.gnome.org (Postfix) with ESMTP id 3DC723B0E65; Wed, 7 Jun 2006 15:38:44 -0400 (EDT) Received: from noname (p5497CB1E.dip.t-dialin.net [84.151.203.30]) by swarthymail-a3.dreamhost.com (Postfix) with ESMTP id 1E03F7F05A; Wed, 7 Jun 2006 12:38:41 -0700 (PDT) From: Murray Cumming To: gnome-announce , gtkmm-list Content-Type: text/plain Date: Wed, 07 Jun 2006 21:38:36 +0200 Message-Id: <1149709116.5916.26.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.684 tagged_above=-999 required=2 tests=[AWL=-0.695, BAYES_00=-2.599, RCVD_IN_SORBS_WEB=1.456, TW_GT=0.077, TW_TK=0.077] X-Spam-Score: -1.684 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 03:15:35 -0400 Cc: Subject: ANNOUNCE: gtkmm 2.9.4 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 19:39:02 -0000 *** gtkmm 2.9/2.10: gtkmm 2.9 wraps new API in GTK+ 2.9, and is API/ABI-compatibile with gtkmm 2.8, 2.6 and 2.4. It is a version of the gtkmm-2.4 API. This will become the API-stable gtkmm 2.10, wrapping GTK+ 2.10. gtkmm stays in-sync with GTK+ by following the official GNOME release schedule: http://www.gnome.org/start/unstable/ Bindings for the rest of the GNOME Platform are also available, and are also API-stable. http://www.gtkmm.org *** Changes gtkmm 2.9.4: Gtk: * PrintContext: - Added set_track_print_status() and cancel(), paginate signal. (Marko Anastasov) - get_cairo() renamed to get_cairo_context(), - get_fontmap() renamed to get_pango_fontmap(), - create_context() renamed to create_pango_context(), - create_layout() renamed to create_pango_layout(). (Murray Cumming) * PrintJob: - Added set/get_track_print_status(). (Marko Anastasov) Pango: * Added CairoFontMap. (Might be removed later) * Context: Added update_from_cairo_context(), set_cairo_font_options(), set_cairo_font_options(), get_font_options(), set_resolution(), get_resolution(). * Layout: Added create(Cairo::Context), update_from_cairo_context(), add_to_cairo_context(). * LayoutLine: Added show_in_cairo_context(), add_to_cairo_context(). (Murray Cumming) *** Download http://www.gtkmm.org/download.shtml You will need libsigc++ 2.0, available here: https://sourceforge.net/project/showfiles.php?group_id=1970 *** Development There is active discussion on the mailing list: http://www.gtkmm.org/mailinglist.shtml and in the #c++ channel on irc.gnome.org -- Murray Cumming murray@usa.net www.murrayc.com From sandmann@daimi.au.dk Thu Jun 8 23:24:44 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id ACF2A3B0418 for ; Thu, 8 Jun 2006 23:24:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23677-04 for ; Thu, 8 Jun 2006 23:24:43 -0400 (EDT) Received: from daimi.au.dk (daimi.au.dk [130.225.16.1]) by menubar.gnome.org (Postfix) with ESMTP id A7F633B0408 for ; Thu, 8 Jun 2006 23:24:42 -0400 (EDT) Received: from camel18.daimi.au.dk (camel18 [130.225.16.137]) by daimi.au.dk (8.12.11.20060308/8.12.11) with ESMTP id k593OeQD008266; Fri, 9 Jun 2006 05:24:40 +0200 Received: from camel18.daimi.au.dk (IDENT:U2FsdGVkX1/iO3gyunaS0bFYmoVfNsPfhKVcvodnSF0@localhost [127.0.0.1]) by camel18.daimi.au.dk (8.13.1/8.13.1) with ESMTP id k593OeQV004787; Fri, 9 Jun 2006 05:24:40 +0200 Received: (from sandmann@localhost) by camel18.daimi.au.dk (8.13.1/8.13.1/Submit) id k593OedI004782; Fri, 9 Jun 2006 05:24:40 +0200 X-Authentication-Warning: camel18.daimi.au.dk: sandmann set sender to sandmann@daimi.au.dk using -f Sender: sandmann@daimi.au.dk To: gnome-announce-list@gnome.org From: Soeren Sandmann Date: 09 Jun 2006 05:24:40 +0200 Message-ID: Lines: 65 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Scanned-By: MIMEDefang 2.56 on 130.225.16.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.574 tagged_above=-999 required=2 tests=[AWL=0.025, BAYES_00=-2.599] X-Spam-Score: -2.574 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 03:15:35 -0400 Subject: Sysprof Linux Profiler v. 1.0.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jun 2006 03:24:44 -0000 * What is it? -------------------------- Sysprof is a sampling system-wide CPU profiler for Linux. Sysprof uses a Linux kernel module to profile the entire system, not just an individual application.=20 Of course, sysprof handles threads and shared libraries, and applications do not have to be recompiled or instrumented. In fact they don't even have to be restarted.=20 Just insert the kernel module and start sysprof. * Features: ---------------------- - Profiles all running processes, not just a single application - Call graph support showing time spent in each branch of the call tree - Has a simple graphical interface - Profiles can be loaded and saved - Easy to use: Just insert the kernel module and start sysprof - Supports Fedora debuginfo packages * Sysprof 1.0.3 -------------------------- - Compiles with the latest kernels Please report bugs as well as success or failure stories to=20 sandmann@daimi au dk * Where can I get it? -------------------------------------------- Home page: http://www.daimi.au.dk/~sandmann/sysprof/ Source code: http://www.daimi.au.dk/~sandmann/sysprof/sysprof-1.0.3.tar.gz Sysprof requires - Linux 2.6.11 or later, compiled with profiling support - GTK+ 2.6 - libglade 2.5 It is known to work out the box on Fedora Core 4 and 5. S=F8ren From pjc51@cam.ac.uk Fri Jun 9 05:57:47 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B73C93B01A8 for ; Fri, 9 Jun 2006 05:57:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12981-09 for ; Fri, 9 Jun 2006 05:57:45 -0400 (EDT) Received: from ppsw-9.csi.cam.ac.uk (unknown [131.111.8.139]) by menubar.gnome.org (Postfix) with ESMTP id B5D2C3B00B1 for ; Fri, 9 Jun 2006 05:57:45 -0400 (EDT) X-Cam-SpamDetails: Not scanned X-Cam-AntiVirus: No virus found X-Cam-ScannerInfo: http://www.cam.ac.uk/cs/email/scanner/ Received: from tiree.ra.phy.cam.ac.uk ([131.111.48.169]:49064) by ppsw-9.csi.cam.ac.uk (ppsw.cam.ac.uk [131.111.8.139]:25) with esmtp id 1FodkB-0007u9-Tm (Exim 4.54) (return-path ); Fri, 09 Jun 2006 10:57:31 +0100 From: Phil Cowans To: gnome-announce-list@gnome.org, dasherteam@yahoogroups.com Content-Type: text/plain Date: Fri, 09 Jun 2006 10:57:30 +0100 Message-Id: <1149847050.16654.9.camel@tiree.ra.phy.cam.ac.uk> Mime-Version: 1.0 X-Mailer: Evolution 2.0.4 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.599 tagged_above=-999 required=2 tests=[BAYES_00=-2.599] X-Spam-Score: -2.599 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 06:34:46 -0400 Cc: Subject: Dasher 4.1.4 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jun 2006 09:57:47 -0000 Dasher 4.1.4 is now available for download from: http://ftp.gnome.org/pub/GNOME/sources/dasher/4.1/ Windows and (unofficial) Debian binaries are available from: http://www.dasher.org.uk/Download.html The 4.1.x series of Dasher releases is a development series which will lead to version 4.2.0 in time for the GNOME 2.16 release. If you're after stability, install the latest 4.0.x version instead. The 4.1.x series aims to improve interaction with the desktop environment and window manager, for example to make it easier to enter text into other applications. 4.1.4 fixes a number of bugs which were present in 4.1.0. We're always greatful for any feedback from users - either via the GNOME Bugzilla: http://bugzilla.gnome.org/ Or by email to dasher@mrao.cam.ac.uk. Thanks to all who contributed to this release, Phil Cowans 9th June 2006 From Rich.Burridge@Sun.COM Fri Jun 9 09:59:59 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4262D3B010A for ; Fri, 9 Jun 2006 09:59:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 29076-03 for ; Fri, 9 Jun 2006 09:59:57 -0400 (EDT) Received: from brmea-mail-2.sun.com (brmea-mail-2.Sun.COM [192.18.98.43]) by menubar.gnome.org (Postfix) with ESMTP id 436C93B01BE for ; Fri, 9 Jun 2006 09:59:57 -0400 (EDT) Received: from fe-amer-03.sun.com ([192.18.108.177]) by brmea-mail-2.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k59DxtP3010388 for ; Fri, 9 Jun 2006 07:59:56 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0L00I01IP1J100@mail-amer.sun.com> (original mail from Rich.Burridge@Sun.COM) for gnome-announce-list@gnome.org; Fri, 09 Jun 2006 07:59:55 -0600 (MDT) Received: from [192.168.1.102] (c-71-202-99-109.hsd1.ca.comcast.net [71.202.99.109]) by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0L008L6IVU1C10@mail-amer.sun.com> for gnome-announce-list@gnome.org; Fri, 09 Jun 2006 07:59:55 -0600 (MDT) Date: Fri, 09 Jun 2006 06:59:21 -0700 From: Rich Burridge Sender: Rich.Burridge@Sun.COM To: gnome-announce-list@gnome.org Message-id: <44897EB9.6060700@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5 (X11/20060327) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.598 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.598 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 11:19:14 -0400 Subject: ANNOUNCE: gcalctool v5.8.13 [hopefully stable] X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jun 2006 13:59:59 -0000 Gcalctool is the default GNOME desktop calculator. It has Basic, Advanced, Financial and Scientific modes. Internally it uses multiple precision arithmetic to produce results to a high degree of accuracy. This (hopefully stable) release is for GNOME 2.15.3. Changes since the last gcalctool version (5.8.13). * From Sami Pietila - Fixed bug #343150. Gcalctool no longer crashes when switching to scientific mode. * Adjusted configure.in so that gcalctool now requires intltool v0.35.0. Updated Translations (thankyou!) Pema Geyleg - dz.po: Updated Dzongkha translation. Vincent van Adrighem - nl.po: Translation updated by Tino Meinen. Clytie Siddall - vi.po: Updated Vietnamese translation. Theppitak Karoonboonyanan - th.po: Updated Thai translation. Miloslav Trmac - cs.po: Updated Czech translation. Raphael Higino - pt_BR.po: Updated Brazilian Portuguese translation. Ignacio Casal Quinteiro - gl.po: Updated Galician Translation. You can download this new version from: http://ftp.gnome.org/pub/GNOME/sources/gcalctool/5.8/ From Rich.Burridge@Sun.COM Fri Jun 9 12:22:20 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1CB123B110C for ; Fri, 9 Jun 2006 12:22:20 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05769-10 for ; Fri, 9 Jun 2006 12:22:18 -0400 (EDT) Received: from brmea-mail-2.sun.com (brmea-mail-2.Sun.COM [192.18.98.43]) by menubar.gnome.org (Postfix) with ESMTP id 220193B0112 for ; Fri, 9 Jun 2006 12:22:17 -0400 (EDT) Received: from fe-amer-04.sun.com ([192.18.108.178]) by brmea-mail-2.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k59GMHje022696 for ; Fri, 9 Jun 2006 10:22:17 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0L00601PDSJP00@mail-amer.sun.com> (original mail from Rich.Burridge@Sun.COM) for gnome-announce-list@gnome.org; Fri, 09 Jun 2006 10:22:17 -0600 (MDT) Received: from [192.168.1.102] (c-71-202-99-109.hsd1.ca.comcast.net [71.202.99.109]) by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0L000IIPH4FY20@mail-amer.sun.com> for gnome-announce-list@gnome.org; Fri, 09 Jun 2006 10:22:17 -0600 (MDT) Date: Fri, 09 Jun 2006 09:21:43 -0700 From: Rich Burridge Sender: Rich.Burridge@Sun.COM To: gnome-announce-list@gnome.org Message-id: <4489A017.2030903@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5 (X11/20060327) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.598 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.598 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 16:30:37 -0400 Subject: [ANNOUNCE: gcalctool v5.8.16 [hopefully stable] X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jun 2006 16:22:20 -0000 Sorry, that should have been gcalctool 5.8.16 (not 5.8.13). -------- Original Message -------- Subject: ANNOUNCE: gcalctool v5.8.16 [hopefully stable] Date: Fri, 09 Jun 2006 06:59:21 -0700 From: Rich Burridge To: gnome-announce-list@gnome.org Gcalctool is the default GNOME desktop calculator. It has Basic, Advanced, Financial and Scientific modes. Internally it uses multiple precision arithmetic to produce results to a high degree of accuracy. This (hopefully stable) release is for GNOME 2.15.3. Changes since the last gcalctool version (5.8.13). * From Sami Pietila - Fixed bug #343150. Gcalctool no longer crashes when switching to scientific mode. * Adjusted configure.in so that gcalctool now requires intltool v0.35.0. Updated Translations (thankyou!) Pema Geyleg - dz.po: Updated Dzongkha translation. Vincent van Adrighem - nl.po: Translation updated by Tino Meinen. Clytie Siddall - vi.po: Updated Vietnamese translation. Theppitak Karoonboonyanan - th.po: Updated Thai translation. Miloslav Trmac - cs.po: Updated Czech translation. Raphael Higino - pt_BR.po: Updated Brazilian Portuguese translation. Ignacio Casal Quinteiro - gl.po: Updated Galician Translation. You can download this new version from: http://ftp.gnome.org/pub/GNOME/sources/gcalctool/5.8/ _______________________________________________ gnome-announce-list mailing list gnome-announce-list@gnome.org http://mail.gnome.org/mailman/listinfo/gnome-announce-list From lucasr.at.mundo@gmail.com Sat Jun 10 15:18:25 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BFE893B0355 for ; Sat, 10 Jun 2006 15:18:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22270-07 for ; Sat, 10 Jun 2006 15:18:19 -0400 (EDT) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.225]) by menubar.gnome.org (Postfix) with ESMTP id 497F63B00D0 for ; Sat, 10 Jun 2006 15:18:16 -0400 (EDT) Received: by wr-out-0506.google.com with SMTP id i12so1072899wra for ; Sat, 10 Jun 2006 12:18:15 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=Az6w6MZB4nAyrTPN/c1dBiy1QeZ3eP7h8u4jteTnJO41JONOrr+vLcaDgMaoq4CGUsTFL9SOAi4mYQa1U/quNPHKz5w9wCTni0PKnnsN+iZD4toNQ2U72zqyiU0cW7CuR3V4pUG+hJ2fX18MkuKthXuw+tWs50Y+gO+yiE+erPs= Received: by 10.54.128.19 with SMTP id a19mr2963077wrd; Sat, 10 Jun 2006 12:18:15 -0700 (PDT) Received: by 10.54.93.4 with HTTP; Sat, 10 Jun 2006 12:18:15 -0700 (PDT) Message-ID: <31a62e6f0606101218v6e0f8de0rec084fa7f081f2bc@mail.gmail.com> Date: Sat, 10 Jun 2006 16:18:15 -0300 From: "Lucas Rocha" To: gnome-announce-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.525 tagged_above=-999 required=2 tests=[AWL=0.075, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.525 X-Spam-Level: X-Mailman-Approved-At: Sat, 10 Jun 2006 15:24:41 -0400 Subject: Eye of GNOME 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Jun 2006 19:18:25 -0000 Hi all, * What is it ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Eye of GNOME (eog) is the image viewer for the GNOME desktop. * What's changed in 2.15.3 ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D - Properly sort image filenames containing numbers (Felix Riemann) [#340957= ] - Thumbnailing fixes (Felix Riemann) [#342817] - Fix printing for images with alpha channel (Jan K=FCmmel) [#322057] - Updated translations: Ignacio Casal Quinteiro (gl), Ankit Patel (gu), Theppitak Karoonboonyanan (th), Clytie Siddall (vi), Inaki Larra=F1aga (e= u), Pema Geyleg (dz), Francisco Javier F. Serrador (es) * Where can I get it ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Source code: http://ftp.gnome.org/pub/GNOME/sources/eog/2.15/eog-2.15.3.tar.gz md5sums: 1e39941d5327a28f0b3e88dfc6d5d2d0 http://ftp.gnome.org/pub/GNOME/sources/eog/2.15/eog-2.15.3.tar.bz2 md5sums: 29a9768a41dce2823e93c8de60b638e3 Enjoy! --lucasr From nudrema@gmail.com Sun Jun 11 07:21:01 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1905C3B057C; Sun, 11 Jun 2006 07:21:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06331-08; Sun, 11 Jun 2006 07:20:58 -0400 (EDT) Received: from swip.net (mailfe01.swip.net [212.247.154.1]) by menubar.gnome.org (Postfix) with ESMTP id EA99F3B0318; Sun, 11 Jun 2006 07:20:57 -0400 (EDT) X-T2-Posting-ID: Ee7YIbSG3O5rNcT4cGADretWTWrDEjpwS9FwzyhFhzk= X-Cloudmark-Score: 0.000000 [] Received: from [83.182.30.172] (HELO [10.0.0.13]) by mailfe01.swip.net (CommuniGate Pro SMTP 5.0.8) with ESMTP id 192388062; Sun, 11 Jun 2006 13:20:20 +0200 Message-ID: <448BFC72.5000804@gmail.com> Date: Sun, 11 Jun 2006 13:20:18 +0200 From: =?ISO-8859-1?Q?Steve_Fr=E9cinaux?= User-Agent: Thunderbird 1.5.0.2 (X11/20060522) MIME-Version: 1.0 To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.966 tagged_above=-999 required=2 tests=[AWL=-0.436, BAYES_00=-2.599, SPF_NEUTRAL=1.069] X-Spam-Score: -1.966 X-Spam-Level: X-Mailman-Approved-At: Sun, 11 Jun 2006 07:32:46 -0400 Cc: gedit-list Subject: ANNOUNCE: gedit-plugins 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 11:21:01 -0000 Hi all, gedit-plugins 2.15.3 is available. gedit-plugins is a set of (hopefuly useful) plugins for the GNOME text editor, gedit. homepage: http://live.gnome.org/GeditPlugins * Changes in 2.15.3 ==================== New features and fixes: - Autotools fixes (Jesse van den Kieboom, Steve Frcinaux) - Terminal now uses gnome-terminal default profile (Steve Frcinaux) - New Smart Spaces unindent plugin (Steve Frcinaux) - various fixes New and updated translations: - cs (Jakub Friedl) - pt_BR (Raphael Higino) * Download =========== http://ftp.gnome.org/pub/GNOME/sources/gedit-plugins/2.15/gedit-plugins-2.15.3.tar.gz md5sums: 1d7c70969fbd60b466e00f3295bced59 http://ftp.gnome.org/pub/GNOME/sources/gedit-plugins/2.15/gedit-plugins-2.15.3.tar.bz2 md5sums: 4182e0b3b522cb35e5348ce00c8aaa1d * Development ============== Don't hesitate to have a talk with the gedit team on #gedit on irc.gnome.org if you want to give gedit-plugins some of the love it needs :-) -- Steve http://tw.apinc.org From martyn@imendio.com Sun Jun 11 17:10:48 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1F0903B013F for ; Sun, 11 Jun 2006 17:10:48 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02407-03 for ; Sun, 11 Jun 2006 17:10:46 -0400 (EDT) Received: from holken.mikan.net (holken.mikan.net [83.145.56.183]) by menubar.gnome.org (Postfix) with ESMTP id A284B3B066D for ; Sun, 11 Jun 2006 17:10:45 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by holken.mikan.net (Postfix) with ESMTP id 30EA033525E; Sun, 11 Jun 2006 22:49:14 +0200 (CEST) Received: from holken.mikan.net ([127.0.0.1]) by localhost (holken.mikan.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03671-03; Sun, 11 Jun 2006 22:49:09 +0200 (CEST) Received: from [192.168.0.2] (host86-135-75-230.range86-135.btcentralplus.com [86.135.75.230]) by holken.mikan.net (Postfix) with ESMTP id 716673352A4; Sun, 11 Jun 2006 22:49:09 +0200 (CEST) From: Martyn Russell To: gnome-announce-list@gnome.org Content-Type: text/plain Organization: Imendio Date: Sun, 11 Jun 2006 21:49:40 +0100 Message-Id: <1150058980.30411.5.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at holken.mikan.net X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.586 tagged_above=-999 required=2 tests=[AWL=0.013, BAYES_00=-2.599] X-Spam-Score: -2.586 X-Spam-Level: X-Mailman-Approved-At: Sun, 11 Jun 2006 17:36:08 -0400 Cc: gossip-dev@lists.imendio.com Subject: ANNOUNCE: Gossip 0.11.2 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 21:10:48 -0000 Gossip 0.11.1 is now available for download from: http://download.gnome.org/sources/gossip/0.11/ What is Gossip ============== Gossip is an instant messaging client for GNOME with an easy-to-use interface, providing users of the GNOME Desktop with a friendly way to keep in touch with their friends. What's new in Gossip 0.11.2 =========================== - Added avatars to the chat window (Martyn). - Cleaned up the preferences and some of the gconf keys have changed, this means some of your preferences might need resetting (Martyn). - Added a preference for showing avatars (Martyn). - Added a preference to disable the contact online notifications (Martyn). - Stop flashing the task list a while after new messages arrive (Richard). Bugs Fixed ========== - Fixed #342928, Show subscription requests in the roster instead of JUST the notification tray which isn't ideal for people without one (Martyn). - Fixed #343375, Make sure we follow the XMPP spec for RFC 3921 with regards to adding and removing contacts. Subscription was broken somehow since 0.10 (Jonatan Magnusson). - Fixed #339285, Move to new LINGUAS method (patch by Przemyslaw Grzegorczyk). - Fixed #339679, Use case insensitive search in the logs (Richard). - Fixed #343511, Support scroll events in the presence chooser (Richard). - Fixed #331773, Ask for confirmation before clearing the list (Richard). - Fixed #344438, Set mnemonic target for the theme combo (Richard). Updated Translations ==================== Jordi Mallach (ca) Richard Hult (sv) Wouter Bolsterlee (nl) More information: ================= The Gossip project page: http://developer.imendio.com/wiki/Gossip If you want to subscribe to just announcements of Gossip you can join the announcement list here: http://lists.imendio.com/mailman/listinfo/announce 11 June 2006 Gossip Team From hughsient@gmail.com Sun Jun 11 16:10:31 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 029C73B0422 for ; Sun, 11 Jun 2006 16:10:31 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31984-01 for ; Sun, 11 Jun 2006 16:10:28 -0400 (EDT) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.168]) by menubar.gnome.org (Postfix) with ESMTP id 034F83B02CC for ; Sun, 11 Jun 2006 16:10:27 -0400 (EDT) Received: by ug-out-1314.google.com with SMTP id k3so2123698ugf for ; Sun, 11 Jun 2006 13:10:03 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:subject:from:reply-to:to:cc:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; b=HRcsTP79snnDu6H8ZeGN3Q6/nt35smFKdHMw9SBcLONZCQ2eVs5l1vjT5nHY94RPJ1RJsNuEcmy+rT+Dk1FOFWvHutu5HWk50bzy6X376OZom5F33NDNaFDr5szRY8Y870/jaEpj2C+0bC4v382GnYa1nd0EcgVRgkGSV9++cCA= Received: by 10.66.216.20 with SMTP id o20mr4467611ugg; Sun, 11 Jun 2006 13:02:54 -0700 (PDT) Received: from ?10.0.0.14? ( [86.132.112.248]) by mx.gmail.com with ESMTP id e1sm5926698ugf.2006.06.11.13.02.53; Sun, 11 Jun 2006 13:02:53 -0700 (PDT) From: Richard Hughes To: GnomePowerManager List Content-Type: text/plain; charset=UTF-8 Date: Sun, 11 Jun 2006 21:02:29 +0100 Message-Id: <1150056149.3896.9.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 (2.6.2-1.fc5.5) Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.705 tagged_above=-999 required=2 tests=[AWL=-0.663, BAYES_00=-2.599, RCVD_IN_BL_SPAMCOP_NET=1.558, SPF_PASS=-0.001] X-Spam-Score: -1.705 X-Spam-Level: X-Mailman-Approved-At: Sun, 11 Jun 2006 17:36:20 -0400 Cc: GNOME-Announce List , GNOME TranslationProject Subject: GNOME Power Manager 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: richard@hughsie.com List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 20:10:31 -0000 GNOME Power Manager is a session daemon for the GNOME desktop environment that makes it easy to manage the power on your laptop or desktop system. Download at the usual place : http://ftp.gnome.org/pub/GNOME/sources/gnome-power-manager/2.15/ ============== Version 2.15.3 ============== Released June 11, 2006 General - Depend on intltool 0.35.0 to build - Grammar fixes in the schema and glade file (Clytie Siddall) - Add in XFCE option so we display in the XFCE menu. lp:43077 - Use GtkStatusIcon when GTK version >= 2.9.0 (Jaap Haitsma) - Add in new docbook documentation about the dbus interface. - Rename and add a few DBUS methods from feedback on XDG list. Power Manager - Actually show the correct levels in the pixmaps for the mouse and keyboard. - Add a gconf key so we can disable the action for when the lid is previously shut and the AC power removed at a later time as this was causing confusion. - Limit the capacity to 100% - Undim the screen when we have to unlock returning from resume. #333290 - Rework the brightness handling so that we only have one way of doing the transitions. This simplifies things greatly. #341616 - Update for gnome-screensaver API changes. #344103 Power Preferences - Add the configurable action for power button press in the UI. #344325. Power Info - Set the correct colours of the line depending on discharging/charging status. #338175. Translators - Theppitak Karoonboonyanan & Roys Hengwatanakul (Thai) - Wouter Bolsterlee (Netherlands) - Clytie Siddall (Vietnamese) - Funda Wang (Simplified Chinese) - Øivind Hoel (Norwegian bokmål) - Francisco Javier F. Serrador (Spanish) - Raphael Higino (Brazilian Portuguese) From gjc@inescporto.pt Sun Jun 11 18:14:06 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F035C3B0137 for ; Sun, 11 Jun 2006 18:14:05 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05363-03 for ; Sun, 11 Jun 2006 18:14:04 -0400 (EDT) Received: from animal.inescn.pt (correio.inescn.pt [194.117.24.9]) by menubar.gnome.org (Postfix) with ESMTP id 82AD43B02F9 for ; Sun, 11 Jun 2006 18:14:03 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by animal.inescn.pt (8.13.6/8.13.6/7) with ESMTP id k5BMCqqs022474; Sun, 11 Jun 2006 23:12:52 +0100 (WEST) Received: from pong.inescporto.pt (pong.inescn.pt [194.117.26.74]) by animal.inescn.pt (8.13.6/8.13.6/5) with ESMTP id k5BMCZ29022454; Sun, 11 Jun 2006 23:12:35 +0100 (WEST) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by pong.inescporto.pt (Postfix) with ESMTP id DB83A119191; Sun, 11 Jun 2006 23:09:37 +0100 (WEST) From: "Gustavo J. A. M. Carneiro" To: gnome-announce-list@gnome.org Content-Type: text/plain Date: Sun, 11 Jun 2006 23:12:34 +0100 Message-Id: <1150063954.5758.0.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at inescporto.pt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.394 tagged_above=-999 required=2 tests=[AWL=-0.006, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001, TW_EV=0.077] X-Spam-Score: -2.394 X-Spam-Level: X-Mailman-Approved-At: Sun, 11 Jun 2006 18:37:01 -0400 Cc: PyGTK List Subject: ANNOUNCE: GnomePython 2.15.2 (unstable) X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 22:14:06 -0000 GnomePython 2.15.2 has been just released. This is a unstable release for testing purposes. GnomePython provides python interfacing modules for most of the GNOME Developer Platform libraries (except those already wrapped somewhere else.) Currently the list of provided python modules includes: - gnome, gnome.ui - gnomecanvas - gnomevfs - gconf - bonobo, bonobo.activation, bonobo.ui Overview of Changes from gnome-python 2.15.1 to gnome-python 2.15.2 =================================================================== * gnomevfs - Fix FileInfo.valid_fields computation (Sidnei da Silva) - Add some missing permission constants (Sidnei) - Add new FileInfo.access field (Gustavo) - Add sync variant of "file control" method (Gustavo) * gnome - gnome.program_init changes process name on Linux with prctl (Gustavo) The source tarball can be found here: http://ftp.gnome.org/pub/GNOME/sources/gnome-python/2.15/ Please file bug reports (bugs, missing APIs) here: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-python -- Gustavo J. A. M. Carneiro The universe is always one step beyond logic From William.Walker@Sun.COM Sun Jun 11 19:53:33 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C98A93B00BC; Sun, 11 Jun 2006 19:53:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09467-02; Sun, 11 Jun 2006 19:53:31 -0400 (EDT) Received: from brmea-mail-4.sun.com (brmea-mail-4.Sun.COM [192.18.98.36]) by menubar.gnome.org (Postfix) with ESMTP id 656553B00B7; Sun, 11 Jun 2006 19:53:31 -0400 (EDT) Received: from fe-amer-06.sun.com ([192.18.108.180]) by brmea-mail-4.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k5BNqQ6B020577; Sun, 11 Jun 2006 17:52:26 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0P00M01Y1KY900@mail-amer.sun.com> (original mail from William.Walker@Sun.COM); Sun, 11 Jun 2006 17:52:26 -0600 (MDT) Received: from [192.168.1.105] ([68.116.197.173]) by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0P0097BZN5LTZ1@mail-amer.sun.com>; Sun, 11 Jun 2006 17:52:26 -0600 (MDT) Date: Sun, 11 Jun 2006 19:52:16 -0400 From: Willie Walker Sender: William.Walker@Sun.COM To: orca-list@gnome.org, gnome-announce-list@gnome.org, gnome-accessibility-list@gnome.org Message-id: <1150069937.5071.4.camel@localhost> MIME-version: 1.0 X-Mailer: Evolution 2.6.1 Content-type: text/plain; charset=UTF-8 Content-transfer-encoding: 8BIT X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.587 tagged_above=-999 required=2 tests=[AWL=0.011, BAYES_00=-2.599, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.587 X-Spam-Level: X-Mailman-Approved-At: Mon, 12 Jun 2006 03:22:46 -0400 Cc: Subject: Announcing Orca 0.2.5 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 23:53:34 -0000 ================ * What is Orca ? ================ Orca is a scriptable screen reader for the GNOME desktop for people with visual impairments. ================== * What's changed ? ================== We've done a lot of work on Orca since the last release in both the new functionality and quality/stability departments. We thank all of our users that are providing feedback on gnome-list@gnome.org (see http://mail.gnome.org/mailman/listinfo/orca-list) as well as http://bugzilla.gnome.org. We value all of your feedback and help. We also appreciate contributions from community members, including Al Puzzuoli who is doing a great job helping with the Orca Wiki at http://live.gnome.org/Orca and Francisco Javier Dorado Martínez who has been testing and providing patches. Thank you all! ================== Orca 0.2.5 Changes ================== * Re-map keyboard bindings and add additional keyboard bindings. See http://live.gnome.org/Orca/KeyboardCommands for the list. * Improvements to StarOffice support to provide better access to text documents and spreadsheets. Also get rid of spurious "0.00" text that was showing up in braille for StarOffice buttons. * Addition of announcing text selection as it is selected and unselected. * Generalize the "read table cell row" functionality. If you press Insert+F11, it will toggle the feature to read the entire row of a table or just the selected table cell when you move from row to row. * Improved support for SayAll of text objects (SayAll for flat review is still on the to do list). * Addition of self-voicing module to tell Orca to be quiet when a self-voicing application is present. * Addition of ability to turn Orca into a speech server that can accessed via simple HTTP commands (default port is 20433, but this is customizable via orca.settings.speechServerPort). This will allow self-voicing applications to use Orca for their speech, thus letting them get the user's speech settings preferences. * Addition of orca.settings.enableBrailleGrouping (default=False). NOTE: this represents a change in the UI for Orca - the behavior to date has been to always group menu items on the braille display. The system responsiveness was bad for large menus, however, so we decided to make this an optional feature turned off by default. * Addition of utility to report information on the currently active script. This is primarily for helping script writers do debugging and is accessed by pressing Insert+F3. * Addition of orca.settings.cacheAccessibles (default=True) as a means to turn the local caching of accessible objects on or off. This is primarily an Orca developer debugging feature. * Fix for bug 344218 - gnome-terminal would not be presented properly if it was started after Orca. * Fix for bug 343666: pressing buttons on braille displays could cause a hang. * Partial fix for bug 342022 - provide some defensive mechanisms to help prevent some hangs. * Fix for bug 343133 - do not hang when doing a flat-review of a man page in gnome-terminal. * Fix for bug #343013 - the command line option strings should not be translatable. * Partial fix for bug 319652 - become a better Python thread citizen to help reduce hangs. * Fix for bug 342303 - stop speech when the user presses the mouse button. * Fix for bug 342122 - use all labels for an objecty when presenting an object. * Fix for bug 342133 - do not read all labels in gnome-window-properties application when it appears. * Fix for bug 341415 - when moving between workspaces with metacity, eliminate redundant output and alsomake sure workspace names are announced. * Refactor of various modules to move script writing utilities into util.py. * More fleshing out of the test plan. ====================== * Where can I get it ? ====================== Source code: http://ftp.gnome.org/pub/GNOME/sources/orca/0.2/orca-0.2.5.tar.gz Enjoy. Will, Mike, Rich, Lynn, and the Orca community From callum@spooky-possum.org Mon Jun 12 02:05:21 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 06D8C3B000D; Mon, 12 Jun 2006 02:05:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21232-04; Mon, 12 Jun 2006 02:05:19 -0400 (EDT) Received: from genamics.blastula.net (dns1.blastula.net [64.92.214.155]) by menubar.gnome.org (Postfix) with ESMTP id 4C4D83B00D4; Mon, 12 Jun 2006 02:05:19 -0400 (EDT) Received: from [60.234.103.60] (helo=[60.234.103.60]) by genamics.blastula.net with esmtpa (Exim 4.52) id 1FpfWT-0001Yo-NG; Mon, 12 Jun 2006 18:03:39 +1200 From: Callum McKenzie To: games-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Date: Mon, 12 Jun 2006 18:03:05 +1200 Message-Id: <1150092185.10939.21.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Antivirus-Scanner: Clean mail though you should still use an Antivirus X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - genamics.blastula.net X-AntiAbuse: Original Domain - gnome.org X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [47 12] X-AntiAbuse: Sender Address Domain - spooky-possum.org X-Source: X-Source-Args: X-Source-Dir: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.538 tagged_above=-999 required=2 tests=[AWL=0.061, BAYES_00=-2.599] X-Spam-Score: -2.538 X-Spam-Level: X-Mailman-Approved-At: Mon, 12 Jun 2006 03:23:07 -0400 Cc: Subject: gnome-games 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: callum@spooky-possum.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 06:05:21 -0000 gnome-games 2.15.3 ================== This development release of gnome-games is a little short on new content since we are in the process of changing maintainers and not everything is organised yet. Things that have changed: General: - High scores: the file is truncated properly if you use a short name. This stops you getting a top-ten score with 11th-place. - Require the latest intltool. Aisleriot - Radio-buttons for Klondike options work now. There are new choices for how you want your cards dealt in Klondike. - Explicitly protect the cards from garbage collection. This is should fix bug #342038, but doesn't actually seem to work. Robots: - Really, really, fix the desktop icon name this time (I hope). As usual, get it from: http://download.gnome.org/sources/gnome-games/2.15/ - Callum From gjc@inescporto.pt Sun Jun 11 18:38:11 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E31903B0350 for ; Sun, 11 Jun 2006 18:38:10 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06171-08 for ; Sun, 11 Jun 2006 18:38:08 -0400 (EDT) Received: from animal.inescn.pt (correio.inescn.pt [194.117.24.9]) by menubar.gnome.org (Postfix) with ESMTP id D88DC3B025D for ; Sun, 11 Jun 2006 18:38:07 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by animal.inescn.pt (8.13.6/8.13.6/7) with ESMTP id k5BMau8H023824; Sun, 11 Jun 2006 23:36:56 +0100 (WEST) Received: from pong.inescporto.pt (pong.inescn.pt [194.117.26.74]) by animal.inescn.pt (8.13.6/8.13.6/5) with ESMTP id k5BMaf3c023811; Sun, 11 Jun 2006 23:36:41 +0100 (WEST) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by pong.inescporto.pt (Postfix) with ESMTP id CC3E1119191; Sun, 11 Jun 2006 23:33:43 +0100 (WEST) From: "Gustavo J. A. M. Carneiro" To: PyGTK Content-Type: text/plain Date: Sun, 11 Jun 2006 23:36:40 +0100 Message-Id: <1150065400.5758.3.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at inescporto.pt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.39 tagged_above=-999 required=2 tests=[AWL=-0.002, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: -2.39 X-Spam-Level: X-Mailman-Approved-At: Mon, 12 Jun 2006 03:23:25 -0400 Cc: gnome-announce-list@gnome.org Subject: ANNOUNCE: GnomePythonDesktop 2.15.3 (unstable) X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 22:38:11 -0000 GnomePythonDesktop 2.15.3 has been just released. This is a unstable release for testing purposes. GnomePythonDesktop provides python interfacing modules for some GNOME libraries part of the GNOME Desktop. The following Python modules are included: - gnomeapplet - gnomeprint, gnomeprint.ui - gtksourceview - wnck - totem.plparser - gtop - nautilusburn - mediaprofiles - metacity - rsvg - gnomekeyring - gnomedesktop Overview of Changes from 2.15.2 to 2.15.3 ============================================================================== * gnomekeyring - Improve API (throw exceptions instead of returning error codes) (Gustavo) - Add an example (Gustavo) * metacity - Update to new C API (Frederic Peters) - Wrap wnck_window_get_geometry() (Magnus Therning) * nautilusburn - Update to new improved C API (Python API is not preserved) (Gustavo) The source tarball can be found here: http://ftp.gnome.org/pub/GNOME/sources/gnome-python-desktop/2.15/ Please file bug reports (bugs, missing APIs) here: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-python-desktop Happy testing! -- Gustavo J. A. M. Carneiro The universe is always one step beyond logic. From gjc@inescporto.pt Sun Jun 11 19:00:35 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 48BC73B0253; Sun, 11 Jun 2006 19:00:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07173-08; Sun, 11 Jun 2006 19:00:34 -0400 (EDT) Received: from animal.inescn.pt (correio.inescn.pt [194.117.24.9]) by menubar.gnome.org (Postfix) with ESMTP id 6D4C93B014F; Sun, 11 Jun 2006 19:00:33 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by animal.inescn.pt (8.13.6/8.13.6/7) with ESMTP id k5BMxkXt025129; Sun, 11 Jun 2006 23:59:46 +0100 (WEST) Received: from pong.inescporto.pt (pong.inescn.pt [194.117.26.74]) by animal.inescn.pt (8.13.6/8.13.6/5) with ESMTP id k5BMxSnQ025107; Sun, 11 Jun 2006 23:59:28 +0100 (WEST) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by pong.inescporto.pt (Postfix) with ESMTP id 08E1F119191; Sun, 11 Jun 2006 23:56:31 +0100 (WEST) From: "Gustavo J. A. M. Carneiro" To: gnome-announce-list@gnome.org Content-Type: text/plain Date: Sun, 11 Jun 2006 23:59:27 +0100 Message-Id: <1150066767.5758.5.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at inescporto.pt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.427 tagged_above=-999 required=2 tests=[AWL=0.038, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.427 X-Spam-Level: X-Mailman-Approved-At: Mon, 12 Jun 2006 03:23:49 -0400 Cc: orbit-list@gnome.org, PyGTK List Subject: ANNOUNCE: PyORBit 2.14.1 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 23:00:36 -0000 "PyORBit is a Python binding for the ORBit2 CORBA ORB. It was developped to suit the needs of the bonobo bindings in GNOME-Python, but is usable for other purposes as well. It aims to follow the standard Python language mapping for CORBA. It can generate stubs at runtime from typelibs, IDL files, or by introspecting remote objects using ORBit2's IModule typelib capabilities." The source tarball can be found here: http://ftp.gnome.org/pub/GNOME/sources/pyorbit/2.13/ Please file bug reports (bugs, missing APIs) here: http://bugzilla.gnome.org/enter_bug.cgi?product=pyorbit Changes from 2.14.0 to 2.14.1: - Fix build problem on cygwin - Fix segmentation fault on orb.shutdown() - Make it work on Python 2.5 and 64-bit platforms -- Gustavo J. A. M. Carneiro The universe is always one step beyond logic From mclasen@redhat.com Mon Jun 12 12:04:32 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 41C3B3B000C; Mon, 12 Jun 2006 12:04:32 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09149-04; Mon, 12 Jun 2006 12:04:29 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 7270D3B009D; Mon, 12 Jun 2006 12:04:29 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5CG3bc9030255; Mon, 12 Jun 2006 12:03:37 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [172.16.76.12]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5CG3bc3007778; Mon, 12 Jun 2006 12:03:37 -0400 Received: from golem.boston.redhat.com (golem.boston.redhat.com [172.16.80.24]) by mail.boston.redhat.com (8.12.8/8.12.8) with ESMTP id k5CG3blQ018463; Mon, 12 Jun 2006 12:03:37 -0400 From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain Date: Mon, 12 Jun 2006 12:03:36 -0400 Message-Id: <1150128216.15532.14.camel@golem.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.1 (2.7.1-1) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.426 tagged_above=-999 required=2 tests=[AWL=-0.056, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_LQ=0.077, TW_RX=0.077, TW_TR=0.077] X-Spam-Score: -2.426 X-Spam-Level: Cc: Subject: GLib 2.11.3 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 16:04:32 -0000 GLib 2.11.3 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.11/ http://ftp.gnome.org/pub/GNOME/sources/glib/2.11/ glib-2.11.3.tar.bz2 md5sum: 41931c4965f7e1848f81b800914905cd glib-2.11.3.tar.gz md5sum: cd78ebc535e29cdef0fed9487aa21dac This is a development release leading up to GLib 2.12. Notes: * This is unstable development release. While it has had a bit of testing, there are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GLib 2.10. If you have problems, you'll need to reinstall GLib 2.10. * GLib 2.12 will be source and binary compatible with the GLib 2.10.x series (for some caveats, see the README). At this point, the API additions in the 2.11.x series are almost finished. * Bugs should be reported to http://bugzilla.gnome.org. About GLib ========== GLib is the low-level core library that forms the basis for projects such as GTK+ and GNOME. It provides data structure handling for C, portability wrappers, and interfaces for such runtime functionality as an event loop, threads, dynamic loading, and an object system. More information about GLib is available at: http://www.gtk.org/ An installation guide for the GTK+ libraries, including GLib, can be found at: http://developer.gnome.org/doc/API/2.0/gtk/gtk-building.html Overview of Changes from GLib 2.11.2 to GLib 2.11.3 =================================================== * GBookmarkFile: - g_bookmark_file_move_item: Return TRUE in case of an empty target * Bugs fixed: 343919 gunicollate.c: strxfrm bug on VC8 * Updated translations (fi) A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=343919 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Emmanuele Bassi, Kazuki Iwamoto, Tor Lillqvist Matthias Clasen June 12, 2006 From Brian.Cameron@Sun.COM Mon Jun 12 14:30:32 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4CFFC3B0010; Mon, 12 Jun 2006 14:30:32 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24480-06; Mon, 12 Jun 2006 14:30:31 -0400 (EDT) Received: from brmea-mail-3.sun.com (brmea-mail-3.Sun.COM [192.18.98.34]) by menubar.gnome.org (Postfix) with ESMTP id F1D1A3B0078; Mon, 12 Jun 2006 14:30:30 -0400 (EDT) Received: from fe-amer-01.sun.com ([192.18.108.175]) by brmea-mail-3.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k5CITqhn016383; Mon, 12 Jun 2006 12:29:52 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0R00001F5FBN00@mail-amer.sun.com> (original mail from Brian.Cameron@Sun.COM); Mon, 12 Jun 2006 12:29:52 -0600 (MDT) Received: from [192.168.0.20] ([206.135.142.194]) by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0R002PJFDNG7X0@mail-amer.sun.com>; Mon, 12 Jun 2006 12:29:52 -0600 (MDT) Date: Mon, 12 Jun 2006 13:29:49 -0500 From: Brian Cameron Sender: Brian.Cameron@Sun.COM To: gnome-announce-list@gnome.org, gdm-list@gnome.org Message-id: <448DB29D.9020208@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5.0.2 (X11/20060515) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.444 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, TW_GD=0.077, TW_PM=0.077, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.444 X-Spam-Level: Cc: Subject: GDM2 2.15.5 (unstable), the "Caraboy" Release X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 18:30:32 -0000 AOOH-GAH -------- (If you have no clue what gdm is, skip a few paragraphs down first) The 2.15.5 release is an unstable release of GDM with the following new features. - Correction to autologin PAM service name so automatic login works. (Brian Cameron) - Fix compiler warnings that were causing core dumping issues on some platforms (Brian Cameron) - Translation updates (Josep Puigdemont Casamaj\303\263, Changwoo Ryu) Note that this also contains an important security fix that was originally released in 2.15.4, so please make sure to update if using an older version than 2.15.4. - Correction for serious security issue where the user can enter the GDM configuration GUI with a user password when the Face Browser is enabled. Refer to bugzilla.gnome.org bug #343476 (Brian Cameron) This issue impacts all versions of GDM 2.8.0.0-2.8.0.7, 2.14.0-2.14.7, and 2.15.0-2.15.3. This issue was reported to vendor-sec one week ago and has ID #CVE-2006-2452. Note: GDM2 was originally written by Martin K. Petersen . Much work has been done on GDM2 by George Lebl, and Brian Cameron currently shares maintainership duties with the Queen of England. Note2: If installing from the tarball do note that make install overwrites most of the setup files, all except gdm.conf. It will however save backups with the .orig extension first. #ifndef GDM_DISABLE_DEPRECATED Note3: Note3 has been depracated ... #endif /* GDM_DISABLE_DEPRECATED */ Downloading: ============ Online Documentation - http://www.gnome.org/projects/gdm/ Latest Stable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.14/ Latest Unstable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.15/ No RPM this time around BTW. Have fun. A spec file is included though, so you can try: rpmbuild -ta gdm-whatever.tar.gz Have fun, Brian From Brian.Cameron@Sun.COM Mon Jun 12 15:08:35 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 715123B034C; Mon, 12 Jun 2006 15:08:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26412-02; Mon, 12 Jun 2006 15:08:32 -0400 (EDT) Received: from brmea-mail-1.sun.com (brmea-mail-1.Sun.COM [192.18.98.31]) by menubar.gnome.org (Postfix) with ESMTP id 99D443B025E; Mon, 12 Jun 2006 15:08:32 -0400 (EDT) Received: from fe-amer-05.sun.com ([192.18.108.179]) by brmea-mail-1.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k5CJ7bEh002523; Mon, 12 Jun 2006 13:07:37 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0R00501GXLIW00@mail-amer.sun.com> (original mail from Brian.Cameron@Sun.COM); Mon, 12 Jun 2006 13:07:37 -0600 (MDT) Received: from [192.168.0.20] ([206.135.142.194]) by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0R00A6NH4LVTH0@mail-amer.sun.com>; Mon, 12 Jun 2006 13:07:37 -0600 (MDT) Date: Mon, 12 Jun 2006 14:07:35 -0500 From: Brian Cameron Sender: Brian.Cameron@Sun.COM To: gnome-announce-list@gnome.org, gdm-list@gnome.org Message-id: <448DBB77.9000608@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5.0.2 (X11/20060515) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.444 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, TW_GD=0.077, TW_PM=0.077, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.444 X-Spam-Level: Cc: Subject: GDM2 2.14.9 (stable), the "Lincoln Park" Release X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 19:08:35 -0000 AOOH-GAH -------- (If you have no clue what gdm is, skip a few paragraphs down first) The 2.14.9 release is a stable release of GDM with the following new features. - Correction to autologin PAM service name so automatic login works. (Brian Cameron) - Fix compiler warnings that were causing core dumping issues on some platforms (Brian Cameron) - Translation updates (Josep Puigdemont Casamaj\303\263) Note: GDM2 was originally written by Martin K. Petersen . Much work has been done on GDM2 by George Lebl, and Brian Cameron currently shares maintainership duties with the Queen of England. Note2: If installing from the tarball do note that make install overwrites most of the setup files, all except gdm.conf. It will however save backups with the .orig extension first. #ifndef GDM_DISABLE_DEPRECATED Note3: Note3 has been depracated ... #endif /* GDM_DISABLE_DEPRECATED */ Downloading: ============ Online Documentation - http://www.gnome.org/projects/gdm/ Latest Stable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.14/ Latest Unstable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.15/ No RPM this time around BTW. Have fun. A spec file is included though, so you can try: rpmbuild -ta gdm-whatever.tar.gz Have fun, Brian From mclasen@redhat.com Mon Jun 12 15:43:04 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 851123B00E5; Mon, 12 Jun 2006 15:43:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27729-06; Mon, 12 Jun 2006 15:43:02 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 5B16F3B0010; Mon, 12 Jun 2006 15:43:02 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5CJZWav007572; Mon, 12 Jun 2006 15:35:32 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [172.16.76.12]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5CJZWUd001833; Mon, 12 Jun 2006 15:35:32 -0400 Received: from golem.boston.redhat.com (golem.boston.redhat.com [172.16.80.24]) by mail.boston.redhat.com (8.12.8/8.12.8) with ESMTP id k5CJZWlQ009694; Mon, 12 Jun 2006 15:35:32 -0400 From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain Date: Mon, 12 Jun 2006 15:35:31 -0400 Message-Id: <1150140931.15532.18.camel@golem.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.1 (2.7.1-1) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.541 tagged_above=-999 required=2 tests=[AWL=0.060, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.541 X-Spam-Level: Cc: Subject: GTK+ 2.8.19 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 19:43:04 -0000 GTK+ 2.8.19 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.8/ http://ftp.gnome.org/pub/GNOME/sources/gtk+/2.8/ gtk+-2.8.19.tar.bz2 md5sum: 1a03dbed4b794194a610e9d7eb175b06 gtk+-2.8.19.tar.gz md5sum: 604d3263498994c58af378f0ec076e6f This is a bugfix release in the 2.8.x series. It fixes a rare memory corruption issue when using the deprecated GdkFont API. What is GTK+ ============ 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.8 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/ Overview of Changes from GTK+ 2.8.18 to GTK+ 2.8.19 =================================================== Bugs fixed: 341327 Memory corruption inside glib 337491 _gdk_win32_drawable_release_dc: DeleteDC() called on a GetDC() handle 343425 "grab-notify"-signal is not correctly propagated for internal children 344244 Window resizing not working when keeping the aspect fixed 344496 CRLF converting via Clipboard Updated translations (ne) A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=343425,341327,344244,337491,344496 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Markku Vire, Sampo Savolainen, Tim Janik, Tor Lillqvist, Chris Wilson June 12, 2006 Matthias Clasen From newren@gmail.com Mon Jun 12 20:01:08 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C06453B018B for ; Mon, 12 Jun 2006 20:01:08 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03747-10 for ; Mon, 12 Jun 2006 20:01:06 -0400 (EDT) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.203]) by menubar.gnome.org (Postfix) with ESMTP id DCC213B0078 for ; Mon, 12 Jun 2006 20:01:05 -0400 (EDT) Received: by wx-out-0102.google.com with SMTP id h26so971531wxd for ; Mon, 12 Jun 2006 17:00:16 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=tzATDJMp0XzBzC3f1Js6q5t6DW1AJ/Xb3xHu6cJ5HbRxmg4U9Mi4mRfXd+tBd4gF2Jrx0LCPgFnY6WCcrrfEvTgkrAqgyR9TK2LZ0Rxry84BtUi6UXb3giOhJe8CORooz/5D9FkMGku6+JWNaBWjfK/H1pg3dz8Xy5khyLDZnps= Received: by 10.70.29.3 with SMTP id c3mr7026730wxc; Mon, 12 Jun 2006 17:00:16 -0700 (PDT) Received: by 10.70.89.16 with HTTP; Mon, 12 Jun 2006 17:00:16 -0700 (PDT) Message-ID: <51419b2c0606121700j69ef2e93x2dedecfb4c173083@mail.gmail.com> Date: Mon, 12 Jun 2006 18:00:16 -0600 From: "Elijah Newren" To: gnome-announce-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.537 tagged_above=-999 required=2 tests=[AWL=-0.014, BAYES_00=-2.599, SPF_PASS=-0.001, TW_BW=0.077] X-Spam-Score: -2.537 X-Spam-Level: Subject: libwnck 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 00:01:09 -0000 * What is it ? ============== Library for writing different kinds of workspace switchers, window lists, task bars, task menus, etc. Window Navigation Construction Kit. Pronounced "lib-wink" * What's changed ? ================== Fixes - restart activation timeout when the mouse moves to a different workspace (Benjamin) - new methods to test if the names returned by wnck_window_get_name and wnck_window_get_icon_name are real or just FALLBACK_NAME (Dan) [#342577] Misc - don't translate %s (Vincent) [#339069] Translations - Guillaume Savaton (eo) * Where can I get it ? ====================== Source code http://ftp.gnome.org/pub/GNOME/sources/libwnck/2.15/ MD5SUMs 6e9ef41d1aa9e81d6bc33047cccbe07f libwnck-2.15.3.tar.bz2 08a86da5a0225ef1ac5f340b95e74a4c libwnck-2.15.3.tar.gz From newren@gmail.com Mon Jun 12 20:28:13 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2AE023B00A5 for ; Mon, 12 Jun 2006 20:28:13 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04431-07 for ; Mon, 12 Jun 2006 20:28:11 -0400 (EDT) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.193]) by menubar.gnome.org (Postfix) with ESMTP id 6F8173B0078 for ; Mon, 12 Jun 2006 20:28:11 -0400 (EDT) Received: by wx-out-0102.google.com with SMTP id h26so974384wxd for ; Mon, 12 Jun 2006 17:27:35 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=kP6G2sZ3DMwVOY8jQamPOJMaaFSRSXp2y9wwFGXNkpY9JgQhdby0hd2FfdVpmpuaiefE4ZzuZpRcGMYYYQn6Uy0lA4+nsPGxOr+uQMfqytegFiAFLpHQ1Ly8bKHW0FG3kwRN1lWVPIylZ8GP7vkdnEXeWht1ipWqQw7nj0OchIk= Received: by 10.70.132.12 with SMTP id f12mr6858664wxd; Mon, 12 Jun 2006 17:01:49 -0700 (PDT) Received: by 10.70.89.16 with HTTP; Mon, 12 Jun 2006 17:01:49 -0700 (PDT) Message-ID: <51419b2c0606121701y5d42a121o5ab05ac32f69b96@mail.gmail.com> Date: Mon, 12 Jun 2006 18:01:49 -0600 From: "Elijah Newren" To: gnome-announce-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.576 tagged_above=-999 required=2 tests=[AWL=0.024, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.576 X-Spam-Level: Subject: metacity 2.15.5 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 00:28:13 -0000 * What is it ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Metacity is a simple window manager that integrates nicely with GNOME 2. * What's changed ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Thanks to Bj=F6rn Lindqvist, S=F8ren Sandmann, Adam Jackson, Elijah Newren, and Aidan Delaney for improvements in this release. - code cleanup in resizepopup.c (Bj=F6rn) [#341648] - fix a logic bug so that the whole titlebar becomes sensitive to mouse clicks (Bj=F6rn) [#336320] - make mouse cursor when moving windows become a hand (Bj=F6rn) [#337376] - lots and lots of compositor improvements -- beginning of a new layer to abstract transition effects, shrinking and minimizing and exploding effects, fading in and out, unminimize animation that reverses minimize one, translucent menus, bounce on window focus, and all kinds of stuff I don't understand and can't summarize well (S=F8ren, Adam) - Fix a crash on exit/logout from assuming a compositor would always exist (Elijah) [#342166] - code cleanup in tabpopup.c (Aidan Delaney) [#166890] Translations Pema Geyleg (dz), I=F1aki Larra=F1aga Murgoitio (eu), Theppitak Karoonboonyanan (th), Clytie Siddall (vi) * Where can I get it ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Source code http://download.gnome.org/sources/metacity/2.15/ MD5SUMs 057a284898385218b8711229d659c2ed metacity-2.15.5.tar.bz2 983eb3ee58263214e3e57c2f962fbd6a metacity-2.15.5.tar.gz From mclasen@redhat.com Tue Jun 13 02:09:16 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 72FE93B00AF; Tue, 13 Jun 2006 02:09:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12183-04; Tue, 13 Jun 2006 02:09:13 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id B2F773B000C; Tue, 13 Jun 2006 02:09:13 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5D681s3022181; Tue, 13 Jun 2006 02:08:01 -0400 Received: from lacrosse.corp.redhat.com (lacrosse.corp.redhat.com [172.16.52.154]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5D67uRP017686; Tue, 13 Jun 2006 02:07:56 -0400 Received: from [172.16.83.145] (vpn83-145.boston.redhat.com [172.16.83.145]) by lacrosse.corp.redhat.com (8.12.11.20060308/8.11.6) with ESMTP id k5D67tQC015619; Tue, 13 Jun 2006 02:07:56 -0400 From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain; charset=UTF-8 Organization: Red Hat Date: Tue, 13 Jun 2006 02:09:42 -0400 Message-Id: <1150178982.4081.13.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.426 tagged_above=-999 required=2 tests=[AWL=-0.056, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_GD=0.077, TW_GT=0.077, TW_KB=0.077] X-Spam-Score: -2.426 X-Spam-Level: Cc: Subject: GTK+ 2.9.3 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 06:09:16 -0000 GTK+ 2.9.3 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.9/ http://ftp.gnome.org/pub/gnome/sources/gtk+/2.9/ gtk+-2.9.3.tar.bz2 md5sum: d73039a3b5847c352f5740ac908be7d2 gtk+-2.9.3.tar.gz md5sum: 0156eef91d2bbb23f1b6ccb49335fae5 This is a development release leading up to GTK+ 2.10. Notes: * This is unstable development release. There are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GTK+ 2.8. If you have problems, you'll need to reinstall GTK+ 2.8. * GTK+ 2.10 will be source compatible with the GTK+ 2.8 series; the new API additions in GTK+ 2.9.0 are not yet completely finalized, so there are likely incompatibilies between this release and the final 2.10 release. * The ABI version has been bumped from 2.4.0 to 2.10.0, since the filechooser backend interface has been changed. Third-party filechooser backends need to be ported to the new interface. Other third-party modules (input methods, image loaders, etc) just need to be reinstalled in the proper location for GTK+ to find them. * Remaining issues for GTK+ 2.10 can be found with following bugzilla query: http://bugzilla.gnome.org/buglist.cgi?product=gtk%2b&target_milestone=2.10+API+Freeze&target_milestone=2.10+Freeze&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED * Bugs should be reported to http://bugzilla.gnome.org. What is GTK+ ============ 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.4/gtk/gtk-building.html Common questions: http://developer.gnome.org/doc/API/2.4/gtk/gtk-question-index.html http://www.gtk.org/faq/ Overview of Changes from GTK+ 2.9.2 to 2.9.3 ============================================ * GtkPrintOperation: - Introduce an allow-async property - Introduce a GtkPrintOperationAction enumeration - Rename pdf_target to export_filename - Allow to hide "Print to PDF" in the low-level API * GtkNotebook: - Add a destroy notify to gtk_notebook_set_window_creation_hook. * GtkTreeView: - Support grid lines * GtkRange: - Add a number of new stle properties which allow more fexible stepper theming * Bugs fixed: 153212 Have the Paste kbd shortcut jump to the location in the buffer 337491 _gdk_win32_drawable_release_dc: DeleteDC() called on a GetDC() handle 339739 gtk/gtkprintoperation-win32.c: 3 compile error 342339 GtkRange::stepper-spacing style property not implemented correctly 343945 Buttons of a GtkAssistant are not accessible 344148 Wrong reqs for ATK 344209 gtk_notebook_set_window_creation_hook() has no destroy func. 344232 GtkEntry's "Delete" context menu item is sensitive on a non-editable GtkEntry 344244 Window resizing not working when keeping the aspect fixed 344288 gtk_print_operation_preview_is_selected must return a value 344386 gdk-2.0-uninstalled.pc.in and gdkconfig.h 344496 CRLF converting via Clipboard 344504 GtkPrintCapabilities not in gtktypebuiltins.h 344505 Wrong signal registration for create_custom_widget 344512 cvs build issue 344513 pdf print module's print_stream not calling destroy notify 344518 NULL unref in page setup dialogue 344543 gtk_progress_bar_pulse calls gtk_progress_bar_paint directly 344560 gtk_print_settings_[sg]et_scale shouldn't be in percent 344607 memory leaks in gtkrecentchooserdefault.c and gtkrecentchoosermenu.c 344624 Memory leak in gtk_tree_model_filter_finalize: User data not freed 337603 Possible off-by-one in gdk_pango_layout_line_get_clip_region 344239 Wrong filename for gtk-find stock item. 344528 comma at end of GtkPrintOperationAction enum causes mozilla compilation error 344290 horizontal-padding not take into account when placing submenus 344558 document print dialogue response codes 339592 Add print-to-postscript 342249 Allow to draw upper and lower sides of GtkRange's trough differently 344530 gtk_recent_chooser_widget_new_for_manager and gtk_recent_chooser_menu_new_for_manager should allow NULL manager arg * Updated translations (es,fi,gu,ko,th,wa) A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=153212,337491,339739,342339,343945,344148,344209,344232,344244,344288,344386,344496,344504,344505,344512,344513,344518,344543,344560,344607,344624,337603,344239,344528,344290,344558,339592,342249,344530 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Behdad Esfahbod, Bastian Nocera, Alexander Larsson, Jürg Billeter, Murray Cumming, Milosz Derezynski, Tor Lillqvist, Kazuki Iwamoto, Chris Wilson, Michael Natterer, Benjamin Berg, Marko Anastasov, Christian Persch, Masatake Yamamoto, Elijah Newren, John Finlay, Emmanuele Bassi, David Malcolm, John Darrington, Christian Weiske, Yvgen Muntyan, Martyn Russell, Kristian Rietveld June 13, 2006 Matthias Clasen From parente@gmail.com Mon Jun 12 09:07:24 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8979A3B009D for ; Mon, 12 Jun 2006 09:07:24 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03281-09 for ; Mon, 12 Jun 2006 09:07:22 -0400 (EDT) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.231]) by menubar.gnome.org (Postfix) with ESMTP id 9BD863B0083 for ; Mon, 12 Jun 2006 09:07:22 -0400 (EDT) Received: by wr-out-0506.google.com with SMTP id 50so59130wri for ; Mon, 12 Jun 2006 06:06:53 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=Hk2y2xQcbYJKNPf1LW7Y+V28/uYf1U244+IHjlJ7rvPAXFm2IeIHW6o/slpX1K2RUSQzIkrF+sc7i4dF5E8CMLURiFTCBFzpZu9qbgaiDE/D6+W4KrPGXwQqArUp5siLDWhmzDklvsX4fL+9EE4/UFa+de3k689sT00z2J2T/y4= Received: by 10.64.150.20 with SMTP id x20mr4562225qbd; Mon, 12 Jun 2006 06:06:53 -0700 (PDT) Received: by 10.65.154.18 with HTTP; Mon, 12 Jun 2006 06:06:53 -0700 (PDT) Message-ID: <5308fd2c0606120606p43b30477o4e73cfad155dcaa7@mail.gmail.com> Date: Mon, 12 Jun 2006 09:06:53 -0400 From: "Peter Parente" To: gnome-announce-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.589 tagged_above=-999 required=2 tests=[AWL=0.011, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.589 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Subject: lsr-0.2.1 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: parente@cs.unc.edu List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 13:07:24 -0000 ============== * What is it ? ============== Linux Screen Reader (LSR) is an extensible assistive technology for people with disabilities. The design philosophy behind LSR is to provide a core platform that enables the development of LSR extensions for improving desktop application accessibility and usability and shields extension developers from the intricacies of the desktop accessibility architecture. The primary use of the LSR platform is to give people with visual impairments access to the GNOME desktop and its business applications (e.g. Firefox, OpenOffice, Eclipse) using speech, Braille, and screen magnification. The extensions packaged with the LSR core are intended to meet this end. However, LSR's rich support for extensions can be used for a variety of other purposes such as supporting novel input and output devices, improving accessibility for users with other disabilities, enabling multi-modal access to the GNOME desktop, and so forth. ================== * What's changed ? ================== 0.2.1 ===== User interface * Better reporting of accessible components * Combobox current text reported on focus * Tree level reported on level change and first focus (bug #343388) * Menu role and name announced before menu items when switching between menus * Review of visible items works on text, trees, lists, and tables now * Added mute indefinitely key command Scripting * Added DeveloperPerk with the following commands * Refresh all loaded scripts without restarting LSR * Report names of all loaded scripts * Show or hide all development monitor windows * Added -g command line parameter to generate a new extension template * Update of TaskTools to support new output semantics * Added support for text selection events * Added support for storing script and application state separately Devices * Updated Keyboard device to support stateful keys as modifiers (e.g. CapsLock) Architecture * Complete refactor of output interface to support device Style objects * Mapping from semantics (role, title, level, etc.) to styles * Plumbing to support persistence and configuration of extension settings * Plumbing to support auto-generation of settings dialogs for extensions Documentation * Posted Gaim Perk tutorial as hands-on example of writing a script extension * Updated user guide to mention new key bindings * Regenerated epydoc to match latest API Translations * sv(Christian Rose) ====================== * Where can I get it ? ====================== Source code release: http://live.gnome.org/LSR#downloads For more information, visit the LSR home page: http://live.gnome.org/LSR From rodrigo@novell.com Mon Jun 12 17:44:58 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F06E53B016D for ; Mon, 12 Jun 2006 17:44:57 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32717-04 for ; Mon, 12 Jun 2006 17:44:57 -0400 (EDT) Received: from peabody.ximian.com (peabody.ximian.com [130.57.169.10]) by menubar.gnome.org (Postfix) with ESMTP id DCE623B00E5 for ; Mon, 12 Jun 2006 17:44:56 -0400 (EDT) Received: (qmail 22167 invoked from network); 12 Jun 2006 21:43:46 -0000 Received: from localhost (HELO ?164.99.120.183?) (127.0.0.1) by localhost with SMTP; 12 Jun 2006 21:43:46 -0000 From: Rodrigo Moya To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-15 Date: Mon, 12 Jun 2006 23:36:21 +0200 Message-Id: <1150148182.16907.0.camel@formigal.home> Mime-Version: 1.0 X-Mailer: Evolution 2.6.0 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.336 tagged_above=-999 required=2 tests=[AWL=-0.091, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, TW_BX=0.077, TW_IB=0.077] X-Spam-Score: -2.336 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: Control Center List Subject: control-center 2.15.3 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 21:44:58 -0000 Changes since 2.14.2 -------------------- about me: - Fixed typo (Rodrigo Moya) (324971) - Fixed compilation issues (Rodrigo Moya) (344468) default applications: - Added support for Sylpheed (Luca Cavalli) (332659) - Removed unnecessary gnome-terminal argument (Luca Cavalli) (336700) keybindings: - Removed brightness keybindings, now in gnome-power-manager (Bastien Nocera) (339857) keyboard: - Save/restore layout preview window geometry (Sergey Udaltsov) mouse: - Fixed selection when no cursor font is set in GConf (Darren Kenny) (340003) sound: - Added sound device selection (Jrg Billeter) (329112) - Fixed button strings (Rodrigo Moya) (324971) theme-switcher: - Removed drag & drop information text (Thomas Wood) (99535) - Added Install buttons to each tab in the details window (Thomas Wood) - Remember last browsed or installed from location (Thomas Wood) (138795) - Don't allow invalid characters in theme names (Thomas Wood) (139692) - Don't ask user whether to overwrite or not internal files (Thomas Wood) (317375) - Allow saving background image for custom themes (Thomas Wood) (330302) - Fixed UI issues in the save dialog (Thomas Wood) (100622) settings daemon: - Fixed libxklavier engine initialization logic (Sergey Udaltsov) (333091) - Removed references to brightness controls (Bastien Nocera) (339857) - Fixed leaks (Paolo Borelli) (342568, 342570) general: - Updated to new libxklavier API (Sergey Udaltsov) updated translations: - bg (Alexander Shopov) - cs (Miloslav Trmac, Lukas Novotny, Jakub Friedl) - dz (Pema Geyleg) - es (Francisco Javier F. Serrador) - fi (Ilkka Tuohela) - gl (Ignacio Casal Quinteiro) - gu (Ankit Patel) - mg (Simos Xenitellis) - nb (Kjartan Maraas) - sq (Laurent Dhima) - sv (Daniel Nylander) - th (Theppitak Karoonboonyanan) - vi (Clytie Siddall) - zh_CN (Funda Wang) - zh_HK (Chao-Hsiung Liao) - zh_TW (Chao-Hsiung Liao) Availability ------------ http://ftp.gnome.org/pub/GNOME/sources/control-center/2.15/ Contact ------- * Bugs in http://bugzilla.gnome.org * Mailing list http://mail.gnome.org/mailman/listinfo/gnomecc-list -- Rodrigo Moya From behdad.esfahbod@gmail.com Mon Jun 12 17:47:52 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7B80A3B014D for ; Mon, 12 Jun 2006 17:47:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32679-08 for ; Mon, 12 Jun 2006 17:47:50 -0400 (EDT) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.206]) by menubar.gnome.org (Postfix) with ESMTP id 93D3F3B02C1 for ; Mon, 12 Jun 2006 17:47:50 -0400 (EDT) Received: by wx-out-0102.google.com with SMTP id h26so956318wxd for ; Mon, 12 Jun 2006 14:47:02 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:subject:from:to:content-type:date:message-id:mime-version:x-mailer:sender; b=YVJmmmTJDYAPVWyBcXj8x877np/3myVRslCESpGT8RXV9fhXWO7m4zcVtD0bbIyxzLCNy9G4MxoeR4wKgZZNAmVLfJY4S5Cm99AU8jHeau3kamsPLiBWdw/7luc5fNsqJp4eQk4EpFqLzmMhtWaKSOxclPSl65MK68ngzTNkqNo= Received: by 10.70.103.17 with SMTP id a17mr6909562wxc; Mon, 12 Jun 2006 14:47:02 -0700 (PDT) Received: from to-dhcp26.toronto.redhat.com ( [63.250.163.171]) by mx.gmail.com with ESMTP id h34sm6169771wxd.2006.06.12.14.47.01; Mon, 12 Jun 2006 14:47:01 -0700 (PDT) From: Behdad Esfahbod To: gnome-announce-list@gnome.org Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-Vxzn0OEXLlv9C28CHSps" Date: Mon, 12 Jun 2006 17:46:59 -0400 Message-Id: <1150148819.10765.11.camel@home> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 (2.6.1-1.fc5.2) Sender: Behdad Esfahbod X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.6 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.6 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Subject: vte-0.13.2 released [unstable] X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 21:47:52 -0000 --=-Vxzn0OEXLlv9C28CHSps Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Vte-0.13.2 is available for download at: http://download.gnome.org/sources/vte/0.13/ Vte is GNOME 2's virtual-terminal emulation widget. This is an unstable release. 0.13.2 Bug 344666 =E2=80=93 Problems with *_CFLAGS and *_LDFLAGS in makefiles Patch from Stepan Kasal . Bug 339529 =E2=80=93 gnome-terminal (vte) crashes when detatched window is closed Bug 342549 =E2=80=93 uninitialized var (coverity) Patch from Paolo Borelli. Bug 342082 =E2=80=93 vte_invalidate_region() may check whether terminal is realiazed or not Patch from Kouhei Sutou. Bug 340363 =E2=80=93 vte Cygwin build fixes Patch from Cygwin Ports maintainer Bug 341793 =E2=80=93 vte.h doesn't need to include X11/Xlib.h Patch from Kouhei Sutou Require intltool 0.35.0 to have translations in the dist tarballs. Fix typo which may have been causing things like crashes. Behdad Esfahbod 12 June 2006 --=-Vxzn0OEXLlv9C28CHSps Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEjeDTn+4E5dNTERURAjCvAJ9H07aDShKW/mLQfhNyOaMG1RtYsACgixvW gbPOhTT6IK5+BSx0dCk7844= =JsUT -----END PGP SIGNATURE----- --=-Vxzn0OEXLlv9C28CHSps-- From behdad.esfahbod@gmail.com Mon Jun 12 17:52:44 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id EFA613B02CD for ; Mon, 12 Jun 2006 17:52:43 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00550-05 for ; Mon, 12 Jun 2006 17:52:42 -0400 (EDT) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.196]) by menubar.gnome.org (Postfix) with ESMTP id A2EDA3B016D for ; Mon, 12 Jun 2006 17:52:41 -0400 (EDT) Received: by wx-out-0102.google.com with SMTP id h26so957012wxd for ; Mon, 12 Jun 2006 14:51:44 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:subject:from:to:content-type:date:message-id:mime-version:x-mailer:sender; b=HkVpdki0/g3XkGcHUm613LiH99RNWp83QpOiB04twtI9/oyY5QJs7xgUW9ugXUYWTW0FQESua3SiFes9GpwcHFnulMB+jmu6Frg1gjSTz94Z0WNKazKYJCx/0yCrKVvi+sIhO9793kd+R7hBbKFWLBqlIyo5yetvED1gx6HIjnc= Received: by 10.70.36.1 with SMTP id j1mr6891335wxj; Mon, 12 Jun 2006 14:44:52 -0700 (PDT) Received: from to-dhcp26.toronto.redhat.com ( [63.250.163.171]) by mx.gmail.com with ESMTP id h18sm3879342wxd.2006.06.12.14.44.50; Mon, 12 Jun 2006 14:44:51 -0700 (PDT) From: Behdad Esfahbod To: Pango Release Lists , gtk-app-devel-list@gnome.org, gtk-devel-list@gnome.org, gtk-i18n-list@gnome.org, gtk-list@gnome.org Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-HZBsNn3KdPR3jVVwB9gO" Date: Mon, 12 Jun 2006 17:44:37 -0400 Message-Id: <1150148678.10765.8.camel@home> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 (2.6.1-1.fc5.2) Sender: Behdad Esfahbod X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.6 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.6 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: Subject: Pango-1.13.2 released [unstable] X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 21:52:44 -0000 --=-HZBsNn3KdPR3jVVwB9gO Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Pango-1.13.2 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.11/ or http://download.gnome.org/sources/pango/1.13/ 28a6ea9d43c4cd398e7352032f775401 pango-1.13.2.tar.bz2 17d78473c05fece044c6a3b44519b61f pango-1.13.2.tar.gz This is a development release leading up to Pango-1.14.0, which will be released just in time for GNOME-2.16. Notes: * This is unstable development release. While it has had fairly extensive testing, there are likely bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of Pango-1.12. If you have problems, you'll need to reinstall Pango-1.12.x * Bugs should be reported to http://bugzilla.gnome.org. About Pango =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Pango is a library for layout and rendering of text, with an emphasis on internationalization. Pango can be used anywhere that text layout is needed, though most of the work on Pango so far has been done in the context of the GTK+ widget toolkit. Pango forms the core of text and font handling for GTK+-2.x. Pango is designed to be modular; the core Pango layout engine can be used with different font backends. There are three basic backends, with multiple options for rendering with each. - Client side fonts using the FreeType and fontconfig libraries. Rendering can be with with Cairo or Xft libraries, or directly to an in-memory buffer with no additional libraries. - Native fonts on Microsoft Windows. (Optionally using Uniscribe for complex-text handling). Rendering can be done via Cairo or directly using the native Win32 API. - Native fonts on MacOS X, rendering via Cairo. The integration of Pango with Cairo (http://cairographics.org) provides a complete solution with high quality text handling and graphics rendering. Dynamically loaded modules then handle text layout for particular combinations of script and font backend. Pango ships with a wide selection of modules, including modules for Hebrew, Arabic, Hangul, Thai, and a number of Indic scripts. Virtually all of the world's major scripts are supported. As well as the low level layout rendering routines, Pango includes PangoLayout, a high level driver for laying out entire blocks of text, and routines to assist in editing internationalized text. More information about Pango is available from http://www.pango.org/. Pango 1.13.2 depends on version 2.10.0 or newer of the GLib library and version 1.1.2 or newer of the cairo library (if the cairo backend is desired); more information about GLib and cairo can be found at http://www.gtk.org/ and http://cairographics.org/ respectively. Overview of changes between 1.13.1 and 1.13.2 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D * Improved hexbox drawing, and font metrics calculations. * Synthesize italic variants on win32 [Hans Breuer] * New public API: - pango_cairo_show_error_underline - pango_cairo_error_underline_path - pango_font_describe_with_absolute_size * Misc fixes. * Bugs fixed in this release: Bug 326960 =E2=80=93 hex box drawing for win32 and atsui backends of cairo Bug 343717 =E2=80=93 License information in unclear. Bug 343355 =E2=80=93 Add pango_cairo_show_error_underline & pango_cairo_error_underline_path Bug 343966 =E2=80=93 pango Cygwin build fixes Patch from Cygwin Ports maintainer. Bug 343796 =E2=80=93 Italic Chinese character can't be show correctly in Win32. Bug 314114 =E2=80=93 max_x_advance not appropriate for approximate_(char|digit)_width Bug 341138 =E2=80=93 Using TTC font, Gtk2 programs begin to eating big mem= ory and have many cpu usage. Patch from Yong Li. Bug 336153 =E2=80=93 Mark to mark positioning (Lookup Type 6) isn't correc= t when using MarkAttchmentType Patch from Tin Myo Htet. Bug 333984 =E2=80=93 pango_language_from_string improvements Bug 125378 =E2=80=93 Better underline thickness handling Bug 339730 =E2=80=93 Pango needlessly falls back away from a Type 1 font i= nto a TTF font Bug 342562 =E2=80=93 Support absolute sizes in pango_font_description_to/from_string Bug 341922 =E2=80=93 pango should handle more characters as zero width Patch from Roozbeh Pournader Bug 342525 =E2=80=93 With PangoFc and PangoWin32, approximate digit width = is not what it says Bug 342079 =E2=80=93 pangoatsui-private.h missing from release Behdad Esfahbod 12 June 2006 --=-HZBsNn3KdPR3jVVwB9gO Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEjeBFn+4E5dNTERURApTwAJ9OvqbaG1xnQYzGPC9u0WPi30b6ggCfXNvZ oFfMwctzkAaKRETc/0aDRj0= =Wl7j -----END PGP SIGNATURE----- --=-HZBsNn3KdPR3jVVwB9gO-- From ebassi@gmail.com Mon Jun 12 18:16:04 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 959AC3B00A5 for ; Mon, 12 Jun 2006 18:16:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01337-06 for ; Mon, 12 Jun 2006 18:16:03 -0400 (EDT) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.186]) by menubar.gnome.org (Postfix) with ESMTP id E69443B015D for ; Mon, 12 Jun 2006 18:16:02 -0400 (EDT) Received: by nf-out-0910.google.com with SMTP id x37so950087nfc for ; Mon, 12 Jun 2006 15:14:56 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:subject:from:to:cc:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; b=eGvIpFNEWtb7L9J87AK/A8+ENa91duWZBEqSL8uzr9KmNI5+11lkZvmnBmdUhuBBlxyNjlYBw3sh/Am36NkcDakYEh5OSYiVckbEq9XEKnN5svoJJwcDLufW7SXw+2xzT5RpJ43xYvJHTzDB08ykyYlcsfJVZtZALOWrI8eQ7mU= Received: by 10.48.241.20 with SMTP id o20mr5263837nfh; Mon, 12 Jun 2006 15:08:01 -0700 (PDT) Received: from rogue.local ( [86.136.65.180]) by mx.gmail.com with ESMTP id k23sm6896442nfc.2006.06.12.15.08.01; Mon, 12 Jun 2006 15:08:01 -0700 (PDT) From: Emmanuele Bassi To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=UTF-8 Date: Mon, 12 Jun 2006 23:07:59 +0100 Message-Id: <1150150079.5273.10.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.336 tagged_above=-999 required=2 tests=[AWL=0.264, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.336 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: GNOME Utils Subject: [ANNOUNCE] Gnome-utils 2.15.3 - "No, this is not Metacity" X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 22:16:04 -0000 Yeap, you read right: this is release 2.15.3 and this is *not* Metacity - even if we did skip a bit of numbers - but yet another great release of the GNOME Utilities package! Unfortunately, due to time constraints, this release rocks less than what we maintainers expected; nevertheless, it rocks louder and harder than any release done before. So download, sit back with a nice glass of red wine while your compiler of choice churns the sources, and prepare to test new features and to file new bugs. This is an unstable release of gnome-utils, so please be warned that it may cause loss of patience, body hair, teeth and overall sanity; it could also make your life easier. It's up to you to test it and report back any misfeature, bug or feature request. You can download the 2.15.3 release of gnome-utils from the usual place, at: http://download.gnome.org/sources/gnome-utils/2.15/ =================================================================== GNOME Utilities 2.15.3 (June 12th 2006) - "No, it's not Metacity" Baobab * Add a new item in the list window context menu to start scanning a folder. Dictionary * Re-implement the speller widget, to show similar words in case no definition was found. * Use a themable icon Floppy * Nothing Screenshot * Drop deprecated include files (Kristof Vansant, #167098) * Fix compilator warnings * Update launcher description Search Tool * Update launcher description System Log Viewer * Miscellaneous fixes on 64bit platforms (Joe Marcus Clarke, Lin Ma) * Change the default log files list on Solaris (Lin Ma) * Remove empty character from status bar (Lin Ma) * Sort files by ascending order (Lin Ma) * Use `File' instead of `Log' as the first menu (Lin Ma) * Fix the selection offset when copying from a log (Sebastien Bacher) Translations updates: Petr Tomeš (cs), Mindu Dorji (dz), Francisco Javier F. Serrador (es), Iñaki Larrañaga Murgoitio (eu), Ignacio Casal Quinteiro (gl), Ankit Patel (gu), Fabio Marzocca (it), Changwoo Ryu (ko), Fano Rajaonarisoa (mg), Øivind Hoel (nb), Vincent van Adrighem (nl), Theppitak Karoonboonyanan (th), Clytie Siddall (vi), Funda Wang (zh_CN), Lin-Chieh Shangkuan (zh_HK), Lin-Chieh Shangkuan (zh_TW) Ciao, Emmanuele. -- Emmanuele Bassi - Log: http://log.emmanuelebassi.net From kurt@maute.us Mon Jun 12 19:34:25 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 07B863B0150 for ; Mon, 12 Jun 2006 19:34:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03322-07 for ; Mon, 12 Jun 2006 19:34:23 -0400 (EDT) Received: from mta6.srv.hcvlny.cv.net (mta6.srv.hcvlny.cv.net [167.206.4.201]) by menubar.gnome.org (Postfix) with ESMTP id 5040C3B000C for ; Mon, 12 Jun 2006 19:34:23 -0400 (EDT) Received: from [192.168.0.56] (ool-435223b5.dyn.optonline.net [67.82.35.181]) by mta6.srv.hcvlny.cv.net (Sun Java System Messaging Server 6.2-6.01 (built Apr 3 2006)) with ESMTP id <0J0R00G8NSFQ4H00@mta6.srv.hcvlny.cv.net> for gnome-announce-list@gnome.org; Mon, 12 Jun 2006 19:11:51 -0400 (EDT) Date: Mon, 12 Jun 2006 19:11:49 -0400 From: Kurt Maute To: Planner-Dev , Planner , gnome-announce-list@gnome.org Message-id: <1150153909.4619.131.camel@dori> MIME-version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-type: text/plain; charset=UTF-8 Content-transfer-encoding: 8BIT X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.599 tagged_above=-999 required=2 tests=[AWL=0.000, BAYES_00=-2.599] X-Spam-Score: -2.599 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: Subject: Planner v0.14 Released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 23:34:25 -0000 Hi All, Planner v0.14 is now available for download: http://ftp.gnome.org/pub/GNOME/sources/planner/0.14/ What is Planner =============== Planner is the GNOME project management tool. Homepage: http://live.gnome.org/Planner What's New in Planner v0.14 =========================== * FF and SF Predecessors 140561 (Kurt Maute) * Simple priority scheduling (Matteo Nastasi): Use the --enable-simple-priority-scheduling option when building. This feature will allow a high priority task to steal resources from a lower priority task. * View Non-standard working/nonworking days (Matteo Nastasi): In the Gantt view, this feature shows where resources have differences in working and nonworking days when compared to the default calendar. * Resource Usage view canvas interactivity (Alvaro del Castillo): Right clicking on a usage bar or resource pops up an option menu. * Gantt chart misalignment with tree view 128983 (Francisco Moraes) * Summary tasks: work now equals sum of child tasks 305801 (Kurt Maute) * Eliminate effects of resource assignments on summary tasks 151604 (Kurt Maute): Assigning a resource to a summary task now has no effect. * Updated user guide: (Kurt Maute) * View Grid Lines in Gantt view 303374 (Nguyễn Thái Ngọc Duy): Shows horizontal lines in Gantt to help visually line up tasks with Gantt bars. Translators: Vladimir "Kaladan" Petkov (bg) Miloslav Trmac (cs) Hendrik Richter (de) Kostas Papadimas (el) Adam Weinberger (en_CA) David Lodge (en_GB) Francisco Javier F. Serrador (es) Ivar Smolin (et) Larra Murgoitio (eu) Meelad Zakaria (fa) Ilkka Tuohela (fi) Gabor Kelemen (hu) Takeshi AIHANA (ja) Kjartan Maraas (nb) "Last-Translator: \n" (ne) Jan-Willem Harmanny (nl) Afonso Celso Medina (pt_BR) Steve Murphy (rw) Marcel Telka (sk) Данило Шеган (sr) Daniel Nylander (sv) Maxim V. Dziumanenko (uk) Clytie Siddall (vi) Woodman Tuen (zh_TW) -- Kurt Maute From nudrema@gmail.com Mon Jun 12 20:13:02 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 32C693B0009; Mon, 12 Jun 2006 20:13:02 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04226-02; Mon, 12 Jun 2006 20:13:01 -0400 (EDT) Received: from swip.net (mailfe04.swip.net [212.247.154.97]) by menubar.gnome.org (Postfix) with ESMTP id 447933B000C; Mon, 12 Jun 2006 20:13:00 -0400 (EDT) X-T2-Posting-ID: Ee7YIbSG3O5rNcT4cGADretWTWrDEjpwS9FwzyhFhzk= X-Cloudmark-Score: 0.000000 [] Received: from [83.182.30.225] (HELO [10.0.0.13]) by mailfe04.swip.net (CommuniGate Pro SMTP 5.0.8) with ESMTP id 211925446; Tue, 13 Jun 2006 02:11:51 +0200 Message-ID: <448E02C4.2050805@gmail.com> Date: Tue, 13 Jun 2006 02:11:48 +0200 From: =?ISO-8859-1?Q?Steve_Fr=E9cinaux?= User-Agent: Thunderbird 1.5.0.2 (X11/20060522) MIME-Version: 1.0 To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.931 tagged_above=-999 required=2 tests=[AWL=-0.478, BAYES_00=-2.599, SPF_NEUTRAL=1.069, TW_GT=0.077] X-Spam-Score: -1.931 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: gedit-list Subject: ANNOUNCE: gedit 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 00:13:02 -0000 Hi all, gedit 2.15.3 is now available. gedit the official GNOME text editor. homepage: http://live.gnome.org/GeditPlugins * Changes in 2.15.3 ==================== New features and fixes: - New gedit_commands_* API for plugins (Paolo Maggi) - Snippets support for space indentation (Jesse van den Kieboom) - gtk-doc enabled C plugin API documentation (Steve Frcinaux) - Next/Previous menu items (Paolo Maggi) - C/Python plugin skeleton generator (Steve Frcinaux) - Snippets plugin enhancements and fixes (Jesse van den Kieboom) - Misc improvements and bugfixes New and updated translations: - Alexander Shopov (bg) - Ankit Patel (gu) - Clytie Siddall (vi) - Francisco Javier F. Serrador (es) - Kjartan Maraas (nb) - Ignacio Casal Quinteiro (gl) - Jakub Friedl (cs) - Pema Geyleg (dz) - Priit Laes (et) - Theppitak Karoonboonyanan (th) * Download =========== http://ftp.gnome.org/pub/GNOME/sources/gedit/2.15/gedit-2.15.3.tar.gz md5sum: 07a99a6c45fa859a770a86bfa6289acd http://ftp.gnome.org/pub/GNOME/sources/gedit/2.15/gedit-2.15.3.tar.bz2 md5sum: e43046da726b9df3119ff8db00c7f4ad -- Steve http://tw.apinc.org From gnome@nextreality.net Mon Jun 12 23:42:44 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 13DDB3B00E5 for ; Mon, 12 Jun 2006 23:42:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08544-08 for ; Mon, 12 Jun 2006 23:42:42 -0400 (EDT) Received: from brentsmith.name (unknown [64.62.195.122]) by menubar.gnome.org (Postfix) with ESMTP id 7C54A3B0010 for ; Mon, 12 Jun 2006 23:42:42 -0400 (EDT) Received: by brentsmith.name (Postfix, from userid 5001) id 8C64635904; Tue, 13 Jun 2006 03:41:31 +0000 (UTC) Received: from [192.168.1.101] (c-67-176-37-213.hsd1.co.comcast.net [67.176.37.213]) by brentsmith.name (Postfix) with ESMTP id DA11C35901 for ; Tue, 13 Jun 2006 03:41:30 +0000 (UTC) Message-ID: <448E33F5.5080804@nextreality.net> Date: Mon, 12 Jun 2006 21:41:41 -0600 From: Brent Smith User-Agent: Thunderbird 1.5.0.2 (X11/20060522) MIME-Version: 1.0 To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Bogosity: Unsure, tests=bogofilter, spamicity=0.500000, version=0.94.4 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.577 tagged_above=-999 required=2 tests=[AWL=0.022, BAYES_00=-2.599] X-Spam-Score: -2.577 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:35 -0400 Subject: Yelp 2.15.3 Released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 03:42:44 -0000 Yelp 2.15.3 is now available from an FTP mirror near you (actually, you might have to wait a little bit for it to appear). Yelp is the program that appears from the mist when you click the Help button in your favorite GNOME application. This release contains many improvements over the last development release. Read on for details... Changes in 2.15.3: ------------------ * New debugging infrastructure (Brent Smith) * Add support for translated man pages, fixes #343275 (Brent Smith) * Support private instances with -p (Bug #337540) (Don Scorgie) * Switch from Bonobo to DBUS Activation (Don Scorgie) * Change 'Multimedia' category to 'Sound & Vision' for (Don Scorgie) consistency (bug #332182) * Don't auto-expand sections in left pane (bug #167070) (Don Scorgie) * Don't use mozilla's internal string API, and drop (Christian Persch) support for gecko 1.7 and non-toolkit geckos. Bug #343950. * Add a deep history framework (bug #67966) (Don Scorgie) * Make *Notes into hyperlinks (bug #343524) (Don Scorgie) * Make monospace fonts change size when asked (Don Scorgie) (bug #344003) * Escape & characters when encountered in info (Don Scorgie) processing (fixes #343372) * more helpful message when there are no search results(Frederic Peters) (fixes #341798) * search results message can be translated (Frederic Peters) (fixes #341689) * limit search results to 20 items (fixes #341434) (Frederic Peters) * cleanup the man_secthash hash table when finished (Brent Smith) * don't increment ptr, fixes #341827 (Don Scorgie) * Fix a bunch of memory leaks (Don Scorgie) * Fix an invalid write, #342151 (Don Scorgie) * NULL checking. Suppresses critical warnings on some (Don Scorgie) info pages * If an info file doesn't exist, default to showing (Don Scorgie) the man page, fixes #341627 * Fix loading of info pages from subdirectories (emacs) (Don Scorgie) * Update intltool requirement to 0.35.0 (Brent Smith) * Reduce strictness of searching for menus in info pages (Don Scorgie) * Updated translations: Jakub Friedl (cs) Mindu Dorji (dz) Francisco Javier F. Serrador (es) Priit Laes (et) Iaki Larraaga Murgoitio (eu) Ankit Patel (gu) Raivis Dejus (lv) Kjartan Maraas (nb) Theppitak Karoonboonyanan (th) Pablo Saratxaga (wa) http://ftp.gnome.org/pub/GNOME/sources/yelp/2.14/ Share and enjoy. Regards, -- Brent Smith IRC: smitten From nudrema@gmail.com Tue Jun 13 04:23:41 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F14743B000C; Tue, 13 Jun 2006 04:23:40 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16049-10; Tue, 13 Jun 2006 04:23:40 -0400 (EDT) Received: from swip.net (mailfe11.swipnet.se [212.247.155.65]) by menubar.gnome.org (Postfix) with ESMTP id 2C63B3B000A; Tue, 13 Jun 2006 04:23:39 -0400 (EDT) X-T2-Posting-ID: Ee7YIbSG3O5rNcT4cGADretWTWrDEjpwS9FwzyhFhzk= X-Cloudmark-Score: 0.000000 [] Received: from [83.182.30.69] (HELO [10.0.0.13]) by mailfe11.swip.net (CommuniGate Pro SMTP 5.0.8) with ESMTP id 44536455; Tue, 13 Jun 2006 10:22:28 +0200 Message-ID: <448E75C1.6030808@gmail.com> Date: Tue, 13 Jun 2006 10:22:25 +0200 From: =?ISO-8859-1?Q?Steve_Fr=E9cinaux?= User-Agent: Thunderbird 1.5.0.2 (X11/20060522) MIME-Version: 1.0 To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.861 tagged_above=-999 required=2 tests=[AWL=-0.543, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_NEUTRAL=1.069, TW_GT=0.077] X-Spam-Score: -1.861 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:35 -0400 Cc: gedit-list Subject: ANNOUNCE: gedit 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 08:23:41 -0000 Hi all, gedit 2.15.3 is now available. gedit the official GNOME text editor. homepage: http://www.gnome.org/projects/gedit * Changes in 2.15.3 ==================== New features and fixes: - New gedit_commands_* API for plugins (Paolo Maggi) - Snippets support for space indentation (Jesse van den Kieboom) - gtk-doc enabled C plugin API documentation (Steve Frcinaux) - Next/Previous menu items (Paolo Maggi) - C/Python plugin skeleton generator (Steve Frcinaux) - Snippets plugin enhancements and fixes (Jesse van den Kieboom) - Misc improvements and bugfixes New and updated translations: - Alexander Shopov (bg) - Ankit Patel (gu) - Clytie Siddall (vi) - Francisco Javier F. Serrador (es) - Kjartan Maraas (nb) - Ignacio Casal Quinteiro (gl) - Jakub Friedl (cs) - Pema Geyleg (dz) - Priit Laes (et) - Theppitak Karoonboonyanan (th) * Download =========== http://ftp.gnome.org/pub/GNOME/sources/gedit/2.15/gedit-2.15.3.tar.gz md5sum: 07a99a6c45fa859a770a86bfa6289acd http://ftp.gnome.org/pub/GNOME/sources/gedit/2.15/gedit-2.15.3.tar.bz2 md5sum: e43046da726b9df3119ff8db00c7f4ad -- Steve http://tw.apinc.org From s.marechal@jejik.com Tue Jun 13 19:55:27 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 44B8A3B00C7 for ; Tue, 13 Jun 2006 19:55:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10258-05 for ; Tue, 13 Jun 2006 19:55:25 -0400 (EDT) Received: from smtp-vbr15.xs4all.nl (smtp-vbr15.xs4all.nl [194.109.24.35]) by menubar.gnome.org (Postfix) with ESMTP id 1E2F43B00D4 for ; Tue, 13 Jun 2006 19:55:24 -0400 (EDT) Received: from [192.168.1.2] (a82-92-145-91.adsl.xs4all.nl [82.92.145.91]) (authenticated bits=0) by smtp-vbr15.xs4all.nl (8.13.6/8.13.6) with ESMTP id k5DNsOqr025232 for ; Wed, 14 Jun 2006 01:54:25 +0200 (CEST) (envelope-from s.marechal@jejik.com) Message-ID: <448F504E.1060904@jejik.com> Date: Wed, 14 Jun 2006 01:54:54 +0200 From: Sander Marechal User-Agent: Thunderbird 1.5.0.2 (X11/20060522) MIME-Version: 1.0 To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by XS4ALL Virus Scanner X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.557 tagged_above=-999 required=2 tests=[AWL=0.042, BAYES_00=-2.599] X-Spam-Score: -2.557 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Subject: Gnome Hearts 0.1 Release Announcement X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: user and developer discussion for the gnome hearts game List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 23:55:27 -0000 Gnome Hearts 0.1 Release Announcement ------------------------------------- Lone Wolves [1] is happy to announce the release of Gnome Hearts version 0.1, an implementation of the classic hearts card game for the Gnome desktop. Gnome Hearts 0.1 is the first release since the project's inception on April 30, earlier this year. Gnome Hearts features configurable rule-sets such as Omnibus and Spot Hearts besides the standard rules. The game also has multiple computer players that are implemented in the Lua [2] scripting language. This allows for easy modification of the players. Also, the game can use any deck of cards installed for the Gnome Games package. [1] http://www.jejik.com [2] http://www.lua.org Downloading and installing Gnome Hearts --------------------------------------- Gnome Hearts can be downloaded from the project website at http://www.gnome-hearts.org/download or directly using this link [3]. At the moment only a .tar.gz source package is available. Binaries for various distributions will appear at a later date. Keep an eye out on the download page and the mailing list [4] for the announcements. In order to build the .tar.gz you need to have libgnomeui2.0, liblua50, liblualib50 and libglade2 plus their respective headers installed. See the README file in the package for more details. [3] http://www.jejik.com/files/gnome-hearts/gnome-hearts-0.1.tar.gz [4] http://lists.jejik.com/cgi-bin/mailman/listinfo/hearts Acknowledgments --------------- Many thanks to the people that contributed to this first release and those who cast a critical glance over the package so we could fix many issues before our first release. -- Sander Marechal http://www.gnome-hearts.org From gjc@inescporto.pt Tue Jun 13 20:28:23 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BD25B3B000E for ; Tue, 13 Jun 2006 20:28:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11220-02 for ; Tue, 13 Jun 2006 20:28:21 -0400 (EDT) Received: from animal.inescn.pt (correio.inescn.pt [194.117.24.9]) by menubar.gnome.org (Postfix) with ESMTP id A61433B00C8 for ; Tue, 13 Jun 2006 20:28:20 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by animal.inescn.pt (8.13.6/8.13.6/7) with ESMTP id k5E0RKZp008488; Wed, 14 Jun 2006 01:27:20 +0100 (WEST) Received: from pong.inescporto.pt (pong.inescn.pt [194.117.26.74]) by animal.inescn.pt (8.13.6/8.13.6/5) with ESMTP id k5E0Qv9X008443; Wed, 14 Jun 2006 01:26:57 +0100 (WEST) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by pong.inescporto.pt (Postfix) with ESMTP id A69A5119284; Wed, 14 Jun 2006 01:23:55 +0100 (WEST) From: "Gustavo J. A. M. Carneiro" To: PyGTK Content-Type: text/plain Date: Wed, 14 Jun 2006 01:26:56 +0100 Message-Id: <1150244816.5417.6.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at inescporto.pt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.351 tagged_above=-999 required=2 tests=[AWL=-0.040, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001, TW_GD=0.077, TW_GT=0.077] X-Spam-Score: -2.351 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: gnome-announce-list@gnome.org Subject: ANNOUNCE: PyGTK 2.9.1 (unstable) X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 00:28:23 -0000 I am pleased to announce version 2.9.1 of the Python bindings for GTK. The new release is available from ftp.gnome.org and its mirrors as soon as its synced correctly: http://ftp.gnome.org/pub/GNOME/sources/pygtk/2.9/pygtk-2.9.1.tar.gz This is an unstable release and should be used with caution. It requires either GTK+ 2.8.x or GTK+ >= 2.9.3. [ Note: this release also fixes a build problem for the recently released GnomePythonDesktop 2.15.3. ] Blurb: GTK is a toolkit for developing graphical applications that run on systems such as Linux, Windows and MacOS X. It provides a comprehensive set of GUI widgets, can display Unicode bidi text. It links into the Gnome Accessibility Framework through the ATK library. PyGTK provides a convenient wrapper for the GTK+ library for use in Python programs, and takes care of many of the boring details such as managing memory and type casting. When combined with PyORBit and gnome-python, it can be used to write full featured Gnome applications. Like the GTK+ library itself PyGTK is licensed under the GNU LGPL, so is suitable for use in both free software and proprietary applications. It is already in use in many applications ranging from small single purpose scripts up to large full features applications. pygtk-2.9.0 13-june-2006 - Allow gtk.TreeSortable.set_default_sort_func callback to be None (Johan, Patrick O'Brien) - Add API to unset the g_log handlers (#323786, Johan) - Allow the gtk module to be imported without DISPLAY (#316877, Johan) - Code cleanup and fixes considering Coverity reports (Johan) - Add codegen support for const-Object return type (#169204, Gustavo) - Add codgen support for unblocking threads around method calls (Gustavo) - Wrap gdk_event_handler_set (Johan) - Codegen reverse wrapper bug fix (#340162, Yevgen Muntyan) - Wrap GdkRegion (John Ehresman) - Add codegen support for ignore-type statement in override (Johan) - Add conditional support for gtk+ 2.10 API, especially printing (Johan, Finlay, Gustavo) - Complete the support for gtk.Container virtual methods (#341641, Gustavo) - Fix misc. reference leaks (Finlay, Gustavo) - Allow None parameter in pangocairo.CairoContext.set_font_options (Finlay) - Complete the support for gtk.CellRenderer virtual methods (#339431, Gustavo) - IconView.set_cursor method params 'cell' and 'start_editing' made optional (#343039, Ross Burton, Finlay) - Wrap a few more gdk_cairo_* methods (Finlay) - Add a 'selection' field to gdk.OWNER_CHANGE events (Finlay) - Allow None in gtk.Entry.set_inner_border() (Finlay) - gtk.Clipboard rich text methods (Finlay) - Add gtk.MessageDialog.set_image() (Finlay) - Wrap gtk_link_button_set_uri_hook() (Finlay) - Allow None in gtk.Widget.input_shape_combine_mask() (Finlay) - Allow gtk.LinkButton() constructor to optionally receive a label (Finlay) - Allow None in gtk.Label.set_mnemonic_widget() (Johan) - Wrap a bunch of X11 specific gdk methods (Gustavo) - Add gtk.SizeGroup.get_widgets() (Finlay) - Wrap gtk_style_lookup_color() (Finlay) - Wrap a bunch of gtk treeview grid lines methods (Finlay) - Better Drag and drop API support (Finlay) - Add -I option to codegen (defs search path) (Gustavo) PyGTK requires GTK+ >= 2.8.0 and Python >= 2.3.5 to build. Bug reports, as always, should go to Bugzilla; check out http://pygtk.org/developer.html and http://pygtk.org/feedback.html for links to posting and querying bug reports for PyGTK. -- Gustavo J. A. M. Carneiro The universe is always one step beyond logic From ebassi@gmail.com Tue Jun 13 20:32:58 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A8A4B3B00C8 for ; Tue, 13 Jun 2006 20:32:58 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11365-03 for ; Tue, 13 Jun 2006 20:32:57 -0400 (EDT) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.184]) by menubar.gnome.org (Postfix) with ESMTP id D60A23B000E for ; Tue, 13 Jun 2006 20:32:56 -0400 (EDT) Received: by nf-out-0910.google.com with SMTP id y38so3928nfb for ; Tue, 13 Jun 2006 17:31:56 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:subject:from:to:cc:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; b=oUq+Y9uyXse5jWbXHN+a1hlPNgEB4SSPDgg8dWXx+1GsvRNsktrt4C4g3H5vMlt23VjpIETSUuVlhG6R9+5WQPa1f/yUs5fj1vO2K5m9rUq0MSBz2x1DxlwhH3zgxxsgbcw07IUW4AZgu+4ffuEd58TvM5NOX7EJyv1wtcIGIDA= Received: by 10.48.225.16 with SMTP id x16mr53191nfg; Tue, 13 Jun 2006 17:31:56 -0700 (PDT) Received: from ?192.168.1.70? ( [86.136.65.180]) by mx.gmail.com with ESMTP id l32sm22126nfa.2006.06.13.17.31.56; Tue, 13 Jun 2006 17:31:56 -0700 (PDT) From: Emmanuele Bassi To: gnome-announce-list@gnome.org Content-Type: text/plain Date: Wed, 14 Jun 2006 01:31:50 +0100 Message-Id: <1150245110.28862.8.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.337 tagged_above=-999 required=2 tests=[AWL=0.263, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.337 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: gnome-utils-list@gnome.org Subject: [ANNOUNCE] Gnome-utils 2.15.4 - "Ain't that another brown paper bag?" X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 00:32:58 -0000 Good news everyone! As last gnome-utils release contained a glitch that broke the build, here's a Brown Paper Bag Release ready: gnome-utils 2.15.4. Many thanks to Matthias Clasen and Fryderyk Dziarmagowski for finding the glitch. As usual, you can download the sources from here: http://download.gnome.org/sources/gnome-utils/2.15/ Enjoy, and remember to file any bug you might find! =================================================================== GNOME Utilities 2.15.4 (June 14th 2006) - "Ain't that another brown paper bag?" * "Brown paper bag" release Baobab * Nothing Dictionary * Remove wrong headers from the build (Matthias Clasen, #344773) Floppy * Nothing Screenshot * Fix included files Search Tool * Nothing System Log Viewer * Nothing Translations updates: Francisco Javier F. Serrador (es), Ankit Patel (gu) Ciao, Emmanuele. From cworth@cworth.org Wed Jun 14 12:07:42 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 50C153B03B2 for ; Wed, 14 Jun 2006 12:07:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05531-07 for ; Wed, 14 Jun 2006 12:07:31 -0400 (EDT) Received: from theworths.org (cworth.org [217.160.249.188]) by menubar.gnome.org (Postfix) with ESMTP id D79923B045D for ; Wed, 14 Jun 2006 12:07:30 -0400 (EDT) Received: (qmail 20098 invoked from network); 14 Jun 2006 12:06:35 -0400 Received: from localhost (HELO raht.cworth.org) (127.0.0.1) by localhost with SMTP; 14 Jun 2006 12:06:35 -0400 Date: Wed, 14 Jun 2006 09:01:56 -0700 Message-ID: <87pshbd8uj.wl%cworth@cworth.org> From: Carl Worth To: cairo-announce@cairographics.org Subject: cairo snapshot 1.1.8 now available User-Agent: Wanderlust/2.14.0 (Africa) Emacs/21.4 Mule/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: multipart/signed; boundary="pgp-sign-Multipart_Wed_Jun_14_09:01:49_2006-1"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.441 tagged_above=-999 required=2 tests=[AWL=-0.054, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, TW_XC=0.077] X-Spam-Score: -2.441 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 12:46:39 -0400 Cc: gnome-announce-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 16:07:42 -0000 --pgp-sign-Multipart_Wed_Jun_14_09:01:49_2006-1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable A new cairo snapshot 1.1.8 is now available from: http://cairographics.org/snapshots/cairo-1.1.8.tar.gz which can be verified with: http://cairographics.org/snapshots/cairo-1.1.8.tar.gz.sha1 ad660fe7bfede1882f4b81798e3e0ef8fe7ecb9b cairo-1.1.8.tar.gz http://cairographics.org/snapshots/cairo-1.1.8.tar.gz.sha1.asc (signed by Carl Worth) Additionally, a git clone of the source tree: git clone git://git.cairographics.org/git/cairo will include a signed 1.1.8 tag which points to a commit named: dd859b8736bb4d1bcf3ed78d0bd1f72a7aad9ca9 which can be verified with: git verify-tag 1.1.8 and can be checked out with a command such as: git checkout -b build 1.1.8 This is the fourth in a series of snapshots working toward the 1.2 release of cairo. At this point, all major features of the 1.2 release are in place, leaving just a few bug fixes left. In particular, there will be no additional API changes between this 1.1.8 snapshot and the 1.2 release. The announcement for 1.1.6 mentioned several API changes being considered. Only one of these changes was actually implemented (set_dpi -> fallback_resolution). This change does introduce one source-level incompatibility with respect to previous 1.1.x snapshots, so see below for details. What is cairo =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Cairo is a 2D graphics library with support for multiple output devices. Currently supported output targets include the X Window System, win32, and image buffers. Experimental backends include OpenGL (through glitz), Quartz, XCB, PostScript and PDF file output. Cairo is designed to produce consistent output on all output media while taking advantage of display hardware acceleration when available (for example, through the X Render Extension). The cairo API provides operations similar to the drawing operators of PostScript and PDF. Operations in cairo including stroking and filling cubic B=E9zier splines, transforming and compositing translucent images, and antialiased text rendering. All drawing operations can be transformed by any affine transformation (scale, rotation, shear, etc.). Cairo has been designed to let you draw anything you want in a modern 2D graphical user interface. At the same time, the cairo API has been designed to be as fun and easy to learn as possible. If you're not having fun while programming with cairo, then we have failed somewhere---let us know and we'll try to fix it next time around. Cairo is free software and is available to be redistributed and/or modified under the terms of either the GNU Lesser General Public License (LGPL) version 2.1 or the Mozilla Public License (MPL) version 1.1. Where to get more information about cairo =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D The primary source of information about cairo is: http://cairographics.org/ The latest releases of cairo can be found at: http://cairographics.org/releases Snapshots of in-development versions of cairo: http://cairographics.org/snapshots The programming manual for using cairo: http://cairographics.org/manual Mailing lists for contacting cairo users and developers: http://cairographics.org/lists Answers to some frequently asked questions about cairo: http://cairographics.org/FAQ What's new in 1.1.8 compared to 1.1.6 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ** API Change ** ---------------- According to the plan mentioned in the 1.1.6 notes, one source-level incompatible change has been implemented. The following three functions have been removed from cairo's API: cairo_pdf_surface_set_dpi cairo_ps_surface_set_dpi cairo_svg_surface_set_dpi and in their place the following function has been added: cairo_surface_set_fallback_resolution The signature and semantics of the function remains the same, so it is a simple matter of changing the name of the function when calling it. As a transition mechanism, this snapshot will (on many systems) build to include the old symbols so that code previously compiled will still run. However, all source code using the old names must be updated before it will compile. And the upcoming 1.2 release is not anticipated to include the old symbols. Finally, it should be pointed out that the old symbols never existed in the supported API of any stable release of cairo. (In the stable 1.0 releases the PDF, PS, and SVG backends were advertised as experimental and unstable.) And, as always, cairo continues to maintain source and binary compatibility between major releases. So applications compiled against supported backends in a stable release of cairo (1.0.4 say) will continue to compile and run without modification against new major releases (1.2.0 say) without modification. API additions ------------- The following new functions have been added to cairo's API: cairo_surface_get_content cairo_debug_reset_static_data cairo_image_surface_get_data cairo_image_surface_get_format cairo_image_surface_get_stride cairo_win32_font_face_create_for_hfont New, backend-specific pkg-config files -------------------------------------- In addition to the original cairo.pc file, cairo will also now install a pkg-config files for each configured backend, (for example cairo-pdf.pc, cairo-svg.pc, cairo-xlib.pc, cairo-win32.pc, etc.) this also includes optional font backends (such as cairo-ft.pc) and the optional png functionality (cairo-png.pc). These new pkg-config files should be very convenient for allowing cairo-using code to easily check for the existing of optional functionality in cairo without having to write complex rules to grub through cairo header files or the compiled library looking for symbols. Printing backend (PS, PDF, and SVG) ----------------------------------- Improving the quality of the "printing" backends has been a priority of the development between cairo 1.1.6 and cairo 1.1.8. The big improvement here is in the area of text output. Previously, at best, text was output as paths without taking advantage of any font support available in the output file format. Now, at the minimum text paths will be shared by using type3 fonts (for PS and PDF---and similarly, defs for SVG). Also, if possible, type3 and truetype fonts will be embedded in PostScript and PDF output. There are still some known bugs with this, (for example, selecting text in a cairo-generated PDF file with an embedded truetype font does not work). So there will be some more changes in this area before cairo 1.2, but do try test this feature out as it exists so far. Many thanks to Kristian H=F8gsberg for the truetype and type1 font embedding. win32 backend ------------- Performance improvements by preferring GDI over pixman rendering when possi= ble. Fixes for text rendering. xlib backend ------------ Fix potentially big performance bug by making xlib's create_similar try harder to create a pixmap of a depth matching that of the screen. Bug fixes --------- Among various other fixes, the following bugs listed in bugzilla have been fixed: Bug 2488: Patch to fix pixman samping location bug (#2488). https://bugs.freedesktop.org/show_bug.cgi?id=3D2488 Bug 4196: undef MIN an MAX before defining to avoid duplicate definition https://bugs.freedesktop.org/show_bug.cgi?id=3D4196 Bug 4723: configure.in: Fix m4 quoting when examining pkg-config version https://bugs.freedesktop.org/show_bug.cgi?id=3D4723 Bug 4882: Flag Sun's X server has having buggy_repeat. https://bugs.freedesktop.org/show_bug.cgi?id=3D4882 Bug 5306: test/pdf2png: Add missing include of stdio.h https://bugs.freedesktop.org/show_bug.cgi?id=3D5306 Bug 7075: Fix make clean to remove cairo.def https://bugs.freedesktop.org/show_bug.cgi?id=3D7075 (Many thanks to Behdad Esfahbod for helping us track down and fix many of these.) Detailed list of changes since 1.1.6 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Tag '1.1.8' created by Carl Worth at 2006-06-14 16:17 -= 0700 cairo 1.1.8 snapshot -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEkCju6JDdNq8qSWgRAjdQAJ9jjY8MwIcyhpSxf8Yn50izT6wXRwCeJN3x XKToq1aoRwjXc1HujBI0wVo=3D =3DtwxK -----END PGP SIGNATURE----- Changes since 1.1.6: Behdad Esfahbod: Bug 7075: Fix make clean to remove cairo.def Move cairo.pc into src/. Add backend-specific pkg-config files. Rename cairo-wideint.h to cairo-wideint-private.h. Bertram Felgenhauer: Patch to fix pixman samping location bug (#2488). Bug 4723: configure.in: Fix m4 quoting when examining pkg-config vers= ion Brian Cameron: Bug 4882: Flag Sun's X server has having buggy_repeat. Carl Worth: Increment CAIRO_VERSION to 1.1.7 after making the 1.1.6 snapshot Revert "pdf2png: Use new poppler_page_render to render directly throu= gh cairo." Don't build pdf2svg until we start depending on newer poppler ROADMAP: non-substantive changes Add select-font-face test for whosing multiple faces at once. Fix typo in select-font-face.c and update reference images PS: Remove stale comment (the stuff TODO is done already) PS: Move type 3 support out into cairo-ps-font.c PS: Put functions in more logical order. Rename cairo-ps-font to cairo-scaled-font-subsets (file names only) Generalize font subsetting code in cairo-scaled-font-subsets for use = by more than just PS backend Fix cairo_output_stream_destroy to do nothing on nil stream objects. Tweak names to match those of cairo-scaled-font-subsets SVG: Discard custom font subsetting in favor of sharing cairo-scaled-= font-subsets Add documentation for the _cairo_scaled_font_subsets interface. Fix memory leak in _cairo_scaled_font_subsets_foreach PDF: Use cairo_pdf_resource_t more consistently. PDF: Fold (unused) cairo_pdf_document_t into cairo_pdf_surface_t Change scaled_font_subsets_callback to have return type of void. PS: Fix arguments to setcachedevice PS: Remove the fallback case from _cairo_ps_surface_show_glyphs PDF: Use consistent style for typedef struct and macro naming. PDF: Move Resources dictionary up from Page objects to Pages object. PDF: Add Type3 font support to PDF output. pixman: Fix build to enable warnings again pixman: Add default case to quiet compiler warning pixman: Remove unused code to quiet compiler warnings ROADMAP: Note that PDF type 3 font support is done PDF: Fix broken per-page sizes in PDF output. xlib: Rename surface->format to surface->xrender_format to avoid conf= usion xlib: Style cleanups for _cairo_xlib_surface_create_similar PDF: Squelch a couple of bogus "may be used uninitialized" warnings. Move prototype of cairo_debug_reset_static_data from uninstalled cair= o-debug.h to cairo.h Codify 1.0 behavior of cairo_set_line_width as a feature, not a bug. SVG: Fix for line-width-scale New test: dash-scale PDF: Rename pdf_stroke_t to pdf_path_into_t for future sharing with f= ill PDF: Share path callbacks for fill and stroke. Clarify the documentation for cairo_set_dash PDF: Move dash operator before path construction operators. ROADMAP: Note that the cairo_set_line_width issue is resolved Typo fixes cairo-xlib-test: Rename cairo_test_xlib function prefix to cairo_xlib= _test PDF: Add new, private test function: cairo_pdf_test_force_fallbacks Add new fallback-resolution test for bug in cairo_pdf_surface_set_dpi New API: Add new function cairo_surface_get_content Note the changed semantics of cairo_surface_set_device_offset New API: Add cairo_image_surface_get_{data,format,stride} Move rectangle functions to new cairo-rectangle.c Remove extraneous whitespace from "blank" lines. Remove trailing whitespace from lines that look like comments. Remove trailing whitespace from lines with a single brace. Remove all remaining trailing whitespace. Remove initial, final, and duplicate blank lines. CODING_STYLE: Add notes on avoiding trailing whitespace. CODING_STYLE: Fix misspellings. Fix bogus cairo_rectangle_fixed_t to be cairo_rectangle_int16_t. Remove CAIRO_{MIN,MAX}SHORT which did not distinguish signed vs. unsi= gned. win32: Add conditional definitions for INT16_{MIN,MAX} and UINT16_MAX= now that we use them. Fix MAX vs. MIN bug introduced with rename away from CAIRO_MINSHORT Change all instances of UINT16_MAX to INT16_MAX to avoid new bug. Remove debugging "prints" of images from test/device-offset.c Add new test get-group-target (currently failing with paginated). Fix bug in get-group-target (in the test itself) letting it now pass. Rename ft-text-vertical-layout reference image according to standard = convention. Ignore ft-text-vertical-layout binary New API: Replace cairo_{ps,pdf,svg}_set_dpi with new cairo_surface_se= t_fallback_resolution. Add REPLACED_BY macros to help porting to new set_fallback_resolution Rename device_{x,y}_offset to {x,y}_device_offset for better consiten= cy/grepability doc: SGML template churn Change {x,y}_device_offset values to a device_transform matrix. Hook up device scaling so fallback_resolution starts working. Add text and stroke to falback-resolution test (showing bugs in each). Fix line width for stroking with a device_scale. Fix font size when drawing text with a device_scale. Add cairo_{ps,svg}_test_force_fallbacks so tests can force fallbacks. Test PS and SVG backends in addition to PDF in test/fallback-resoluti= on. Clarify that fallback_resolution acts on a per-page granularity. Don't create a new scaled_font if there's a device_offset but no devi= ce_scale. Change _cairo_meta_surface_get_extents to return a bounded size. ROADMAP: Note that cairo_surface_set_fallback_resolution is in place = now. Add cairo-ps-test.h and cairo-svg-test.h to Makefile.am Add aliases for deprecated cairo_{pdf,ps,svg}_surface_set_dpi Change return type of _cairo_scaled_glyph_lookup to allow UNSUPPORTED. PS, PDF: Re-organize handling of bitmapped fonts to avoid invalid out= put. Merge branch 'truetype-subsetting' into cairo Merge branch 'type1-subsetting' into cairo Add new zero-alpha test to demonstrate (X server?) bug found by Paul = Giblock test/zero-alpha: Drop REPS from 100 to 10 for a faster test. Bug 4196: undef MIN an MAX before defining to avoid duplicate definit= ion ft: If glyph->format is not OUTLINE use _render_glyph_bitmap to coerc= e to a bitmap ROADMAP: Update with PDF bugs from minefield test. Slip non-1.0 regre= ssions off of 1.2. Add zero-alpha reference image to Makefile.am for the sake of make di= st PS PDF: Update reference images due to truetype subsetting Update refefence images due to pattern source shift. Update version to 1.1.8 and add notes to NEWS file. Christian Biesinger: Make BeOS compile again Add missing reference images to EXTRA_DIST Distribute make-html.pl Add "html" Makefile target to run make-html.pl Dom Lachowicz: Bug 5306: test/pdf2png: Add missing include of stdio.h Emmanuel Pacaud: SVG: Sets something sane in width and height if acquire source image = fails. SVG: Remove special case for unclipped CLEAR and SOURCE in paint when SVG: Fix cairo_svg_surface_restrict_to_version. Use CLEAR operator for initialisation of similar surface with a trans= parent color. SVG: Add reference images for fill-and-stroke-alpha. SVG: Implementation of glyph cache SVG: Emit glyphs at the beginning of defs section. SVG: Sets fallback resolution when compositing a meta surface. Jeff Muizelaar: Only destroy scaled glyphs if they are not in the cache. Jinghua Luo: glitz: Don't hardcode content type when initializing cairo surface Merge branch 'master' of git+ssh://jinghua@git.cairographics.org/git/= cairo Add ft-text-vertical-layout test case for vertical layout. freetype: Fix for test case ft-text-vertial-layout. Make image-*-ref.png image as reference image. freetype: Ignore global advance unconditionally. freetype: rework _transform_glyph_bitmap. ignore FC_MATRIX in font pattern. freetype: build fix for _transform_glyph_bitmap. xlib: bugfix for #7172. freetype: Return an error if the glyph format isn't outline or bitmap ROADMAP: Mark bugs FC_ADVANCE and _transform_glyph_bitmap as fixed. Kristian H=C3=B8gsberg: Documentation fixes (cairo_font_create -> cairo_scaled_font_create). Merge branch 'master' of git://git.freedesktop.org/git/cairo Update pdf font emit code to try to emit a truetype subset before typ= e3. Output pdf dicts for truetype subset fonts. Hook _cairo_truetype_subset_init() up to existing truetype subset cod= e. Switch to using Tm for text positioning and scale type3 fonts to unit= size. Add support for truetype subset to ps backend. Print out ps comment in the truetype emit code and update type3 ps co= mment. Remember to destroy cairo_pdf_ft_font_t once we've generated the subs= et. Set libcairo_font_subset_sources for ps, pdf, and svg backends. Remember to call _cairo_truetype_subset_fini() after outputting subse= t. Pull in type1 subset code from the cvs repo it was sitting in. Add code to emit type1 dicts to the pdf backend. Use RD and ND for delimiting glyph data instead of -| and |-. Only use the word wrap stream when emitting paths. Make ps surface use type1 subset code. Track glyph subset indices and use them in the output. Look for /-| or /RD tokens to determine the charstring delimiter toke= ns. Consolidate a few arrays into a array of structs. Remember to call cairo_type1_font_subset_destroy(). Handle seac charstring commands correctly. Clarify licensing of float formatting code. Remove cairo_public from _cairo_lzw_compress() definition. Robert O'Callahan: [xlib] Have create_similar try harder to create the right surface Stuart Parmenter: [win32] Allow for creating a font from a HFONT [win32] implement win32 show_glyphs [win32] fix win32_show_glyphs glyph offsets Tim Mooney: bug #6890: fix the signature for main() in pthread-show-text Vladimir Vukicevic: [xlib] implement _cairo_xlib_surface_show_glyphs [xlib] only do glyph extents computation if non-solid source. [win32] Add SHADEBLENDCAPS and SB_NONE definitions for older SDKs [win32] Add GdiFlush() calls after DIB creation, as per MSDN docs [win32] GDI is nearly always faster than pixman; use it whenever poss= ible CAIRO_SCALED_FONT_TYPE_* -> CAIRO_FONT_TYPE_* Whitespace fix Define kCGBitmapByteOrder32Host for when the SDK doesn't define it Zakharov Mikhail: pixman: fix compilation on HP-UX 11.11 --- .gitignore | 1=20 CODING_STYLE | 22=20 Makefile.am | 8=20 NEWS | 132 + RELEASING | 2=20 ROADMAP | 72=20 configure.in | 68=20 doc/public/Makefile.am | 1=20 doc/public/tmpl/cairo-pdf.sgml | 7=20 doc/public/tmpl/cairo-ps.sgml | 7=20 doc/public/tmpl/cairo-status.sgml | 7=20 doc/public/tmpl/cairo-svg.sgml | 7=20 doc/tutorial/src/include/cairo-tutorial-gtk.h | 8=20 doc/tutorial/src/include/cairo-tutorial-pdf.h | 4=20 doc/tutorial/src/include/cairo-tutorial-png.h | 4=20 doc/tutorial/src/include/cairo-tutorial-xlib.h | 2=20 doc/tutorial/src/include/cairo-tutorial.h | 1=20 doc/tutorial/src/lca.c | 6=20 pixman/src/Makefile.am | 4=20 pixman/src/fbcompose.c | 44=20 pixman/src/fbedge.c | 5=20 pixman/src/fbedgeimp.h | 8=20 pixman/src/fbmmx.c | 559 +++--- pixman/src/fbmmx.h | 2=20 pixman/src/fbpict.c | 39=20 pixman/src/fbpict.h | 3=20 pixman/src/fbtrap.c | 24=20 pixman/src/icblt.c | 96 - pixman/src/icbltone.c | 57=20 pixman/src/iccolor.c | 2=20 pixman/src/icformat.c | 30=20 pixman/src/icimage.c | 99 - pixman/src/icimage.h | 9=20 pixman/src/icint.h | 55=20 pixman/src/icpixels.c | 1=20 pixman/src/icrect.c | 30=20 pixman/src/icrop.h | 6=20 pixman/src/icstipple.c | 6=20 pixman/src/ictransform.c | 5=20 pixman/src/ictrap.c | 12=20 pixman/src/ictri.c | 31=20 pixman/src/icutil.c | 3=20 pixman/src/pixman-xserver-compat.h | 3=20 pixman/src/pixman.h | 20=20 pixman/src/pixregion.c | 76=20 pixman/src/pixregionint.h | 9=20 pixman/src/renderedge.c | 13=20 pixman/src/slim_internal.h | 4=20 src/.gitignore | 1=20 src/Makefile.am | 60=20 src/cairo-analysis-surface.c | 11=20 src/cairo-arc.c | 6=20 src/cairo-array.c | 33=20 src/cairo-atsui-font.c | 59=20 src/cairo-backend.pc.in | 12=20 src/cairo-base85-stream.c | 5=20 src/cairo-beos-surface.cpp | 5=20 src/cairo-beos.h | 1=20 src/cairo-cache.c | 32=20 src/cairo-clip-private.h | 8=20 src/cairo-clip.c | 55=20 src/cairo-debug.c | 3=20 src/cairo-directfb-surface.c | 104 - src/cairo-directfb.h | 13=20 src/cairo-font-options.c | 60=20 src/cairo-font-subset-private.h | 1=20 src/cairo-font-subset.c | 182 +- src/cairo-font.c | 42=20 src/cairo-ft-font.c | 471 +++-- src/cairo-glitz-surface.c | 48=20 src/cairo-gstate-private.h | 2=20 src/cairo-gstate.c | 185 -- src/cairo-hash.c | 54=20 src/cairo-hull.c | 2=20 src/cairo-image-surface.c | 132 + src/cairo-lzw.c | 4=20 src/cairo-matrix.c | 147 - src/cairo-meta-surface.c | 53=20 src/cairo-operator.c | 8=20 src/cairo-output-stream.c | 28=20 src/cairo-paginated-surface.c | 28=20 src/cairo-path-bounds.c | 8=20 src/cairo-path-data.c | 14=20 src/cairo-path-fill.c | 3=20 src/cairo-path-stroke.c | 22=20 src/cairo-path.c | 32=20 src/cairo-pattern.c | 122 - src/cairo-pdf-surface.c | 2009 +++++++++++++------= ----- src/cairo-pdf-test.h | 20=20 src/cairo-pdf.h | 5=20 src/cairo-pen.c | 18=20 src/cairo-png.c | 35=20 src/cairo-polygon.c | 2=20 src/cairo-ps-surface.c | 982 +++++------ src/cairo-ps-test.h | 20=20 src/cairo-ps.h | 5=20 src/cairo-quartz-private.h | 2=20 src/cairo-quartz-surface.c | 37=20 src/cairo-quartz.h | 1=20 src/cairo-rectangle.c | 85 + src/cairo-region.c | 17=20 src/cairo-scaled-font-subsets-private.h | 267 +++ src/cairo-scaled-font-subsets.c | 384 ++++ src/cairo-scaled-font.c | 195 +- src/cairo-slope.c | 6=20 src/cairo-spline.c | 3=20 src/cairo-stroke-style.c | 1=20 src/cairo-surface-fallback-private.h | 2=20 src/cairo-surface-fallback.c | 145 - src/cairo-surface.c | 461 +++-- src/cairo-svg-surface.c | 770 +++++---- src/cairo-svg-test.h | 20=20 src/cairo-svg.h | 9=20 src/cairo-traps.c | 51=20 src/cairo-type1-subset.c | 1040 ++++++++++++ src/cairo-unicode.c | 39=20 src/cairo-wideint-private.h | 11=20 src/cairo-wideint.c | 18=20 src/cairo-win32-font.c | 196 +- src/cairo-win32-private.h | 11=20 src/cairo-win32-surface.c | 299 ++- src/cairo-win32.h | 3=20 src/cairo-xcb-surface.c | 108 - src/cairo-xlib-private.h | 4=20 src/cairo-xlib-screen.c | 32=20 src/cairo-xlib-surface.c | 698 ++++---- src/cairo-xlib-test.h | 3=20 src/cairo-xlib-xrender.h | 1=20 src/cairo-xlib.h | 1=20 src/cairo.c | 246 +- src/cairo.h | 61=20 src/cairoint.h | 182 +- src/test-fallback-surface.c | 17=20 src/test-meta-surface.c | 9=20 src/test-paginated-surface.c | 5=20 test/.gitignore | 10=20 test/Makefile.am | 31=20 test/buffer-diff.c | 3=20 test/buffer-diff.h | 4=20 test/cairo-test-directfb.c | 20=20 test/cairo-test.c | 80=20 test/cairo-test.h | 5=20 test/caps-joins.c | 2=20 test/clip-all.c | 2=20 test/clip-nesting.c | 4=20 test/clip-operator.c | 14=20 test/dash-offset-negative.c | 8=20 test/dash-scale-ps-argb32-ref.png |binary test/dash-scale-ref.png |binary test/dash-scale.c | 125 + test/device-offset-ref.png |binary test/device-offset-rgb24-ref.png |binary test/device-offset.c | 87 + test/fallback-resolution.c | 178 ++ test/fill-and-stroke-alpha-svg-argb32-ref.png |binary test/fill-and-stroke-alpha-svg-rgb24-ref.png |binary test/fill-and-stroke.c | 2=20 test/filter-nearest-offset.c | 2=20 test/font-face-get-type.c | 4=20 test/ft-text-vertical-layout-pdf-argb32-ref.png |binary test/ft-text-vertical-layout-pdf-rgb24-ref.png |binary test/ft-text-vertical-layout-ps-argb32-ref.png |binary test/ft-text-vertical-layout-ps-rgb24-ref.png |binary test/ft-text-vertical-layout-ref.png |binary test/ft-text-vertical-layout-rgb24-ref.png |binary test/ft-text-vertical-layout-svg-argb32-ref.png |binary test/ft-text-vertical-layout-svg-rgb24-ref.png |binary test/ft-text-vertical-layout.c | 131 + test/get-and-set.c | 2=20 test/get-group-target-ref.png |binary test/get-group-target.c | 90 + test/gradient-alpha-ref.png |binary test/gradient-alpha-rgb24-ref.png |binary test/gradient-alpha.c | 2=20 test/imagediff.c | 4=20 test/line-width-scale-ps-argb32-ref.png |binary test/line-width-scale-ref.png |binary test/line-width-scale.c | 30=20 test/linear-gradient-ref.png |binary test/linear-gradient.c | 8=20 test/mask-ref.png |binary test/mask-rgb24-ref.png |binary test/mask.c | 8=20 test/operator-clear.c | 16=20 test/operator-source-ref.png |binary test/operator-source-rgb24-ref.png |binary test/operator-source.c | 18=20 test/pdf-features.c | 4=20 test/pdf2png.c | 39=20 test/pixman-rotate-rgb24-ref.png |binary test/pixman-rotate-svg-argb32-ref.png |binary test/pixman-rotate-svg-rgb24-ref.png |binary test/ps-features.c | 2=20 test/pthread-show-text.c | 2=20 test/push-group-ref.png |binary test/push-group-rgb24-ref.png |binary test/push-group.c | 2=20 test/read-png.c | 1=20 test/rectangle-rounding-error.c | 10=20 test/rel-path.c | 4=20 test/select-font-face-pdf-argb32-ref.png |binary test/select-font-face-ps-argb32-ref.png |binary test/select-font-face-ref.png |binary test/select-font-face-svg-argb32-ref.png |binary test/select-font-face-svg-rgb24-ref.png |binary test/select-font-face.c | 83=20 test/self-copy.c | 6=20 test/show-text-current-point-pdf-argb32-ref.png |binary test/show-text-current-point-ps-argb32-ref.png |binary test/source-clip.c | 2=20 test/surface-finish-twice.c | 1=20 test/surface-pattern.c | 2=20 test/svg-clip.c | 2=20 test/text-antialias-gray-pdf-argb32-ref.png |binary test/text-antialias-gray-ps-argb32-ref.png |binary test/text-antialias-none-pdf-argb32-ref.png |binary test/text-antialias-none-ps-argb32-ref.png |binary test/text-antialias-subpixel-pdf-argb32-ref.png |binary test/text-antialias-subpixel-ps-argb32-ref.png |binary test/text-cache-crash.c | 1=20 test/text-pattern-ref.png |binary test/text-pattern-rgb24-ref.png |binary test/text-pattern.c | 10=20 test/text-rotate.c | 2=20 test/transforms.c | 2=20 test/trap-clip-ref.png |binary test/trap-clip-rgb24-ref.png |binary test/trap-clip.c | 4=20 test/unbounded-operator.c | 16=20 test/user-data.c | 2=20 test/write-png.c | 4=20 test/xlib-surface.c | 20=20 test/xmalloc.c | 1=20 test/zero-alpha-ref.png |binary test/zero-alpha.c | 97 + 235 files changed, 8579 insertions(+), 4836 deletions(-) --pgp-sign-Multipart_Wed_Jun_14_09:01:49_2006-1 Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEkDL06JDdNq8qSWgRAlbkAJ92YIDTUafsLa/U2ZTiKZ9zO0WmFgCfc252 2Y2uyD4rr4R2jx+43617QZk= =vX2e -----END PGP SIGNATURE----- --pgp-sign-Multipart_Wed_Jun_14_09:01:49_2006-1-- From janina@opera.rednote.net Wed Jun 14 12:12:42 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 912A73B029F for ; Wed, 14 Jun 2006 12:12:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19357-07 for ; Wed, 14 Jun 2006 12:12:39 -0400 (EDT) Received: from opera.rednote.net (opera.rednote.net [70.84.142.212]) by menubar.gnome.org (Postfix) with ESMTP id ED02F3B0281 for ; Wed, 14 Jun 2006 12:12:38 -0400 (EDT) Received: from opera.rednote.net (localhost.localdomain [127.0.0.1]) by opera.rednote.net (8.13.6/8.13.5) with ESMTP id k5EGAtdS007700; Wed, 14 Jun 2006 16:10:55 GMT Received: (from janina@localhost) by opera.rednote.net (8.13.6/8.13.6/Submit) id k5EGAtD9007699; Wed, 14 Jun 2006 12:10:55 -0400 Date: Wed, 14 Jun 2006 12:10:55 -0400 From: Janina Sajka To: parente@cs.unc.edu Subject: Re: lsr-0.2.1 Message-ID: <20060614161055.GV2259@rednote.net> References: <5308fd2c0606120606p43b30477o4e73cfad155dcaa7@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5308fd2c0606120606p43b30477o4e73cfad155dcaa7@mail.gmail.com> User-Agent: Mutt/1.4.2.1i X-Operating-System: Linux opera.rednote.net 2.6.16-1.2122_FC5spksmp Organization: Capital Accessibility LLC (http://www.CapitalAccessibility.com) X-PGP-Key: http://www.CapitalAccessibility.com/JaninaSajka_gpg_key.html X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.568 tagged_above=-999 required=2 tests=[AWL=0.031, BAYES_00=-2.599] X-Spam-Score: -2.568 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 12:46:56 -0400 Cc: gnome-announce-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 16:12:42 -0000 Peter Parente writes: > ============== > * What is it ? > ============== > > Linux Screen Reader (LSR) is an extensible assistive technology for people > with > disabilities. The design philosophy behind LSR is to provide a core platform > that enables the development of LSR extensions for improving desktop > application accessibility and usability and shields extension developers > from > the intricacies of the desktop accessibility architecture. > snip snip Where can I get it ? rpm packages for Fedora Core 5 available from: ftp://SpeakupModified.Org/fedora/rednote/ The binary is under RPMS, and the source under SRPMS as usual with Fedora. Special Note: You may need to upgrade your Gnome Desktop to Fedora Development. If you find things not working with the current release and updated Gnome environment, try: yum --disablerepo='*' --enablerepo=development groupupdate 'GNOME Desktop Environment' Note the above command is issued on one line, though it's probably been broken into at least two lines in this email message. -- Janina Sajka Phone: +1.240.715.1272 Partner, Capital Accessibility LLC http://CapitalAccessibility.Com Marketing the Owasys 22C talking screenless cell phone in the U.S. and Canada--Go to http://ScreenlessPhone.Com to learn more. Chair, Accessibility Workgroup Free Standards Group (FSG) janina@freestandards.org http://a11y.org From janina@opera.rednote.net Wed Jun 14 12:17:56 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 08CF33B0156; Wed, 14 Jun 2006 12:17:56 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28336-10; Wed, 14 Jun 2006 12:17:54 -0400 (EDT) Received: from opera.rednote.net (opera.rednote.net [70.84.142.212]) by menubar.gnome.org (Postfix) with ESMTP id 2375F3B03DA; Wed, 14 Jun 2006 12:17:54 -0400 (EDT) Received: from opera.rednote.net (localhost.localdomain [127.0.0.1]) by opera.rednote.net (8.13.6/8.13.5) with ESMTP id k5EGH5iU007764; Wed, 14 Jun 2006 16:17:05 GMT Received: (from janina@localhost) by opera.rednote.net (8.13.6/8.13.6/Submit) id k5EGH5N6007763; Wed, 14 Jun 2006 12:17:05 -0400 Date: Wed, 14 Jun 2006 12:17:05 -0400 From: Janina Sajka To: Willie Walker Subject: Re: Announcing Orca 0.2.5 rpms Message-ID: <20060614161705.GW2259@rednote.net> References: <1150069937.5071.4.camel@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1150069937.5071.4.camel@localhost> User-Agent: Mutt/1.4.2.1i X-Operating-System: Linux opera.rednote.net 2.6.16-1.2122_FC5spksmp Organization: Capital Accessibility LLC (http://www.CapitalAccessibility.com) X-PGP-Key: http://www.CapitalAccessibility.com/JaninaSajka_gpg_key.html X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.569 tagged_above=-999 required=2 tests=[AWL=0.030, BAYES_00=-2.599] X-Spam-Score: -2.569 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 12:47:08 -0400 Cc: gnome-announce-list@gnome.org, gnome-accessibility-list@gnome.org, orca-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 16:17:56 -0000 rpm packages of Orca-0.2.5 for Fedora Core 5 are now available from: ftp://SpeakupModified.Org/fedora/rednote/ The binary is under RPMS, and the source under SRPMS as usual with Fedora. Installation There is yet some unresolved dependency issue with these rpms, so they probably will need to be installed using the --nodeps option as follows: rpm -Uv --nodeps orca-0.2.5-1.i386.rpm However, I can attest the resulting installation works for me on two different systems. I have first run: orca -t from the console, as the same user I am in the gui desktop. Once on the desktop, I have issued Alt-F2 and typed: orca -t again to get things started. Seems wrong, but is working for me on two systems. Special Note: You may need to upgrade your Gnome Desktop to Fedora Development. If you find things not working with the current release and updated Gnome environment, try: yum --disablerepo='*' --enablerepo=development groupupdate 'GNOME Desktop Environment' Note the above command is issued on one line, though it's probably been broken into at least two lines in this email message. -- Janina Sajka Phone: +1.240.715.1272 Partner, Capital Accessibility LLC http://CapitalAccessibility.Com Marketing the Owasys 22C talking screenless cell phone in the U.S. and Canada--Go to http://ScreenlessPhone.Com to learn more. Chair, Accessibility Workgroup Free Standards Group (FSG) janina@freestandards.org http://a11y.org From ross@golder.org Thu Jun 15 07:48:01 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D826D3B007D for ; Thu, 15 Jun 2006 07:48:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03520-09 for ; Thu, 15 Jun 2006 07:47:53 -0400 (EDT) Received: from black.golder.org (black.golder.org [81.6.249.35]) by menubar.gnome.org (Postfix) with ESMTP id BFA543B009A for ; Thu, 15 Jun 2006 07:47:49 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by black.golder.org (Postfix) with ESMTP id 6BF4B40AB; Thu, 15 Jun 2006 12:47:48 +0100 (BST) X-Virus-Scanned: amavisd-new at golder.org Received: from black.golder.org ([127.0.0.1]) by localhost (black.golder.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id H-Yje6ok1oMb; Thu, 15 Jun 2006 12:47:45 +0100 (BST) Received: from red (unknown [125.24.64.59]) by black.golder.org (Postfix) with ESMTP id B12633FE2; Thu, 15 Jun 2006 12:47:41 +0100 (BST) Subject: Subversion migration schedule (new cut-off is Fri 14 July) From: Ross Golder To: gnome-announce-list@gnome.org Content-Type: multipart/mixed; boundary="=-41kIj1JG8/E+h5tM2RXc" Date: Thu, 15 Jun 2006 18:47:06 +0700 Message-Id: <1150372026.9754.1.camel@red> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.519 tagged_above=-999 required=2 tests=[AWL=0.080, BAYES_00=-2.599] X-Spam-Score: -2.519 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 07:51:43 -0400 Cc: devel-announce@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 11:48:02 -0000 --=-41kIj1JG8/E+h5tM2RXc Content-Type: text/plain Content-Transfer-Encoding: 7bit As per below, it was decided that 23rd June was too soon before GUADEC, so the new cut-off date has been put back to 14th July. Regards, -- Ross --=-41kIj1JG8/E+h5tM2RXc Content-Disposition: inline Content-Description: Forwarded message - Re: Subversion migration schedule (new cut-off Fri 14 July?) Content-Type: message/rfc822 Return-Path: Received: from black.golder.org ([unix socket]) by black.golder.org (Cyrus v2.3.1-Invoca-RPM-2.3.1-2.6.fc5) with LMTPA; Fri, 02 Jun 2006 14:59:52 +0100 X-Sieve: CMU Sieve 2.3 Received: from localhost (localhost.localdomain [127.0.0.1]) by black.golder.org (Postfix) with ESMTP id 621804A93 for ; Fri, 2 Jun 2006 14:59:52 +0100 (BST) X-Virus-Scanned: amavisd-new at golder.org X-Spam-Score: 0.466 X-Spam-Level: X-Spam-Status: No, score=0.466 tagged_above=-99 required=2.5 tests=[AWL=0.466] Received: from black.golder.org ([127.0.0.1]) by localhost (black.golder.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 9MLIDaDvOs4S for ; Fri, 2 Jun 2006 14:59:49 +0100 (BST) Received: from menubar.gnome.org (menubar.gnome.org [209.132.176.177]) by black.golder.org (Postfix) with ESMTP id 570164A91 for ; Fri, 2 Jun 2006 14:59:48 +0100 (BST) Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 58DFF3B04AD; Fri, 2 Jun 2006 09:59:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30643-08; Fri, 2 Jun 2006 09:59:44 -0400 (EDT) Received: from menubar.gnome.org (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0CDFA3B0480; Fri, 2 Jun 2006 09:59:44 -0400 (EDT) X-Original-To: gnome-hackers@gnome.org Delivered-To: gnome-hackers@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 44C613B0480 for ; Fri, 2 Jun 2006 09:59:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30672-06 for ; Fri, 2 Jun 2006 09:59:41 -0400 (EDT) Received: from localhost.localdomain (unknown [125.25.17.26]) by menubar.gnome.org (Postfix) with ESMTP id 7067E3B0468 for ; Fri, 2 Jun 2006 09:59:39 -0400 (EDT) Received: by localhost.localdomain (Postfix, from userid 500) id 80BC09FC5E; Fri, 2 Jun 2006 20:59:23 +0700 (ICT) From: Ross Golder To: Jeff Waugh In-Reply-To: <20060601132052.GF5203@waugh.id.au> References: <1139648664.6627.40.camel@localhost> <1148971293.12902.2.camel@red> <20060601132052.GF5203@waugh.id.au> Content-Type: text/plain Date: Fri, 02 Jun 2006 20:59:23 +0700 Message-Id: <1149256763.6298.18.camel@red> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org Cc: gnome-hackers@gnome.org Subject: Re: Subversion migration schedule (new cut-off Fri 14 July?) X-BeenThere: gnome-hackers@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Hacking GNOME discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: gnome-hackers-bounces@gnome.org Errors-To: gnome-hackers-bounces@gnome.org X-Virus-Scanned: by amavisd-new at gnome.org Content-Transfer-Encoding: 7bit On Thu, 2006-06-01 at 23:20 +1000, Jeff Waugh wrote: > > > > As the various show-stoppers that prevented our previously scheduled > > migration from going ahead have now been resolved, I am proposing that the > > new migration go ahead at 23:59UTC on Friday 16th June 2006. Please let us > > know a.s.a.p if that will be inconvenient for anyone. > > Ross, > > Can I suggest that we do the migration after GUADEC? I think it would be > more useful for us to have reliable and known access to CVS through the week > than be dealing with post-migration woes (as clean as it will be, there will > be some hassles for everyone). > > Thanks, > > - Jeff > How about this - I'll run another test migration on the 23rd, but won't actually make the switch. At least then, if anyone at GUADEC wants to play with or demonstrate anything related to subversion, at least they will get fairly up-to-date code. So, looking at the release schedule, it looks like the next best date would be July 14th. How would that be? -- Ross _______________________________________________ gnome-hackers mailing list gnome-hackers@gnome.org http://mail.gnome.org/mailman/listinfo/gnome-hackers --=-41kIj1JG8/E+h5tM2RXc-- From gjc@inescporto.pt Thu Jun 15 15:10:39 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7C99F3B02BF for ; Thu, 15 Jun 2006 15:10:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 29070-01 for ; Thu, 15 Jun 2006 15:10:36 -0400 (EDT) Received: from animal.inescn.pt (correio.inescn.pt [194.117.24.9]) by menubar.gnome.org (Postfix) with ESMTP id 5CEBB3B016C for ; Thu, 15 Jun 2006 15:10:35 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by animal.inescn.pt (8.13.6/8.13.6/7) with ESMTP id k5FJ9a1H007835; Thu, 15 Jun 2006 20:09:36 +0100 (WEST) Received: from pong.inescporto.pt (pong.inescn.pt [194.117.26.74]) by animal.inescn.pt (8.13.6/8.13.6/5) with ESMTP id k5FJ9PGj007812; Thu, 15 Jun 2006 20:09:25 +0100 (WEST) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by pong.inescporto.pt (Postfix) with ESMTP id 63C2A1303A8; Thu, 15 Jun 2006 20:06:19 +0100 (WEST) Subject: ANNOUNCE: PyGTK 2.9.2 (unstable) From: "Gustavo J. A. M. Carneiro" To: PyGTK Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-RzvsD9ggP/SFbL+MHSSy" Date: Thu, 15 Jun 2006 20:09:24 +0100 Message-Id: <1150398564.5933.27.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at inescporto.pt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.428 tagged_above=-999 required=2 tests=[AWL=0.037, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.428 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 23:27:04 -0400 Cc: gnome-announce-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 19:10:39 -0000 --=-RzvsD9ggP/SFbL+MHSSy Content-Type: text/plain Content-Transfer-Encoding: quoted-printable I am pleased to announce version 2.9.2 of the Python bindings for GTK. The new release is available from ftp.gnome.org and its mirrors as soon as its synced correctly: http://ftp.gnome.org/pub/GNOME/sources/pygtk/2.9/ This is an unstable release and should be used with caution. It requires either GTK+ 2.8.x or GTK+ >=3D 2.9.3. Blurb: GTK is a toolkit for developing graphical applications that run on systems such as Linux, Windows and MacOS X. It provides a comprehensive set of GUI widgets, can display Unicode bidi text. It links into the Gnome Accessibility Framework through the ATK library. PyGTK provides a convenient wrapper for the GTK+ library for use in Python programs, and takes care of many of the boring details such as managing memory and type casting. When combined with PyORBit and gnome-python, it can be used to write full featured Gnome applications. Like the GTK+ library itself PyGTK is licensed under the GNU LGPL, so is suitable for use in both free software and proprietary applications. It is already in use in many applications ranging from small single purpose scripts up to large full features applications. pygtk-2.9.2 15-june-2006 - Fix a codegen bug that prevent build of other extensions (344845, Gus= tavo) - Builds with pycairo 1.1.6 (344957, Gustavo) - gtk.TextBuffer rich text copy and serialization (Finlay) - Correct Print Editor example (Gustavo) PyGTK requires GTK+ >=3D 2.8.0 and Python >=3D 2.3.5 to build. Bug reports, as always, should go to Bugzilla; check out http://pygtk.org/developer.html and http://pygtk.org/feedback.html for links to posting and querying bug reports for PyGTK. --=20 Gustavo J. A. M. Carneiro The universe is always one step beyond logic=09 --=-RzvsD9ggP/SFbL+MHSSy Content-Type: application/pgp-signature; name=signature.asc Content-Description: Esta =?ISO-8859-1?Q?=E9?= uma parte de mensagem assinada digitalmente -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (GNU/Linux) iD8DBQBEkbBk2XoHyMdS6TARAjgIAJ4upHdWvOey6x3eV21Ji6P58K+OhgCdGstN wEORPp04QwWKfmDGW0Dum/g= =Suqv -----END PGP SIGNATURE----- --=-RzvsD9ggP/SFbL+MHSSy-- From johnp@redhat.com Thu Jun 15 16:50:59 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8557E3B01FF; Thu, 15 Jun 2006 16:50:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00479-04; Thu, 15 Jun 2006 16:50:58 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 798313B00D0; Thu, 15 Jun 2006 16:50:58 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5FKndP2000921; Thu, 15 Jun 2006 16:49:39 -0400 Received: from lacrosse.corp.redhat.com (lacrosse.corp.redhat.com [172.16.52.154]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5FKnYTU014072; Thu, 15 Jun 2006 16:49:34 -0400 Received: from [172.16.80.35] (remedyz.boston.redhat.com [172.16.80.35]) by lacrosse.corp.redhat.com (8.12.11.20060308/8.11.6) with ESMTP id k5FKnYad010638; Thu, 15 Jun 2006 16:49:34 -0400 Subject: GNOME 2.15.3 Development Release From: "John (J5) Palmieri" To: devel-announce-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Date: Thu, 15 Jun 2006 16:49:34 -0400 Message-Id: <1150404574.5271.18.camel@remedyz.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.3 (2.7.3-2) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.449 tagged_above=-999 required=2 tests=[AWL=-0.079, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_GT=0.077, TW_JH=0.077, TW_YG=0.077] X-Spam-Score: -2.449 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 23:27:04 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 20:50:59 -0000 GNOME 2.15.3 Development Release ================================ It is that time again. Time to get it, time to build it and time to test it. The GNOME Release Team is proud to present the 2.15.3 development release. This is our third development release on our road towards GNOME 2.16.0, which will be released in September 2006. So go download it. Go compile it. Go test it. And go hack on it, document it, translate it, fix it. Note that gnome-applets, deskbar-applet and pygtk all need patches which can be found here gnome-applets: http://download.gnome.org/teams/releng/2.15.3/gswitchit.patch deskbar-applet: http://download.gnome.org/teams/releng/2.15.3/CuemiacPopupEntry.py.patch pygtk: http://download.gnome.org/teams/releng/2.15.3/defsparser.py.patch To compile GNOME 2.15.3, you can use GARNOME (will be released soon), or the jhbuild modulesets available at: http://download.gnome.org/teams/releng/2.15.3/ The release notes that describe the changes between 2.15.2 and 2.15.3 are available. Go read them to learn all the goodness of this release: platform - http://download.gnome.org/platform/2.15/2.15.3/NEWS desktop - http://download.gnome.org/desktop/2.15/2.15.3/NEWS admin - http://download.gnome.org/admin/2.15/2.15.3/NEWS bindings - http://download.gnome.org/bindings/2.15/2.15.3/NEWS Here are some figures about this release: admin 2.15.3 statistics: tar.gz: 792K total tar.bz2: 616K total bindings 2.15.3 statistics: tar.gz: 21M total tar.bz2: 15M total desktop 2.15.3 statistics: tar.gz: 156M total tar.bz2: 114M total platform 2.15.3 statistics: tar.gz: 53M total tar.bz2: 37M total The GNOME 2.15.3 release is available here: platform sources - http://download.gnome.org/platform/2.15/2.15.3/ desktop sources - http://download.gnome.org/desktop/2.15/2.15.3/ admin sources - http://download.gnome.org/admin/2.15/2.15.3/ bindings sources - http://download.gnome.org/bindings/2.15/2.15.3/ WARNING! WARNING! WARNING! -------------------------- This release is a snapshot of development code. Although it is buildable and usable, it is primarily intended for testing and hacking purposes. GNOME uses odd minor version numbers to indicate development status. For more informations about 2.15, the full schedule, the official module lists and the proposed modules list, please see our shiny 2.15 page: http://www.gnome.org/start/unstable/ We hope you'll love it, The GNOME Release Team -- John (J5) Palmieri From guenther@rudersport.de Thu Jun 15 17:06:31 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1F0DB3B0237; Thu, 15 Jun 2006 17:06:31 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00750-05; Thu, 15 Jun 2006 17:06:30 -0400 (EDT) Received: from rudersport.de (rudersport.de [192.220.91.203]) by menubar.gnome.org (Postfix) with ESMTP id 427033B00D0; Thu, 15 Jun 2006 17:06:30 -0400 (EDT) Received: from [10.0.0.2] (IP-213157009217.dialin.heagmedianet.de [213.157.9.217]) by rudersport.de (8.12.11.20060308) id k5FL5jDY040713; Thu, 15 Jun 2006 15:05:46 -0600 (MDT) Subject: [ANNOUNCE] GARNOME 2.15.3 From: guenther To: garnome-list@gnome.org Content-Type: text/plain Date: Thu, 15 Jun 2006 23:05:43 +0200 Message-Id: <1150405543.8323.15.camel@monkey.loc> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.053 tagged_above=-999 required=2 tests=[AWL=-0.451, BAYES_00=-2.599, SUBJ_ALL_CAPS=0.997] X-Spam-Score: -2.053 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 23:27:04 -0400 Cc: gnome-announce-list@gnome.org, gnome-love@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 21:06:31 -0000 GARNOME 2.15.3 ============== The "It's quiet out there... Yes... Too quiet..." release. What seemed to be no last minute releases turned out to be a broken list server, holding back the official GNOME release for a day. Also, there have been a bunch of build issues this time around, more than usual. Some good cooperation between the Release Team and the GARNOME Team (especially Joseph) hacked around the brokeness, thus... We are pleased to announce the release of GARNOME 2.15.3 Desktop and Developer Platform. This release includes all of GNOME 2.15.3 plus a whole bunch of updates that were released after the GNOME freeze date. This is the third release in the unstable cycle, with more features, more fixes and yet more madness added. It is for anyone who wants to get his hands dirty on the development branch, or who'd like to get a peek at future features. If you want to help spot issues in GARNOME, (or, better yet, fix 'em ;-) this release is for you as well. As usual, you can get the tarball directly from the gnome.org site: http://download.gnome.org/sources/garnome/2.15/ Note: GNOME 2.15.x is an unstable branch and is assumed to be a moving target. Therefore, things in this release may not work as advertised. If you find any issues with this release, feel free to contact the GARNOMEies in the #garnome channel on GIMPNet (irc://irc.gnome.org), where we hang out, or post to the mailing list. More information is available at our project website: http://www.gnome.org/projects/garnome/ Enjoy, The GARNOME Team -- char *t="\10pse\0r\0dtu\0.@ghno\x4e\xc8\x79\xf4\xab\x51\x8a\x10\xf4\xf4\xc4"; main(){ char h,m=h=*t++,*x=t+2*h,c,i,l=*x,s=0; for (i=0;i>=1)||!t[s+h]){ putchar(t[s]);h=m;s=0; }}} From behdad.esfahbod@gmail.com Thu Jun 15 17:39:14 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 21DF83B0232 for ; Thu, 15 Jun 2006 17:39:14 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02006-04 for ; Thu, 15 Jun 2006 17:39:13 -0400 (EDT) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.237]) by menubar.gnome.org (Postfix) with ESMTP id 17AEE3B0007 for ; Thu, 15 Jun 2006 17:39:13 -0400 (EDT) Received: by wr-out-0506.google.com with SMTP id 37so427823wra for ; Thu, 15 Jun 2006 14:38:12 -0700 (PDT) Received: by 10.54.108.13 with SMTP id g13mr2187733wrc; Thu, 15 Jun 2006 14:38:11 -0700 (PDT) Received: from ?192.168.190.5? ( [72.136.156.47]) by mx.gmail.com with ESMTP id 6sm1544376wrl.2006.06.15.14.38.10; Thu, 15 Jun 2006 14:38:11 -0700 (PDT) Subject: Women's Summer Outreach Program 2006 From: Behdad Esfahbod To: gnome-hackers@gnome.org, foundation-list@gnome.org, foundation-announce@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Date: Thu, 15 Jun 2006 17:38:06 -0400 Message-Id: <1150407487.29623.12.camel@home> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 (2.6.1-1.fc5.2) Content-Transfer-Encoding: 7bit Sender: Behdad Esfahbod X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.6 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.6 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 23:27:04 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 21:39:14 -0000 GNOME to Sponsor Female Developers in a Summer Outreach Program BOSTON, Mass - June 13, 2006 - The GNOME Foundation is offering USD$9000 to female students in order to promote the participation of women in GNOME-related development. The money originates from GNOME's participation in the Google "Summer of Code" program (code.google.com/soc/), for which GNOME developers will mentor 20 students working throughout the northern summer on GNOME-related projects. This year GNOME received 181 applications to Google's program, yet none were from women. The GNOME Foundation has therefore chosen to reinvest Google's contribution into a new program designed to increase the participation of women in GNOME. The program has no official relationship with Google. "Free software prides itself on being open to anyone with a good idea, yet less than 2% of free software developers are female. We, as a community, need to be actively working to change this statistic, and programs like this one are a much needed step in the right direction." said Hanna Wallach, a GNOME developer who is involved in several projects that encourage women to participate in free software development. The Women's Summer Outreach Program is currently accepting applications from female students. Accepted students will receive a stipend of USD $3000 over a two month period. A pool of project ideas is provided at www.gnome.org/projects/wsop/, though original proposals are also encouraged. Projects may either be related to GNOME directly, or indirectly via projects such as Gstreamer and Abiword. Each student will be assigned a mentor to provide guidance throughout the program. Vincent Untz, member of the GNOME Foundation board and coordinator of the GNOME team for Google's "Summer of Code" program, explained: "Many women have the skills required to contribute to Free Software projects like GNOME, but may not see an opportunity to start working with us. By initiating this program, not only do we want to highlight the issue, but we also hope that this opportunity will help more women to get involved in the long term." Applications should be submitted using the form at www.gnome.org/projects/wsop/. More information about the application process may be found at the same location. From cworth@cworth.org Fri Jun 16 13:14:11 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7C02B3B0125 for ; Fri, 16 Jun 2006 13:14:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07413-02 for ; Fri, 16 Jun 2006 13:14:09 -0400 (EDT) Received: from theworths.org (cworth.org [217.160.249.188]) by menubar.gnome.org (Postfix) with ESMTP id B2BA33B0128 for ; Fri, 16 Jun 2006 13:14:08 -0400 (EDT) Received: (qmail 6134 invoked from network); 16 Jun 2006 13:13:38 -0400 Received: from localhost (HELO raht.cworth.org) (127.0.0.1) by localhost with SMTP; 16 Jun 2006 13:13:38 -0400 Date: Fri, 16 Jun 2006 10:08:58 -0700 Message-ID: <878xnxc9jp.wl%cworth@cworth.org> From: Carl Worth To: cairo-announce@cairographics.org Subject: cairo snapshot 1.1.10 now available User-Agent: Wanderlust/2.14.0 (Africa) Emacs/21.4 Mule/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: multipart/signed; boundary="pgp-sign-Multipart_Fri_Jun_16_10:08:52_2006-1"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.4 tagged_above=-999 required=2 tests=[AWL=-0.090, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, TW_BX=0.077, TW_IB=0.077] X-Spam-Score: -2.4 X-Spam-Level: X-Mailman-Approved-At: Sat, 17 Jun 2006 00:52:39 -0400 Cc: gnome-announce-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2006 17:14:11 -0000 --pgp-sign-Multipart_Fri_Jun_16_10:08:52_2006-1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable A new cairo snapshot 1.1.10 is now available from: http://cairographics.org/snapshots/cairo-1.1.10.tar.gz which can be verified with: http://cairographics.org/snapshots/cairo-1.1.10.tar.gz.sha1 709d48dbcd0ac806e4f7bfd1f69314e4dfb57329 cairo-1.1.10.tar.gz http://cairographics.org/snapshots/cairo-1.1.10.tar.gz.sha1.asc (signed by Carl Worth) Additionally, a git clone of the source tree: git clone git://git.cairographics.org/git/cairo will include a signed 1.1.10 tag which points to a commit named: 65e73c81b83222de873935cf384e514ea20ac854 which can be verified with: git verify-tag 1.1.10 and can be checked out with a command such as: git checkout -b build 1.1.10 This is the fifth in a series of snapshots working toward the 1.2 release of cairo. The primary motivation for this snapshot is to fix a long-standing bug that had long been silent, but as of the 1.1.8 snapshot started causing crashes when run against 16-bit depth X servers, (often Xvnc or Xnest). The fix for this adds a new CAIRO_FORMAT_RGB16_565 to the API. This snapshot also includes a rewrite of cairo's SVG backend to eliminate the dependency on libxml2. With this in place, cairo 1.2 will not depend on any libraries that cairo 1.0 did not. As usual, there are also a few fixes for minor bugs. What is cairo =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Cairo is a 2D graphics library with support for multiple output devices. Currently supported output targets include the X Window System, win32, and image buffers. Experimental backends include OpenGL (through glitz), Quartz, XCB, PostScript and PDF file output. Cairo is designed to produce consistent output on all output media while taking advantage of display hardware acceleration when available (for example, through the X Render Extension). The cairo API provides operations similar to the drawing operators of PostScript and PDF. Operations in cairo including stroking and filling cubic B=E9zier splines, transforming and compositing translucent images, and antialiased text rendering. All drawing operations can be transformed by any affine transformation (scale, rotation, shear, etc.). Cairo has been designed to let you draw anything you want in a modern 2D graphical user interface. At the same time, the cairo API has been designed to be as fun and easy to learn as possible. If you're not having fun while programming with cairo, then we have failed somewhere---let us know and we'll try to fix it next time around. Cairo is free software and is available to be redistributed and/or modified under the terms of either the GNU Lesser General Public License (LGPL) version 2.1 or the Mozilla Public License (MPL) version 1.1. Where to get more information about cairo =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D The primary source of information about cairo is: http://cairographics.org/ The latest releases of cairo can be found at: http://cairographics.org/releases Snapshots of in-development versions of cairo: http://cairographics.org/snapshots The programming manual for using cairo: http://cairographics.org/manual Mailing lists for contacting cairo users and developers: http://cairographics.org/lists Answers to some frequently asked questions about cairo: http://cairographics.org/FAQ Detailed list of changes since 1.1.8 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Tag '1.1.10' created by Carl Worth at 2006-06-16 17:53 = -0700 cairo 1.1.10 snapshot -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEkuIi6JDdNq8qSWgRArhnAJ4hDlfpnWYY9bj0NVs7ZMl+XKsaXwCffRLz HMhowJx6or+LK99tRtZO5YM=3D =3DAsAw -----END PGP SIGNATURE----- Changes since 1.1.8: Behdad Esfahbod: Use enum time instead of int (shuts intel compiler up.) Merge branch 'cairo' into cairo-origin Carl Worth: Increment CAIRO_VERSION to 1.1.9 after making the 1.1.8 snapshot _cairo_format_from_pixman_format: Add useful error mesage and asserti= on when failing. Remove _cairo_image_surface_is_alpha_only in favor of just looking at= content value. Drop _cairo_surface_is_opaque now that we have cairo_surface_get_cont= ent Add missing breaks in switch statement. New API: Add support for new CAIRO_FORMAT_RGB16_565 Update release rules in Makefile to add git signature information. Annoying doc template churn. Update version to 1.1.10 and add notes to NEWS file. Emmanuel Pacaud: SVG: Update of reference images. Jinghua Luo: xlib: free resources before return if looking up glyph surface fails. Kristian H=F8gsberg: Make cairo_output_stream_t an embeddable type. Convert the stdio output stream to use the new output stream interfac= e. Convert the word wrap stream, the base85 stream and the ps string str= eam. Add an in-memory output-stream implementation. Only run fallback-resolution test case when all of PDF, PS and SVG ar= e enabled. Rewrite SVG backend to just use cairo output stream instead of libxml= 2. Remove libxml2 checks from configure.in. Actually add src/cairo-output-stream-private.h. Merge branch 'svg-rewrite' Add test case for the PDF, PS and SVG stream constructors. Only call close function for output streams if it's non-NULL. Add cairo-output-stream-private.h to libcairo_la_SOURCES. Torsten Sch=F6nfeld: Add missing cairo_public tag for cairo_image_surface_get_stride --- Makefile.am | 25=20 NEWS | 17=20 RELEASING | 2=20 configure.in | 20=20 doc/public/tmpl/cairo-image.sgml | 1=20 pixman/src/icformat.c | 6=20 pixman/src/pixman.h | 3=20 pixman/src/pixregion.c | 2=20 src/Makefile.am | 1=20 src/cairo-base85-stream.c | 28=20 src/cairo-image-surface.c | 98 + src/cairo-output-stream-private.h | 156 ++ src/cairo-output-stream.c | 188 ++- src/cairo-pattern.c | 2=20 src/cairo-pdf-surface.c | 1=20 src/cairo-ps-surface.c | 45=20 src/cairo-surface.c | 37=20 src/cairo-svg-surface.c | 1170 ++++++++--------= ----- src/cairo-type1-subset.c | 1=20 src/cairo-xlib-surface.c | 2=20 src/cairo.h | 8=20 src/cairoint.h | 85 - test/Makefile.am | 10=20 test/create-for-stream.c | 218 +++ test/linear-gradient-svg-argb32-ref.png |binary test/linear-gradient-svg-rgb24-ref.png |binary test/mask-svg-argb32-ref.png |binary test/mask-svg-rgb24-ref.png |binary test/paint-source-alpha-svg-argb32-ref.png |binary test/paint-source-alpha-svg-rgb24-ref.png |binary test/paint-with-alpha-svg-argb32-ref.png |binary test/paint-with-alpha-svg-rgb24-ref.png |binary test/push-group-svg-argb32-ref.png |binary test/push-group-svg-rgb24-ref.png |binary test/scale-source-surface-paint-svg-argb32-ref.png |binary test/scale-source-surface-paint-svg-rgb24-ref.png |binary test/text-pattern-svg-argb32-ref.png |binary test/text-pattern-svg-rgb24-ref.png |binary test/trap-clip-svg-argb32-ref.png |binary test/trap-clip-svg-rgb24-ref.png |binary 40 files changed, 1171 insertions(+), 955 deletions(-) --pgp-sign-Multipart_Fri_Jun_16_10:08:52_2006-1 Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEkuWq6JDdNq8qSWgRAqI6AJ42+4WuUfwFtayn9C8dh+r/xTk4OACeMMgt Cdpk2ar//g0UaT0w77grJjc= =kUjC -----END PGP SIGNATURE----- --pgp-sign-Multipart_Fri_Jun_16_10:08:52_2006-1-- From doclivingston@gmail.com Sun Jun 18 02:45:17 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 001613B014D for ; Sun, 18 Jun 2006 02:45:17 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27928-05 for ; Sun, 18 Jun 2006 02:45:15 -0400 (EDT) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.179]) by menubar.gnome.org (Postfix) with ESMTP id C709D3B0158 for ; Sun, 18 Jun 2006 02:45:14 -0400 (EDT) Received: by py-out-1112.google.com with SMTP id c39so971442pyd for ; Sat, 17 Jun 2006 23:43:58 -0700 (PDT) Received: by 10.35.89.10 with SMTP id r10mr6756008pyl; Sat, 17 Jun 2006 23:43:58 -0700 (PDT) Received: from alyrion.local ( [144.134.102.218]) by mx.gmail.com with ESMTP id k13sm2076296pyf.2006.06.17.23.43.55; Sat, 17 Jun 2006 23:43:57 -0700 (PDT) Subject: Rhythmbox 0.9.5 From: "James \"Doc\" Livingston" To: Rhythmbox-devel list , gnome-announce-list@gnome.org Content-Type: text/plain; charset=UTF-8 Date: Sun, 18 Jun 2006 16:43:53 +1000 Message-Id: <1150613033.6027.23.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.53 tagged_above=-999 required=2 tests=[AWL=0.070, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.53 X-Spam-Level: X-Mailman-Approved-At: Sun, 18 Jun 2006 10:56:33 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: rhythmbox-devel@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 06:45:17 -0000 G'day Everyone, On behalf of the Rhythmbox developers, I'm proud to announce the sixth release of the Rhythmbox 0.9 series, which includes a large number of fixes, improvements and new features. Notable new features include: - Improved plugin support, and several features converted to plugins - An album art viewing and download plugin - A song lyric viewing and download plugin - Ogg Vorbis tag editing [0] - Partial iPod write support [1] - Improved audio player and DAAP support - CD ripping and track transfer enabled by default - Updated documentation and many, many more improvements, bug fixes and new minor features. See below for more details. [0] requires a GStreamer plugin not yet in cvs, see bug 335635 [1] off by default, pass --enable-ipod-writing to enable. * What is Rhythmbox ? ===================== Rhythmbox is an integrated music management application, originally inspired by Apple's iTunes. It is free software, designed to work well under the GNOME Desktop, and based on the powerful GStreamer media framework. * What's changed in 0.9.5 ? =========================== * fix icon themability (Steve Frécinaux) * handle iPods that have been repartitioned (Christophe Fergeau: 325034) * allow ipod renaming, ejection, deletion and transfer (Christophe Fergeau) * make iradio handling work much better (Jonathan Matthew: 320336, 324402) * improve out-of-process metadata loader (Jonathan Matthew: 338062) * update documentation (Baptiste Mille-Mathias, ) * pluginise iPod and Generic players (Christophe Fergeau, Jonathan Matthew) * support saving playlists as M3U (Gavin Stewart: 316295) * remember browser visibility when changing sources (Alex Lancaster: 118862) * handle media unmounts better (Jonathan Matthew: 339023) * make entry types be a structure, and add support for extended data, and various method implementations (Christophe Fergeau, James Livingston) * album art view&download plugin (Alex Lancaster, James Livingston, Gareth Murphy, William Jon McCann, Martin Szulecki) * update the FSF's address (Gunnar Steinn Magnusson) * much improved Python bindings (James Livingston, Jonathan Matthew) * fix some translation issues (Nguyễn Thái Ngọc Duy, James Livingston: 339380, 343081) * improve startup time (James Livingston, Jonathan Matthew) * fix audioscrobbler submission, and allow viewing of info (Jonathan Matthew: 325848) * improve DBus interface (Jonathan Matthew, Tim Moloney) * allow transcoding during track transfer (Alessandro Decina: 322268) * cd burning fixes and improvements (William Jon McCann) * podcast feed parsing and download fixes (James Livingston: 339728) * turn the playback backend into a full GObject interface (James Livingston: 338667) * add more API documentation (Jonathan Mattjew) * add vorbis tag editing (James Livingston: 339878) * fix various threading insanities (Jonathan Matthew) * display "child libraries" with multiple library locations (James Livingston: 100552) * improve drag-and-drop from browsers (Jonathan Matthew: 327540) * support Motorola ROKR phones (Joe Barnett) * make query model limits saner (Janes Livingston) * source cleanup and API improvement (James Livingston, Jonathan Matthew) * improve status feedback for DAAP (Jonathan Matthew: 322020 and 338978) * memory improvement and leak fixed (James Livingston, Jonathan Matthew) * kill Bonobo support, require DBus, support DBus 0.3.0 (Jonathan Matthew: 339720) * add lyric download and view plugin (Jonathan Matthew: 319320) * add "add to playlist" menu (James Livingston: 323364) * allow changing of audio cd metadata (James Livingston) * improve DAAP handling (William Jon McCann: 342643) * update and write new unit tests (James Livingston) * group sources (Jonathan Matthew) * add new "rhythmbox-client" program (Jonathan Matthew: 340863, 155763) * assorted build fixes (Brian Cameron, Paul Drain, Elijah Newren, Hendrik Richter, Ryan P Skadberg, Götz Waschk, Pawel Worach, FreeBSD GNOME project, others) * HIG and UI improvements (Dennis Cranston, Baptiste Mille-Mathias) * many other bug fixed (Christophe Fergeau, Jaap A. Haitsma, James Livingston, Jonathan Matthew, Mikael Olenfalk, Roozbeh Pournader) Updated Translations -------------------- ca Jordi Mallach cs Miloslav Trmac de Hendrik Richter es Francisco Javier F. Serrador fi Ilkka Tuohela gl Ignacio Casal Quinteiro lt Žygimantas Beručka nb Øivind Hoel, Kjartan Maraas nl Vincent van Adrighem, Wouter Bolsterlee sv Fredrik Tuomas vi Clytie Siddall zh_CN Funda Wang * Where can I get it ? ====================== Source code: http://ftp.gnome.org/pub/GNOME/sources/rhythmbox/0.9/rhythmbox-0.9.5.tar.gz [MD5 sum: 3cbce0fd5ed948e13dabe7be7b9353e9] http://ftp.gnome.org/pub/GNOME/sources/rhythmbox/0.9/rhythmbox-0.9.5.tar.bz2 [MD5 sum: ff55e1db114321b7bdd6e21df1879367] Home Page: http://www.rhythmbox.org/ James "Doc" Livingston From mclasen@redhat.com Tue Jun 20 11:22:11 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3B32C3B043F; Tue, 20 Jun 2006 11:22:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22457-09; Tue, 20 Jun 2006 11:22:09 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 71CF13B00E7; Tue, 20 Jun 2006 11:22:09 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5KFLLnL004523; Tue, 20 Jun 2006 11:21:21 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [172.16.76.12]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5KFLLNA016479; Tue, 20 Jun 2006 11:21:21 -0400 Received: from golem.boston.redhat.com (golem.boston.redhat.com [172.16.80.24]) by mail.boston.redhat.com (8.12.8/8.12.8) with ESMTP id k5KFLKdH032719; Tue, 20 Jun 2006 11:21:20 -0400 Subject: GLib 2.11.4 released From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-list@gnome.org, gtk-app-devel-list@gnome.org Content-Type: text/plain Date: Tue, 20 Jun 2006 11:21:20 -0400 Message-Id: <1150816880.15532.58.camel@golem.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.1 (2.7.1-1) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.543 tagged_above=-999 required=2 tests=[AWL=0.058, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.543 X-Spam-Level: X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2006 15:22:11 -0000 GLib 2.11.4 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.11/ http://ftp.gnome.org/pub/GNOME/sources/glib/2.11/ glib-2.11.4.tar.bz2 md5sum: 9d3a94baa4bfcd9a579b45eea6de3a8c glib-2.11.4.tar.gz md5sum: f7768bc7ed524c6b40cb87daccb6c2b2 This is a development release leading up to GLib 2.12. Notes: * This is unstable development release. While it has had a bit of testing, there are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GLib 2.10. If you have problems, you'll need to reinstall GLib 2.10. * GLib 2.12 will be source and binary compatible with the GLib 2.10.x series (for some caveats, see the README). At this point, the API additions in the 2.11.x series are finished. * Bugs should be reported to http://bugzilla.gnome.org. About GLib ========== GLib is the low-level core library that forms the basis for projects such as GTK+ and GNOME. It provides data structure handling for C, portability wrappers, and interfaces for such runtime functionality as an event loop, threads, dynamic loading, and an object system. More information about GLib is available at: http://www.gtk.org/ An installation guide for the GTK+ libraries, including GLib, can be found at: http://developer.gnome.org/doc/API/2.0/gtk/gtk-building.html Overview of Changes from GLib 2.11.3 to GLib 2.11.4 =================================================== * GBookmarkFile: - g_bookmark_file_remove_item returns a boolean * g_mkstemp accepts the XXXXXX in the middle of the template * Bugs fixed: 344868 g_key_file_to_data should separate groups * Updated translations (de,es,fr,gu,hi,ko,th) A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=344868 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Emmanuele Bassi, Christian Persch, Federico Mena Quintero Matthias Clasen June 20, 2006 From joeshaw@novell.com Mon Jun 19 16:10:21 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id ABD293B0D15 for ; Mon, 19 Jun 2006 16:10:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30318-02 for ; Mon, 19 Jun 2006 16:10:20 -0400 (EDT) Received: from peabody.ximian.com (peabody.ximian.com [130.57.169.10]) by menubar.gnome.org (Postfix) with ESMTP id C79993B084E for ; Mon, 19 Jun 2006 16:10:19 -0400 (EDT) Received: (qmail 29764 invoked from network); 19 Jun 2006 20:09:04 -0000 Received: from localhost (HELO posthaste.boston.ximian.com) (joe@127.0.0.1) by localhost with SMTP; 19 Jun 2006 20:09:04 -0000 Subject: ANNOUNCE: Beagle 0.2.7 From: Joe Shaw To: dashboard-hackers@gnome.org Content-Type: text/plain; charset=UTF-8 Date: Mon, 19 Jun 2006 16:08:58 -0400 Message-Id: <1150747738.21037.1.camel@posthaste.boston.ximian.com> Mime-Version: 1.0 X-Mailer: Evolution 2.6.0 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.362 tagged_above=-999 required=2 tests=[AWL=-0.194, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, TW_BG=0.077, TW_GT=0.077, TW_XD=0.077] X-Spam-Score: -2.362 X-Spam-Level: X-Mailman-Approved-At: Tue, 20 Jun 2006 11:54:51 -0400 Cc: gnome-announce-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jun 2006 20:10:21 -0000 Hi, I'm happy to announce the release of Beagle 0.2.7. This version fixes the dreaded "Lock obtain timed out" bug, includes a new SVG and marks the return of the CHM filter. It introduces a compressed text cache, so that the disk space needed to generate snippets is greatly reduced, and many more bug fixes. OUR MANY URLS ------------- To download the 0.2.7 tarball or learn more, visit the Beagle wiki at: http://www.beagle-project.org The latest gossip is available at: http://www.planetbeagle.org Nat Friedman made some cool movies that demonstrate Beagle in action: http://nat.org/demos We still talk about Beagle on the dashboard-hackers mailing list: http://mail.gnome.org/mailman/listinfo/dashboard-hackers Info on Beagle's participation in Google's Summer of Code can be found here: http://beagle-project.org/Summer_Of_Code WHAT IS BEAGLE? --------------- Beagle is a tool for indexing and searching your data. Beagle is improving rapidly on many fronts, and should work well enough for everyday use. The Beagle daemon transparently monitors your data and updates the index to reflect any changes. On an inotify-enabled system, these updates happen more-or-less in real time. So for example, * Files are immediately indexed when they are created, are re-indexed when they are modified, and are dropped from the index upon deletion. * E-mails are indexed upon arrival. * IM conversations are indexed as you chat, a line at a time. Beagle supports many different file formats including OpenOffice documents, Microsoft Word documents, PDFs, HTML files, and many image, audio and video formats. Beagle can extract information from your file system, Evolution and KMail mailboxes, Evolution calendars and addressbooks, Gaim and Kopete instant messenger conversations, several RSS aggregators, Tomboy notes, Konqueror browsing history, system documentation, and many others. Beagle also indexes tags on your photos from F-Spot and Digikam. Beagle also provides Firefox and Epiphany extensions that index web pages in real-time as the user visits them. Beagle uses the Lucene indexing system from the prodigious Doug Cutting. Beagle includes a GTK-based graphical tool for searching the index that the daemon creates. This application doesn't query the index directly; it passes the search terms to the daemon and the daemon sends any matches back. The user interface then renders the results and allows you to perform useful actions on the matching objects. Indexing your data requires a fair amount of computing power, but the Beagle daemon tries to be as unobtrusive as possible. It contains a scheduler that works to prioritize tasks and control CPU usage, based on whether or not you are actively using your workstation. DEPENDENCY HECK --------------- Beagle requires: * Mono 1.1.13.5 or better, along with the full Mono stack * gtk-sharp 2.3.90 or better * GMime 2.1.19 * Libexif 0.5.7 or better * shared-mime-info For the best possible Beagle experience, you should also have: * GMime 2.2.1 * Evolution-sharp 0.10.2 or 0.11.1 * libgsf 1.12.1 and gsf-sharp 0.6 * Either wv 1.2.0, or a *patched* wv 1.0.3 --- the patch is available from http://users.avafan.com/~fredrik/beagle/wv-libole2-readonly.patch * An inotify-enabled kernel. Inotify is in the mainline Linux kernel as of 2.6.13. And other optional dependencies: http://beagle-project.org/Optional_Prerequisites CHANGES SINCE 0.2.6 ------------------- Daemon/Infrastructure: * Fix bugs in the query parser by using a regular expression-based system. (Max Wiehle, Keving Kubasik) * Compress items in the text cache, greatly reducing disk usage. (Kevin, Lukas Lipka) * Fix a bug in which the sqlite database could get cluttered with older files. (Debajyoti Bera, Joe Shaw) * Again write out the PID of the locking process, or else we cannot effectively detect dangling locks. (Joe) * If we see a lockfile with no PID, assume it's a dangling lock. (Joe) * No longer handle SIGQUIT to shut down the daemon; it's used very valuably by Mono for debugging purposes. (Joe) * Add a BEAGLE_DISABLE_XATTR environment variable to disable extended attribute support for testing purposes. (Joe) * Only print out the inotify "Maximum watch limit hit" warning once. (Joe) * Convert HTML entities when creating snippets. (Lukas, Kevin) * Patch our xdgmime installation to not crash if the data is reloaded while it is processing it. (Joe) * Fix an issue with newer Mono installations where the index helper process would become a zombie after it finished and was never cleaned up. (Joe) * Fix a bug in which properties weren't being sorted and couldn't be found. (Max, Kevin, Bera) * Work around a Mono bug so that dangling symlinks in ~/.beagle/Log are cleaned up at startup. (Joe) Backends: * Generate mail delete events using the indexable generator rather than creating many individual indexables by hand, which could flood the scheduler and slow the system down. (Joe) * Check for exceptions when calling GetChanges() on Evolution calendars and addressbooks. (Joe) Filters: * Added an SVG filter. (Alexander Macdonald) * Re-enable the CHM filter. (Miguel Cabrera) * Close the OpenOffice zip file when we're finished. (Joe) * Index additional info from ebuild files, including installation info and desktop file entries. (Pat Double) * Add duration and bitrate properties to the music filter. (Lukas) * Add a filter for Boo. (Paul Betts) * Don't throw EncodingFoundException in the HTML parser unless asked to. (Bera) * Add application/x-php as a valid mime type for the PHP filter. (Kevin) * Make sure the mime type is lower case before matching on it. (Kevin, Joe) UI: * Catch exceptions if we can't load an application's icons. (Joe, Pierre Poissinger) * Include the date in note tiles. (Lukas) * Only display the first line of a calendar item's description. (Dan Winship) * Use mailto URIs rather than invoking Evolution directly when possible. (Lukas) * Use desktop-launch to open file tiles when applicable. (Lukas) * Make the text in the details pane selectable. (Lukas) * If the calendar's description is empty, still display the item. (Lukas) * Simplify the code for the details pane significantly. (Lukas) * Scale down very large mime icons for display. (Lukas) * Enable the "Open With" menu if GTK+ 2.8 is available at build-time. (Kevin) * Force the window to get wider if the tiles get wider rather than creating a horizontal scrollbar. (Dan) Tools: * Add --enable-deletion to beagle-build-index, which removes deleted files from the index. (Bera) * Add $sharedir/gtk-doc/html and $sharedir/gnome/html to the documentation crawl rules. (Joe) * Fix a typo in the beagled manpage. (Kevin Lamontagne) * Fix bugs dealing with shell quoting in beagle-query. (Max) Translations: * Updated Brazilian Portuguese translation. (Raphael Higino) * Updated Czech translation. (Jakub Friedl) * Updated Dutch translation. (Vincent van Adrighem) * Updated Finnish translation. (Ilkka Tuohela) * Updated Galician translation. (Ignacio Casal Quinteiro) * Updated Greek translation. (Kostas Papadimas) * Updated Japanese translation. (Takeshi Aihana) * Updated Norwegian bokmål translation. (Øivind Hoel) * Updated Simplified Chinese translation. (Funda Wang) * Updated Spanish translation. (Francisco Javier F. Serrador) * Updated Swedish translation. (Daniel Nylander) * Updated Vietnamese translation. (Clytie Siddall) Everything Else: * Make the Firefox extension work with Bon Echo (2.0 Alpha). (Joe) * Check for mmap() in configure.in, to optimize xdgmime. (Joe) * Add a pkg-config file for the UiUtil.dll assembly. (Luis Medinas) * Getting Dashboard building again. (Luis) KNOWN ISSUES ------------ We still use a bit too much memory. We are working on it. Certain extremely large documents can temporarily degrade your system's performance while they are being indexed. The file system is now much more robust than ever before. However, there are still race conditions that can occur with certain combinations of file system operations. In some cases it might be necessary to stop and restart the daemon. Certain files can crash the underlying libraries Beagle uses to extract metadata. This has been observed in MS Word and JPG files. If you encounter such a crash, please report it to the upstream developer of those libraries (wv1 and libexif for the above, respectively). At this point in development, we cannot commit to stable APIs or file formats. You will almost certainly need to delete your indexes and start again at some point in the future. From s.marechal@jejik.com Mon Jun 19 18:32:09 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 62F693B080B for ; Mon, 19 Jun 2006 18:32:09 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04849-10 for ; Mon, 19 Jun 2006 18:32:04 -0400 (EDT) Received: from smtp-vbr7.xs4all.nl (smtp-vbr7.xs4all.nl [194.109.24.27]) by menubar.gnome.org (Postfix) with ESMTP id 2E4AA3B035F for ; Mon, 19 Jun 2006 18:32:04 -0400 (EDT) Received: from [192.168.1.2] (a82-92-145-91.adsl.xs4all.nl [82.92.145.91]) (authenticated bits=0) by smtp-vbr7.xs4all.nl (8.13.6/8.13.6) with ESMTP id k5JMUN7U092865; Tue, 20 Jun 2006 00:30:24 +0200 (CEST) (envelope-from s.marechal@jejik.com) Message-ID: <449725B0.9050004@jejik.com> Date: Tue, 20 Jun 2006 00:31:12 +0200 From: Sander Marechal User-Agent: Thunderbird 1.5.0.4 (X11/20060615) MIME-Version: 1.0 To: hearts@lists.jejik.com, gnome-announce-list@gnome.org, news@linuxgames.com, webmaster@linuxlinks.com Subject: Gnome Hearts 0.1.1 Release Announcement Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by XS4ALL Virus Scanner X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.557 tagged_above=-999 required=2 tests=[AWL=0.042, BAYES_00=-2.599] X-Spam-Score: -2.557 X-Spam-Level: X-Mailman-Approved-At: Tue, 20 Jun 2006 11:54:51 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: hearts@lists.jejik.com List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jun 2006 22:32:09 -0000 Gnome Hearts 0.1.1 Release Announcement --------------------------------------- Our recently released Gnome Hearts 0.1 suffered from a build problem on distributions that shipped the Lua libraries as liblua instead of liblua50, most notably on the new Suse Linux. Gnome Hearts 0.1.1 fixes this issue, thanks to a patch sent in by a gnomefiles.org contributor. You can download the new tarball from our download section at: http://www.gnome-hearts.org/download/ About Gnome Hearts ------------------ Gnome Hearts is an implementation of the classic hearts card game for the GNOME desktop, featuring configurable rule sets and editable computer opponents to satisfy widely diverging playing styles. Gnome Hearts is Free Software, released under the GNU General Public License and should be able to run on any computer that can run the GNOME desktop. Enjoy, -- Sander Marechal http://www.gnome-hearts.org From peter@peterjohanson.com Tue Jun 20 01:48:23 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3398E3B0E71 for ; Tue, 20 Jun 2006 01:48:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26948-04 for ; Tue, 20 Jun 2006 01:48:21 -0400 (EDT) Received: from cubesearch.com (unknown [207.115.69.50]) by menubar.gnome.org (Postfix) with ESMTP id 7B83E3B05AF for ; Tue, 20 Jun 2006 01:48:21 -0400 (EDT) Received: by cubesearch.com (Postfix, from userid 522) id 8BF0D10E089; Mon, 19 Jun 2006 22:47:22 -0700 (PDT) Date: Mon, 19 Jun 2006 22:47:22 -0700 From: Peter Johanson To: gnome-announce-list@gnome.org Subject: [RELEASE] muine-0.8.5 Message-ID: <20060620054722.GS9163@butchest.cubesearch.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.11 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.55 tagged_above=-999 required=2 tests=[AWL=0.050, BAYES_00=-2.599, SPF_HELO_PASS=-0.001] X-Spam-Score: -2.55 X-Spam-Level: X-Mailman-Approved-At: Tue, 20 Jun 2006 11:54:51 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2006 05:48:23 -0000 Muine is a music player using new UI ideas. The goal is to create a player that eschews the iTunes model in favor of an easier and more comfortable interface. 0.8.5 ===== This release primarily updates Muine to use Gstreamer 0.10 (0.8 is also supported at configure time). Lots of bugfixes have also gone into this release. Details ======= - Gstreamer 0.10 support (configurable, 0.8 is still supported) [Iain, Peter Johanson] - Small shortcut/mnemonics tweaks [Sebastian Heinlein, Wouter Bolsterlee, Peter Johanson] - Fix bug with tray icon not re-appearing after a gnome-panel crash [Ed Catmur, Peter Johanson] - Handle large id3 tags properly [Jorn Baayen] - Properly raise the window when unhiding [Ryan Lortie] - Various build and bugfixes [Peter Johanson] New translations: - Punjabi [Amanpreet Singh Alam] - Thai [Isriya Paireepairit] Updated Translations: - Basque [Inaki Larranaga] - Czech [Miloslav Trmac] - Dutch [Wouter Bolsterlee] - Estonian [Priit Laes] - Finnish [Ilkka Tuohela] - German [Frank Arnold, Hendrik Richter] - Japanese [Takeshi AIHANA] - Spanish [Francisco Javier F. Serrador] - Swedish [Daniel Nylander] - Vietnamese [Clytie Siddall] Download ======== http://www.muine-player.org/wiki/Download Cheers, -pete From olav@bkor.dhs.org Wed Jun 21 16:12:51 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 436D73B0191; Wed, 21 Jun 2006 16:12:51 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02952-03; Wed, 21 Jun 2006 16:12:50 -0400 (EDT) Received: from amsfep20-int.chello.nl (amsfep17-int.chello.nl [213.46.243.15]) by menubar.gnome.org (Postfix) with ESMTP id 551023B0235; Wed, 21 Jun 2006 16:12:49 -0400 (EDT) Received: from bkor.dhs.org ([24.132.164.94]) by amsfep20-int.chello.nl (InterMail vM.6.01.04.04 201-2131-118-104-20050224) with ESMTP id <20060621201243.WMNK3918.amsfep20-int.chello.nl@bkor.dhs.org>; Wed, 21 Jun 2006 22:12:43 +0200 Received: by bkor.dhs.org (Postfix, from userid 501) id A0A54626877; Wed, 21 Jun 2006 22:12:42 +0200 (CEST) Date: Wed, 21 Jun 2006 22:12:42 +0200 From: Olav Vitters To: gnome-announce-list@gnome.org Subject: ANNOUNCE: gnome-blog 0.9.1 released Message-ID: <20060621201242.GI1266@bkor.dhs.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.5.11 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.26 tagged_above=-999 required=2 tests=[AWL=-0.150, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, FORGED_RCVD_HELO=0.135, TW_GT=0.077, TW_SX=0.077] X-Spam-Score: -2.26 X-Spam-Level: Cc: seth@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 20:12:51 -0000 gnome-blog 0.9.1 ================ Been a long time since the last version was released. With the approval of Seth Nickell, I am releasing a newer version. homepage: http://www.gnome.org/~seth/gnome-blog/ (I will probably soon move this to http://www.gnome.org/projects/gnome-blog/) download: http://download.gnome.org/sources/gnome-blog/0.9/ Features ======== * Clean interface doesn't get in the way of what you're writing * WYSIWYG styled text support * Entries can be written gradually over the course of a day, popping gnome blog open and closed as you have thoughts to jot down and then posting at the end of the day * Operates as a panel object/applet or a standalone application * Supports many different kinds of blogs * Spell checking * Drag and drop images into your blog entry (if your blog supports it) Supported Blogs =============== * Blogger.com / Blogspot.com * Advogato.org * Movable Type * WordPress * LiveJournal.com * Pyblosxom * Any other blog using bloggerAPI or MetaWeblog Fixes ===== * Make add link dialog stay near and above the blog window (Tommi Komulainen) * Do not crash when gtkspell is installed but lack a dictionary (Jan Alonzo) * Ensure window looks sane when resized (Olav Vitters) * Ensure blog applet window receives focus with newer metacity versions and make it stay on top (Olav Vitters) * Correctly position blog window beside the applet when using a vertical panel (Olav Vitters) * Make sure CTRL-B (bold), CTRL-I (italic) work when using the applet (Olav Vitters) * Fix blogs.gnome.org XML-RPC URL (Olav Vitters) Translations ============ * Mətin Əmirov (az) * Vladimir Petkov (bg) * Aleix Badia i Bosch (ca) * Miloslav Trmac (cs) * Hendrik Richter (de) * Adam Weinberger (en_CA) * David Lodge (en_GB) * Francisco Javier F. Serrador (es) * Priit Laes (et) * Ilkka Tuohela (fi) * Christophe Merlet (RedFox) (fr) * Pedro Silva (gl) * Robert Sedak (hr) * Gabor Kelemen (hu) * Francesco Gigli (it) * Takeshi AIHANA (ja) * Hasbullah Bin Pit (ms) * Kjartan Maraas (nb) * Jyotshna Shrestha (ne) * Taco Witte (nl) * Arkadiusz Lipiec (pl) * Afonso Celso Medina (pt_BR) * Duarte Loreto (pt) * Steve Murphy (rw) * Laurent Dhima (sq) * Danilo Šegan (sr@Latn) * Данило Шеган (sr) * Daniel Nylander (sv) * Maxim Dziumanenko (uk) * Clytie Siddall (vi) * storm (zh_CN) * Abel Cheung (zh_TW) -- Regards, Olav From mclasen@redhat.com Wed Jun 21 23:10:41 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AA4213B0172; Wed, 21 Jun 2006 23:10:41 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23030-07; Wed, 21 Jun 2006 23:10:39 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 63BA23B0008; Wed, 21 Jun 2006 23:10:39 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5M3AclX021506; Wed, 21 Jun 2006 23:10:38 -0400 Received: from lacrosse.corp.redhat.com (lacrosse.corp.redhat.com [172.16.52.154]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5M3AcnM019751; Wed, 21 Jun 2006 23:10:38 -0400 Received: from [172.16.83.158] (vpn83-158.boston.redhat.com [172.16.83.158]) by lacrosse.corp.redhat.com (8.12.11.20060308/8.11.6) with ESMTP id k5M3AciB004961; Wed, 21 Jun 2006 23:10:38 -0400 Subject: GTK+ 2.9.4 released From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain Organization: Red Hat Date: Wed, 21 Jun 2006 23:12:41 -0400 Message-Id: <1150945961.4457.2.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.7.3 (2.7.3-2) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.507 tagged_above=-999 required=2 tests=[AWL=0.017, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: -2.507 X-Spam-Level: X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 03:10:41 -0000 GTK+ 2.9.4 is now available for download at: http://ftp.gnome.org/pub/gnome/sources/gtk+/2.9/ gtk+-2.9.4.tar.bz2 md5sum: c06cf2cfa66485600d90789c9e58f27c gtk+-2.9.4.tar.gz md5sum: e3fefedc7f1a89b66c71c9967168a857 This is a development release leading up to GTK+ 2.10. Notes: * This is unstable development release. There are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GTK+ 2.8. If you have problems, you'll need to reinstall GTK+ 2.8. * GTK+ 2.10 will be source compatible with the GTK+ 2.8 series; the new API additions in GTK+ 2.9.0 are finalized by now. * The ABI version has been bumped from 2.4.0 to 2.10.0, since the filechooser backend interface has been changed. Third-party filechooser backends need to be ported to the new interface. Other third-party modules (input methods, image loaders, etc) just need to be reinstalled in the proper location for GTK+ to find them. * Remaining issues for GTK+ 2.10 can be found with following bugzilla query: http://bugzilla.gnome.org/buglist.cgi?product=gtk%2b&target_milestone=2.10+API+Freeze&target_milestone=2.10+Freeze&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED * Bugs should be reported to http://bugzilla.gnome.org. What is GTK+ ============ 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.4/gtk/gtk-building.html Common questions: http://developer.gnome.org/doc/API/2.4/gtk/gtk-question-index.html http://www.gtk.org/faq/ Overview of Changes from GTK+ 2.9.3 to 2.9.4 ============================================ * GtkPrintOperation: - UI improvements in the print dialog - Make printing work without a display connection - Replace "Print to PDF" by "Print to file" that can generate PDF or PostScript - Add a function to the low-level API to enumerate all printers * GtkNotebook tab DND has been improved * GtkProgressbar supports text in activity mode * GtkLabel allows to set the wrap mode * GtkStatusIcon supports transparency * Bugs fixed: 344850 Dragging a GtkTreeViewColumn segfaults when using certain GtkTreeViewColumnDropFunc 342458 Stock menu items without icons are broken in recent GTK+ releases. 335873 notebook DND + popup windows 337882 gtk_progress_bar_set_text() does nothing in activity mode 339456 unix print dialogue help button bug 339702 Make sure printing works without a display 341571 tabs too easily reordered 344074 New Feature: get printer list, and get default print 344743 gtk_targets_include_text() should initialize atoms 344838 Allow func to be NULL in gtk_tree_view_set_search_position_func 344891 GtkPrintOperationPreview signal defs correction 345008 Need updated cairo req 345093 print preview temp file issues 345107 Memory leak in gtk_entry_completion_finalize: User data not freed 345194 gdk_window_set_functions() docs need to be updated 345456 grid-lines property is wrongly registered and get/set. 314278 strings in gtk-update-icon-cache are not marked for translation 344707 size group with widgets in hidden container 344897 Entry completion model NULL handling should be documented 345038 gtk_print_job_set_status' status 345106 dialog button box spacings 345176 GtkIconView doc about drag and drop 345275 doc imporovements for gtk_window_move 345320 Two very similiar strings should be made equal 345321 Add meaning of "shortcut" as translator comment 320034 transparency gtkstatusicon 339592 Add print-to-postscript 344867 custom paper file could use keyfile * Updated translations (cs,de,es,fr,gl,gu,hi,ko,ta,th) A list of all bugs fixed in this release can be found at http://bugzilla.gnome.org/buglist.cgi?bug_id=344838,344743,344867,344891,345008,341571,345038,337882,345093,344707,339456,345107,345275,339702,344074,345320,345321,344897,314278,320034,344850,345194,345176,345106,335873,342458,339592,345456 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Christian Persch, John Finlay, Federico Mena Quintero, Michael Emmel, Marko Anastasov, Bastien Nocera, Carlos Garnacho, Yevgen Muntyan, Tommi Komulainen, Tim Janik, Christian Weiske, Behdad Esfahbod, Alexander Larsson, Felipe Heidrich, Hendrik Richter, Claudio Saavedra, Dan Winship, Callum McKenzie, John Palmieri, Murray Cumming, Kristian Rietveld June 21, 2006 Matthias Clasen From cass@skynet.be Wed Jun 21 10:17:16 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9D8BD3B0FB7 for ; Wed, 21 Jun 2006 10:17:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11755-08 for ; Wed, 21 Jun 2006 10:17:15 -0400 (EDT) Received: from dorado.vub.ac.be (mailhost.vub.ac.be [134.184.129.10]) by menubar.gnome.org (Postfix) with ESMTP id D3CD03B0F77 for ; Wed, 21 Jun 2006 10:17:14 -0400 (EDT) Received: from mach.vub.ac.be (maxi.vub.ac.be [134.184.129.8]) by dorado.vub.ac.be (Postfix) with ESMTP id 4B484D7 for ; Wed, 21 Jun 2006 16:17:02 +0200 (CEST) Received: by mach.vub.ac.be (Postfix, from userid 21099) id 274998D01; Wed, 21 Jun 2006 16:17:02 +0200 (CEST) Received: from cass-lpt.ulb.ac.be (f1-pc174.ulb.ac.be [164.15.24.174]) by mach.vub.ac.be (Postfix) with ESMTP id 6C1178D24 for ; Wed, 21 Jun 2006 16:17:01 +0200 (CEST) Subject: XChat-GNOME 0.12 From: Guillaume Desmottes To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=UTF-8 Date: Wed, 21 Jun 2006 16:16:46 +0200 Message-Id: <1150899407.18129.0.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.496 tagged_above=-999 required=2 tests=[AWL=0.026, BAYES_00=-2.599, TW_JH=0.077] X-Spam-Score: -2.496 X-Spam-Level: X-Mailman-Approved-At: Thu, 22 Jun 2006 09:00:41 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 14:17:16 -0000 XChat-GNOME 0.12 “All roads lead to Sean Connery” is now available. * What is it ? ============== XChat-GNOME is a new frontend to the popular X-Chat IRC client which is designed with the user interface foremost in mind. More informations can be found at: http://xchat-gnome.navi.cx/ * What's changed ? ================== - A new sheme for theme-based foreground and backgrond colors, with automatic palette optimization for mIRC color codes. - Remove redundant nicknames (with a gconf key to re-enable them) - Show a whois tooltip on users in the conversation panel - Display a tooltip with the description of plugins - You can now build XChat-GNOME HEAD using jhbuild (using gnome-2.16 modulesets) - A large number of bug fixes and smaller improvements - Updated translations * Contributors to this release ============================== David Trowbridge, Guillaume Desmottes, Christian Persch, Przemyslaw Grzegorczyk, Gathy Grégory, Isak Savo, Steve Frécinaux, Jeremy Nickurak, Dan Kuester, Brian Pepple * Where can I get it ? ====================== http://releases.navi.cx/xchat-gnome/xchat-gnome-0.12.tar.gz http://releases.navi.cx/xchat-gnome/xchat-gnome-0.12.tar.bz2 -- Guillaume Desmottes Jabber GPG 1024D/711E31B1 | 1B5A 1BA8 11AA F0F1 2169 E28A AC55 8671 711E 31B1 From murrayc@murrayc.com Tue Jun 20 13:04:27 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BEAFD3B05E3; Tue, 20 Jun 2006 13:04:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30785-01; Tue, 20 Jun 2006 13:04:23 -0400 (EDT) Received: from swarthymail-a4.dreamhost.com (sd-green-bigip-60.dreamhost.com [208.97.132.60]) by menubar.gnome.org (Postfix) with ESMTP id 7AB3D3B04F0; Tue, 20 Jun 2006 13:04:23 -0400 (EDT) Received: from noname (p5497DB9C.dip.t-dialin.net [84.151.219.156]) by swarthymail-a4.dreamhost.com (Postfix) with ESMTP id AF950129A91; Tue, 20 Jun 2006 10:03:26 -0700 (PDT) Subject: ANNOUNCE: gtkmm 2.9.5 From: Murray Cumming To: gnome-announce , gtkmm-list Content-Type: text/plain Date: Tue, 20 Jun 2006 19:03:22 +0200 Message-Id: <1150823002.6261.21.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.404 tagged_above=-999 required=2 tests=[AWL=0.041, BAYES_00=-2.599, TW_GT=0.077, TW_TK=0.077] X-Spam-Score: -2.404 X-Spam-Level: X-Mailman-Approved-At: Thu, 22 Jun 2006 09:02:35 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2006 17:04:28 -0000 *** gtkmm 2.9/2.10: gtkmm 2.9 wraps new API in GTK+ 2.9, and is API/ABI-compatibile with gtkmm 2.8, 2.6 and 2.4. It is a version of the gtkmm-2.4 API. This will become the API-stable gtkmm 2.10, wrapping GTK+ 2.10. gtkmm stays in-sync with GTK+ by following the official GNOME release schedule: http://www.gnome.org/start/unstable/ Bindings for the rest of the GNOME Platform are also available, and are also API-stable. http://www.gtkmm.org *** Changes gtkmm 2.9.5: Gtk: * Assistant: Added update_buttons_state(). * Button: Added get/set_image_position(). * Clipboard: Added request_rich_text(), wait_for_rich_text(), and wait_rich_text_is_available(). * Entry: Added get/set_inner_border(). * Notebook: Added set_group_id(), get_group_id(), get_tab_reorderable(), set_tab_reorderable(), get_tab_detachable(), set_tab_detachable(). * PrintContext: Added set_cairo_context(). * Printoperation: - run(): Added PrintOperationAction parameter. - Removed set_show_dialog(), set_pdf_target(), set_track_print_status(), run_async(). - Added set_export_filename(), set_track_print_status(), set_show_progress(), set_allow_async(), set_custom_tab_label(). * Fixed warnings (Elijah Newren, Jonathon Jongsma) Pango: * Context: Added get_matrix(). * Font: Added describe_with_absolute_size(), get_font_map(). * FontDescription: Added set_absolute_size(), get_size_is_absolute(). * Layout: Added get_font_description(), index_to_line_x(). * Renderer: Added get_matrix(). *** Download http://www.gtkmm.org/download.shtml You will need libsigc++ 2.0, available here: https://sourceforge.net/project/showfiles.php?group_id=1970 *** Development There is active discussion on the mailing list: http://www.gtkmm.org/mailinglist.shtml and in the #c++ channel on irc.gnome.org -- Murray Cumming murray@usa.net www.murrayc.com From murrayc@murrayc.com Thu Jun 22 17:21:32 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 53AA83B083F; Thu, 22 Jun 2006 17:21:32 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27489-07; Thu, 22 Jun 2006 17:21:31 -0400 (EDT) Received: from swarthymail-a3.dreamhost.com (sd-green-bigip-62.dreamhost.com [208.97.132.62]) by menubar.gnome.org (Postfix) with ESMTP id 713DB3B0823; Thu, 22 Jun 2006 17:21:26 -0400 (EDT) Received: from noname (p5497EA12.dip.t-dialin.net [84.151.234.18]) by swarthymail-a3.dreamhost.com (Postfix) with ESMTP id 13D217F03D; Thu, 22 Jun 2006 14:21:24 -0700 (PDT) Subject: ANNOUNCE: gtkmm 2.9.6 From: Murray Cumming To: gnome-announce , gtkmm-list Content-Type: text/plain Date: Thu, 22 Jun 2006 23:21:22 +0200 Message-Id: <1151011282.5804.37.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.4 tagged_above=-999 required=2 tests=[AWL=0.045, BAYES_00=-2.599, TW_GT=0.077, TW_TK=0.077] X-Spam-Score: -2.4 X-Spam-Level: X-Mailman-Approved-At: Thu, 22 Jun 2006 19:51:58 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 21:21:32 -0000 *** gtkmm 2.9/2.10: gtkmm 2.9 wraps new API in GTK+ 2.9, and is API/ABI-compatibile with gtkmm 2.8, 2.6 and 2.4. It is a version of the gtkmm-2.4 API. This will become the API-stable gtkmm 2.10, wrapping GTK+ 2.10. gtkmm stays in-sync with GTK+ by following the official GNOME release schedule: http://www.gnome.org/start/unstable/ Bindings for the rest of the GNOME Platform are also available, and are also API-stable. http://www.gtkmm.org *** Changes gtkmm 2.9.6: Gtk: * Label: Added get/set_line_wrap_mode() and property. * MenuShell: Added get/set_take_focus() and property. * MessageDialog: Added set_image() and property. * StatusIcon: Added get_geometry(). * TreeView: Added get/set_rubber_banding(), get/set_grid_lines(), get/set_enable_tree_lines(). Added properties for show-expanders, level-indentation, rubber-banding, enable-grid-lines, and enable-tree-lines. (Murray Cumming) * PrintJob: send_job(): No longer throws an exception. * PrintUnixDialog: Added add_custom_tab() overload that takes a ustring. * Printer: Added get_job_count(), and enumerate_printers(), and others. * Printsettings: - Put the standard settings in a member class so they can be used as Gtk::PrintSettings::Keys::SOMETHING. - Remove get/set_print_to_file(). * PrintOperation: Added a version of run() without the Window parameter. * PrintOperationPreview: New class. (Most printing stuff: Marko Anastasov) *** Download http://www.gtkmm.org/download.shtml You will need libsigc++ 2.0, available here: https://sourceforge.net/project/showfiles.php?group_id=1970 *** Development There is active discussion on the mailing list: http://www.gtkmm.org/mailinglist.shtml and in the #c++ channel on irc.gnome.org -- Murray Cumming murray@usa.net www.murrayc.com From bryce@bryceharrington.org Sat Jun 24 01:30:28 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 157CC3B0150 for ; Sat, 24 Jun 2006 01:30:28 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25007-03 for ; Sat, 24 Jun 2006 01:30:24 -0400 (EDT) Received: from dc2-web15.assortedinternet.com (dc2-web15.assortedinternet.com [66.36.233.162]) by menubar.gnome.org (Postfix) with ESMTP id 701A03B0132 for ; Sat, 24 Jun 2006 01:30:24 -0400 (EDT) Received: from c-24-20-224-228.hsd1.or.comcast.net ([24.20.224.228] helo=localhost) by dc2-web15.assortedinternet.com with esmtpa (Exim 4.52) id 1Fu0in-0003sK-Oi for gnome-announce-list@gnome.org; Sat, 24 Jun 2006 01:30:18 -0400 Date: Fri, 23 Jun 2006 22:28:53 -0700 From: Bryce Harrington To: gnome-announce-list@gnome.org Subject: Inkscape Announces 0.44 Release :: http://www.inkscape.org Message-ID: <20060624052853.GE23238@bryceharrington.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.11 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - dc2-web15.assortedinternet.com X-AntiAbuse: Original Domain - gnome.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - bryceharrington.org X-Source: X-Source-Args: X-Source-Dir: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.597 tagged_above=-999 required=2 tests=[AWL=0.002, BAYES_00=-2.599] X-Spam-Score: -2.597 X-Spam-Level: X-Mailman-Approved-At: Sat, 24 Jun 2006 06:24:44 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jun 2006 05:30:28 -0000 The Inkscape community today officially released the latest version of its vector graphic drawing software. Inkscape 0.44 adds many new features, is faster and more usable, better supports SVG, is translated into more languages (17 on last count), and adds a lot of polish and refinement. Major new features include Layers dialog, support for clipping and masking, improved PDF export with transparency, configurable keyboard shortcuts, innovative "node sculpting" capability in Node tool, and the Outline mode. Significant gains are achieved in performance, especially in screen rendering and Node tool. Noticeable user interface changes include docked color swatches, interactive style indicator in the statusbar, a redesigned preferences dialog, a text toolbar, and new icons. Our SVG compliance has also taken a step forward, with the added support for the tag and ICC color profiles for images. This release also includes hundreds of smaller features, usability enhancements and bug fixes. For several releases, a collection of extension effects was shipped with Inkscape, but the Effects menu to access them was turned off by default. With this release, it has become mature enough, with effects working out of the box on all platforms, so this menu is enabled. We'd like to thank Google for their sponsorship of five students to work, during the summer of 2006, on several Inkscape development efforts: SVG Filters, Inkboard protocol, PDF export with Cairo, and memory optimization. Download Linux, Windows, and Mac OS X packages: http://sourceforge.net/project/showfiles.php?group_id=93438 For many more details, see the complete Release Notes for 0.44: http://wiki.inkscape.org/wiki/index.php/Release_Notes Community submitted screenshots: http://www.inkscape.org/screenshots/ ===About Inkscape=== Inkscape is an open source drawing tool that uses the World Wide Web Consortium's ([[W3C]]) scalable vector graphics format (SVG). Some supported SVG features include basic shapes, paths, text, markers, clones, alpha blending, transforms, gradients, and grouping. In addition, Inkscape supports Creative Commons' metadata, node-editing, layers, complex path operations, text-on-path, text-in-shape, and SVG XML editing. It can also import EPS, PostScript, and most bitmap formats, and exports PNG, PS, PDF and various vector formats. Inkscape's main motivation is to provide the Open Source community with a fully [[W3C]] compliant XML, SVG, and CSS2 drawing tool. Additional work includes conversion of the codebase from C/Gtk to C++/Gtkmm, emphasizing a lightweight core with powerful features added through an extension mechanism, and maintaining a friendly, open, community-oriented development process. From rejon@freedesktop.org Sun Jun 25 10:52:07 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C309D3B009A for ; Sun, 25 Jun 2006 10:52:07 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18260-01 for ; Sun, 25 Jun 2006 10:52:06 -0400 (EDT) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.208.82]) by menubar.gnome.org (Postfix) with ESMTP id 4BFB03B008F for ; Sun, 25 Jun 2006 10:52:06 -0400 (EDT) Received: by gabe.freedesktop.org (Postfix, from userid 2695) id 5EDA79ED2A; Sun, 25 Jun 2006 07:51:01 -0700 (PDT) To: gnome-announce-list@gnome.org From: Jon Phillips Subject: Inkscape Announces 0.44 Release :: http://www.inkscape.org Content-Type: text/plain Message-Id: <20060625145101.5EDA79ED2A@gabe.freedesktop.org> Date: Sun, 25 Jun 2006 07:51:01 -0700 (PDT) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.599 tagged_above=-999 required=2 tests=[BAYES_00=-2.599] X-Spam-Score: -2.599 X-Spam-Level: X-Mailman-Approved-At: Mon, 26 Jun 2006 03:57:39 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Jun 2006 14:52:07 -0000 Inkscape Announces 0.44 Release :: http://www.inkscape.org The Inkscape community today officially released the latest version of its vector graphic drawing software. Inkscape 0.44 adds many new features, is faster and more usable, better supports SVG, is translated into more languages (17 on last count), and adds a lot of polish and refinement. Major new features include Layers dialog, support for clipping and masking, improved PDF export with transparency, configurable keyboard shortcuts, innovative "node sculpting" capability in Node tool, and the Outline mode. Significant gains are achieved in performance, especially in screen rendering and Node tool. Noticeable user interface changes include docked color swatches, interactive style indicator in the statusbar, a redesigned preferences dialog, a text toolbar, and new icons. Our SVG compliance has also taken a step forward, with the added support for the tag and ICC color profiles for images. This release also includes hundreds of smaller features, usability enhancements and bug fixes. For several releases, a collection of extension effects was shipped with Inkscape, but the Effects menu to access them was turned off by default. With this release, it has become mature enough, with effects working out of the box on all platforms, so this menu is enabled. The Inkscape developer community would like to thank Google for their sponsorship of five students to work, during the summer of 2006, on several Inkscape development efforts: SVG Filters, Inkboard protocol, PDF export with Cairo, and memory optimization. Download Linux, Windows, and Mac OS X packages: http://sourceforge.net/project/showfiles.php?group_id=93438 For many more details, see the complete Release Notes for 0.44: http://wiki.inkscape.org/wiki/index.php/Release_Notes Community submitted screenshots: http://www.inkscape.org/screenshots/ About Inkscape Inkscape is an open source drawing tool that uses the World Wide Web Consortium's ([[W3C]]) scalable vector graphics format (SVG). Some supported SVG features include basic shapes, paths, text, markers, clones, alpha blending, transforms, gradients, and grouping. In addition, Inkscape supports Creative Commons' metadata, node-editing, layers, complex path operations, text-on-path, text-in-shape, and SVG XML editing. It can also import EPS, PostScript, and most bitmap formats, and exports PNG, PS, PDF and various vector formats. Inkscape's main motivation is to provide the Open Source community with a fully [[W3C]] compliant XML, SVG, and CSS2 drawing tool. Additional work includes conversion of the codebase from C/Gtk to C++/Gtkmm, emphasizing a lightweight core with powerful features added through an extension mechanism, and maintaining a friendly, open, community-oriented development process. From phoenix@nova.es Wed Jun 28 17:32:54 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7BBC83B0100 for ; Wed, 28 Jun 2006 17:32:54 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02743-08 for ; Wed, 28 Jun 2006 17:32:52 -0400 (EDT) Received: from localhost.localdomain (171.Red-80-34-230.staticIP.rima-tde.net [80.34.230.171]) by menubar.gnome.org (Postfix) with ESMTP id BDEEC3B00A3 for ; Wed, 28 Jun 2006 17:32:50 -0400 (EDT) Received: by localhost.localdomain (Postfix, from userid 1000) id BC029821BA; Sun, 25 Jun 2006 15:37:41 +0200 (CEST) Subject: ANNOUNCE: Nautilus-Sendto 0.6 & 0.7 From: Roberto Majadas To: Gnome Announce Content-Type: multipart/alternative; boundary="=-jsBhLm2jjnt8W4Xg4Kr+" Date: Sun, 25 Jun 2006 15:37:40 +0200 Message-Id: <1151242661.7517.8.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.93 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, HTML_40_50=0.496, HTML_MESSAGE=0.001, RCVD_IN_XBL=3.897] X-Spam-Score: 1.93 X-Spam-Level: * X-Mailman-Approved-At: Thu, 29 Jun 2006 03:00:17 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Jun 2006 21:32:54 -0000 --=-jsBhLm2jjnt8W4Xg4Kr+ Content-Type: text/plain Content-Transfer-Encoding: 7bit NAUTILUS SEND-TO (0.6 & 0.7) * What it is ? ============== This application provide integration between nautilus , evolution , gaim and gnome-bluetooth ============ Version 0.7 ============ Nautilus Sendto * Quick revision. I don't include some files to POTFILES.in ============ Version 0.6 ============ Nautilus Sendto * Added support for gajim * Added support for sylpheed-claws * Added initial support for thunderbird. Thunderbird don't support attachment by command line atm. * Added initial support for Balsa. Balsa don't support attachment by command line atm. * Many bugfixes Special Thanks to : Bastien Nocera (He resolve many many bugs while i was busy in my work, Thanks guy !) Dimitur Kirov (He developed gajim support) Peter Enseleit (he developed balsa, sylpheed and thunderbird support) * Features ========== * Nautilus context menu component ("Send To...") . * A dialog for insert the email acount or IM account which you want to send the file/files . * Contact with evolution-data-server and get the email accounts . * Contact with gaim (nautilus gaim plugin) and get the IM acccounts * Send to bluetooth devices detected from gnome-bluetooth * You can send files packaged in varios formats --=-jsBhLm2jjnt8W4Xg4Kr+ Content-Type: text/html; charset=utf-8 NAUTILUS SEND-TO (0.6 & 0.7)

* What it is ?
==============

This application provide integration between nautilus , evolution ,
gaim and gnome-bluetooth


============
Version 0.7
============

Nautilus Sendto
        * Quick revision. I don't include some files to POTFILES.in

============
Version 0.6
============

Nautilus Sendto
        * Added support for gajim
        * Added support for sylpheed-claws
        * Added initial support for thunderbird. Thunderbird don't support attachment by command line atm.
        * Added initial support for Balsa. Balsa don't support attachment by command line atm.
        * Many bugfixes

        Special Thanks to :
                Bastien Nocera (He resolve many many bugs while i was busy in my work, Thanks guy !)
                Dimitur Kirov (He developed gajim support)
                Peter Enseleit (he developed balsa, sylpheed and thunderbird support)

* Features
==========
      * Nautilus context menu component ("Send To...") .
      * A dialog for insert the email acount or IM account which you
        want to send the file/files .
              * Contact with evolution-data-server and get the email
                accounts .
              * Contact with gaim (nautilus gaim plugin) and get the IM
                acccounts
	      * Send to bluetooth devices detected from gnome-bluetooth
              * You can send files packaged in varios formats

--=-jsBhLm2jjnt8W4Xg4Kr+-- From callum@spooky-possum.org Thu Jun 29 04:08:17 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 903F53B01CE; Thu, 29 Jun 2006 04:08:17 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28081-02; Thu, 29 Jun 2006 04:08:09 -0400 (EDT) Received: from genamics.blastula.net (dns1.blastula.net [64.92.214.155]) by menubar.gnome.org (Postfix) with ESMTP id B42D13B0423; Thu, 29 Jun 2006 04:07:56 -0400 (EDT) Received: from [60.234.108.157] (helo=[60.234.108.157]) by genamics.blastula.net with esmtpa (Exim 4.52) id 1FvrZ5-0003f6-67; Thu, 29 Jun 2006 20:07:56 +1200 Subject: gnome-games 2.14.2.1 From: Callum McKenzie To: games-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Date: Thu, 29 Jun 2006 20:07:45 +1200 Message-Id: <1151568466.22419.21.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Antivirus-Scanner: Clean mail though you should still use an Antivirus X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - genamics.blastula.net X-AntiAbuse: Original Domain - gnome.org X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [47 12] X-AntiAbuse: Sender Address Domain - spooky-possum.org X-Source: X-Source-Args: X-Source-Dir: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.543 tagged_above=-999 required=2 tests=[AWL=0.056, BAYES_00=-2.599] X-Spam-Score: -2.543 X-Spam-Level: X-Mailman-Approved-At: Thu, 29 Jun 2006 07:32:02 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: callum@spooky-possum.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 08:08:18 -0000 gnome-games 2.14.2.1 ==================== This release is primarily to fix a crash that occurs in Aisleriot when you change games. An upgrade is strongly recommended. It also fixes a high-score file corruption bug when entering short names for the high scores table. As a bonus there are also translation updates. Get it from: http://download.gnome.org/sources/gnome-games/2.14/ - Callum From mclasen@redhat.com Mon Jun 5 14:15:03 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 744343B09D3; Mon, 5 Jun 2006 14:15:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20278-06; Mon, 5 Jun 2006 14:15:01 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id D637E3B0988; Mon, 5 Jun 2006 14:15:00 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k55IF08I024331; Mon, 5 Jun 2006 14:15:00 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [172.16.76.12]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k55IF0I9021827; Mon, 5 Jun 2006 14:15:00 -0400 Received: from golem.boston.redhat.com (golem.boston.redhat.com [172.16.80.24]) by mail.boston.redhat.com (8.12.8/8.12.8) with ESMTP id k55IExAV012588; Mon, 5 Jun 2006 14:14:59 -0400 From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain; charset=UTF-8 Date: Mon, 05 Jun 2006 14:14:59 -0400 Message-Id: <1149531299.4071.35.camel@golem.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.1 (2.7.1-1) Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.543 tagged_above=-999 required=2 tests=[AWL=0.058, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.543 X-Spam-Level: Cc: Subject: GLib 2.11.2 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jun 2006 18:15:03 -0000 GLib 2.11.2 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.11/ http://ftp.gnome.org/pub/GNOME/sources/glib/2.11/ glib-2.11.2.tar.bz2 md5sum: 18464b85bfd589f83897623c637a1553 glib-2.11.2.tar.gz md5sum: f728cd295ac98d4b95d850fe91c05fd5 This is a development release leading up to GLib 2.12. Notes: * This is unstable development release. While it has had a bit of testing, there are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GLib 2.10. If you have problems, you'll need to reinstall GLib 2.10. * GLib 2.12 will be source and binary compatible with the GLib 2.10.x series (for some caveats, see the README). At this point, the API additions in the 2.11.x series are almost finished. * Bugs should be reported to http://bugzilla.gnome.org. About GLib ========== GLib is the low-level core library that forms the basis for projects such as GTK+ and GNOME. It provides data structure handling for C, portability wrappers, and interfaces for such runtime functionality as an event loop, threads, dynamic loading, and an object system. More information about GLib is available at: http://www.gtk.org/ An installation guide for the GTK+ libraries, including GLib, can be found at: http://developer.gnome.org/doc/API/2.0/gtk/gtk-building.html Overview of Changes from GLib 2.11.1 to GLib 2.11.2 =================================================== * Add g_ascii_stroll to parse signed 64bit integers * GMarkup: add a flag to treat CDATA as text * GHashTable: add functions to remove all entries * GMainLoop: add functions to find the currently running source, and determine if it is destroyed * Bug fixes: 342563 g_atomic_thread_init() needs to be called before other _g_*_thread_init() functions 343548 Potential use after free in callers of g_string_free() 168538 Wish: Clearing contents of GHashTables 321886 GTK+ cannot be reliably used in multi-threaded applications 341826 goption.c: 'strtoll' is C99's function 343899 g_ascii_formatd dosn't work as expected for all format strings 317793 Make GEnumValue strings const 337129 Compile warnings in G_IMPLEMENT_INTERFACE 303622 What is G_TYPE_CHAR? * Updated translations (bg,dz,eu,gl,ja,nl,th,vi) A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=341826,342563,343548,168538,168538,321886,343899,321886,317793,337129,303622 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Peter Kjellerstedt, Kazuki Iwamoto Leonard den Ottolander, Chris Wilson, Behdad Esfahbod, Matt Barnes, ystein Johansen, Tim Janik Morten Welinder Matthias Clasen June 5, 2006 From mclasen@redhat.com Mon Jun 5 16:21:34 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 09B113B0543; Mon, 5 Jun 2006 16:21:34 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28553-01; Mon, 5 Jun 2006 16:21:32 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 0F8903B0012; Mon, 5 Jun 2006 16:21:31 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k55KLVn7006951; Mon, 5 Jun 2006 16:21:31 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [172.16.76.12]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k55KLUBq020469; Mon, 5 Jun 2006 16:21:31 -0400 Received: from golem.boston.redhat.com (golem.boston.redhat.com [172.16.80.24]) by mail.boston.redhat.com (8.12.8/8.12.8) with ESMTP id k55KLUAV025318; Mon, 5 Jun 2006 16:21:30 -0400 From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain Date: Mon, 05 Jun 2006 16:21:30 -0400 Message-Id: <1149538890.4071.40.camel@golem.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.1 (2.7.1-1) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.429 tagged_above=-999 required=2 tests=[AWL=-0.059, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_GD=0.077, TW_GT=0.077, TW_XI=0.077] X-Spam-Score: -2.429 X-Spam-Level: Cc: Subject: GTK+ 2.9.2 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jun 2006 20:21:34 -0000 GTK+ 2.9.2 is now available for download at: http://ftp.gnome.org/pub/gnome/sources/gtk+/2.9/ gtk+-2.9.2.tar.gz md5sum: c63e7d0cf7c4e983206c3088a0fb8862 gtk+-2.9.2.tar.bz2 md5sum: 17629437af44fce03485101371c8f041 This is a development release leading up to GTK+ 2.10. Notes: * This is unstable development release. There are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GTK+ 2.8. If you have problems, you'll need to reinstall GTK+ 2.8. * GTK+ 2.10 will be source compatible with the GTK+ 2.8 series; the new API additions in GTK+ 2.9.0 are not yet completely finalized, so there are likely incompatibilies between this release and the final 2.10 release. * The ABI version has been bumped from 2.4.0 to 2.10.0, since the filechooser backend interface has been changed. Third-party filechooser backends need to be ported to the new interface. Other third-party modules (input methods, image loaders, etc) just need to be reinstalled in the proper location for GTK+ to find them. * Remaining issues for GTK+ 2.10 can be found with following bugzilla query: http://bugzilla.gnome.org/buglist.cgi?product=gtk%2b&target_milestone=2.10+API+Freeze&target_milestone=2.10+Freeze&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED * Bugs should be reported to http://bugzilla.gnome.org. What is GTK+ ============ 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.4/gtk/gtk-building.html Common questions: http://developer.gnome.org/doc/API/2.4/gtk/gtk-question-index.html http://www.gtk.org/faq/ Overview of Changes from GTK+ 2.9.1 to 2.9.2 ============================================ * GtkPrintOperation - Support asynchronous pagination with the ::paginate signal - Add gtk_print_operation_cancel - Support application-specific widgets - Allow disabling features based on application capabilities - Optionally show progress - Change some function names in GtkPrintContext to be longer and better - Support preview, the default implementation spawns evince, but the api allows for an internal preview implementation * GtkCellView - Add a model property * GtkStatusIcon - Allow to obtain screen geometry * GtkTreeView - Many bug fixes, in particular for RTL handling - Separate sensitive and selectable properties of rows - Optionally allow rubberband selection * GtkButton - Add image-spacing style property - Add image-position property * GtkToolButton - Add icon-spacing style property * Make GTK+ work as an untrused X client * Bugs fixed: 343838 gtkprintoperationpreview.h guards 305530 Crashes while creating source code w/GtkFontSelection 341327 Memory corruption inside glib 341734 cursor blocked to dnd mode after using shift and dnd on a GtkCalendar 343453 G_DEFINE_TYPE messes up internal typenames of GdkWindow and GdkPixmap 136571 Problems running as untrusted client 168105 the right edge tab does not appear when switching tab 172535 Add support for UI builders in gtk+ 302556 GtkTreeView widget signals are badly documented 324480 Selecting first item with keyboard is difficult 340428 small cleanup 340444 don't run the custom page size dialogue 340839 Critical warnings in GtkTreeModelFilter 341898 gtk_tree_view_insert_column_with_attributes doesn't work with fixed_height_mode 342003 DnD: Conditional jump or move depends on uninitialised value 342072 Wrong drop location in GtkEntry 342096 GtkImage animation CRITICALS on switching themes 342513 widget class style property with type module 342529 gdk should set resolution on PangoCairoFontmap, not PangoCairoContext 342535 Add documentation for new GtkWidget style properties (including Since tags) 342543 can't compile gtk+ on opensolaris using sun cc 342569 Typo in decl of gdk_color_parse 342752 Need a way to specify custom tab label for custom page in Print dialog 342754 print-editor: font button dialog doesn't get focus if main window has a window group 342781 GtkPrintUnixDialog: Collate should be insensitive unless Copies is > 1 342783 GtkPrintUnixDialog: Range textinput area should be insensitive unless range radiobutton is selected 342894 Use after free inside gtk_text_view_set_buffer 342930 GtkButton should offer a way to position the image relative to the text 343088 Some typos in the PO file 343425 "grab-notify"-signal is not correctly propagated for internal children 343438 gtk_color_button_set_color() doesn't emit "color-set" signal 343475 page setup unix dialog confusion 343625 allow to get only some info from gtk_status_icon_get_geometry 343677 GtkWindow chains key-release to key-press 320431 Text too close when using East/West in a GtkToolButton 321523 GtkTreeView's test_expand_row signal emitting impractical on row expand all 342007 Warning in gtk_paned_compute_position 343233 gdk_rectangle_intersect doc 333284 expander animation not working in RTL mode 343444 change color of gtk-demo source-buffer comment color from red to DodgerBlue 343630 Small inconsistence in migration documentation 80127 Rubberbanding for GtkTreeView 341450 status icon + libnotify 341679 Allow absolute filenames in the options entries * Updated translations (bg,cy,de,el,es,et,eu,gl,gu,it,ja, nb,nl,pt_BR,th,vi) Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Alexander Larsson, Behdad Esfahbod, Benjamin Berg, Caolan McNamara, Carlos Garnacho Parro, Carol Spears, Christian Persch, Chris Wilson, Claudio Saavedra, Clytie Siddall, Damon Chaplin, Daniel Lindenaar, Dan Winship, Diana Fong, Ed Catmur, Emmanuele Bassi, Havoc Pennington, Henrique Romano, Hiroyuki Ikezoe, James Moger, Johan Dahlin, Kouhei Sutou, Kristian Rietveld, Markku Vire, Mart Raudsepp, Masatake Yamato, Michael Emmel, Michael Natterer, Murray Cumming, Olexiy Avramchenko, Paolo Borelli, Patrick Monnerat, Richard Hult, Sampo Savolainen, Sebastien Bacher, Srirama Sharma, Stefan Kost, Tim Janik, Tommi Komulainen, Tor Lillqvist, Yevgen Muntyan A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=342072,342096,342003,341734,305530,168105,342007,342529,342535,342543,342569,341679,342752,172535,342513,342781,342783,342754,136571,341450,333284,340428,340839,341898,321523,343088,343233,324480,342894,320431,342930,343453,343425,343438,343444,340444,343475,302556,343677,343625,80127,343838,341327,168105,343630 Matthias Clasen June 5, 2006 From thomas@apestaart.org Tue Jun 6 06:04:09 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id ABA3E3B0750; Tue, 6 Jun 2006 06:04:09 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04145-08; Tue, 6 Jun 2006 06:04:08 -0400 (EDT) Received: from mx1.es6.egwn.net (server02.es6.egwn.net [195.10.6.12]) by menubar.gnome.org (Postfix) with ESMTP id 6BEAF3B014E; Tue, 6 Jun 2006 06:04:08 -0400 (EDT) Received: from mx1.fr4.egwn.net (server07.fr4.egwn.net [62.39.85.77]) by mx1.es6.egwn.net (Postfix) with ESMTP id D5F0C4F82E2; Tue, 6 Jun 2006 12:04:05 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by mx1.fr4.egwn.net (spiffy mail daemon) with ESMTP id 0D94183BE7; Tue, 6 Jun 2006 12:04:00 +0200 (CEST) Received: from mx1.fr4.egwn.net ([127.0.0.1]) by localhost (server07.fr4.egwn.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16922-12; Tue, 6 Jun 2006 12:03:14 +0200 (CEST) Received: from thread.fluendo.lan (core.fluendo.com [195.10.6.237]) by mx1.fr4.egwn.net (spiffy mail daemon) with ESMTP id C559583BE4; Tue, 6 Jun 2006 12:03:14 +0200 (CEST) Received: from thomas.fluendo.lan (thomas.fluendo.lan [192.168.1.10]) by thread.fluendo.lan (Postfix) with ESMTP id 6EF06FFDB; Tue, 6 Jun 2006 12:03:18 +0200 (CEST) From: Thomas Vander Stichele To: gnome-hackers@gnome.org In-Reply-To: <1148971293.12902.2.camel@red> References: <1139648664.6627.40.camel@localhost> <1148971293.12902.2.camel@red> Content-Type: text/plain Date: Tue, 06 Jun 2006 12:03:19 +0200 Message-Id: <1149588200.24971.3.camel@otto.amantes> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 (2.6.1-1.fc5.2) Content-Transfer-Encoding: 7bit X-Scanned: By amavis at egwn.net X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=0.626 tagged_above=-999 required=2 tests=[AWL=-0.070, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, RCVD_IN_SBL=3.16] X-Spam-Score: 0.626 X-Spam-Level: Cc: gnome-announce-list@gnome.org, devel-announce-list@gnome.org Subject: Re: Subversion migration schedule (new cut-off Fri 16 June) X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 10:04:10 -0000 On Tue, 2006-05-30 at 13:41 +0700, Ross Golder wrote: > Hi, > > As the various show-stoppers that prevented our previously scheduled > migration from going ahead have now been resolved, I am proposing that > the new migration go ahead at 23:59UTC on Friday 16th June 2006. Please > let us know a.s.a.p if that will be inconvenient for anyone. It may be inconvenient for any hack sessions done at GUADEC if it leaves people with too little time to convert their laptop checkouts properly, or if anything goes wrong with the conversion. I don't know if that's important enough of a reason, but it'd be too bad if we'd be stifling the surge of activity at GUADEC. Thomas From carlosg@gnome.org Tue Jun 6 10:05:02 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1A0BD3B0132; Tue, 6 Jun 2006 10:05:02 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26815-01; Tue, 6 Jun 2006 10:05:01 -0400 (EDT) Received: from localhost.localdomain (133.Red-88-0-26.dynamicIP.rima-tde.net [88.0.26.133]) by menubar.gnome.org (Postfix) with ESMTP id CB9F23B0107; Tue, 6 Jun 2006 10:05:00 -0400 (EDT) Received: by localhost.localdomain (Postfix, from userid 1000) id 7F37E13F73; Tue, 6 Jun 2006 16:04:58 +0200 (CEST) From: Carlos Garnacho To: system-tools-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Tue, 06 Jun 2006 16:04:57 +0200 Message-Id: <1149602697.21203.7.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.528 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, RCVD_IN_NJABL_DUL=1.946, RCVD_IN_SORBS_DUL=2.046] X-Spam-Score: 1.528 X-Spam-Level: * X-Mailman-Approved-At: Tue, 06 Jun 2006 10:20:33 -0400 Cc: Subject: System Tools Backends 1.9.0 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 14:05:02 -0000 The System Tools Backends version 1.9.0 "Pluto tan" have been released. This is the first release towards 2.x series, which will feature DBus interfaces to access data, signals to notify asynchronously about modifications in the configuration and a cleaner codebase. If you're interested in the 1.4.x series, checkout the stb-1-4 CVS branch. The System Tools Backends are a set of cross-platform modules for Linux, FreeBSD and other Unix systems. The backends provide an common DBus interface to all distros for modifying or reading the system configuration. Right now the System Tools Backends fully support various distros/OS such as: Redhat, Mandrake, SuSE, Fedora, Debian (and derivations like Ubuntu, Linex, Guadalinex...), Gentoo, Slackware, FreeBSD, OpenNA, PLD, Vine and Specifix. Downloading =========== You can get it from : http://system-tools-backends.freedesktop.org/downloads/1.9/ From carlosg@gnome.org Tue Jun 6 10:05:22 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B7A6E3B014C; Tue, 6 Jun 2006 10:05:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26770-09; Tue, 6 Jun 2006 10:05:22 -0400 (EDT) Received: from localhost.localdomain (133.Red-88-0-26.dynamicIP.rima-tde.net [88.0.26.133]) by menubar.gnome.org (Postfix) with ESMTP id 7A00B3B012A; Tue, 6 Jun 2006 10:05:21 -0400 (EDT) Received: by localhost.localdomain (Postfix, from userid 1000) id 0618413F73; Tue, 6 Jun 2006 16:05:20 +0200 (CEST) From: Carlos Garnacho To: system-tools-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Tue, 06 Jun 2006 16:05:19 +0200 Message-Id: <1149602719.21203.9.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.528 tagged_above=-999 required=2 tests=[AWL=-0.000, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, RCVD_IN_NJABL_DUL=1.946, RCVD_IN_SORBS_DUL=2.046] X-Spam-Score: 1.528 X-Spam-Level: * X-Mailman-Approved-At: Tue, 06 Jun 2006 10:20:34 -0400 Cc: Subject: Liboobs 0.1.0 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 14:05:22 -0000 Liboobs 0.1.0, 2006-06-06 ----------------------------------------------- Liboobs version 0.1.0 "Shattered ataraxia" has been released. Liboobs is a lightweight library that provides a GObject based interface to system-tools-backends. It's completely abstracted of the communication and authentication details, making it easy for applications to integrate with the system details. Downloading =========== You can get it from : ftp://ftp.gnome.org/pub/GNOME/sources/liboobs/0.1/ From carlosg@gnome.org Tue Jun 6 10:05:35 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AB0C03B012A; Tue, 6 Jun 2006 10:05:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26769-07; Tue, 6 Jun 2006 10:05:34 -0400 (EDT) Received: from localhost.localdomain (133.Red-88-0-26.dynamicIP.rima-tde.net [88.0.26.133]) by menubar.gnome.org (Postfix) with ESMTP id D49943B0179; Tue, 6 Jun 2006 10:05:33 -0400 (EDT) Received: by localhost.localdomain (Postfix, from userid 1000) id E163B13F73; Tue, 6 Jun 2006 16:05:31 +0200 (CEST) From: Carlos Garnacho To: system-tools-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Date: Tue, 06 Jun 2006 16:05:31 +0200 Message-Id: <1149602731.21203.11.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.528 tagged_above=-999 required=2 tests=[AWL=-0.000, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, RCVD_IN_NJABL_DUL=1.946, RCVD_IN_SORBS_DUL=2.046] X-Spam-Score: 1.528 X-Spam-Level: * X-Mailman-Approved-At: Tue, 06 Jun 2006 10:20:34 -0400 Cc: Subject: GNOME System Tools 2.15.0 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 14:05:35 -0000 The GNOME System Tools version 2.15.0 "Uncanny routine" have been released. The GNOME System Tools are a set of cross-platform configuration utilities for Linux and other Unix systems. The frontends knows nothing about the underlying system and provide the same user interface across the different types of systems. Internally they use the Liboobs library. Changes since last release =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D Common =3D=3D=3D=3D=3D=3D - use intltool 0.35, move ALL_LINGUAS to po/LINGUAS (Przemys=C5=82aw Grzegorczyk) - Make g-s-t work fine with --as-needed (Mike Auty) All tools =3D=3D=3D=3D=3D=3D=3D=3D=3D - Use liboobs. The XML interface is deprecated (Garnacho) - Adopt a more instant apply policy (Garnacho) - UI Changes (Garnacho) - Use named icons in menus and window icon for themeability (Sebastien Bacher, Garnacho) - Set translation domain for popups (Sebastien Bacher) Users =3D=3D=3D=3D=3D - Use adduser/addgroup if it's present (Garnacho) Network =3D=3D=3D=3D=3D=3D=3D - Use DHCP as the default (Garnacho) Services =3D=3D=3D=3D=3D=3D=3D=3D - Add advanced runlevels/priorities editor (Garnacho) Shares =3D=3D=3D=3D=3D=3D - Rework defaults for new shared folders (Garnacho) Time =3D=3D=3D=3D - Update some NTP servers (Gary Coady, Jun Kobayashi) Translations =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D - dz (Pema Geyleg) - es (Francisco Javier F. Serrador) - et (Ivar Smolin) - fi (Ilkka Tuohela) - gl (Ignacio Casal Quinteiro) - gu (Ankit Patel) - it (Francesco Marletta) - ka (Vladimer Sichinava) - nb (Kjartan Maraas) - ru (Nickolay V. Shmyrev) - th (Theppitak Karoonboonyanan) - tr (Deniz Kocak) Downloading =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D You can get it from : ftp://ftp.gnome.org/pub/GNOME/sources/gnome-system-tools/2.15/ From kalle.vahlman@gmail.com Wed Jun 7 13:52:15 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6E4E43B01A4 for ; Wed, 7 Jun 2006 13:52:15 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02283-05 for ; Wed, 7 Jun 2006 13:52:14 -0400 (EDT) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.168]) by menubar.gnome.org (Postfix) with ESMTP id 965853B0115 for ; Wed, 7 Jun 2006 13:52:13 -0400 (EDT) Received: by ug-out-1314.google.com with SMTP id u2so434421uge for ; Wed, 07 Jun 2006 10:52:12 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=iebILRnovVdTxqGwouC/tR/+4MtaielhlX8Ua0W3DfGDpIfDH3f9KvKP70TzbcVubjtjL/zWOS7/A2VM/5vvfCOtbjHJsooRdCtWuC03vTCdPlQ6u7BZgs1lUvDhzlgKMUpdMeg2eI3oWqrM64fhyC+c+LkzIbKwCkxiTwVCgEI= Received: by 10.67.101.10 with SMTP id d10mr759171ugm; Wed, 07 Jun 2006 10:40:55 -0700 (PDT) Received: by 10.67.16.10 with HTTP; Wed, 7 Jun 2006 10:40:55 -0700 (PDT) Message-ID: <177e83dd0606071040h35f807a8o205c18c2a68ee184@mail.gmail.com> Date: Wed, 7 Jun 2006 20:40:55 +0300 From: "Kalle Vahlman" To: gnome-announce-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.432 tagged_above=-999 required=2 tests=[AWL=-0.390, BAYES_00=-2.599, RCVD_IN_BL_SPAMCOP_NET=1.558, SPF_PASS=-0.001] X-Spam-Score: -1.432 X-Spam-Level: X-Mailman-Approved-At: Wed, 07 Jun 2006 14:03:53 -0400 Subject: [Announce] The Scw library version 0.4.4 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: zuh@iki.fi List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 17:52:15 -0000 I'm happy to announce a new release of Scw, the chat-oriented widget set! (I have a broken memory chip, didn't remember to send announcements for the releases between 0.3.0 and 0.4.4...) What's new? ========= The release 0.4.4 includes the following changes (from 0.3.0): * Bugfixes: - Draw much less (but still enough ;) - Fix memory leaks * API changes: - scw_view_set_column_foldable(): Add a boolean argument to control the foldability (previously you couldn't undo setting foldability) - New signal: "buffer-request" - New method: scw_view_scroll_to_row(): Scrolls the view to given row (a GtkTreePath) * Gtk-docs, at last! (and possibly more, but haven't managed to keep track of all the individual fixes) What is it? ======= Scw is a library that includes widgets designed for chat programs. Currently this means (but will be extended with time): * ScwView, a view that has: - Activatable text (urls, user names, etc) - Embedded icons - Pango markup - Wrapping - GtkTreeModel implementations as data storage - Different interaction modes (select, pan, smart pan) * ScwEntry, an derivate of GtkEntry which adds: - Simple input history Python and Ruby bindings are available, Java-Gtk bindings are (still) planned (but not on the immediate todo list). Any bindings will be welcomed. As a bonus feature, the widgets are guaranteed to compile and work on the Maemo[1] platform (used in the Nokia 770[2] that everybody is so exited about). More detailed description, as well as API documentation is found on the home page of Scw. Applications that use Scw ================== * Rirc (an irssi2 client, not exactly sure about status) * Silky (is being ported to it in the REWRITE branch, http://silky.sourceforge.net/ * Telepathy people have been doing a proto client using Scw (http://telepathy.freedesktop.org) * Your app here possibly? Let me know! Where to get it? ============ Homepage: http://iki.fi/zuh/scw/ Version 0.4.4: http://iki.fi/zuh/scw/scw-0.4.4.tar.gz Python bindings http://iki.fi/zuh/scw/python-scw-0.4.0.tar.gz Ruby bindings http://iki.fi/zuh/scw/ruby-scw-0.4.0.tar.gz Communication options ================ As I haven't yet set up mailing lists or bugzilla or anything really, bug reports and other stuff should be sent straight to me at zuh@iki.fi. -- Kalle Vahlman, zuh@iki.fi Powered by http://movial.fi Interesting stuff at http://syslog.movial.fi From Brian.Cameron@Sun.COM Wed Jun 7 18:25:45 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D74D13B04F0; Wed, 7 Jun 2006 18:24:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19021-09; Wed, 7 Jun 2006 18:24:40 -0400 (EDT) Received: from brmea-mail-1.sun.com (brmea-mail-1.Sun.COM [192.18.98.31]) by menubar.gnome.org (Postfix) with ESMTP id 648333B0E7D; Wed, 7 Jun 2006 18:24:21 -0400 (EDT) Received: from fe-amer-04.sun.com ([192.18.108.178]) by brmea-mail-1.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k57MOKiX019647; Wed, 7 Jun 2006 16:24:20 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0I00A01GLFT100@mail-amer.sun.com> (original mail from Brian.Cameron@Sun.COM); Wed, 07 Jun 2006 16:24:20 -0600 (MDT) Received: from [192.9.61.158] by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0I00M6DGWJIGM4@mail-amer.sun.com>; Wed, 07 Jun 2006 16:24:20 -0600 (MDT) Date: Wed, 07 Jun 2006 17:24:20 -0500 From: Brian Cameron Sender: Brian.Cameron@Sun.COM To: gnome-announce-list@gnome.org, gdm-list@gnome.org Message-id: <44875214.1030303@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5.0.2 (X11/20060515) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.446 tagged_above=-999 required=2 tests=[AWL=-0.002, BAYES_00=-2.599, TW_GD=0.077, TW_PM=0.077, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.446 X-Spam-Level: Cc: Subject: GDM2 2.8.0.8 (stable), the "SecurityFix" Release] X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 22:25:46 -0000 AOOH-GAH -------- (If you have no clue what gdm is, skip a few paragraphs down first) The 2.8.0.8 release is a stable release of GDM (note GDM 2.8.0.8 corresponds with gnome-2-12 branch) with the following new features. Note this contains an important security fix, so users and distros should update immediately. - Correction for serious security issue where the user can enter the GDM configuration GUI with a user password when the Face Browser is enabled. Refer to bugzilla.gnome.org bug #343476 (Brian Cameron) This issue impacts all versions of GDM 2.8.0.0-2.8.0.7, 2.14.0-2.14.7, and 2.15.0-2.15.3. This issue was reported to vendor-sec one week ago and has ID #CVE-2006-2452. - Translation updates (Stanislav Brabec, Josep Puigdemont i Casamaj\303\263, Abel Cheung, Priit Laes, Christophe Merlet, Clytie Siddall, \303\205smund Skj\303\246veland, Tommi Vainikainen) Note: GDM2 was originally written by Martin K. Petersen . Much work has been done on GDM2 by George Lebl, and Brian Cameron currently shares maintainership duties with the Queen of England. Note2: If installing from the tarball do note that make install overwrites most of the setup files, all except gdm.conf. It will however save backups with the .orig extension first. #ifndef GDM_DISABLE_DEPRECATED Note3: Note3 has been depracated ... #endif /* GDM_DISABLE_DEPRECATED */ Downloading: ============ Online Documentation: http://www.gnome.org/projects/gdm/ http://ftp.gnome.org/pub/GNOME/sources/gdm/2.15/ No RPM this time around BTW. Have fun. A spec file is included though, so you can try: rpmbuild -ta gdm-whatever.tar.gz Have fun, Brian From Brian.Cameron@Sun.COM Wed Jun 7 18:27:17 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7C4C83B0C49; Wed, 7 Jun 2006 18:27:17 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19552-05; Wed, 7 Jun 2006 18:27:15 -0400 (EDT) Received: from brmea-mail-3.sun.com (brmea-mail-3.Sun.COM [192.18.98.34]) by menubar.gnome.org (Postfix) with ESMTP id CCF8D3B0E66; Wed, 7 Jun 2006 18:27:14 -0400 (EDT) Received: from fe-amer-02.sun.com ([192.18.108.176]) by brmea-mail-3.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k57MRDvQ016057; Wed, 7 Jun 2006 16:27:14 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0I00401GJDHP00@mail-amer.sun.com> (original mail from Brian.Cameron@Sun.COM); Wed, 07 Jun 2006 16:27:13 -0600 (MDT) Received: from [192.9.61.158] by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0I00I5KH1CUVP4@mail-amer.sun.com>; Wed, 07 Jun 2006 16:27:13 -0600 (MDT) Date: Wed, 07 Jun 2006 17:27:13 -0500 From: Brian Cameron Sender: Brian.Cameron@Sun.COM To: gnome-announce-list@gnome.org, gdm-list@gnome.org Message-id: <448752C1.30509@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5.0.2 (X11/20060515) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.408 tagged_above=-999 required=2 tests=[AWL=-0.041, BAYES_00=-2.599, TW_DM=0.077, TW_GD=0.077, TW_PM=0.077, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.408 X-Spam-Level: Cc: Subject: GDM2 2.14.8 (stable), the "SecurityFix" Release X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 22:27:17 -0000 AOOH-GAH -------- (If you have no clue what gdm is, skip a few paragraphs down first) The 2.14.8 release is a stable release of GDM with the following new features. Note this contains an important security fix, so users and distros should update immediately. - Correction for serious security issue where the user can enter the GDM configuration GUI with a user password when the Face Browser is enabled. Refer to bugzilla.gnome.org bug #343476 (Brian Cameron) This issue impacts all versions of GDM 2.8.0.0-2.8.0.7, 2.14.0-2.14.7, and 2.15.0-2.15.3. This issue was reported to vendor-sec one week ago and has ID #CVE-2006-2452. - Fixed bug where when the "Include All" button is modified in the Users tab, the Automatic/Timed login dropdown lists update properly. (Brian Cameron) - Now gdmflexiserver calls gdmcomm_check with FALSE so it will not pop up a dialog. gdmflexiserver can be run with the --command option which can be used when the user does not have permission to a DISPLAY, so trying to show a dialog was causing gdmflexiserver to core dump when the check failed. (Brian Cameron) - Added gestures to the AccessKeyMouseEvents configuration file so that users can access more accessibility features using dwell gestures. (Brian Cameron) - Translation updates (Laurent Dhima, Pema Geyleg, Theppitak Karoonboonyanan, Gabor Kelemen, Ahmad Riza H Nst, Vincent van Adrighem) Note: GDM2 was originally written by Martin K. Petersen . Much work has been done on GDM2 by George Lebl, and Brian Cameron currently shares maintainership duties with the Queen of England. Note2: If installing from the tarball do note that make install overwrites most of the setup files, all except gdm.conf. It will however save backups with the .orig extension first. #ifndef GDM_DISABLE_DEPRECATED Note3: Note3 has been depracated ... #endif /* GDM_DISABLE_DEPRECATED */ Downloading: ============ Online Documentation - http://www.gnome.org/projects/gdm/ Latest Stable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.14/ Latest Unstable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.15/ No RPM this time around BTW. Have fun. A spec file is included though, so you can try: rpmbuild -ta gdm-whatever.tar.gz Have fun, Brian From dsandras@seconix.com Wed Jun 7 15:09:24 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E46CC3B027D for ; Wed, 7 Jun 2006 15:09:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07646-04 for ; Wed, 7 Jun 2006 15:09:22 -0400 (EDT) Received: from ns20085.ovh.net (ekiga.net [213.186.62.145]) by menubar.gnome.org (Postfix) with ESMTP id A72183B0239 for ; Wed, 7 Jun 2006 15:09:21 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ns20085.ovh.net (Postfix) with ESMTP id BF54049704 for ; Wed, 7 Jun 2006 20:51:50 +0200 (CEST) Received: from ns20085.ovh.net ([127.0.0.1]) by localhost (ns20085.ovh.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09043-07 for ; Wed, 7 Jun 2006 20:51:49 +0200 (CEST) Received: from [192.168.0.161] (173.132-245-81.adsl-dyn.isp.belgacom.be [81.245.132.173]) (using SSLv3 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by ns20085.ovh.net (Postfix) with ESMTP id DF3C549702 for ; Wed, 7 Jun 2006 20:51:48 +0200 (CEST) From: Damien Sandras To: gnome-announce-list@gnome.org Content-Type: text/plain Date: Wed, 07 Jun 2006 21:10:04 +0200 Message-Id: <1149707404.2474.40.camel@golgoth01> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at gnomemeeting.net X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 03:15:35 -0400 Subject: Ekiga 2.0.2 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 19:09:24 -0000 This is release of Ekiga for GNOME 2.14 * What is it ? ============== Ekiga is a free Voice over IP phone allowing you to do free calls over the Internet. Ekiga is the first Open Source application to support both H.323 and SIP, as well as audio and video. Ekiga was formerly known as GnomeMeeting. More information can be found at http://www.ekiga.org * Where to get it ? =================== Ekiga is available at: ftp://ftp.gnome.org/pub/gnome/sources/ekiga/2.0 * What's changed ? ================== Ekiga: * Fixed problem with the activation of actions on contacts in the addressbook. (#334685, Julien Puydt) * Added a tooltip for the status label, to read the full text even when the message is cut off. (Jan Schampera) * Added missing notifiers for "new message" sound event. (Damien Sandras) * Prevent the UI from freezing a few micro seconds while registering accounts. (Damien Sandras) * Fixed OpenSolaris support. (#335196, Sun Microsystems/Boying Lu) * Fixed wrong key name in URL handlers section for GNOME. (Jan Schampera) * Fixed detection of ended calls in DBUS. (Julien Puydt) * Fixed playing/pausing of calls in DBUS. (#333465, Julien Puydt) * Fixed useless focus grabbing in druid which made some pages impossible to get the focus. (Jan Schampera) * Fixed crash when creating a contact while not having any local addressbook. (#334960, Julien Puydt) * Fixed leaking the system username on the network. (#335784, Julien Puydt) * Make sure the reason of the end of the call is always the last thing displayed in the status bar. (Damien Sandras) * Fixed browsing of ILS servers. (Damien Sandras) * Made sensitivity of the zoom related menuitems dependant on the actual zoom factor. (#336575, Jan Schampera) * Added "New contact" menu item to the contacts context menu. (#336588, Jan Schampera) * Fixed frame size calculation of video frame. (#336572, Jan Schampera) * Fixed sensitivity setting of "Fullscreen" menu item and sensitifity when leaving Fullscreen mode. (#336575, Jan Schampera) * Fixed non-selectable text problem in the chat window. (#336789, Jan Schampera) * Fixed LDAP search filter so that it works with LDAP servers that do not have a "location" attribute. (#336849, Damien Sandras) * Made most dialogs/popups closable by ESC (partially fixes #337494) (Jan Schampera) * Fixed problem with cursor turning into a hand at the wrong position in the chat window. (#336793, Julien Puydt) * Fixed text chat formatting corruption. (#335794, Simon Wood) * Monitor IP address changes to update the registrations. (#335398, Damien Sandras) * Color inactive tabs when receiving a chat message. (#335857, Simon Wood) * Open new tabs in the background. (#335857, Simon Wood) * Avoid losing error dialogs behind the druid (#338270, Julien Puydt) * Fixed wrong packets loss count. (#339866, Damien Sandras) * Fixed video flipping bug during calls with preview active. (#339867, Damien Sandras) * Fixes crash in address book when no address book is selected (#34210, Julien Puydt) * Fixed handling of call forwarding/transfer in case of incoming call (Damien Sandras) Ekiga WIN32: * Fixed remote contacts crashing on WIN32 or with the non GNOME version. (#335472, Jan Schampera) * Ekiga will now detect if it is already running on WIN32 and bail out. (#337794, Michael Rickmann) * Fixed command-line parsing on WIN32. (#337797, Michael Rickmann) * Fixed stuttering on WIN32. (#337799, Michael Rickmann) * Made the use of SDL more reliable on WIN32. (#337795, Michael Rickmann) * Made the help work on WIN32. (#337798, Michael Rickmann) * Made the 4s delay in the audio test work on WIN32. (#337799, Michael Rickmann) * Fixed fullscreen issues on WIN32 (#337792, Michael Rickmann). SIP support: * Fixed rport support when receving SIP request from another host than the one mentionned in the Via. (#335002, Damien Sandras) * Remove REGISTER and SUBSCRIBE from the Allow field. (#334979, Damien Sandras) * Fixed SRV lookup when creating connections. (#334994, Damien Sandras) * Improved CANCEL handling. (i#334985, Damien Sandras) * Fixed user in From field so that it always corresponds to a registered account. (#335006, Damien Sandras) * Unregister using the same remote address than the one used to register. (#334999, Damien Sandras) * Prevent loop of UNREGISTER requests when leaving. (#334997, Damien Sandras) * Allow duplicate INVITE PDUs to be treated concurrently. (#334847, Damien Sandras) * Set the From field to the address of record of the default SIP account. (#334457, Damien Sandras) * Fixed infinite loop when calling an host with more than 1 SRV record. (Damien Sandras) * Added support for SDP offers in the OK response, and SDP answer in the ACK request. (Damien Sandras) * Fixed wrong behavior with different priorities when building the priorities list. (#339314, Damien Sandras) * Do not lookup recipient's address when using an outbound proxy. (#334455, Damien Sandras) * Fixed problem with dynamic payload type codecs. (#337456, Damien Sandras) * Fixed routing with proxies who do not support the 'lr' parameter. (#340415, Damien Sandras) H.323 support: * Uses lower initial bandwidth by default when registering to gatekeepers. (#300366, Damien Sandras) Devices: * Fixed broken OSS plugin. (#338505, Damien Sandras) * Added resizing capability for VYUY YUYV formats. (#330946, Luc Saillard) * Improved UVC camera support. (Martin Rubli from Logitech) * Fixed parsing of JPEG streams with DHT markers. (Martin Rubli from Logitech) -- _ Damien Sandras (o- //\ Ekiga Softphone: http://www.ekiga.org/ v_/_ FOSDEM 2006 : http://www.fosdem.org/ SIP Phone : sip:dsandras@ekiga.net sip:600000@ekiga.net From murrayc@murrayc.com Wed Jun 7 15:39:02 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 71EF73B0DDF; Wed, 7 Jun 2006 15:38:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09273-01; Wed, 7 Jun 2006 15:38:57 -0400 (EDT) Received: from swarthymail-a3.dreamhost.com (mailbigip2.dreamhost.com [208.97.132.53]) by menubar.gnome.org (Postfix) with ESMTP id 3DC723B0E65; Wed, 7 Jun 2006 15:38:44 -0400 (EDT) Received: from noname (p5497CB1E.dip.t-dialin.net [84.151.203.30]) by swarthymail-a3.dreamhost.com (Postfix) with ESMTP id 1E03F7F05A; Wed, 7 Jun 2006 12:38:41 -0700 (PDT) From: Murray Cumming To: gnome-announce , gtkmm-list Content-Type: text/plain Date: Wed, 07 Jun 2006 21:38:36 +0200 Message-Id: <1149709116.5916.26.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.684 tagged_above=-999 required=2 tests=[AWL=-0.695, BAYES_00=-2.599, RCVD_IN_SORBS_WEB=1.456, TW_GT=0.077, TW_TK=0.077] X-Spam-Score: -1.684 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 03:15:35 -0400 Cc: Subject: ANNOUNCE: gtkmm 2.9.4 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 19:39:02 -0000 *** gtkmm 2.9/2.10: gtkmm 2.9 wraps new API in GTK+ 2.9, and is API/ABI-compatibile with gtkmm 2.8, 2.6 and 2.4. It is a version of the gtkmm-2.4 API. This will become the API-stable gtkmm 2.10, wrapping GTK+ 2.10. gtkmm stays in-sync with GTK+ by following the official GNOME release schedule: http://www.gnome.org/start/unstable/ Bindings for the rest of the GNOME Platform are also available, and are also API-stable. http://www.gtkmm.org *** Changes gtkmm 2.9.4: Gtk: * PrintContext: - Added set_track_print_status() and cancel(), paginate signal. (Marko Anastasov) - get_cairo() renamed to get_cairo_context(), - get_fontmap() renamed to get_pango_fontmap(), - create_context() renamed to create_pango_context(), - create_layout() renamed to create_pango_layout(). (Murray Cumming) * PrintJob: - Added set/get_track_print_status(). (Marko Anastasov) Pango: * Added CairoFontMap. (Might be removed later) * Context: Added update_from_cairo_context(), set_cairo_font_options(), set_cairo_font_options(), get_font_options(), set_resolution(), get_resolution(). * Layout: Added create(Cairo::Context), update_from_cairo_context(), add_to_cairo_context(). * LayoutLine: Added show_in_cairo_context(), add_to_cairo_context(). (Murray Cumming) *** Download http://www.gtkmm.org/download.shtml You will need libsigc++ 2.0, available here: https://sourceforge.net/project/showfiles.php?group_id=1970 *** Development There is active discussion on the mailing list: http://www.gtkmm.org/mailinglist.shtml and in the #c++ channel on irc.gnome.org -- Murray Cumming murray@usa.net www.murrayc.com From sandmann@daimi.au.dk Thu Jun 8 23:24:44 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id ACF2A3B0418 for ; Thu, 8 Jun 2006 23:24:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23677-04 for ; Thu, 8 Jun 2006 23:24:43 -0400 (EDT) Received: from daimi.au.dk (daimi.au.dk [130.225.16.1]) by menubar.gnome.org (Postfix) with ESMTP id A7F633B0408 for ; Thu, 8 Jun 2006 23:24:42 -0400 (EDT) Received: from camel18.daimi.au.dk (camel18 [130.225.16.137]) by daimi.au.dk (8.12.11.20060308/8.12.11) with ESMTP id k593OeQD008266; Fri, 9 Jun 2006 05:24:40 +0200 Received: from camel18.daimi.au.dk (IDENT:U2FsdGVkX1/iO3gyunaS0bFYmoVfNsPfhKVcvodnSF0@localhost [127.0.0.1]) by camel18.daimi.au.dk (8.13.1/8.13.1) with ESMTP id k593OeQV004787; Fri, 9 Jun 2006 05:24:40 +0200 Received: (from sandmann@localhost) by camel18.daimi.au.dk (8.13.1/8.13.1/Submit) id k593OedI004782; Fri, 9 Jun 2006 05:24:40 +0200 X-Authentication-Warning: camel18.daimi.au.dk: sandmann set sender to sandmann@daimi.au.dk using -f Sender: sandmann@daimi.au.dk To: gnome-announce-list@gnome.org From: Soeren Sandmann Date: 09 Jun 2006 05:24:40 +0200 Message-ID: Lines: 65 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Scanned-By: MIMEDefang 2.56 on 130.225.16.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.574 tagged_above=-999 required=2 tests=[AWL=0.025, BAYES_00=-2.599] X-Spam-Score: -2.574 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 03:15:35 -0400 Subject: Sysprof Linux Profiler v. 1.0.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jun 2006 03:24:44 -0000 * What is it? -------------------------- Sysprof is a sampling system-wide CPU profiler for Linux. Sysprof uses a Linux kernel module to profile the entire system, not just an individual application.=20 Of course, sysprof handles threads and shared libraries, and applications do not have to be recompiled or instrumented. In fact they don't even have to be restarted.=20 Just insert the kernel module and start sysprof. * Features: ---------------------- - Profiles all running processes, not just a single application - Call graph support showing time spent in each branch of the call tree - Has a simple graphical interface - Profiles can be loaded and saved - Easy to use: Just insert the kernel module and start sysprof - Supports Fedora debuginfo packages * Sysprof 1.0.3 -------------------------- - Compiles with the latest kernels Please report bugs as well as success or failure stories to=20 sandmann@daimi au dk * Where can I get it? -------------------------------------------- Home page: http://www.daimi.au.dk/~sandmann/sysprof/ Source code: http://www.daimi.au.dk/~sandmann/sysprof/sysprof-1.0.3.tar.gz Sysprof requires - Linux 2.6.11 or later, compiled with profiling support - GTK+ 2.6 - libglade 2.5 It is known to work out the box on Fedora Core 4 and 5. S=F8ren From pjc51@cam.ac.uk Fri Jun 9 05:57:47 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B73C93B01A8 for ; Fri, 9 Jun 2006 05:57:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12981-09 for ; Fri, 9 Jun 2006 05:57:45 -0400 (EDT) Received: from ppsw-9.csi.cam.ac.uk (unknown [131.111.8.139]) by menubar.gnome.org (Postfix) with ESMTP id B5D2C3B00B1 for ; Fri, 9 Jun 2006 05:57:45 -0400 (EDT) X-Cam-SpamDetails: Not scanned X-Cam-AntiVirus: No virus found X-Cam-ScannerInfo: http://www.cam.ac.uk/cs/email/scanner/ Received: from tiree.ra.phy.cam.ac.uk ([131.111.48.169]:49064) by ppsw-9.csi.cam.ac.uk (ppsw.cam.ac.uk [131.111.8.139]:25) with esmtp id 1FodkB-0007u9-Tm (Exim 4.54) (return-path ); Fri, 09 Jun 2006 10:57:31 +0100 From: Phil Cowans To: gnome-announce-list@gnome.org, dasherteam@yahoogroups.com Content-Type: text/plain Date: Fri, 09 Jun 2006 10:57:30 +0100 Message-Id: <1149847050.16654.9.camel@tiree.ra.phy.cam.ac.uk> Mime-Version: 1.0 X-Mailer: Evolution 2.0.4 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.599 tagged_above=-999 required=2 tests=[BAYES_00=-2.599] X-Spam-Score: -2.599 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 06:34:46 -0400 Cc: Subject: Dasher 4.1.4 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jun 2006 09:57:47 -0000 Dasher 4.1.4 is now available for download from: http://ftp.gnome.org/pub/GNOME/sources/dasher/4.1/ Windows and (unofficial) Debian binaries are available from: http://www.dasher.org.uk/Download.html The 4.1.x series of Dasher releases is a development series which will lead to version 4.2.0 in time for the GNOME 2.16 release. If you're after stability, install the latest 4.0.x version instead. The 4.1.x series aims to improve interaction with the desktop environment and window manager, for example to make it easier to enter text into other applications. 4.1.4 fixes a number of bugs which were present in 4.1.0. We're always greatful for any feedback from users - either via the GNOME Bugzilla: http://bugzilla.gnome.org/ Or by email to dasher@mrao.cam.ac.uk. Thanks to all who contributed to this release, Phil Cowans 9th June 2006 From Rich.Burridge@Sun.COM Fri Jun 9 09:59:59 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4262D3B010A for ; Fri, 9 Jun 2006 09:59:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 29076-03 for ; Fri, 9 Jun 2006 09:59:57 -0400 (EDT) Received: from brmea-mail-2.sun.com (brmea-mail-2.Sun.COM [192.18.98.43]) by menubar.gnome.org (Postfix) with ESMTP id 436C93B01BE for ; Fri, 9 Jun 2006 09:59:57 -0400 (EDT) Received: from fe-amer-03.sun.com ([192.18.108.177]) by brmea-mail-2.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k59DxtP3010388 for ; Fri, 9 Jun 2006 07:59:56 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0L00I01IP1J100@mail-amer.sun.com> (original mail from Rich.Burridge@Sun.COM) for gnome-announce-list@gnome.org; Fri, 09 Jun 2006 07:59:55 -0600 (MDT) Received: from [192.168.1.102] (c-71-202-99-109.hsd1.ca.comcast.net [71.202.99.109]) by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0L008L6IVU1C10@mail-amer.sun.com> for gnome-announce-list@gnome.org; Fri, 09 Jun 2006 07:59:55 -0600 (MDT) Date: Fri, 09 Jun 2006 06:59:21 -0700 From: Rich Burridge Sender: Rich.Burridge@Sun.COM To: gnome-announce-list@gnome.org Message-id: <44897EB9.6060700@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5 (X11/20060327) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.598 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.598 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 11:19:14 -0400 Subject: ANNOUNCE: gcalctool v5.8.13 [hopefully stable] X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jun 2006 13:59:59 -0000 Gcalctool is the default GNOME desktop calculator. It has Basic, Advanced, Financial and Scientific modes. Internally it uses multiple precision arithmetic to produce results to a high degree of accuracy. This (hopefully stable) release is for GNOME 2.15.3. Changes since the last gcalctool version (5.8.13). * From Sami Pietila - Fixed bug #343150. Gcalctool no longer crashes when switching to scientific mode. * Adjusted configure.in so that gcalctool now requires intltool v0.35.0. Updated Translations (thankyou!) Pema Geyleg - dz.po: Updated Dzongkha translation. Vincent van Adrighem - nl.po: Translation updated by Tino Meinen. Clytie Siddall - vi.po: Updated Vietnamese translation. Theppitak Karoonboonyanan - th.po: Updated Thai translation. Miloslav Trmac - cs.po: Updated Czech translation. Raphael Higino - pt_BR.po: Updated Brazilian Portuguese translation. Ignacio Casal Quinteiro - gl.po: Updated Galician Translation. You can download this new version from: http://ftp.gnome.org/pub/GNOME/sources/gcalctool/5.8/ From Rich.Burridge@Sun.COM Fri Jun 9 12:22:20 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1CB123B110C for ; Fri, 9 Jun 2006 12:22:20 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05769-10 for ; Fri, 9 Jun 2006 12:22:18 -0400 (EDT) Received: from brmea-mail-2.sun.com (brmea-mail-2.Sun.COM [192.18.98.43]) by menubar.gnome.org (Postfix) with ESMTP id 220193B0112 for ; Fri, 9 Jun 2006 12:22:17 -0400 (EDT) Received: from fe-amer-04.sun.com ([192.18.108.178]) by brmea-mail-2.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k59GMHje022696 for ; Fri, 9 Jun 2006 10:22:17 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0L00601PDSJP00@mail-amer.sun.com> (original mail from Rich.Burridge@Sun.COM) for gnome-announce-list@gnome.org; Fri, 09 Jun 2006 10:22:17 -0600 (MDT) Received: from [192.168.1.102] (c-71-202-99-109.hsd1.ca.comcast.net [71.202.99.109]) by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0L000IIPH4FY20@mail-amer.sun.com> for gnome-announce-list@gnome.org; Fri, 09 Jun 2006 10:22:17 -0600 (MDT) Date: Fri, 09 Jun 2006 09:21:43 -0700 From: Rich Burridge Sender: Rich.Burridge@Sun.COM To: gnome-announce-list@gnome.org Message-id: <4489A017.2030903@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5 (X11/20060327) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.598 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.598 X-Spam-Level: X-Mailman-Approved-At: Fri, 09 Jun 2006 16:30:37 -0400 Subject: [ANNOUNCE: gcalctool v5.8.16 [hopefully stable] X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jun 2006 16:22:20 -0000 Sorry, that should have been gcalctool 5.8.16 (not 5.8.13). -------- Original Message -------- Subject: ANNOUNCE: gcalctool v5.8.16 [hopefully stable] Date: Fri, 09 Jun 2006 06:59:21 -0700 From: Rich Burridge To: gnome-announce-list@gnome.org Gcalctool is the default GNOME desktop calculator. It has Basic, Advanced, Financial and Scientific modes. Internally it uses multiple precision arithmetic to produce results to a high degree of accuracy. This (hopefully stable) release is for GNOME 2.15.3. Changes since the last gcalctool version (5.8.13). * From Sami Pietila - Fixed bug #343150. Gcalctool no longer crashes when switching to scientific mode. * Adjusted configure.in so that gcalctool now requires intltool v0.35.0. Updated Translations (thankyou!) Pema Geyleg - dz.po: Updated Dzongkha translation. Vincent van Adrighem - nl.po: Translation updated by Tino Meinen. Clytie Siddall - vi.po: Updated Vietnamese translation. Theppitak Karoonboonyanan - th.po: Updated Thai translation. Miloslav Trmac - cs.po: Updated Czech translation. Raphael Higino - pt_BR.po: Updated Brazilian Portuguese translation. Ignacio Casal Quinteiro - gl.po: Updated Galician Translation. You can download this new version from: http://ftp.gnome.org/pub/GNOME/sources/gcalctool/5.8/ _______________________________________________ gnome-announce-list mailing list gnome-announce-list@gnome.org http://mail.gnome.org/mailman/listinfo/gnome-announce-list From lucasr.at.mundo@gmail.com Sat Jun 10 15:18:25 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BFE893B0355 for ; Sat, 10 Jun 2006 15:18:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22270-07 for ; Sat, 10 Jun 2006 15:18:19 -0400 (EDT) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.225]) by menubar.gnome.org (Postfix) with ESMTP id 497F63B00D0 for ; Sat, 10 Jun 2006 15:18:16 -0400 (EDT) Received: by wr-out-0506.google.com with SMTP id i12so1072899wra for ; Sat, 10 Jun 2006 12:18:15 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=Az6w6MZB4nAyrTPN/c1dBiy1QeZ3eP7h8u4jteTnJO41JONOrr+vLcaDgMaoq4CGUsTFL9SOAi4mYQa1U/quNPHKz5w9wCTni0PKnnsN+iZD4toNQ2U72zqyiU0cW7CuR3V4pUG+hJ2fX18MkuKthXuw+tWs50Y+gO+yiE+erPs= Received: by 10.54.128.19 with SMTP id a19mr2963077wrd; Sat, 10 Jun 2006 12:18:15 -0700 (PDT) Received: by 10.54.93.4 with HTTP; Sat, 10 Jun 2006 12:18:15 -0700 (PDT) Message-ID: <31a62e6f0606101218v6e0f8de0rec084fa7f081f2bc@mail.gmail.com> Date: Sat, 10 Jun 2006 16:18:15 -0300 From: "Lucas Rocha" To: gnome-announce-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.525 tagged_above=-999 required=2 tests=[AWL=0.075, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.525 X-Spam-Level: X-Mailman-Approved-At: Sat, 10 Jun 2006 15:24:41 -0400 Subject: Eye of GNOME 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Jun 2006 19:18:25 -0000 Hi all, * What is it ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Eye of GNOME (eog) is the image viewer for the GNOME desktop. * What's changed in 2.15.3 ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D - Properly sort image filenames containing numbers (Felix Riemann) [#340957= ] - Thumbnailing fixes (Felix Riemann) [#342817] - Fix printing for images with alpha channel (Jan K=FCmmel) [#322057] - Updated translations: Ignacio Casal Quinteiro (gl), Ankit Patel (gu), Theppitak Karoonboonyanan (th), Clytie Siddall (vi), Inaki Larra=F1aga (e= u), Pema Geyleg (dz), Francisco Javier F. Serrador (es) * Where can I get it ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Source code: http://ftp.gnome.org/pub/GNOME/sources/eog/2.15/eog-2.15.3.tar.gz md5sums: 1e39941d5327a28f0b3e88dfc6d5d2d0 http://ftp.gnome.org/pub/GNOME/sources/eog/2.15/eog-2.15.3.tar.bz2 md5sums: 29a9768a41dce2823e93c8de60b638e3 Enjoy! --lucasr From nudrema@gmail.com Sun Jun 11 07:21:01 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1905C3B057C; Sun, 11 Jun 2006 07:21:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06331-08; Sun, 11 Jun 2006 07:20:58 -0400 (EDT) Received: from swip.net (mailfe01.swip.net [212.247.154.1]) by menubar.gnome.org (Postfix) with ESMTP id EA99F3B0318; Sun, 11 Jun 2006 07:20:57 -0400 (EDT) X-T2-Posting-ID: Ee7YIbSG3O5rNcT4cGADretWTWrDEjpwS9FwzyhFhzk= X-Cloudmark-Score: 0.000000 [] Received: from [83.182.30.172] (HELO [10.0.0.13]) by mailfe01.swip.net (CommuniGate Pro SMTP 5.0.8) with ESMTP id 192388062; Sun, 11 Jun 2006 13:20:20 +0200 Message-ID: <448BFC72.5000804@gmail.com> Date: Sun, 11 Jun 2006 13:20:18 +0200 From: =?ISO-8859-1?Q?Steve_Fr=E9cinaux?= User-Agent: Thunderbird 1.5.0.2 (X11/20060522) MIME-Version: 1.0 To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.966 tagged_above=-999 required=2 tests=[AWL=-0.436, BAYES_00=-2.599, SPF_NEUTRAL=1.069] X-Spam-Score: -1.966 X-Spam-Level: X-Mailman-Approved-At: Sun, 11 Jun 2006 07:32:46 -0400 Cc: gedit-list Subject: ANNOUNCE: gedit-plugins 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 11:21:01 -0000 Hi all, gedit-plugins 2.15.3 is available. gedit-plugins is a set of (hopefuly useful) plugins for the GNOME text editor, gedit. homepage: http://live.gnome.org/GeditPlugins * Changes in 2.15.3 ==================== New features and fixes: - Autotools fixes (Jesse van den Kieboom, Steve Frcinaux) - Terminal now uses gnome-terminal default profile (Steve Frcinaux) - New Smart Spaces unindent plugin (Steve Frcinaux) - various fixes New and updated translations: - cs (Jakub Friedl) - pt_BR (Raphael Higino) * Download =========== http://ftp.gnome.org/pub/GNOME/sources/gedit-plugins/2.15/gedit-plugins-2.15.3.tar.gz md5sums: 1d7c70969fbd60b466e00f3295bced59 http://ftp.gnome.org/pub/GNOME/sources/gedit-plugins/2.15/gedit-plugins-2.15.3.tar.bz2 md5sums: 4182e0b3b522cb35e5348ce00c8aaa1d * Development ============== Don't hesitate to have a talk with the gedit team on #gedit on irc.gnome.org if you want to give gedit-plugins some of the love it needs :-) -- Steve http://tw.apinc.org From martyn@imendio.com Sun Jun 11 17:10:48 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1F0903B013F for ; Sun, 11 Jun 2006 17:10:48 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02407-03 for ; Sun, 11 Jun 2006 17:10:46 -0400 (EDT) Received: from holken.mikan.net (holken.mikan.net [83.145.56.183]) by menubar.gnome.org (Postfix) with ESMTP id A284B3B066D for ; Sun, 11 Jun 2006 17:10:45 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by holken.mikan.net (Postfix) with ESMTP id 30EA033525E; Sun, 11 Jun 2006 22:49:14 +0200 (CEST) Received: from holken.mikan.net ([127.0.0.1]) by localhost (holken.mikan.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03671-03; Sun, 11 Jun 2006 22:49:09 +0200 (CEST) Received: from [192.168.0.2] (host86-135-75-230.range86-135.btcentralplus.com [86.135.75.230]) by holken.mikan.net (Postfix) with ESMTP id 716673352A4; Sun, 11 Jun 2006 22:49:09 +0200 (CEST) From: Martyn Russell To: gnome-announce-list@gnome.org Content-Type: text/plain Organization: Imendio Date: Sun, 11 Jun 2006 21:49:40 +0100 Message-Id: <1150058980.30411.5.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at holken.mikan.net X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.586 tagged_above=-999 required=2 tests=[AWL=0.013, BAYES_00=-2.599] X-Spam-Score: -2.586 X-Spam-Level: X-Mailman-Approved-At: Sun, 11 Jun 2006 17:36:08 -0400 Cc: gossip-dev@lists.imendio.com Subject: ANNOUNCE: Gossip 0.11.2 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 21:10:48 -0000 Gossip 0.11.1 is now available for download from: http://download.gnome.org/sources/gossip/0.11/ What is Gossip ============== Gossip is an instant messaging client for GNOME with an easy-to-use interface, providing users of the GNOME Desktop with a friendly way to keep in touch with their friends. What's new in Gossip 0.11.2 =========================== - Added avatars to the chat window (Martyn). - Cleaned up the preferences and some of the gconf keys have changed, this means some of your preferences might need resetting (Martyn). - Added a preference for showing avatars (Martyn). - Added a preference to disable the contact online notifications (Martyn). - Stop flashing the task list a while after new messages arrive (Richard). Bugs Fixed ========== - Fixed #342928, Show subscription requests in the roster instead of JUST the notification tray which isn't ideal for people without one (Martyn). - Fixed #343375, Make sure we follow the XMPP spec for RFC 3921 with regards to adding and removing contacts. Subscription was broken somehow since 0.10 (Jonatan Magnusson). - Fixed #339285, Move to new LINGUAS method (patch by Przemyslaw Grzegorczyk). - Fixed #339679, Use case insensitive search in the logs (Richard). - Fixed #343511, Support scroll events in the presence chooser (Richard). - Fixed #331773, Ask for confirmation before clearing the list (Richard). - Fixed #344438, Set mnemonic target for the theme combo (Richard). Updated Translations ==================== Jordi Mallach (ca) Richard Hult (sv) Wouter Bolsterlee (nl) More information: ================= The Gossip project page: http://developer.imendio.com/wiki/Gossip If you want to subscribe to just announcements of Gossip you can join the announcement list here: http://lists.imendio.com/mailman/listinfo/announce 11 June 2006 Gossip Team From hughsient@gmail.com Sun Jun 11 16:10:31 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 029C73B0422 for ; Sun, 11 Jun 2006 16:10:31 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31984-01 for ; Sun, 11 Jun 2006 16:10:28 -0400 (EDT) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.168]) by menubar.gnome.org (Postfix) with ESMTP id 034F83B02CC for ; Sun, 11 Jun 2006 16:10:27 -0400 (EDT) Received: by ug-out-1314.google.com with SMTP id k3so2123698ugf for ; Sun, 11 Jun 2006 13:10:03 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:subject:from:reply-to:to:cc:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; b=HRcsTP79snnDu6H8ZeGN3Q6/nt35smFKdHMw9SBcLONZCQ2eVs5l1vjT5nHY94RPJ1RJsNuEcmy+rT+Dk1FOFWvHutu5HWk50bzy6X376OZom5F33NDNaFDr5szRY8Y870/jaEpj2C+0bC4v382GnYa1nd0EcgVRgkGSV9++cCA= Received: by 10.66.216.20 with SMTP id o20mr4467611ugg; Sun, 11 Jun 2006 13:02:54 -0700 (PDT) Received: from ?10.0.0.14? ( [86.132.112.248]) by mx.gmail.com with ESMTP id e1sm5926698ugf.2006.06.11.13.02.53; Sun, 11 Jun 2006 13:02:53 -0700 (PDT) From: Richard Hughes To: GnomePowerManager List Content-Type: text/plain; charset=UTF-8 Date: Sun, 11 Jun 2006 21:02:29 +0100 Message-Id: <1150056149.3896.9.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 (2.6.2-1.fc5.5) Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.705 tagged_above=-999 required=2 tests=[AWL=-0.663, BAYES_00=-2.599, RCVD_IN_BL_SPAMCOP_NET=1.558, SPF_PASS=-0.001] X-Spam-Score: -1.705 X-Spam-Level: X-Mailman-Approved-At: Sun, 11 Jun 2006 17:36:20 -0400 Cc: GNOME-Announce List , GNOME TranslationProject Subject: GNOME Power Manager 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: richard@hughsie.com List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 20:10:31 -0000 GNOME Power Manager is a session daemon for the GNOME desktop environment that makes it easy to manage the power on your laptop or desktop system. Download at the usual place : http://ftp.gnome.org/pub/GNOME/sources/gnome-power-manager/2.15/ ============== Version 2.15.3 ============== Released June 11, 2006 General - Depend on intltool 0.35.0 to build - Grammar fixes in the schema and glade file (Clytie Siddall) - Add in XFCE option so we display in the XFCE menu. lp:43077 - Use GtkStatusIcon when GTK version >= 2.9.0 (Jaap Haitsma) - Add in new docbook documentation about the dbus interface. - Rename and add a few DBUS methods from feedback on XDG list. Power Manager - Actually show the correct levels in the pixmaps for the mouse and keyboard. - Add a gconf key so we can disable the action for when the lid is previously shut and the AC power removed at a later time as this was causing confusion. - Limit the capacity to 100% - Undim the screen when we have to unlock returning from resume. #333290 - Rework the brightness handling so that we only have one way of doing the transitions. This simplifies things greatly. #341616 - Update for gnome-screensaver API changes. #344103 Power Preferences - Add the configurable action for power button press in the UI. #344325. Power Info - Set the correct colours of the line depending on discharging/charging status. #338175. Translators - Theppitak Karoonboonyanan & Roys Hengwatanakul (Thai) - Wouter Bolsterlee (Netherlands) - Clytie Siddall (Vietnamese) - Funda Wang (Simplified Chinese) - ivind Hoel (Norwegian bokml) - Francisco Javier F. Serrador (Spanish) - Raphael Higino (Brazilian Portuguese) From gjc@inescporto.pt Sun Jun 11 18:14:06 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F035C3B0137 for ; Sun, 11 Jun 2006 18:14:05 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05363-03 for ; Sun, 11 Jun 2006 18:14:04 -0400 (EDT) Received: from animal.inescn.pt (correio.inescn.pt [194.117.24.9]) by menubar.gnome.org (Postfix) with ESMTP id 82AD43B02F9 for ; Sun, 11 Jun 2006 18:14:03 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by animal.inescn.pt (8.13.6/8.13.6/7) with ESMTP id k5BMCqqs022474; Sun, 11 Jun 2006 23:12:52 +0100 (WEST) Received: from pong.inescporto.pt (pong.inescn.pt [194.117.26.74]) by animal.inescn.pt (8.13.6/8.13.6/5) with ESMTP id k5BMCZ29022454; Sun, 11 Jun 2006 23:12:35 +0100 (WEST) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by pong.inescporto.pt (Postfix) with ESMTP id DB83A119191; Sun, 11 Jun 2006 23:09:37 +0100 (WEST) From: "Gustavo J. A. M. Carneiro" To: gnome-announce-list@gnome.org Content-Type: text/plain Date: Sun, 11 Jun 2006 23:12:34 +0100 Message-Id: <1150063954.5758.0.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at inescporto.pt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.394 tagged_above=-999 required=2 tests=[AWL=-0.006, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001, TW_EV=0.077] X-Spam-Score: -2.394 X-Spam-Level: X-Mailman-Approved-At: Sun, 11 Jun 2006 18:37:01 -0400 Cc: PyGTK List Subject: ANNOUNCE: GnomePython 2.15.2 (unstable) X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 22:14:06 -0000 GnomePython 2.15.2 has been just released. This is a unstable release for testing purposes. GnomePython provides python interfacing modules for most of the GNOME Developer Platform libraries (except those already wrapped somewhere else.) Currently the list of provided python modules includes: - gnome, gnome.ui - gnomecanvas - gnomevfs - gconf - bonobo, bonobo.activation, bonobo.ui Overview of Changes from gnome-python 2.15.1 to gnome-python 2.15.2 =================================================================== * gnomevfs - Fix FileInfo.valid_fields computation (Sidnei da Silva) - Add some missing permission constants (Sidnei) - Add new FileInfo.access field (Gustavo) - Add sync variant of "file control" method (Gustavo) * gnome - gnome.program_init changes process name on Linux with prctl (Gustavo) The source tarball can be found here: http://ftp.gnome.org/pub/GNOME/sources/gnome-python/2.15/ Please file bug reports (bugs, missing APIs) here: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-python -- Gustavo J. A. M. Carneiro The universe is always one step beyond logic From William.Walker@Sun.COM Sun Jun 11 19:53:33 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C98A93B00BC; Sun, 11 Jun 2006 19:53:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09467-02; Sun, 11 Jun 2006 19:53:31 -0400 (EDT) Received: from brmea-mail-4.sun.com (brmea-mail-4.Sun.COM [192.18.98.36]) by menubar.gnome.org (Postfix) with ESMTP id 656553B00B7; Sun, 11 Jun 2006 19:53:31 -0400 (EDT) Received: from fe-amer-06.sun.com ([192.18.108.180]) by brmea-mail-4.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k5BNqQ6B020577; Sun, 11 Jun 2006 17:52:26 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0P00M01Y1KY900@mail-amer.sun.com> (original mail from William.Walker@Sun.COM); Sun, 11 Jun 2006 17:52:26 -0600 (MDT) Received: from [192.168.1.105] ([68.116.197.173]) by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0P0097BZN5LTZ1@mail-amer.sun.com>; Sun, 11 Jun 2006 17:52:26 -0600 (MDT) Date: Sun, 11 Jun 2006 19:52:16 -0400 From: Willie Walker Sender: William.Walker@Sun.COM To: orca-list@gnome.org, gnome-announce-list@gnome.org, gnome-accessibility-list@gnome.org Message-id: <1150069937.5071.4.camel@localhost> MIME-version: 1.0 X-Mailer: Evolution 2.6.1 Content-type: text/plain; charset=UTF-8 Content-transfer-encoding: 8BIT X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.587 tagged_above=-999 required=2 tests=[AWL=0.011, BAYES_00=-2.599, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.587 X-Spam-Level: X-Mailman-Approved-At: Mon, 12 Jun 2006 03:22:46 -0400 Cc: Subject: Announcing Orca 0.2.5 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 23:53:34 -0000 ================ * What is Orca ? ================ Orca is a scriptable screen reader for the GNOME desktop for people with visual impairments. ================== * What's changed ? ================== We've done a lot of work on Orca since the last release in both the new functionality and quality/stability departments. We thank all of our users that are providing feedback on gnome-list@gnome.org (see http://mail.gnome.org/mailman/listinfo/orca-list) as well as http://bugzilla.gnome.org. We value all of your feedback and help. We also appreciate contributions from community members, including Al Puzzuoli who is doing a great job helping with the Orca Wiki at http://live.gnome.org/Orca and Francisco Javier Dorado Martnez who has been testing and providing patches. Thank you all! ================== Orca 0.2.5 Changes ================== * Re-map keyboard bindings and add additional keyboard bindings. See http://live.gnome.org/Orca/KeyboardCommands for the list. * Improvements to StarOffice support to provide better access to text documents and spreadsheets. Also get rid of spurious "0.00" text that was showing up in braille for StarOffice buttons. * Addition of announcing text selection as it is selected and unselected. * Generalize the "read table cell row" functionality. If you press Insert+F11, it will toggle the feature to read the entire row of a table or just the selected table cell when you move from row to row. * Improved support for SayAll of text objects (SayAll for flat review is still on the to do list). * Addition of self-voicing module to tell Orca to be quiet when a self-voicing application is present. * Addition of ability to turn Orca into a speech server that can accessed via simple HTTP commands (default port is 20433, but this is customizable via orca.settings.speechServerPort). This will allow self-voicing applications to use Orca for their speech, thus letting them get the user's speech settings preferences. * Addition of orca.settings.enableBrailleGrouping (default=False). NOTE: this represents a change in the UI for Orca - the behavior to date has been to always group menu items on the braille display. The system responsiveness was bad for large menus, however, so we decided to make this an optional feature turned off by default. * Addition of utility to report information on the currently active script. This is primarily for helping script writers do debugging and is accessed by pressing Insert+F3. * Addition of orca.settings.cacheAccessibles (default=True) as a means to turn the local caching of accessible objects on or off. This is primarily an Orca developer debugging feature. * Fix for bug 344218 - gnome-terminal would not be presented properly if it was started after Orca. * Fix for bug 343666: pressing buttons on braille displays could cause a hang. * Partial fix for bug 342022 - provide some defensive mechanisms to help prevent some hangs. * Fix for bug 343133 - do not hang when doing a flat-review of a man page in gnome-terminal. * Fix for bug #343013 - the command line option strings should not be translatable. * Partial fix for bug 319652 - become a better Python thread citizen to help reduce hangs. * Fix for bug 342303 - stop speech when the user presses the mouse button. * Fix for bug 342122 - use all labels for an objecty when presenting an object. * Fix for bug 342133 - do not read all labels in gnome-window-properties application when it appears. * Fix for bug 341415 - when moving between workspaces with metacity, eliminate redundant output and alsomake sure workspace names are announced. * Refactor of various modules to move script writing utilities into util.py. * More fleshing out of the test plan. ====================== * Where can I get it ? ====================== Source code: http://ftp.gnome.org/pub/GNOME/sources/orca/0.2/orca-0.2.5.tar.gz Enjoy. Will, Mike, Rich, Lynn, and the Orca community From callum@spooky-possum.org Mon Jun 12 02:05:21 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 06D8C3B000D; Mon, 12 Jun 2006 02:05:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21232-04; Mon, 12 Jun 2006 02:05:19 -0400 (EDT) Received: from genamics.blastula.net (dns1.blastula.net [64.92.214.155]) by menubar.gnome.org (Postfix) with ESMTP id 4C4D83B00D4; Mon, 12 Jun 2006 02:05:19 -0400 (EDT) Received: from [60.234.103.60] (helo=[60.234.103.60]) by genamics.blastula.net with esmtpa (Exim 4.52) id 1FpfWT-0001Yo-NG; Mon, 12 Jun 2006 18:03:39 +1200 From: Callum McKenzie To: games-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Date: Mon, 12 Jun 2006 18:03:05 +1200 Message-Id: <1150092185.10939.21.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Antivirus-Scanner: Clean mail though you should still use an Antivirus X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - genamics.blastula.net X-AntiAbuse: Original Domain - gnome.org X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [47 12] X-AntiAbuse: Sender Address Domain - spooky-possum.org X-Source: X-Source-Args: X-Source-Dir: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.538 tagged_above=-999 required=2 tests=[AWL=0.061, BAYES_00=-2.599] X-Spam-Score: -2.538 X-Spam-Level: X-Mailman-Approved-At: Mon, 12 Jun 2006 03:23:07 -0400 Cc: Subject: gnome-games 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: callum@spooky-possum.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 06:05:21 -0000 gnome-games 2.15.3 ================== This development release of gnome-games is a little short on new content since we are in the process of changing maintainers and not everything is organised yet. Things that have changed: General: - High scores: the file is truncated properly if you use a short name. This stops you getting a top-ten score with 11th-place. - Require the latest intltool. Aisleriot - Radio-buttons for Klondike options work now. There are new choices for how you want your cards dealt in Klondike. - Explicitly protect the cards from garbage collection. This is should fix bug #342038, but doesn't actually seem to work. Robots: - Really, really, fix the desktop icon name this time (I hope). As usual, get it from: http://download.gnome.org/sources/gnome-games/2.15/ - Callum From gjc@inescporto.pt Sun Jun 11 18:38:11 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E31903B0350 for ; Sun, 11 Jun 2006 18:38:10 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06171-08 for ; Sun, 11 Jun 2006 18:38:08 -0400 (EDT) Received: from animal.inescn.pt (correio.inescn.pt [194.117.24.9]) by menubar.gnome.org (Postfix) with ESMTP id D88DC3B025D for ; Sun, 11 Jun 2006 18:38:07 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by animal.inescn.pt (8.13.6/8.13.6/7) with ESMTP id k5BMau8H023824; Sun, 11 Jun 2006 23:36:56 +0100 (WEST) Received: from pong.inescporto.pt (pong.inescn.pt [194.117.26.74]) by animal.inescn.pt (8.13.6/8.13.6/5) with ESMTP id k5BMaf3c023811; Sun, 11 Jun 2006 23:36:41 +0100 (WEST) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by pong.inescporto.pt (Postfix) with ESMTP id CC3E1119191; Sun, 11 Jun 2006 23:33:43 +0100 (WEST) From: "Gustavo J. A. M. Carneiro" To: PyGTK Content-Type: text/plain Date: Sun, 11 Jun 2006 23:36:40 +0100 Message-Id: <1150065400.5758.3.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at inescporto.pt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.39 tagged_above=-999 required=2 tests=[AWL=-0.002, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: -2.39 X-Spam-Level: X-Mailman-Approved-At: Mon, 12 Jun 2006 03:23:25 -0400 Cc: gnome-announce-list@gnome.org Subject: ANNOUNCE: GnomePythonDesktop 2.15.3 (unstable) X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 22:38:11 -0000 GnomePythonDesktop 2.15.3 has been just released. This is a unstable release for testing purposes. GnomePythonDesktop provides python interfacing modules for some GNOME libraries part of the GNOME Desktop. The following Python modules are included: - gnomeapplet - gnomeprint, gnomeprint.ui - gtksourceview - wnck - totem.plparser - gtop - nautilusburn - mediaprofiles - metacity - rsvg - gnomekeyring - gnomedesktop Overview of Changes from 2.15.2 to 2.15.3 ============================================================================== * gnomekeyring - Improve API (throw exceptions instead of returning error codes) (Gustavo) - Add an example (Gustavo) * metacity - Update to new C API (Frederic Peters) - Wrap wnck_window_get_geometry() (Magnus Therning) * nautilusburn - Update to new improved C API (Python API is not preserved) (Gustavo) The source tarball can be found here: http://ftp.gnome.org/pub/GNOME/sources/gnome-python-desktop/2.15/ Please file bug reports (bugs, missing APIs) here: http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-python-desktop Happy testing! -- Gustavo J. A. M. Carneiro The universe is always one step beyond logic. From gjc@inescporto.pt Sun Jun 11 19:00:35 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 48BC73B0253; Sun, 11 Jun 2006 19:00:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07173-08; Sun, 11 Jun 2006 19:00:34 -0400 (EDT) Received: from animal.inescn.pt (correio.inescn.pt [194.117.24.9]) by menubar.gnome.org (Postfix) with ESMTP id 6D4C93B014F; Sun, 11 Jun 2006 19:00:33 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by animal.inescn.pt (8.13.6/8.13.6/7) with ESMTP id k5BMxkXt025129; Sun, 11 Jun 2006 23:59:46 +0100 (WEST) Received: from pong.inescporto.pt (pong.inescn.pt [194.117.26.74]) by animal.inescn.pt (8.13.6/8.13.6/5) with ESMTP id k5BMxSnQ025107; Sun, 11 Jun 2006 23:59:28 +0100 (WEST) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by pong.inescporto.pt (Postfix) with ESMTP id 08E1F119191; Sun, 11 Jun 2006 23:56:31 +0100 (WEST) From: "Gustavo J. A. M. Carneiro" To: gnome-announce-list@gnome.org Content-Type: text/plain Date: Sun, 11 Jun 2006 23:59:27 +0100 Message-Id: <1150066767.5758.5.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at inescporto.pt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.427 tagged_above=-999 required=2 tests=[AWL=0.038, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.427 X-Spam-Level: X-Mailman-Approved-At: Mon, 12 Jun 2006 03:23:49 -0400 Cc: orbit-list@gnome.org, PyGTK List Subject: ANNOUNCE: PyORBit 2.14.1 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 23:00:36 -0000 "PyORBit is a Python binding for the ORBit2 CORBA ORB. It was developped to suit the needs of the bonobo bindings in GNOME-Python, but is usable for other purposes as well. It aims to follow the standard Python language mapping for CORBA. It can generate stubs at runtime from typelibs, IDL files, or by introspecting remote objects using ORBit2's IModule typelib capabilities." The source tarball can be found here: http://ftp.gnome.org/pub/GNOME/sources/pyorbit/2.13/ Please file bug reports (bugs, missing APIs) here: http://bugzilla.gnome.org/enter_bug.cgi?product=pyorbit Changes from 2.14.0 to 2.14.1: - Fix build problem on cygwin - Fix segmentation fault on orb.shutdown() - Make it work on Python 2.5 and 64-bit platforms -- Gustavo J. A. M. Carneiro The universe is always one step beyond logic From mclasen@redhat.com Mon Jun 12 12:04:32 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 41C3B3B000C; Mon, 12 Jun 2006 12:04:32 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09149-04; Mon, 12 Jun 2006 12:04:29 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 7270D3B009D; Mon, 12 Jun 2006 12:04:29 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5CG3bc9030255; Mon, 12 Jun 2006 12:03:37 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [172.16.76.12]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5CG3bc3007778; Mon, 12 Jun 2006 12:03:37 -0400 Received: from golem.boston.redhat.com (golem.boston.redhat.com [172.16.80.24]) by mail.boston.redhat.com (8.12.8/8.12.8) with ESMTP id k5CG3blQ018463; Mon, 12 Jun 2006 12:03:37 -0400 From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain Date: Mon, 12 Jun 2006 12:03:36 -0400 Message-Id: <1150128216.15532.14.camel@golem.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.1 (2.7.1-1) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.426 tagged_above=-999 required=2 tests=[AWL=-0.056, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_LQ=0.077, TW_RX=0.077, TW_TR=0.077] X-Spam-Score: -2.426 X-Spam-Level: Cc: Subject: GLib 2.11.3 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 16:04:32 -0000 GLib 2.11.3 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.11/ http://ftp.gnome.org/pub/GNOME/sources/glib/2.11/ glib-2.11.3.tar.bz2 md5sum: 41931c4965f7e1848f81b800914905cd glib-2.11.3.tar.gz md5sum: cd78ebc535e29cdef0fed9487aa21dac This is a development release leading up to GLib 2.12. Notes: * This is unstable development release. While it has had a bit of testing, there are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GLib 2.10. If you have problems, you'll need to reinstall GLib 2.10. * GLib 2.12 will be source and binary compatible with the GLib 2.10.x series (for some caveats, see the README). At this point, the API additions in the 2.11.x series are almost finished. * Bugs should be reported to http://bugzilla.gnome.org. About GLib ========== GLib is the low-level core library that forms the basis for projects such as GTK+ and GNOME. It provides data structure handling for C, portability wrappers, and interfaces for such runtime functionality as an event loop, threads, dynamic loading, and an object system. More information about GLib is available at: http://www.gtk.org/ An installation guide for the GTK+ libraries, including GLib, can be found at: http://developer.gnome.org/doc/API/2.0/gtk/gtk-building.html Overview of Changes from GLib 2.11.2 to GLib 2.11.3 =================================================== * GBookmarkFile: - g_bookmark_file_move_item: Return TRUE in case of an empty target * Bugs fixed: 343919 gunicollate.c: strxfrm bug on VC8 * Updated translations (fi) A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=343919 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Emmanuele Bassi, Kazuki Iwamoto, Tor Lillqvist Matthias Clasen June 12, 2006 From Brian.Cameron@Sun.COM Mon Jun 12 14:30:32 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4CFFC3B0010; Mon, 12 Jun 2006 14:30:32 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24480-06; Mon, 12 Jun 2006 14:30:31 -0400 (EDT) Received: from brmea-mail-3.sun.com (brmea-mail-3.Sun.COM [192.18.98.34]) by menubar.gnome.org (Postfix) with ESMTP id F1D1A3B0078; Mon, 12 Jun 2006 14:30:30 -0400 (EDT) Received: from fe-amer-01.sun.com ([192.18.108.175]) by brmea-mail-3.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k5CITqhn016383; Mon, 12 Jun 2006 12:29:52 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0R00001F5FBN00@mail-amer.sun.com> (original mail from Brian.Cameron@Sun.COM); Mon, 12 Jun 2006 12:29:52 -0600 (MDT) Received: from [192.168.0.20] ([206.135.142.194]) by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0R002PJFDNG7X0@mail-amer.sun.com>; Mon, 12 Jun 2006 12:29:52 -0600 (MDT) Date: Mon, 12 Jun 2006 13:29:49 -0500 From: Brian Cameron Sender: Brian.Cameron@Sun.COM To: gnome-announce-list@gnome.org, gdm-list@gnome.org Message-id: <448DB29D.9020208@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5.0.2 (X11/20060515) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.444 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, TW_GD=0.077, TW_PM=0.077, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.444 X-Spam-Level: Cc: Subject: GDM2 2.15.5 (unstable), the "Caraboy" Release X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 18:30:32 -0000 AOOH-GAH -------- (If you have no clue what gdm is, skip a few paragraphs down first) The 2.15.5 release is an unstable release of GDM with the following new features. - Correction to autologin PAM service name so automatic login works. (Brian Cameron) - Fix compiler warnings that were causing core dumping issues on some platforms (Brian Cameron) - Translation updates (Josep Puigdemont Casamaj\303\263, Changwoo Ryu) Note that this also contains an important security fix that was originally released in 2.15.4, so please make sure to update if using an older version than 2.15.4. - Correction for serious security issue where the user can enter the GDM configuration GUI with a user password when the Face Browser is enabled. Refer to bugzilla.gnome.org bug #343476 (Brian Cameron) This issue impacts all versions of GDM 2.8.0.0-2.8.0.7, 2.14.0-2.14.7, and 2.15.0-2.15.3. This issue was reported to vendor-sec one week ago and has ID #CVE-2006-2452. Note: GDM2 was originally written by Martin K. Petersen . Much work has been done on GDM2 by George Lebl, and Brian Cameron currently shares maintainership duties with the Queen of England. Note2: If installing from the tarball do note that make install overwrites most of the setup files, all except gdm.conf. It will however save backups with the .orig extension first. #ifndef GDM_DISABLE_DEPRECATED Note3: Note3 has been depracated ... #endif /* GDM_DISABLE_DEPRECATED */ Downloading: ============ Online Documentation - http://www.gnome.org/projects/gdm/ Latest Stable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.14/ Latest Unstable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.15/ No RPM this time around BTW. Have fun. A spec file is included though, so you can try: rpmbuild -ta gdm-whatever.tar.gz Have fun, Brian From Brian.Cameron@Sun.COM Mon Jun 12 15:08:35 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 715123B034C; Mon, 12 Jun 2006 15:08:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26412-02; Mon, 12 Jun 2006 15:08:32 -0400 (EDT) Received: from brmea-mail-1.sun.com (brmea-mail-1.Sun.COM [192.18.98.31]) by menubar.gnome.org (Postfix) with ESMTP id 99D443B025E; Mon, 12 Jun 2006 15:08:32 -0400 (EDT) Received: from fe-amer-05.sun.com ([192.18.108.179]) by brmea-mail-1.sun.com (8.13.6+Sun/8.12.9) with ESMTP id k5CJ7bEh002523; Mon, 12 Jun 2006 13:07:37 -0600 (MDT) Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) id <0J0R00501GXLIW00@mail-amer.sun.com> (original mail from Brian.Cameron@Sun.COM); Mon, 12 Jun 2006 13:07:37 -0600 (MDT) Received: from [192.168.0.20] ([206.135.142.194]) by mail-amer.sun.com (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPSA id <0J0R00A6NH4LVTH0@mail-amer.sun.com>; Mon, 12 Jun 2006 13:07:37 -0600 (MDT) Date: Mon, 12 Jun 2006 14:07:35 -0500 From: Brian Cameron Sender: Brian.Cameron@Sun.COM To: gnome-announce-list@gnome.org, gdm-list@gnome.org Message-id: <448DBB77.9000608@sun.com> MIME-version: 1.0 Content-type: text/plain; format=flowed; charset=ISO-8859-1 Content-transfer-encoding: 7BIT User-Agent: Mail/News 1.5.0.2 (X11/20060515) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.444 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, TW_GD=0.077, TW_PM=0.077, UNPARSEABLE_RELAY=0.001] X-Spam-Score: -2.444 X-Spam-Level: Cc: Subject: GDM2 2.14.9 (stable), the "Lincoln Park" Release X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 19:08:35 -0000 AOOH-GAH -------- (If you have no clue what gdm is, skip a few paragraphs down first) The 2.14.9 release is a stable release of GDM with the following new features. - Correction to autologin PAM service name so automatic login works. (Brian Cameron) - Fix compiler warnings that were causing core dumping issues on some platforms (Brian Cameron) - Translation updates (Josep Puigdemont Casamaj\303\263) Note: GDM2 was originally written by Martin K. Petersen . Much work has been done on GDM2 by George Lebl, and Brian Cameron currently shares maintainership duties with the Queen of England. Note2: If installing from the tarball do note that make install overwrites most of the setup files, all except gdm.conf. It will however save backups with the .orig extension first. #ifndef GDM_DISABLE_DEPRECATED Note3: Note3 has been depracated ... #endif /* GDM_DISABLE_DEPRECATED */ Downloading: ============ Online Documentation - http://www.gnome.org/projects/gdm/ Latest Stable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.14/ Latest Unstable - http://ftp.gnome.org/pub/GNOME/sources/gdm/2.15/ No RPM this time around BTW. Have fun. A spec file is included though, so you can try: rpmbuild -ta gdm-whatever.tar.gz Have fun, Brian From mclasen@redhat.com Mon Jun 12 15:43:04 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 851123B00E5; Mon, 12 Jun 2006 15:43:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27729-06; Mon, 12 Jun 2006 15:43:02 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 5B16F3B0010; Mon, 12 Jun 2006 15:43:02 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5CJZWav007572; Mon, 12 Jun 2006 15:35:32 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [172.16.76.12]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5CJZWUd001833; Mon, 12 Jun 2006 15:35:32 -0400 Received: from golem.boston.redhat.com (golem.boston.redhat.com [172.16.80.24]) by mail.boston.redhat.com (8.12.8/8.12.8) with ESMTP id k5CJZWlQ009694; Mon, 12 Jun 2006 15:35:32 -0400 From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain Date: Mon, 12 Jun 2006 15:35:31 -0400 Message-Id: <1150140931.15532.18.camel@golem.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.1 (2.7.1-1) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.541 tagged_above=-999 required=2 tests=[AWL=0.060, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.541 X-Spam-Level: Cc: Subject: GTK+ 2.8.19 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 19:43:04 -0000 GTK+ 2.8.19 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.8/ http://ftp.gnome.org/pub/GNOME/sources/gtk+/2.8/ gtk+-2.8.19.tar.bz2 md5sum: 1a03dbed4b794194a610e9d7eb175b06 gtk+-2.8.19.tar.gz md5sum: 604d3263498994c58af378f0ec076e6f This is a bugfix release in the 2.8.x series. It fixes a rare memory corruption issue when using the deprecated GdkFont API. What is GTK+ ============ 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.8 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/ Overview of Changes from GTK+ 2.8.18 to GTK+ 2.8.19 =================================================== Bugs fixed: 341327 Memory corruption inside glib 337491 _gdk_win32_drawable_release_dc: DeleteDC() called on a GetDC() handle 343425 "grab-notify"-signal is not correctly propagated for internal children 344244 Window resizing not working when keeping the aspect fixed 344496 CRLF converting via Clipboard Updated translations (ne) A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=343425,341327,344244,337491,344496 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Markku Vire, Sampo Savolainen, Tim Janik, Tor Lillqvist, Chris Wilson June 12, 2006 Matthias Clasen From newren@gmail.com Mon Jun 12 20:01:08 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C06453B018B for ; Mon, 12 Jun 2006 20:01:08 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03747-10 for ; Mon, 12 Jun 2006 20:01:06 -0400 (EDT) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.203]) by menubar.gnome.org (Postfix) with ESMTP id DCC213B0078 for ; Mon, 12 Jun 2006 20:01:05 -0400 (EDT) Received: by wx-out-0102.google.com with SMTP id h26so971531wxd for ; Mon, 12 Jun 2006 17:00:16 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=tzATDJMp0XzBzC3f1Js6q5t6DW1AJ/Xb3xHu6cJ5HbRxmg4U9Mi4mRfXd+tBd4gF2Jrx0LCPgFnY6WCcrrfEvTgkrAqgyR9TK2LZ0Rxry84BtUi6UXb3giOhJe8CORooz/5D9FkMGku6+JWNaBWjfK/H1pg3dz8Xy5khyLDZnps= Received: by 10.70.29.3 with SMTP id c3mr7026730wxc; Mon, 12 Jun 2006 17:00:16 -0700 (PDT) Received: by 10.70.89.16 with HTTP; Mon, 12 Jun 2006 17:00:16 -0700 (PDT) Message-ID: <51419b2c0606121700j69ef2e93x2dedecfb4c173083@mail.gmail.com> Date: Mon, 12 Jun 2006 18:00:16 -0600 From: "Elijah Newren" To: gnome-announce-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.537 tagged_above=-999 required=2 tests=[AWL=-0.014, BAYES_00=-2.599, SPF_PASS=-0.001, TW_BW=0.077] X-Spam-Score: -2.537 X-Spam-Level: Subject: libwnck 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 00:01:09 -0000 * What is it ? ============== Library for writing different kinds of workspace switchers, window lists, task bars, task menus, etc. Window Navigation Construction Kit. Pronounced "lib-wink" * What's changed ? ================== Fixes - restart activation timeout when the mouse moves to a different workspace (Benjamin) - new methods to test if the names returned by wnck_window_get_name and wnck_window_get_icon_name are real or just FALLBACK_NAME (Dan) [#342577] Misc - don't translate %s (Vincent) [#339069] Translations - Guillaume Savaton (eo) * Where can I get it ? ====================== Source code http://ftp.gnome.org/pub/GNOME/sources/libwnck/2.15/ MD5SUMs 6e9ef41d1aa9e81d6bc33047cccbe07f libwnck-2.15.3.tar.bz2 08a86da5a0225ef1ac5f340b95e74a4c libwnck-2.15.3.tar.gz From newren@gmail.com Mon Jun 12 20:28:13 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2AE023B00A5 for ; Mon, 12 Jun 2006 20:28:13 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04431-07 for ; Mon, 12 Jun 2006 20:28:11 -0400 (EDT) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.193]) by menubar.gnome.org (Postfix) with ESMTP id 6F8173B0078 for ; Mon, 12 Jun 2006 20:28:11 -0400 (EDT) Received: by wx-out-0102.google.com with SMTP id h26so974384wxd for ; Mon, 12 Jun 2006 17:27:35 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=kP6G2sZ3DMwVOY8jQamPOJMaaFSRSXp2y9wwFGXNkpY9JgQhdby0hd2FfdVpmpuaiefE4ZzuZpRcGMYYYQn6Uy0lA4+nsPGxOr+uQMfqytegFiAFLpHQ1Ly8bKHW0FG3kwRN1lWVPIylZ8GP7vkdnEXeWht1ipWqQw7nj0OchIk= Received: by 10.70.132.12 with SMTP id f12mr6858664wxd; Mon, 12 Jun 2006 17:01:49 -0700 (PDT) Received: by 10.70.89.16 with HTTP; Mon, 12 Jun 2006 17:01:49 -0700 (PDT) Message-ID: <51419b2c0606121701y5d42a121o5ab05ac32f69b96@mail.gmail.com> Date: Mon, 12 Jun 2006 18:01:49 -0600 From: "Elijah Newren" To: gnome-announce-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.576 tagged_above=-999 required=2 tests=[AWL=0.024, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.576 X-Spam-Level: Subject: metacity 2.15.5 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 00:28:13 -0000 * What is it ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Metacity is a simple window manager that integrates nicely with GNOME 2. * What's changed ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Thanks to Bj=F6rn Lindqvist, S=F8ren Sandmann, Adam Jackson, Elijah Newren, and Aidan Delaney for improvements in this release. - code cleanup in resizepopup.c (Bj=F6rn) [#341648] - fix a logic bug so that the whole titlebar becomes sensitive to mouse clicks (Bj=F6rn) [#336320] - make mouse cursor when moving windows become a hand (Bj=F6rn) [#337376] - lots and lots of compositor improvements -- beginning of a new layer to abstract transition effects, shrinking and minimizing and exploding effects, fading in and out, unminimize animation that reverses minimize one, translucent menus, bounce on window focus, and all kinds of stuff I don't understand and can't summarize well (S=F8ren, Adam) - Fix a crash on exit/logout from assuming a compositor would always exist (Elijah) [#342166] - code cleanup in tabpopup.c (Aidan Delaney) [#166890] Translations Pema Geyleg (dz), I=F1aki Larra=F1aga Murgoitio (eu), Theppitak Karoonboonyanan (th), Clytie Siddall (vi) * Where can I get it ? =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Source code http://download.gnome.org/sources/metacity/2.15/ MD5SUMs 057a284898385218b8711229d659c2ed metacity-2.15.5.tar.bz2 983eb3ee58263214e3e57c2f962fbd6a metacity-2.15.5.tar.gz From mclasen@redhat.com Tue Jun 13 02:09:16 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 72FE93B00AF; Tue, 13 Jun 2006 02:09:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12183-04; Tue, 13 Jun 2006 02:09:13 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id B2F773B000C; Tue, 13 Jun 2006 02:09:13 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5D681s3022181; Tue, 13 Jun 2006 02:08:01 -0400 Received: from lacrosse.corp.redhat.com (lacrosse.corp.redhat.com [172.16.52.154]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5D67uRP017686; Tue, 13 Jun 2006 02:07:56 -0400 Received: from [172.16.83.145] (vpn83-145.boston.redhat.com [172.16.83.145]) by lacrosse.corp.redhat.com (8.12.11.20060308/8.11.6) with ESMTP id k5D67tQC015619; Tue, 13 Jun 2006 02:07:56 -0400 From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain; charset=UTF-8 Organization: Red Hat Date: Tue, 13 Jun 2006 02:09:42 -0400 Message-Id: <1150178982.4081.13.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.426 tagged_above=-999 required=2 tests=[AWL=-0.056, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_GD=0.077, TW_GT=0.077, TW_KB=0.077] X-Spam-Score: -2.426 X-Spam-Level: Cc: Subject: GTK+ 2.9.3 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 06:09:16 -0000 GTK+ 2.9.3 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.9/ http://ftp.gnome.org/pub/gnome/sources/gtk+/2.9/ gtk+-2.9.3.tar.bz2 md5sum: d73039a3b5847c352f5740ac908be7d2 gtk+-2.9.3.tar.gz md5sum: 0156eef91d2bbb23f1b6ccb49335fae5 This is a development release leading up to GTK+ 2.10. Notes: * This is unstable development release. There are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GTK+ 2.8. If you have problems, you'll need to reinstall GTK+ 2.8. * GTK+ 2.10 will be source compatible with the GTK+ 2.8 series; the new API additions in GTK+ 2.9.0 are not yet completely finalized, so there are likely incompatibilies between this release and the final 2.10 release. * The ABI version has been bumped from 2.4.0 to 2.10.0, since the filechooser backend interface has been changed. Third-party filechooser backends need to be ported to the new interface. Other third-party modules (input methods, image loaders, etc) just need to be reinstalled in the proper location for GTK+ to find them. * Remaining issues for GTK+ 2.10 can be found with following bugzilla query: http://bugzilla.gnome.org/buglist.cgi?product=gtk%2b&target_milestone=2.10+API+Freeze&target_milestone=2.10+Freeze&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED * Bugs should be reported to http://bugzilla.gnome.org. What is GTK+ ============ 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.4/gtk/gtk-building.html Common questions: http://developer.gnome.org/doc/API/2.4/gtk/gtk-question-index.html http://www.gtk.org/faq/ Overview of Changes from GTK+ 2.9.2 to 2.9.3 ============================================ * GtkPrintOperation: - Introduce an allow-async property - Introduce a GtkPrintOperationAction enumeration - Rename pdf_target to export_filename - Allow to hide "Print to PDF" in the low-level API * GtkNotebook: - Add a destroy notify to gtk_notebook_set_window_creation_hook. * GtkTreeView: - Support grid lines * GtkRange: - Add a number of new stle properties which allow more fexible stepper theming * Bugs fixed: 153212 Have the Paste kbd shortcut jump to the location in the buffer 337491 _gdk_win32_drawable_release_dc: DeleteDC() called on a GetDC() handle 339739 gtk/gtkprintoperation-win32.c: 3 compile error 342339 GtkRange::stepper-spacing style property not implemented correctly 343945 Buttons of a GtkAssistant are not accessible 344148 Wrong reqs for ATK 344209 gtk_notebook_set_window_creation_hook() has no destroy func. 344232 GtkEntry's "Delete" context menu item is sensitive on a non-editable GtkEntry 344244 Window resizing not working when keeping the aspect fixed 344288 gtk_print_operation_preview_is_selected must return a value 344386 gdk-2.0-uninstalled.pc.in and gdkconfig.h 344496 CRLF converting via Clipboard 344504 GtkPrintCapabilities not in gtktypebuiltins.h 344505 Wrong signal registration for create_custom_widget 344512 cvs build issue 344513 pdf print module's print_stream not calling destroy notify 344518 NULL unref in page setup dialogue 344543 gtk_progress_bar_pulse calls gtk_progress_bar_paint directly 344560 gtk_print_settings_[sg]et_scale shouldn't be in percent 344607 memory leaks in gtkrecentchooserdefault.c and gtkrecentchoosermenu.c 344624 Memory leak in gtk_tree_model_filter_finalize: User data not freed 337603 Possible off-by-one in gdk_pango_layout_line_get_clip_region 344239 Wrong filename for gtk-find stock item. 344528 comma at end of GtkPrintOperationAction enum causes mozilla compilation error 344290 horizontal-padding not take into account when placing submenus 344558 document print dialogue response codes 339592 Add print-to-postscript 342249 Allow to draw upper and lower sides of GtkRange's trough differently 344530 gtk_recent_chooser_widget_new_for_manager and gtk_recent_chooser_menu_new_for_manager should allow NULL manager arg * Updated translations (es,fi,gu,ko,th,wa) A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=153212,337491,339739,342339,343945,344148,344209,344232,344244,344288,344386,344496,344504,344505,344512,344513,344518,344543,344560,344607,344624,337603,344239,344528,344290,344558,339592,342249,344530 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Behdad Esfahbod, Bastian Nocera, Alexander Larsson, Jrg Billeter, Murray Cumming, Milosz Derezynski, Tor Lillqvist, Kazuki Iwamoto, Chris Wilson, Michael Natterer, Benjamin Berg, Marko Anastasov, Christian Persch, Masatake Yamamoto, Elijah Newren, John Finlay, Emmanuele Bassi, David Malcolm, John Darrington, Christian Weiske, Yvgen Muntyan, Martyn Russell, Kristian Rietveld June 13, 2006 Matthias Clasen From parente@gmail.com Mon Jun 12 09:07:24 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8979A3B009D for ; Mon, 12 Jun 2006 09:07:24 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03281-09 for ; Mon, 12 Jun 2006 09:07:22 -0400 (EDT) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.231]) by menubar.gnome.org (Postfix) with ESMTP id 9BD863B0083 for ; Mon, 12 Jun 2006 09:07:22 -0400 (EDT) Received: by wr-out-0506.google.com with SMTP id 50so59130wri for ; Mon, 12 Jun 2006 06:06:53 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=Hk2y2xQcbYJKNPf1LW7Y+V28/uYf1U244+IHjlJ7rvPAXFm2IeIHW6o/slpX1K2RUSQzIkrF+sc7i4dF5E8CMLURiFTCBFzpZu9qbgaiDE/D6+W4KrPGXwQqArUp5siLDWhmzDklvsX4fL+9EE4/UFa+de3k689sT00z2J2T/y4= Received: by 10.64.150.20 with SMTP id x20mr4562225qbd; Mon, 12 Jun 2006 06:06:53 -0700 (PDT) Received: by 10.65.154.18 with HTTP; Mon, 12 Jun 2006 06:06:53 -0700 (PDT) Message-ID: <5308fd2c0606120606p43b30477o4e73cfad155dcaa7@mail.gmail.com> Date: Mon, 12 Jun 2006 09:06:53 -0400 From: "Peter Parente" To: gnome-announce-list@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.589 tagged_above=-999 required=2 tests=[AWL=0.011, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.589 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Subject: lsr-0.2.1 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: parente@cs.unc.edu List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 13:07:24 -0000 ============== * What is it ? ============== Linux Screen Reader (LSR) is an extensible assistive technology for people with disabilities. The design philosophy behind LSR is to provide a core platform that enables the development of LSR extensions for improving desktop application accessibility and usability and shields extension developers from the intricacies of the desktop accessibility architecture. The primary use of the LSR platform is to give people with visual impairments access to the GNOME desktop and its business applications (e.g. Firefox, OpenOffice, Eclipse) using speech, Braille, and screen magnification. The extensions packaged with the LSR core are intended to meet this end. However, LSR's rich support for extensions can be used for a variety of other purposes such as supporting novel input and output devices, improving accessibility for users with other disabilities, enabling multi-modal access to the GNOME desktop, and so forth. ================== * What's changed ? ================== 0.2.1 ===== User interface * Better reporting of accessible components * Combobox current text reported on focus * Tree level reported on level change and first focus (bug #343388) * Menu role and name announced before menu items when switching between menus * Review of visible items works on text, trees, lists, and tables now * Added mute indefinitely key command Scripting * Added DeveloperPerk with the following commands * Refresh all loaded scripts without restarting LSR * Report names of all loaded scripts * Show or hide all development monitor windows * Added -g command line parameter to generate a new extension template * Update of TaskTools to support new output semantics * Added support for text selection events * Added support for storing script and application state separately Devices * Updated Keyboard device to support stateful keys as modifiers (e.g. CapsLock) Architecture * Complete refactor of output interface to support device Style objects * Mapping from semantics (role, title, level, etc.) to styles * Plumbing to support persistence and configuration of extension settings * Plumbing to support auto-generation of settings dialogs for extensions Documentation * Posted Gaim Perk tutorial as hands-on example of writing a script extension * Updated user guide to mention new key bindings * Regenerated epydoc to match latest API Translations * sv(Christian Rose) ====================== * Where can I get it ? ====================== Source code release: http://live.gnome.org/LSR#downloads For more information, visit the LSR home page: http://live.gnome.org/LSR From rodrigo@novell.com Mon Jun 12 17:44:58 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F06E53B016D for ; Mon, 12 Jun 2006 17:44:57 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32717-04 for ; Mon, 12 Jun 2006 17:44:57 -0400 (EDT) Received: from peabody.ximian.com (peabody.ximian.com [130.57.169.10]) by menubar.gnome.org (Postfix) with ESMTP id DCE623B00E5 for ; Mon, 12 Jun 2006 17:44:56 -0400 (EDT) Received: (qmail 22167 invoked from network); 12 Jun 2006 21:43:46 -0000 Received: from localhost (HELO ?164.99.120.183?) (127.0.0.1) by localhost with SMTP; 12 Jun 2006 21:43:46 -0000 From: Rodrigo Moya To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-15 Date: Mon, 12 Jun 2006 23:36:21 +0200 Message-Id: <1150148182.16907.0.camel@formigal.home> Mime-Version: 1.0 X-Mailer: Evolution 2.6.0 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.336 tagged_above=-999 required=2 tests=[AWL=-0.091, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, TW_BX=0.077, TW_IB=0.077] X-Spam-Score: -2.336 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: Control Center List Subject: control-center 2.15.3 released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 21:44:58 -0000 Changes since 2.14.2 -------------------- about me: - Fixed typo (Rodrigo Moya) (324971) - Fixed compilation issues (Rodrigo Moya) (344468) default applications: - Added support for Sylpheed (Luca Cavalli) (332659) - Removed unnecessary gnome-terminal argument (Luca Cavalli) (336700) keybindings: - Removed brightness keybindings, now in gnome-power-manager (Bastien Nocera) (339857) keyboard: - Save/restore layout preview window geometry (Sergey Udaltsov) mouse: - Fixed selection when no cursor font is set in GConf (Darren Kenny) (340003) sound: - Added sound device selection (Jrg Billeter) (329112) - Fixed button strings (Rodrigo Moya) (324971) theme-switcher: - Removed drag & drop information text (Thomas Wood) (99535) - Added Install buttons to each tab in the details window (Thomas Wood) - Remember last browsed or installed from location (Thomas Wood) (138795) - Don't allow invalid characters in theme names (Thomas Wood) (139692) - Don't ask user whether to overwrite or not internal files (Thomas Wood) (317375) - Allow saving background image for custom themes (Thomas Wood) (330302) - Fixed UI issues in the save dialog (Thomas Wood) (100622) settings daemon: - Fixed libxklavier engine initialization logic (Sergey Udaltsov) (333091) - Removed references to brightness controls (Bastien Nocera) (339857) - Fixed leaks (Paolo Borelli) (342568, 342570) general: - Updated to new libxklavier API (Sergey Udaltsov) updated translations: - bg (Alexander Shopov) - cs (Miloslav Trmac, Lukas Novotny, Jakub Friedl) - dz (Pema Geyleg) - es (Francisco Javier F. Serrador) - fi (Ilkka Tuohela) - gl (Ignacio Casal Quinteiro) - gu (Ankit Patel) - mg (Simos Xenitellis) - nb (Kjartan Maraas) - sq (Laurent Dhima) - sv (Daniel Nylander) - th (Theppitak Karoonboonyanan) - vi (Clytie Siddall) - zh_CN (Funda Wang) - zh_HK (Chao-Hsiung Liao) - zh_TW (Chao-Hsiung Liao) Availability ------------ http://ftp.gnome.org/pub/GNOME/sources/control-center/2.15/ Contact ------- * Bugs in http://bugzilla.gnome.org * Mailing list http://mail.gnome.org/mailman/listinfo/gnomecc-list -- Rodrigo Moya From behdad.esfahbod@gmail.com Mon Jun 12 17:47:52 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7B80A3B014D for ; Mon, 12 Jun 2006 17:47:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32679-08 for ; Mon, 12 Jun 2006 17:47:50 -0400 (EDT) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.206]) by menubar.gnome.org (Postfix) with ESMTP id 93D3F3B02C1 for ; Mon, 12 Jun 2006 17:47:50 -0400 (EDT) Received: by wx-out-0102.google.com with SMTP id h26so956318wxd for ; Mon, 12 Jun 2006 14:47:02 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:subject:from:to:content-type:date:message-id:mime-version:x-mailer:sender; b=YVJmmmTJDYAPVWyBcXj8x877np/3myVRslCESpGT8RXV9fhXWO7m4zcVtD0bbIyxzLCNy9G4MxoeR4wKgZZNAmVLfJY4S5Cm99AU8jHeau3kamsPLiBWdw/7luc5fNsqJp4eQk4EpFqLzmMhtWaKSOxclPSl65MK68ngzTNkqNo= Received: by 10.70.103.17 with SMTP id a17mr6909562wxc; Mon, 12 Jun 2006 14:47:02 -0700 (PDT) Received: from to-dhcp26.toronto.redhat.com ( [63.250.163.171]) by mx.gmail.com with ESMTP id h34sm6169771wxd.2006.06.12.14.47.01; Mon, 12 Jun 2006 14:47:01 -0700 (PDT) From: Behdad Esfahbod To: gnome-announce-list@gnome.org Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-Vxzn0OEXLlv9C28CHSps" Date: Mon, 12 Jun 2006 17:46:59 -0400 Message-Id: <1150148819.10765.11.camel@home> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 (2.6.1-1.fc5.2) Sender: Behdad Esfahbod X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.6 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.6 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Subject: vte-0.13.2 released [unstable] X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 21:47:52 -0000 --=-Vxzn0OEXLlv9C28CHSps Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Vte-0.13.2 is available for download at: http://download.gnome.org/sources/vte/0.13/ Vte is GNOME 2's virtual-terminal emulation widget. This is an unstable release. 0.13.2 Bug 344666 =E2=80=93 Problems with *_CFLAGS and *_LDFLAGS in makefiles Patch from Stepan Kasal . Bug 339529 =E2=80=93 gnome-terminal (vte) crashes when detatched window is closed Bug 342549 =E2=80=93 uninitialized var (coverity) Patch from Paolo Borelli. Bug 342082 =E2=80=93 vte_invalidate_region() may check whether terminal is realiazed or not Patch from Kouhei Sutou. Bug 340363 =E2=80=93 vte Cygwin build fixes Patch from Cygwin Ports maintainer Bug 341793 =E2=80=93 vte.h doesn't need to include X11/Xlib.h Patch from Kouhei Sutou Require intltool 0.35.0 to have translations in the dist tarballs. Fix typo which may have been causing things like crashes. Behdad Esfahbod 12 June 2006 --=-Vxzn0OEXLlv9C28CHSps Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEjeDTn+4E5dNTERURAjCvAJ9H07aDShKW/mLQfhNyOaMG1RtYsACgixvW gbPOhTT6IK5+BSx0dCk7844= =JsUT -----END PGP SIGNATURE----- --=-Vxzn0OEXLlv9C28CHSps-- From behdad.esfahbod@gmail.com Mon Jun 12 17:52:44 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id EFA613B02CD for ; Mon, 12 Jun 2006 17:52:43 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00550-05 for ; Mon, 12 Jun 2006 17:52:42 -0400 (EDT) Received: from wx-out-0102.google.com (wx-out-0102.google.com [66.249.82.196]) by menubar.gnome.org (Postfix) with ESMTP id A2EDA3B016D for ; Mon, 12 Jun 2006 17:52:41 -0400 (EDT) Received: by wx-out-0102.google.com with SMTP id h26so957012wxd for ; Mon, 12 Jun 2006 14:51:44 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:subject:from:to:content-type:date:message-id:mime-version:x-mailer:sender; b=HkVpdki0/g3XkGcHUm613LiH99RNWp83QpOiB04twtI9/oyY5QJs7xgUW9ugXUYWTW0FQESua3SiFes9GpwcHFnulMB+jmu6Frg1gjSTz94Z0WNKazKYJCx/0yCrKVvi+sIhO9793kd+R7hBbKFWLBqlIyo5yetvED1gx6HIjnc= Received: by 10.70.36.1 with SMTP id j1mr6891335wxj; Mon, 12 Jun 2006 14:44:52 -0700 (PDT) Received: from to-dhcp26.toronto.redhat.com ( [63.250.163.171]) by mx.gmail.com with ESMTP id h18sm3879342wxd.2006.06.12.14.44.50; Mon, 12 Jun 2006 14:44:51 -0700 (PDT) From: Behdad Esfahbod To: Pango Release Lists , gtk-app-devel-list@gnome.org, gtk-devel-list@gnome.org, gtk-i18n-list@gnome.org, gtk-list@gnome.org Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-HZBsNn3KdPR3jVVwB9gO" Date: Mon, 12 Jun 2006 17:44:37 -0400 Message-Id: <1150148678.10765.8.camel@home> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 (2.6.1-1.fc5.2) Sender: Behdad Esfahbod X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.6 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.6 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: Subject: Pango-1.13.2 released [unstable] X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 21:52:44 -0000 --=-HZBsNn3KdPR3jVVwB9gO Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Pango-1.13.2 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.11/ or http://download.gnome.org/sources/pango/1.13/ 28a6ea9d43c4cd398e7352032f775401 pango-1.13.2.tar.bz2 17d78473c05fece044c6a3b44519b61f pango-1.13.2.tar.gz This is a development release leading up to Pango-1.14.0, which will be released just in time for GNOME-2.16. Notes: * This is unstable development release. While it has had fairly extensive testing, there are likely bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of Pango-1.12. If you have problems, you'll need to reinstall Pango-1.12.x * Bugs should be reported to http://bugzilla.gnome.org. About Pango =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Pango is a library for layout and rendering of text, with an emphasis on internationalization. Pango can be used anywhere that text layout is needed, though most of the work on Pango so far has been done in the context of the GTK+ widget toolkit. Pango forms the core of text and font handling for GTK+-2.x. Pango is designed to be modular; the core Pango layout engine can be used with different font backends. There are three basic backends, with multiple options for rendering with each. - Client side fonts using the FreeType and fontconfig libraries. Rendering can be with with Cairo or Xft libraries, or directly to an in-memory buffer with no additional libraries. - Native fonts on Microsoft Windows. (Optionally using Uniscribe for complex-text handling). Rendering can be done via Cairo or directly using the native Win32 API. - Native fonts on MacOS X, rendering via Cairo. The integration of Pango with Cairo (http://cairographics.org) provides a complete solution with high quality text handling and graphics rendering. Dynamically loaded modules then handle text layout for particular combinations of script and font backend. Pango ships with a wide selection of modules, including modules for Hebrew, Arabic, Hangul, Thai, and a number of Indic scripts. Virtually all of the world's major scripts are supported. As well as the low level layout rendering routines, Pango includes PangoLayout, a high level driver for laying out entire blocks of text, and routines to assist in editing internationalized text. More information about Pango is available from http://www.pango.org/. Pango 1.13.2 depends on version 2.10.0 or newer of the GLib library and version 1.1.2 or newer of the cairo library (if the cairo backend is desired); more information about GLib and cairo can be found at http://www.gtk.org/ and http://cairographics.org/ respectively. Overview of changes between 1.13.1 and 1.13.2 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D * Improved hexbox drawing, and font metrics calculations. * Synthesize italic variants on win32 [Hans Breuer] * New public API: - pango_cairo_show_error_underline - pango_cairo_error_underline_path - pango_font_describe_with_absolute_size * Misc fixes. * Bugs fixed in this release: Bug 326960 =E2=80=93 hex box drawing for win32 and atsui backends of cairo Bug 343717 =E2=80=93 License information in unclear. Bug 343355 =E2=80=93 Add pango_cairo_show_error_underline & pango_cairo_error_underline_path Bug 343966 =E2=80=93 pango Cygwin build fixes Patch from Cygwin Ports maintainer. Bug 343796 =E2=80=93 Italic Chinese character can't be show correctly in Win32. Bug 314114 =E2=80=93 max_x_advance not appropriate for approximate_(char|digit)_width Bug 341138 =E2=80=93 Using TTC font, Gtk2 programs begin to eating big mem= ory and have many cpu usage. Patch from Yong Li. Bug 336153 =E2=80=93 Mark to mark positioning (Lookup Type 6) isn't correc= t when using MarkAttchmentType Patch from Tin Myo Htet. Bug 333984 =E2=80=93 pango_language_from_string improvements Bug 125378 =E2=80=93 Better underline thickness handling Bug 339730 =E2=80=93 Pango needlessly falls back away from a Type 1 font i= nto a TTF font Bug 342562 =E2=80=93 Support absolute sizes in pango_font_description_to/from_string Bug 341922 =E2=80=93 pango should handle more characters as zero width Patch from Roozbeh Pournader Bug 342525 =E2=80=93 With PangoFc and PangoWin32, approximate digit width = is not what it says Bug 342079 =E2=80=93 pangoatsui-private.h missing from release Behdad Esfahbod 12 June 2006 --=-HZBsNn3KdPR3jVVwB9gO Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEjeBFn+4E5dNTERURApTwAJ9OvqbaG1xnQYzGPC9u0WPi30b6ggCfXNvZ oFfMwctzkAaKRETc/0aDRj0= =Wl7j -----END PGP SIGNATURE----- --=-HZBsNn3KdPR3jVVwB9gO-- From ebassi@gmail.com Mon Jun 12 18:16:04 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 959AC3B00A5 for ; Mon, 12 Jun 2006 18:16:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01337-06 for ; Mon, 12 Jun 2006 18:16:03 -0400 (EDT) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.186]) by menubar.gnome.org (Postfix) with ESMTP id E69443B015D for ; Mon, 12 Jun 2006 18:16:02 -0400 (EDT) Received: by nf-out-0910.google.com with SMTP id x37so950087nfc for ; Mon, 12 Jun 2006 15:14:56 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:subject:from:to:cc:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; b=eGvIpFNEWtb7L9J87AK/A8+ENa91duWZBEqSL8uzr9KmNI5+11lkZvmnBmdUhuBBlxyNjlYBw3sh/Am36NkcDakYEh5OSYiVckbEq9XEKnN5svoJJwcDLufW7SXw+2xzT5RpJ43xYvJHTzDB08ykyYlcsfJVZtZALOWrI8eQ7mU= Received: by 10.48.241.20 with SMTP id o20mr5263837nfh; Mon, 12 Jun 2006 15:08:01 -0700 (PDT) Received: from rogue.local ( [86.136.65.180]) by mx.gmail.com with ESMTP id k23sm6896442nfc.2006.06.12.15.08.01; Mon, 12 Jun 2006 15:08:01 -0700 (PDT) From: Emmanuele Bassi To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=UTF-8 Date: Mon, 12 Jun 2006 23:07:59 +0100 Message-Id: <1150150079.5273.10.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.336 tagged_above=-999 required=2 tests=[AWL=0.264, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.336 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: GNOME Utils Subject: [ANNOUNCE] Gnome-utils 2.15.3 - "No, this is not Metacity" X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 22:16:04 -0000 Yeap, you read right: this is release 2.15.3 and this is *not* Metacity - even if we did skip a bit of numbers - but yet another great release of the GNOME Utilities package! Unfortunately, due to time constraints, this release rocks less than what we maintainers expected; nevertheless, it rocks louder and harder than any release done before. So download, sit back with a nice glass of red wine while your compiler of choice churns the sources, and prepare to test new features and to file new bugs. This is an unstable release of gnome-utils, so please be warned that it may cause loss of patience, body hair, teeth and overall sanity; it could also make your life easier. It's up to you to test it and report back any misfeature, bug or feature request. You can download the 2.15.3 release of gnome-utils from the usual place, at: http://download.gnome.org/sources/gnome-utils/2.15/ =================================================================== GNOME Utilities 2.15.3 (June 12th 2006) - "No, it's not Metacity" Baobab * Add a new item in the list window context menu to start scanning a folder. Dictionary * Re-implement the speller widget, to show similar words in case no definition was found. * Use a themable icon Floppy * Nothing Screenshot * Drop deprecated include files (Kristof Vansant, #167098) * Fix compilator warnings * Update launcher description Search Tool * Update launcher description System Log Viewer * Miscellaneous fixes on 64bit platforms (Joe Marcus Clarke, Lin Ma) * Change the default log files list on Solaris (Lin Ma) * Remove empty character from status bar (Lin Ma) * Sort files by ascending order (Lin Ma) * Use `File' instead of `Log' as the first menu (Lin Ma) * Fix the selection offset when copying from a log (Sebastien Bacher) Translations updates: Petr Tomeš (cs), Mindu Dorji (dz), Francisco Javier F. Serrador (es), Iñaki Larrañaga Murgoitio (eu), Ignacio Casal Quinteiro (gl), Ankit Patel (gu), Fabio Marzocca (it), Changwoo Ryu (ko), Fano Rajaonarisoa (mg), Øivind Hoel (nb), Vincent van Adrighem (nl), Theppitak Karoonboonyanan (th), Clytie Siddall (vi), Funda Wang (zh_CN), Lin-Chieh Shangkuan (zh_HK), Lin-Chieh Shangkuan (zh_TW) Ciao, Emmanuele. -- Emmanuele Bassi - Log: http://log.emmanuelebassi.net From kurt@maute.us Mon Jun 12 19:34:25 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 07B863B0150 for ; Mon, 12 Jun 2006 19:34:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03322-07 for ; Mon, 12 Jun 2006 19:34:23 -0400 (EDT) Received: from mta6.srv.hcvlny.cv.net (mta6.srv.hcvlny.cv.net [167.206.4.201]) by menubar.gnome.org (Postfix) with ESMTP id 5040C3B000C for ; Mon, 12 Jun 2006 19:34:23 -0400 (EDT) Received: from [192.168.0.56] (ool-435223b5.dyn.optonline.net [67.82.35.181]) by mta6.srv.hcvlny.cv.net (Sun Java System Messaging Server 6.2-6.01 (built Apr 3 2006)) with ESMTP id <0J0R00G8NSFQ4H00@mta6.srv.hcvlny.cv.net> for gnome-announce-list@gnome.org; Mon, 12 Jun 2006 19:11:51 -0400 (EDT) Date: Mon, 12 Jun 2006 19:11:49 -0400 From: Kurt Maute To: Planner-Dev , Planner , gnome-announce-list@gnome.org Message-id: <1150153909.4619.131.camel@dori> MIME-version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-type: text/plain; charset=UTF-8 Content-transfer-encoding: 8BIT X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.599 tagged_above=-999 required=2 tests=[AWL=0.000, BAYES_00=-2.599] X-Spam-Score: -2.599 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: Subject: Planner v0.14 Released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 23:34:25 -0000 Hi All, Planner v0.14 is now available for download: http://ftp.gnome.org/pub/GNOME/sources/planner/0.14/ What is Planner =============== Planner is the GNOME project management tool. Homepage: http://live.gnome.org/Planner What's New in Planner v0.14 =========================== * FF and SF Predecessors 140561 (Kurt Maute) * Simple priority scheduling (Matteo Nastasi): Use the --enable-simple-priority-scheduling option when building. This feature will allow a high priority task to steal resources from a lower priority task. * View Non-standard working/nonworking days (Matteo Nastasi): In the Gantt view, this feature shows where resources have differences in working and nonworking days when compared to the default calendar. * Resource Usage view canvas interactivity (Alvaro del Castillo): Right clicking on a usage bar or resource pops up an option menu. * Gantt chart misalignment with tree view 128983 (Francisco Moraes) * Summary tasks: work now equals sum of child tasks 305801 (Kurt Maute) * Eliminate effects of resource assignments on summary tasks 151604 (Kurt Maute): Assigning a resource to a summary task now has no effect. * Updated user guide: (Kurt Maute) * View Grid Lines in Gantt view 303374 (Nguyễn Thái Ngọc Duy): Shows horizontal lines in Gantt to help visually line up tasks with Gantt bars. Translators: Vladimir "Kaladan" Petkov (bg) Miloslav Trmac (cs) Hendrik Richter (de) Kostas Papadimas (el) Adam Weinberger (en_CA) David Lodge (en_GB) Francisco Javier F. Serrador (es) Ivar Smolin (et) Larra Murgoitio (eu) Meelad Zakaria (fa) Ilkka Tuohela (fi) Gabor Kelemen (hu) Takeshi AIHANA (ja) Kjartan Maraas (nb) "Last-Translator: \n" (ne) Jan-Willem Harmanny (nl) Afonso Celso Medina (pt_BR) Steve Murphy (rw) Marcel Telka (sk) Данило Шеган (sr) Daniel Nylander (sv) Maxim V. Dziumanenko (uk) Clytie Siddall (vi) Woodman Tuen (zh_TW) -- Kurt Maute From nudrema@gmail.com Mon Jun 12 20:13:02 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 32C693B0009; Mon, 12 Jun 2006 20:13:02 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04226-02; Mon, 12 Jun 2006 20:13:01 -0400 (EDT) Received: from swip.net (mailfe04.swip.net [212.247.154.97]) by menubar.gnome.org (Postfix) with ESMTP id 447933B000C; Mon, 12 Jun 2006 20:13:00 -0400 (EDT) X-T2-Posting-ID: Ee7YIbSG3O5rNcT4cGADretWTWrDEjpwS9FwzyhFhzk= X-Cloudmark-Score: 0.000000 [] Received: from [83.182.30.225] (HELO [10.0.0.13]) by mailfe04.swip.net (CommuniGate Pro SMTP 5.0.8) with ESMTP id 211925446; Tue, 13 Jun 2006 02:11:51 +0200 Message-ID: <448E02C4.2050805@gmail.com> Date: Tue, 13 Jun 2006 02:11:48 +0200 From: =?ISO-8859-1?Q?Steve_Fr=E9cinaux?= User-Agent: Thunderbird 1.5.0.2 (X11/20060522) MIME-Version: 1.0 To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.931 tagged_above=-999 required=2 tests=[AWL=-0.478, BAYES_00=-2.599, SPF_NEUTRAL=1.069, TW_GT=0.077] X-Spam-Score: -1.931 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: gedit-list Subject: ANNOUNCE: gedit 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 00:13:02 -0000 Hi all, gedit 2.15.3 is now available. gedit the official GNOME text editor. homepage: http://live.gnome.org/GeditPlugins * Changes in 2.15.3 ==================== New features and fixes: - New gedit_commands_* API for plugins (Paolo Maggi) - Snippets support for space indentation (Jesse van den Kieboom) - gtk-doc enabled C plugin API documentation (Steve Frcinaux) - Next/Previous menu items (Paolo Maggi) - C/Python plugin skeleton generator (Steve Frcinaux) - Snippets plugin enhancements and fixes (Jesse van den Kieboom) - Misc improvements and bugfixes New and updated translations: - Alexander Shopov (bg) - Ankit Patel (gu) - Clytie Siddall (vi) - Francisco Javier F. Serrador (es) - Kjartan Maraas (nb) - Ignacio Casal Quinteiro (gl) - Jakub Friedl (cs) - Pema Geyleg (dz) - Priit Laes (et) - Theppitak Karoonboonyanan (th) * Download =========== http://ftp.gnome.org/pub/GNOME/sources/gedit/2.15/gedit-2.15.3.tar.gz md5sum: 07a99a6c45fa859a770a86bfa6289acd http://ftp.gnome.org/pub/GNOME/sources/gedit/2.15/gedit-2.15.3.tar.bz2 md5sum: e43046da726b9df3119ff8db00c7f4ad -- Steve http://tw.apinc.org From gnome@nextreality.net Mon Jun 12 23:42:44 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 13DDB3B00E5 for ; Mon, 12 Jun 2006 23:42:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08544-08 for ; Mon, 12 Jun 2006 23:42:42 -0400 (EDT) Received: from brentsmith.name (unknown [64.62.195.122]) by menubar.gnome.org (Postfix) with ESMTP id 7C54A3B0010 for ; Mon, 12 Jun 2006 23:42:42 -0400 (EDT) Received: by brentsmith.name (Postfix, from userid 5001) id 8C64635904; Tue, 13 Jun 2006 03:41:31 +0000 (UTC) Received: from [192.168.1.101] (c-67-176-37-213.hsd1.co.comcast.net [67.176.37.213]) by brentsmith.name (Postfix) with ESMTP id DA11C35901 for ; Tue, 13 Jun 2006 03:41:30 +0000 (UTC) Message-ID: <448E33F5.5080804@nextreality.net> Date: Mon, 12 Jun 2006 21:41:41 -0600 From: Brent Smith User-Agent: Thunderbird 1.5.0.2 (X11/20060522) MIME-Version: 1.0 To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Bogosity: Unsure, tests=bogofilter, spamicity=0.500000, version=0.94.4 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.577 tagged_above=-999 required=2 tests=[AWL=0.022, BAYES_00=-2.599] X-Spam-Score: -2.577 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:35 -0400 Subject: Yelp 2.15.3 Released X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 03:42:44 -0000 Yelp 2.15.3 is now available from an FTP mirror near you (actually, you might have to wait a little bit for it to appear). Yelp is the program that appears from the mist when you click the Help button in your favorite GNOME application. This release contains many improvements over the last development release. Read on for details... Changes in 2.15.3: ------------------ * New debugging infrastructure (Brent Smith) * Add support for translated man pages, fixes #343275 (Brent Smith) * Support private instances with -p (Bug #337540) (Don Scorgie) * Switch from Bonobo to DBUS Activation (Don Scorgie) * Change 'Multimedia' category to 'Sound & Vision' for (Don Scorgie) consistency (bug #332182) * Don't auto-expand sections in left pane (bug #167070) (Don Scorgie) * Don't use mozilla's internal string API, and drop (Christian Persch) support for gecko 1.7 and non-toolkit geckos. Bug #343950. * Add a deep history framework (bug #67966) (Don Scorgie) * Make *Notes into hyperlinks (bug #343524) (Don Scorgie) * Make monospace fonts change size when asked (Don Scorgie) (bug #344003) * Escape & characters when encountered in info (Don Scorgie) processing (fixes #343372) * more helpful message when there are no search results(Frederic Peters) (fixes #341798) * search results message can be translated (Frederic Peters) (fixes #341689) * limit search results to 20 items (fixes #341434) (Frederic Peters) * cleanup the man_secthash hash table when finished (Brent Smith) * don't increment ptr, fixes #341827 (Don Scorgie) * Fix a bunch of memory leaks (Don Scorgie) * Fix an invalid write, #342151 (Don Scorgie) * NULL checking. Suppresses critical warnings on some (Don Scorgie) info pages * If an info file doesn't exist, default to showing (Don Scorgie) the man page, fixes #341627 * Fix loading of info pages from subdirectories (emacs) (Don Scorgie) * Update intltool requirement to 0.35.0 (Brent Smith) * Reduce strictness of searching for menus in info pages (Don Scorgie) * Updated translations: Jakub Friedl (cs) Mindu Dorji (dz) Francisco Javier F. Serrador (es) Priit Laes (et) Iaki Larraaga Murgoitio (eu) Ankit Patel (gu) Raivis Dejus (lv) Kjartan Maraas (nb) Theppitak Karoonboonyanan (th) Pablo Saratxaga (wa) http://ftp.gnome.org/pub/GNOME/sources/yelp/2.14/ Share and enjoy. Regards, -- Brent Smith IRC: smitten From nudrema@gmail.com Tue Jun 13 04:23:41 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F14743B000C; Tue, 13 Jun 2006 04:23:40 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16049-10; Tue, 13 Jun 2006 04:23:40 -0400 (EDT) Received: from swip.net (mailfe11.swipnet.se [212.247.155.65]) by menubar.gnome.org (Postfix) with ESMTP id 2C63B3B000A; Tue, 13 Jun 2006 04:23:39 -0400 (EDT) X-T2-Posting-ID: Ee7YIbSG3O5rNcT4cGADretWTWrDEjpwS9FwzyhFhzk= X-Cloudmark-Score: 0.000000 [] Received: from [83.182.30.69] (HELO [10.0.0.13]) by mailfe11.swip.net (CommuniGate Pro SMTP 5.0.8) with ESMTP id 44536455; Tue, 13 Jun 2006 10:22:28 +0200 Message-ID: <448E75C1.6030808@gmail.com> Date: Tue, 13 Jun 2006 10:22:25 +0200 From: =?ISO-8859-1?Q?Steve_Fr=E9cinaux?= User-Agent: Thunderbird 1.5.0.2 (X11/20060522) MIME-Version: 1.0 To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.861 tagged_above=-999 required=2 tests=[AWL=-0.543, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_NEUTRAL=1.069, TW_GT=0.077] X-Spam-Score: -1.861 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:35 -0400 Cc: gedit-list Subject: ANNOUNCE: gedit 2.15.3 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 08:23:41 -0000 Hi all, gedit 2.15.3 is now available. gedit the official GNOME text editor. homepage: http://www.gnome.org/projects/gedit * Changes in 2.15.3 ==================== New features and fixes: - New gedit_commands_* API for plugins (Paolo Maggi) - Snippets support for space indentation (Jesse van den Kieboom) - gtk-doc enabled C plugin API documentation (Steve Frcinaux) - Next/Previous menu items (Paolo Maggi) - C/Python plugin skeleton generator (Steve Frcinaux) - Snippets plugin enhancements and fixes (Jesse van den Kieboom) - Misc improvements and bugfixes New and updated translations: - Alexander Shopov (bg) - Ankit Patel (gu) - Clytie Siddall (vi) - Francisco Javier F. Serrador (es) - Kjartan Maraas (nb) - Ignacio Casal Quinteiro (gl) - Jakub Friedl (cs) - Pema Geyleg (dz) - Priit Laes (et) - Theppitak Karoonboonyanan (th) * Download =========== http://ftp.gnome.org/pub/GNOME/sources/gedit/2.15/gedit-2.15.3.tar.gz md5sum: 07a99a6c45fa859a770a86bfa6289acd http://ftp.gnome.org/pub/GNOME/sources/gedit/2.15/gedit-2.15.3.tar.bz2 md5sum: e43046da726b9df3119ff8db00c7f4ad -- Steve http://tw.apinc.org From s.marechal@jejik.com Tue Jun 13 19:55:27 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 44B8A3B00C7 for ; Tue, 13 Jun 2006 19:55:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10258-05 for ; Tue, 13 Jun 2006 19:55:25 -0400 (EDT) Received: from smtp-vbr15.xs4all.nl (smtp-vbr15.xs4all.nl [194.109.24.35]) by menubar.gnome.org (Postfix) with ESMTP id 1E2F43B00D4 for ; Tue, 13 Jun 2006 19:55:24 -0400 (EDT) Received: from [192.168.1.2] (a82-92-145-91.adsl.xs4all.nl [82.92.145.91]) (authenticated bits=0) by smtp-vbr15.xs4all.nl (8.13.6/8.13.6) with ESMTP id k5DNsOqr025232 for ; Wed, 14 Jun 2006 01:54:25 +0200 (CEST) (envelope-from s.marechal@jejik.com) Message-ID: <448F504E.1060904@jejik.com> Date: Wed, 14 Jun 2006 01:54:54 +0200 From: Sander Marechal User-Agent: Thunderbird 1.5.0.2 (X11/20060522) MIME-Version: 1.0 To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by XS4ALL Virus Scanner X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.557 tagged_above=-999 required=2 tests=[AWL=0.042, BAYES_00=-2.599] X-Spam-Score: -2.557 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Subject: Gnome Hearts 0.1 Release Announcement X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: user and developer discussion for the gnome hearts game List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 23:55:27 -0000 Gnome Hearts 0.1 Release Announcement ------------------------------------- Lone Wolves [1] is happy to announce the release of Gnome Hearts version 0.1, an implementation of the classic hearts card game for the Gnome desktop. Gnome Hearts 0.1 is the first release since the project's inception on April 30, earlier this year. Gnome Hearts features configurable rule-sets such as Omnibus and Spot Hearts besides the standard rules. The game also has multiple computer players that are implemented in the Lua [2] scripting language. This allows for easy modification of the players. Also, the game can use any deck of cards installed for the Gnome Games package. [1] http://www.jejik.com [2] http://www.lua.org Downloading and installing Gnome Hearts --------------------------------------- Gnome Hearts can be downloaded from the project website at http://www.gnome-hearts.org/download or directly using this link [3]. At the moment only a .tar.gz source package is available. Binaries for various distributions will appear at a later date. Keep an eye out on the download page and the mailing list [4] for the announcements. In order to build the .tar.gz you need to have libgnomeui2.0, liblua50, liblualib50 and libglade2 plus their respective headers installed. See the README file in the package for more details. [3] http://www.jejik.com/files/gnome-hearts/gnome-hearts-0.1.tar.gz [4] http://lists.jejik.com/cgi-bin/mailman/listinfo/hearts Acknowledgments --------------- Many thanks to the people that contributed to this first release and those who cast a critical glance over the package so we could fix many issues before our first release. -- Sander Marechal http://www.gnome-hearts.org From gjc@inescporto.pt Tue Jun 13 20:28:23 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BD25B3B000E for ; Tue, 13 Jun 2006 20:28:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11220-02 for ; Tue, 13 Jun 2006 20:28:21 -0400 (EDT) Received: from animal.inescn.pt (correio.inescn.pt [194.117.24.9]) by menubar.gnome.org (Postfix) with ESMTP id A61433B00C8 for ; Tue, 13 Jun 2006 20:28:20 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by animal.inescn.pt (8.13.6/8.13.6/7) with ESMTP id k5E0RKZp008488; Wed, 14 Jun 2006 01:27:20 +0100 (WEST) Received: from pong.inescporto.pt (pong.inescn.pt [194.117.26.74]) by animal.inescn.pt (8.13.6/8.13.6/5) with ESMTP id k5E0Qv9X008443; Wed, 14 Jun 2006 01:26:57 +0100 (WEST) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by pong.inescporto.pt (Postfix) with ESMTP id A69A5119284; Wed, 14 Jun 2006 01:23:55 +0100 (WEST) From: "Gustavo J. A. M. Carneiro" To: PyGTK Content-Type: text/plain Date: Wed, 14 Jun 2006 01:26:56 +0100 Message-Id: <1150244816.5417.6.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at inescporto.pt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.351 tagged_above=-999 required=2 tests=[AWL=-0.040, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001, TW_GD=0.077, TW_GT=0.077] X-Spam-Score: -2.351 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: gnome-announce-list@gnome.org Subject: ANNOUNCE: PyGTK 2.9.1 (unstable) X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 00:28:23 -0000 I am pleased to announce version 2.9.1 of the Python bindings for GTK. The new release is available from ftp.gnome.org and its mirrors as soon as its synced correctly: http://ftp.gnome.org/pub/GNOME/sources/pygtk/2.9/pygtk-2.9.1.tar.gz This is an unstable release and should be used with caution. It requires either GTK+ 2.8.x or GTK+ >= 2.9.3. [ Note: this release also fixes a build problem for the recently released GnomePythonDesktop 2.15.3. ] Blurb: GTK is a toolkit for developing graphical applications that run on systems such as Linux, Windows and MacOS X. It provides a comprehensive set of GUI widgets, can display Unicode bidi text. It links into the Gnome Accessibility Framework through the ATK library. PyGTK provides a convenient wrapper for the GTK+ library for use in Python programs, and takes care of many of the boring details such as managing memory and type casting. When combined with PyORBit and gnome-python, it can be used to write full featured Gnome applications. Like the GTK+ library itself PyGTK is licensed under the GNU LGPL, so is suitable for use in both free software and proprietary applications. It is already in use in many applications ranging from small single purpose scripts up to large full features applications. pygtk-2.9.0 13-june-2006 - Allow gtk.TreeSortable.set_default_sort_func callback to be None (Johan, Patrick O'Brien) - Add API to unset the g_log handlers (#323786, Johan) - Allow the gtk module to be imported without DISPLAY (#316877, Johan) - Code cleanup and fixes considering Coverity reports (Johan) - Add codegen support for const-Object return type (#169204, Gustavo) - Add codgen support for unblocking threads around method calls (Gustavo) - Wrap gdk_event_handler_set (Johan) - Codegen reverse wrapper bug fix (#340162, Yevgen Muntyan) - Wrap GdkRegion (John Ehresman) - Add codegen support for ignore-type statement in override (Johan) - Add conditional support for gtk+ 2.10 API, especially printing (Johan, Finlay, Gustavo) - Complete the support for gtk.Container virtual methods (#341641, Gustavo) - Fix misc. reference leaks (Finlay, Gustavo) - Allow None parameter in pangocairo.CairoContext.set_font_options (Finlay) - Complete the support for gtk.CellRenderer virtual methods (#339431, Gustavo) - IconView.set_cursor method params 'cell' and 'start_editing' made optional (#343039, Ross Burton, Finlay) - Wrap a few more gdk_cairo_* methods (Finlay) - Add a 'selection' field to gdk.OWNER_CHANGE events (Finlay) - Allow None in gtk.Entry.set_inner_border() (Finlay) - gtk.Clipboard rich text methods (Finlay) - Add gtk.MessageDialog.set_image() (Finlay) - Wrap gtk_link_button_set_uri_hook() (Finlay) - Allow None in gtk.Widget.input_shape_combine_mask() (Finlay) - Allow gtk.LinkButton() constructor to optionally receive a label (Finlay) - Allow None in gtk.Label.set_mnemonic_widget() (Johan) - Wrap a bunch of X11 specific gdk methods (Gustavo) - Add gtk.SizeGroup.get_widgets() (Finlay) - Wrap gtk_style_lookup_color() (Finlay) - Wrap a bunch of gtk treeview grid lines methods (Finlay) - Better Drag and drop API support (Finlay) - Add -I option to codegen (defs search path) (Gustavo) PyGTK requires GTK+ >= 2.8.0 and Python >= 2.3.5 to build. Bug reports, as always, should go to Bugzilla; check out http://pygtk.org/developer.html and http://pygtk.org/feedback.html for links to posting and querying bug reports for PyGTK. -- Gustavo J. A. M. Carneiro The universe is always one step beyond logic From ebassi@gmail.com Tue Jun 13 20:32:58 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A8A4B3B00C8 for ; Tue, 13 Jun 2006 20:32:58 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11365-03 for ; Tue, 13 Jun 2006 20:32:57 -0400 (EDT) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.184]) by menubar.gnome.org (Postfix) with ESMTP id D60A23B000E for ; Tue, 13 Jun 2006 20:32:56 -0400 (EDT) Received: by nf-out-0910.google.com with SMTP id y38so3928nfb for ; Tue, 13 Jun 2006 17:31:56 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:subject:from:to:cc:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; b=oUq+Y9uyXse5jWbXHN+a1hlPNgEB4SSPDgg8dWXx+1GsvRNsktrt4C4g3H5vMlt23VjpIETSUuVlhG6R9+5WQPa1f/yUs5fj1vO2K5m9rUq0MSBz2x1DxlwhH3zgxxsgbcw07IUW4AZgu+4ffuEd58TvM5NOX7EJyv1wtcIGIDA= Received: by 10.48.225.16 with SMTP id x16mr53191nfg; Tue, 13 Jun 2006 17:31:56 -0700 (PDT) Received: from ?192.168.1.70? ( [86.136.65.180]) by mx.gmail.com with ESMTP id l32sm22126nfa.2006.06.13.17.31.56; Tue, 13 Jun 2006 17:31:56 -0700 (PDT) From: Emmanuele Bassi To: gnome-announce-list@gnome.org Content-Type: text/plain Date: Wed, 14 Jun 2006 01:31:50 +0100 Message-Id: <1150245110.28862.8.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.337 tagged_above=-999 required=2 tests=[AWL=0.263, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.337 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 00:01:36 -0400 Cc: gnome-utils-list@gnome.org Subject: [ANNOUNCE] Gnome-utils 2.15.4 - "Ain't that another brown paper bag?" X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 00:32:58 -0000 Good news everyone! As last gnome-utils release contained a glitch that broke the build, here's a Brown Paper Bag Release ready: gnome-utils 2.15.4. Many thanks to Matthias Clasen and Fryderyk Dziarmagowski for finding the glitch. As usual, you can download the sources from here: http://download.gnome.org/sources/gnome-utils/2.15/ Enjoy, and remember to file any bug you might find! =================================================================== GNOME Utilities 2.15.4 (June 14th 2006) - "Ain't that another brown paper bag?" * "Brown paper bag" release Baobab * Nothing Dictionary * Remove wrong headers from the build (Matthias Clasen, #344773) Floppy * Nothing Screenshot * Fix included files Search Tool * Nothing System Log Viewer * Nothing Translations updates: Francisco Javier F. Serrador (es), Ankit Patel (gu) Ciao, Emmanuele. From cworth@cworth.org Wed Jun 14 12:07:42 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 50C153B03B2 for ; Wed, 14 Jun 2006 12:07:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05531-07 for ; Wed, 14 Jun 2006 12:07:31 -0400 (EDT) Received: from theworths.org (cworth.org [217.160.249.188]) by menubar.gnome.org (Postfix) with ESMTP id D79923B045D for ; Wed, 14 Jun 2006 12:07:30 -0400 (EDT) Received: (qmail 20098 invoked from network); 14 Jun 2006 12:06:35 -0400 Received: from localhost (HELO raht.cworth.org) (127.0.0.1) by localhost with SMTP; 14 Jun 2006 12:06:35 -0400 Date: Wed, 14 Jun 2006 09:01:56 -0700 Message-ID: <87pshbd8uj.wl%cworth@cworth.org> From: Carl Worth To: cairo-announce@cairographics.org Subject: cairo snapshot 1.1.8 now available User-Agent: Wanderlust/2.14.0 (Africa) Emacs/21.4 Mule/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: multipart/signed; boundary="pgp-sign-Multipart_Wed_Jun_14_09:01:49_2006-1"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.441 tagged_above=-999 required=2 tests=[AWL=-0.054, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, TW_XC=0.077] X-Spam-Score: -2.441 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 12:46:39 -0400 Cc: gnome-announce-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 16:07:42 -0000 --pgp-sign-Multipart_Wed_Jun_14_09:01:49_2006-1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable A new cairo snapshot 1.1.8 is now available from: http://cairographics.org/snapshots/cairo-1.1.8.tar.gz which can be verified with: http://cairographics.org/snapshots/cairo-1.1.8.tar.gz.sha1 ad660fe7bfede1882f4b81798e3e0ef8fe7ecb9b cairo-1.1.8.tar.gz http://cairographics.org/snapshots/cairo-1.1.8.tar.gz.sha1.asc (signed by Carl Worth) Additionally, a git clone of the source tree: git clone git://git.cairographics.org/git/cairo will include a signed 1.1.8 tag which points to a commit named: dd859b8736bb4d1bcf3ed78d0bd1f72a7aad9ca9 which can be verified with: git verify-tag 1.1.8 and can be checked out with a command such as: git checkout -b build 1.1.8 This is the fourth in a series of snapshots working toward the 1.2 release of cairo. At this point, all major features of the 1.2 release are in place, leaving just a few bug fixes left. In particular, there will be no additional API changes between this 1.1.8 snapshot and the 1.2 release. The announcement for 1.1.6 mentioned several API changes being considered. Only one of these changes was actually implemented (set_dpi -> fallback_resolution). This change does introduce one source-level incompatibility with respect to previous 1.1.x snapshots, so see below for details. What is cairo =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Cairo is a 2D graphics library with support for multiple output devices. Currently supported output targets include the X Window System, win32, and image buffers. Experimental backends include OpenGL (through glitz), Quartz, XCB, PostScript and PDF file output. Cairo is designed to produce consistent output on all output media while taking advantage of display hardware acceleration when available (for example, through the X Render Extension). The cairo API provides operations similar to the drawing operators of PostScript and PDF. Operations in cairo including stroking and filling cubic B=E9zier splines, transforming and compositing translucent images, and antialiased text rendering. All drawing operations can be transformed by any affine transformation (scale, rotation, shear, etc.). Cairo has been designed to let you draw anything you want in a modern 2D graphical user interface. At the same time, the cairo API has been designed to be as fun and easy to learn as possible. If you're not having fun while programming with cairo, then we have failed somewhere---let us know and we'll try to fix it next time around. Cairo is free software and is available to be redistributed and/or modified under the terms of either the GNU Lesser General Public License (LGPL) version 2.1 or the Mozilla Public License (MPL) version 1.1. Where to get more information about cairo =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D The primary source of information about cairo is: http://cairographics.org/ The latest releases of cairo can be found at: http://cairographics.org/releases Snapshots of in-development versions of cairo: http://cairographics.org/snapshots The programming manual for using cairo: http://cairographics.org/manual Mailing lists for contacting cairo users and developers: http://cairographics.org/lists Answers to some frequently asked questions about cairo: http://cairographics.org/FAQ What's new in 1.1.8 compared to 1.1.6 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ** API Change ** ---------------- According to the plan mentioned in the 1.1.6 notes, one source-level incompatible change has been implemented. The following three functions have been removed from cairo's API: cairo_pdf_surface_set_dpi cairo_ps_surface_set_dpi cairo_svg_surface_set_dpi and in their place the following function has been added: cairo_surface_set_fallback_resolution The signature and semantics of the function remains the same, so it is a simple matter of changing the name of the function when calling it. As a transition mechanism, this snapshot will (on many systems) build to include the old symbols so that code previously compiled will still run. However, all source code using the old names must be updated before it will compile. And the upcoming 1.2 release is not anticipated to include the old symbols. Finally, it should be pointed out that the old symbols never existed in the supported API of any stable release of cairo. (In the stable 1.0 releases the PDF, PS, and SVG backends were advertised as experimental and unstable.) And, as always, cairo continues to maintain source and binary compatibility between major releases. So applications compiled against supported backends in a stable release of cairo (1.0.4 say) will continue to compile and run without modification against new major releases (1.2.0 say) without modification. API additions ------------- The following new functions have been added to cairo's API: cairo_surface_get_content cairo_debug_reset_static_data cairo_image_surface_get_data cairo_image_surface_get_format cairo_image_surface_get_stride cairo_win32_font_face_create_for_hfont New, backend-specific pkg-config files -------------------------------------- In addition to the original cairo.pc file, cairo will also now install a pkg-config files for each configured backend, (for example cairo-pdf.pc, cairo-svg.pc, cairo-xlib.pc, cairo-win32.pc, etc.) this also includes optional font backends (such as cairo-ft.pc) and the optional png functionality (cairo-png.pc). These new pkg-config files should be very convenient for allowing cairo-using code to easily check for the existing of optional functionality in cairo without having to write complex rules to grub through cairo header files or the compiled library looking for symbols. Printing backend (PS, PDF, and SVG) ----------------------------------- Improving the quality of the "printing" backends has been a priority of the development between cairo 1.1.6 and cairo 1.1.8. The big improvement here is in the area of text output. Previously, at best, text was output as paths without taking advantage of any font support available in the output file format. Now, at the minimum text paths will be shared by using type3 fonts (for PS and PDF---and similarly, defs for SVG). Also, if possible, type3 and truetype fonts will be embedded in PostScript and PDF output. There are still some known bugs with this, (for example, selecting text in a cairo-generated PDF file with an embedded truetype font does not work). So there will be some more changes in this area before cairo 1.2, but do try test this feature out as it exists so far. Many thanks to Kristian H=F8gsberg for the truetype and type1 font embedding. win32 backend ------------- Performance improvements by preferring GDI over pixman rendering when possi= ble. Fixes for text rendering. xlib backend ------------ Fix potentially big performance bug by making xlib's create_similar try harder to create a pixmap of a depth matching that of the screen. Bug fixes --------- Among various other fixes, the following bugs listed in bugzilla have been fixed: Bug 2488: Patch to fix pixman samping location bug (#2488). https://bugs.freedesktop.org/show_bug.cgi?id=3D2488 Bug 4196: undef MIN an MAX before defining to avoid duplicate definition https://bugs.freedesktop.org/show_bug.cgi?id=3D4196 Bug 4723: configure.in: Fix m4 quoting when examining pkg-config version https://bugs.freedesktop.org/show_bug.cgi?id=3D4723 Bug 4882: Flag Sun's X server has having buggy_repeat. https://bugs.freedesktop.org/show_bug.cgi?id=3D4882 Bug 5306: test/pdf2png: Add missing include of stdio.h https://bugs.freedesktop.org/show_bug.cgi?id=3D5306 Bug 7075: Fix make clean to remove cairo.def https://bugs.freedesktop.org/show_bug.cgi?id=3D7075 (Many thanks to Behdad Esfahbod for helping us track down and fix many of these.) Detailed list of changes since 1.1.6 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Tag '1.1.8' created by Carl Worth at 2006-06-14 16:17 -= 0700 cairo 1.1.8 snapshot -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEkCju6JDdNq8qSWgRAjdQAJ9jjY8MwIcyhpSxf8Yn50izT6wXRwCeJN3x XKToq1aoRwjXc1HujBI0wVo=3D =3DtwxK -----END PGP SIGNATURE----- Changes since 1.1.6: Behdad Esfahbod: Bug 7075: Fix make clean to remove cairo.def Move cairo.pc into src/. Add backend-specific pkg-config files. Rename cairo-wideint.h to cairo-wideint-private.h. Bertram Felgenhauer: Patch to fix pixman samping location bug (#2488). Bug 4723: configure.in: Fix m4 quoting when examining pkg-config vers= ion Brian Cameron: Bug 4882: Flag Sun's X server has having buggy_repeat. Carl Worth: Increment CAIRO_VERSION to 1.1.7 after making the 1.1.6 snapshot Revert "pdf2png: Use new poppler_page_render to render directly throu= gh cairo." Don't build pdf2svg until we start depending on newer poppler ROADMAP: non-substantive changes Add select-font-face test for whosing multiple faces at once. Fix typo in select-font-face.c and update reference images PS: Remove stale comment (the stuff TODO is done already) PS: Move type 3 support out into cairo-ps-font.c PS: Put functions in more logical order. Rename cairo-ps-font to cairo-scaled-font-subsets (file names only) Generalize font subsetting code in cairo-scaled-font-subsets for use = by more than just PS backend Fix cairo_output_stream_destroy to do nothing on nil stream objects. Tweak names to match those of cairo-scaled-font-subsets SVG: Discard custom font subsetting in favor of sharing cairo-scaled-= font-subsets Add documentation for the _cairo_scaled_font_subsets interface. Fix memory leak in _cairo_scaled_font_subsets_foreach PDF: Use cairo_pdf_resource_t more consistently. PDF: Fold (unused) cairo_pdf_document_t into cairo_pdf_surface_t Change scaled_font_subsets_callback to have return type of void. PS: Fix arguments to setcachedevice PS: Remove the fallback case from _cairo_ps_surface_show_glyphs PDF: Use consistent style for typedef struct and macro naming. PDF: Move Resources dictionary up from Page objects to Pages object. PDF: Add Type3 font support to PDF output. pixman: Fix build to enable warnings again pixman: Add default case to quiet compiler warning pixman: Remove unused code to quiet compiler warnings ROADMAP: Note that PDF type 3 font support is done PDF: Fix broken per-page sizes in PDF output. xlib: Rename surface->format to surface->xrender_format to avoid conf= usion xlib: Style cleanups for _cairo_xlib_surface_create_similar PDF: Squelch a couple of bogus "may be used uninitialized" warnings. Move prototype of cairo_debug_reset_static_data from uninstalled cair= o-debug.h to cairo.h Codify 1.0 behavior of cairo_set_line_width as a feature, not a bug. SVG: Fix for line-width-scale New test: dash-scale PDF: Rename pdf_stroke_t to pdf_path_into_t for future sharing with f= ill PDF: Share path callbacks for fill and stroke. Clarify the documentation for cairo_set_dash PDF: Move dash operator before path construction operators. ROADMAP: Note that the cairo_set_line_width issue is resolved Typo fixes cairo-xlib-test: Rename cairo_test_xlib function prefix to cairo_xlib= _test PDF: Add new, private test function: cairo_pdf_test_force_fallbacks Add new fallback-resolution test for bug in cairo_pdf_surface_set_dpi New API: Add new function cairo_surface_get_content Note the changed semantics of cairo_surface_set_device_offset New API: Add cairo_image_surface_get_{data,format,stride} Move rectangle functions to new cairo-rectangle.c Remove extraneous whitespace from "blank" lines. Remove trailing whitespace from lines that look like comments. Remove trailing whitespace from lines with a single brace. Remove all remaining trailing whitespace. Remove initial, final, and duplicate blank lines. CODING_STYLE: Add notes on avoiding trailing whitespace. CODING_STYLE: Fix misspellings. Fix bogus cairo_rectangle_fixed_t to be cairo_rectangle_int16_t. Remove CAIRO_{MIN,MAX}SHORT which did not distinguish signed vs. unsi= gned. win32: Add conditional definitions for INT16_{MIN,MAX} and UINT16_MAX= now that we use them. Fix MAX vs. MIN bug introduced with rename away from CAIRO_MINSHORT Change all instances of UINT16_MAX to INT16_MAX to avoid new bug. Remove debugging "prints" of images from test/device-offset.c Add new test get-group-target (currently failing with paginated). Fix bug in get-group-target (in the test itself) letting it now pass. Rename ft-text-vertical-layout reference image according to standard = convention. Ignore ft-text-vertical-layout binary New API: Replace cairo_{ps,pdf,svg}_set_dpi with new cairo_surface_se= t_fallback_resolution. Add REPLACED_BY macros to help porting to new set_fallback_resolution Rename device_{x,y}_offset to {x,y}_device_offset for better consiten= cy/grepability doc: SGML template churn Change {x,y}_device_offset values to a device_transform matrix. Hook up device scaling so fallback_resolution starts working. Add text and stroke to falback-resolution test (showing bugs in each). Fix line width for stroking with a device_scale. Fix font size when drawing text with a device_scale. Add cairo_{ps,svg}_test_force_fallbacks so tests can force fallbacks. Test PS and SVG backends in addition to PDF in test/fallback-resoluti= on. Clarify that fallback_resolution acts on a per-page granularity. Don't create a new scaled_font if there's a device_offset but no devi= ce_scale. Change _cairo_meta_surface_get_extents to return a bounded size. ROADMAP: Note that cairo_surface_set_fallback_resolution is in place = now. Add cairo-ps-test.h and cairo-svg-test.h to Makefile.am Add aliases for deprecated cairo_{pdf,ps,svg}_surface_set_dpi Change return type of _cairo_scaled_glyph_lookup to allow UNSUPPORTED. PS, PDF: Re-organize handling of bitmapped fonts to avoid invalid out= put. Merge branch 'truetype-subsetting' into cairo Merge branch 'type1-subsetting' into cairo Add new zero-alpha test to demonstrate (X server?) bug found by Paul = Giblock test/zero-alpha: Drop REPS from 100 to 10 for a faster test. Bug 4196: undef MIN an MAX before defining to avoid duplicate definit= ion ft: If glyph->format is not OUTLINE use _render_glyph_bitmap to coerc= e to a bitmap ROADMAP: Update with PDF bugs from minefield test. Slip non-1.0 regre= ssions off of 1.2. Add zero-alpha reference image to Makefile.am for the sake of make di= st PS PDF: Update reference images due to truetype subsetting Update refefence images due to pattern source shift. Update version to 1.1.8 and add notes to NEWS file. Christian Biesinger: Make BeOS compile again Add missing reference images to EXTRA_DIST Distribute make-html.pl Add "html" Makefile target to run make-html.pl Dom Lachowicz: Bug 5306: test/pdf2png: Add missing include of stdio.h Emmanuel Pacaud: SVG: Sets something sane in width and height if acquire source image = fails. SVG: Remove special case for unclipped CLEAR and SOURCE in paint when SVG: Fix cairo_svg_surface_restrict_to_version. Use CLEAR operator for initialisation of similar surface with a trans= parent color. SVG: Add reference images for fill-and-stroke-alpha. SVG: Implementation of glyph cache SVG: Emit glyphs at the beginning of defs section. SVG: Sets fallback resolution when compositing a meta surface. Jeff Muizelaar: Only destroy scaled glyphs if they are not in the cache. Jinghua Luo: glitz: Don't hardcode content type when initializing cairo surface Merge branch 'master' of git+ssh://jinghua@git.cairographics.org/git/= cairo Add ft-text-vertical-layout test case for vertical layout. freetype: Fix for test case ft-text-vertial-layout. Make image-*-ref.png image as reference image. freetype: Ignore global advance unconditionally. freetype: rework _transform_glyph_bitmap. ignore FC_MATRIX in font pattern. freetype: build fix for _transform_glyph_bitmap. xlib: bugfix for #7172. freetype: Return an error if the glyph format isn't outline or bitmap ROADMAP: Mark bugs FC_ADVANCE and _transform_glyph_bitmap as fixed. Kristian H=C3=B8gsberg: Documentation fixes (cairo_font_create -> cairo_scaled_font_create). Merge branch 'master' of git://git.freedesktop.org/git/cairo Update pdf font emit code to try to emit a truetype subset before typ= e3. Output pdf dicts for truetype subset fonts. Hook _cairo_truetype_subset_init() up to existing truetype subset cod= e. Switch to using Tm for text positioning and scale type3 fonts to unit= size. Add support for truetype subset to ps backend. Print out ps comment in the truetype emit code and update type3 ps co= mment. Remember to destroy cairo_pdf_ft_font_t once we've generated the subs= et. Set libcairo_font_subset_sources for ps, pdf, and svg backends. Remember to call _cairo_truetype_subset_fini() after outputting subse= t. Pull in type1 subset code from the cvs repo it was sitting in. Add code to emit type1 dicts to the pdf backend. Use RD and ND for delimiting glyph data instead of -| and |-. Only use the word wrap stream when emitting paths. Make ps surface use type1 subset code. Track glyph subset indices and use them in the output. Look for /-| or /RD tokens to determine the charstring delimiter toke= ns. Consolidate a few arrays into a array of structs. Remember to call cairo_type1_font_subset_destroy(). Handle seac charstring commands correctly. Clarify licensing of float formatting code. Remove cairo_public from _cairo_lzw_compress() definition. Robert O'Callahan: [xlib] Have create_similar try harder to create the right surface Stuart Parmenter: [win32] Allow for creating a font from a HFONT [win32] implement win32 show_glyphs [win32] fix win32_show_glyphs glyph offsets Tim Mooney: bug #6890: fix the signature for main() in pthread-show-text Vladimir Vukicevic: [xlib] implement _cairo_xlib_surface_show_glyphs [xlib] only do glyph extents computation if non-solid source. [win32] Add SHADEBLENDCAPS and SB_NONE definitions for older SDKs [win32] Add GdiFlush() calls after DIB creation, as per MSDN docs [win32] GDI is nearly always faster than pixman; use it whenever poss= ible CAIRO_SCALED_FONT_TYPE_* -> CAIRO_FONT_TYPE_* Whitespace fix Define kCGBitmapByteOrder32Host for when the SDK doesn't define it Zakharov Mikhail: pixman: fix compilation on HP-UX 11.11 --- .gitignore | 1=20 CODING_STYLE | 22=20 Makefile.am | 8=20 NEWS | 132 + RELEASING | 2=20 ROADMAP | 72=20 configure.in | 68=20 doc/public/Makefile.am | 1=20 doc/public/tmpl/cairo-pdf.sgml | 7=20 doc/public/tmpl/cairo-ps.sgml | 7=20 doc/public/tmpl/cairo-status.sgml | 7=20 doc/public/tmpl/cairo-svg.sgml | 7=20 doc/tutorial/src/include/cairo-tutorial-gtk.h | 8=20 doc/tutorial/src/include/cairo-tutorial-pdf.h | 4=20 doc/tutorial/src/include/cairo-tutorial-png.h | 4=20 doc/tutorial/src/include/cairo-tutorial-xlib.h | 2=20 doc/tutorial/src/include/cairo-tutorial.h | 1=20 doc/tutorial/src/lca.c | 6=20 pixman/src/Makefile.am | 4=20 pixman/src/fbcompose.c | 44=20 pixman/src/fbedge.c | 5=20 pixman/src/fbedgeimp.h | 8=20 pixman/src/fbmmx.c | 559 +++--- pixman/src/fbmmx.h | 2=20 pixman/src/fbpict.c | 39=20 pixman/src/fbpict.h | 3=20 pixman/src/fbtrap.c | 24=20 pixman/src/icblt.c | 96 - pixman/src/icbltone.c | 57=20 pixman/src/iccolor.c | 2=20 pixman/src/icformat.c | 30=20 pixman/src/icimage.c | 99 - pixman/src/icimage.h | 9=20 pixman/src/icint.h | 55=20 pixman/src/icpixels.c | 1=20 pixman/src/icrect.c | 30=20 pixman/src/icrop.h | 6=20 pixman/src/icstipple.c | 6=20 pixman/src/ictransform.c | 5=20 pixman/src/ictrap.c | 12=20 pixman/src/ictri.c | 31=20 pixman/src/icutil.c | 3=20 pixman/src/pixman-xserver-compat.h | 3=20 pixman/src/pixman.h | 20=20 pixman/src/pixregion.c | 76=20 pixman/src/pixregionint.h | 9=20 pixman/src/renderedge.c | 13=20 pixman/src/slim_internal.h | 4=20 src/.gitignore | 1=20 src/Makefile.am | 60=20 src/cairo-analysis-surface.c | 11=20 src/cairo-arc.c | 6=20 src/cairo-array.c | 33=20 src/cairo-atsui-font.c | 59=20 src/cairo-backend.pc.in | 12=20 src/cairo-base85-stream.c | 5=20 src/cairo-beos-surface.cpp | 5=20 src/cairo-beos.h | 1=20 src/cairo-cache.c | 32=20 src/cairo-clip-private.h | 8=20 src/cairo-clip.c | 55=20 src/cairo-debug.c | 3=20 src/cairo-directfb-surface.c | 104 - src/cairo-directfb.h | 13=20 src/cairo-font-options.c | 60=20 src/cairo-font-subset-private.h | 1=20 src/cairo-font-subset.c | 182 +- src/cairo-font.c | 42=20 src/cairo-ft-font.c | 471 +++-- src/cairo-glitz-surface.c | 48=20 src/cairo-gstate-private.h | 2=20 src/cairo-gstate.c | 185 -- src/cairo-hash.c | 54=20 src/cairo-hull.c | 2=20 src/cairo-image-surface.c | 132 + src/cairo-lzw.c | 4=20 src/cairo-matrix.c | 147 - src/cairo-meta-surface.c | 53=20 src/cairo-operator.c | 8=20 src/cairo-output-stream.c | 28=20 src/cairo-paginated-surface.c | 28=20 src/cairo-path-bounds.c | 8=20 src/cairo-path-data.c | 14=20 src/cairo-path-fill.c | 3=20 src/cairo-path-stroke.c | 22=20 src/cairo-path.c | 32=20 src/cairo-pattern.c | 122 - src/cairo-pdf-surface.c | 2009 +++++++++++++------= ----- src/cairo-pdf-test.h | 20=20 src/cairo-pdf.h | 5=20 src/cairo-pen.c | 18=20 src/cairo-png.c | 35=20 src/cairo-polygon.c | 2=20 src/cairo-ps-surface.c | 982 +++++------ src/cairo-ps-test.h | 20=20 src/cairo-ps.h | 5=20 src/cairo-quartz-private.h | 2=20 src/cairo-quartz-surface.c | 37=20 src/cairo-quartz.h | 1=20 src/cairo-rectangle.c | 85 + src/cairo-region.c | 17=20 src/cairo-scaled-font-subsets-private.h | 267 +++ src/cairo-scaled-font-subsets.c | 384 ++++ src/cairo-scaled-font.c | 195 +- src/cairo-slope.c | 6=20 src/cairo-spline.c | 3=20 src/cairo-stroke-style.c | 1=20 src/cairo-surface-fallback-private.h | 2=20 src/cairo-surface-fallback.c | 145 - src/cairo-surface.c | 461 +++-- src/cairo-svg-surface.c | 770 +++++---- src/cairo-svg-test.h | 20=20 src/cairo-svg.h | 9=20 src/cairo-traps.c | 51=20 src/cairo-type1-subset.c | 1040 ++++++++++++ src/cairo-unicode.c | 39=20 src/cairo-wideint-private.h | 11=20 src/cairo-wideint.c | 18=20 src/cairo-win32-font.c | 196 +- src/cairo-win32-private.h | 11=20 src/cairo-win32-surface.c | 299 ++- src/cairo-win32.h | 3=20 src/cairo-xcb-surface.c | 108 - src/cairo-xlib-private.h | 4=20 src/cairo-xlib-screen.c | 32=20 src/cairo-xlib-surface.c | 698 ++++---- src/cairo-xlib-test.h | 3=20 src/cairo-xlib-xrender.h | 1=20 src/cairo-xlib.h | 1=20 src/cairo.c | 246 +- src/cairo.h | 61=20 src/cairoint.h | 182 +- src/test-fallback-surface.c | 17=20 src/test-meta-surface.c | 9=20 src/test-paginated-surface.c | 5=20 test/.gitignore | 10=20 test/Makefile.am | 31=20 test/buffer-diff.c | 3=20 test/buffer-diff.h | 4=20 test/cairo-test-directfb.c | 20=20 test/cairo-test.c | 80=20 test/cairo-test.h | 5=20 test/caps-joins.c | 2=20 test/clip-all.c | 2=20 test/clip-nesting.c | 4=20 test/clip-operator.c | 14=20 test/dash-offset-negative.c | 8=20 test/dash-scale-ps-argb32-ref.png |binary test/dash-scale-ref.png |binary test/dash-scale.c | 125 + test/device-offset-ref.png |binary test/device-offset-rgb24-ref.png |binary test/device-offset.c | 87 + test/fallback-resolution.c | 178 ++ test/fill-and-stroke-alpha-svg-argb32-ref.png |binary test/fill-and-stroke-alpha-svg-rgb24-ref.png |binary test/fill-and-stroke.c | 2=20 test/filter-nearest-offset.c | 2=20 test/font-face-get-type.c | 4=20 test/ft-text-vertical-layout-pdf-argb32-ref.png |binary test/ft-text-vertical-layout-pdf-rgb24-ref.png |binary test/ft-text-vertical-layout-ps-argb32-ref.png |binary test/ft-text-vertical-layout-ps-rgb24-ref.png |binary test/ft-text-vertical-layout-ref.png |binary test/ft-text-vertical-layout-rgb24-ref.png |binary test/ft-text-vertical-layout-svg-argb32-ref.png |binary test/ft-text-vertical-layout-svg-rgb24-ref.png |binary test/ft-text-vertical-layout.c | 131 + test/get-and-set.c | 2=20 test/get-group-target-ref.png |binary test/get-group-target.c | 90 + test/gradient-alpha-ref.png |binary test/gradient-alpha-rgb24-ref.png |binary test/gradient-alpha.c | 2=20 test/imagediff.c | 4=20 test/line-width-scale-ps-argb32-ref.png |binary test/line-width-scale-ref.png |binary test/line-width-scale.c | 30=20 test/linear-gradient-ref.png |binary test/linear-gradient.c | 8=20 test/mask-ref.png |binary test/mask-rgb24-ref.png |binary test/mask.c | 8=20 test/operator-clear.c | 16=20 test/operator-source-ref.png |binary test/operator-source-rgb24-ref.png |binary test/operator-source.c | 18=20 test/pdf-features.c | 4=20 test/pdf2png.c | 39=20 test/pixman-rotate-rgb24-ref.png |binary test/pixman-rotate-svg-argb32-ref.png |binary test/pixman-rotate-svg-rgb24-ref.png |binary test/ps-features.c | 2=20 test/pthread-show-text.c | 2=20 test/push-group-ref.png |binary test/push-group-rgb24-ref.png |binary test/push-group.c | 2=20 test/read-png.c | 1=20 test/rectangle-rounding-error.c | 10=20 test/rel-path.c | 4=20 test/select-font-face-pdf-argb32-ref.png |binary test/select-font-face-ps-argb32-ref.png |binary test/select-font-face-ref.png |binary test/select-font-face-svg-argb32-ref.png |binary test/select-font-face-svg-rgb24-ref.png |binary test/select-font-face.c | 83=20 test/self-copy.c | 6=20 test/show-text-current-point-pdf-argb32-ref.png |binary test/show-text-current-point-ps-argb32-ref.png |binary test/source-clip.c | 2=20 test/surface-finish-twice.c | 1=20 test/surface-pattern.c | 2=20 test/svg-clip.c | 2=20 test/text-antialias-gray-pdf-argb32-ref.png |binary test/text-antialias-gray-ps-argb32-ref.png |binary test/text-antialias-none-pdf-argb32-ref.png |binary test/text-antialias-none-ps-argb32-ref.png |binary test/text-antialias-subpixel-pdf-argb32-ref.png |binary test/text-antialias-subpixel-ps-argb32-ref.png |binary test/text-cache-crash.c | 1=20 test/text-pattern-ref.png |binary test/text-pattern-rgb24-ref.png |binary test/text-pattern.c | 10=20 test/text-rotate.c | 2=20 test/transforms.c | 2=20 test/trap-clip-ref.png |binary test/trap-clip-rgb24-ref.png |binary test/trap-clip.c | 4=20 test/unbounded-operator.c | 16=20 test/user-data.c | 2=20 test/write-png.c | 4=20 test/xlib-surface.c | 20=20 test/xmalloc.c | 1=20 test/zero-alpha-ref.png |binary test/zero-alpha.c | 97 + 235 files changed, 8579 insertions(+), 4836 deletions(-) --pgp-sign-Multipart_Wed_Jun_14_09:01:49_2006-1 Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEkDL06JDdNq8qSWgRAlbkAJ92YIDTUafsLa/U2ZTiKZ9zO0WmFgCfc252 2Y2uyD4rr4R2jx+43617QZk= =vX2e -----END PGP SIGNATURE----- --pgp-sign-Multipart_Wed_Jun_14_09:01:49_2006-1-- From janina@opera.rednote.net Wed Jun 14 12:12:42 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 912A73B029F for ; Wed, 14 Jun 2006 12:12:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19357-07 for ; Wed, 14 Jun 2006 12:12:39 -0400 (EDT) Received: from opera.rednote.net (opera.rednote.net [70.84.142.212]) by menubar.gnome.org (Postfix) with ESMTP id ED02F3B0281 for ; Wed, 14 Jun 2006 12:12:38 -0400 (EDT) Received: from opera.rednote.net (localhost.localdomain [127.0.0.1]) by opera.rednote.net (8.13.6/8.13.5) with ESMTP id k5EGAtdS007700; Wed, 14 Jun 2006 16:10:55 GMT Received: (from janina@localhost) by opera.rednote.net (8.13.6/8.13.6/Submit) id k5EGAtD9007699; Wed, 14 Jun 2006 12:10:55 -0400 Date: Wed, 14 Jun 2006 12:10:55 -0400 From: Janina Sajka To: parente@cs.unc.edu Subject: Re: lsr-0.2.1 Message-ID: <20060614161055.GV2259@rednote.net> References: <5308fd2c0606120606p43b30477o4e73cfad155dcaa7@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5308fd2c0606120606p43b30477o4e73cfad155dcaa7@mail.gmail.com> User-Agent: Mutt/1.4.2.1i X-Operating-System: Linux opera.rednote.net 2.6.16-1.2122_FC5spksmp Organization: Capital Accessibility LLC (http://www.CapitalAccessibility.com) X-PGP-Key: http://www.CapitalAccessibility.com/JaninaSajka_gpg_key.html X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.568 tagged_above=-999 required=2 tests=[AWL=0.031, BAYES_00=-2.599] X-Spam-Score: -2.568 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 12:46:56 -0400 Cc: gnome-announce-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 16:12:42 -0000 Peter Parente writes: > ============== > * What is it ? > ============== > > Linux Screen Reader (LSR) is an extensible assistive technology for people > with > disabilities. The design philosophy behind LSR is to provide a core platform > that enables the development of LSR extensions for improving desktop > application accessibility and usability and shields extension developers > from > the intricacies of the desktop accessibility architecture. > snip snip Where can I get it ? rpm packages for Fedora Core 5 available from: ftp://SpeakupModified.Org/fedora/rednote/ The binary is under RPMS, and the source under SRPMS as usual with Fedora. Special Note: You may need to upgrade your Gnome Desktop to Fedora Development. If you find things not working with the current release and updated Gnome environment, try: yum --disablerepo='*' --enablerepo=development groupupdate 'GNOME Desktop Environment' Note the above command is issued on one line, though it's probably been broken into at least two lines in this email message. -- Janina Sajka Phone: +1.240.715.1272 Partner, Capital Accessibility LLC http://CapitalAccessibility.Com Marketing the Owasys 22C talking screenless cell phone in the U.S. and Canada--Go to http://ScreenlessPhone.Com to learn more. Chair, Accessibility Workgroup Free Standards Group (FSG) janina@freestandards.org http://a11y.org From janina@opera.rednote.net Wed Jun 14 12:17:56 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 08CF33B0156; Wed, 14 Jun 2006 12:17:56 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28336-10; Wed, 14 Jun 2006 12:17:54 -0400 (EDT) Received: from opera.rednote.net (opera.rednote.net [70.84.142.212]) by menubar.gnome.org (Postfix) with ESMTP id 2375F3B03DA; Wed, 14 Jun 2006 12:17:54 -0400 (EDT) Received: from opera.rednote.net (localhost.localdomain [127.0.0.1]) by opera.rednote.net (8.13.6/8.13.5) with ESMTP id k5EGH5iU007764; Wed, 14 Jun 2006 16:17:05 GMT Received: (from janina@localhost) by opera.rednote.net (8.13.6/8.13.6/Submit) id k5EGH5N6007763; Wed, 14 Jun 2006 12:17:05 -0400 Date: Wed, 14 Jun 2006 12:17:05 -0400 From: Janina Sajka To: Willie Walker Subject: Re: Announcing Orca 0.2.5 rpms Message-ID: <20060614161705.GW2259@rednote.net> References: <1150069937.5071.4.camel@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1150069937.5071.4.camel@localhost> User-Agent: Mutt/1.4.2.1i X-Operating-System: Linux opera.rednote.net 2.6.16-1.2122_FC5spksmp Organization: Capital Accessibility LLC (http://www.CapitalAccessibility.com) X-PGP-Key: http://www.CapitalAccessibility.com/JaninaSajka_gpg_key.html X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.569 tagged_above=-999 required=2 tests=[AWL=0.030, BAYES_00=-2.599] X-Spam-Score: -2.569 X-Spam-Level: X-Mailman-Approved-At: Wed, 14 Jun 2006 12:47:08 -0400 Cc: gnome-announce-list@gnome.org, gnome-accessibility-list@gnome.org, orca-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 16:17:56 -0000 rpm packages of Orca-0.2.5 for Fedora Core 5 are now available from: ftp://SpeakupModified.Org/fedora/rednote/ The binary is under RPMS, and the source under SRPMS as usual with Fedora. Installation There is yet some unresolved dependency issue with these rpms, so they probably will need to be installed using the --nodeps option as follows: rpm -Uv --nodeps orca-0.2.5-1.i386.rpm However, I can attest the resulting installation works for me on two different systems. I have first run: orca -t from the console, as the same user I am in the gui desktop. Once on the desktop, I have issued Alt-F2 and typed: orca -t again to get things started. Seems wrong, but is working for me on two systems. Special Note: You may need to upgrade your Gnome Desktop to Fedora Development. If you find things not working with the current release and updated Gnome environment, try: yum --disablerepo='*' --enablerepo=development groupupdate 'GNOME Desktop Environment' Note the above command is issued on one line, though it's probably been broken into at least two lines in this email message. -- Janina Sajka Phone: +1.240.715.1272 Partner, Capital Accessibility LLC http://CapitalAccessibility.Com Marketing the Owasys 22C talking screenless cell phone in the U.S. and Canada--Go to http://ScreenlessPhone.Com to learn more. Chair, Accessibility Workgroup Free Standards Group (FSG) janina@freestandards.org http://a11y.org From ross@golder.org Thu Jun 15 07:48:01 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D826D3B007D for ; Thu, 15 Jun 2006 07:48:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03520-09 for ; Thu, 15 Jun 2006 07:47:53 -0400 (EDT) Received: from black.golder.org (black.golder.org [81.6.249.35]) by menubar.gnome.org (Postfix) with ESMTP id BFA543B009A for ; Thu, 15 Jun 2006 07:47:49 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by black.golder.org (Postfix) with ESMTP id 6BF4B40AB; Thu, 15 Jun 2006 12:47:48 +0100 (BST) X-Virus-Scanned: amavisd-new at golder.org Received: from black.golder.org ([127.0.0.1]) by localhost (black.golder.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id H-Yje6ok1oMb; Thu, 15 Jun 2006 12:47:45 +0100 (BST) Received: from red (unknown [125.24.64.59]) by black.golder.org (Postfix) with ESMTP id B12633FE2; Thu, 15 Jun 2006 12:47:41 +0100 (BST) Subject: Subversion migration schedule (new cut-off is Fri 14 July) From: Ross Golder To: gnome-announce-list@gnome.org Content-Type: multipart/mixed; boundary="=-41kIj1JG8/E+h5tM2RXc" Date: Thu, 15 Jun 2006 18:47:06 +0700 Message-Id: <1150372026.9754.1.camel@red> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.519 tagged_above=-999 required=2 tests=[AWL=0.080, BAYES_00=-2.599] X-Spam-Score: -2.519 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 07:51:43 -0400 Cc: devel-announce@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 11:48:02 -0000 --=-41kIj1JG8/E+h5tM2RXc Content-Type: text/plain Content-Transfer-Encoding: 7bit As per below, it was decided that 23rd June was too soon before GUADEC, so the new cut-off date has been put back to 14th July. Regards, -- Ross --=-41kIj1JG8/E+h5tM2RXc Content-Disposition: inline Content-Description: Forwarded message - Re: Subversion migration schedule (new cut-off Fri 14 July?) Content-Type: message/rfc822 Return-Path: Received: from black.golder.org ([unix socket]) by black.golder.org (Cyrus v2.3.1-Invoca-RPM-2.3.1-2.6.fc5) with LMTPA; Fri, 02 Jun 2006 14:59:52 +0100 X-Sieve: CMU Sieve 2.3 Received: from localhost (localhost.localdomain [127.0.0.1]) by black.golder.org (Postfix) with ESMTP id 621804A93 for ; Fri, 2 Jun 2006 14:59:52 +0100 (BST) X-Virus-Scanned: amavisd-new at golder.org X-Spam-Score: 0.466 X-Spam-Level: X-Spam-Status: No, score=0.466 tagged_above=-99 required=2.5 tests=[AWL=0.466] Received: from black.golder.org ([127.0.0.1]) by localhost (black.golder.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 9MLIDaDvOs4S for ; Fri, 2 Jun 2006 14:59:49 +0100 (BST) Received: from menubar.gnome.org (menubar.gnome.org [209.132.176.177]) by black.golder.org (Postfix) with ESMTP id 570164A91 for ; Fri, 2 Jun 2006 14:59:48 +0100 (BST) Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 58DFF3B04AD; Fri, 2 Jun 2006 09:59:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30643-08; Fri, 2 Jun 2006 09:59:44 -0400 (EDT) Received: from menubar.gnome.org (localhost.localdomain [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0CDFA3B0480; Fri, 2 Jun 2006 09:59:44 -0400 (EDT) X-Original-To: gnome-hackers@gnome.org Delivered-To: gnome-hackers@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 44C613B0480 for ; Fri, 2 Jun 2006 09:59:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30672-06 for ; Fri, 2 Jun 2006 09:59:41 -0400 (EDT) Received: from localhost.localdomain (unknown [125.25.17.26]) by menubar.gnome.org (Postfix) with ESMTP id 7067E3B0468 for ; Fri, 2 Jun 2006 09:59:39 -0400 (EDT) Received: by localhost.localdomain (Postfix, from userid 500) id 80BC09FC5E; Fri, 2 Jun 2006 20:59:23 +0700 (ICT) From: Ross Golder To: Jeff Waugh In-Reply-To: <20060601132052.GF5203@waugh.id.au> References: <1139648664.6627.40.camel@localhost> <1148971293.12902.2.camel@red> <20060601132052.GF5203@waugh.id.au> Content-Type: text/plain Date: Fri, 02 Jun 2006 20:59:23 +0700 Message-Id: <1149256763.6298.18.camel@red> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org Cc: gnome-hackers@gnome.org Subject: Re: Subversion migration schedule (new cut-off Fri 14 July?) X-BeenThere: gnome-hackers@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Hacking GNOME discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: gnome-hackers-bounces@gnome.org Errors-To: gnome-hackers-bounces@gnome.org X-Virus-Scanned: by amavisd-new at gnome.org Content-Transfer-Encoding: 7bit On Thu, 2006-06-01 at 23:20 +1000, Jeff Waugh wrote: > > > > As the various show-stoppers that prevented our previously scheduled > > migration from going ahead have now been resolved, I am proposing that the > > new migration go ahead at 23:59UTC on Friday 16th June 2006. Please let us > > know a.s.a.p if that will be inconvenient for anyone. > > Ross, > > Can I suggest that we do the migration after GUADEC? I think it would be > more useful for us to have reliable and known access to CVS through the week > than be dealing with post-migration woes (as clean as it will be, there will > be some hassles for everyone). > > Thanks, > > - Jeff > How about this - I'll run another test migration on the 23rd, but won't actually make the switch. At least then, if anyone at GUADEC wants to play with or demonstrate anything related to subversion, at least they will get fairly up-to-date code. So, looking at the release schedule, it looks like the next best date would be July 14th. How would that be? -- Ross _______________________________________________ gnome-hackers mailing list gnome-hackers@gnome.org http://mail.gnome.org/mailman/listinfo/gnome-hackers --=-41kIj1JG8/E+h5tM2RXc-- From gjc@inescporto.pt Thu Jun 15 15:10:39 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7C99F3B02BF for ; Thu, 15 Jun 2006 15:10:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 29070-01 for ; Thu, 15 Jun 2006 15:10:36 -0400 (EDT) Received: from animal.inescn.pt (correio.inescn.pt [194.117.24.9]) by menubar.gnome.org (Postfix) with ESMTP id 5CEBB3B016C for ; Thu, 15 Jun 2006 15:10:35 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by animal.inescn.pt (8.13.6/8.13.6/7) with ESMTP id k5FJ9a1H007835; Thu, 15 Jun 2006 20:09:36 +0100 (WEST) Received: from pong.inescporto.pt (pong.inescn.pt [194.117.26.74]) by animal.inescn.pt (8.13.6/8.13.6/5) with ESMTP id k5FJ9PGj007812; Thu, 15 Jun 2006 20:09:25 +0100 (WEST) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by pong.inescporto.pt (Postfix) with ESMTP id 63C2A1303A8; Thu, 15 Jun 2006 20:06:19 +0100 (WEST) Subject: ANNOUNCE: PyGTK 2.9.2 (unstable) From: "Gustavo J. A. M. Carneiro" To: PyGTK Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-RzvsD9ggP/SFbL+MHSSy" Date: Thu, 15 Jun 2006 20:09:24 +0100 Message-Id: <1150398564.5933.27.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at inescporto.pt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.428 tagged_above=-999 required=2 tests=[AWL=0.037, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.428 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 23:27:04 -0400 Cc: gnome-announce-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 19:10:39 -0000 --=-RzvsD9ggP/SFbL+MHSSy Content-Type: text/plain Content-Transfer-Encoding: quoted-printable I am pleased to announce version 2.9.2 of the Python bindings for GTK. The new release is available from ftp.gnome.org and its mirrors as soon as its synced correctly: http://ftp.gnome.org/pub/GNOME/sources/pygtk/2.9/ This is an unstable release and should be used with caution. It requires either GTK+ 2.8.x or GTK+ >=3D 2.9.3. Blurb: GTK is a toolkit for developing graphical applications that run on systems such as Linux, Windows and MacOS X. It provides a comprehensive set of GUI widgets, can display Unicode bidi text. It links into the Gnome Accessibility Framework through the ATK library. PyGTK provides a convenient wrapper for the GTK+ library for use in Python programs, and takes care of many of the boring details such as managing memory and type casting. When combined with PyORBit and gnome-python, it can be used to write full featured Gnome applications. Like the GTK+ library itself PyGTK is licensed under the GNU LGPL, so is suitable for use in both free software and proprietary applications. It is already in use in many applications ranging from small single purpose scripts up to large full features applications. pygtk-2.9.2 15-june-2006 - Fix a codegen bug that prevent build of other extensions (344845, Gus= tavo) - Builds with pycairo 1.1.6 (344957, Gustavo) - gtk.TextBuffer rich text copy and serialization (Finlay) - Correct Print Editor example (Gustavo) PyGTK requires GTK+ >=3D 2.8.0 and Python >=3D 2.3.5 to build. Bug reports, as always, should go to Bugzilla; check out http://pygtk.org/developer.html and http://pygtk.org/feedback.html for links to posting and querying bug reports for PyGTK. --=20 Gustavo J. A. M. Carneiro The universe is always one step beyond logic=09 --=-RzvsD9ggP/SFbL+MHSSy Content-Type: application/pgp-signature; name=signature.asc Content-Description: Esta =?ISO-8859-1?Q?=E9?= uma parte de mensagem assinada digitalmente -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (GNU/Linux) iD8DBQBEkbBk2XoHyMdS6TARAjgIAJ4upHdWvOey6x3eV21Ji6P58K+OhgCdGstN wEORPp04QwWKfmDGW0Dum/g= =Suqv -----END PGP SIGNATURE----- --=-RzvsD9ggP/SFbL+MHSSy-- From johnp@redhat.com Thu Jun 15 16:50:59 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8557E3B01FF; Thu, 15 Jun 2006 16:50:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00479-04; Thu, 15 Jun 2006 16:50:58 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 798313B00D0; Thu, 15 Jun 2006 16:50:58 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5FKndP2000921; Thu, 15 Jun 2006 16:49:39 -0400 Received: from lacrosse.corp.redhat.com (lacrosse.corp.redhat.com [172.16.52.154]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5FKnYTU014072; Thu, 15 Jun 2006 16:49:34 -0400 Received: from [172.16.80.35] (remedyz.boston.redhat.com [172.16.80.35]) by lacrosse.corp.redhat.com (8.12.11.20060308/8.11.6) with ESMTP id k5FKnYad010638; Thu, 15 Jun 2006 16:49:34 -0400 Subject: GNOME 2.15.3 Development Release From: "John (J5) Palmieri" To: devel-announce-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Date: Thu, 15 Jun 2006 16:49:34 -0400 Message-Id: <1150404574.5271.18.camel@remedyz.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.3 (2.7.3-2) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.449 tagged_above=-999 required=2 tests=[AWL=-0.079, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_GT=0.077, TW_JH=0.077, TW_YG=0.077] X-Spam-Score: -2.449 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 23:27:04 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 20:50:59 -0000 GNOME 2.15.3 Development Release ================================ It is that time again. Time to get it, time to build it and time to test it. The GNOME Release Team is proud to present the 2.15.3 development release. This is our third development release on our road towards GNOME 2.16.0, which will be released in September 2006. So go download it. Go compile it. Go test it. And go hack on it, document it, translate it, fix it. Note that gnome-applets, deskbar-applet and pygtk all need patches which can be found here gnome-applets: http://download.gnome.org/teams/releng/2.15.3/gswitchit.patch deskbar-applet: http://download.gnome.org/teams/releng/2.15.3/CuemiacPopupEntry.py.patch pygtk: http://download.gnome.org/teams/releng/2.15.3/defsparser.py.patch To compile GNOME 2.15.3, you can use GARNOME (will be released soon), or the jhbuild modulesets available at: http://download.gnome.org/teams/releng/2.15.3/ The release notes that describe the changes between 2.15.2 and 2.15.3 are available. Go read them to learn all the goodness of this release: platform - http://download.gnome.org/platform/2.15/2.15.3/NEWS desktop - http://download.gnome.org/desktop/2.15/2.15.3/NEWS admin - http://download.gnome.org/admin/2.15/2.15.3/NEWS bindings - http://download.gnome.org/bindings/2.15/2.15.3/NEWS Here are some figures about this release: admin 2.15.3 statistics: tar.gz: 792K total tar.bz2: 616K total bindings 2.15.3 statistics: tar.gz: 21M total tar.bz2: 15M total desktop 2.15.3 statistics: tar.gz: 156M total tar.bz2: 114M total platform 2.15.3 statistics: tar.gz: 53M total tar.bz2: 37M total The GNOME 2.15.3 release is available here: platform sources - http://download.gnome.org/platform/2.15/2.15.3/ desktop sources - http://download.gnome.org/desktop/2.15/2.15.3/ admin sources - http://download.gnome.org/admin/2.15/2.15.3/ bindings sources - http://download.gnome.org/bindings/2.15/2.15.3/ WARNING! WARNING! WARNING! -------------------------- This release is a snapshot of development code. Although it is buildable and usable, it is primarily intended for testing and hacking purposes. GNOME uses odd minor version numbers to indicate development status. For more informations about 2.15, the full schedule, the official module lists and the proposed modules list, please see our shiny 2.15 page: http://www.gnome.org/start/unstable/ We hope you'll love it, The GNOME Release Team -- John (J5) Palmieri From guenther@rudersport.de Thu Jun 15 17:06:31 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1F0DB3B0237; Thu, 15 Jun 2006 17:06:31 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00750-05; Thu, 15 Jun 2006 17:06:30 -0400 (EDT) Received: from rudersport.de (rudersport.de [192.220.91.203]) by menubar.gnome.org (Postfix) with ESMTP id 427033B00D0; Thu, 15 Jun 2006 17:06:30 -0400 (EDT) Received: from [10.0.0.2] (IP-213157009217.dialin.heagmedianet.de [213.157.9.217]) by rudersport.de (8.12.11.20060308) id k5FL5jDY040713; Thu, 15 Jun 2006 15:05:46 -0600 (MDT) Subject: [ANNOUNCE] GARNOME 2.15.3 From: guenther To: garnome-list@gnome.org Content-Type: text/plain Date: Thu, 15 Jun 2006 23:05:43 +0200 Message-Id: <1150405543.8323.15.camel@monkey.loc> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.053 tagged_above=-999 required=2 tests=[AWL=-0.451, BAYES_00=-2.599, SUBJ_ALL_CAPS=0.997] X-Spam-Score: -2.053 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 23:27:04 -0400 Cc: gnome-announce-list@gnome.org, gnome-love@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 21:06:31 -0000 GARNOME 2.15.3 ============== The "It's quiet out there... Yes... Too quiet..." release. What seemed to be no last minute releases turned out to be a broken list server, holding back the official GNOME release for a day. Also, there have been a bunch of build issues this time around, more than usual. Some good cooperation between the Release Team and the GARNOME Team (especially Joseph) hacked around the brokeness, thus... We are pleased to announce the release of GARNOME 2.15.3 Desktop and Developer Platform. This release includes all of GNOME 2.15.3 plus a whole bunch of updates that were released after the GNOME freeze date. This is the third release in the unstable cycle, with more features, more fixes and yet more madness added. It is for anyone who wants to get his hands dirty on the development branch, or who'd like to get a peek at future features. If you want to help spot issues in GARNOME, (or, better yet, fix 'em ;-) this release is for you as well. As usual, you can get the tarball directly from the gnome.org site: http://download.gnome.org/sources/garnome/2.15/ Note: GNOME 2.15.x is an unstable branch and is assumed to be a moving target. Therefore, things in this release may not work as advertised. If you find any issues with this release, feel free to contact the GARNOMEies in the #garnome channel on GIMPNet (irc://irc.gnome.org), where we hang out, or post to the mailing list. More information is available at our project website: http://www.gnome.org/projects/garnome/ Enjoy, The GARNOME Team -- char *t="\10pse\0r\0dtu\0.@ghno\x4e\xc8\x79\xf4\xab\x51\x8a\x10\xf4\xf4\xc4"; main(){ char h,m=h=*t++,*x=t+2*h,c,i,l=*x,s=0; for (i=0;i>=1)||!t[s+h]){ putchar(t[s]);h=m;s=0; }}} From behdad.esfahbod@gmail.com Thu Jun 15 17:39:14 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 21DF83B0232 for ; Thu, 15 Jun 2006 17:39:14 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02006-04 for ; Thu, 15 Jun 2006 17:39:13 -0400 (EDT) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.237]) by menubar.gnome.org (Postfix) with ESMTP id 17AEE3B0007 for ; Thu, 15 Jun 2006 17:39:13 -0400 (EDT) Received: by wr-out-0506.google.com with SMTP id 37so427823wra for ; Thu, 15 Jun 2006 14:38:12 -0700 (PDT) Received: by 10.54.108.13 with SMTP id g13mr2187733wrc; Thu, 15 Jun 2006 14:38:11 -0700 (PDT) Received: from ?192.168.190.5? ( [72.136.156.47]) by mx.gmail.com with ESMTP id 6sm1544376wrl.2006.06.15.14.38.10; Thu, 15 Jun 2006 14:38:11 -0700 (PDT) Subject: Women's Summer Outreach Program 2006 From: Behdad Esfahbod To: gnome-hackers@gnome.org, foundation-list@gnome.org, foundation-announce@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Date: Thu, 15 Jun 2006 17:38:06 -0400 Message-Id: <1150407487.29623.12.camel@home> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 (2.6.1-1.fc5.2) Content-Transfer-Encoding: 7bit Sender: Behdad Esfahbod X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.6 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.6 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 23:27:04 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 21:39:14 -0000 GNOME to Sponsor Female Developers in a Summer Outreach Program BOSTON, Mass - June 13, 2006 - The GNOME Foundation is offering USD$9000 to female students in order to promote the participation of women in GNOME-related development. The money originates from GNOME's participation in the Google "Summer of Code" program (code.google.com/soc/), for which GNOME developers will mentor 20 students working throughout the northern summer on GNOME-related projects. This year GNOME received 181 applications to Google's program, yet none were from women. The GNOME Foundation has therefore chosen to reinvest Google's contribution into a new program designed to increase the participation of women in GNOME. The program has no official relationship with Google. "Free software prides itself on being open to anyone with a good idea, yet less than 2% of free software developers are female. We, as a community, need to be actively working to change this statistic, and programs like this one are a much needed step in the right direction." said Hanna Wallach, a GNOME developer who is involved in several projects that encourage women to participate in free software development. The Women's Summer Outreach Program is currently accepting applications from female students. Accepted students will receive a stipend of USD $3000 over a two month period. A pool of project ideas is provided at www.gnome.org/projects/wsop/, though original proposals are also encouraged. Projects may either be related to GNOME directly, or indirectly via projects such as Gstreamer and Abiword. Each student will be assigned a mentor to provide guidance throughout the program. Vincent Untz, member of the GNOME Foundation board and coordinator of the GNOME team for Google's "Summer of Code" program, explained: "Many women have the skills required to contribute to Free Software projects like GNOME, but may not see an opportunity to start working with us. By initiating this program, not only do we want to highlight the issue, but we also hope that this opportunity will help more women to get involved in the long term." Applications should be submitted using the form at www.gnome.org/projects/wsop/. More information about the application process may be found at the same location. From cworth@cworth.org Fri Jun 16 13:14:11 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7C02B3B0125 for ; Fri, 16 Jun 2006 13:14:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07413-02 for ; Fri, 16 Jun 2006 13:14:09 -0400 (EDT) Received: from theworths.org (cworth.org [217.160.249.188]) by menubar.gnome.org (Postfix) with ESMTP id B2BA33B0128 for ; Fri, 16 Jun 2006 13:14:08 -0400 (EDT) Received: (qmail 6134 invoked from network); 16 Jun 2006 13:13:38 -0400 Received: from localhost (HELO raht.cworth.org) (127.0.0.1) by localhost with SMTP; 16 Jun 2006 13:13:38 -0400 Date: Fri, 16 Jun 2006 10:08:58 -0700 Message-ID: <878xnxc9jp.wl%cworth@cworth.org> From: Carl Worth To: cairo-announce@cairographics.org Subject: cairo snapshot 1.1.10 now available User-Agent: Wanderlust/2.14.0 (Africa) Emacs/21.4 Mule/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: multipart/signed; boundary="pgp-sign-Multipart_Fri_Jun_16_10:08:52_2006-1"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.4 tagged_above=-999 required=2 tests=[AWL=-0.090, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, TW_BX=0.077, TW_IB=0.077] X-Spam-Score: -2.4 X-Spam-Level: X-Mailman-Approved-At: Sat, 17 Jun 2006 00:52:39 -0400 Cc: gnome-announce-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2006 17:14:11 -0000 --pgp-sign-Multipart_Fri_Jun_16_10:08:52_2006-1 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable A new cairo snapshot 1.1.10 is now available from: http://cairographics.org/snapshots/cairo-1.1.10.tar.gz which can be verified with: http://cairographics.org/snapshots/cairo-1.1.10.tar.gz.sha1 709d48dbcd0ac806e4f7bfd1f69314e4dfb57329 cairo-1.1.10.tar.gz http://cairographics.org/snapshots/cairo-1.1.10.tar.gz.sha1.asc (signed by Carl Worth) Additionally, a git clone of the source tree: git clone git://git.cairographics.org/git/cairo will include a signed 1.1.10 tag which points to a commit named: 65e73c81b83222de873935cf384e514ea20ac854 which can be verified with: git verify-tag 1.1.10 and can be checked out with a command such as: git checkout -b build 1.1.10 This is the fifth in a series of snapshots working toward the 1.2 release of cairo. The primary motivation for this snapshot is to fix a long-standing bug that had long been silent, but as of the 1.1.8 snapshot started causing crashes when run against 16-bit depth X servers, (often Xvnc or Xnest). The fix for this adds a new CAIRO_FORMAT_RGB16_565 to the API. This snapshot also includes a rewrite of cairo's SVG backend to eliminate the dependency on libxml2. With this in place, cairo 1.2 will not depend on any libraries that cairo 1.0 did not. As usual, there are also a few fixes for minor bugs. What is cairo =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Cairo is a 2D graphics library with support for multiple output devices. Currently supported output targets include the X Window System, win32, and image buffers. Experimental backends include OpenGL (through glitz), Quartz, XCB, PostScript and PDF file output. Cairo is designed to produce consistent output on all output media while taking advantage of display hardware acceleration when available (for example, through the X Render Extension). The cairo API provides operations similar to the drawing operators of PostScript and PDF. Operations in cairo including stroking and filling cubic B=E9zier splines, transforming and compositing translucent images, and antialiased text rendering. All drawing operations can be transformed by any affine transformation (scale, rotation, shear, etc.). Cairo has been designed to let you draw anything you want in a modern 2D graphical user interface. At the same time, the cairo API has been designed to be as fun and easy to learn as possible. If you're not having fun while programming with cairo, then we have failed somewhere---let us know and we'll try to fix it next time around. Cairo is free software and is available to be redistributed and/or modified under the terms of either the GNU Lesser General Public License (LGPL) version 2.1 or the Mozilla Public License (MPL) version 1.1. Where to get more information about cairo =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D The primary source of information about cairo is: http://cairographics.org/ The latest releases of cairo can be found at: http://cairographics.org/releases Snapshots of in-development versions of cairo: http://cairographics.org/snapshots The programming manual for using cairo: http://cairographics.org/manual Mailing lists for contacting cairo users and developers: http://cairographics.org/lists Answers to some frequently asked questions about cairo: http://cairographics.org/FAQ Detailed list of changes since 1.1.8 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Tag '1.1.10' created by Carl Worth at 2006-06-16 17:53 = -0700 cairo 1.1.10 snapshot -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEkuIi6JDdNq8qSWgRArhnAJ4hDlfpnWYY9bj0NVs7ZMl+XKsaXwCffRLz HMhowJx6or+LK99tRtZO5YM=3D =3DAsAw -----END PGP SIGNATURE----- Changes since 1.1.8: Behdad Esfahbod: Use enum time instead of int (shuts intel compiler up.) Merge branch 'cairo' into cairo-origin Carl Worth: Increment CAIRO_VERSION to 1.1.9 after making the 1.1.8 snapshot _cairo_format_from_pixman_format: Add useful error mesage and asserti= on when failing. Remove _cairo_image_surface_is_alpha_only in favor of just looking at= content value. Drop _cairo_surface_is_opaque now that we have cairo_surface_get_cont= ent Add missing breaks in switch statement. New API: Add support for new CAIRO_FORMAT_RGB16_565 Update release rules in Makefile to add git signature information. Annoying doc template churn. Update version to 1.1.10 and add notes to NEWS file. Emmanuel Pacaud: SVG: Update of reference images. Jinghua Luo: xlib: free resources before return if looking up glyph surface fails. Kristian H=F8gsberg: Make cairo_output_stream_t an embeddable type. Convert the stdio output stream to use the new output stream interfac= e. Convert the word wrap stream, the base85 stream and the ps string str= eam. Add an in-memory output-stream implementation. Only run fallback-resolution test case when all of PDF, PS and SVG ar= e enabled. Rewrite SVG backend to just use cairo output stream instead of libxml= 2. Remove libxml2 checks from configure.in. Actually add src/cairo-output-stream-private.h. Merge branch 'svg-rewrite' Add test case for the PDF, PS and SVG stream constructors. Only call close function for output streams if it's non-NULL. Add cairo-output-stream-private.h to libcairo_la_SOURCES. Torsten Sch=F6nfeld: Add missing cairo_public tag for cairo_image_surface_get_stride --- Makefile.am | 25=20 NEWS | 17=20 RELEASING | 2=20 configure.in | 20=20 doc/public/tmpl/cairo-image.sgml | 1=20 pixman/src/icformat.c | 6=20 pixman/src/pixman.h | 3=20 pixman/src/pixregion.c | 2=20 src/Makefile.am | 1=20 src/cairo-base85-stream.c | 28=20 src/cairo-image-surface.c | 98 + src/cairo-output-stream-private.h | 156 ++ src/cairo-output-stream.c | 188 ++- src/cairo-pattern.c | 2=20 src/cairo-pdf-surface.c | 1=20 src/cairo-ps-surface.c | 45=20 src/cairo-surface.c | 37=20 src/cairo-svg-surface.c | 1170 ++++++++--------= ----- src/cairo-type1-subset.c | 1=20 src/cairo-xlib-surface.c | 2=20 src/cairo.h | 8=20 src/cairoint.h | 85 - test/Makefile.am | 10=20 test/create-for-stream.c | 218 +++ test/linear-gradient-svg-argb32-ref.png |binary test/linear-gradient-svg-rgb24-ref.png |binary test/mask-svg-argb32-ref.png |binary test/mask-svg-rgb24-ref.png |binary test/paint-source-alpha-svg-argb32-ref.png |binary test/paint-source-alpha-svg-rgb24-ref.png |binary test/paint-with-alpha-svg-argb32-ref.png |binary test/paint-with-alpha-svg-rgb24-ref.png |binary test/push-group-svg-argb32-ref.png |binary test/push-group-svg-rgb24-ref.png |binary test/scale-source-surface-paint-svg-argb32-ref.png |binary test/scale-source-surface-paint-svg-rgb24-ref.png |binary test/text-pattern-svg-argb32-ref.png |binary test/text-pattern-svg-rgb24-ref.png |binary test/trap-clip-svg-argb32-ref.png |binary test/trap-clip-svg-rgb24-ref.png |binary 40 files changed, 1171 insertions(+), 955 deletions(-) --pgp-sign-Multipart_Fri_Jun_16_10:08:52_2006-1 Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.3 (GNU/Linux) iD8DBQBEkuWq6JDdNq8qSWgRAqI6AJ42+4WuUfwFtayn9C8dh+r/xTk4OACeMMgt Cdpk2ar//g0UaT0w77grJjc= =kUjC -----END PGP SIGNATURE----- --pgp-sign-Multipart_Fri_Jun_16_10:08:52_2006-1-- From doclivingston@gmail.com Sun Jun 18 02:45:17 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 001613B014D for ; Sun, 18 Jun 2006 02:45:17 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27928-05 for ; Sun, 18 Jun 2006 02:45:15 -0400 (EDT) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.179]) by menubar.gnome.org (Postfix) with ESMTP id C709D3B0158 for ; Sun, 18 Jun 2006 02:45:14 -0400 (EDT) Received: by py-out-1112.google.com with SMTP id c39so971442pyd for ; Sat, 17 Jun 2006 23:43:58 -0700 (PDT) Received: by 10.35.89.10 with SMTP id r10mr6756008pyl; Sat, 17 Jun 2006 23:43:58 -0700 (PDT) Received: from alyrion.local ( [144.134.102.218]) by mx.gmail.com with ESMTP id k13sm2076296pyf.2006.06.17.23.43.55; Sat, 17 Jun 2006 23:43:57 -0700 (PDT) Subject: Rhythmbox 0.9.5 From: "James \"Doc\" Livingston" To: Rhythmbox-devel list , gnome-announce-list@gnome.org Content-Type: text/plain; charset=UTF-8 Date: Sun, 18 Jun 2006 16:43:53 +1000 Message-Id: <1150613033.6027.23.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.53 tagged_above=-999 required=2 tests=[AWL=0.070, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.53 X-Spam-Level: X-Mailman-Approved-At: Sun, 18 Jun 2006 10:56:33 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: rhythmbox-devel@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 06:45:17 -0000 G'day Everyone, On behalf of the Rhythmbox developers, I'm proud to announce the sixth release of the Rhythmbox 0.9 series, which includes a large number of fixes, improvements and new features. Notable new features include: - Improved plugin support, and several features converted to plugins - An album art viewing and download plugin - A song lyric viewing and download plugin - Ogg Vorbis tag editing [0] - Partial iPod write support [1] - Improved audio player and DAAP support - CD ripping and track transfer enabled by default - Updated documentation and many, many more improvements, bug fixes and new minor features. See below for more details. [0] requires a GStreamer plugin not yet in cvs, see bug 335635 [1] off by default, pass --enable-ipod-writing to enable. * What is Rhythmbox ? ===================== Rhythmbox is an integrated music management application, originally inspired by Apple's iTunes. It is free software, designed to work well under the GNOME Desktop, and based on the powerful GStreamer media framework. * What's changed in 0.9.5 ? =========================== * fix icon themability (Steve Frécinaux) * handle iPods that have been repartitioned (Christophe Fergeau: 325034) * allow ipod renaming, ejection, deletion and transfer (Christophe Fergeau) * make iradio handling work much better (Jonathan Matthew: 320336, 324402) * improve out-of-process metadata loader (Jonathan Matthew: 338062) * update documentation (Baptiste Mille-Mathias, ) * pluginise iPod and Generic players (Christophe Fergeau, Jonathan Matthew) * support saving playlists as M3U (Gavin Stewart: 316295) * remember browser visibility when changing sources (Alex Lancaster: 118862) * handle media unmounts better (Jonathan Matthew: 339023) * make entry types be a structure, and add support for extended data, and various method implementations (Christophe Fergeau, James Livingston) * album art view&download plugin (Alex Lancaster, James Livingston, Gareth Murphy, William Jon McCann, Martin Szulecki) * update the FSF's address (Gunnar Steinn Magnusson) * much improved Python bindings (James Livingston, Jonathan Matthew) * fix some translation issues (Nguyễn Thái Ngọc Duy, James Livingston: 339380, 343081) * improve startup time (James Livingston, Jonathan Matthew) * fix audioscrobbler submission, and allow viewing of info (Jonathan Matthew: 325848) * improve DBus interface (Jonathan Matthew, Tim Moloney) * allow transcoding during track transfer (Alessandro Decina: 322268) * cd burning fixes and improvements (William Jon McCann) * podcast feed parsing and download fixes (James Livingston: 339728) * turn the playback backend into a full GObject interface (James Livingston: 338667) * add more API documentation (Jonathan Mattjew) * add vorbis tag editing (James Livingston: 339878) * fix various threading insanities (Jonathan Matthew) * display "child libraries" with multiple library locations (James Livingston: 100552) * improve drag-and-drop from browsers (Jonathan Matthew: 327540) * support Motorola ROKR phones (Joe Barnett) * make query model limits saner (Janes Livingston) * source cleanup and API improvement (James Livingston, Jonathan Matthew) * improve status feedback for DAAP (Jonathan Matthew: 322020 and 338978) * memory improvement and leak fixed (James Livingston, Jonathan Matthew) * kill Bonobo support, require DBus, support DBus 0.3.0 (Jonathan Matthew: 339720) * add lyric download and view plugin (Jonathan Matthew: 319320) * add "add to playlist" menu (James Livingston: 323364) * allow changing of audio cd metadata (James Livingston) * improve DAAP handling (William Jon McCann: 342643) * update and write new unit tests (James Livingston) * group sources (Jonathan Matthew) * add new "rhythmbox-client" program (Jonathan Matthew: 340863, 155763) * assorted build fixes (Brian Cameron, Paul Drain, Elijah Newren, Hendrik Richter, Ryan P Skadberg, Götz Waschk, Pawel Worach, FreeBSD GNOME project, others) * HIG and UI improvements (Dennis Cranston, Baptiste Mille-Mathias) * many other bug fixed (Christophe Fergeau, Jaap A. Haitsma, James Livingston, Jonathan Matthew, Mikael Olenfalk, Roozbeh Pournader) Updated Translations -------------------- ca Jordi Mallach cs Miloslav Trmac de Hendrik Richter es Francisco Javier F. Serrador fi Ilkka Tuohela gl Ignacio Casal Quinteiro lt Žygimantas Beručka nb Øivind Hoel, Kjartan Maraas nl Vincent van Adrighem, Wouter Bolsterlee sv Fredrik Tuomas vi Clytie Siddall zh_CN Funda Wang * Where can I get it ? ====================== Source code: http://ftp.gnome.org/pub/GNOME/sources/rhythmbox/0.9/rhythmbox-0.9.5.tar.gz [MD5 sum: 3cbce0fd5ed948e13dabe7be7b9353e9] http://ftp.gnome.org/pub/GNOME/sources/rhythmbox/0.9/rhythmbox-0.9.5.tar.bz2 [MD5 sum: ff55e1db114321b7bdd6e21df1879367] Home Page: http://www.rhythmbox.org/ James "Doc" Livingston From mclasen@redhat.com Tue Jun 20 11:22:11 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3B32C3B043F; Tue, 20 Jun 2006 11:22:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22457-09; Tue, 20 Jun 2006 11:22:09 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 71CF13B00E7; Tue, 20 Jun 2006 11:22:09 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5KFLLnL004523; Tue, 20 Jun 2006 11:21:21 -0400 Received: from mail.boston.redhat.com (mail.boston.redhat.com [172.16.76.12]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5KFLLNA016479; Tue, 20 Jun 2006 11:21:21 -0400 Received: from golem.boston.redhat.com (golem.boston.redhat.com [172.16.80.24]) by mail.boston.redhat.com (8.12.8/8.12.8) with ESMTP id k5KFLKdH032719; Tue, 20 Jun 2006 11:21:20 -0400 Subject: GLib 2.11.4 released From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-list@gnome.org, gtk-app-devel-list@gnome.org Content-Type: text/plain Date: Tue, 20 Jun 2006 11:21:20 -0400 Message-Id: <1150816880.15532.58.camel@golem.boston.redhat.com> Mime-Version: 1.0 X-Mailer: Evolution 2.7.1 (2.7.1-1) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.543 tagged_above=-999 required=2 tests=[AWL=0.058, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.543 X-Spam-Level: X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2006 15:22:11 -0000 GLib 2.11.4 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.11/ http://ftp.gnome.org/pub/GNOME/sources/glib/2.11/ glib-2.11.4.tar.bz2 md5sum: 9d3a94baa4bfcd9a579b45eea6de3a8c glib-2.11.4.tar.gz md5sum: f7768bc7ed524c6b40cb87daccb6c2b2 This is a development release leading up to GLib 2.12. Notes: * This is unstable development release. While it has had a bit of testing, there are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GLib 2.10. If you have problems, you'll need to reinstall GLib 2.10. * GLib 2.12 will be source and binary compatible with the GLib 2.10.x series (for some caveats, see the README). At this point, the API additions in the 2.11.x series are finished. * Bugs should be reported to http://bugzilla.gnome.org. About GLib ========== GLib is the low-level core library that forms the basis for projects such as GTK+ and GNOME. It provides data structure handling for C, portability wrappers, and interfaces for such runtime functionality as an event loop, threads, dynamic loading, and an object system. More information about GLib is available at: http://www.gtk.org/ An installation guide for the GTK+ libraries, including GLib, can be found at: http://developer.gnome.org/doc/API/2.0/gtk/gtk-building.html Overview of Changes from GLib 2.11.3 to GLib 2.11.4 =================================================== * GBookmarkFile: - g_bookmark_file_remove_item returns a boolean * g_mkstemp accepts the XXXXXX in the middle of the template * Bugs fixed: 344868 g_key_file_to_data should separate groups * Updated translations (de,es,fr,gu,hi,ko,th) A list of all bugs fixed in this release can be found at: http://bugzilla.gnome.org/buglist.cgi?bug_id=344868 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Emmanuele Bassi, Christian Persch, Federico Mena Quintero Matthias Clasen June 20, 2006 From joeshaw@novell.com Mon Jun 19 16:10:21 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id ABD293B0D15 for ; Mon, 19 Jun 2006 16:10:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30318-02 for ; Mon, 19 Jun 2006 16:10:20 -0400 (EDT) Received: from peabody.ximian.com (peabody.ximian.com [130.57.169.10]) by menubar.gnome.org (Postfix) with ESMTP id C79993B084E for ; Mon, 19 Jun 2006 16:10:19 -0400 (EDT) Received: (qmail 29764 invoked from network); 19 Jun 2006 20:09:04 -0000 Received: from localhost (HELO posthaste.boston.ximian.com) (joe@127.0.0.1) by localhost with SMTP; 19 Jun 2006 20:09:04 -0000 Subject: ANNOUNCE: Beagle 0.2.7 From: Joe Shaw To: dashboard-hackers@gnome.org Content-Type: text/plain; charset=UTF-8 Date: Mon, 19 Jun 2006 16:08:58 -0400 Message-Id: <1150747738.21037.1.camel@posthaste.boston.ximian.com> Mime-Version: 1.0 X-Mailer: Evolution 2.6.0 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.362 tagged_above=-999 required=2 tests=[AWL=-0.194, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, TW_BG=0.077, TW_GT=0.077, TW_XD=0.077] X-Spam-Score: -2.362 X-Spam-Level: X-Mailman-Approved-At: Tue, 20 Jun 2006 11:54:51 -0400 Cc: gnome-announce-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jun 2006 20:10:21 -0000 Hi, I'm happy to announce the release of Beagle 0.2.7. This version fixes the dreaded "Lock obtain timed out" bug, includes a new SVG and marks the return of the CHM filter. It introduces a compressed text cache, so that the disk space needed to generate snippets is greatly reduced, and many more bug fixes. OUR MANY URLS ------------- To download the 0.2.7 tarball or learn more, visit the Beagle wiki at: http://www.beagle-project.org The latest gossip is available at: http://www.planetbeagle.org Nat Friedman made some cool movies that demonstrate Beagle in action: http://nat.org/demos We still talk about Beagle on the dashboard-hackers mailing list: http://mail.gnome.org/mailman/listinfo/dashboard-hackers Info on Beagle's participation in Google's Summer of Code can be found here: http://beagle-project.org/Summer_Of_Code WHAT IS BEAGLE? --------------- Beagle is a tool for indexing and searching your data. Beagle is improving rapidly on many fronts, and should work well enough for everyday use. The Beagle daemon transparently monitors your data and updates the index to reflect any changes. On an inotify-enabled system, these updates happen more-or-less in real time. So for example, * Files are immediately indexed when they are created, are re-indexed when they are modified, and are dropped from the index upon deletion. * E-mails are indexed upon arrival. * IM conversations are indexed as you chat, a line at a time. Beagle supports many different file formats including OpenOffice documents, Microsoft Word documents, PDFs, HTML files, and many image, audio and video formats. Beagle can extract information from your file system, Evolution and KMail mailboxes, Evolution calendars and addressbooks, Gaim and Kopete instant messenger conversations, several RSS aggregators, Tomboy notes, Konqueror browsing history, system documentation, and many others. Beagle also indexes tags on your photos from F-Spot and Digikam. Beagle also provides Firefox and Epiphany extensions that index web pages in real-time as the user visits them. Beagle uses the Lucene indexing system from the prodigious Doug Cutting. Beagle includes a GTK-based graphical tool for searching the index that the daemon creates. This application doesn't query the index directly; it passes the search terms to the daemon and the daemon sends any matches back. The user interface then renders the results and allows you to perform useful actions on the matching objects. Indexing your data requires a fair amount of computing power, but the Beagle daemon tries to be as unobtrusive as possible. It contains a scheduler that works to prioritize tasks and control CPU usage, based on whether or not you are actively using your workstation. DEPENDENCY HECK --------------- Beagle requires: * Mono 1.1.13.5 or better, along with the full Mono stack * gtk-sharp 2.3.90 or better * GMime 2.1.19 * Libexif 0.5.7 or better * shared-mime-info For the best possible Beagle experience, you should also have: * GMime 2.2.1 * Evolution-sharp 0.10.2 or 0.11.1 * libgsf 1.12.1 and gsf-sharp 0.6 * Either wv 1.2.0, or a *patched* wv 1.0.3 --- the patch is available from http://users.avafan.com/~fredrik/beagle/wv-libole2-readonly.patch * An inotify-enabled kernel. Inotify is in the mainline Linux kernel as of 2.6.13. And other optional dependencies: http://beagle-project.org/Optional_Prerequisites CHANGES SINCE 0.2.6 ------------------- Daemon/Infrastructure: * Fix bugs in the query parser by using a regular expression-based system. (Max Wiehle, Keving Kubasik) * Compress items in the text cache, greatly reducing disk usage. (Kevin, Lukas Lipka) * Fix a bug in which the sqlite database could get cluttered with older files. (Debajyoti Bera, Joe Shaw) * Again write out the PID of the locking process, or else we cannot effectively detect dangling locks. (Joe) * If we see a lockfile with no PID, assume it's a dangling lock. (Joe) * No longer handle SIGQUIT to shut down the daemon; it's used very valuably by Mono for debugging purposes. (Joe) * Add a BEAGLE_DISABLE_XATTR environment variable to disable extended attribute support for testing purposes. (Joe) * Only print out the inotify "Maximum watch limit hit" warning once. (Joe) * Convert HTML entities when creating snippets. (Lukas, Kevin) * Patch our xdgmime installation to not crash if the data is reloaded while it is processing it. (Joe) * Fix an issue with newer Mono installations where the index helper process would become a zombie after it finished and was never cleaned up. (Joe) * Fix a bug in which properties weren't being sorted and couldn't be found. (Max, Kevin, Bera) * Work around a Mono bug so that dangling symlinks in ~/.beagle/Log are cleaned up at startup. (Joe) Backends: * Generate mail delete events using the indexable generator rather than creating many individual indexables by hand, which could flood the scheduler and slow the system down. (Joe) * Check for exceptions when calling GetChanges() on Evolution calendars and addressbooks. (Joe) Filters: * Added an SVG filter. (Alexander Macdonald) * Re-enable the CHM filter. (Miguel Cabrera) * Close the OpenOffice zip file when we're finished. (Joe) * Index additional info from ebuild files, including installation info and desktop file entries. (Pat Double) * Add duration and bitrate properties to the music filter. (Lukas) * Add a filter for Boo. (Paul Betts) * Don't throw EncodingFoundException in the HTML parser unless asked to. (Bera) * Add application/x-php as a valid mime type for the PHP filter. (Kevin) * Make sure the mime type is lower case before matching on it. (Kevin, Joe) UI: * Catch exceptions if we can't load an application's icons. (Joe, Pierre Poissinger) * Include the date in note tiles. (Lukas) * Only display the first line of a calendar item's description. (Dan Winship) * Use mailto URIs rather than invoking Evolution directly when possible. (Lukas) * Use desktop-launch to open file tiles when applicable. (Lukas) * Make the text in the details pane selectable. (Lukas) * If the calendar's description is empty, still display the item. (Lukas) * Simplify the code for the details pane significantly. (Lukas) * Scale down very large mime icons for display. (Lukas) * Enable the "Open With" menu if GTK+ 2.8 is available at build-time. (Kevin) * Force the window to get wider if the tiles get wider rather than creating a horizontal scrollbar. (Dan) Tools: * Add --enable-deletion to beagle-build-index, which removes deleted files from the index. (Bera) * Add $sharedir/gtk-doc/html and $sharedir/gnome/html to the documentation crawl rules. (Joe) * Fix a typo in the beagled manpage. (Kevin Lamontagne) * Fix bugs dealing with shell quoting in beagle-query. (Max) Translations: * Updated Brazilian Portuguese translation. (Raphael Higino) * Updated Czech translation. (Jakub Friedl) * Updated Dutch translation. (Vincent van Adrighem) * Updated Finnish translation. (Ilkka Tuohela) * Updated Galician translation. (Ignacio Casal Quinteiro) * Updated Greek translation. (Kostas Papadimas) * Updated Japanese translation. (Takeshi Aihana) * Updated Norwegian bokml translation. (ivind Hoel) * Updated Simplified Chinese translation. (Funda Wang) * Updated Spanish translation. (Francisco Javier F. Serrador) * Updated Swedish translation. (Daniel Nylander) * Updated Vietnamese translation. (Clytie Siddall) Everything Else: * Make the Firefox extension work with Bon Echo (2.0 Alpha). (Joe) * Check for mmap() in configure.in, to optimize xdgmime. (Joe) * Add a pkg-config file for the UiUtil.dll assembly. (Luis Medinas) * Getting Dashboard building again. (Luis) KNOWN ISSUES ------------ We still use a bit too much memory. We are working on it. Certain extremely large documents can temporarily degrade your system's performance while they are being indexed. The file system is now much more robust than ever before. However, there are still race conditions that can occur with certain combinations of file system operations. In some cases it might be necessary to stop and restart the daemon. Certain files can crash the underlying libraries Beagle uses to extract metadata. This has been observed in MS Word and JPG files. If you encounter such a crash, please report it to the upstream developer of those libraries (wv1 and libexif for the above, respectively). At this point in development, we cannot commit to stable APIs or file formats. You will almost certainly need to delete your indexes and start again at some point in the future. From s.marechal@jejik.com Mon Jun 19 18:32:09 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 62F693B080B for ; Mon, 19 Jun 2006 18:32:09 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04849-10 for ; Mon, 19 Jun 2006 18:32:04 -0400 (EDT) Received: from smtp-vbr7.xs4all.nl (smtp-vbr7.xs4all.nl [194.109.24.27]) by menubar.gnome.org (Postfix) with ESMTP id 2E4AA3B035F for ; Mon, 19 Jun 2006 18:32:04 -0400 (EDT) Received: from [192.168.1.2] (a82-92-145-91.adsl.xs4all.nl [82.92.145.91]) (authenticated bits=0) by smtp-vbr7.xs4all.nl (8.13.6/8.13.6) with ESMTP id k5JMUN7U092865; Tue, 20 Jun 2006 00:30:24 +0200 (CEST) (envelope-from s.marechal@jejik.com) Message-ID: <449725B0.9050004@jejik.com> Date: Tue, 20 Jun 2006 00:31:12 +0200 From: Sander Marechal User-Agent: Thunderbird 1.5.0.4 (X11/20060615) MIME-Version: 1.0 To: hearts@lists.jejik.com, gnome-announce-list@gnome.org, news@linuxgames.com, webmaster@linuxlinks.com Subject: Gnome Hearts 0.1.1 Release Announcement Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by XS4ALL Virus Scanner X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.557 tagged_above=-999 required=2 tests=[AWL=0.042, BAYES_00=-2.599] X-Spam-Score: -2.557 X-Spam-Level: X-Mailman-Approved-At: Tue, 20 Jun 2006 11:54:51 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: hearts@lists.jejik.com List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jun 2006 22:32:09 -0000 Gnome Hearts 0.1.1 Release Announcement --------------------------------------- Our recently released Gnome Hearts 0.1 suffered from a build problem on distributions that shipped the Lua libraries as liblua instead of liblua50, most notably on the new Suse Linux. Gnome Hearts 0.1.1 fixes this issue, thanks to a patch sent in by a gnomefiles.org contributor. You can download the new tarball from our download section at: http://www.gnome-hearts.org/download/ About Gnome Hearts ------------------ Gnome Hearts is an implementation of the classic hearts card game for the GNOME desktop, featuring configurable rule sets and editable computer opponents to satisfy widely diverging playing styles. Gnome Hearts is Free Software, released under the GNU General Public License and should be able to run on any computer that can run the GNOME desktop. Enjoy, -- Sander Marechal http://www.gnome-hearts.org From peter@peterjohanson.com Tue Jun 20 01:48:23 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3398E3B0E71 for ; Tue, 20 Jun 2006 01:48:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26948-04 for ; Tue, 20 Jun 2006 01:48:21 -0400 (EDT) Received: from cubesearch.com (unknown [207.115.69.50]) by menubar.gnome.org (Postfix) with ESMTP id 7B83E3B05AF for ; Tue, 20 Jun 2006 01:48:21 -0400 (EDT) Received: by cubesearch.com (Postfix, from userid 522) id 8BF0D10E089; Mon, 19 Jun 2006 22:47:22 -0700 (PDT) Date: Mon, 19 Jun 2006 22:47:22 -0700 From: Peter Johanson To: gnome-announce-list@gnome.org Subject: [RELEASE] muine-0.8.5 Message-ID: <20060620054722.GS9163@butchest.cubesearch.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.11 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.55 tagged_above=-999 required=2 tests=[AWL=0.050, BAYES_00=-2.599, SPF_HELO_PASS=-0.001] X-Spam-Score: -2.55 X-Spam-Level: X-Mailman-Approved-At: Tue, 20 Jun 2006 11:54:51 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2006 05:48:23 -0000 Muine is a music player using new UI ideas. The goal is to create a player that eschews the iTunes model in favor of an easier and more comfortable interface. 0.8.5 ===== This release primarily updates Muine to use Gstreamer 0.10 (0.8 is also supported at configure time). Lots of bugfixes have also gone into this release. Details ======= - Gstreamer 0.10 support (configurable, 0.8 is still supported) [Iain, Peter Johanson] - Small shortcut/mnemonics tweaks [Sebastian Heinlein, Wouter Bolsterlee, Peter Johanson] - Fix bug with tray icon not re-appearing after a gnome-panel crash [Ed Catmur, Peter Johanson] - Handle large id3 tags properly [Jorn Baayen] - Properly raise the window when unhiding [Ryan Lortie] - Various build and bugfixes [Peter Johanson] New translations: - Punjabi [Amanpreet Singh Alam] - Thai [Isriya Paireepairit] Updated Translations: - Basque [Inaki Larranaga] - Czech [Miloslav Trmac] - Dutch [Wouter Bolsterlee] - Estonian [Priit Laes] - Finnish [Ilkka Tuohela] - German [Frank Arnold, Hendrik Richter] - Japanese [Takeshi AIHANA] - Spanish [Francisco Javier F. Serrador] - Swedish [Daniel Nylander] - Vietnamese [Clytie Siddall] Download ======== http://www.muine-player.org/wiki/Download Cheers, -pete From olav@bkor.dhs.org Wed Jun 21 16:12:51 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 436D73B0191; Wed, 21 Jun 2006 16:12:51 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02952-03; Wed, 21 Jun 2006 16:12:50 -0400 (EDT) Received: from amsfep20-int.chello.nl (amsfep17-int.chello.nl [213.46.243.15]) by menubar.gnome.org (Postfix) with ESMTP id 551023B0235; Wed, 21 Jun 2006 16:12:49 -0400 (EDT) Received: from bkor.dhs.org ([24.132.164.94]) by amsfep20-int.chello.nl (InterMail vM.6.01.04.04 201-2131-118-104-20050224) with ESMTP id <20060621201243.WMNK3918.amsfep20-int.chello.nl@bkor.dhs.org>; Wed, 21 Jun 2006 22:12:43 +0200 Received: by bkor.dhs.org (Postfix, from userid 501) id A0A54626877; Wed, 21 Jun 2006 22:12:42 +0200 (CEST) Date: Wed, 21 Jun 2006 22:12:42 +0200 From: Olav Vitters To: gnome-announce-list@gnome.org Subject: ANNOUNCE: gnome-blog 0.9.1 released Message-ID: <20060621201242.GI1266@bkor.dhs.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.5.11 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.26 tagged_above=-999 required=2 tests=[AWL=-0.150, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, FORGED_RCVD_HELO=0.135, TW_GT=0.077, TW_SX=0.077] X-Spam-Score: -2.26 X-Spam-Level: Cc: seth@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 20:12:51 -0000 gnome-blog 0.9.1 ================ Been a long time since the last version was released. With the approval of Seth Nickell, I am releasing a newer version. homepage: http://www.gnome.org/~seth/gnome-blog/ (I will probably soon move this to http://www.gnome.org/projects/gnome-blog/) download: http://download.gnome.org/sources/gnome-blog/0.9/ Features ======== * Clean interface doesn't get in the way of what you're writing * WYSIWYG styled text support * Entries can be written gradually over the course of a day, popping gnome blog open and closed as you have thoughts to jot down and then posting at the end of the day * Operates as a panel object/applet or a standalone application * Supports many different kinds of blogs * Spell checking * Drag and drop images into your blog entry (if your blog supports it) Supported Blogs =============== * Blogger.com / Blogspot.com * Advogato.org * Movable Type * WordPress * LiveJournal.com * Pyblosxom * Any other blog using bloggerAPI or MetaWeblog Fixes ===== * Make add link dialog stay near and above the blog window (Tommi Komulainen) * Do not crash when gtkspell is installed but lack a dictionary (Jan Alonzo) * Ensure window looks sane when resized (Olav Vitters) * Ensure blog applet window receives focus with newer metacity versions and make it stay on top (Olav Vitters) * Correctly position blog window beside the applet when using a vertical panel (Olav Vitters) * Make sure CTRL-B (bold), CTRL-I (italic) work when using the applet (Olav Vitters) * Fix blogs.gnome.org XML-RPC URL (Olav Vitters) Translations ============ * Mətin Əmirov (az) * Vladimir Petkov (bg) * Aleix Badia i Bosch (ca) * Miloslav Trmac (cs) * Hendrik Richter (de) * Adam Weinberger (en_CA) * David Lodge (en_GB) * Francisco Javier F. Serrador (es) * Priit Laes (et) * Ilkka Tuohela (fi) * Christophe Merlet (RedFox) (fr) * Pedro Silva (gl) * Robert Sedak (hr) * Gabor Kelemen (hu) * Francesco Gigli (it) * Takeshi AIHANA (ja) * Hasbullah Bin Pit (ms) * Kjartan Maraas (nb) * Jyotshna Shrestha (ne) * Taco Witte (nl) * Arkadiusz Lipiec (pl) * Afonso Celso Medina (pt_BR) * Duarte Loreto (pt) * Steve Murphy (rw) * Laurent Dhima (sq) * Danilo Šegan (sr@Latn) * Данило Шеган (sr) * Daniel Nylander (sv) * Maxim Dziumanenko (uk) * Clytie Siddall (vi) * storm (zh_CN) * Abel Cheung (zh_TW) -- Regards, Olav From mclasen@redhat.com Wed Jun 21 23:10:41 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AA4213B0172; Wed, 21 Jun 2006 23:10:41 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23030-07; Wed, 21 Jun 2006 23:10:39 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 63BA23B0008; Wed, 21 Jun 2006 23:10:39 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5M3AclX021506; Wed, 21 Jun 2006 23:10:38 -0400 Received: from lacrosse.corp.redhat.com (lacrosse.corp.redhat.com [172.16.52.154]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5M3AcnM019751; Wed, 21 Jun 2006 23:10:38 -0400 Received: from [172.16.83.158] (vpn83-158.boston.redhat.com [172.16.83.158]) by lacrosse.corp.redhat.com (8.12.11.20060308/8.11.6) with ESMTP id k5M3AciB004961; Wed, 21 Jun 2006 23:10:38 -0400 Subject: GTK+ 2.9.4 released From: Matthias Clasen To: gnome-announce-list@gnome.org, gtk-devel-list@gnome.org, gtk-app-devel-list@gnome.org, gtk-list@gnome.org Content-Type: text/plain Organization: Red Hat Date: Wed, 21 Jun 2006 23:12:41 -0400 Message-Id: <1150945961.4457.2.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.7.3 (2.7.3-2) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.507 tagged_above=-999 required=2 tests=[AWL=0.017, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_GT=0.077] X-Spam-Score: -2.507 X-Spam-Level: X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: gnome-hackers@gnome.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 03:10:41 -0000 GTK+ 2.9.4 is now available for download at: http://ftp.gnome.org/pub/gnome/sources/gtk+/2.9/ gtk+-2.9.4.tar.bz2 md5sum: c06cf2cfa66485600d90789c9e58f27c gtk+-2.9.4.tar.gz md5sum: e3fefedc7f1a89b66c71c9967168a857 This is a development release leading up to GTK+ 2.10. Notes: * This is unstable development release. There are certainly plenty of bugs remaining to be found. This release should not be used in production. * Installing this version will overwrite your existing copy of GTK+ 2.8. If you have problems, you'll need to reinstall GTK+ 2.8. * GTK+ 2.10 will be source compatible with the GTK+ 2.8 series; the new API additions in GTK+ 2.9.0 are finalized by now. * The ABI version has been bumped from 2.4.0 to 2.10.0, since the filechooser backend interface has been changed. Third-party filechooser backends need to be ported to the new interface. Other third-party modules (input methods, image loaders, etc) just need to be reinstalled in the proper location for GTK+ to find them. * Remaining issues for GTK+ 2.10 can be found with following bugzilla query: http://bugzilla.gnome.org/buglist.cgi?product=gtk%2b&target_milestone=2.10+API+Freeze&target_milestone=2.10+Freeze&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED * Bugs should be reported to http://bugzilla.gnome.org. What is GTK+ ============ 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.4/gtk/gtk-building.html Common questions: http://developer.gnome.org/doc/API/2.4/gtk/gtk-question-index.html http://www.gtk.org/faq/ Overview of Changes from GTK+ 2.9.3 to 2.9.4 ============================================ * GtkPrintOperation: - UI improvements in the print dialog - Make printing work without a display connection - Replace "Print to PDF" by "Print to file" that can generate PDF or PostScript - Add a function to the low-level API to enumerate all printers * GtkNotebook tab DND has been improved * GtkProgressbar supports text in activity mode * GtkLabel allows to set the wrap mode * GtkStatusIcon supports transparency * Bugs fixed: 344850 Dragging a GtkTreeViewColumn segfaults when using certain GtkTreeViewColumnDropFunc 342458 Stock menu items without icons are broken in recent GTK+ releases. 335873 notebook DND + popup windows 337882 gtk_progress_bar_set_text() does nothing in activity mode 339456 unix print dialogue help button bug 339702 Make sure printing works without a display 341571 tabs too easily reordered 344074 New Feature: get printer list, and get default print 344743 gtk_targets_include_text() should initialize atoms 344838 Allow func to be NULL in gtk_tree_view_set_search_position_func 344891 GtkPrintOperationPreview signal defs correction 345008 Need updated cairo req 345093 print preview temp file issues 345107 Memory leak in gtk_entry_completion_finalize: User data not freed 345194 gdk_window_set_functions() docs need to be updated 345456 grid-lines property is wrongly registered and get/set. 314278 strings in gtk-update-icon-cache are not marked for translation 344707 size group with widgets in hidden container 344897 Entry completion model NULL handling should be documented 345038 gtk_print_job_set_status' status 345106 dialog button box spacings 345176 GtkIconView doc about drag and drop 345275 doc imporovements for gtk_window_move 345320 Two very similiar strings should be made equal 345321 Add meaning of "shortcut" as translator comment 320034 transparency gtkstatusicon 339592 Add print-to-postscript 344867 custom paper file could use keyfile * Updated translations (cs,de,es,fr,gl,gu,hi,ko,ta,th) A list of all bugs fixed in this release can be found at http://bugzilla.gnome.org/buglist.cgi?bug_id=344838,344743,344867,344891,345008,341571,345038,337882,345093,344707,339456,345107,345275,339702,344074,345320,345321,344897,314278,320034,344850,345194,345176,345106,335873,342458,339592,345456 Thanks to everybody who has contributed to this release, in the form of bug reports or patches: Christian Persch, John Finlay, Federico Mena Quintero, Michael Emmel, Marko Anastasov, Bastien Nocera, Carlos Garnacho, Yevgen Muntyan, Tommi Komulainen, Tim Janik, Christian Weiske, Behdad Esfahbod, Alexander Larsson, Felipe Heidrich, Hendrik Richter, Claudio Saavedra, Dan Winship, Callum McKenzie, John Palmieri, Murray Cumming, Kristian Rietveld June 21, 2006 Matthias Clasen From cass@skynet.be Wed Jun 21 10:17:16 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9D8BD3B0FB7 for ; Wed, 21 Jun 2006 10:17:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11755-08 for ; Wed, 21 Jun 2006 10:17:15 -0400 (EDT) Received: from dorado.vub.ac.be (mailhost.vub.ac.be [134.184.129.10]) by menubar.gnome.org (Postfix) with ESMTP id D3CD03B0F77 for ; Wed, 21 Jun 2006 10:17:14 -0400 (EDT) Received: from mach.vub.ac.be (maxi.vub.ac.be [134.184.129.8]) by dorado.vub.ac.be (Postfix) with ESMTP id 4B484D7 for ; Wed, 21 Jun 2006 16:17:02 +0200 (CEST) Received: by mach.vub.ac.be (Postfix, from userid 21099) id 274998D01; Wed, 21 Jun 2006 16:17:02 +0200 (CEST) Received: from cass-lpt.ulb.ac.be (f1-pc174.ulb.ac.be [164.15.24.174]) by mach.vub.ac.be (Postfix) with ESMTP id 6C1178D24 for ; Wed, 21 Jun 2006 16:17:01 +0200 (CEST) Subject: XChat-GNOME 0.12 From: Guillaume Desmottes To: gnome-announce-list@gnome.org Content-Type: text/plain; charset=UTF-8 Date: Wed, 21 Jun 2006 16:16:46 +0200 Message-Id: <1150899407.18129.0.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.496 tagged_above=-999 required=2 tests=[AWL=0.026, BAYES_00=-2.599, TW_JH=0.077] X-Spam-Score: -2.496 X-Spam-Level: X-Mailman-Approved-At: Thu, 22 Jun 2006 09:00:41 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 14:17:16 -0000 XChat-GNOME 0.12 “All roads lead to Sean Connery” is now available. * What is it ? ============== XChat-GNOME is a new frontend to the popular X-Chat IRC client which is designed with the user interface foremost in mind. More informations can be found at: http://xchat-gnome.navi.cx/ * What's changed ? ================== - A new sheme for theme-based foreground and backgrond colors, with automatic palette optimization for mIRC color codes. - Remove redundant nicknames (with a gconf key to re-enable them) - Show a whois tooltip on users in the conversation panel - Display a tooltip with the description of plugins - You can now build XChat-GNOME HEAD using jhbuild (using gnome-2.16 modulesets) - A large number of bug fixes and smaller improvements - Updated translations * Contributors to this release ============================== David Trowbridge, Guillaume Desmottes, Christian Persch, Przemyslaw Grzegorczyk, Gathy Grégory, Isak Savo, Steve Frécinaux, Jeremy Nickurak, Dan Kuester, Brian Pepple * Where can I get it ? ====================== http://releases.navi.cx/xchat-gnome/xchat-gnome-0.12.tar.gz http://releases.navi.cx/xchat-gnome/xchat-gnome-0.12.tar.bz2 -- Guillaume Desmottes Jabber GPG 1024D/711E31B1 | 1B5A 1BA8 11AA F0F1 2169 E28A AC55 8671 711E 31B1 From murrayc@murrayc.com Tue Jun 20 13:04:27 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BEAFD3B05E3; Tue, 20 Jun 2006 13:04:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30785-01; Tue, 20 Jun 2006 13:04:23 -0400 (EDT) Received: from swarthymail-a4.dreamhost.com (sd-green-bigip-60.dreamhost.com [208.97.132.60]) by menubar.gnome.org (Postfix) with ESMTP id 7AB3D3B04F0; Tue, 20 Jun 2006 13:04:23 -0400 (EDT) Received: from noname (p5497DB9C.dip.t-dialin.net [84.151.219.156]) by swarthymail-a4.dreamhost.com (Postfix) with ESMTP id AF950129A91; Tue, 20 Jun 2006 10:03:26 -0700 (PDT) Subject: ANNOUNCE: gtkmm 2.9.5 From: Murray Cumming To: gnome-announce , gtkmm-list Content-Type: text/plain Date: Tue, 20 Jun 2006 19:03:22 +0200 Message-Id: <1150823002.6261.21.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.404 tagged_above=-999 required=2 tests=[AWL=0.041, BAYES_00=-2.599, TW_GT=0.077, TW_TK=0.077] X-Spam-Score: -2.404 X-Spam-Level: X-Mailman-Approved-At: Thu, 22 Jun 2006 09:02:35 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2006 17:04:28 -0000 *** gtkmm 2.9/2.10: gtkmm 2.9 wraps new API in GTK+ 2.9, and is API/ABI-compatibile with gtkmm 2.8, 2.6 and 2.4. It is a version of the gtkmm-2.4 API. This will become the API-stable gtkmm 2.10, wrapping GTK+ 2.10. gtkmm stays in-sync with GTK+ by following the official GNOME release schedule: http://www.gnome.org/start/unstable/ Bindings for the rest of the GNOME Platform are also available, and are also API-stable. http://www.gtkmm.org *** Changes gtkmm 2.9.5: Gtk: * Assistant: Added update_buttons_state(). * Button: Added get/set_image_position(). * Clipboard: Added request_rich_text(), wait_for_rich_text(), and wait_rich_text_is_available(). * Entry: Added get/set_inner_border(). * Notebook: Added set_group_id(), get_group_id(), get_tab_reorderable(), set_tab_reorderable(), get_tab_detachable(), set_tab_detachable(). * PrintContext: Added set_cairo_context(). * Printoperation: - run(): Added PrintOperationAction parameter. - Removed set_show_dialog(), set_pdf_target(), set_track_print_status(), run_async(). - Added set_export_filename(), set_track_print_status(), set_show_progress(), set_allow_async(), set_custom_tab_label(). * Fixed warnings (Elijah Newren, Jonathon Jongsma) Pango: * Context: Added get_matrix(). * Font: Added describe_with_absolute_size(), get_font_map(). * FontDescription: Added set_absolute_size(), get_size_is_absolute(). * Layout: Added get_font_description(), index_to_line_x(). * Renderer: Added get_matrix(). *** Download http://www.gtkmm.org/download.shtml You will need libsigc++ 2.0, available here: https://sourceforge.net/project/showfiles.php?group_id=1970 *** Development There is active discussion on the mailing list: http://www.gtkmm.org/mailinglist.shtml and in the #c++ channel on irc.gnome.org -- Murray Cumming murray@usa.net www.murrayc.com From murrayc@murrayc.com Thu Jun 22 17:21:32 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 53AA83B083F; Thu, 22 Jun 2006 17:21:32 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27489-07; Thu, 22 Jun 2006 17:21:31 -0400 (EDT) Received: from swarthymail-a3.dreamhost.com (sd-green-bigip-62.dreamhost.com [208.97.132.62]) by menubar.gnome.org (Postfix) with ESMTP id 713DB3B0823; Thu, 22 Jun 2006 17:21:26 -0400 (EDT) Received: from noname (p5497EA12.dip.t-dialin.net [84.151.234.18]) by swarthymail-a3.dreamhost.com (Postfix) with ESMTP id 13D217F03D; Thu, 22 Jun 2006 14:21:24 -0700 (PDT) Subject: ANNOUNCE: gtkmm 2.9.6 From: Murray Cumming To: gnome-announce , gtkmm-list Content-Type: text/plain Date: Thu, 22 Jun 2006 23:21:22 +0200 Message-Id: <1151011282.5804.37.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.4 tagged_above=-999 required=2 tests=[AWL=0.045, BAYES_00=-2.599, TW_GT=0.077, TW_TK=0.077] X-Spam-Score: -2.4 X-Spam-Level: X-Mailman-Approved-At: Thu, 22 Jun 2006 19:51:58 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 21:21:32 -0000 *** gtkmm 2.9/2.10: gtkmm 2.9 wraps new API in GTK+ 2.9, and is API/ABI-compatibile with gtkmm 2.8, 2.6 and 2.4. It is a version of the gtkmm-2.4 API. This will become the API-stable gtkmm 2.10, wrapping GTK+ 2.10. gtkmm stays in-sync with GTK+ by following the official GNOME release schedule: http://www.gnome.org/start/unstable/ Bindings for the rest of the GNOME Platform are also available, and are also API-stable. http://www.gtkmm.org *** Changes gtkmm 2.9.6: Gtk: * Label: Added get/set_line_wrap_mode() and property. * MenuShell: Added get/set_take_focus() and property. * MessageDialog: Added set_image() and property. * StatusIcon: Added get_geometry(). * TreeView: Added get/set_rubber_banding(), get/set_grid_lines(), get/set_enable_tree_lines(). Added properties for show-expanders, level-indentation, rubber-banding, enable-grid-lines, and enable-tree-lines. (Murray Cumming) * PrintJob: send_job(): No longer throws an exception. * PrintUnixDialog: Added add_custom_tab() overload that takes a ustring. * Printer: Added get_job_count(), and enumerate_printers(), and others. * Printsettings: - Put the standard settings in a member class so they can be used as Gtk::PrintSettings::Keys::SOMETHING. - Remove get/set_print_to_file(). * PrintOperation: Added a version of run() without the Window parameter. * PrintOperationPreview: New class. (Most printing stuff: Marko Anastasov) *** Download http://www.gtkmm.org/download.shtml You will need libsigc++ 2.0, available here: https://sourceforge.net/project/showfiles.php?group_id=1970 *** Development There is active discussion on the mailing list: http://www.gtkmm.org/mailinglist.shtml and in the #c++ channel on irc.gnome.org -- Murray Cumming murray@usa.net www.murrayc.com From bryce@bryceharrington.org Sat Jun 24 01:30:28 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 157CC3B0150 for ; Sat, 24 Jun 2006 01:30:28 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25007-03 for ; Sat, 24 Jun 2006 01:30:24 -0400 (EDT) Received: from dc2-web15.assortedinternet.com (dc2-web15.assortedinternet.com [66.36.233.162]) by menubar.gnome.org (Postfix) with ESMTP id 701A03B0132 for ; Sat, 24 Jun 2006 01:30:24 -0400 (EDT) Received: from c-24-20-224-228.hsd1.or.comcast.net ([24.20.224.228] helo=localhost) by dc2-web15.assortedinternet.com with esmtpa (Exim 4.52) id 1Fu0in-0003sK-Oi for gnome-announce-list@gnome.org; Sat, 24 Jun 2006 01:30:18 -0400 Date: Fri, 23 Jun 2006 22:28:53 -0700 From: Bryce Harrington To: gnome-announce-list@gnome.org Subject: Inkscape Announces 0.44 Release :: http://www.inkscape.org Message-ID: <20060624052853.GE23238@bryceharrington.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.11 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - dc2-web15.assortedinternet.com X-AntiAbuse: Original Domain - gnome.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - bryceharrington.org X-Source: X-Source-Args: X-Source-Dir: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.597 tagged_above=-999 required=2 tests=[AWL=0.002, BAYES_00=-2.599] X-Spam-Score: -2.597 X-Spam-Level: X-Mailman-Approved-At: Sat, 24 Jun 2006 06:24:44 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Jun 2006 05:30:28 -0000 The Inkscape community today officially released the latest version of its vector graphic drawing software. Inkscape 0.44 adds many new features, is faster and more usable, better supports SVG, is translated into more languages (17 on last count), and adds a lot of polish and refinement. Major new features include Layers dialog, support for clipping and masking, improved PDF export with transparency, configurable keyboard shortcuts, innovative "node sculpting" capability in Node tool, and the Outline mode. Significant gains are achieved in performance, especially in screen rendering and Node tool. Noticeable user interface changes include docked color swatches, interactive style indicator in the statusbar, a redesigned preferences dialog, a text toolbar, and new icons. Our SVG compliance has also taken a step forward, with the added support for the tag and ICC color profiles for images. This release also includes hundreds of smaller features, usability enhancements and bug fixes. For several releases, a collection of extension effects was shipped with Inkscape, but the Effects menu to access them was turned off by default. With this release, it has become mature enough, with effects working out of the box on all platforms, so this menu is enabled. We'd like to thank Google for their sponsorship of five students to work, during the summer of 2006, on several Inkscape development efforts: SVG Filters, Inkboard protocol, PDF export with Cairo, and memory optimization. Download Linux, Windows, and Mac OS X packages: http://sourceforge.net/project/showfiles.php?group_id=93438 For many more details, see the complete Release Notes for 0.44: http://wiki.inkscape.org/wiki/index.php/Release_Notes Community submitted screenshots: http://www.inkscape.org/screenshots/ ===About Inkscape=== Inkscape is an open source drawing tool that uses the World Wide Web Consortium's ([[W3C]]) scalable vector graphics format (SVG). Some supported SVG features include basic shapes, paths, text, markers, clones, alpha blending, transforms, gradients, and grouping. In addition, Inkscape supports Creative Commons' metadata, node-editing, layers, complex path operations, text-on-path, text-in-shape, and SVG XML editing. It can also import EPS, PostScript, and most bitmap formats, and exports PNG, PS, PDF and various vector formats. Inkscape's main motivation is to provide the Open Source community with a fully [[W3C]] compliant XML, SVG, and CSS2 drawing tool. Additional work includes conversion of the codebase from C/Gtk to C++/Gtkmm, emphasizing a lightweight core with powerful features added through an extension mechanism, and maintaining a friendly, open, community-oriented development process. From rejon@freedesktop.org Sun Jun 25 10:52:07 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C309D3B009A for ; Sun, 25 Jun 2006 10:52:07 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18260-01 for ; Sun, 25 Jun 2006 10:52:06 -0400 (EDT) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.208.82]) by menubar.gnome.org (Postfix) with ESMTP id 4BFB03B008F for ; Sun, 25 Jun 2006 10:52:06 -0400 (EDT) Received: by gabe.freedesktop.org (Postfix, from userid 2695) id 5EDA79ED2A; Sun, 25 Jun 2006 07:51:01 -0700 (PDT) To: gnome-announce-list@gnome.org From: Jon Phillips Subject: Inkscape Announces 0.44 Release :: http://www.inkscape.org Content-Type: text/plain Message-Id: <20060625145101.5EDA79ED2A@gabe.freedesktop.org> Date: Sun, 25 Jun 2006 07:51:01 -0700 (PDT) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.599 tagged_above=-999 required=2 tests=[BAYES_00=-2.599] X-Spam-Score: -2.599 X-Spam-Level: X-Mailman-Approved-At: Mon, 26 Jun 2006 03:57:39 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Jun 2006 14:52:07 -0000 Inkscape Announces 0.44 Release :: http://www.inkscape.org The Inkscape community today officially released the latest version of its vector graphic drawing software. Inkscape 0.44 adds many new features, is faster and more usable, better supports SVG, is translated into more languages (17 on last count), and adds a lot of polish and refinement. Major new features include Layers dialog, support for clipping and masking, improved PDF export with transparency, configurable keyboard shortcuts, innovative "node sculpting" capability in Node tool, and the Outline mode. Significant gains are achieved in performance, especially in screen rendering and Node tool. Noticeable user interface changes include docked color swatches, interactive style indicator in the statusbar, a redesigned preferences dialog, a text toolbar, and new icons. Our SVG compliance has also taken a step forward, with the added support for the tag and ICC color profiles for images. This release also includes hundreds of smaller features, usability enhancements and bug fixes. For several releases, a collection of extension effects was shipped with Inkscape, but the Effects menu to access them was turned off by default. With this release, it has become mature enough, with effects working out of the box on all platforms, so this menu is enabled. The Inkscape developer community would like to thank Google for their sponsorship of five students to work, during the summer of 2006, on several Inkscape development efforts: SVG Filters, Inkboard protocol, PDF export with Cairo, and memory optimization. Download Linux, Windows, and Mac OS X packages: http://sourceforge.net/project/showfiles.php?group_id=93438 For many more details, see the complete Release Notes for 0.44: http://wiki.inkscape.org/wiki/index.php/Release_Notes Community submitted screenshots: http://www.inkscape.org/screenshots/ About Inkscape Inkscape is an open source drawing tool that uses the World Wide Web Consortium's ([[W3C]]) scalable vector graphics format (SVG). Some supported SVG features include basic shapes, paths, text, markers, clones, alpha blending, transforms, gradients, and grouping. In addition, Inkscape supports Creative Commons' metadata, node-editing, layers, complex path operations, text-on-path, text-in-shape, and SVG XML editing. It can also import EPS, PostScript, and most bitmap formats, and exports PNG, PS, PDF and various vector formats. Inkscape's main motivation is to provide the Open Source community with a fully [[W3C]] compliant XML, SVG, and CSS2 drawing tool. Additional work includes conversion of the codebase from C/Gtk to C++/Gtkmm, emphasizing a lightweight core with powerful features added through an extension mechanism, and maintaining a friendly, open, community-oriented development process. From phoenix@nova.es Wed Jun 28 17:32:54 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7BBC83B0100 for ; Wed, 28 Jun 2006 17:32:54 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02743-08 for ; Wed, 28 Jun 2006 17:32:52 -0400 (EDT) Received: from localhost.localdomain (171.Red-80-34-230.staticIP.rima-tde.net [80.34.230.171]) by menubar.gnome.org (Postfix) with ESMTP id BDEEC3B00A3 for ; Wed, 28 Jun 2006 17:32:50 -0400 (EDT) Received: by localhost.localdomain (Postfix, from userid 1000) id BC029821BA; Sun, 25 Jun 2006 15:37:41 +0200 (CEST) Subject: ANNOUNCE: Nautilus-Sendto 0.6 & 0.7 From: Roberto Majadas To: Gnome Announce Content-Type: multipart/alternative; boundary="=-jsBhLm2jjnt8W4Xg4Kr+" Date: Sun, 25 Jun 2006 15:37:40 +0200 Message-Id: <1151242661.7517.8.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.93 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, HTML_40_50=0.496, HTML_MESSAGE=0.001, RCVD_IN_XBL=3.897] X-Spam-Score: 1.93 X-Spam-Level: * X-Mailman-Approved-At: Thu, 29 Jun 2006 03:00:17 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Jun 2006 21:32:54 -0000 --=-jsBhLm2jjnt8W4Xg4Kr+ Content-Type: text/plain Content-Transfer-Encoding: 7bit NAUTILUS SEND-TO (0.6 & 0.7) * What it is ? ============== This application provide integration between nautilus , evolution , gaim and gnome-bluetooth ============ Version 0.7 ============ Nautilus Sendto * Quick revision. I don't include some files to POTFILES.in ============ Version 0.6 ============ Nautilus Sendto * Added support for gajim * Added support for sylpheed-claws * Added initial support for thunderbird. Thunderbird don't support attachment by command line atm. * Added initial support for Balsa. Balsa don't support attachment by command line atm. * Many bugfixes Special Thanks to : Bastien Nocera (He resolve many many bugs while i was busy in my work, Thanks guy !) Dimitur Kirov (He developed gajim support) Peter Enseleit (he developed balsa, sylpheed and thunderbird support) * Features ========== * Nautilus context menu component ("Send To...") . * A dialog for insert the email acount or IM account which you want to send the file/files . * Contact with evolution-data-server and get the email accounts . * Contact with gaim (nautilus gaim plugin) and get the IM acccounts * Send to bluetooth devices detected from gnome-bluetooth * You can send files packaged in varios formats --=-jsBhLm2jjnt8W4Xg4Kr+ Content-Type: text/html; charset=utf-8 NAUTILUS SEND-TO (0.6 & 0.7)

* What it is ?
==============

This application provide integration between nautilus , evolution ,
gaim and gnome-bluetooth


============
Version 0.7
============

Nautilus Sendto
        * Quick revision. I don't include some files to POTFILES.in

============
Version 0.6
============

Nautilus Sendto
        * Added support for gajim
        * Added support for sylpheed-claws
        * Added initial support for thunderbird. Thunderbird don't support attachment by command line atm.
        * Added initial support for Balsa. Balsa don't support attachment by command line atm.
        * Many bugfixes

        Special Thanks to :
                Bastien Nocera (He resolve many many bugs while i was busy in my work, Thanks guy !)
                Dimitur Kirov (He developed gajim support)
                Peter Enseleit (he developed balsa, sylpheed and thunderbird support)

* Features
==========
      * Nautilus context menu component ("Send To...") .
      * A dialog for insert the email acount or IM account which you
        want to send the file/files .
              * Contact with evolution-data-server and get the email
                accounts .
              * Contact with gaim (nautilus gaim plugin) and get the IM
                acccounts
	      * Send to bluetooth devices detected from gnome-bluetooth
              * You can send files packaged in varios formats

--=-jsBhLm2jjnt8W4Xg4Kr+-- From callum@spooky-possum.org Thu Jun 29 04:08:17 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 903F53B01CE; Thu, 29 Jun 2006 04:08:17 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28081-02; Thu, 29 Jun 2006 04:08:09 -0400 (EDT) Received: from genamics.blastula.net (dns1.blastula.net [64.92.214.155]) by menubar.gnome.org (Postfix) with ESMTP id B42D13B0423; Thu, 29 Jun 2006 04:07:56 -0400 (EDT) Received: from [60.234.108.157] (helo=[60.234.108.157]) by genamics.blastula.net with esmtpa (Exim 4.52) id 1FvrZ5-0003f6-67; Thu, 29 Jun 2006 20:07:56 +1200 Subject: gnome-games 2.14.2.1 From: Callum McKenzie To: games-list@gnome.org, gnome-announce-list@gnome.org Content-Type: text/plain Date: Thu, 29 Jun 2006 20:07:45 +1200 Message-Id: <1151568466.22419.21.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.1 Content-Transfer-Encoding: 7bit X-Antivirus-Scanner: Clean mail though you should still use an Antivirus X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - genamics.blastula.net X-AntiAbuse: Original Domain - gnome.org X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [47 12] X-AntiAbuse: Sender Address Domain - spooky-possum.org X-Source: X-Source-Args: X-Source-Dir: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.543 tagged_above=-999 required=2 tests=[AWL=0.056, BAYES_00=-2.599] X-Spam-Score: -2.543 X-Spam-Level: X-Mailman-Approved-At: Thu, 29 Jun 2006 07:32:02 -0400 X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: callum@spooky-possum.org List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 08:08:18 -0000 gnome-games 2.14.2.1 ==================== This release is primarily to fix a crash that occurs in Aisleriot when you change games. An upgrade is strongly recommended. It also fixes a high-score file corruption bug when entering short names for the high scores table. As a bonus there are also translation updates. Get it from: http://download.gnome.org/sources/gnome-games/2.14/ - Callum From cjb@mrao.cam.ac.uk Fri Jun 30 10:57:08 2006 Return-Path: X-Original-To: gnome-announce-list@gnome.org Delivered-To: gnome-announce-list@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3683C3B013B; Fri, 30 Jun 2006 10:57:08 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26976-04; Fri, 30 Jun 2006 10:57:07 -0400 (EDT) Received: from mraos.ra.phy.cam.ac.uk (mraos.ra.phy.cam.ac.uk [131.111.48.8]) by menubar.gnome.org (Postfix) with ESMTP id D4BBD3B013F; Fri, 30 Jun 2006 10:57:06 -0400 (EDT) Received: from skye.ra.phy.cam.ac.uk ([131.111.48.158] ident=mail) by mraos.ra.phy.cam.ac.uk with esmtp (Exim 4.43) id 1FwKQb-0001M9-M7; Fri, 30 Jun 2006 15:57:05 +0100 Received: from islay.ra.phy.cam.ac.uk ([131.111.48.119]) by skye.ra.phy.cam.ac.uk with esmtp (Exim 3.36 #1) id 1FwKQb-0006Vd-00; Fri, 30 Jun 2006 15:57:05 +0100 To: foundation-announce@gnome.org Subject: Women's Summer Outreach Program 2006 Update. From: Chris Ball Date: Fri, 30 Jun 2006 15:57:04 +0100 Message-ID: User-Agent: Gnus/5.110002 (No Gnus v0.2) XEmacs/21.4 (Social Property, linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.563 tagged_above=-999 required=2 tests=[AWL=0.036, BAYES_00=-2.599] X-Spam-Score: -2.563 X-Spam-Level: X-Mailman-Approved-At: Fri, 30 Jun 2006 18:08:19 -0400 Cc: gnome-announce-list@gnome.org X-BeenThere: gnome-announce-list@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: Announcements only List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jun 2006 14:57:08 -0000 Dear all, We're thrilled to announce that Google is donating funds to double the number of available projects for the WSOP[1] from three to six, due to the project getting a huge response from interested women. We'll be announcing the six accepted projects tomorrow. Many thanks to Google! - Chris. [1]: http://www.gnome.org/projects/wsop/ -- Chris Ball