Skip to content

Commit

Permalink
release 1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Sadret committed Sep 4, 2024
1 parent 9648dcd commit 8cb40e4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
1.1.3 (2023-01-05)
1.1.3 (2024-09-04)
------------------------------------------------------------------------
- Fix: [#8] "Invalid parameter" error message when ride price is over 20 GBP
- Improved: Prices are now localised
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "openrct2-price-manager",
"version": "1.1.2",
"version": "1.1.3",
"description": "OpenRCT2 Price Manager Plug-In",
"author": "Sadret",
"license": "GPL-3.0",
Expand Down
2 changes: 1 addition & 1 deletion src/UIWindow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ export default class UIWindow {
classification: UIWindow.classification,
width: width,
height: y - linePadding + margin,
title: "Price Manager",
title: "Price Manager (v1.1.3)",
widgets: widgets,
};

Expand Down
4 changes: 2 additions & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
/// <reference path="../../openrct2.d.ts" />
/// <reference path="types.d.ts" />

import { ACTION } from "./Globals";
import Client from "./Client";
import Config from "./Config";
import { ACTION } from "./Globals";
import LocalPersistence from "./LocalPersistence";
import PriceManager from "./PriceManager";
import RemotePersistence from "./RemotePersistence";
Expand All @@ -19,7 +19,7 @@ import UIWindow from "./UIWindow";

registerPlugin({
name: "price-manager",
version: "1.1.2",
version: "1.1.3",
authors: ["Sadret"],
type: "remote",
licence: "GPL-3.0",
Expand Down

0 comments on commit 8cb40e4

Please sign in to comment.