| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2025-05-24 | Update github actions runner image.HEADmaster | Vasile Vilvoiu | |
| 2024-02-13 | Document usage with FFmpeg (#31) | Bojidar Marinov | |
| 2023-08-27 | Typos in Args configuration. | Vasile Vilvoiu | |
| Ignore clangd cache. | |||
| 2023-05-06 | Bump to 0.9.3. | Vasile Vilvoiu | |
| 2023-05-06 | Adjust copyright notice year. | Vasile Vilvoiu | |
| 2023-05-06 | Add support for waiting for input. | Vasile Vilvoiu | |
| Introduce -S/--sleep_for_input command line argument. Closes #17. | |||
| 2023-05-06 | Fix previously introduced regression. | Vasile Vilvoiu | |
| 2023-05-06 | Remove std:: namespace of primitive types in tests. | Vasile Vilvoiu | |
| 2023-05-06 | Fix compilation issues. | Vasile Vilvoiu | |
| 2022-07-23 | Fix compilation issues. | Vasile Vilvoiu | |
| 2022-04-21 | Lower threshold for acceptable relative error of scale. | Vasile Vilvoiu | |
| We now display one more decimal place in some scenarios where we ignored an error of 1%. Closes #28. | |||
| 2022-04-21 | Remove SFML version warning from README. | Vasile Vilvoiu | |
| 2022-04-21 | Fix usage of bad version macros in header file. | Vasile Vilvoiu | |
| Closes #27. | |||
| 2021-10-21 | Renderer does not cache colromap and valuemap. | Vasile Vilvoiu | |
| * Renderer build colormap from configuration. * Renderer builds (temporary) valuemap from configuration. * LiveOutput no longer needs cmap/vmap parameters. | |||
| 2021-10-21 | Remove redundant const qualifier. | Vasile Vilvoiu | |
| 2021-10-21 | Refactor fft_area members to spectrogram members. | Vasile Vilvoiu | |
| 2021-10-20 | Add apt-get update to github workflow. | Vasile Vilvoiu | |
| Trying to fix dependency install issue. | |||
| 2021-10-20 | Add 'hot' and 'inferno' colormaps. | Vasile Vilvoiu | |
| Make 'inferno' default. | |||
| 2021-10-20 | gitignore file for readme images directory. | Vasile Vilvoiu | |
| 2021-10-20 | Prepare gitignore for in-source build. | Vasile Vilvoiu | |
| 2021-10-20 | Fix warning for signed/unsigned comparsion. | Vasile Vilvoiu | |
| 2021-10-20 | Remove foo version from CMakeLists.txt | Vasile Vilvoiu | |
| Closes #27. | |||
| 2021-10-20 | Support exit with ESC key. | Vasile Vilvoiu | |
| 2021-07-22 | Bump to 0.9.2. | Vasile Vilvoiu | |
| 2021-07-22 | Skip GetNiceTicks test when no Xorg is started. | Vasile Vilvoiu | |
| 2021-07-22 | Handle very small axes, when no nice value is found. | Vasile Vilvoiu | |
| Fixes #23. | |||
| 2021-07-22 | Adjust the way scale is computed for axes. | Vasile Vilvoiu | |
| Add extra digit only when error is greater than 1% of scale domain. Add unit test for Renderer (for axes related routines). Fixes #26. | |||
| 2021-07-22 | Fix window width calculation in Configuration. | Vasile Vilvoiu | |
| 2021-07-22 | Make argv const. | Vasile Vilvoiu | |
| 2021-07-21 | Added header file comments for classes and methods. | Vasile Vilvoiu | |
| Renamed all factory methods to ::Build(). | |||
| 2021-07-21 | Implement unit tests. | Vasile Vilvoiu | |
| ColorMap, FFT, InputParser, InputReader, ValueMap, WindowFunction. Closes #11. | |||
| 2021-07-21 | Checks in base InputReader class. | Vasile Vilvoiu | |
| Make InputReader::GetBuffer() a protected member. | |||
| 2021-07-21 | Input parser template instantiation. | Vasile Vilvoiu | |
| Using std:: types. | |||
| 2021-07-20 | Revert "Change M_PI to std::numbers::pi." | Vasile Vilvoiu | |
| This reverts commit 0f515bbd97712bf0fb11012b898e314770d5255e. Won't compile under gcc as deployed with Ubuntu 20.04. | |||
| 2021-07-20 | Change M_PI to std::numbers::pi. | Vasile Vilvoiu | |
| 2021-07-20 | No window constructor for FFT. | Vasile Vilvoiu | |
| NaN fix in FFT::Resample. FFT::Crop index fix. | |||
| 2021-07-20 | Fixed window function term computation. | Vasile Vilvoiu | |
| Adjust coefficients to numpy/scipy implementations. | |||
| 2021-07-19 | Move normalization from ValueMap to FFT class. | Vasile Vilvoiu | |
| 2021-07-19 | ValueMap constructor sanity checks. | Vasile Vilvoiu | |
| 2021-07-17 | Remove spdlog as a dependency. | Vasile Vilvoiu | |
| Closes #19. | |||
| 2021-07-16 | Fix typo in CHANGELOG. | Vasile Vilvoiu | |
| 2021-07-16 | Increment version to 0.9.1 | Vasile Vilvoiu | |
| 2021-07-16 | Re-generate example images. | Vasile Vilvoiu | |
| 2021-07-16 | Round very small values to zero in tick labels. | Vasile Vilvoiu | |
| Sometimes, due to representation errors, we have an axis boundary that should be zero but is actually negative and very small. In order to avoid printing "-0" we round off these values to zero. | |||
| 2021-07-16 | Adaptive tick spacing, based on tick label width. | Vasile Vilvoiu | |
| Fixes #18. | |||
| 2021-07-16 | Remove use of typeof() extension. | Vasile Vilvoiu | |
| 2021-07-16 | Render texture onto window on each iteration. | Vasile Vilvoiu | |
| Keep colormap in renderer so we don't pass the colormapped windows like animals. Pre-render empty window. Fixes #15. | |||
| 2021-07-16 | Fix branch on uninitialized value. | Vasile Vilvoiu | |
| 2021-07-16 | Add support for arbitrary scales, with custom units. | Vasile Vilvoiu | |
| Add support for linear scales. Logging of scale to stderr. Closes #9. | |||
| 2021-07-15 | Support "-" for input/output files as stdin/stdout. | Vasile Vilvoiu | |
| Support dumping output file to stdout. Switch logger to stderr, make it multithreaded. Log input/output files. Closes #8, closes #10, closes #13. | |||
