Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
AcidWeb committed Jul 24, 2020
1 parent ade3cb3 commit 2ac2aff
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
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.7.0'
__version__ = '3.8.0'
__license__ = 'GPLv3'
__copyright__ = '2019-2020, Paweł Jastrzębski <[email protected]>'
__docformat__ = 'restructuredtext en'
Expand Down
15 changes: 8 additions & 7 deletions CurseBreaker.py
Original file line number Diff line number Diff line change
Expand Up @@ -598,18 +598,18 @@ def c_wago_update(self, _, verbose=True):
self.console.print('\n[green]Detected WeakAuras:[/green]')
for aura in statuswa[1]:
self.console.print(aura, highlight=False)
self.console.print('\n[green]Outdated Plater scripts:[/green]')
self.console.print('\n[green]Outdated Plater profiles/scripts:[/green]')
for aura in statusplater[0]:
self.console.print(aura, highlight=False)
self.console.print('\n[green]Detected Plater scripts:[/green]')
self.console.print('\n[green]Detected Plater profiles/scripts:[/green]')
for aura in statusplater[1]:
self.console.print(aura, highlight=False)
else:
if len(statuswa[0]) > 0:
self.console.print(f'\n[green]The number of outdated WeakAuras:[/green] '
f'{len(statuswa[0])}', highlight=False)
if len(statusplater[0]) > 0:
self.console.print(f'\n[green]The number of outdated Plater scripts:[/green] '
self.console.print(f'\n[green]The number of outdated Plater profiles/scripts:[/green] '
f'{len(statusplater[0])}', highlight=False)
elif verbose:
self.console.print('No compatible addon is installed.')
Expand Down Expand Up @@ -657,8 +657,8 @@ def c_help(self, _):
'[green]force_update [URL/Name][/green]\n\tCommand accepts a space-separated list of addon n'
'ames or full links.\n\tSelected addons will be reinstalled or updated regardless of their c'
'urrent state.\n'
'[green]wago_update[/green]\n\tCommand detects all installed WeakAuras, Plater scripts and '
'generate WeakAuras Companion payload.\n'
'[green]wago_update[/green]\n\tCommand detects all installed WeakAuras and Plater '
'profiles/scripts.\n\tAnd then generate WeakAuras Companion payload.\n'
'[green]status[/green]\n\tPrints the current state of all installed addons.\n'
'[green]orphans[/green]\n\tPrints list of orphaned directories and files.\n'
'[green]search [Keyword][/green]\n\tExecutes addon search on CurseForge.\n'
Expand All @@ -674,8 +674,9 @@ def c_help(self, _):
'hides entries of up-to-date addons.\n'
'[green]toggle_wago [Username][/green]\n\tEnables/disables automatic Wago updates.\n\tI'
'f a username is provided check will start to ignore the specified author.\n'
'[green]set_wago_api [API key][/green]\n\tSets Wago API key required to access private auras'
'.\n\tIt can be procured here: [link=https://wago.io/account]https://wago.io/account[/link]'
'[green]set_wago_api [API key][/green]\n\tSets Wago API key required to access private '
'entries.\n\tIt can be procured here: '
'[link=https://wago.io/account]https://wago.io/account[/link]'
'\n[green]set_wago_wow_account [Account name][/green]\n\tSets WoW account used by Wago up'
'dater.\n\tNeeded only if compatibile addons are used on more than one WoW account.\n'
'[green]uri_integration[/green]\n\tEnables integration with CurseForge page.\n\t[i]"Install"'
Expand Down

0 comments on commit 2ac2aff

Please sign in to comment.