Skip to content

Commit 8027678

Browse files
committed
update limks after moving to WIAS-PDELib org
1 parent fcfdb7a commit 8027678

File tree

4 files changed

+18
-16
lines changed

4 files changed

+18
-16
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Changelog
22

3+
## [1.8.1] - 2024-11-02
4+
- update links after move to WIAS-PDELib org
35

46
## [1.8.0] - 2024-09-29
57

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "GridVisualize"
22
uuid = "5eed8a63-0fb0-45eb-886d-8d5a387d12b8"
33
authors = ["Juergen Fuhrmann <[email protected]>"]
4-
version = "1.8"
4+
version = "1.8.1"
55

66
[deps]
77
ColorSchemes = "35d6a980-a343-548e-a6ea-1d62b119f2f4"
@@ -23,7 +23,7 @@ StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
2323
[compat]
2424
CairoMakie = "0.11.3, 0.12"
2525
ColorSchemes = "3"
26-
Colors = "0.12,1"
26+
Colors = "0.12,0.13,1"
2727
DocStringExtensions = "0.8,0.9"
2828
ElasticArrays = "1"
2929
ExtendableGrids = "1.10"

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
[![Build status](https://github.com/j-fu/GridVisualize.jl/workflows/linux-macos-windows/badge.svg)](https://github.com/j-fu/GridVisualize.jl/actions)
2-
[![](https://img.shields.io/badge/docs-stable-blue.svg)](https://j-fu.github.io/GridVisualize.jl/stable)
3-
[![](https://img.shields.io/badge/docs-dev-blue.svg)](https://j-fu.github.io/GridVisualize.jl/dev)
1+
[![Build status](https://github.com/WIAS-PDELib/GridVisualize.jl/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/WIAS-PDELib/GridVisualize.jl/actions/workflows/ci.yml?query=branch%3Amaster)
2+
[![](https://img.shields.io/badge/docs-stable-blue.svg)](https://WIAS-PDELib.github.io/GridVisualize.jl/stable)
3+
[![](https://img.shields.io/badge/docs-dev-blue.svg)](https://WIAS-PDELib.github.io/GridVisualize.jl/dev)
44

55
GridVisualize
66
=============
77

8-
Plotting companion module for [ExtendableGrids.jl](https://github.com/j-fu/ExtendableGrids.jl)
8+
Plotting companion module for [ExtendableGrids.jl](https://github.com/WIAS-PDELib/ExtendableGrids.jl)
99
Provides plotting of grids, scalar piecewise linear functions and vectors (2D only) for various plotting backends
1010
on simplicial grids in one, two or three space dimensions. The main supported backends
1111
are CairoMakie, GLMakie, PyPlot, and PlutoVista. Plots is only partially supported (1D and 2D rectangular grids).
@@ -29,7 +29,7 @@ This works for 1/2/3D grids and either a function represented by its
2929
values on the nodes of the grid, or a scalar function of 1, 2 or 3
3030
variables, respectively. Vector and stream plots are currenly available for 2D only.
3131

32-
The `grid` argument should be an `ExtendableGrid` as defined by the [ExtendableGrids.jl](https://github.com/j-fu/ExtendableGrids.jl) package.
32+
The `grid` argument should be an `ExtendableGrid` as defined by the [ExtendableGrids.jl](https://github.com/WIAS-PDELib/ExtendableGrids.jl) package.
3333
Instead of `grid`, the following arguments can be passed in order to describe a grid (which then is internally created on-the-fly):
3434
- An `AbstractVector` `X` specifying an 1D grid
3535
- `AbstractVector`s `X,Y` specifying a 2D grid
@@ -39,7 +39,7 @@ Instead of `grid`, the following arguments can be passed in order to describe a
3939
a `dim`-dimensional simplex grid with `nn` nodes and `nc` simplices.
4040

4141
Plot appearance can be tweaked by a number of
42-
[keyword arguments](https://j-fu.github.io/GridVisualize.jl/dev/api/#GridVisualize.available_kwargs).
42+
[keyword arguments](https://WIAS-PDELib.github.io/GridVisualize.jl/dev/api/#GridVisualize.available_kwargs).
4343

4444
### Plotters
4545
Plotters can be e.g. Plots, PyPlot, GLMakie, CairoMakie PlutoVista - we pass the module exported
@@ -150,20 +150,20 @@ and all plotting functions will do nothing.
150150

151151

152152
### [PyPlot](https://github.com/JuliaPy/PyPlot.jl):
153-
![](https://github.com/j-fu/GridVisualize.jl/blob/main/docs/src/assets/multiscene_pyplot.png?raw=true)
153+
![](https://github.com/WIAS-PDELib/GridVisualize.jl/blob/main/docs/src/assets/multiscene_pyplot.png?raw=true)
154154

155155

156156
### [GLMakie](https://github.com/JuliaPlots/GLMakie.jl):
157157

158-
![](https://github.com/j-fu/GridVisualize.jl/blob/main/docs/src/assets/multiscene_glmakie.png?raw=true)
158+
![](https://github.com/WIAS-PDELib/GridVisualize.jl/blob/main/docs/src/assets/multiscene_glmakie.png?raw=true)
159159

160160

161161
### [Plots/gr](https://github.com/JuliaPlots/Plots.jl):
162-
![](https://github.com/j-fu/GridVisualize.jl/blob/main/docs/src/assets/multiscene_plots.png?raw=true")
162+
![](https://github.com/WIAS-PDELib/GridVisualize.jl/blob/main/docs/src/assets/multiscene_plots.png?raw=true")
163163

164164

165165
### [VTKView](https://github.com/j-fu/VTKView.jl):
166-
![](https://github.com/j-fu/GridVisualize.jl/blob/main/docs/src/assets/multiscene_vtkview.png?raw=true")
166+
![](https://github.com/WIAS-PDELib/GridVisualize.jl/blob/main/docs/src/assets/multiscene_vtkview.png?raw=true")
167167

168168
## vscode
169169
Plotting into the plot pane of Visual Studio Code is working. Here, you can use CairoMakie or WGLMakie as backend. This works only with the mutating functions, i.e. you should use something like
@@ -179,8 +179,8 @@ Plotting in Pluto notebooks for CairoMakie, PyPlot, Plots, GLMakie is working, W
179179

180180
Plotting in Pluto notebooks can use [PlutoVista.jl](https://github.com/j-fu/PlutoVista.jl)
181181
based on [plotly.js](https://plotly.com/javascript/) (1D) and [vtk.js](https://kitware.github.io/vtk-js/index.html) (2/3D).
182-
See the example notebook: [pluto](https://raw.githubusercontent.com/j-fu/GridVisualize.jl/main/examples/plutovista.jl),
183-
[html](https://j-fu.github.io/GridVisualize.jl/dev/plutovista.html).
182+
See the example notebook: [pluto](https://raw.githubusercontent.com/WIAS-PDELib/GridVisualize.jl/main/examples/plutovista.jl),
183+
[html](https://WIAS-PDELib.github.io/GridVisualize.jl/dev/plutovista.html).
184184

185185

186186
### Jupyter

docs/make.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ function mkdocs()
3535
doctest = false,
3636
clean = false,
3737
authors = "J. Fuhrmann",
38-
repo = "https://github.com/j-fu/GridVisualize.jl",
38+
repo = "https://github.com/WIAS-PDELib/GridVisualize.jl",
3939
pages = [
4040
"Home" => "index.md",
4141
"Public API" => "api.md",
@@ -46,4 +46,4 @@ end
4646

4747
mkdocs()
4848

49-
deploydocs(; repo = "github.com/j-fu/GridVisualize.jl.git", devbranch = "main")
49+
deploydocs(; repo = "github.com/WIAS-PDELib/GridVisualize.jl.git", devbranch = "main")

0 commit comments

Comments
 (0)