@nativescript-community/text 1.5.4 → 1.5.5

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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.5.5](https://github.com/nativescript-community/text/compare/v1.5.4...v1.5.5) (2022-05-09)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **android:** build fix ([9603b7f](https://github.com/nativescript-community/text/commit/9603b7ff2270f10b44b88a52cc28c441a4c0c994))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [1.5.4](https://github.com/nativescript-community/text/compare/v1.5.3...v1.5.4) (2022-05-08)
7
18
 
8
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nativescript-community/text",
3
- "version": "1.5.4",
3
+ "version": "1.5.5",
4
4
  "description": "Expands the capabilities of NativeScript's text property.",
5
5
  "main": "./index",
6
6
  "sideEffects": false,
@@ -30,5 +30,5 @@
30
30
  },
31
31
  "license": "Apache-2.0",
32
32
  "readmeFilename": "README.md",
33
- "gitHead": "ff63acd8110ef3d2403b7ef0899e6c725da43b56"
33
+ "gitHead": "30dd09ea7c1878606c912b134270aa34f4cc125b"
34
34
  }
@@ -60,7 +60,7 @@ public class Font {
60
60
  return null;
61
61
  }
62
62
 
63
- Typeface result = typefaceCache.get(fontFamily);
63
+ result = typefaceCache.get(fontFamily);
64
64
  // Check for undefined explicitly as null mean we tried to load the font, but
65
65
  // failed.
66
66
  File file = new File(fontFolder, fontFamily + ".ttf");