Skip to content

Commit 1736b85

Browse files
Jakub SzczyrkJakub Szczyrk
authored andcommitted
Change of naming in the debug menu
1 parent b0bc89e commit 1736b85

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

Assets/PatchKit Patcher/Scripts/Debug/DebugMenu.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -69,22 +69,22 @@ void Draw(int id)
6969
GUI.BringWindowToFront(1);
7070
}
7171

72-
if (GUILayout.Button("Open Patcher log file"))
72+
if (GUILayout.Button("Open Launcher log file"))
7373
{
7474
OpenPatcherLogFile();
7575
}
7676

77-
if (GUILayout.Button("Open Patcher log file location"))
77+
if (GUILayout.Button("Open Launcher log file location"))
7878
{
7979
OpenPatcherLogFileLocation();
8080
}
8181

82-
if (GUILayout.Button("Open Launcher log file"))
82+
if (GUILayout.Button("Open Runner log file"))
8383
{
8484
OpenLauncherLogFile();
8585
}
8686

87-
if (GUILayout.Button("Open Launcher log file location"))
87+
if (GUILayout.Button("Open Runner log file location"))
8888
{
8989
OpenLauncherLogFileLocation();
9090
}
@@ -155,7 +155,7 @@ private void OpenPopup(string popupMessage)
155155
private void OpenLauncherLogFileLocation()
156156
{
157157
#if UNITY_EDITOR
158-
OpenPopup("Access to Launcher in the editor is not possible");
158+
OpenPopup("Access to Runner in the editor is not possible");
159159
#else
160160
#if UNITY_STANDALONE_OSX
161161
string logDirectoryPath = Patcher.Instance.Data.Value.LockFilePath.Replace(
@@ -170,7 +170,7 @@ private void OpenLauncherLogFileLocation()
170170
private void OpenLauncherLogFile()
171171
{
172172
#if UNITY_EDITOR
173-
OpenPopup("Access to Launcher in the editor is not possible");
173+
OpenPopup("Access to Runner in the editor is not possible");
174174
#else
175175
#if UNITY_STANDALONE_OSX
176176
string logPath = Patcher.Instance.Data.Value.LockFilePath.Replace(

Assets/PatchKit Patcher/Scripts/Version.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ public static class Version
55
public const int Major = 3;
66
public const int Minor = 17;
77
public const int Patch = 7;
8-
public const int Hotfix = 0;
8+
public const int Hotfix = 1;
99

1010
public static string Value
1111
{

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## [3.17.7.1]
8+
### Changed
9+
- Naming in the debug menu
10+
711
## [3.17.7.0]
812
### Added
913
- Checking path length on Windows

0 commit comments

Comments
 (0)