Skip to content

Commit b574678

Browse files
committed
Fix color parsing regression
1 parent a462e55 commit b574678

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGES.md

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

3+
## 6.4.4
4+
5+
- **FIX**: Fix regression in Sublime color parsing.
6+
37
## 6.4.3
48

59
- **FIX**: Fix issue where a newly opened file will not show previews

custom/st_colormod.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,7 @@
3737

3838
RE_ADJUSTERS = {
3939
"alpha": re.compile(
40-
r"""
41-
(?xi)
40+
r"""(?xi)
4241
\s+a(?:lpha)?\(\s*
4342
(?:(\+\s+|\-\s+)?({strict_percent}|{strict_float})|(\*)?\s*({strict_percent}|{strict_float}))
4443
\s*\)

support.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import webbrowser
66
import re
77

8-
__version__ = "6.4.3"
8+
__version__ = "6.4.4"
99
__pc_name__ = 'ColorHelper'
1010

1111
CSS = '''

0 commit comments

Comments
 (0)