Skip to content

Commit

Permalink
I dont think I ever really applied semantic versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
kai687 committed Nov 20, 2024
1 parent 21234c0 commit 5c090fa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 10 deletions.
6 changes: 0 additions & 6 deletions docs/about.rst
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,3 @@ The following table lists the assets used by the |product| to be awesome.
.. _Zondicons: http://www.zondicons.com
.. _Creative Commons Attribution-ShareAlike 4.0: https://creativecommons.org/licenses/by-sa/4.0/legalcode
.. _Apache License, Version 2.0: https://www.apache.org/licenses/LICENSE-2.0.html


Versioning strategy
-------------------

Starting with version 5.0, the |product| adopts `semantic versioning <https://semver.org/>`_.
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def docs(session: nox.Session) -> None:

if "--live" in session.posargs:
build_cmd = "sphinx-autobuild"
args += ["-A", "mode=development", "--watch", "src/sphinxawesome_theme"]
args += ["-A", "mode=development"]
session.posargs.remove("--live")

if "--verbose" in session.posargs:
Expand Down
8 changes: 5 additions & 3 deletions src/sphinxawesome_theme/sidebar.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,15 @@

<a href="{{ pathto(master_doc) }}" class="!justify-start text-sm md:!hidden bg-background">
{%- if logo_url %}
<img height="16" width="16" class="mr-2 dark:invert" src="{{ logo_url }}" alt="Logo" />
<img height="16" width="16" class="mr-2 dark:invert" src="{{ logo_url }}" alt="Logo" />
{%- endif -%}
{%- if theme_logo_dark and not logo_url %}
<img width="16" height="16" class="mr-2 hidden dark:block" src="{{ pathto('_static/' + theme_logo_dark, 1) }}" alt="Logo" />
<img width="16" height="16" class="mr-2 hidden dark:block" src="{{ pathto('_static/' + theme_logo_dark, 1) }}"
alt="Logo" />
{%- endif -%}
{%- if theme_logo_light and not logo_url %}
<img width="16" height="16" class="mr-2 dark:hidden" src="{{ pathto('_static/' + theme_logo_light, 1) }}" alt="Logo" />
<img width="16" height="16" class="mr-2 dark:hidden" src="{{ pathto('_static/' + theme_logo_light, 1) }}"
alt="Logo" />
{%- endif -%}
<span class="font-bold text-clip whitespace-nowrap">{{ docstitle }}</span>
</a>
Expand Down

0 comments on commit 5c090fa

Please sign in to comment.