Skip to content

Commit

Permalink
DeltaBar v1.27 with timing window off by default
Browse files Browse the repository at this point in the history
  • Loading branch information
jamessanford committed Mar 18, 2015
1 parent 3086630 commit cbfdb3d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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

Expand All @@ -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:

Expand Down
10 changes: 6 additions & 4 deletions README.txt
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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.
Expand All @@ -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/
2 changes: 1 addition & 1 deletion deltabar/deltabar_lib/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ],
Expand Down
2 changes: 1 addition & 1 deletion deltabar/deltabar_lib/deltabar_lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit cbfdb3d

Please sign in to comment.