Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update urls #118

Merged
merged 1 commit into from
Oct 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ authors:
date-released: 2024-06-07
version: "0.2.0"
doi: 10.5281/zenodo.13938389
repository-code: "https://github.com/fverdugo/GalerkinToolkit.jl"
repository-code: "https://github.com/GalerkinToolkit/GalerkinToolkit.jl"
keywords:
- FEM
- Julia
Expand Down
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# GalerkinToolkit

[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://fverdugo.github.io/GalerkinToolkit.jl/stable/)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://fverdugo.github.io/GalerkinToolkit.jl/dev/)
[![Build Status](https://github.com/fverdugo/GalerkinToolkit.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/fverdugo/GalerkinToolkit.jl/actions/workflows/CI.yml?query=branch%3Amain)
[![Coverage](https://codecov.io/gh/fverdugo/GalerkinToolkit.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/fverdugo/GalerkinToolkit.jl)
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://GalerkinToolkit.github.io/GalerkinToolkit.jl/stable/)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://GalerkinToolkit.github.io/GalerkinToolkit.jl/dev/)
[![Build Status](https://github.com/GalerkinToolkit/GalerkinToolkit.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/GalerkinToolkit/GalerkinToolkit.jl/actions/workflows/CI.yml?query=branch%3Amain)
[![Coverage](https://codecov.io/gh/GalerkinToolkit/GalerkinToolkit.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/GalerkinToolkit/GalerkinToolkit.jl)
[![DOI](https://zenodo.org/badge/497260571.svg)](https://doi.org/10.5281/zenodo.13938389)

## What
Expand All @@ -22,22 +22,22 @@ Since July 2024, this package is being developed with support from the [Netherla

## Documentation

- [**STABLE**](https://fverdugo.github.io/GalerkinToolkit.jl/stable) — **Documentation for the most recently tagged version.**
- [**LATEST**](https://fverdugo.github.io/GalerkinToolkit.jl/dev) — *Documentation for the in-development version.*
- [**STABLE**](https://GalerkinToolkit.github.io/GalerkinToolkit.jl/stable) — **Documentation for the most recently tagged version.**
- [**LATEST**](https://GalerkinToolkit.github.io/GalerkinToolkit.jl/dev) — *Documentation for the in-development version.*

## Help and discussion

- You can open a new discussion to ask questions [here](https://github.com/fverdugo/GalerkinToolkit.jl/discussions).
- If you have found a bug, open an issue [here](https://github.com/fverdugo/GalerkinToolkit.jl/issues). Do not forget to include a (minimal) reproducer.
- You can open a new discussion to ask questions [here](https://github.com/GalerkinToolkit/GalerkinToolkit.jl/discussions).
- If you have found a bug, open an issue [here](https://github.com/GalerkinToolkit/GalerkinToolkit.jl/issues). Do not forget to include a (minimal) reproducer.

## Contributing

This package is under active development and there are several ways to contribute:

- by enhancing the documentation (e.g., fixing typos, enhancing doc strings, adding examples).
- by addressing one of the [issues waiting for help](https://github.com/fverdugo/GalerkinToolkit.jl/labels/help%20wanted).
- by addressing one of the [issues waiting for help](https://github.com/GalerkinToolkit/GalerkinToolkit.jl/labels/help%20wanted).
- by adding more tests to increase the code coverage.
- by extending the current functionality. In this case, open a discussion [here](https://github.com/fverdugo/GalerkinToolkit.jl/discussions) to coordinate with the package maintainers before proposing significant changes.
- by extending the current functionality. In this case, open a discussion [here](https://github.com/GalerkinToolkit/GalerkinToolkit.jl/discussions) to coordinate with the package maintainers before proposing significant changes.

Discuss with the package authors before working on any non-trivial contribution.

Expand Down
4 changes: 2 additions & 2 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ makedocs(;
sitename="GalerkinToolkit.jl",
format=Documenter.HTML(;
prettyurls=get(ENV, "CI", "false") == "true",
canonical="https://fverdugo.github.io/GalerkinToolkit.jl",
canonical="https://GalerkinToolkit.github.io/GalerkinToolkit.jl",
assets=String[],
),
pages=[
Expand All @@ -23,6 +23,6 @@ makedocs(;
)

deploydocs(;
repo="github.com/fverdugo/GalerkinToolkit.jl",
repo="github.com/GalerkinToolkit/GalerkinToolkit.jl",
devbranch="main",
)
2 changes: 1 addition & 1 deletion docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ CurrentModule = GalerkinToolkit

# GalerkinToolkit

Documentation for [GalerkinToolkit](https://github.com/fverdugo/GalerkinToolkit.jl).
Documentation for [GalerkinToolkit](https://github.com/GalerkinToolkit/GalerkinToolkit.jl).


Loading