Skip to content

Commit e3a257b

Browse files
committed
Update links to point to the new repo
Also updated the changelog a bit.
1 parent fb625a6 commit e3a257b

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# CImGui
22

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)
44
[![pkgeval](https://juliahub.com/docs/CImGui/pkgeval.svg)](https://juliahub.com/ui/Packages/CImGui/HqG2H)
55
[![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)
77
[![](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)
1111
[![deps](https://juliahub.com/docs/CImGui/deps.svg)](https://juliahub.com/ui/Packages/CImGui/HqG2H?t=2)
1212

1313
This package provides a Julia language wrapper for
@@ -20,4 +20,4 @@ use cases.
2020

2121
![demo](demo/demo.png)
2222

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.

docs/make.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Changelog.generate(
1212
Changelog.Documenter(),
1313
joinpath(@__DIR__, "src/_changelog.md"),
1414
joinpath(@__DIR__, "src/changelog.md"),
15-
repo="Gnimuc/CImGui.jl"
15+
repo="JuliaImGui/CImGui.jl"
1616
)
1717

1818
makedocs(;
@@ -21,7 +21,7 @@ makedocs(;
2121
sitename="CImGui.jl",
2222
format=Documenter.HTML(;
2323
prettyurls=get(ENV, "CI", "false") == "true",
24-
canonical="https://Gnimuc.github.io/CImGui.jl",
24+
canonical="https://juliaimgui.github.io/CImGui.jl",
2525
assets=String[],
2626
size_threshold=2_000_000,
2727
size_threshold_warn=1_500_000
@@ -30,5 +30,5 @@ makedocs(;
3030
)
3131

3232
deploydocs(;
33-
repo="github.com/Gnimuc/CImGui.jl.git",
33+
repo="github.com/JuliaImGui/CImGui.jl.git",
3434
)

docs/src/_changelog.md

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

9-
## [v4.0.0] - 2024-11-19
9+
## [v4.0.0] - 2024-12-21
1010

1111
### Changed
1212
- **Breaking**: We updated to [Dear ImGui
@@ -22,7 +22,7 @@ Changelog](https://keepachangelog.com).
2222
respectively.
2323

2424
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>
2626

2727
## [v3.1.1] - 2024-11-05
2828

docs/src/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ julia> julia_demo()
4444
```
4545

4646
[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
4848
one-to-one ported from [Dear ImGui's C++
4949
examples](https://github.com/ocornut/imgui/blob/master/imgui_demo.cpp) and there
5050
is an [interactive

docs/src/makie.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ It supports all the interaction features in GLMakie:
2121
- Ctrl + left click to reset the limits
2222

2323
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)
2525
(you may want to `Right click -> Open in new tab` to see it in full resolution):
2626
![Makie demo](assets/makie-demo.gif)
2727

src/CImGui.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ end
9595
tooltip=true, stats=false)
9696
9797
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)
9999
for an example of how to use it.
100100
101101
These are the [interaction

0 commit comments

Comments
 (0)