diff --git a/README.md b/README.md index 0a7c65d..8e93dd9 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -## DeltaBar v1.25 +## DeltaBar v1.27 ## Plugin for Assetto Corsa racing simulator ####iRacing-style delta bar with variable color ####Uses the sim_info.py module from Rombik @@ -59,11 +59,11 @@ Usage: ##CHANGELOG: -v1.25: March 16 2015 +v1.27: March 17 2015 - Support for AC 1.1.2. - Support single sector tracks. - - BETA version of timing window, open the 'deltabar timing' app icon. + - BETA version of timing window, 'deltabar timing'. Enable with `"enable_timing_window": true` in `Documents/Assetto Corsa/plugins/deltabar/config.txt` v1.20: January 7 2015 @@ -87,7 +87,7 @@ v1.01: December 31 2014 Download: - - https://github.com/jamessanford/assetto-corsa-deltabar/archive/deltabar_v125.zip + - https://github.com/jamessanford/assetto-corsa-deltabar/archive/deltabar_v127.zip Source browser: diff --git a/README.txt b/README.txt index 5977dd1..f9c0485 100644 --- a/README.txt +++ b/README.txt @@ -1,5 +1,5 @@ -DeltaBar v1.25 - iRacing-style delta bar with variable color +DeltaBar v1.27 - iRacing-style delta bar with variable color Plugin for Assetto Corsa racing simulator. Uses the sim_info.py module from Rombik. @@ -59,10 +59,12 @@ Usage: CHANGELOG: - v1.25: March 16 2015 + v1.27: March 17 2015 Support for AC 1.1.2. Support single sector tracks. - BETA version of timing window, open the 'deltabar timing' app icon. + BETA version of timing window: 'deltabar timing' app if you set: + "enable_timing_window": true + Documents/Assetto Corsa/plugins/deltabar/config.txt v1.20: January 7 2015 Fix for many addon tracks, end-of-lap detection was not working. @@ -87,7 +89,7 @@ CHANGELOG: Download: -https://github.com/jamessanford/assetto-corsa-deltabar/archive/deltabar_v125.zip +https://github.com/jamessanford/assetto-corsa-deltabar/archive/deltabar_v127.zip Source browser: https://github.com/jamessanford/assetto-corsa-deltabar/ diff --git a/deltabar/deltabar_lib/config.py b/deltabar/deltabar_lib/config.py index 36e2e9d..7a0a47e 100644 --- a/deltabar/deltabar_lib/config.py +++ b/deltabar/deltabar_lib/config.py @@ -14,7 +14,7 @@ 'bar_mode': 0, 'bar_moves': True, 'bar_smooth': True, - 'enable_timing_window': True, + 'enable_timing_window': False, 'sectors': { 'brands-hatch': [ 0.35944467782974243, 0.7798787355422974, 0 ], 'imola': [ 0.3146900534629822, 0.6765202879905701, 0 ], diff --git a/deltabar/deltabar_lib/deltabar_lib.py b/deltabar/deltabar_lib/deltabar_lib.py index 46af6f9..7a707e4 100644 --- a/deltabar/deltabar_lib/deltabar_lib.py +++ b/deltabar/deltabar_lib/deltabar_lib.py @@ -183,7 +183,7 @@ def reinitialize_app(self): def reinitialize_statusbox(self): field = 'enable_timing_window' if field not in self.data.config: - self.data.config[field] = True + self.data.config[field] = False if not self.data.config[field]: # Window is explicitly disabled, bail out.