Skip to content

Commit 85573fe

Browse files
committed
Version 0.15
Add missing changelog. v0.15 tag/release was previously set on cc5e1da about 3 weeks ago, will attempt to change tag into this commit.
1 parent cc5e1da commit 85573fe

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

implot.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
// SOFTWARE.
2222

23-
// ImPlot v0.14
23+
// ImPlot v0.15
2424

2525
/*
2626
@@ -31,6 +31,8 @@ Below is a change-log of API breaking changes only. If you are using one of the
3131
When you are not sure about a old symbol or function name, try using the Search/Find function of your IDE to look for comments or references in all implot files.
3232
You can read releases logs https://github.com/epezent/implot/releases for more details.
3333
34+
- 2023/06/26 (0.15) - Various build fixes related to updates in Dear ImGui internals.
35+
- 2022/11/25 (0.15) - Make PlotText honor ImPlotItemFlags_NoFit.
3436
- 2022/06/19 (0.14) - The signature of ColormapScale has changed to accommodate a new ImPlotColormapScaleFlags parameter
3537
- 2022/06/17 (0.14) - **IMPORTANT** All PlotX functions now take an ImPlotX_Flags `flags` parameter. Where applicable, it is located before the existing `offset` and `stride` parameters.
3638
If you were providing offset and stride values, you will need to update your function call to include a `flags` value. If you fail to do this, you will likely see

implot.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
// SOFTWARE.
2222

23-
// ImPlot v0.14
23+
// ImPlot v0.15
2424

2525
// Table of Contents:
2626
//
@@ -60,7 +60,7 @@
6060
#endif
6161

6262
// ImPlot version string.
63-
#define IMPLOT_VERSION "0.14"
63+
#define IMPLOT_VERSION "0.15"
6464
// Indicates variable should deduced automatically.
6565
#define IMPLOT_AUTO -1
6666
// Special color used to indicate that a color should be deduced automatically.

implot_demo.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
// SOFTWARE.
2222

23-
// ImPlot v0.14
23+
// ImPlot v0.15
2424

2525
// We define this so that the demo does not accidentally use deprecated API
2626
#ifndef IMPLOT_DISABLE_OBSOLETE_FUNCTIONS

implot_internal.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
// SOFTWARE.
2222

23-
// ImPlot v0.14
23+
// ImPlot v0.15
2424

2525
// You may use this file to debug, understand or extend ImPlot features but we
2626
// don't provide any guarantee of forward compatibility!

implot_items.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
// SOFTWARE.
2222

23-
// ImPlot v0.14
23+
// ImPlot v0.15
2424

2525
#define IMGUI_DEFINE_MATH_OPERATORS
2626
#include "implot.h"

0 commit comments

Comments
 (0)