Skip to content

Commit d0a0d1b

Browse files
author
Unity Technologies
committed
com.unity.textmeshpro@1.4.1
## [1.4.1] - 2019-05-08 ### Changes - Improved handling of automatic Font Asset upgrade to version 1.1.0 which is required to support the new Dynamic SDF system. See Case #1144858 - Made release compatible with .Net 3.5 Scripting Runtime. - Added support for Stereo rendering to the TMP SDF Overlay shaders. - Fixed Caret positioning issue when using IME. Case #1146626
1 parent 3468ec7 commit d0a0d1b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Changelog
22
These are the release notes for the TextMesh Pro UPM package which was first introduced with Unity 2018.1. Please see the following link for the Release Notes for prior versions of TextMesh Pro. http://digitalnativestudios.com/forum/index.php?topic=1363.0
33

4-
## [1.4.1] - 2019-04-20
4+
## [1.4.1] - 2019-05-08
55
### Changes
66
- Improved handling of automatic Font Asset upgrade to version 1.1.0 which is required to support the new Dynamic SDF system. See Case #1144858
77
- Made release compatible with .Net 3.5 Scripting Runtime.

Scripts/Runtime/TMP_FontAsset.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1874,7 +1874,7 @@ private void UpgradeFontAsset()
18741874

18751875
Glyph glyph = new Glyph();
18761876

1877-
uint glyphIndex = (uint)i;
1877+
uint glyphIndex = (uint)i + 1;
18781878

18791879
//#if UNITY_EDITOR
18801880
//if (m_SourceFontFile_EditorRef != null)

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "com.unity.textmeshpro",
33
"displayName": "TextMesh Pro",
4-
"version": "1.4.1-preview.1",
4+
"version": "1.4.1",
55
"unity": "2018.3",
66
"description": "TextMesh Pro is the ultimate text solution for Unity. It's the perfect replacement for Unity's UI Text and the legacy Text Mesh.\n\nPowerful and easy to use, TextMesh Pro uses Advanced Text Rendering techniques along with a set of custom shaders; delivering substantial visual quality improvements while giving users incredible flexibility when it comes to text styling and texturing.\n\nTextMesh Pro provides Improved Control over text formatting and layout with features like character, word, line and paragraph spacing, kerning, justified text, Links, over 30 Rich Text Tags available, support for Multi Font & Sprites, Custom Styles and more.\n\nGreat performance. Since the geometry created by TextMesh Pro uses two triangles per character just like Unity's text components, this improved visual quality and flexibility comes at no additional performance cost.",
77
"keywords": [
@@ -15,6 +15,6 @@
1515
"repository": {
1616
"type": "git",
1717
"url": "https://gitlab.cds.internal.unity3d.com/upm-packages/text/com.unity.textmeshpro.git",
18-
"revision": "4cfa9c69"
18+
"revision": "42654af0"
1919
}
2020
}

0 commit comments

Comments
 (0)