Skip to content

Commit

Permalink
Merge branch 'v4.1.0' of github.com:RSamaium/RPG-JS into v4.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
RSamaium committed Oct 13, 2023
2 parents e2eac39 + 000ce31 commit 94b4272
Show file tree
Hide file tree
Showing 74 changed files with 396 additions and 180 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 4.0.3 (2023-10-10)

**Note:** Version bump only for package rpgjs





## 4.0.2 (2023-10-03)

**Note:** Version bump only for package rpgjs
Expand Down
16 changes: 16 additions & 0 deletions docs/plugins/title-screen.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,22 @@ In MMORPG, the player must create an account and log in with his account to star
map = '<map id>'
```

## If deployed game on server
If you deployed your game on server, it might be required to set correct server url for axios calls.
If your game is on https://google.com you should set VITE_GAME_URL env variable to https://google.com (without ending slash)

```
[compilerOptions.build]
serverUrl = '$ENV:VITE_GAME_URL'
```

or just

```
[compilerOptions.build]
serverUrl = 'https://google.com'
```

## Usage (MMORPG only)

To make a save, run the method [player.save()](/commands/common.html#save-progress). The method has been overloaded to store the data in MongoDB
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
"packages/plugins/agones/module",
"tests/*"
],
"version": "4.0.2"
"version": "4.0.3"
}
8 changes: 8 additions & 0 deletions packages/client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 4.0.3 (2023-10-10)

**Note:** Version bump only for package @rpgjs/client





## 4.0.2 (2023-10-03)

**Note:** Version bump only for package @rpgjs/client
Expand Down
12 changes: 6 additions & 6 deletions packages/client/package-lock.json

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

10 changes: 5 additions & 5 deletions packages/client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rpgjs/client",
"version": "4.0.2",
"version": "4.0.3",
"description": "",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
Expand Down Expand Up @@ -29,9 +29,9 @@
"dependencies": {
"@nanostores/react": "^0.7.1",
"@pixi/tilemap": "^4.0.0",
"@rpgjs/common": "^4.0.2",
"@rpgjs/tiled": "^4.0.2",
"@rpgjs/types": "^4.0.2",
"@rpgjs/common": "^4.0.3",
"@rpgjs/tiled": "^4.0.3",
"@rpgjs/types": "^4.0.3",
"@types/howler": "2.2.7",
"howler": "2.2.3",
"lodash.get": "^4.4.2",
Expand All @@ -47,7 +47,7 @@
"gitHead": "5abe6ca78be96524d74a052a230f2315c900ddee",
"devDependencies": {
"@babel/types": "^7.22.11",
"@rpgjs/compiler": "^4.0.2",
"@rpgjs/compiler": "^4.0.3",
"@types/css-font-loading-module": "^0.0.8",
"@types/node": "^18.16.0",
"@types/react": "^18.2.25",
Expand Down
8 changes: 8 additions & 0 deletions packages/common/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 4.0.3 (2023-10-10)

**Note:** Version bump only for package @rpgjs/common





## 4.0.2 (2023-10-03)

**Note:** Version bump only for package @rpgjs/common
Expand Down
8 changes: 4 additions & 4 deletions packages/common/package-lock.json

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

8 changes: 4 additions & 4 deletions packages/common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rpgjs/common",
"version": "4.0.2",
"version": "4.0.3",
"description": "",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
Expand All @@ -16,16 +16,16 @@
"author": "Samuel Ronce",
"license": "MIT",
"dependencies": {
"@rpgjs/tiled": "^4.0.2",
"@rpgjs/types": "^4.0.2",
"@rpgjs/tiled": "^4.0.3",
"@rpgjs/types": "^4.0.3",
"rbush": "^3.0.1",
"rxjs": "^7.8.0",
"sat": "^0.9.0",
"workerpool": "^6.4.0"
},
"gitHead": "5abe6ca78be96524d74a052a230f2315c900ddee",
"devDependencies": {
"@rpgjs/compiler": "^4.0.2",
"@rpgjs/compiler": "^4.0.3",
"typescript": "^5.0.4"
},
"type": "module"
Expand Down
8 changes: 8 additions & 0 deletions packages/compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 4.0.3 (2023-10-10)

**Note:** Version bump only for package @rpgjs/compiler





## 4.0.2 (2023-10-03)

**Note:** Version bump only for package @rpgjs/compiler
Expand Down
4 changes: 2 additions & 2 deletions packages/compiler/package-lock.json

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

2 changes: 1 addition & 1 deletion packages/compiler/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rpgjs/compiler",
"version": "4.0.2",
"version": "4.0.3",
"description": "",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
Expand Down
8 changes: 8 additions & 0 deletions packages/database/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 4.0.3 (2023-10-10)

**Note:** Version bump only for package @rpgjs/database





## 4.0.2 (2023-10-03)

**Note:** Version bump only for package @rpgjs/database
Expand Down
6 changes: 3 additions & 3 deletions packages/database/package-lock.json

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

4 changes: 2 additions & 2 deletions packages/database/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rpgjs/database",
"version": "4.0.2",
"version": "4.0.3",
"description": "",
"main": "lib/index.js",
"publishConfig": {
Expand All @@ -16,7 +16,7 @@
"license": "MIT",
"gitHead": "5abe6ca78be96524d74a052a230f2315c900ddee",
"devDependencies": {
"@rpgjs/compiler": "^4.0.2",
"@rpgjs/compiler": "^4.0.3",
"typescript": "^5.0.2"
},
"type": "module"
Expand Down
8 changes: 8 additions & 0 deletions packages/plugins/agones/module/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 4.0.3 (2023-10-10)

**Note:** Version bump only for package @rpgjs/agones





## 4.0.2 (2023-10-03)

**Note:** Version bump only for package @rpgjs/agones
Expand Down
8 changes: 4 additions & 4 deletions packages/plugins/agones/module/package-lock.json

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

6 changes: 3 additions & 3 deletions packages/plugins/agones/module/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rpgjs/agones",
"version": "4.0.2",
"version": "4.0.3",
"description": "",
"main": "src/index.ts",
"scripts": {
Expand All @@ -14,8 +14,8 @@
"license": "MIT",
"dependencies": {
"@google-cloud/agones-sdk": "^1.33.0",
"@rpgjs/client": "^4.0.2",
"@rpgjs/server": "^4.0.2",
"@rpgjs/client": "^4.0.3",
"@rpgjs/server": "^4.0.3",
"redis": "^4.6.7",
"rxjs": "^7.8.1"
},
Expand Down
8 changes: 8 additions & 0 deletions packages/plugins/chat/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 4.0.3 (2023-10-10)

**Note:** Version bump only for package @rpgjs/chat





## 4.0.2 (2023-10-03)

**Note:** Version bump only for package @rpgjs/chat
Expand Down
6 changes: 3 additions & 3 deletions packages/plugins/chat/package-lock.json

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

6 changes: 3 additions & 3 deletions packages/plugins/chat/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rpgjs/chat",
"version": "4.0.2",
"version": "4.0.3",
"description": "",
"main": "index.ts",
"types": "index.d.ts",
Expand All @@ -11,8 +11,8 @@
"author": "Samuel Ronce",
"license": "MIT",
"dependencies": {
"@rpgjs/client": "^4.0.2",
"@rpgjs/server": "^4.0.2"
"@rpgjs/client": "^4.0.3",
"@rpgjs/server": "^4.0.3"
},
"gitHead": "5abe6ca78be96524d74a052a230f2315c900ddee"
}
Loading

0 comments on commit 94b4272

Please sign in to comment.