Skip to content

Commit

Permalink
Switch ElvUI to new dev version
Browse files Browse the repository at this point in the history
  • Loading branch information
AcidWeb committed Oct 22, 2021
1 parent 0742b17 commit 05c701c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
7 changes: 1 addition & 6 deletions CB/Core.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,12 +234,7 @@ def parse_url(self, url):
self.bulk_tukui_check()
return TukuiAddon('2', self.tukuiCache)
elif url.lower() == 'elvui:dev':
if self.clientType == 'wow_retail':
return GitHubAddonRaw('tukui-org/ElvUI', 'development', ['ElvUI', 'ElvUI_OptionsUI'])
elif self.clientType == 'wow_burning_crusade':
return GitHubAddonRaw('tukui-org/ElvUI-TBC', 'development', ['ElvUI', 'ElvUI_OptionsUI'])
else:
return GitHubAddonRaw('tukui-org/ElvUI-Classic', 'development', ['ElvUI', 'ElvUI_OptionsUI'])
return GitHubAddonRaw('tukui-org/ElvUI', 'development', ['ElvUI', 'ElvUI_OptionsUI'])
elif url.lower() == 'tukui':
if self.clientType == 'wow_retail':
return TukuiAddon('Tukui', self.tukuiCache, 'tukui')
Expand Down
2 changes: 1 addition & 1 deletion CB/GitHub.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def __init__(self, project, branch, targetdirs):
self.directories = targetdirs
self.author = []

if project.startswith('tukui-org/ElvUI'):
if project == 'tukui-org/ElvUI':
self.name = 'ElvUI'
self.author = ['Elv']
elif project == 'tukui-org/Tukui':
Expand Down
2 changes: 1 addition & 1 deletion CB/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import random
from rich.terminal_theme import TerminalTheme

__version__ = '3.18.2'
__version__ = '3.18.3'
__license__ = 'GPLv3'
__copyright__ = '2019-2021, Paweł Jastrzębski <[email protected]>'
__docformat__ = 'restructuredtext en'
Expand Down

0 comments on commit 05c701c

Please sign in to comment.