Skip to content

Commit

Permalink
release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Sadret committed Aug 2, 2021
0 parents commit 2409166
Show file tree
Hide file tree
Showing 14 changed files with 1,811 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules/
build/
15 changes: 15 additions & 0 deletions changelog.txt
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
674 changes: 674 additions & 0 deletions licence.txt

Large diffs are not rendered by default.

326 changes: 326 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions package.json
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"
}
}
Loading

0 comments on commit 2409166

Please sign in to comment.