Skip to content

Commit

Permalink
FIX: changed references to irc from freenode to libera and replaced i…
Browse files Browse the repository at this point in the history
…rc icons, FIX: fixed broken refreshSeriesjson api call
  • Loading branch information
evilhero authored and barbequesauce committed Jun 15, 2021
1 parent d550c26 commit bf5408f
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Please try to limit Github issues to bugs & enhancement requests ONLY

## Live Support / Conversation
- [Discord](https://discord.gg/6UG94R7E8T)
- [IRC](http://webchat.freenode.net/?channels=#mylar)
- [IRC](https://web.libera.chat/?channels=#mylar)

## Features
- Abliity to be run on various OS' (windows, linux, macOS, Raspberry Pi, etc)
Expand Down
Binary file modified data/images/irc-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added data/interfaces/carbon/images/irc-icon-carbon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion data/interfaces/default/config.html
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ <h1 class="clearfix"><img src="${icons['icon_gear']}" alt="settings"/>Settings</
<figcaption class="caption">Discord</caption>
</figure>
<figure class="item">
<a href="https://webchat.freenode.net?channels=#mylar" target="_blank"><img src="images/irc-icon.png" height="64" width="64" title="#mylar on irc.freenode.net" /></a>
<a href="https://web.libera.chat?channels=#mylar" target="_blank"><img src="${icons['irc-icon']}" height="64" width="64" title="#mylar on irc.libera.chat" /></a>
<figcaption class="caption">IRC</caption>
</figure>
</fieldset>
Expand Down
2 changes: 1 addition & 1 deletion mylar/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ def _refreshSeriesjson(self, **kwargs):
logger.info('[API][Refresh-Series.json][BULK:%s][Only_Missing:%s] ComicIDs to refresh series.json files: %s' % (bulk, missing, len(toquery)))

try:
sm = series_metadata.metadata_Series(comicidlist=toquery, bulk=bulk, api=True, refreshSeries=refresh_series)
sm = series_metadata.metadata_Series(comicidlist=toquery, bulk=bulk, api=True, refreshSeries=refresh_missing)
sm.update_metadata_thread()
except Exception as e:
logger.error('[ERROR] %s' % e)
Expand Down
2 changes: 2 additions & 0 deletions mylar/webserve.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ def serve_template(templatename, **kwargs):
'discord-icon': os.path.join(mylar.CONFIG.HTTP_ROOT, 'images', 'discord-icon.png'),
'github-icon': os.path.join(mylar.CONFIG.HTTP_ROOT, 'images', 'github-icon.png'),
'forum-icon': os.path.join(mylar.CONFIG.HTTP_ROOT, 'images', 'forum-icon.png'),
'irc-icon': os.path.join(mylar.CONFIG.HTTP_ROOT, 'images', 'irc-icon.png'),
'listview_icon': os.path.join(mylar.CONFIG.HTTP_ROOT, 'images', 'listview_icon.png'),
'delete_icon': os.path.join(mylar.CONFIG.HTTP_ROOT, 'images', 'delete_icon.png'),
'deleteall_icon': os.path.join(mylar.CONFIG.HTTP_ROOT, 'images', 'deleteall_icon.png'),
Expand All @@ -78,6 +79,7 @@ def serve_template(templatename, **kwargs):
'discord-icon': os.path.join(mylar.CONFIG.HTTP_ROOT, 'interfaces', 'carbon', 'images', 'discord-icon-carbon.png'),
'github-icon': os.path.join(mylar.CONFIG.HTTP_ROOT, 'interfaces', 'carbon', 'images', 'github-icon-carbon.png'),
'forum-icon': os.path.join(mylar.CONFIG.HTTP_ROOT, 'interfaces', 'carbon', 'images', 'forum-icon-carbon.png'),
'irc-icon': os.path.join(mylar.CONFIG.HTTP_ROOT, 'interfaces', 'carbon', 'images', 'irc-icon-carbon.png'),
'listview_icon': os.path.join(mylar.CONFIG.HTTP_ROOT, 'interfaces', 'carbon', 'images', 'listview_icon.png'),
'delete_icon': os.path.join(mylar.CONFIG.HTTP_ROOT, 'interfaces', 'carbon', 'images', 'delete_icon.png'),
'deleteall_icon': os.path.join(mylar.CONFIG.HTTP_ROOT, 'interfaces', 'carbon', 'images', 'deleteall_icon.png'),
Expand Down

0 comments on commit bf5408f

Please sign in to comment.