Skip to content

Commit b0f0b40

Browse files
committed
Update favicon paths and add new SVG files for dark and light modes
1 parent 798801a commit b0f0b40

File tree

7 files changed

+19
-13
lines changed

7 files changed

+19
-13
lines changed

docs/source/_static/js/favicon-theme.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ function setFavicon(e) {
33
const favicon = document.getElementById("favicon");
44
if (favicon) {
55
favicon.href = dark
6-
? "_static/logo/corese-core_doc_fav_dark.svg"
7-
: "_static/logo/corese-core_doc_fav_light.svg";
6+
? "_static/logo/corese_fav_dark.svg"
7+
: "_static/logo/corese_fav_light.svg";
88
}
99
}
1010

File renamed without changes.
File renamed without changes.

docs/source/_templates/layout.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
fav.rel = "icon";
99
fav.type = "image/svg+xml";
1010
fav.href = darkMode
11-
? "_static/logo/corese-core_doc_fav_dark.svg"
12-
: "_static/logo/corese-core_doc_fav_light.svg";
11+
? "_static/logo/corese_fav_dark.svg"
12+
: "_static/logo/corese_fav_light.svg";
1313
document.head.appendChild(fav);
1414
</script>
1515
{{ super() }}

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ def set_version(app, config):
8282
]
8383

8484
# Modify the title to get good social-media links
85-
html_title = "Corese"
86-
html_short_title = "Corese"
85+
html_title = "Corese-command Documentation"
86+
html_short_title = "Corese-command Docs"
8787

8888
# -- Theme Options -----------------------------------------------------------
8989
# Theme options are theme-specific and customize the look and feel of a theme

docs/source/index.rst

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,59 +23,65 @@ It enables users to convert RDF formats, execute SPARQL queries, interogate SPAR
2323

2424
.. grid:: 2
2525
:gutter: 2
26-
:class: only-dark
2726

2827
.. grid-item::
2928

3029
.. image:: _static/screenshots/convert.png
3130
:alt: Screenshot of corese convert
3231
:width: 100%
32+
:class: only-dark
3333

3434
.. grid-item::
3535

3636
.. image:: _static/screenshots/query.png
3737
:alt: Screenshot of corese query
3838
:width: 100%
39+
:class: only-dark
3940

4041
.. grid-item::
4142

4243
.. image:: _static/screenshots/validate.png
4344
:alt: Screenshot of corese validate
4445
:width: 100%
46+
:class: only-dark
4547

4648
.. grid-item::
4749

4850
.. image:: _static/screenshots/help.png
4951
:alt: Screenshot of help
5052
:width: 100%
53+
:class: only-dark
5154

5255
.. grid:: 2
5356
:gutter: 2
54-
:class: only-light
5557

5658
.. grid-item::
5759

5860
.. image:: _static/screenshots/convert.png
5961
:alt: Screenshot of corese convert
6062
:width: 100%
63+
:class: only-light
6164

6265
.. grid-item::
6366

6467
.. image:: _static/screenshots/query.png
6568
:alt: Screenshot of corese query
6669
:width: 100%
70+
:class: only-light
6771

6872
.. grid-item::
6973

7074
.. image:: _static/screenshots/validate.png
7175
:alt: Screenshot of corese validate
7276
:width: 100%
77+
:class: only-light
7378

7479
.. grid-item::
7580

7681
.. image:: _static/screenshots/help.png
7782
:alt: Screenshot of help
7883
:width: 100%
84+
:class: only-light
7985

8086
.. Define named hyperlinks for the references of W3C standards
8187
.. _RDF: https://www.w3.org/RDF/
@@ -136,7 +142,7 @@ It enables users to convert RDF formats, execute SPARQL queries, interogate SPAR
136142
.. _issue reports: https://github.com/corese-stack/corese-command/issues
137143
.. _pull requests: https://github.com/corese-stack/corese-command/pulls
138144

139-
For support questions, comments, and any ideas for improvements you`d like to discuss, please use our `discussion forum`_. We welcome everyone to contribute to `issue reports`_, suggest new features, and create `pull requests`_.
145+
For any questions, comments, or improvement ideas, please use our `discussion forum`_. We welcome everyone to contribute via `issue reports`_, suggest new features, and create `pull requests`_.
140146

141147

142148
.. #############################################################################

docs/source/install.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,17 +40,17 @@ iwr -useb https://raw.githubusercontent.com/corese-stack/corese-command/main/pac
4040

4141
## Uninstall / Update
4242

43-
If you installed Corese using one of the scripts above, you can uninstall or update it by simply running the same script again.
43+
If you installed Corese-Command using one of the scripts above, you can uninstall or update it by simply running the same script again.
4444

4545
## Advanced usage (CI / silent install)
4646

4747
All install scripts support the following options:
4848

4949
```bash
5050
# Install a specific version
51-
./install-linux.sh --install 4.2.0
52-
./install-macos.sh --install 4.2.0
53-
.\install-windows.ps1 --install 4.2.0
51+
./install-linux.sh --install 4.6.0
52+
./install-macos.sh --install 4.6.0
53+
.\install-windows.ps1 --install 4.6.0
5454

5555
# Install the latest available version
5656
./install-linux.sh --install-latest

0 commit comments

Comments
 (0)