Skip to content

Commit

Permalink
Fix issues with support commands
Browse files Browse the repository at this point in the history
  • Loading branch information
facelessuser committed Mar 13, 2021
1 parent d822360 commit d55c3bb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# ScopeHunter

## 2.15.1

- **FIX**: Fix issue with support commands.

## 2.15.0

- **NEW**: Format dialog a little more compact.
Expand Down
2 changes: 1 addition & 1 deletion docs/src/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
mkdocs_pymdownx_material_extras>=1.2.1
mkdocs_pymdownx_material_extras>=1.2.2
mkdocs-git-revision-date-localized-plugin
mkdocs-minify-plugin
pyspelling
6 changes: 2 additions & 4 deletions support.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import webbrowser
import re

__version__ = "2.14.0"
__version__ = "2.15.1"
__pc_name__ = 'ScopeHunter'


Expand Down Expand Up @@ -36,7 +36,6 @@
"repo": "HexViewer"
}
},
"pymdownx.extrarawhtml",
"pymdownx.keys",
{"pymdownx.escapeall": {"hardbreak": True, "nbsp": True}},
# Sublime doesn't support superscript, so no ordinal numbers
Expand Down Expand Up @@ -202,9 +201,8 @@ def run(self):
"""Show the changelog in a new view."""
try:
import mdpopups
import pymdownx
has_phantom_support = (mdpopups.version() >= (1, 10, 0)) and (int(sublime.version()) >= 3124)
fmatter = mdpopups.format_frontmatter(frontmatter) if pymdownx.version_info[:3] >= (4, 3, 0) else ''
fmatter = mdpopups.format_frontmatter(frontmatter)
except Exception:
fmatter = ''
has_phantom_support = False
Expand Down

0 comments on commit d55c3bb

Please sign in to comment.