-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 2409166
Showing
14 changed files
with
1,811 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
node_modules/ | ||
build/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
1.0.0 (2021-08-02) | ||
------------------------------------------------------------------------ | ||
- Feature: Automatic daily updates | ||
- Feature: Manage ride prices | ||
- Feature: Make transport rides free | ||
- Feature: 'Good Value' pricing | ||
- Feature: Lazy tax | ||
- Feature: Allow unbound prices | ||
- Feature: Manage shop prices | ||
- Feature: Overcharge for umbrellas | ||
- Feature: Manage toilet prices | ||
- Feature: Manage park fees | ||
- Feature: Bound park fee by initial guest cash | ||
- Feature: RCT1: Charge for rides, park entry or both | ||
- Feature: Make all rides free |
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"name": "openrct2-price-manager", | ||
"version": "1.0.0", | ||
"description": "OpenRCT2 Price Manager Plug-In", | ||
"author": "Sadret", | ||
"license": "GPL-3.0", | ||
"scripts": { | ||
"build-develop": "rollup -c rollup.config.develop.js", | ||
"build-release": "rollup -c rollup.config.release.js" | ||
}, | ||
"devDependencies": { | ||
"@rollup/plugin-typescript": "^8.2.5", | ||
"rollup": "^2.55.1", | ||
"rollup-plugin-terser": "^7.0.2", | ||
"tslib": "^2.3.0", | ||
"typescript": "^4.3.5" | ||
} | ||
} |
Oops, something went wrong.