Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions com.unity.mobile.android-logcat/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Fixes & Improvements
- Stacktrace window will validate buildId when resolving stacktrace, informing you if wrong symbol file is used. Reset symbol regexes if needed.
- Expose media keys in input window.
- Expose Enter key in input window.

## [1.4.5] - 2025-04-11
### Fixes & Improvements
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions com.unity.mobile.android-logcat/Editor/AndroidLogcatInputs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,8 @@ KeyResult DoKeyboard(AndroidLogcatUserSettings.InputSettings settings)
result = new KeyResult(charResult);
}
}
if (Key("Enter"))
result = new KeyResult(AndroidKeyCode.ENTER);
Margin();
GUILayout.EndHorizontal();

Expand Down