Skip to content

Commit

Permalink
Change plugin type to local
Browse files Browse the repository at this point in the history
  • Loading branch information
Felix committed Sep 6, 2024
1 parent f102b02 commit 3ed8178
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ An OpenRCT2 plugin which shows ride measurements. Can be useful when constructin

1. Download the latest release from [here](https://github.com/Phelicks/openrct2-live-ride-measurements/releases/latest).
2. Put the `.js` file in your OpenRCT2 Plugin folder:
- Windows: C:\Users\YourName\Documents\OpenRCT2
- Mac: /Users/YourName/Library/Application Support/OpenRCT2
- Linux: $XDG_CONFIG_HOME/OpenRCT2 or in its absence $HOME/.config/OpenRCT2
- Windows: C:\Users\YourName\Documents\OpenRCT2\plugin
- Mac: /Users/YourName/Library/Application Support/OpenRCT2/plugin
- Linux: $XDG_CONFIG_HOME/OpenRCT2/plugin or in its absence $HOME/.config/OpenRCT2/plugin
3. Start OpenRCT2.

## How to use
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": "plugin",
"version": "0.3.4",
"version": "0.3.5",
"description": "",
"main": "index.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions src/live-ride-measurements.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import { Measurements, RideMeasurementsWindow } from "./ride-measurements-window

registerPlugin({
name: "Live Ride Measurements",
version: "0.3.4",
version: "0.3.5",
authors: ["Felix Janus"],
licence: "MIT",
type: "remote",
type: "local",
minApiVersion: 24,
main: () => {

Expand Down

0 comments on commit 3ed8178

Please sign in to comment.