File tree Expand file tree Collapse file tree 4 files changed +9
-8
lines changed Expand file tree Collapse file tree 4 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 99
1010## 0.6.x
1111
12+ - SteamController: Promote RTSS detection to Release - enable by default
1213- SteamController: Improve detection of Steam processes (especially latest controller UI changes)
1314- SteamController: Add configuration wizard for the first time or when configuration was lost
1415- PowerControl: Show current time
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ public sealed class RTSSManager : Manager
66 {
77 public override void Tick ( Context context )
88 {
9- context . State . RTSSInForeground = SettingsDebug . Default . DetectRTSSForeground && RTSS . IsOSDForeground ( ) ;
9+ context . State . RTSSInForeground = Settings . Default . DetectRTSSForeground && RTSS . IsOSDForeground ( ) ;
1010 }
1111 }
1212}
Original file line number Diff line number Diff line change @@ -20,6 +20,13 @@ public bool? EnableSteamDetection
2020 set { Set ( "EnableSteamDetection" , value ) ; }
2121 }
2222
23+ [ Description ( "If current foreground process uses overlay, treat it as a game." ) ]
24+ public bool DetectRTSSForeground
25+ {
26+ get { return Get < bool > ( "DetectRTSSForeground" , true ) ; }
27+ set { Set ( "DetectRTSSForeground" , value ) ; }
28+ }
29+
2330 [ Description ( "Default profile used when going back to Desktop mode" ) ]
2431 [ Browsable ( true ) ]
2532 [ TypeConverter ( typeof ( ProfilesSettings . Helpers . ProfileStringConverter ) ) ]
Original file line number Diff line number Diff line change @@ -20,13 +20,6 @@ public bool KeepX360AlwaysConnected
2020 set { Set ( "KeepX360AlwaysConnected" , value ) ; }
2121 }
2222
23- [ Description ( "If current foreground process uses overlay, treat it as a game." ) ]
24- public bool DetectRTSSForeground
25- {
26- get { return Get < bool > ( "DetectRTSSForeground" , false ) ; }
27- set { Set ( "DetectRTSSForeground" , value ) ; }
28- }
29-
3023 [ Description ( "Use Lizard Buttons instead of emulated. This option is only for testing purposes." ) ]
3124 public bool LizardButtons { get ; set ; } = false ;
3225
You can’t perform that action at this time.
0 commit comments