Release xcb-proto 1.0 RC2 (0.9.92).
[free-sw/xcb/proto] / NEWS
1 Release 1.0 RC2 (2006-10-07)
2 ============================
3
4 * Add <import>xproto</import> explicitly to extensions that use xproto;
5   this goes along with the change in the code generator for libxcb 1.0 RC2 to
6   stop implicitly importing xproto.
7 * Change "union" to "xidunion" for XID unions like DRAWABLE and FONTABLE,
8   so that the code generator can more easily declare these XID unions as
9   integer typedefs rather than unions.
10 * Replace structures attempting to provide C type safety with CARD32 typedefs
11 * render.xml no longer describes the CompositeGlyphs* requests as taking lists
12   of complicated unions of structures of lists: it says instead that they take
13   a LISTofBYTE. The caller is responsible for constructing an appropriate
14   sequence of glyph elements. Previously, the requests could not actually be
15   used because XCB did not correctly compute the length of the provided data.
16
17
18 Release 1.0 RC1 (2006-09-25)
19 ============================
20
21 The Great XCB Renaming
22 ----------------------
23
24 * Rename shape_op and shape_kind to drop the "shape_" prefix, since
25   otherwise these types end up as xcb_shape_shape_{op,kind}_t.
26 * Remove leading underscores from enums in the GLX protocol description,
27   previously needed to ensure a word separator, but now redundant.
28 * The XML-XCB protocol descriptions have moved to /usr/share/xcb, with
29   extension descriptions no longer relegated to an extensions/ subdirectory.
30
31 GIT Repository split
32 --------------------
33
34 Previously, several XCB-related projects all existed under the umbrella
35 of a single monolithic GIT repository with per-project subdirectories.
36 We have split this repository into individual per-project repositories.
37
38 Josh Triplett and Jamey Sharp wrote a tool called git-split to
39 accomplish this repository split. git-split reconstructs the history of
40 a sub-project previously stored in a subdirectory of a larger
41 repository. It constructs new commit objects based on the existing tree
42 objects for the subtree in each commit, and discards commits which do
43 not affect the history of the sub-project, as well as merges made
44 unnecessary due to these discarded commits.
45
46 We would like to acknowledge the work of the gobby team in creating a
47 collaborative editor which greatly aided the development of git-split
48 (as well as these release notes).