File tree 6 files changed +33
-5
lines changed
6 files changed +33
-5
lines changed Original file line number Diff line number Diff line change 1
1
name = " CImGui"
2
2
uuid = " 5d785b6c-b76f-510e-a07c-3070796c7e87"
3
3
authors = [
" Yupei Qi <[email protected] >" ]
4
- version = " 1.89.0 "
4
+ version = " 1.89.1 "
5
5
6
6
[deps ]
7
7
CEnum = " fa961155-64e5-5f13-b03f-caf6b980ea82"
Original file line number Diff line number Diff line change 1
1
build /
2
2
site /
3
+ src /changelog.md
Original file line number Diff line number Diff line change 1
1
[deps ]
2
2
CImGui = " 5d785b6c-b76f-510e-a07c-3070796c7e87"
3
+ Changelog = " 5217a498-cd5d-4ec6-b8c2-9b85a09b6e3e"
3
4
Documenter = " e30172f5-a6a5-5a46-863b-614d45cd2de4"
4
5
5
6
[compat ]
Original file line number Diff line number Diff line change 1
1
using CImGui
2
2
using Documenter
3
+ import Changelog
4
+
5
+ # Note that the changelog file is named `_changelog.md` so we can use
6
+ # `changelog.md` as the generated name, which makes for a prettier URL.
7
+ Changelog. generate (
8
+ Changelog. Documenter (),
9
+ joinpath (@__DIR__ , " src/_changelog.md" ),
10
+ joinpath (@__DIR__ , " src/changelog.md" ),
11
+ repo= " Gnimuc/CImGui.jl"
12
+ )
3
13
4
14
makedocs (;
5
15
modules= [CImGui],
@@ -12,8 +22,9 @@ makedocs(;
12
22
size_threshold= 400000
13
23
),
14
24
pages= [
15
- " Introduction" => " index.md" ,
16
- " API Reference" => " api.md" ,
25
+ " Introduction" => " index.md" ,
26
+ " API Reference" => " api.md" ,
27
+ " Changelog" => " changelog.md"
17
28
]
18
29
)
19
30
Original file line number Diff line number Diff line change
1
+ ``` @meta
2
+ CurrentModule = CImGui
3
+ ```
4
+
5
+ # Changelog
6
+
7
+ This documents notable changes in CImGui.jl. The format is based on [ Keep a
8
+ Changelog] ( https://keepachangelog.com ) .
9
+
10
+
11
+ ## [ v1.89.1] - 2024-05-19
12
+
13
+ ### Fixed
14
+
15
+ - Fixed the implementations of [ SetScrollX()] ( @ref ) and [ SetScrollY()] ( @ref ) ([ #115 ] ).
Original file line number Diff line number Diff line change @@ -527,13 +527,13 @@ GetScrollMaxY() = igGetScrollMaxY()
527
527
528
528
"""
529
529
SetScrollX(scroll_x)
530
- Set scrolling amount [0..GetScrollMaxX()].
530
+ Set scrolling amount [0..[ GetScrollMaxX()](@ref )].
531
531
"""
532
532
SetScrollX (scroll_x) = igSetScrollX_Float (scroll_x)
533
533
534
534
"""
535
535
SetScrollY(scroll_y)
536
- Set scrolling amount [0..GetScrollMaxY()].
536
+ Set scrolling amount [0..[ GetScrollMaxY()](@ref )].
537
537
"""
538
538
SetScrollY (scroll_y) = igSetScrollY_Float (scroll_y)
539
539
You can’t perform that action at this time.
0 commit comments