Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Speed Limits for Miles per Hour #384

Merged
merged 31 commits into from
Jun 23, 2019
Merged
Show file tree
Hide file tree
Changes from 26 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
7acb367
Speed limits MPH/kmph option added, textures added, default speed lim…
kvakvs Jun 16, 2019
7156c43
Editorconfig file instructs the IDE to use 8 space indentation and ta…
kvakvs Jun 16, 2019
7899408
Removed speed index everywhere and using floats now; New textures 5..140
kvakvs Jun 17, 2019
d6761c6
Make CI happy
kvakvs Jun 17, 2019
f55b54e
Fixed unlimited speed setting
kvakvs Jun 18, 2019
8bfd1e6
Custom speed limits are not applied while loading save game
kvakvs Jun 18, 2019
8533bef
Use IsValidRange instead of > 0
kvakvs Jun 18, 2019
4679569
Added dummy button to speed limits; added 90 MPH
kvakvs Jun 19, 2019
0d8cd85
Remove the deprecated functions, unused after we started using float …
kvakvs Jun 19, 2019
b400887
Remove newline between variables
kvakvs Jun 19, 2019
cf2a754
Removed bool variable which was always true
kvakvs Jun 19, 2019
0f468b1
Dynamic Window Width & Center Rows
FireController1847 Jun 20, 2019
1c57b4b
Specify Texture Size
FireController1847 Jun 20, 2019
a9a2217
Make Constant
FireController1847 Jun 20, 2019
bbb5a40
Merge pull request #1 from FireController1847/mph-speed-limits
kvakvs Jun 20, 2019
c2f4798
Add MPH Signs
FireController1847 Jun 20, 2019
eabcb18
Add More Languages
FireController1847 Jun 20, 2019
57fe851
Center More Things
FireController1847 Jun 20, 2019
f6f04d1
KM/H => km/h
FireController1847 Jun 20, 2019
eb63347
Refactor Textures
FireController1847 Jun 20, 2019
eb2192f
Slightly Reduce Sign Size
FireController1847 Jun 20, 2019
fd9a2ee
Fix Folder Capitalization
FireController1847 Jun 20, 2019
ddaffca
Merge pull request #2 from FireController1847/mph-speed-limits
kvakvs Jun 20, 2019
67be383
Style selector option; MPH can be toggled from the speeds palette
kvakvs Jun 20, 2019
fd2675b
British signs added, style selector for MPH added, translations
kvakvs Jun 20, 2019
ef63527
Fixed km/h in debug overlay for vehicles
kvakvs Jun 21, 2019
ee50d3c
Update TLM/TLM/UI/TrafficManagerTool.cs
kvakvs Jun 21, 2019
c181f0c
Small rounding bug with GetLockFreeGameSpeedLimit; Save/load should w…
kvakvs Jun 21, 2019
c245319
Fix kmph in 'set lane limit' debug log
kvakvs Jun 22, 2019
d532bce
mph -> MPH; Fixed Settings being out of sync with MPH checkbox in the…
kvakvs Jun 22, 2019
c511807
Update PL translations
kvakvs Jun 23, 2019
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
9 changes: 9 additions & 0 deletions TLM/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
root = true

[*.{cs,vb}]
indent_style = tab
indent_size = 8
trim_trailing_whitespace = true

[*.cs]
# csharp_new_line_before_open_brace = methods
Loading