Skip to content

Commit d4ff561

Browse files
committed
πŸ”– 0.9.1
1 parent e37d021 commit d4ff561

File tree

4 files changed

+19
-6
lines changed

4 files changed

+19
-6
lines changed

β€Žpackage-lock.jsonβ€Ž

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žpackage.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "nms-community-mission-viewer",
33
"private": true,
44
"homepage": "https://community-mission.nmscd.com",
5-
"version": "0.9.0",
5+
"version": "0.9.1",
66
"scripts": {
77
"dev": "vite",
88
"build": "tsc && vite build",

β€Žsrc/components/incidentReports.tsxβ€Ž

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,19 @@ export const IncidentReports: React.FC<IProps> = (props: IProps) => {
2828
</div>
2929
</div>
3030
<div className="body-container">
31-
<p className="body">The AssistantNMS tracker did not detect that Community Mission 77 had started for the Singularity Expedition. The data has also been altered for this period to reflect what was approximately displayed in game.</p>
31+
<p className="body">The AssistantNMS tracker did not track data for nearly 3 weeks. This occurred during the holiday of AssistantNMS (Kurt). Simply turning it off and on again resolved the issue.</p>
32+
<p className="time">{shortDateTextFromUtc(Date.UTC(2025, 3, 20))} &nbsp; β†’ &nbsp; {defaultDateTextFromUtc(Date.UTC(2025, 4, 10))}</p>
33+
</div>
34+
</div>
35+
<div className="report">
36+
<div className="heading-row noselect">
37+
<img src="./assets/img/error.svg" alt="error" />
38+
<div className="info-container">
39+
<p className="title">Progress tracking error</p>
40+
</div>
41+
</div>
42+
<div className="body-container">
43+
<p className="body">The AssistantNMS tracker did not detect that Community Mission 77 had started for the Singularity Expedition. The data has been altered for this period to reflect what was approximately displayed in game.</p>
3244
<p className="time">{shortDateTextFromUtc(Date.UTC(2023, 6, 7))} &nbsp; β†’ &nbsp; {defaultDateTextFromUtc(Date.UTC(2023, 6, 7, 7, 57))}</p>
3345
</div>
3446
</div>

β€Žsrc/components/section/dataSection.tsxβ€Ž

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,11 @@ export const DataSection: React.FC = () => {
2727
getCurrentData();
2828
}, []);
2929

30-
const firstHourSinceEpoch = 282300;
30+
const firstHourSinceEpoch = 175308;
3131
const currentHourSinceEpoch = Math.floor((new Date()).getTime() / 1000 / 60 / 60);
3232

3333
const hoursSinceStartedRecording = currentHourSinceEpoch - firstHourSinceEpoch;
34+
const recordsSinceStartedRecording = hoursSinceStartedRecording * 12;
3435

3536
let missionTierDisplay = '? / ??';
3637
if (networkState == NetworkState.Loading) missionTierDisplay = '...';
@@ -59,7 +60,7 @@ export const DataSection: React.FC = () => {
5960
style="style2"
6061
iconClass="icon-database"
6162
description="Number of records"
62-
value={(hoursSinceStartedRecording * 12)}
63+
value={recordsSinceStartedRecording}
6364
displayValueFunc={(val) => val.toLocaleString()}
6465
/>
6566
<DataSectionStat

0 commit comments

Comments
Β (0)