Skip to content

Commit

Permalink
Updated support of ElvUI development version
Browse files Browse the repository at this point in the history
  • Loading branch information
AcidWeb committed Nov 11, 2022
1 parent ae61d60 commit a32688b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
7 changes: 4 additions & 3 deletions CB/Core.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def parse_url(self, url):
elif url.lower() == 'elvui':
return TukuiAddon('ElvUI', self.tukuiCache, 'elvui')
elif url.lower() == 'elvui:dev':
return GitHubAddonRaw('tukui-org/ElvUI', 'development', ['ElvUI', 'ElvUI_OptionsUI'],
return GitHubAddonRaw('tukui-org/ElvUI', 'development', ['ElvUI', 'ElvUI_Options', 'ElvUI_Libraries'],
self.config['GHAPIKey'])
elif url.lower() == 'tukui':
return TukuiAddon('Tukui', self.tukuiCache, 'tukui')
Expand Down Expand Up @@ -616,8 +616,9 @@ def detect_addons(self):
namesinstalled = []
slugs = []
output = []
ignored = ['ElvUI_OptionsUI', 'Tukui_Config', '+Wowhead_Looter', 'WeakAurasCompanion', 'CurseBreakerCompanion',
'SharedMedia_MyMedia', 'TradeSkillMaster_AppHelper', '.DS_Store']
ignored = ['ElvUI_OptionsUI', 'ElvUI_Options', 'ElvUI_Libraries', 'Tukui_Config', '+Wowhead_Looter',
'WeakAurasCompanion', 'CurseBreakerCompanion', 'SharedMedia_MyMedia', 'TradeSkillMaster_AppHelper',
'.DS_Store']
specialcases = ['ElvUI', 'Tukui']

addon_dirs = os.listdir(self.path)
Expand Down
2 changes: 1 addition & 1 deletion CB/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import requests
from rich.terminal_theme import TerminalTheme

__version__ = '4.3.1'
__version__ = '4.3.2'
__license__ = 'GPLv3'
__copyright__ = '2019-2022, Paweł Jastrzębski <[email protected]>'
__docformat__ = 'restructuredtext en'
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ TUI/CLI addon updater for World of Warcraft.

## DOWNLOAD
The latest release can be found [here](https://github.com/AcidWeb/CurseBreaker/releases/latest).\
Please be aware that Linux (.gz) and macOS (.zip) versions are not thoroughly tested.
Windows, Ubuntu 20.04+, Debian 11+ and macOS 11+ are supported.
Please be aware that Linux (.gz) and macOS (.zip) versions are not thoroughly tested.\
Windows 10+, Ubuntu 20.04+, Debian 11+ and macOS 11+ are supported.

## USAGE
Place **CurseBreaker** binary inside the directory containing `Wow.exe`, `WowClassic.exe` or `World of Warcraft.app`.\
Expand Down

0 comments on commit a32688b

Please sign in to comment.