Release xcb-proto 1.1
[free-sw/xcb/proto] / NEWS
1 Release 1.1 (2007-11-04)
2 ========================
3
4 Incompatible change to the XML schema: rather than special-casing the
5 treatment of protocol extension names, use the new extension-multiword
6 attribute.  Normally, XCB prefixes C extension functions with
7 xcb_extname_.  However, some of the existing extensions used multi-word
8 names, such as xcb_big_requests_ or xcb_xc_misc_. Those extensions now
9 use this attribute to match their existing defined API.  This allows the
10 XCB code generator to avoid special-casing those extension names.
11
12 Protocol updates:
13 * Update DAMAGE to 1.1
14 * Update RandR to version 1.2
15
16 Bug fixes:
17 * fix XSync Initialize call
18 * Update autogen.sh to one that does objdir != srcdir.
19
20
21 Release 1.0 (2006-11-23)
22 ========================
23
24 The "Thanksgiving" release: We feel thankful to have it released.
25
26 * Fix Bug #8990: randr type fixes
27 * Fixed screen parameter type in several GLX requests to use CARD32 instead
28   of the SCREEN structure.
29 * Corrected valueparam arguments to attribute lists in several requests and
30   a reply.
31 * Estethic change for attribute parameter name
32 * Remove support for the <localfield> tag: nothing needs it.
33 * Fix Bug #8973: In UngrabKey, the 'key' field should have type KEYCODE, not
34   the more general CARD8.
35
36
37 Release 1.0 RC3 (2006-11-02)
38 ============================
39
40 * Add support for the Xinerama extension, version 1.1
41 * Protocol descriptions now document the major and minor version numbers
42   of the extension version they support, through major-version and
43   minor-version attributes on the xcb tag.  XML Schema updated
44   accordingly.
45 * Minor source reorganization: Now that the extensions do not get
46   installed to an extensions/ subdirectory, move them out of the
47   extensions/ subdirectory in the source as well.
48 * Various protocol description fixes:
49     * Add REPEAT enumeration to Render extension to fix bug #8535
50     * Fix core xproto GrabMode enumeration (reported by Yang JianJun)
51     * Fix core xproto cap style enumeration (bug #8857).
52
53
54 Release 1.0 RC2 (2006-10-07)
55 ============================
56
57 * Add <import>xproto</import> explicitly to extensions that use xproto;
58   this goes along with the change in the code generator for libxcb 1.0 RC2 to
59   stop implicitly importing xproto.
60 * Change "union" to "xidunion" for XID unions like DRAWABLE and FONTABLE,
61   so that the code generator can more easily declare these XID unions as
62   integer typedefs rather than unions.
63 * Replace structures attempting to provide C type safety with CARD32 typedefs
64 * render.xml no longer describes the CompositeGlyphs* requests as taking lists
65   of complicated unions of structures of lists: it says instead that they take
66   a LISTofBYTE. The caller is responsible for constructing an appropriate
67   sequence of glyph elements. Previously, the requests could not actually be
68   used because XCB did not correctly compute the length of the provided data.
69
70
71 Release 1.0 RC1 (2006-09-25)
72 ============================
73
74 The Great XCB Renaming
75 ----------------------
76
77 * Rename shape_op and shape_kind to drop the "shape_" prefix, since
78   otherwise these types end up as xcb_shape_shape_{op,kind}_t.
79 * Remove leading underscores from enums in the GLX protocol description,
80   previously needed to ensure a word separator, but now redundant.
81 * The XML-XCB protocol descriptions have moved to /usr/share/xcb, with
82   extension descriptions no longer relegated to an extensions/ subdirectory.
83
84 GIT Repository split
85 --------------------
86
87 Previously, several XCB-related projects all existed under the umbrella
88 of a single monolithic GIT repository with per-project subdirectories.
89 We have split this repository into individual per-project repositories.
90
91 Josh Triplett and Jamey Sharp wrote a tool called git-split to
92 accomplish this repository split. git-split reconstructs the history of
93 a sub-project previously stored in a subdirectory of a larger
94 repository. It constructs new commit objects based on the existing tree
95 objects for the subtree in each commit, and discards commits which do
96 not affect the history of the sub-project, as well as merges made
97 unnecessary due to these discarded commits.
98
99 We would like to acknowledge the work of the gobby team in creating a
100 collaborative editor which greatly aided the development of git-split
101 (as well as these release notes).