mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-09 04:15:49 +01:00
Release notes tweaks
Update download locations, mailing list instructions, and shuffle the version-specific notes to be at the end.
This commit is contained in:
parent
d2b7ee62f9
commit
97cc0d0179
94
README.in
94
README.in
@ -7,8 +7,9 @@ provides data structure handling for C, portability wrappers, and
|
|||||||
interfaces for such runtime functionality as an event loop, threads,
|
interfaces for such runtime functionality as an event loop, threads,
|
||||||
dynamic loading, and an object system.
|
dynamic loading, and an object system.
|
||||||
|
|
||||||
The official ftp site is:
|
The official download locations are:
|
||||||
ftp://ftp.gtk.org/pub/glib
|
ftp://ftp.gtk.org/pub/glib
|
||||||
|
http://download.gnome.org/sources/glib
|
||||||
|
|
||||||
The official web site is:
|
The official web site is:
|
||||||
http://www.gtk.org/
|
http://www.gtk.org/
|
||||||
@ -16,14 +17,56 @@ The official web site is:
|
|||||||
Information about mailing lists can be found at
|
Information about mailing lists can be found at
|
||||||
http://www.gtk.org/mailing-lists.html
|
http://www.gtk.org/mailing-lists.html
|
||||||
|
|
||||||
To subscribe: mail -s subscribe gtk-list-request@gnome.org < /dev/null
|
To subscribe, send mail to gtk-list-request@gnome.org
|
||||||
(Send mail to gtk-list-request@gnome.org with the subject "subscribe")
|
with the subject "subscribe".
|
||||||
|
|
||||||
Installation
|
Installation
|
||||||
============
|
============
|
||||||
|
|
||||||
See the file 'INSTALL'
|
See the file 'INSTALL'
|
||||||
|
|
||||||
|
How to report bugs
|
||||||
|
==================
|
||||||
|
|
||||||
|
Bugs should be reported to the GNOME bug tracking system.
|
||||||
|
(http://bugzilla.gnome.org, product glib.) You will need
|
||||||
|
to create an account for yourself.
|
||||||
|
|
||||||
|
In the bug report please include:
|
||||||
|
|
||||||
|
* Information about your system. For instance:
|
||||||
|
|
||||||
|
- What operating system and version
|
||||||
|
- For Linux, what version of the C library
|
||||||
|
|
||||||
|
And anything else you think is relevant.
|
||||||
|
|
||||||
|
* How to reproduce the bug.
|
||||||
|
|
||||||
|
If you can reproduce it with one of the test programs that are built
|
||||||
|
in the tests/ subdirectory, that will be most convenient. Otherwise,
|
||||||
|
please include a short test program that exhibits the behavior.
|
||||||
|
As a last resort, you can also provide a pointer to a larger piece
|
||||||
|
of software that can be downloaded.
|
||||||
|
|
||||||
|
* If the bug was a crash, the exact text that was printed out
|
||||||
|
when the crash occured.
|
||||||
|
|
||||||
|
* Further information such as stack traces may be useful, but
|
||||||
|
is not necessary.
|
||||||
|
|
||||||
|
Patches
|
||||||
|
=======
|
||||||
|
|
||||||
|
Patches should also be submitted to bugzilla.gnome.org. If the
|
||||||
|
patch fixes an existing bug, add the patch as an attachment
|
||||||
|
to that bug report.
|
||||||
|
|
||||||
|
Otherwise, enter a new bug report that describes the patch,
|
||||||
|
and attach the patch to that bug report.
|
||||||
|
|
||||||
|
Patches should be in unified diff form. (The -up option to GNU diff.)
|
||||||
|
|
||||||
Notes about GLib 2.32
|
Notes about GLib 2.32
|
||||||
=====================
|
=====================
|
||||||
|
|
||||||
@ -66,11 +109,8 @@ Notes about GLib 2.32
|
|||||||
* g_debug() output is no longer enabled by default. It can be enabled
|
* g_debug() output is no longer enabled by default. It can be enabled
|
||||||
on a per-domain basis with the G_MESSAGES_DEBUG environment variable
|
on a per-domain basis with the G_MESSAGES_DEBUG environment variable
|
||||||
like
|
like
|
||||||
|
|
||||||
G_MESSAGES_DEBUG=domain1,domain2
|
G_MESSAGES_DEBUG=domain1,domain2
|
||||||
|
|
||||||
or
|
or
|
||||||
|
|
||||||
G_MESSAGES_DEBUG=all
|
G_MESSAGES_DEBUG=all
|
||||||
|
|
||||||
Notes about GLib 2.30
|
Notes about GLib 2.30
|
||||||
@ -246,45 +286,3 @@ Notes about GLib 2.6.0
|
|||||||
connected to dies, just disables it. See the API docs for the function
|
connected to dies, just disables it. See the API docs for the function
|
||||||
for further details and the correct workaround that will continue to
|
for further details and the correct workaround that will continue to
|
||||||
work with future versions of GLib.
|
work with future versions of GLib.
|
||||||
|
|
||||||
How to report bugs
|
|
||||||
==================
|
|
||||||
|
|
||||||
Bugs should be reported to the GNOME bug tracking system.
|
|
||||||
(http://bugzilla.gnome.org, product glib.) You will need
|
|
||||||
to create an account for yourself.
|
|
||||||
|
|
||||||
In the bug report please include:
|
|
||||||
|
|
||||||
* Information about your system. For instance:
|
|
||||||
|
|
||||||
- What operating system and version
|
|
||||||
- For Linux, what version of the C library
|
|
||||||
|
|
||||||
And anything else you think is relevant.
|
|
||||||
|
|
||||||
* How to reproduce the bug.
|
|
||||||
|
|
||||||
If you can reproduce it with one of the test programs that are built
|
|
||||||
in the tests/ subdirectory, that will be most convenient. Otherwise,
|
|
||||||
please include a short test program that exhibits the behavior.
|
|
||||||
As a last resort, you can also provide a pointer to a larger piece
|
|
||||||
of software that can be downloaded.
|
|
||||||
|
|
||||||
* If the bug was a crash, the exact text that was printed out
|
|
||||||
when the crash occured.
|
|
||||||
|
|
||||||
* Further information such as stack traces may be useful, but
|
|
||||||
is not necessary.
|
|
||||||
|
|
||||||
Patches
|
|
||||||
=======
|
|
||||||
|
|
||||||
Patches should also be submitted to bugzilla.gnome.org. If the
|
|
||||||
patch fixes an existing bug, add the patch as an attachment
|
|
||||||
to that bug report.
|
|
||||||
|
|
||||||
Otherwise, enter a new bug report that describes the patch,
|
|
||||||
and attach the patch to that bug report.
|
|
||||||
|
|
||||||
Patches should be in unified diff form. (The -up option to GNUdiff.)
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user