File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
com.unity.mobile.android-logcat Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to this package will be documented in this file.
44The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
55and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
66
7+ ## [ 1.4.7] - 2025-12-12
8+ ### Fixes & Improvements
9+ - Don't periodically query for devices when none are connected and logcat window is unfocused.
10+
711## [ 1.4.6] - 2025-06-07
812### Fixes & Improvements
913 - Stacktrace window will validate buildId when resolving stacktrace, informing you if wrong symbol file is used. Reset symbol regexes if needed.
Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ private void OnUpdate()
178178 {
179179 var deviceQuery = m_Runtime . DeviceQuery ;
180180
181- if ( deviceQuery . FirstConnectedDevice == null )
181+ if ( deviceQuery . FirstConnectedDevice == null && hasFocus )
182182 deviceQuery . UpdateConnectedDevicesList ( false ) ;
183183
184184 var firstDevice = deviceQuery . FirstConnectedDevice ;
You can’t perform that action at this time.
0 commit comments