Skip to content

Commit d55c3bb

Browse files
committed
Fix issues with support commands
1 parent d822360 commit d55c3bb

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# ScopeHunter
22

3+
## 2.15.1
4+
5+
- **FIX**: Fix issue with support commands.
6+
37
## 2.15.0
48

59
- **NEW**: Format dialog a little more compact.

docs/src/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
mkdocs_pymdownx_material_extras>=1.2.1
1+
mkdocs_pymdownx_material_extras>=1.2.2
22
mkdocs-git-revision-date-localized-plugin
33
mkdocs-minify-plugin
44
pyspelling

support.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import webbrowser
66
import re
77

8-
__version__ = "2.14.0"
8+
__version__ = "2.15.1"
99
__pc_name__ = 'ScopeHunter'
1010

1111

@@ -36,7 +36,6 @@
3636
"repo": "HexViewer"
3737
}
3838
},
39-
"pymdownx.extrarawhtml",
4039
"pymdownx.keys",
4140
{"pymdownx.escapeall": {"hardbreak": True, "nbsp": True}},
4241
# Sublime doesn't support superscript, so no ordinal numbers
@@ -202,9 +201,8 @@ def run(self):
202201
"""Show the changelog in a new view."""
203202
try:
204203
import mdpopups
205-
import pymdownx
206204
has_phantom_support = (mdpopups.version() >= (1, 10, 0)) and (int(sublime.version()) >= 3124)
207-
fmatter = mdpopups.format_frontmatter(frontmatter) if pymdownx.version_info[:3] >= (4, 3, 0) else ''
205+
fmatter = mdpopups.format_frontmatter(frontmatter)
208206
except Exception:
209207
fmatter = ''
210208
has_phantom_support = False

0 commit comments

Comments
 (0)