Skip to content

Commit 2f1607d

Browse files
committed
Merge branch 'dev'
2 parents 55df9b0 + 2b3c497 commit 2f1607d

File tree

6 files changed

+276
-166
lines changed

6 files changed

+276
-166
lines changed

CHANGELOG.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog] and this project adheres to [Semantic Versioning].
55

6-
## [next] - 2.1.0.3
6+
## [next] - 2.1.1.2
7+
8+
## [2.1.1.1] - 2023-03-31
9+
### Changed
10+
- Update upstream version from **2.1.0** to **2.1.1**
711

812
## [2.1.0.2] - 2022-01-10
913
### Fixed
10-
1114
- Fix compilation issues with `Qt >= 6.2.0` (thanks to _miccs_ on thread forum [qt 6.2 patch][path-qt-6.2])
1215

1316
## [2.1.0.1] - 2022-01-10
@@ -22,7 +25,9 @@ Creation of the repository which provides :
2225
[semantic versioning]: https://semver.org/spec/v2.0.0.html
2326

2427
<!-- Versions -->
25-
[next]: https://github.com/leger50/QCustomPlot-library/compare/2.1.0.2...dev
28+
[next]: https://github.com/leger50/QCustomPlot-library/compare/2.1.1.1...dev
29+
30+
[2.1.1.1]: https://github.com/leger50/QCustomPlot-library/compare/2.1.0.2...2.1.1.1
2631
[2.1.0.2]: https://github.com/leger50/QCustomPlot-library/compare/2.1.0.1...2.1.0.2
2732
[2.1.0.1]: https://github.com/leger50/QCustomPlot-library/releases/tag/2.1.0.1
2833

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ This repository also provide a [changelog][changelog-repo] in order to track cha
1616

1717
| Library version | Qt compatibility |
1818
| :-: | :-: |
19+
| [2.1.1.1][tag-2.1.1.1] | `Qt 4.6.x` -> `Qt 6.4.x` |
1920
| [2.1.0.2][tag-2.1.0.2] | `Qt 5.8.x` -> `Qt 6.2.x` |
2021
| [2.1.0.1][tag-2.1.0.1] | `Qt 4.6.x` -> `Qt 6.0.0` |
2122

@@ -57,5 +58,6 @@ target_compile_definitions(${PROJECT_NAME} PRIVATE QCUSTOMPLOT_USE_LIBRARY)
5758
[changelog-official]: https://github.com/leger50/QCustomPlot-library/blob/dev/changelog-official.txt
5859
[license]: https://github.com/leger50/QCustomPlot-library/blob/master/LICENSE.md
5960

61+
[tag-2.1.1.1]: https://github.com/leger50/QCustomPlot-library/releases/tag/2.1.1.1
6062
[tag-2.1.0.2]: https://github.com/leger50/QCustomPlot-library/releases/tag/2.1.0.2
6163
[tag-2.1.0.1]: https://github.com/leger50/QCustomPlot-library/releases/tag/2.1.0.1

changelog-official.txt

100644100755
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
#### Version 2.1.1 released on 06.11.22 ####
2+
3+
Added features:
4+
- Qt6.4 Compatibility
5+
6+
Bugfixes:
7+
- dynamically changing device pixel ratios (e.g. when moving between different DPI screens) is handled properly
8+
- bugfix Colormap autoscaling: recalculateDataBounds() if (0, 0) data point is NaN.
9+
- minor bugfix in getMantissa for certain values due to rounding errors
10+
- Graphs with line style lsImpulse properly ignore NaN data points
11+
- fixed issue where QCP wasn't greyed out together with the rest of the UI on embedded systems when a modal dialog is shown
12+
(QCustomPlot no longer has the Qt::WA_OpaquePaintEvent attribute enabled by default)
13+
14+
Other:
15+
- in QCPAxisPainterPrivate::getTickLabelData, don't use fixed 'e', but locale aware character of parent plot locale
16+
- Axis rescaling now ignores +/- Inf in data values
17+
- slight performance improvements of QCPColorMap colorization and fills.
18+
119
#### Version 2.1.0 released on 29.03.21 ####
220

321
Added features:

lib/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.14)
22

33
# Set project properties
44
set(PROJECT_NAME qcustomplot)
5-
set(PROJECT_VERSION_SEMANTIC 2.1.0.2)
5+
set(PROJECT_VERSION_SEMANTIC 2.1.1.1)
66
set(PROJECT_VERSION_CPP_MIN 11)
77

88
# Set project options

0 commit comments

Comments
 (0)