dmg-builder 26.4.0 → 26.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dmg-builder",
3
- "version": "26.4.0",
3
+ "version": "26.4.1",
4
4
  "main": "out/dmgUtil.js",
5
5
  "author": "Vladimir Krivosheev",
6
6
  "license": "MIT",
@@ -20,8 +20,8 @@
20
20
  "fs-extra": "^10.1.0",
21
21
  "iconv-lite": "^0.6.2",
22
22
  "js-yaml": "^4.1.0",
23
- "app-builder-lib": "26.4.0",
24
- "builder-util": "26.3.4"
23
+ "app-builder-lib": "26.4.1",
24
+ "builder-util": "26.4.1"
25
25
  },
26
26
  "optionalDependencies": {
27
27
  "dmg-license": "^1.0.11"
@@ -257,7 +257,7 @@ _x11_colors = {
257
257
 
258
258
  _ws_re = re.compile(r"\s+")
259
259
  _token_re = re.compile(r"[A-Za-z_][A-Za-z0-9_]*")
260
- _hex_re = re.compile(r"#([0-9a-f]{3}(?:[0-9a-f]{3})?)$")
260
+ _hex_re = re.compile(r"#([0-9a-f]{3}(?:[0-9a-f]{3})?)$", re.IGNORECASE)
261
261
  _number_re = re.compile(r"[0-9]*(\.[0-9]*)")
262
262
 
263
263
 
@@ -25,7 +25,7 @@ except ImportError:
25
25
  badge = None
26
26
 
27
27
 
28
- _hexcolor_re = re.compile(r"#[0-9a-f]{3}(?:[0-9a-f]{3})?")
28
+ _hexcolor_re = re.compile(r"#[0-9a-f]{3}(?:[0-9a-f]{3})?", re.IGNORECASE)
29
29
 
30
30
  # The first element in the platform.mac_ver() tuple is a string containing the
31
31
  # macOS version (e.g., '10.15.6'). Parse into an integer tuple.