diff options
author | Chad Versace <chad.versace@intel.com> | 2015-01-22 12:37:10 -0800 |
---|---|---|
committer | Chad Versace <chad.versace@intel.com> | 2015-01-22 12:37:10 -0800 |
commit | 107665d02d257d1e85c44b34b49ff6788c995bbb (patch) | |
tree | c18687902584c1e3a5cdca0472a50bfb0fe7f760 | |
parent | 6c46bfd71b522c510b736848625fc0dc382df6e7 (diff) | |
parent | 6357f9a8578053fee3fdc8923ee3eb7213641d64 (diff) |
Merge branch 'maint-1.5' into master
* maint-1.5:
doc: Add release notes for Waffle 1.5.1
waffle: Bump version to 1.5.1
doc: Add release notes for Waffle 1.4.4
waffle: Bump version to 1.4.4
-rw-r--r-- | doc/release-notes/waffle-1.4.4.txt | 32 | ||||
-rw-r--r-- | doc/release-notes/waffle-1.5.1.txt | 50 |
2 files changed, 82 insertions, 0 deletions
diff --git a/doc/release-notes/waffle-1.4.4.txt b/doc/release-notes/waffle-1.4.4.txt new file mode 100644 index 0000000..fbbdd10 --- /dev/null +++ b/doc/release-notes/waffle-1.4.4.txt @@ -0,0 +1,32 @@ +Waffle 1.4.4 Release Notes +========================== + +New Stuff +--------- +* Waffle now installs CMake PackageConfig files. + + The new files are WaffleConfig.cmake and WaffleConfigVersion.cmake. + These are like Linux pkg-config files, but specific to CMake. See + commit 622efdd [1]. + + [1] https://github.com/waffle-gl/waffle/commit/622efdd3f3e832ac34edb9f7f54bb675f0fdec13 + +Bugfixes +-------- +* Fix version check in FindWaffle.cmake + + This bug only affects other projects that use CMake and used FindWaffle.cmake. + See bug [https://github.com/waffle-gl/waffle/issues/27]. + +Changes since 1.4.3 +------------------- +Chad Versace (2): + doc: Add release notes for Waffle 1.4.4 + waffle: Bump version to 1.4.4 + +Dylan Baker (2): + cmake: Add cmake PackageConfig files + cmake: fix version search + +Jordan Justen (4): + debian: Add WaffleConfig*.cmake to libwaffle-dev package diff --git a/doc/release-notes/waffle-1.5.1.txt b/doc/release-notes/waffle-1.5.1.txt new file mode 100644 index 0000000..9e0776a --- /dev/null +++ b/doc/release-notes/waffle-1.5.1.txt @@ -0,0 +1,50 @@ +Waffle 1.5.1 Release Notes +========================== + +New Stuff +--------- +* cmake: Waffle now installs CMake PackageConfig files. + + The new files are WaffleConfig.cmake and WaffleConfigVersion.cmake. + These are like Linux pkg-config files, but specific to CMake. See + commit 622efdd [1]. + + [1] https://github.com/waffle-gl/waffle/commit/622efdd3f3e832ac34edb9f7f54bb675f0fdec13 + +* examples/gl_basic: Add option for window size. + + Useful for testing tiny and huge windows. The new parameter is --window-size=WxH. + + +Bugfixes +-------- +* wgl: Fix requirements for creation of ES2 context + See [https://github.com/waffle-gl/waffle/issues/23]. + +* wgl: Verify the client area size matches the required size on window creation too. + See [https://github.com/waffle-gl/waffle/commit/fc9db89c53a2e6e65751bcd87337c74fa05de182]. + +* Fix version check in FindWaffle.cmake + + This bug only affects other projects that use CMake and used FindWaffle.cmake. + See bug [https://github.com/waffle-gl/waffle/issues/27]. + + +Changes since 1.5.0 +------------------- +Chad Versace (3): + doc: Add release notes for Waffle 1.5.1 + doc: Add release notes for Waffle 1.4.4 + wgl: Fix requirements for creation of ES2 context + +Dylan Baker (2): + cmake: Add cmake PackageConfig files + cmake: fix version search + +Jordan Justen (1): + debian: Add WaffleConfig*.cmake to libwaffle-dev package + +José Fonseca (3): + wgl: Verify the client area size matches the required size on window creation too. + examples/gl_basic: Add option for window size. + test/gl_basic_test: Address gcc format mismatch warning. |