| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| Matplot++-1.2.0-Linux.tar.Z | 2023-05-29 | 7.2 MB | |
| Matplot++-1.2.0-Linux.tar.gz | 2023-05-29 | 4.8 MB | |
| Matplot++-1.2.0-Linux.sh | 2023-05-29 | 4.8 MB | |
| Matplot++-1.2.0-Darwin.tar.gz | 2023-05-29 | 4.5 MB | |
| Matplot++-1.2.0-Darwin.sh | 2023-05-29 | 4.5 MB | |
| Matplot++-1.2.0-win64.exe | 2023-05-29 | 4.1 MB | |
| Matplot++-1.2.0-win32.exe | 2023-05-29 | 3.7 MB | |
| README.md | 2023-05-29 | 3.6 kB | |
| v1.2.0 source code.tar.gz | 2023-05-29 | 39.0 MB | |
| v1.2.0 source code.zip | 2023-05-29 | 39.8 MB | |
| Totals: 10 Items | 112.5 MB | 2 | |
🚀 Features
- Added new colormap 'turbo' which exist in Matlab. [60f4b1] (thanks @diverger)
📦️ Build
- Check toolchain in config file. [542564]
- Adjust project name to match package name. Include version file in installer with semver compatibility. [f1b9bc]
- Create extra
matplot++alias target to match the package name. [28001e] - Enable C++17 for nodesoup. [95075d]
- Update CMake minimum version to 3.15. [26cfa7]
FindFilesystem.cmake: setCMAKE_CXX_STANDARDto 17 if not set. [aede75] (thanks @leha-bot)- Fix Cygwin installation. [c4474a] (thanks @gitplcc)
- Add Presets for Installation.[^1] [364737] (thanks @codeinred)
- CMake options have project prefix. (fix [#315]) [5b348b] (thanks @globberwops)
- Correct cmake variables.[^2] [e8b3e3] (thanks @david-x64)
- Fix reference to
Matplot++Config.cmake. [874e0c] (thanks @leha-bot) - Fix set_optimization_flags() (issue [#185]). [9c719c] (thanks @Morwenn)
🐛 Fixes
- Install matplot_opengl in CMake. [34a14c] (thanks @aminya)
- contourc: Remove unused variable. [f96bd9]
- examples: Disambiguate legend. [0bb237]
- Change
#ifdefof _dupenv_s branch in gnuplot.cpp. [7cb281] (thanks @rath3t) - Added ifs for MINGW compilation. [f35f37] (thanks @rath3t)
- Fix axis error in
axes_type::ylim(). [fdcae8] (thanks @eagle-dai) - Fix compiling on Cygwin. [f59039] (thanks @gitplcc)
- Fix warnings on MSVC, changing enum to enum class and initializing vars on default constructor. [ef2a5a]
- Fix "set title" command string when saving image.[^3] [c383b5] (thanks @wjdragon)
- Fix spurious toolchain warning. [f6fd4e] (thanks @codeinred)
- Fix quiver scaling to respect user input (#280).[^4] [e17c93] (thanks @acxz)
- Fix incorrect min/max values. [524e62] (thanks @csernib)
- Fix large numbers and add timestamp support (#273). [3c81ac] (thanks @TheGreatRambler)
- Fix localtime. (fix [#282]) [536fe9] (thanks @kwoodle)
- Fix missing include in colors.cpp. [400981] (thanks @tretre91)
- Prevent compilation errors because of dangling references with std::minmax. [3b7d12] (thanks @RTrioux)
🚦 Continuous Integration
- Update ubuntu. [937da5]
- Update macos. [0a8308]
📖 Documentation
- Fix typo in readme.[^5] [72cdc6] (thanks @aalbaali)
- Homebrew should not be run as root. [f547c8] (thanks @saxbophone)
Parent release: v1.1.0 [b45015]
[^1]: This commit adds presets for common use cases, including local and system installation. It also updates the README
to explain the use of these presets and how they can be used for installation.
[^2]: Correct cmake install target condition. The cmake variable BUILD_INSTALLER was renamed
to MATPLOTPP_BUILD_INSTALLER, but it was not updated in source/matplot/CMakeLists.txt. As a result Matplot++ was not
installed completely via cmake install target with cmake presets provided. This patch completes the renaming and now cmake
install works asexpected. Correct more cmake variable names after rename. More variables that seemed to be missed
by the recent renaming: This patch completes renaming of variables: BUILD_FOR_DOCUMENTATION_IMAGES,
BUILD_HIGH_RESOLUTION_WORLD_MAP, BUILD_WITH_PEDANTIC_WARNINGS, and BUILD_EXPERIMENTAL_OPENGL_BACKEND.
[^3]: Force appending of escaped double quote after font weight detection.
[^4]: Change scaling to be consistant across all directional vectors* increase scaling to keep the same plot.
[^5]: Add a missing closing bracket to the README file.