Skip to content

Commit d442de0

Browse files
authored
Merge pull request #169 from JuliaImGui/makie
Fix GLMakie compat bounds
2 parents 3bca098 + 6f8ed99 commit d442de0

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ CSyntax = "0.4"
2929
Compat = "4.16.0"
3030
DocStringExtensions = "0.9.3"
3131
GLFW = "3"
32-
GLMakie = "0.10.6, 0.11"
32+
GLMakie = "0.10.6, <0.11.3"
3333
ModernGL = "1"
3434
PrecompileTools = "1.2.1"
3535
Printf = "1"

docs/src/_changelog.md

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ CurrentModule = CImGui
66
This documents notable changes in CImGui.jl. The format is based on [Keep a
77
Changelog](https://keepachangelog.com).
88

9+
## Unreleased
10+
11+
### Fixed
12+
- Fixed compat bounds with GLMakie, currently we're restricted to <0.11.3 ([#169]).
13+
914
## [v5.1.0] - 2025-02-19
1015

1116
### Added

ext/MakieIntegration.jl

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ GLMakie.framebuffer_size(window::ImMakieWindow) = GLMakie.framebuffer_size(windo
4545
GLMakie.scale_factor(window::ImMakieWindow) = GLMakie.scale_factor(window.glfw_window)
4646
GLMakie.was_destroyed(window::ImMakieWindow) = GLMakie.was_destroyed(window.glfw_window)
4747
GLMakie.reopen!(x::GLMakie.Screen{ImMakieWindow}) = x
48+
GLMakie.destroy!(::ImMakieWindow) = nothing
4849
GLMakie.set_screen_visibility!(::GLMakie.Screen{ImMakieWindow}, ::Bool) = nothing
4950

5051
# ShaderAbstractions support

0 commit comments

Comments
 (0)