File tree Expand file tree Collapse file tree 6 files changed +14
-14
lines changed Expand file tree Collapse file tree 6 files changed +14
-14
lines changed Original file line number Diff line number Diff line change 1
1
# CImGui
2
2
3
- [ ![ Build Status] ( https://github.com/Gnimuc /CImGui.jl/workflows/CI/badge.svg )] ( https://github.com/Gnimuc /CImGui.jl/actions/workflows/ci.yml )
3
+ [ ![ Build Status] ( https://github.com/JuliaImGui /CImGui.jl/workflows/CI/badge.svg )] ( https://github.com/JuliaImGui /CImGui.jl/actions/workflows/ci.yml )
4
4
[ ![ pkgeval] ( https://juliahub.com/docs/CImGui/pkgeval.svg )] ( https://juliahub.com/ui/Packages/CImGui/HqG2H )
5
5
[ ![ version] ( https://juliahub.com/docs/General/CImGui/stable/version.svg )] ( https://juliahub.com/ui/Packages/General/CImGui )
6
- [ ![ codecov] ( https://codecov.io/gh/Gnimuc /CImGui.jl/graph/badge.svg?token=KLCkl2pB7N )] ( https://codecov.io/gh/Gnimuc /CImGui.jl )
6
+ [ ![ codecov] ( https://codecov.io/gh/JuliaImGui /CImGui.jl/graph/badge.svg?token=KLCkl2pB7N )] ( https://codecov.io/gh/JuliaImGui /CImGui.jl )
7
7
[ ![ ] ( https://img.shields.io/badge/design%20principle-KISS-orange )] ( https://en.wikipedia.org/wiki/KISS_principle )
8
- [ ![ ] ( https://img.shields.io/badge/docs-stable-blue.svg )] ( https://Gnimuc .github.io/CImGui.jl/stable )
9
- [ ![ ] ( https://img.shields.io/badge/docs-dev-blue.svg )] ( https://Gnimuc .github.io/CImGui.jl/dev )
10
- ![ GitHub Discussions] ( https://img.shields.io/github/discussions/Gnimuc /CImGui.jl )
8
+ [ ![ ] ( https://img.shields.io/badge/docs-stable-blue.svg )] ( https://JuliaImGui .github.io/CImGui.jl/stable )
9
+ [ ![ ] ( https://img.shields.io/badge/docs-dev-blue.svg )] ( https://JuliaImGui .github.io/CImGui.jl/dev )
10
+ ![ GitHub Discussions] ( https://img.shields.io/github/discussions/JuliaImGui /CImGui.jl )
11
11
[ ![ deps] ( https://juliahub.com/docs/CImGui/deps.svg )] ( https://juliahub.com/ui/Packages/CImGui/HqG2H?t=2 )
12
12
13
13
This package provides a Julia language wrapper for
@@ -20,4 +20,4 @@ use cases.
20
20
21
21
![ demo] ( demo/demo.png )
22
22
23
- See the [ documentation] ( https://Gnimuc .github.io/CImGui.jl/stable ) for more info.
23
+ See the [ documentation] ( https://juliaimgui .github.io/CImGui.jl/stable ) for more info.
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ Changelog.generate(
12
12
Changelog. Documenter (),
13
13
joinpath (@__DIR__ , " src/_changelog.md" ),
14
14
joinpath (@__DIR__ , " src/changelog.md" ),
15
- repo= " Gnimuc /CImGui.jl"
15
+ repo= " JuliaImGui /CImGui.jl"
16
16
)
17
17
18
18
makedocs (;
@@ -21,7 +21,7 @@ makedocs(;
21
21
sitename= " CImGui.jl" ,
22
22
format= Documenter. HTML (;
23
23
prettyurls= get (ENV , " CI" , " false" ) == " true" ,
24
- canonical= " https://Gnimuc .github.io/CImGui.jl" ,
24
+ canonical= " https://juliaimgui .github.io/CImGui.jl" ,
25
25
assets= String[],
26
26
size_threshold= 2_000_000 ,
27
27
size_threshold_warn= 1_500_000
@@ -30,5 +30,5 @@ makedocs(;
30
30
)
31
31
32
32
deploydocs (;
33
- repo= " github.com/Gnimuc /CImGui.jl.git" ,
33
+ repo= " github.com/JuliaImGui /CImGui.jl.git" ,
34
34
)
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ CurrentModule = CImGui
6
6
This documents notable changes in CImGui.jl. The format is based on [ Keep a
7
7
Changelog] ( https://keepachangelog.com ) .
8
8
9
- ## [ v4.0.0] - 2024-11-19
9
+ ## [ v4.0.0] - 2024-12-21
10
10
11
11
### Changed
12
12
- ** Breaking** : We updated to [ Dear ImGui
@@ -22,7 +22,7 @@ Changelog](https://keepachangelog.com).
22
22
respectively.
23
23
24
24
For Linux/GLFW users, there's also a fix for a long-standing docking bug:
25
- https://github.com/ocornut/imgui/issues/7733
25
+ < https://github.com/ocornut/imgui/issues/7733 >
26
26
27
27
## [ v3.1.1] - 2024-11-05
28
28
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ julia> julia_demo()
44
44
```
45
45
46
46
[ All of these
47
- examples] ( https://github.com/Gnimuc /CImGui.jl/tree/master/examples ) are
47
+ examples] ( https://github.com/JuliaImGui /CImGui.jl/tree/master/examples ) are
48
48
one-to-one ported from [ Dear ImGui's C++
49
49
examples] ( https://github.com/ocornut/imgui/blob/master/imgui_demo.cpp ) and there
50
50
is an [ interactive
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ It supports all the interaction features in GLMakie:
21
21
- Ctrl + left click to reset the limits
22
22
23
23
Here's a quick demo using
24
- [ ` examples/makie_demo.jl ` ] ( https://github.com/Gnimuc /CImGui.jl/blob/master/examples/makie_demo.jl )
24
+ [ ` examples/makie_demo.jl ` ] ( https://github.com/JuliaImGui /CImGui.jl/blob/master/examples/makie_demo.jl )
25
25
(you may want to ` Right click -> Open in new tab ` to see it in full resolution):
26
26
![ Makie demo] ( assets/makie-demo.gif )
27
27
Original file line number Diff line number Diff line change 95
95
tooltip=true, stats=false)
96
96
97
97
Display a Makie figure in ImGui. See
98
- [`examples/makie_demo.jl`](https://github.com/Gnimuc /CImGui.jl/blob/master/examples/makie_demo.jl)
98
+ [`examples/makie_demo.jl`](https://github.com/JuliaImGui /CImGui.jl/blob/master/examples/makie_demo.jl)
99
99
for an example of how to use it.
100
100
101
101
These are the [interaction
You can’t perform that action at this time.
0 commit comments