diff --git a/CHANGES.md b/CHANGES.md index 3a1530e..b29c756 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ # ScopeHunter +## 2.15.1 + +- **FIX**: Fix issue with support commands. + ## 2.15.0 - **NEW**: Format dialog a little more compact. diff --git a/docs/src/requirements.txt b/docs/src/requirements.txt index 460fd54..299e5af 100644 --- a/docs/src/requirements.txt +++ b/docs/src/requirements.txt @@ -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 diff --git a/support.py b/support.py index 273be10..5a39e2d 100644 --- a/support.py +++ b/support.py @@ -5,7 +5,7 @@ import webbrowser import re -__version__ = "2.14.0" +__version__ = "2.15.1" __pc_name__ = 'ScopeHunter' @@ -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 @@ -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