Skip to content
This repository has been archived by the owner on Nov 17, 2020. It is now read-only.

Commit

Permalink
2.19.0
Browse files Browse the repository at this point in the history
svn path=/trunk/; revision=7611
  • Loading branch information
Matthias Clasen committed Oct 16, 2008
1 parent 0949574 commit 82c68c6
Show file tree
Hide file tree
Showing 114 changed files with 11,630 additions and 12,012 deletions.
2 changes: 2 additions & 0 deletions ChangeLog
@@ -1,5 +1,7 @@
2008-10-16 Matthias Clasen <mclasen@redhat.com>

* === Released 2.19.0 ===

* NEWS: Updates

2008-10-14 Christian Persch <chpe@gnome.org>
Expand Down
4 changes: 2 additions & 2 deletions INSTALL
@@ -1,8 +1,8 @@
Simple install procedure
========================

% gzip -cd glib-2.18.1.tar.gz | tar xvf - # unpack the sources
% cd glib-2.18.1 # change to the toplevel directory
% gzip -cd glib-2.19.0.tar.gz | tar xvf - # unpack the sources
% cd glib-2.19.0 # change to the toplevel directory
% ./configure # run the `configure' script
% make # build GLIB

Expand Down
17 changes: 16 additions & 1 deletion README
@@ -1,7 +1,7 @@
General Information
===================

This is GLib version 2.18.1. GLib is the low-level core
This is GLib version 2.19.0. 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,
Expand All @@ -24,6 +24,21 @@ Installation

See the file 'INSTALL'

Notes about GLib 2.20
=====================

^ The functions for launching applications (e.g. g_app_info_launch() +
friends) now passes a FUSE file:// URI if possible (requires gvfs
with the FUSE daemon to be running and operational). With gvfs 2.26,
FUSE file:// URIs will be mapped back to gio URIs in the GFile
constructors. The intent of this change is to better integrate
POSIX-only applications, see bug #528670 for the rationale. The
only user-visible change is when an application needs to examine an
URI passed to it (e.g. as a positional parameter). Instead of
looking at the given URI, the application will now need to look at
the result of g_file_get_uri() after having constructed a GFile
object with the given URI.

Notes about GLib 2.18
=====================

Expand Down
9 changes: 9 additions & 0 deletions docs/reference/ChangeLog
@@ -1,3 +1,12 @@
2008-10-16 Matthias Clasen <mclasen@redhat.com>

* === Released 2.19.0 ===

* gio/gio-sections.txt: Add new api

* gobject/gobject-docs.sgml:
* gio/gio-docs.xml: Add new indexes

2008-10-16 Matthias Clasen <mclasen@redhat.com>

* glib/Makefile.am: Don't specify multiple directories in
Expand Down
3 changes: 3 additions & 0 deletions docs/reference/gio/gio-docs.xml
Expand Up @@ -111,4 +111,7 @@
<index role="2.18">
<title>Index of new symbols in 2.18</title>
</index>
<index role="2.20">
<title>Index of new symbols in 2.20</title>
</index>
</book>
11 changes: 11 additions & 0 deletions docs/reference/gio/gio-sections.txt
Expand Up @@ -320,6 +320,8 @@ g_file_attribute_info_list_unref
g_file_attribute_info_list_dup
g_file_attribute_info_list_lookup
g_file_attribute_info_list_add
<SUBSECTION Private>
g_file_attribute_info_list_get_type
</SECTION>

<SECTION>
Expand Down Expand Up @@ -449,6 +451,12 @@ g_emblem_get_icon
g_emblem_get_origin
<SUBSECTION Private>
g_emblem_get_type
G_EMBLEM
G_EMBLEM_CLASS
G_EMBLEM_GET_CLASS
G_IS_EMBLEM
G_IS_EMBLEM_CLASS
G_TYPE_EMBLEM
</SECTION>

<SECTION>
Expand Down Expand Up @@ -1061,6 +1069,9 @@ g_app_info_supports_files
g_app_info_supports_uris
g_app_info_launch_uris
g_app_info_should_show
g_app_info_can_delete
g_app_info_delete
g_app_info_reset_type_associations
g_app_info_set_as_default_for_type
g_app_info_set_as_default_for_extension
g_app_info_add_supports_type
Expand Down
3 changes: 3 additions & 0 deletions docs/reference/glib/glib-docs.sgml
Expand Up @@ -235,5 +235,8 @@ synchronize their operation.
<index role="2.18">
<title>Index of new symbols in 2.18</title>
</index>
<index role="2.20">
<title>Index of new symbols in 2.20</title>
</index>

</book>
189 changes: 189 additions & 0 deletions docs/reference/glib/tmpl/byte_order.sgml
Expand Up @@ -52,6 +52,15 @@ side-effects.
<!-- ##### SECTION Stability_Level ##### -->


<!-- ##### MACRO G_BYTE_ORDER ##### -->
<para>
The host byte order.
This can be either #G_LITTLE_ENDIAN or #G_BIG_ENDIAN (support for
#G_PDP_ENDIAN may be added in future.)
</para>



<!-- ##### MACRO G_LITTLE_ENDIAN ##### -->
<para>
Specifies one of the possible types of byte order.
Expand Down Expand Up @@ -130,6 +139,24 @@ Converts a #gint value from little-endian to host byte order.
@Returns: @val converted to host byte order.


<!-- ##### MACRO GINT_TO_BE ##### -->
<para>
Converts a #gint value from host byte order to big-endian.
</para>

@val: a #gint value in host byte order.
@Returns: @val converted to big-endian byte order.


<!-- ##### MACRO GINT_TO_LE ##### -->
<para>
Converts a #gint value from host byte order to little-endian.
</para>

@val: a #gint value in host byte order.
@Returns: @val converted to little-endian byte order.


<!-- ##### MACRO GUINT_FROM_BE ##### -->
<para>
Converts a #guint value from big-endian to host byte order.
Expand All @@ -148,6 +175,24 @@ Converts a #guint value from little-endian to host byte order.
@Returns: @val converted to host byte order.


<!-- ##### MACRO GUINT_TO_BE ##### -->
<para>
Converts a #guint value from host byte order to big-endian.
</para>

@val: a #guint value in host byte order.
@Returns: @val converted to big-endian byte order.


<!-- ##### MACRO GUINT_TO_LE ##### -->
<para>
Converts a #guint value from host byte order to little-endian.
</para>

@val: a #guint value in host byte order.
@Returns: @val converted to little-endian byte order.


<!-- ##### MACRO GLONG_FROM_BE ##### -->
<para>
Converts a #glong value from big-endian to the host byte order.
Expand All @@ -166,6 +211,24 @@ Converts a #glong value from little-endian to host byte order.
@Returns: @val converted to host byte order.


<!-- ##### MACRO GLONG_TO_BE ##### -->
<para>
Converts a #glong value from host byte order to big-endian.
</para>

@val: a #glong value in host byte order.
@Returns: @val converted to big-endian byte order.


<!-- ##### MACRO GLONG_TO_LE ##### -->
<para>
Converts a #glong value from host byte order to little-endian.
</para>

@val: a #glong value in host byte order.
@Returns: @val converted to little-endian.


<!-- ##### MACRO GULONG_FROM_BE ##### -->
<para>
Converts a #gulong value from big-endian to host byte order.
Expand All @@ -184,6 +247,24 @@ Converts a #gulong value from little-endian to host byte order.
@Returns: @val converted to host byte order.


<!-- ##### MACRO GULONG_TO_BE ##### -->
<para>
Converts a #gulong value from host byte order to big-endian.
</para>

@val: a #gulong value in host byte order.
@Returns: @val converted to big-endian.


<!-- ##### MACRO GULONG_TO_LE ##### -->
<para>
Converts a #gulong value from host byte order to little-endian.
</para>

@val: a #gulong value in host byte order.
@Returns: @val converted to little-endian.


<!-- ##### MACRO GINT16_FROM_BE ##### -->
<para>
Converts a #gint16 value from big-endian to host byte order.
Expand All @@ -202,6 +283,24 @@ Converts a #gint16 value from little-endian to host byte order.
@Returns: @val converted to host byte order.


<!-- ##### MACRO GINT16_TO_BE ##### -->
<para>
Converts a #gint16 value from host byte order to big-endian.
</para>

@val: a #gint16 value in host byte order.
@Returns: @val converted to big-endian.


<!-- ##### MACRO GINT16_TO_LE ##### -->
<para>
Converts a #gint16 value from host byte order to little-endian.
</para>

@val: a #gint16 value in host byte order.
@Returns: @val converted to little-endian.


<!-- ##### MACRO GUINT16_FROM_BE ##### -->
<para>
Converts a #guint16 value from big-endian to host byte order.
Expand All @@ -220,6 +319,24 @@ Converts a #guint16 value from little-endian to host byte order.
@Returns: @val converted to host byte order.


<!-- ##### MACRO GUINT16_TO_BE ##### -->
<para>
Converts a #guint16 value from host byte order to big-endian.
</para>

@val: a #guint16 value in host byte order.
@Returns: @val converted to big-endian.


<!-- ##### MACRO GUINT16_TO_LE ##### -->
<para>
Converts a #guint16 value from host byte order to little-endian.
</para>

@val: a #guint16 value in host byte order.
@Returns: @val converted to little-endian.


<!-- ##### MACRO GINT32_FROM_BE ##### -->
<para>
Converts a #gint32 value from big-endian to host byte order.
Expand All @@ -238,6 +355,24 @@ Converts a #gint32 value from little-endian to host byte order.
@Returns: @val converted to host byte order.


<!-- ##### MACRO GINT32_TO_BE ##### -->
<para>
Converts a #gint32 value from host byte order to big-endian.
</para>

@val: a #gint32 value in host byte order.
@Returns: @val converted to big-endian.


<!-- ##### MACRO GINT32_TO_LE ##### -->
<para>
Converts a #gint32 value from host byte order to little-endian.
</para>

@val: a #gint32 value in host byte order.
@Returns: @val converted to little-endian.


<!-- ##### MACRO GUINT32_FROM_BE ##### -->
<para>
Converts a #guint32 value from big-endian to host byte order.
Expand All @@ -256,6 +391,24 @@ Converts a #guint32 value from little-endian to host byte order.
@Returns: @val converted to host byte order.


<!-- ##### MACRO GUINT32_TO_BE ##### -->
<para>
Converts a #guint32 value from host byte order to big-endian.
</para>

@val: a #guint32 value in host byte order.
@Returns: @val converted to big-endian.


<!-- ##### MACRO GUINT32_TO_LE ##### -->
<para>
Converts a #guint32 value from host byte order to little-endian.
</para>

@val: a #guint32 value in host byte order.
@Returns: @val converted to little-endian.


<!-- ##### MACRO GINT64_FROM_BE ##### -->
<para>
Converts a #gint64 value from big-endian to host byte order.
Expand All @@ -274,6 +427,24 @@ Converts a #gint64 value from little-endian to host byte order.
@Returns: @val converted to host byte order.


<!-- ##### MACRO GINT64_TO_BE ##### -->
<para>
Converts a #gint64 value from host byte order to big-endian.
</para>

@val: a #gint64 value in host byte order.
@Returns: @val converted to big-endian.


<!-- ##### MACRO GINT64_TO_LE ##### -->
<para>
Converts a #gint64 value from host byte order to little-endian.
</para>

@val: a #gint64 value in host byte order.
@Returns: @val converted to little-endian.


<!-- ##### MACRO GUINT64_FROM_BE ##### -->
<para>
Converts a #guint64 value from big-endian to host byte order.
Expand All @@ -292,6 +463,24 @@ Converts a #guint64 value from little-endian to host byte order.
@Returns: @val converted to host byte order.


<!-- ##### MACRO GUINT64_TO_BE ##### -->
<para>
Converts a #guint64 value from host byte order to big-endian.
</para>

@val: a #guint64 value in host byte order.
@Returns: @val converted to big-endian.


<!-- ##### MACRO GUINT64_TO_LE ##### -->
<para>
Converts a #guint64 value from host byte order to little-endian.
</para>

@val: a #guint64 value in host byte order.
@Returns: @val converted to little-endian.


<!-- ##### MACRO GUINT16_SWAP_BE_PDP ##### -->
<para>
Converts a #guint16 value between big-endian and pdp-endian byte order.
Expand Down

0 comments on commit 82c68c6

Please sign in to comment.