diff --git a/changelog.md b/changelog.md index 9fa9804..bef9e70 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,11 @@ # arRPC Changelog +## v3.5.0 [30-08-2024] +- The bridge port is now configurable via the `ARRPC_BRIDGE_PORT` environment variable. ([#96](https://github.com/OpenAsar/arrpc/pull/96)) +- Fixed some games by ignoring another 64 bit suffix. ([#107](https://github.com/OpenAsar/arrpc/pull/107)) +- Fixed some account connecting being broken by adding a workaround for `CONNECTIONS_CALLBACK`. ([#106](https://github.com/OpenAsar/arrpc/pull/106)) +- Updated Discord's game database to use the latest version. + ## v3.4.0 [28-04-2024] - Linux process detection is now improved, thanks to [Sqaaakoi](https://github.com/Sqaaakoi). ([#75](https://github.com/OpenAsar/arrpc/pull/75)) - Rewrote ready packet sent to applications so potential regressions from v3.3.1 should be fixed. diff --git a/package-lock.json b/package-lock.json index 0e00ac8..519d1a6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "arrpc", - "version": "3.4.0", + "version": "3.5.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "arrpc", - "version": "3.4.0", + "version": "3.5.0", "license": "MIT", "dependencies": { "ws": "^8.11.0" diff --git a/package.json b/package.json index bcda937..96fe4ff 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "arrpc", - "version": "3.4.0", + "version": "3.5.0", "description": "Open Discord RPC server for atypical setups", "main": "src/server.js", "scripts": { diff --git a/src/index.js b/src/index.js index f7b0d26..ce2ab36 100644 --- a/src/index.js +++ b/src/index.js @@ -3,7 +3,7 @@ const rgb = (r, g, b, msg) => `\x1b[38;2;${r};${g};${b}m${msg}\x1b[0m`; const log = (...args) => console.log(`[${rgb(88, 101, 242, 'arRPC')}]`, ...args); -log('arRPC v3.4.0'); +log('arRPC v3.5.0'); import * as Bridge from './bridge.js'; import Server from './server.js';