From 51a82728f9ca57d97f655a9072f263036d572e4a Mon Sep 17 00:00:00 2001 From: "Viral B. Shah" Date: Mon, 28 Apr 2025 17:36:01 -0400 Subject: [PATCH 1/3] Update Documentation.yml --- .github/workflows/Documentation.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Documentation.yml b/.github/workflows/Documentation.yml index 1c97275d..6fc79024 100644 --- a/.github/workflows/Documentation.yml +++ b/.github/workflows/Documentation.yml @@ -16,12 +16,12 @@ jobs: julia-version: [1] os: [ubuntu-latest] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: julia-actions/setup-julia@latest with: version: ${{ matrix.julia-version }} - name: Cache artifacts - uses: actions/cache@v1 + uses: actions/cache@v4 env: cache-name: cache-artifacts with: From f3d3a1cb8ac2d9dc2c6d3581bfc8884105b85ca3 Mon Sep 17 00:00:00 2001 From: Viral Shah Date: Mon, 28 Apr 2025 18:17:45 -0400 Subject: [PATCH 2/3] Fix docs --- docs/Project.toml | 4 ++-- docs/make.jl | 9 ++++++--- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/docs/Project.toml b/docs/Project.toml index f0b4b9cc..9c36108d 100644 --- a/docs/Project.toml +++ b/docs/Project.toml @@ -16,5 +16,5 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2" TestImages = "5e47fb64-e119-507b-a336-dd2b206d9990" [compat] -DemoCards = "0.4" -Documenter = "0.27" +DemoCards = "0.5" +Documenter = "1" diff --git a/docs/make.jl b/docs/make.jl index bc567620..c897675d 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -11,18 +11,21 @@ demos, demos_cb, demos_assets = makedemos("demos") assets = [] isnothing(demos_assets) || (push!(assets, demos_assets)) format = Documenter.HTML(prettyurls = get(ENV, "CI", nothing) == "true", - assets = assets) + assets = assets, + size_threshold = 1_000_000, + edit_link = nothing) makedocs( modules=[ImageFiltering, OffsetArrays, Kernel, KernelFactors, ImageFiltering.MapWindow], + warnonly = :missing_docs, format=format, sitename="ImageFiltering", pages=[ "index.md", "Tutorials" => [ "Tutorial 1" => "tutorials/tutorial1.md", - ], - demos, + ], + "Demos" => demos, "Filtering images" => "filters.md", "Kernels" => "kernels.md", "Gradients" => "gradients.md", From 1fa10060ae8a0388df134bbc42f85d21bd1cc4e4 Mon Sep 17 00:00:00 2001 From: "Viral B. Shah" Date: Mon, 28 Apr 2025 18:26:47 -0400 Subject: [PATCH 3/3] Update make.jl --- docs/make.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/make.jl b/docs/make.jl index c897675d..6b7fae19 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -25,7 +25,7 @@ makedocs( "Tutorials" => [ "Tutorial 1" => "tutorials/tutorial1.md", ], - "Demos" => demos, + demos, "Filtering images" => "filters.md", "Kernels" => "kernels.md", "Gradients" => "gradients.md",