Browse Source

doc: updated credits and changelog.

pull/539/head
Vladimír Vondruš 4 years ago
parent
commit
4cc7deaa4c
  1. 11
      doc/changelog.dox
  2. 3
      doc/credits.dox
  3. 1
      src/Magnum/Platform/Sdl2Application.cpp
  4. 1
      src/Magnum/Platform/Sdl2Application.h

11
doc/changelog.dox

@ -397,6 +397,14 @@ See also:
- Added @ref Platform::EmscriptenApplication::Configuration::addWindowFlags() - Added @ref Platform::EmscriptenApplication::Configuration::addWindowFlags()
and @ref Platform::EmscriptenApplication::Configuration::clearWindowFlags() and @ref Platform::EmscriptenApplication::Configuration::clearWindowFlags()
for consistency with other application implementations for consistency with other application implementations
- Added @ref Platform::Sdl2Application::KeyEvent::Key::CapsLock,
@relativeref{Platform::Sdl2Application::KeyEvent::Key,ScrollLock},
@relativeref{Platform::Sdl2Application::KeyEvent::Key,NumLock},
@relativeref{Platform::Sdl2Application::KeyEvent::Key,PrintScreen},
@relativeref{Platform::Sdl2Application::KeyEvent::Key,Pause} and
@relativeref{Platform::Sdl2Application::KeyEvent::Key,Menu} for consistency
with @ref Platform::EmscriptenApplication and
@ref Platform::GlfwApplication (see [mosra/magnum#547](https://github.com/mosra/magnum/pull/547))
@subsubsection changelog-latest-changes-scenegraph SceneGraph library @subsubsection changelog-latest-changes-scenegraph SceneGraph library
@ -583,6 +591,9 @@ See also:
destroyed could fail with an error saying "cannot make the previous context destroyed could fail with an error saying "cannot make the previous context
current" on certain system. This was due to EGL not destroying the context current" on certain system. This was due to EGL not destroying the context
if it's still made current. if it's still made current.
- Fixed handling of @ref Sdl2Application::InputEvent::Modifier::Super, which
was misreported as @relativeref{Sdl2Application::InputEvent::Modifier,Alt}
(see [mosra/magnum#547](https://github.com/mosra/magnum/pull/547))
- For meshes with multiple sets of vertex attributes (such as texture - For meshes with multiple sets of vertex attributes (such as texture
coordinates), @ref MeshTools::compile() should be using only the first set coordinates), @ref MeshTools::compile() should be using only the first set
but it wasn't. but it wasn't.

3
doc/credits.dox

@ -192,7 +192,8 @@ Are the below lists missing your name or something's wrong?
Gentoo ebuild) Gentoo ebuild)
- **Pablo Escobar** ([\@pezcode](https://github.com/pezcode)) --- @ref Math - **Pablo Escobar** ([\@pezcode](https://github.com/pezcode)) --- @ref Math
additions, support for multiple @ref Platform::EmscriptenApplication additions, support for multiple @ref Platform::EmscriptenApplication
canvases on one page, Emscripten-focused fixes canvases on one page, Emscripten-focused fixes;
@ref Platform::Sdl2Application additions
- **Pascal Thomet** ([\@pthom](https://github.com/pthom)) --- C++17 - **Pascal Thomet** ([\@pthom](https://github.com/pthom)) --- C++17
compilation fixes, buildsystem improvements, Hunter package compilation fixes, buildsystem improvements, Hunter package
- **Sam Spilsbury** ([\@smspillaz](https://github.com/smspillaz)) --- WebGL - **Sam Spilsbury** ([\@smspillaz](https://github.com/smspillaz)) --- WebGL

1
src/Magnum/Platform/Sdl2Application.cpp

@ -4,6 +4,7 @@
Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019,
2020, 2021 Vladimír Vondruš <mosra@centrum.cz> 2020, 2021 Vladimír Vondruš <mosra@centrum.cz>
Copyright © 2019 Marco Melorio <m.melorio@icloud.com> Copyright © 2019 Marco Melorio <m.melorio@icloud.com>
Copyright © 2022 Pablo Escobar <mail@rvrs.in>
Permission is hereby granted, free of charge, to any person obtaining a Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"), copy of this software and associated documentation files (the "Software"),

1
src/Magnum/Platform/Sdl2Application.h

@ -6,6 +6,7 @@
Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019,
2020, 2021 Vladimír Vondruš <mosra@centrum.cz> 2020, 2021 Vladimír Vondruš <mosra@centrum.cz>
Copyright © 2019 Marco Melorio <m.melorio@icloud.com> Copyright © 2019 Marco Melorio <m.melorio@icloud.com>
Copyright © 2022 Pablo Escobar <mail@rvrs.in>
Permission is hereby granted, free of charge, to any person obtaining a Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"), copy of this software and associated documentation files (the "Software"),

Loading…
Cancel
Save