diff options
author | Chad Versace <chad.versace@linux.intel.com> | 2012-08-22 13:24:40 -0700 |
---|---|---|
committer | Chad Versace <chad.versace@linux.intel.com> | 2012-08-23 09:03:43 -0700 |
commit | b92562aab79ed30a4ffd55d7a37305582836b210 (patch) | |
tree | dd19f2c751a28cdcb16f8709a5e4902456854f1c /doc | |
parent | 781fedc87926ee4dc82d7cbf6ebf2f429e1d1fbf (diff) |
doc: Separate release notes, one file per version
Each release's notes are located at /doc/release-notes/waffle-VERSION.txt.
Signed-off-by: Chad Versace <chad.versace@linux.intel.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release-notes.txt | 77 | ||||
-rw-r--r-- | doc/release-notes/waffle-0.1.txt | 9 | ||||
-rw-r--r-- | doc/release-notes/waffle-0.2.txt | 19 | ||||
-rw-r--r-- | doc/release-notes/waffle-0.3.0.txt | 21 | ||||
-rw-r--r-- | doc/release-notes/waffle-0.3.1.txt | 22 |
5 files changed, 71 insertions, 77 deletions
diff --git a/doc/release-notes.txt b/doc/release-notes.txt deleted file mode 100644 index e0af027..0000000 --- a/doc/release-notes.txt +++ /dev/null @@ -1,77 +0,0 @@ -Waffle 0.3.1 - 23 May 2012 -========================== - -This is a bugfix release. - - -Bug Fixes ---------- -- Fixes an X error produced by piglit_glx_window_set_no_input() in Piglit. - - -Changes -------- - -Chad Versace (4): - readme: Fix typo in example code - glx: Fix glx_window, don't use glXCreateWindow - cmake: Bump version to 0.3.1 - doc: Update release notes to 0.3.1 - -Pauli Nieminen (1): - readme: Fix Chad's mail address - - -Version 0.3 - 21 May 2012 -========================= - -New Features ------------- -- Support for selecting the flavor of GL context with new attributes, which - are given to waffle_config_choose(): - - WAFFLE_CONTEXT_API - - WAFFLE_CONTEXT_MAJOR_VERSION - - WAFFLE_CONTEXT_MINOR_VERSION - - WAFFLE_CONTEXT_PROFILE -- Support for selecting the library on which waffle_dl_sym() is called on - a per-call basis. -- Windows are no longer shown at time of creation. The user controls when the - window is shown with waffle_window_show(). -- Friendlier API for getting error info with waffle_error_get_info(). - -Changes -------- -- No API attribute is given to waffle_init(). -- Signature of waffle_error_get_info() has changed. - - -Version 0.2 - 11 Apr 2012 -========================= - -New Features ------------- -- Support for GLX. -- Support for Wayland. - -Changes -------- -- Changed value of WAFFLE_DONT_CARE to -1, to match EGL_DONT_CARE and - GLX_DONT_CARE. - -Bug Fixes ---------- -- Set environment variable EGL_PLATFORM during initialization in order to - avoid problems when Mesa's libEGL is built with support for multiple - platforms. -- Fix creation of X windows. Provide a colormap to xcb_window_create. - - -Version 0.1 - 9 Apr 2012 -======================== - -New Features -------------- -- Initial release. -- Support for X11/EGL. -- Support for choosing GL API at waffle initialization. -- Support for creating GL contexts and windows. diff --git a/doc/release-notes/waffle-0.1.txt b/doc/release-notes/waffle-0.1.txt new file mode 100644 index 0000000..2860d16 --- /dev/null +++ b/doc/release-notes/waffle-0.1.txt @@ -0,0 +1,9 @@ +Version 0.1 - 9 Apr 2012 +======================== + +New Features +------------- +- Initial release. +- Support for X11/EGL. +- Support for choosing GL API at waffle initialization. +- Support for creating GL contexts and windows. diff --git a/doc/release-notes/waffle-0.2.txt b/doc/release-notes/waffle-0.2.txt new file mode 100644 index 0000000..a73e411 --- /dev/null +++ b/doc/release-notes/waffle-0.2.txt @@ -0,0 +1,19 @@ +Version 0.2 - 11 Apr 2012 +========================= + +New Features +------------ +- Support for GLX. +- Support for Wayland. + +Changes +------- +- Changed value of WAFFLE_DONT_CARE to -1, to match EGL_DONT_CARE and + GLX_DONT_CARE. + +Bug Fixes +--------- +- Set environment variable EGL_PLATFORM during initialization in order to + avoid problems when Mesa's libEGL is built with support for multiple + platforms. +- Fix creation of X windows. Provide a colormap to xcb_window_create. diff --git a/doc/release-notes/waffle-0.3.0.txt b/doc/release-notes/waffle-0.3.0.txt new file mode 100644 index 0000000..1b6300a --- /dev/null +++ b/doc/release-notes/waffle-0.3.0.txt @@ -0,0 +1,21 @@ +Version 0.3 - 21 May 2012 +========================= + +New Features +------------ +- Support for selecting the flavor of GL context with new attributes, which + are given to waffle_config_choose(): + - WAFFLE_CONTEXT_API + - WAFFLE_CONTEXT_MAJOR_VERSION + - WAFFLE_CONTEXT_MINOR_VERSION + - WAFFLE_CONTEXT_PROFILE +- Support for selecting the library on which waffle_dl_sym() is called on + a per-call basis. +- Windows are no longer shown at time of creation. The user controls when the + window is shown with waffle_window_show(). +- Friendlier API for getting error info with waffle_error_get_info(). + +Changes +------- +- No API attribute is given to waffle_init(). +- Signature of waffle_error_get_info() has changed. diff --git a/doc/release-notes/waffle-0.3.1.txt b/doc/release-notes/waffle-0.3.1.txt new file mode 100644 index 0000000..8ad3c5e --- /dev/null +++ b/doc/release-notes/waffle-0.3.1.txt @@ -0,0 +1,22 @@ +Waffle 0.3.1 - 23 May 2012 +========================== + +This is a bugfix release. + + +Bug Fixes +--------- +- Fixes an X error produced by piglit_glx_window_set_no_input() in Piglit. + + +Changes +------- + +Chad Versace (4): + readme: Fix typo in example code + glx: Fix glx_window, don't use glXCreateWindow + cmake: Bump version to 0.3.1 + doc: Update release notes to 0.3.1 + +Pauli Nieminen (1): + readme: Fix Chad's mail address |