2013-06-13 10:24:07 +00:00
|
|
|
/*!
|
|
|
|
|
2017-06-11 16:04:17 +00:00
|
|
|
@page news Release notes
|
2013-06-13 10:24:07 +00:00
|
|
|
|
2019-04-01 16:36:30 +00:00
|
|
|
@tableofcontents
|
2016-08-18 21:42:15 +00:00
|
|
|
|
2017-06-18 13:13:25 +00:00
|
|
|
|
2019-04-16 12:43:29 +00:00
|
|
|
@section news_34 Release notes for version 3.4
|
|
|
|
|
|
|
|
@subsection features_34 New features in version 3.4
|
|
|
|
|
2019-08-20 17:00:59 +00:00
|
|
|
@subsubsection features_34_win32_keymenu Support for keyboard access to Windows window menu
|
|
|
|
|
|
|
|
GLFW now provides the
|
|
|
|
[GLFW_WIN32_KEYBOARD_MENU](@ref GLFW_WIN32_KEYBOARD_MENU_hint) window hint for
|
|
|
|
enabling keyboard access to the window menu via the Alt+Space and
|
|
|
|
Alt-and-then-Space shortcuts. This may be useful for more GUI-oriented
|
|
|
|
applications.
|
|
|
|
|
|
|
|
|
2019-04-16 12:43:29 +00:00
|
|
|
@subsection caveats_34 Caveats for version 3.4
|
|
|
|
|
2019-05-08 17:04:21 +00:00
|
|
|
@subsubsection standalone_34 Tests and examples are disabled when built as a sub-project
|
|
|
|
|
|
|
|
GLFW now does not build the tests and examples when it is added as
|
|
|
|
a subdirectory of another CMake project. To enable these, set the @ref
|
|
|
|
GLFW_BUILD_TESTS and @ref GLFW_BUILD_EXAMPLES cache variables before adding the
|
|
|
|
GLFW subdirectory.
|
|
|
|
|
|
|
|
@code{.cmake}
|
|
|
|
set(GLFW_BUILD_EXAMPLES ON CACHE BOOL "" FORCE)
|
|
|
|
set(GLFW_BUILD_TESTS ON CACHE BOOL "" FORCE)
|
|
|
|
add_subdirectory(path/to/glfw)
|
|
|
|
@endcode
|
|
|
|
|
|
|
|
|
2019-04-16 12:43:29 +00:00
|
|
|
@subsection deprecations_34 Deprecations in version 3.4
|
|
|
|
|
|
|
|
@subsection removals_34 Removals in 3.4
|
|
|
|
|
|
|
|
@subsection symbols_34 New symbols in version 3.4
|
|
|
|
|
|
|
|
@subsubsection functions_34 New functions in version 3.4
|
|
|
|
@subsubsection types_34 New types in version 3.4
|
|
|
|
@subsubsection constants_34 New constants in version 3.4
|
|
|
|
|
2019-08-20 17:00:59 +00:00
|
|
|
- @ref GLFW_WIN32_KEYBOARD_MENU
|
|
|
|
|
2019-04-16 12:43:29 +00:00
|
|
|
|
2019-10-18 11:17:47 +00:00
|
|
|
@section news_archive Release notes for earlier versions
|
2017-06-18 13:13:25 +00:00
|
|
|
|
2019-10-18 11:17:47 +00:00
|
|
|
- [Release notes for 3.3](https://www.glfw.org/docs/3.3/news.html)
|
|
|
|
- [Release notes for 3.2](https://www.glfw.org/docs/3.2/news.html)
|
|
|
|
- [Release notes for 3.1](https://www.glfw.org/docs/3.1/news.html)
|
|
|
|
- [Release notes for 3.0](https://www.glfw.org/docs/3.0/news.html)
|
2013-06-13 10:24:07 +00:00
|
|
|
|
|
|
|
*/
|