Browse Source

doc: updated credits and changelog.

pull/419/merge
Vladimír Vondruš 2 years ago
parent
commit
b2aa03c14d
  1. 1
      doc/building.dox
  2. 3
      doc/changelog.dox
  3. 2
      doc/credits.dox
  4. 29
      package/rpm/build.sh

1
doc/building.dox

@ -5,6 +5,7 @@
2020, 2021, 2022, 2023, 2024 2020, 2021, 2022, 2023, 2024
Vladimír Vondruš <mosra@centrum.cz> Vladimír Vondruš <mosra@centrum.cz>
Copyright © 2018 Jonathan Hale <squareys@googlemail.com> Copyright © 2018 Jonathan Hale <squareys@googlemail.com>
Copyright © 2024 Igal Alkon <igal.alkon@gmail.com>
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"),

3
doc/changelog.dox

@ -1107,6 +1107,9 @@ See also:
- The `FindSDL2.cmake` module now delegates to SDL's own CMake config file, - The `FindSDL2.cmake` module now delegates to SDL's own CMake config file,
if available, especially to ensure all dependencies are correctly linked on if available, especially to ensure all dependencies are correctly linked on
static builds (see [mosra/magnum#553](https://github.com/mosra/magnum/issues/553)) static builds (see [mosra/magnum#553](https://github.com/mosra/magnum/issues/553))
- Created a RPM package with a helper script for building (see
[mosra/magnum#537](https://github.com/mosra/magnum/pull/537) and
[mosra/magnum#650](https://github.com/mosra/magnum/pull/650))
@subsection changelog-latest-bugfixes Bug fixes @subsection changelog-latest-bugfixes Bug fixes

2
doc/credits.dox

@ -82,6 +82,7 @@ Big thanks to everyone involved!
Are the below lists missing your name or something's wrong? Are the below lists missing your name or something's wrong?
[Let us know!](https://magnum.graphics/contact/) [Let us know!](https://magnum.graphics/contact/)
- **[\@1b00](https://github.com/1b00)** --- RPM package
- **Aaron Gokaslan** ([\@Skylion007](https://github.com/Skylion007)) --- - **Aaron Gokaslan** ([\@Skylion007](https://github.com/Skylion007)) ---
Emscripten LTO support, various minor code modernization, typo fixes Emscripten LTO support, various minor code modernization, typo fixes
- **[\@abgita](https://github.com/abgita)** --- minor typo fixes - **[\@abgita](https://github.com/abgita)** --- minor typo fixes
@ -154,6 +155,7 @@ Are the below lists missing your name or something's wrong?
- **Hugo Amnov** ([\@hugoam](https://github.com/hugoam)) --- Additions, - **Hugo Amnov** ([\@hugoam](https://github.com/hugoam)) --- Additions,
usability improvements and performance optimization in the @ref GL library, usability improvements and performance optimization in the @ref GL library,
buildsystem improvements and STL usage cleanup buildsystem improvements and STL usage cleanup
- **Igal Alkon** ([\@alkavan](https://github.com/alkavan)) --- RPM packages
- **Ivan P.** ([\@uzername](https://github.com/uzername)) --- documentation - **Ivan P.** ([\@uzername](https://github.com/uzername)) --- documentation
improvements improvements
- **Ivan Sanz Carasa** ([\@isc30](https://github.com/isc30)) --- buildsystem - **Ivan Sanz Carasa** ([\@isc30](https://github.com/isc30)) --- buildsystem

29
package/rpm/build.sh

@ -1,5 +1,34 @@
#!/bin/sh #!/bin/sh
#
# This file is part of Corrade.
#
# Copyright © 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016,
# 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024
# Vladimír Vondruš <mosra@centrum.cz>
# Copyright © 2018, 2020, 2021, 2022, 2023, 2024
# Igal Alkon <igal.alkon@gmail.com>
# Copyright © 2021 1b00 <1b00@pm.me>
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.
#
set -e set -e
# Get version slug # Get version slug

Loading…
Cancel
Save