Skip to content

Commit

Permalink
Release v1.0.0-pre.8 (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmagic2020 authored Jun 22, 2024
1 parent 5d69669 commit 79a4236
Show file tree
Hide file tree
Showing 55 changed files with 2,931 additions and 768 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/check-missing-locales.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Check Missing Locale Entries

on:
push:
paths:
- "src/languages/locale/**"
pull_request:
paths:
- "src/languages/locale/**"

jobs:
check-missing-locales:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/[email protected]

- name: Set up Node.js
uses: actions/[email protected]
with:
node-version: 20.14.0

- name: Install dependencies
run: npm ci --prefer-offline --no-audit --no-save

- name: Check missing locale entries
run: npm run check-missing-locales
env:
GITHUB_TOKEN: ${{ secrets.FGT_TOKEN }}
Binary file modified Assets/Dashboard Structure.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Assets/Dashboard Structure.xmind
Binary file not shown.
Binary file added Assets/advanced_tab_colours.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Assets/advanced_tab_general.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Assets/advanced_tab_info.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Assets/dynamic_dashboard.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
63 changes: 55 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,52 @@ and this project adheres to [Semantic Versioning].

- /

## [1.0.0-pre.8] - 2024-06-22

### Added

- Add tooltips to some statistic entries for better clarity.

- Add "Advanced Options" menu.

- Add options to customise dashboard colour schemes.

- Add options to customise progress bar colours.

- Add plugin meta information in Advanced Options.

- Add changelog information in Advanced Options.

- Add option to change update frequency while playing a scenario, without needing to restart the game.

- Add advanced statistics (BETA).

- Add park value record in group Finance.

### Changed

- Reword some UI elements for better clarity.

- Adjust colour scheme for warning prompts to match game style.

- Move "Delete all data" button into advanced options.

- "SHIFT+D" shortcut key now opens the Advanced Options menu in title screen.

- Toolbox menu item is replaced with Advanced Options.

- Company value record is now dynamically updated and reflects the highest value achieved within the save file.

- Move park value record to group Finance.

### Fixed

- Fix a bug where the warning window for "Delete all data" can have duplicates.

- Fix language not updating with global configuration.

- Fix player action overcount. [#46](https://github.com/mrmagic2020/openrct2-dynamicdashboard/issues/46)

## [1.0.0-pre.7] - 2024-06-04

### Added
Expand All @@ -19,7 +65,7 @@ and this project adheres to [Semantic Versioning].

- Add objective days left (if required).

- Add [#19](https://github.com/mrmagic2020/openrct2-dynamicdashboard/issues/19): park rating warning countdown.
- Add park rating warning countdown. [#19](https://github.com/mrmagic2020/openrct2-dynamicdashboard/issues/19)

### Changed

Expand All @@ -31,7 +77,7 @@ and this project adheres to [Semantic Versioning].

### Fixed

- Fix [#16](https://github.com/mrmagic2020/openrct2-dynamicdashboard/issues/16): Month/Year park rating average bug.
- Fix month/year park rating average bug. [#16](https://github.com/mrmagic2020/openrct2-dynamicdashboard/issues/16)

- Fix data updating while not playing in a scenario.

Expand Down Expand Up @@ -59,15 +105,15 @@ and this project adheres to [Semantic Versioning].

### Fixed

- Fix [#5](https://github.com/mrmagic2020/openrct2-dynamicdashboard/issues/5): guest count includes guests outside park.
- Fix guest count includes guests outside park. [#5](https://github.com/mrmagic2020/openrct2-dynamicdashboard/issues/5)

- Fix [#6](https://github.com/mrmagic2020/openrct2-dynamicdashboard/issues/6): company value displays wrong value.
- Fix company value displays wrong value. [#6](https://github.com/mrmagic2020/openrct2-dynamicdashboard/issues/6)

- Fix [#7](https://github.com/mrmagic2020/openrct2-dynamicdashboard/issues/7): guest average hunger/thirst progress bar shows wrong values.
- Fix guest average hunger/thirst progress bar shows wrong values. [#7](https://github.com/mrmagic2020/openrct2-dynamicdashboard/issues/7):

- Fix [#8](https://github.com/mrmagic2020/openrct2-dynamicdashboard/issues/8): average park ratings are bugged
- Fix average park ratings are bugged. [#8](https://github.com/mrmagic2020/openrct2-dynamicdashboard/issues/8):

- Fix [#9](https://github.com/mrmagic2020/openrct2-dynamicdashboard/issues/9): total entity count displays wrong value.
- Fix total entity count displays wrong value. [#9](https://github.com/mrmagic2020/openrct2-dynamicdashboard/issues/9):

- Fix finance - total income/expenditure calculations.

Expand Down Expand Up @@ -185,7 +231,8 @@ Initial release.

<!-- Versions -->

[unreleased]: https://github.com/mrmagic2020/openrct2-dynamicdashboard/compare/v1.0.0-pre.3...HEAD
[unreleased]: https://github.com/mrmagic2020/openrct2-dynamicdashboard/compare/v1.0.0-pre.8...HEAD
[1.0.0-pre.8]: https://github.com/mrmagic2020/openrct2-dynamicdashboard/releases/v1.0.0-pre.8
[1.0.0-pre.7]: https://github.com/mrmagic2020/openrct2-dynamicdashboard/releases/v1.0.0-pre.7
[1.0.0-pre.6]: https://github.com/mrmagic2020/openrct2-dynamicdashboard/releases/v1.0.0-pre.6
[1.0.0-pre.5]: https://github.com/mrmagic2020/openrct2-dynamicdashboard/releases/v1.0.0-pre.5
Expand Down
24 changes: 16 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ _A dynamic dashboard for OpenRCT2 scenarios including all the statistics._
> This plugin is under rapid development. [Check for updates](https://github.com/mrmagic2020/openrct2-dynamicdashboard/releases/latest) regularly for the latest features, bug fixes and performance optimisations.
> [!NOTE]
> Some features of this page are only supported by GitHub. If you're not on GitHub, you can visit <https://github.com/mrmagic2020/openrct2-dynamicdashboard?#readme> for a better experience.
> Some features of this page are only supported by GitHub. If you're not on GitHub, you can go [here](https://github.com/mrmagic2020/openrct2-dynamicdashboard?#readme) for a better experience.
## Contents

- [Features](#features)
- [Overview](#overview)

- [Installation](#installation)

Expand All @@ -33,15 +33,17 @@ _A dynamic dashboard for OpenRCT2 scenarios including all the statistics._

- [Indicators](#indicators)

- [Update Frequency](#update-frequency)
- [Advanced Options](#advanced-options)

- [Colour Scheme](#colour-scheme)

- [Contributing](#contributing)

- [Bug Report / Feature Request](#bug-report--feature-request)

- [Build from Source](#build-from-source)

## Features
## Overview

<details open>
<summary>Feature Preview</summary>
Expand All @@ -51,7 +53,7 @@ _A dynamic dashboard for OpenRCT2 scenarios including all the statistics._
</details>

<details open>
<summary>Preview v1.0.0-pre.7</summary>
<summary>Screenshot v1.0.0-pre.8</summary>

![screenshot](https://github.com/mrmagic2020/openrct2-dynamicdashboard/blob/develop/Assets/dynamic_dashboard.png?raw=true)

Expand Down Expand Up @@ -111,12 +113,18 @@ Seen when [Update Mode](#update-mode) is set to `Manual`. All lights flash yello

Seen when [Update Mode](#update-mode) is set to `Paused`.

### Update Frequency
### Advanced Options

The update frequency can be customised via global settings, found in the toolbox menu item.
Since `v1.0.0-pre.8`, the plugin has been updated to include advanced options. Advanced options can be accessed via the toolbox menu or the dashboard itself.

![toolbox_menu_item](https://github.com/mrmagic2020/openrct2-dynamicdashboard/blob/develop/Assets/toolbox_menu_item.png?raw=true)
![toolbox_menu](https://github.com/mrmagic2020/openrct2-dynamicdashboard/blob/develop/Assets/toolbox_menu.png?raw=true)
![advanced_tab_general](https://github.com/mrmagic2020/openrct2-dynamicdashboard/blob/develop/Assets/advanced_tab_general.png?raw=true)

### Colour Scheme

Since `v1.0.0-pre.8`, you can customise the colours of the dashboard to your liking.

![advanced_tab_colours](https://github.com/mrmagic2020/openrct2-dynamicdashboard/blob/develop/Assets/advanced_tab_colours.png?raw=true)

## Contributing

Expand Down
3 changes: 2 additions & 1 deletion lib/exporter.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ type PlayerDataType =
| "action_server_chat"

type ParkAndScenarioDataType =
| "park_value"
| "park_size"
| "park_rating"
| "park_rating_ave"
Expand Down Expand Up @@ -106,6 +105,8 @@ type FinanceDataType =
| "total_expenditure"
| "company_value"
| "company_value_record"
| "park_value"
| "park_value_record"

type FinanceBranchDataType =
| "income_player_action"
Expand Down
Loading

0 comments on commit 79a4236

Please sign in to comment.