Skip to content

Commit 9b75c43

Browse files
committed
Update to 1.1.7
1 parent 90e4851 commit 9b75c43

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

Packages/Ink/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# CHANGELOG.md
22

3-
## Version 1.1.6 (X December 2022):
3+
## Version 1.1.7 (20th Feb 2022):
44
- Rework of the plugin's INCLUDE hierarchy system, allowing for previously unhandled valid setups.
55
- Changes the OpenInEditor function to use AssetDatabase.OpenAsset, which correctly uses the OS file editor.
6+
- Prevents the Ink Player Window from showing itself when scripts are recompiled.
67

78
## Version 1.1.5 (2nd December 2022):
89
- Adds InkSettings.suppressStartupWindow, which can be used to prevent this window from appearing (requested for some CI/CD pipelines).

Packages/Ink/Editor/Core/Ink Library/InkLibrary.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public class InkLibrary : ScriptableObject, IEnumerable<InkFile> {
2323
#endif
2424
// Ink version. This should really come from the core ink code.
2525
public static System.Version inkVersionCurrent = new System.Version(1,1,1);
26-
public static System.Version unityIntegrationVersionCurrent = new System.Version(1,1,5);
26+
public static System.Version unityIntegrationVersionCurrent = new System.Version(1,1,7);
2727

2828
static string absoluteSavePath {
2929
get {

Packages/Ink/Editor/Tools/Startup Window/InkUnityIntegrationStartupWindow.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,13 @@ void OnGUI ()
7575
{
7676
scrollPosition = EditorGUILayout.BeginScrollView(scrollPosition);
7777
{
78+
// 1.1.5
79+
EditorGUILayout.BeginVertical(GUI.skin.box);
80+
EditorGUILayout.LabelField("Version 1.1.7:", EditorStyles.boldLabel);
81+
EditorGUILayout.LabelField("• Rework of the plugin's INCLUDE hierarchy system, allowing for previously unhandled valid setups.", EditorStyles.wordWrappedLabel);
82+
EditorGUILayout.LabelField("• Changes the OpenInEditor function to use AssetDatabase.OpenAsset, which correctly uses the OS file editor.", EditorStyles.wordWrappedLabel);
83+
EditorGUILayout.LabelField("• Prevents the Ink Player Window from showing itself when scripts are recompiled.", EditorStyles.wordWrappedLabel);
84+
EditorGUILayout.EndVertical();
7885
// 1.1.5
7986
EditorGUILayout.BeginVertical(GUI.skin.box);
8087
EditorGUILayout.LabelField("Version 1.1.5:", EditorStyles.boldLabel);

Packages/Ink/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "com.inkle.ink-unity-integration",
3-
"version": "1.1.5",
3+
"version": "1.1.7",
44
"displayName": "Ink",
55
"description": "Unity integration for the open source ink narrative scripting language.",
66
"unity": "2018.4",

0 commit comments

Comments
 (0)