M README.md => README.md +1 -1
@@ 8,7 8,7 @@ Build Status | Documentation | Code Style
-------------|---------------|-----------
[](https://builds.sr.ht/~hristoast/mousikofidi/commits/debian.yml?) | [](https://builds.sr.ht/~hristoast/mousikofidi/commits/.build.yml?) | [](https://github.com/psf/black)
-Logos by **[ogenfald](https://fillmyan.us/)**
+Logos by **[Ben F Joyner III](https://bfjoyner.co/)**
**[Demo](https://demo.mousikofidi.info/)** | **[IRC](https://kiwiirc.com/client/irc.freenode.org/?nick=fidi|?#mousikofidi)** | **[Mailing List](https://lists.sr.ht/~hristoast/mousikofidi)** | **[Documentation](https://mousikofidi.info/)** | **[Known Issues](https://todo.sr.ht/~hristoast/mousikofidi?search=label:%22Bug%22%20status%3Aopen)** | **[Planned Features](https://todo.sr.ht/~hristoast/mousikofidi?search=label:%22Enhancement%22%20status%3Aopen)** | **[PyPI](https://pypi.org/project/MousikoFidi/)**
M mousikofidi/example/mousikofidi.mp3 => mousikofidi/example/mousikofidi.mp3 +0 -0
M mousikofidi/static/css/terminal-green.css => mousikofidi/static/css/terminal-green.css +1 -1
@@ 1,6 1,6 @@
/*
Terminal.css for MousikóFídi
-Copyright (C) 2019 ogenfald
+Copyright (C) 2019 Ben F Joyner III
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
M mousikofidi/static/css/terminal-solarized.css => mousikofidi/static/css/terminal-solarized.css +1 -1
@@ 1,6 1,6 @@
/*
Terminal.css for MousikóFídi
-Copyright (C) 2019 ogenfald
+Copyright (C) 2019 Ben F Joyner III
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
M mousikofidi/static/css/terminal.css => mousikofidi/static/css/terminal.css +1 -1
@@ 1,6 1,6 @@
/*
Terminal.css for MousikóFídi
-Copyright (C) 2019 ogenfald
+Copyright (C) 2019 Ben F Joyner III
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
M mousikofidi/templates/about.html => mousikofidi/templates/about.html +1 -1
@@ 10,7 10,7 @@
</p>
<div class="center">
- <img src="{{ logo_path }}" title="The MousikóFídi logo, by Ogenfald.">
+ <img src="{{ logo_path }}" title="The MousikóFídi logo, by Ben F Joyner III.">
</div>
<div id="get-help"></div>
M mousikofidi/templates/base.html => mousikofidi/templates/base.html +1 -1
@@ 117,7 117,7 @@
<a href="https://sr.ht/~hristoast/mousikofidi">MουσικόΦίδι source code hosted by Sourcehut</a> | <a href="http://www.gnu.org/licenses/gpl-3.0.html">Licensed GPLv3</a>
</div>
<div>
- <a href="https://watercss.netlify.com/">Dark and Light Theme</a> | <a href="https://nostalgic-css.github.io/NES.css/">NES Theme</a> | <a href="https://fillmyan.us/">Terminal Theme by ogenfald</a>
+ <a href="https://watercss.netlify.com/">Dark and Light Theme</a> | <a href="https://nostalgic-css.github.io/NES.css/">NES Theme</a> | <a href="https://bfjoyner.co/">Terminal Theme by Ben F Joyner III</a>
</div>
</footer>
M mousikofidi/templates/index.html => mousikofidi/templates/index.html +1 -1
@@ 4,7 4,7 @@
<h4 class="center">Welcome to {{ site_name }}!</h4>
<div class="center">
- <img src="{{ logo_path }}" title="The MousikóFídi logo, by Ogenfald.">
+ <img src="{{ logo_path }}" title="The MousikóFídi logo, by Ben F Joyner III.">
</div>
{% endblock %}
M test_mousikofidi.py => test_mousikofidi.py +22 -8
@@ 345,7 345,7 @@ def test_browse_dir():
{
"type": "audio",
"album": "MousikóFídi",
- "artist": "ogenfald and hristoast",
+ "artist": "Ben F Joyner III and hristoast",
"genre": "Metal",
"length": "0:11",
"title": "MousikóFídi Theme",
@@ 1293,7 1293,9 @@ def test_index_http_code(client):
)
assert (
bytes(
- '<img src="{}" title="The MousikóFídi logo, by Ogenfald.">'.format(logo),
+ '<img src="{}" title="The MousikóFídi logo, by Ben F Joyner III.">'.format(
+ logo
+ ),
"utf8",
)
in rv.data
@@ 1394,7 1396,9 @@ def test_index_dark_theme(client):
)
assert (
bytes(
- '<img src="{}" title="The MousikóFídi logo, by Ogenfald.">'.format(logo),
+ '<img src="{}" title="The MousikóFídi logo, by Ben F Joyner III.">'.format(
+ logo
+ ),
"utf8",
)
in rv.data
@@ 1428,7 1432,9 @@ def test_index_light_theme(client):
)
assert (
bytes(
- '<img src="{}" title="The MousikóFídi logo, by Ogenfald.">'.format(logo),
+ '<img src="{}" title="The MousikóFídi logo, by Ben F Joyner III.">'.format(
+ logo
+ ),
"utf8",
)
in rv.data
@@ 1462,7 1468,9 @@ def test_index_nes_theme(client):
)
assert (
bytes(
- '<img src="{}" title="The MousikóFídi logo, by Ogenfald.">'.format(logo),
+ '<img src="{}" title="The MousikóFídi logo, by Ben F Joyner III.">'.format(
+ logo
+ ),
"utf8",
)
in rv.data
@@ 1496,7 1504,9 @@ def test_index_terminal_theme(client):
)
assert (
bytes(
- '<img src="{}" title="The MousikóFídi logo, by Ogenfald.">'.format(logo),
+ '<img src="{}" title="The MousikóFídi logo, by Ben F Joyner III.">'.format(
+ logo
+ ),
"utf8",
)
in rv.data
@@ 1531,7 1541,9 @@ def test_index_terminal_green_theme(client):
)
assert (
bytes(
- '<img src="{}" title="The MousikóFídi logo, by Ogenfald.">'.format(logo),
+ '<img src="{}" title="The MousikóFídi logo, by Ben F Joyner III.">'.format(
+ logo
+ ),
"utf8",
)
in rv.data
@@ 1565,7 1577,9 @@ def test_index_terminal_solarized_theme(client):
)
assert (
bytes(
- '<img src="{}" title="The MousikóFídi logo, by Ogenfald.">'.format(logo),
+ '<img src="{}" title="The MousikóFídi logo, by Ben F Joyner III.">'.format(
+ logo
+ ),
"utf8",
)
in rv.data