Skip to content

Commit 16a9691

Browse files
committed
changelog and updated dash added
1 parent 996f087 commit 16a9691

File tree

3 files changed

+44
-0
lines changed

3 files changed

+44
-0
lines changed

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
## [1.0.0-beta]
6+
7+
- Initial Release.
8+
9+
## [1.0.1-beta]
10+
11+
### Added
12+
13+
- Added RPM label.
14+
- Added speed label(In Italian)
15+
16+
### Fixed
17+
18+
- Fixed janky looking PSI, Temps, and Grip Levels on tyres app.
19+
- Removed extra digit from Estimated lap time from 00:00.000 to 00:00.00.
20+
- Realigned a lot of elements. You shouldnt notice any shifting from screen to screen.
21+
22+
### Changed
23+
24+
- RPM changes color from green to red the higher the RPM.
25+
- Reduced the precison on the PSI from 00.00 to 00.0 and reduced the update value to 1000ms.
26+
- Took the edge off the 4 yellow shift indicators.
27+
- Reduced the update time on Gap to Ahead, Behind and Gap to Leader to 1000ms.
28+
29+
### Removed
30+
31+
- Nothing
32+
33+
34+
[1.0.0-beta]: https://github.com/lerontonge/Mission-Data-Dash-for-AC-ACC-AM2/releases/tag/v1.0.0-beta

JavascriptExtensions/Mission Data Display Unit.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,9 @@ function ld_GetPlayerBestColor() {
108108
}
109109
}
110110

111+
112+
//Get Driver Name
113+
111114
function ld_GetDriverName(position) {
112115
const driverName =
113116
!settings || typeof settings.driverName === 'undefined'
@@ -121,6 +124,9 @@ function ld_GetDriverName(position) {
121124
}
122125
}
123126

127+
128+
// Get Driver Class
129+
124130
function ld_getDriverClassIndex(position) {
125131
var driverClassName = drivercarclass(position);
126132
for (i = 1; i <= getleaderboardcarclasscount(); i++) {
@@ -131,6 +137,10 @@ function ld_getDriverClassIndex(position) {
131137
return driverClassIndex;
132138
}
133139

140+
141+
// Get Relative Position
142+
143+
134144
function ld_GetRelDriverName(relPosition) {
135145
// Data expected is 'Ahead_01', 'Behind_00'
136146
// -> PersistantTrackerPlugin.DriverAhead_01_Name
4.58 MB
Binary file not shown.

0 commit comments

Comments
 (0)