Browse Source

Doc++, updated credits and changelog.

pull/306/merge
Vladimír Vondruš 7 years ago
parent
commit
f178d0d441
  1. 18
      doc/changelog.dox
  2. 2
      doc/credits.dox
  3. 3
      src/MagnumPlugins/AnyAudioImporter/AnyImporter.cpp
  4. 3
      src/MagnumPlugins/AnyImageConverter/AnyImageConverter.cpp
  5. 3
      src/MagnumPlugins/AnyImageImporter/AnyImageImporter.cpp
  6. 3
      src/MagnumPlugins/AnySceneImporter/AnySceneImporter.cpp

18
doc/changelog.dox

@ -36,7 +36,23 @@ See also:
- @subpage changelog-extras "Extras changelog" - @subpage changelog-extras "Extras changelog"
- @subpage changelog-examples "Examples changelog" - @subpage changelog-examples "Examples changelog"
@anchor changelog-latest @section changelog-latest Changes since 2019.01
@subsection changelog-latest-changes Changes and improvements
@subsubsection changelog-latest-changes-audio Audio library
- The @ref Audio::AnyImporter "AnyAudioImporter" plugin now correctly
recognizes also uppercase file extensions (see
[mosra/magnum#312](https://github.com/mosra/magnum/pull/312))
@subsubsection changelog-latest-changes-trade Trade library
- The @ref Trade::AnyImageImporter "AnyImageImporter",
@ref Trade::AnyImageConverter "AnyImageConverter" and
@ref Trade::AnySceneImporter "AnySceneImporter" plugins now correctly
recognize also uppercase file extensions (see
[mosra/magnum#312](https://github.com/mosra/magnum/pull/312))
@section changelog-2019-01 2019.01 @section changelog-2019-01 2019.01

2
doc/credits.dox

@ -126,6 +126,8 @@ Are the below lists missing your name or something's wrong?
fixes fixes
- **Leon Moctezuma** ([\@leonidax](https://github.com/leonidax)) --- - **Leon Moctezuma** ([\@leonidax](https://github.com/leonidax)) ---
bugreports, API design direction bugreports, API design direction
- **Max Schwarz** ([\@xqms](https://github.com/xqms)) --- `Any*` plugin
improvements
- **Miguel Martin** ([\@miguelmartin75](https://github.com/miguelmartin75)) - **Miguel Martin** ([\@miguelmartin75](https://github.com/miguelmartin75))
--- initial macOS port, various other improvements --- initial macOS port, various other improvements
- **Nathan Ollerenshaw** ([\@matjam](https://github.com/matjam)) --- Ubuntu - **Nathan Ollerenshaw** ([\@matjam](https://github.com/matjam)) --- Ubuntu

3
src/MagnumPlugins/AnyAudioImporter/AnyImporter.cpp

@ -47,7 +47,8 @@ void AnyImporter::doClose() { _in = nullptr; }
void AnyImporter::doOpenFile(const std::string& filename) { void AnyImporter::doOpenFile(const std::string& filename) {
CORRADE_INTERNAL_ASSERT(manager()); CORRADE_INTERNAL_ASSERT(manager());
std::string normalized = Utility::String::lowercase(filename); /** @todo lowercase only the extension, once Directory::split() is done */
const std::string normalized = Utility::String::lowercase(filename);
/* Detect type from extension */ /* Detect type from extension */
std::string plugin; std::string plugin;

3
src/MagnumPlugins/AnyImageConverter/AnyImageConverter.cpp

@ -46,7 +46,8 @@ auto AnyImageConverter::doFeatures() const -> Features {
bool AnyImageConverter::doExportToFile(const ImageView2D& image, const std::string& filename) { bool AnyImageConverter::doExportToFile(const ImageView2D& image, const std::string& filename) {
CORRADE_INTERNAL_ASSERT(manager()); CORRADE_INTERNAL_ASSERT(manager());
std::string normalized = Utility::String::lowercase(filename); /** @todo lowercase only the extension, once Directory::split() is done */
const std::string normalized = Utility::String::lowercase(filename);
/* Detect type from extension */ /* Detect type from extension */
std::string plugin; std::string plugin;

3
src/MagnumPlugins/AnyImageImporter/AnyImageImporter.cpp

@ -51,7 +51,8 @@ void AnyImageImporter::doClose() {
void AnyImageImporter::doOpenFile(const std::string& filename) { void AnyImageImporter::doOpenFile(const std::string& filename) {
CORRADE_INTERNAL_ASSERT(manager()); CORRADE_INTERNAL_ASSERT(manager());
std::string normalized = Utility::String::lowercase(filename); /** @todo lowercase only the extension, once Directory::split() is done */
const std::string normalized = Utility::String::lowercase(filename);
/* Detect type from extension */ /* Detect type from extension */
std::string plugin; std::string plugin;

3
src/MagnumPlugins/AnySceneImporter/AnySceneImporter.cpp

@ -61,7 +61,8 @@ void AnySceneImporter::doClose() {
void AnySceneImporter::doOpenFile(const std::string& filename) { void AnySceneImporter::doOpenFile(const std::string& filename) {
CORRADE_INTERNAL_ASSERT(manager()); CORRADE_INTERNAL_ASSERT(manager());
std::string normalized = Utility::String::lowercase(filename); /** @todo lowercase only the extension, once Directory::split() is done */
const std::string normalized = Utility::String::lowercase(filename);
/* Detect type from extension */ /* Detect type from extension */
std::string plugin; std::string plugin;

Loading…
Cancel
Save