Skip to content

Commit

Permalink
Small tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
AcidWeb committed Oct 23, 2020
1 parent 14023d9 commit 7e67f88
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 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.13.0'
__version__ = '3.14.0'
__license__ = 'GPLv3'
__copyright__ = '2019-2020, Paweł Jastrzębski <[email protected]>'
__docformat__ = 'restructuredtext en'
Expand Down
11 changes: 7 additions & 4 deletions CurseBreaker.py
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ def parse_link(self, text, link, dev=None, authors=None, uiversion=None):
authors = ''
if uiversion and uiversion not in [self.core.masterConfig['RetailVersion'],
self.core.masterConfig['ClassicVersion']]:
uiversion = ' [bold yellow][!][bold yellow]'
uiversion = ' [bold yellow][!][/bold yellow]'
else:
uiversion = ''
if link:
Expand Down Expand Up @@ -548,6 +548,7 @@ def c_status(self, args):
if '-a' in pargs:
optcompact = True
args = args.replace('-a', '', 1)
args = args.strip()
self.c_update(args, False, False, False, optsource, optcompact)

def c_orphans(self, _):
Expand Down Expand Up @@ -815,9 +816,11 @@ def c_help(self, _):
'urrent state.\n\tIf no argument is provided all addons will be forcefully updated.\n'
'[green]wago_update[/green]\n\tCommand detects all installed WeakAuras and Plater profiles/s'
'cripts.\n\tAnd then generate WeakAuras Companion payload.\n'
'[green]status[/green]\n\tPrints the current state of all installed addons.\n\t[bold white]F'
'lags:[/bold white]\n\t\t[bold white]-a[/bold white] - Temporary reverse the table compactin'
'g option.\n\t\t[bold white]-s[/bold white] - Display the source of the addons.\n'
'[green]status[/green]\n\tPrints the current state of all installed addons.\n\t[bold yellow]'
'[!][/bold yellow] mark means that the latest release is not updated yet for the current WoW'
' version.\n\t[bold white]Flags:[/bold white]\n\t\t[bold white]-a[/bold white] - Temporary r'
'everse the table compacting option.\n\t\t[bold white]-s[/bold white] - Display the source o'
'f the 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'
'[green]recommendations[/green]\n\tCheck the list of currently installed addons against a co'
Expand Down

0 comments on commit 7e67f88

Please sign in to comment.